Skip to content

Commit

Permalink
samples/bpf: adjust rlimit RLIMIT_MEMLOCK for xdp_redirect
Browse files Browse the repository at this point in the history
Default rlimit RLIMIT_MEMLOCK is 64KB, causes bpf map failure.
e.g.
[root@labbpf]# ./xdp_redirect $(</sys/class/net/eth2/ifindex) \
> $(</sys/class/net/eth3/ifindex)
failed to create a map: 1 Operation not permitted

The failure is seen when executing xdp_redirect while xdp_monitor
is already runnig.

Signed-off-by: Tushar Dave <[email protected]>
Signed-off-by: Alexei Starovoitov <[email protected]>
  • Loading branch information
tndave authored and Alexei Starovoitov committed Feb 14, 2018
1 parent 153e1b8 commit 8ac2441
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions samples/bpf/xdp_redirect_user.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#include <string.h>
#include <unistd.h>
#include <libgen.h>
#include <sys/resource.h>

#include "bpf_load.h"
#include "bpf_util.h"
Expand Down Expand Up @@ -75,6 +76,7 @@ static void usage(const char *prog)

int main(int argc, char **argv)
{
struct rlimit r = {RLIM_INFINITY, RLIM_INFINITY};
const char *optstr = "SN";
char filename[256];
int ret, opt, key = 0;
Expand All @@ -98,6 +100,11 @@ int main(int argc, char **argv)
return 1;
}

if (setrlimit(RLIMIT_MEMLOCK, &r)) {
perror("setrlimit(RLIMIT_MEMLOCK)");
return 1;
}

ifindex_in = strtoul(argv[optind], NULL, 0);
ifindex_out = strtoul(argv[optind + 1], NULL, 0);
printf("input: %d output: %d\n", ifindex_in, ifindex_out);
Expand Down

0 comments on commit 8ac2441

Please sign in to comment.