~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/testing/selftests/bpf/progs/test_bpf_nf.c

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 // SPDX-License-Identifier: GPL-2.0
  2 #define BPF_NO_KFUNC_PROTOTYPES
  3 #include <vmlinux.h>
  4 #include <bpf/bpf_helpers.h>
  5 #include <bpf/bpf_endian.h>
  6 
  7 #define EAFNOSUPPORT 97
  8 #define EPROTO 71
  9 #define ENONET 64
 10 #define EINVAL 22
 11 #define ENOENT 2
 12 
 13 #define NF_CT_ZONE_DIR_ORIG (1 << IP_CT_DIR_ORIGINAL)
 14 #define NF_CT_ZONE_DIR_REPL (1 << IP_CT_DIR_REPLY)
 15 
 16 extern unsigned long CONFIG_HZ __kconfig;
 17 
 18 int test_einval_bpf_tuple = 0;
 19 int test_einval_reserved = 0;
 20 int test_einval_reserved_new = 0;
 21 int test_einval_netns_id = 0;
 22 int test_einval_len_opts = 0;
 23 int test_eproto_l4proto = 0;
 24 int test_enonet_netns_id = 0;
 25 int test_enoent_lookup = 0;
 26 int test_eafnosupport = 0;
 27 int test_alloc_entry = -EINVAL;
 28 int test_insert_entry = -EAFNOSUPPORT;
 29 int test_succ_lookup = -ENOENT;
 30 int test_ct_zone_id_alloc_entry = -EINVAL;
 31 int test_ct_zone_id_insert_entry = -EAFNOSUPPORT;
 32 int test_ct_zone_id_succ_lookup = -ENOENT;
 33 int test_ct_zone_dir_enoent_lookup = 0;
 34 int test_ct_zone_id_enoent_lookup = 0;
 35 u32 test_delta_timeout = 0;
 36 u32 test_status = 0;
 37 u32 test_insert_lookup_mark = 0;
 38 int test_snat_addr = -EINVAL;
 39 int test_dnat_addr = -EINVAL;
 40 __be32 saddr = 0;
 41 __be16 sport = 0;
 42 __be32 daddr = 0;
 43 __be16 dport = 0;
 44 int test_exist_lookup = -ENOENT;
 45 u32 test_exist_lookup_mark = 0;
 46 
 47 enum nf_nat_manip_type___local {
 48         NF_NAT_MANIP_SRC___local,
 49         NF_NAT_MANIP_DST___local
 50 };
 51 
 52 struct nf_conn;
 53 
 54 struct bpf_ct_opts___local {
 55         s32 netns_id;
 56         s32 error;
 57         u8 l4proto;
 58         u8 dir;
 59         u8 reserved[2];
 60 };
 61 
 62 struct bpf_ct_opts___new {
 63         s32 netns_id;
 64         s32 error;
 65         u8 l4proto;
 66         u8 dir;
 67         u16 ct_zone_id;
 68         u8 ct_zone_dir;
 69         u8 reserved[3];
 70 } __attribute__((preserve_access_index));
 71 
 72 struct nf_conn *bpf_xdp_ct_alloc(struct xdp_md *, struct bpf_sock_tuple *, u32,
 73                                  struct bpf_ct_opts___local *, u32) __ksym;
 74 struct nf_conn *bpf_xdp_ct_lookup(struct xdp_md *, struct bpf_sock_tuple *, u32,
 75                                   struct bpf_ct_opts___local *, u32) __ksym;
 76 struct nf_conn *bpf_skb_ct_alloc(struct __sk_buff *, struct bpf_sock_tuple *, u32,
 77                                  struct bpf_ct_opts___local *, u32) __ksym;
 78 struct nf_conn *bpf_skb_ct_lookup(struct __sk_buff *, struct bpf_sock_tuple *, u32,
 79                                   struct bpf_ct_opts___local *, u32) __ksym;
 80 struct nf_conn *bpf_ct_insert_entry(struct nf_conn *) __ksym;
 81 void bpf_ct_release(struct nf_conn *) __ksym;
 82 void bpf_ct_set_timeout(struct nf_conn *, u32) __ksym;
 83 int bpf_ct_change_timeout(struct nf_conn *, u32) __ksym;
 84 int bpf_ct_set_status(struct nf_conn *, u32) __ksym;
 85 int bpf_ct_change_status(struct nf_conn *, u32) __ksym;
 86 int bpf_ct_set_nat_info(struct nf_conn *, union nf_inet_addr *,
 87                         int port, enum nf_nat_manip_type___local) __ksym;
 88 
 89 static __always_inline void
 90 nf_ct_test(struct nf_conn *(*lookup_fn)(void *, struct bpf_sock_tuple *, u32,
 91                                         struct bpf_ct_opts___local *, u32),
 92            struct nf_conn *(*alloc_fn)(void *, struct bpf_sock_tuple *, u32,
 93                                        struct bpf_ct_opts___local *, u32),
 94            void *ctx)
 95 {
 96         struct bpf_ct_opts___local opts_def = { .l4proto = IPPROTO_TCP, .netns_id = -1 };
 97         struct bpf_sock_tuple bpf_tuple;
 98         struct nf_conn *ct;
 99 
100         __builtin_memset(&bpf_tuple, 0, sizeof(bpf_tuple.ipv4));
101 
102         ct = lookup_fn(ctx, NULL, 0, &opts_def, sizeof(opts_def));
103         if (ct)
104                 bpf_ct_release(ct);
105         else
106                 test_einval_bpf_tuple = opts_def.error;
107 
108         opts_def.reserved[0] = 1;
109         ct = lookup_fn(ctx, &bpf_tuple, sizeof(bpf_tuple.ipv4), &opts_def,
110                        sizeof(opts_def));
111         opts_def.reserved[0] = 0;
112         opts_def.l4proto = IPPROTO_TCP;
113         if (ct)
114                 bpf_ct_release(ct);
115         else
116                 test_einval_reserved = opts_def.error;
117 
118         opts_def.netns_id = -2;
119         ct = lookup_fn(ctx, &bpf_tuple, sizeof(bpf_tuple.ipv4), &opts_def,
120                        sizeof(opts_def));
121         opts_def.netns_id = -1;
122         if (ct)
123                 bpf_ct_release(ct);
124         else
125                 test_einval_netns_id = opts_def.error;
126 
127         ct = lookup_fn(ctx, &bpf_tuple, sizeof(bpf_tuple.ipv4), &opts_def,
128                        sizeof(opts_def) - 1);
129         if (ct)
130                 bpf_ct_release(ct);
131         else
132                 test_einval_len_opts = opts_def.error;
133 
134         opts_def.l4proto = IPPROTO_ICMP;
135         ct = lookup_fn(ctx, &bpf_tuple, sizeof(bpf_tuple.ipv4), &opts_def,
136                        sizeof(opts_def));
137         opts_def.l4proto = IPPROTO_TCP;
138         if (ct)
139                 bpf_ct_release(ct);
140         else
141                 test_eproto_l4proto = opts_def.error;
142 
143         opts_def.netns_id = 0xf00f;
144         ct = lookup_fn(ctx, &bpf_tuple, sizeof(bpf_tuple.ipv4), &opts_def,
145                        sizeof(opts_def));
146         opts_def.netns_id = -1;
147         if (ct)
148                 bpf_ct_release(ct);
149         else
150                 test_enonet_netns_id = opts_def.error;
151 
152         ct = lookup_fn(ctx, &bpf_tuple, sizeof(bpf_tuple.ipv4), &opts_def,
153                        sizeof(opts_def));
154         if (ct)
155                 bpf_ct_release(ct);
156         else
157                 test_enoent_lookup = opts_def.error;
158 
159         ct = lookup_fn(ctx, &bpf_tuple, sizeof(bpf_tuple.ipv4) - 1, &opts_def,
160                        sizeof(opts_def));
161         if (ct)
162                 bpf_ct_release(ct);
163         else
164                 test_eafnosupport = opts_def.error;
165 
166         bpf_tuple.ipv4.saddr = bpf_get_prandom_u32(); /* src IP */
167         bpf_tuple.ipv4.daddr = bpf_get_prandom_u32(); /* dst IP */
168         bpf_tuple.ipv4.sport = bpf_get_prandom_u32(); /* src port */
169         bpf_tuple.ipv4.dport = bpf_get_prandom_u32(); /* dst port */
170 
171         ct = alloc_fn(ctx, &bpf_tuple, sizeof(bpf_tuple.ipv4), &opts_def,
172                       sizeof(opts_def));
173         if (ct) {
174                 __u16 sport = bpf_get_prandom_u32();
175                 __u16 dport = bpf_get_prandom_u32();
176                 union nf_inet_addr saddr = {};
177                 union nf_inet_addr daddr = {};
178                 struct nf_conn *ct_ins;
179 
180                 bpf_ct_set_timeout(ct, 10000);
181                 ct->mark = 77;
182 
183                 /* snat */
184                 saddr.ip = bpf_get_prandom_u32();
185                 bpf_ct_set_nat_info(ct, &saddr, sport, NF_NAT_MANIP_SRC___local);
186                 /* dnat */
187                 daddr.ip = bpf_get_prandom_u32();
188                 bpf_ct_set_nat_info(ct, &daddr, dport, NF_NAT_MANIP_DST___local);
189 
190                 ct_ins = bpf_ct_insert_entry(ct);
191                 if (ct_ins) {
192                         struct nf_conn *ct_lk;
193 
194                         ct_lk = lookup_fn(ctx, &bpf_tuple, sizeof(bpf_tuple.ipv4),
195                                           &opts_def, sizeof(opts_def));
196                         if (ct_lk) {
197                                 struct nf_conntrack_tuple *tuple;
198 
199                                 /* check snat and dnat addresses */
200                                 tuple = &ct_lk->tuplehash[IP_CT_DIR_REPLY].tuple;
201                                 if (tuple->dst.u3.ip == saddr.ip &&
202                                     tuple->dst.u.all == bpf_htons(sport))
203                                         test_snat_addr = 0;
204                                 if (tuple->src.u3.ip == daddr.ip &&
205                                     tuple->src.u.all == bpf_htons(dport))
206                                         test_dnat_addr = 0;
207 
208                                 /* update ct entry timeout */
209                                 bpf_ct_change_timeout(ct_lk, 10000);
210                                 test_delta_timeout = ct_lk->timeout - bpf_jiffies64();
211                                 test_delta_timeout /= CONFIG_HZ;
212                                 test_insert_lookup_mark = ct_lk->mark;
213                                 bpf_ct_change_status(ct_lk,
214                                                      IPS_CONFIRMED | IPS_SEEN_REPLY);
215                                 test_status = ct_lk->status;
216 
217                                 bpf_ct_release(ct_lk);
218                                 test_succ_lookup = 0;
219                         }
220                         bpf_ct_release(ct_ins);
221                         test_insert_entry = 0;
222                 }
223                 test_alloc_entry = 0;
224         }
225 
226         bpf_tuple.ipv4.saddr = saddr;
227         bpf_tuple.ipv4.daddr = daddr;
228         bpf_tuple.ipv4.sport = sport;
229         bpf_tuple.ipv4.dport = dport;
230         ct = lookup_fn(ctx, &bpf_tuple, sizeof(bpf_tuple.ipv4), &opts_def,
231                        sizeof(opts_def));
232         if (ct) {
233                 test_exist_lookup = 0;
234                 if (ct->mark == 42) {
235                         ct->mark++;
236                         test_exist_lookup_mark = ct->mark;
237                 }
238                 bpf_ct_release(ct);
239         } else {
240                 test_exist_lookup = opts_def.error;
241         }
242 }
243 
244 static __always_inline void
245 nf_ct_opts_new_test(struct nf_conn *(*lookup_fn)(void *, struct bpf_sock_tuple *, u32,
246                                                  struct bpf_ct_opts___new *, u32),
247                     struct nf_conn *(*alloc_fn)(void *, struct bpf_sock_tuple *, u32,
248                                                 struct bpf_ct_opts___new *, u32),
249                     void *ctx)
250 {
251         struct bpf_ct_opts___new opts_def = { .l4proto = IPPROTO_TCP, .netns_id = -1 };
252         struct bpf_sock_tuple bpf_tuple;
253         struct nf_conn *ct;
254 
255         __builtin_memset(&bpf_tuple, 0, sizeof(bpf_tuple.ipv4));
256 
257         opts_def.reserved[0] = 1;
258         ct = lookup_fn(ctx, &bpf_tuple, sizeof(bpf_tuple.ipv4), &opts_def,
259                        sizeof(opts_def));
260         opts_def.reserved[0] = 0;
261         if (ct)
262                 bpf_ct_release(ct);
263         else
264                 test_einval_reserved_new = opts_def.error;
265 
266         bpf_tuple.ipv4.saddr = bpf_get_prandom_u32(); /* src IP */
267         bpf_tuple.ipv4.daddr = bpf_get_prandom_u32(); /* dst IP */
268         bpf_tuple.ipv4.sport = bpf_get_prandom_u32(); /* src port */
269         bpf_tuple.ipv4.dport = bpf_get_prandom_u32(); /* dst port */
270 
271         /* use non-default ct zone */
272         opts_def.ct_zone_id = 10;
273         opts_def.ct_zone_dir = NF_CT_ZONE_DIR_ORIG;
274         ct = alloc_fn(ctx, &bpf_tuple, sizeof(bpf_tuple.ipv4), &opts_def,
275                       sizeof(opts_def));
276         if (ct) {
277                 __u16 sport = bpf_get_prandom_u32();
278                 __u16 dport = bpf_get_prandom_u32();
279                 union nf_inet_addr saddr = {};
280                 union nf_inet_addr daddr = {};
281                 struct nf_conn *ct_ins;
282 
283                 bpf_ct_set_timeout(ct, 10000);
284 
285                 /* snat */
286                 saddr.ip = bpf_get_prandom_u32();
287                 bpf_ct_set_nat_info(ct, &saddr, sport, NF_NAT_MANIP_SRC___local);
288                 /* dnat */
289                 daddr.ip = bpf_get_prandom_u32();
290                 bpf_ct_set_nat_info(ct, &daddr, dport, NF_NAT_MANIP_DST___local);
291 
292                 ct_ins = bpf_ct_insert_entry(ct);
293                 if (ct_ins) {
294                         struct nf_conn *ct_lk;
295 
296                         /* entry should exist in same ct zone we inserted it */
297                         ct_lk = lookup_fn(ctx, &bpf_tuple, sizeof(bpf_tuple.ipv4),
298                                           &opts_def, sizeof(opts_def));
299                         if (ct_lk) {
300                                 bpf_ct_release(ct_lk);
301                                 test_ct_zone_id_succ_lookup = 0;
302                         }
303 
304                         /* entry should not exist with wrong direction */
305                         opts_def.ct_zone_dir = NF_CT_ZONE_DIR_REPL;
306                         ct_lk = lookup_fn(ctx, &bpf_tuple, sizeof(bpf_tuple.ipv4),
307                                           &opts_def, sizeof(opts_def));
308                         opts_def.ct_zone_dir = NF_CT_ZONE_DIR_ORIG;
309                         if (ct_lk)
310                                 bpf_ct_release(ct_lk);
311                         else
312                                 test_ct_zone_dir_enoent_lookup = opts_def.error;
313 
314                         /* entry should not exist in default ct zone */
315                         opts_def.ct_zone_id = 0;
316                         ct_lk = lookup_fn(ctx, &bpf_tuple, sizeof(bpf_tuple.ipv4),
317                                           &opts_def, sizeof(opts_def));
318                         if (ct_lk)
319                                 bpf_ct_release(ct_lk);
320                         else
321                                 test_ct_zone_id_enoent_lookup = opts_def.error;
322 
323                         bpf_ct_release(ct_ins);
324                         test_ct_zone_id_insert_entry = 0;
325                 }
326                 test_ct_zone_id_alloc_entry = 0;
327         }
328 }
329 
330 SEC("xdp")
331 int nf_xdp_ct_test(struct xdp_md *ctx)
332 {
333         nf_ct_test((void *)bpf_xdp_ct_lookup, (void *)bpf_xdp_ct_alloc, ctx);
334         nf_ct_opts_new_test((void *)bpf_xdp_ct_lookup, (void *)bpf_xdp_ct_alloc, ctx);
335         return 0;
336 }
337 
338 SEC("tc")
339 int nf_skb_ct_test(struct __sk_buff *ctx)
340 {
341         nf_ct_test((void *)bpf_skb_ct_lookup, (void *)bpf_skb_ct_alloc, ctx);
342         nf_ct_opts_new_test((void *)bpf_skb_ct_lookup, (void *)bpf_skb_ct_alloc, ctx);
343         return 0;
344 }
345 
346 char _license[] SEC("license") = "GPL";
347 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php