samples/bpf: all XDP samples should unload xdp/bpf prog on SIGTERM
authorJesper Dangaard Brouer <brouer@redhat.com>
Wed, 15 Aug 2018 14:57:14 +0000 (16:57 +0200)
committerDaniel Borkmann <daniel@iogearbox.net>
Thu, 16 Aug 2018 19:55:32 +0000 (21:55 +0200)
commit817b89beb9d8876450fcde9155e17425c329569d
tree8bce921ed07fac52944dbb6d156cc16f62f864b3
parent21b172ee11b6ec260bd7e6a27b11a8a8d392fce5
samples/bpf: all XDP samples should unload xdp/bpf prog on SIGTERM

It is common XDP practice to unload/deattach the XDP bpf program,
when the XDP sample program is Ctrl-C interrupted (SIGINT) or
killed (SIGTERM).

The samples/bpf programs xdp_redirect_cpu and xdp_rxq_info,
forgot to trap signal SIGTERM (which is the default signal used
by the kill command).

This was discovered by Red Hat QA, which automated scripts depend
on killing the XDP sample program after a timeout period.

Fixes: fad3917e361b ("samples/bpf: add cpumap sample program xdp_redirect_cpu")
Fixes: 0fca931a6f21 ("samples/bpf: program demonstrating access to xdp_rxq_info")
Reported-by: Jean-Tsung Hsiao <jhsiao@redhat.com>
Signed-off-by: Jesper Dangaard Brouer <brouer@redhat.com>
Acked-by: Yonghong Song <yhs@fb.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
samples/bpf/xdp_redirect_cpu_user.c
samples/bpf/xdp_rxq_info_user.c