Skip to content

Commit

Permalink
samples/bpf: fix SKB_MODE flag to be a 32-bit unsigned int
Browse files Browse the repository at this point in the history
The kernel side of XDP_FLAGS_SKB_MODE is unsigned, and the rtnetlink
IFLA_XDP_FLAGS is defined as NLA_U32. Thus, userspace programs under
samples/bpf/ should use the correct type.

Fixes: 3993f2c ("samples/bpf: Add support for SKB_MODE to xdp1 and xdp_tx_iptunnel")
Signed-off-by: Jesper Dangaard Brouer <[email protected]>
Acked-by: Daniel Borkmann <[email protected]>
Reviewed-by: Andy Gospodarek <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
netoptimizer authored and davem330 committed May 1, 2017
1 parent d74a32a commit 6387d01
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
3 changes: 2 additions & 1 deletion samples/bpf/bpf_load.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
#include <linux/perf_event.h>
#include <linux/netlink.h>
#include <linux/rtnetlink.h>
#include <linux/types.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/syscall.h>
Expand Down Expand Up @@ -585,7 +586,7 @@ struct ksym *ksym_search(long key)
return &syms[0];
}

int set_link_xdp_fd(int ifindex, int fd, int flags)
int set_link_xdp_fd(int ifindex, int fd, __u32 flags)
{
struct sockaddr_nl sa;
int sock, seq = 0, len, ret = -1;
Expand Down
2 changes: 1 addition & 1 deletion samples/bpf/bpf_load.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,5 @@ struct ksym {

int load_kallsyms(void);
struct ksym *ksym_search(long key);
int set_link_xdp_fd(int ifindex, int fd, int flags);
int set_link_xdp_fd(int ifindex, int fd, __u32 flags);
#endif
8 changes: 4 additions & 4 deletions samples/bpf/xdp1_user.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@
#include "libbpf.h"

static int ifindex;
static int flags;
static __u32 xdp_flags;

static void int_exit(int sig)
{
set_link_xdp_fd(ifindex, -1, flags);
set_link_xdp_fd(ifindex, -1, xdp_flags);
exit(0);
}

Expand Down Expand Up @@ -75,7 +75,7 @@ int main(int argc, char **argv)
while ((opt = getopt(argc, argv, optstr)) != -1) {
switch (opt) {
case 'S':
flags |= XDP_FLAGS_SKB_MODE;
xdp_flags |= XDP_FLAGS_SKB_MODE;
break;
default:
usage(basename(argv[0]));
Expand Down Expand Up @@ -103,7 +103,7 @@ int main(int argc, char **argv)

signal(SIGINT, int_exit);

if (set_link_xdp_fd(ifindex, prog_fd[0], flags) < 0) {
if (set_link_xdp_fd(ifindex, prog_fd[0], xdp_flags) < 0) {
printf("link set xdp fd failed\n");
return 1;
}
Expand Down
8 changes: 4 additions & 4 deletions samples/bpf/xdp_tx_iptunnel_user.c
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,8 @@ int main(int argc, char **argv)
struct iptnl_info tnl = {};
struct rlimit r = {RLIM_INFINITY, RLIM_INFINITY};
struct vip vip = {};
__u32 xdp_flags = 0;
char filename[256];
int flags = 0;
int opt;
int i;

Expand Down Expand Up @@ -204,7 +204,7 @@ int main(int argc, char **argv)
kill_after_s = atoi(optarg);
break;
case 'S':
flags |= XDP_FLAGS_SKB_MODE;
xdp_flags |= XDP_FLAGS_SKB_MODE;
break;
default:
usage(argv[0]);
Expand Down Expand Up @@ -248,14 +248,14 @@ int main(int argc, char **argv)
}
}

if (set_link_xdp_fd(ifindex, prog_fd[0], flags) < 0) {
if (set_link_xdp_fd(ifindex, prog_fd[0], xdp_flags) < 0) {
printf("link set xdp fd failed\n");
return 1;
}

poll_stats(kill_after_s);

set_link_xdp_fd(ifindex, -1, flags);
set_link_xdp_fd(ifindex, -1, xdp_flags);

return 0;
}

0 comments on commit 6387d01

Please sign in to comment.