blob: d3ff3503326aa8cc341ab74212fa5821e2a9bf41 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * net/sched/em_meta.c Metadata ematch
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 *
9 * Authors: Thomas Graf <tgraf@suug.ch>
10 *
11 * ==========================================================================
12 *
13 * The metadata ematch compares two meta objects where each object
14 * represents either a meta value stored in the kernel or a static
15 * value provided by userspace. The objects are not provided by
16 * userspace itself but rather a definition providing the information
17 * to build them. Every object is of a certain type which must be
18 * equal to the object it is being compared to.
19 *
20 * The definition of a objects conists of the type (meta type), a
21 * identifier (meta id) and additional type specific information.
22 * The meta id is either TCF_META_TYPE_VALUE for values provided by
23 * userspace or a index to the meta operations table consisting of
24 * function pointers to type specific meta data collectors returning
25 * the value of the requested meta value.
26 *
27 * lvalue rvalue
28 * +-----------+ +-----------+
29 * | type: INT | | type: INT |
David S. Miller261688d2005-07-22 14:43:52 -070030 * def | id: DEV | | id: VALUE |
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 * | data: | | data: 3 |
32 * +-----------+ +-----------+
33 * | |
David S. Miller261688d2005-07-22 14:43:52 -070034 * ---> meta_ops[INT][DEV](...) |
Thomas Graf48900622005-06-08 15:10:48 -070035 * | |
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 * ----------- |
37 * V V
38 * +-----------+ +-----------+
39 * | type: INT | | type: INT |
David S. Miller261688d2005-07-22 14:43:52 -070040 * obj | id: DEV | | id: VALUE |
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 * | data: 2 |<--data got filled out | data: 3 |
42 * +-----------+ +-----------+
43 * | |
44 * --------------> 2 equals 3 <--------------
45 *
46 * This is a simplified schema, the complexity varies depending
47 * on the meta type. Obviously, the length of the data must also
48 * be provided for non-numeric types.
49 *
50 * Additionaly, type dependant modifiers such as shift operators
51 * or mask may be applied to extend the functionaliy. As of now,
52 * the variable length type supports shifting the byte string to
53 * the right, eating up any number of octets and thus supporting
54 * wildcard interface name comparisons such as "ppp%" matching
55 * ppp0..9.
56 *
57 * NOTE: Certain meta values depend on other subsystems and are
58 * only available if that subsytem is enabled in the kernel.
59 */
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/module.h>
62#include <linux/types.h>
63#include <linux/kernel.h>
64#include <linux/sched.h>
65#include <linux/string.h>
66#include <linux/skbuff.h>
67#include <linux/random.h>
68#include <linux/tc_ematch/tc_em_meta.h>
69#include <net/dst.h>
70#include <net/route.h>
71#include <net/pkt_cls.h>
Thomas Graf48900622005-06-08 15:10:48 -070072#include <net/sock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74struct meta_obj
75{
76 unsigned long value;
77 unsigned int len;
78};
79
80struct meta_value
81{
82 struct tcf_meta_val hdr;
83 unsigned long val;
84 unsigned int len;
85};
86
87struct meta_match
88{
89 struct meta_value lvalue;
90 struct meta_value rvalue;
91};
92
93static inline int meta_id(struct meta_value *v)
94{
95 return TCF_META_ID(v->hdr.kind);
96}
97
98static inline int meta_type(struct meta_value *v)
99{
100 return TCF_META_TYPE(v->hdr.kind);
101}
102
103#define META_COLLECTOR(FUNC) static void meta_##FUNC(struct sk_buff *skb, \
104 struct tcf_pkt_info *info, struct meta_value *v, \
105 struct meta_obj *dst, int *err)
106
107/**************************************************************************
108 * System status & misc
109 **************************************************************************/
110
111META_COLLECTOR(int_random)
112{
113 get_random_bytes(&dst->value, sizeof(dst->value));
114}
115
116static inline unsigned long fixed_loadavg(int load)
117{
118 int rnd_load = load + (FIXED_1/200);
119 int rnd_frac = ((rnd_load & (FIXED_1-1)) * 100) >> FSHIFT;
120
121 return ((rnd_load >> FSHIFT) * 100) + rnd_frac;
122}
123
124META_COLLECTOR(int_loadavg_0)
125{
126 dst->value = fixed_loadavg(avenrun[0]);
127}
128
129META_COLLECTOR(int_loadavg_1)
130{
131 dst->value = fixed_loadavg(avenrun[1]);
132}
133
134META_COLLECTOR(int_loadavg_2)
135{
136 dst->value = fixed_loadavg(avenrun[2]);
137}
138
139/**************************************************************************
140 * Device names & indices
141 **************************************************************************/
142
143static inline int int_dev(struct net_device *dev, struct meta_obj *dst)
144{
145 if (unlikely(dev == NULL))
146 return -1;
147
148 dst->value = dev->ifindex;
149 return 0;
150}
151
152static inline int var_dev(struct net_device *dev, struct meta_obj *dst)
153{
154 if (unlikely(dev == NULL))
155 return -1;
156
157 dst->value = (unsigned long) dev->name;
158 dst->len = strlen(dev->name);
159 return 0;
160}
161
162META_COLLECTOR(int_dev)
163{
164 *err = int_dev(skb->dev, dst);
165}
166
167META_COLLECTOR(var_dev)
168{
169 *err = var_dev(skb->dev, dst);
170}
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172/**************************************************************************
173 * skb attributes
174 **************************************************************************/
175
176META_COLLECTOR(int_priority)
177{
178 dst->value = skb->priority;
179}
180
181META_COLLECTOR(int_protocol)
182{
183 /* Let userspace take care of the byte ordering */
184 dst->value = skb->protocol;
185}
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187META_COLLECTOR(int_pkttype)
188{
189 dst->value = skb->pkt_type;
190}
191
192META_COLLECTOR(int_pktlen)
193{
194 dst->value = skb->len;
195}
196
197META_COLLECTOR(int_datalen)
198{
199 dst->value = skb->data_len;
200}
201
202META_COLLECTOR(int_maclen)
203{
204 dst->value = skb->mac_len;
205}
206
207/**************************************************************************
208 * Netfilter
209 **************************************************************************/
210
Thomas Graf82e91ff2006-11-09 15:19:14 -0800211META_COLLECTOR(int_mark)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
Thomas Graf82e91ff2006-11-09 15:19:14 -0800213 dst->value = skb->mark;
Patrick McHardy7686ee12005-07-24 19:44:23 -0700214}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216/**************************************************************************
217 * Traffic Control
218 **************************************************************************/
219
220META_COLLECTOR(int_tcindex)
221{
222 dst->value = skb->tc_index;
223}
224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225/**************************************************************************
226 * Routing
227 **************************************************************************/
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229META_COLLECTOR(int_rtclassid)
230{
231 if (unlikely(skb->dst == NULL))
232 *err = -1;
233 else
Patrick McHardy7686ee12005-07-24 19:44:23 -0700234#ifdef CONFIG_NET_CLS_ROUTE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 dst->value = skb->dst->tclassid;
Patrick McHardy7686ee12005-07-24 19:44:23 -0700236#else
237 dst->value = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238#endif
Patrick McHardy7686ee12005-07-24 19:44:23 -0700239}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241META_COLLECTOR(int_rtiif)
242{
243 if (unlikely(skb->dst == NULL))
244 *err = -1;
245 else
246 dst->value = ((struct rtable*) skb->dst)->fl.iif;
247}
248
249/**************************************************************************
Thomas Graf48900622005-06-08 15:10:48 -0700250 * Socket Attributes
251 **************************************************************************/
252
253#define SKIP_NONLOCAL(skb) \
254 if (unlikely(skb->sk == NULL)) { \
255 *err = -1; \
256 return; \
257 }
258
259META_COLLECTOR(int_sk_family)
260{
261 SKIP_NONLOCAL(skb);
262 dst->value = skb->sk->sk_family;
263}
264
265META_COLLECTOR(int_sk_state)
266{
267 SKIP_NONLOCAL(skb);
268 dst->value = skb->sk->sk_state;
269}
270
271META_COLLECTOR(int_sk_reuse)
272{
273 SKIP_NONLOCAL(skb);
274 dst->value = skb->sk->sk_reuse;
275}
276
277META_COLLECTOR(int_sk_bound_if)
278{
279 SKIP_NONLOCAL(skb);
280 /* No error if bound_dev_if is 0, legal userspace check */
281 dst->value = skb->sk->sk_bound_dev_if;
282}
283
284META_COLLECTOR(var_sk_bound_if)
285{
286 SKIP_NONLOCAL(skb);
287
288 if (skb->sk->sk_bound_dev_if == 0) {
289 dst->value = (unsigned long) "any";
290 dst->len = 3;
291 } else {
292 struct net_device *dev;
293
294 dev = dev_get_by_index(skb->sk->sk_bound_dev_if);
295 *err = var_dev(dev, dst);
296 if (dev)
297 dev_put(dev);
298 }
299}
300
301META_COLLECTOR(int_sk_refcnt)
302{
303 SKIP_NONLOCAL(skb);
304 dst->value = atomic_read(&skb->sk->sk_refcnt);
305}
306
307META_COLLECTOR(int_sk_rcvbuf)
308{
309 SKIP_NONLOCAL(skb);
310 dst->value = skb->sk->sk_rcvbuf;
311}
312
313META_COLLECTOR(int_sk_shutdown)
314{
315 SKIP_NONLOCAL(skb);
316 dst->value = skb->sk->sk_shutdown;
317}
318
319META_COLLECTOR(int_sk_proto)
320{
321 SKIP_NONLOCAL(skb);
322 dst->value = skb->sk->sk_protocol;
323}
324
325META_COLLECTOR(int_sk_type)
326{
327 SKIP_NONLOCAL(skb);
328 dst->value = skb->sk->sk_type;
329}
330
331META_COLLECTOR(int_sk_rmem_alloc)
332{
333 SKIP_NONLOCAL(skb);
334 dst->value = atomic_read(&skb->sk->sk_rmem_alloc);
335}
336
337META_COLLECTOR(int_sk_wmem_alloc)
338{
339 SKIP_NONLOCAL(skb);
340 dst->value = atomic_read(&skb->sk->sk_wmem_alloc);
341}
342
343META_COLLECTOR(int_sk_omem_alloc)
344{
345 SKIP_NONLOCAL(skb);
346 dst->value = atomic_read(&skb->sk->sk_omem_alloc);
347}
348
349META_COLLECTOR(int_sk_rcv_qlen)
350{
351 SKIP_NONLOCAL(skb);
352 dst->value = skb->sk->sk_receive_queue.qlen;
353}
354
355META_COLLECTOR(int_sk_snd_qlen)
356{
357 SKIP_NONLOCAL(skb);
358 dst->value = skb->sk->sk_write_queue.qlen;
359}
360
361META_COLLECTOR(int_sk_wmem_queued)
362{
363 SKIP_NONLOCAL(skb);
364 dst->value = skb->sk->sk_wmem_queued;
365}
366
367META_COLLECTOR(int_sk_fwd_alloc)
368{
369 SKIP_NONLOCAL(skb);
370 dst->value = skb->sk->sk_forward_alloc;
371}
372
373META_COLLECTOR(int_sk_sndbuf)
374{
375 SKIP_NONLOCAL(skb);
376 dst->value = skb->sk->sk_sndbuf;
377}
378
379META_COLLECTOR(int_sk_alloc)
380{
381 SKIP_NONLOCAL(skb);
382 dst->value = skb->sk->sk_allocation;
383}
384
385META_COLLECTOR(int_sk_route_caps)
386{
387 SKIP_NONLOCAL(skb);
388 dst->value = skb->sk->sk_route_caps;
389}
390
Eric Dumazet81c3d542005-10-03 14:13:38 -0700391META_COLLECTOR(int_sk_hash)
Thomas Graf48900622005-06-08 15:10:48 -0700392{
393 SKIP_NONLOCAL(skb);
Eric Dumazet81c3d542005-10-03 14:13:38 -0700394 dst->value = skb->sk->sk_hash;
Thomas Graf48900622005-06-08 15:10:48 -0700395}
396
397META_COLLECTOR(int_sk_lingertime)
398{
399 SKIP_NONLOCAL(skb);
400 dst->value = skb->sk->sk_lingertime / HZ;
401}
402
403META_COLLECTOR(int_sk_err_qlen)
404{
405 SKIP_NONLOCAL(skb);
406 dst->value = skb->sk->sk_error_queue.qlen;
407}
408
409META_COLLECTOR(int_sk_ack_bl)
410{
411 SKIP_NONLOCAL(skb);
412 dst->value = skb->sk->sk_ack_backlog;
413}
414
415META_COLLECTOR(int_sk_max_ack_bl)
416{
417 SKIP_NONLOCAL(skb);
418 dst->value = skb->sk->sk_max_ack_backlog;
419}
420
421META_COLLECTOR(int_sk_prio)
422{
423 SKIP_NONLOCAL(skb);
424 dst->value = skb->sk->sk_priority;
425}
426
427META_COLLECTOR(int_sk_rcvlowat)
428{
429 SKIP_NONLOCAL(skb);
430 dst->value = skb->sk->sk_rcvlowat;
431}
432
433META_COLLECTOR(int_sk_rcvtimeo)
434{
435 SKIP_NONLOCAL(skb);
436 dst->value = skb->sk->sk_rcvtimeo / HZ;
437}
438
439META_COLLECTOR(int_sk_sndtimeo)
440{
441 SKIP_NONLOCAL(skb);
442 dst->value = skb->sk->sk_sndtimeo / HZ;
443}
444
445META_COLLECTOR(int_sk_sendmsg_off)
446{
447 SKIP_NONLOCAL(skb);
448 dst->value = skb->sk->sk_sndmsg_off;
449}
450
451META_COLLECTOR(int_sk_write_pend)
452{
453 SKIP_NONLOCAL(skb);
454 dst->value = skb->sk->sk_write_pending;
455}
456
457/**************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 * Meta value collectors assignment table
459 **************************************************************************/
460
461struct meta_ops
462{
463 void (*get)(struct sk_buff *, struct tcf_pkt_info *,
464 struct meta_value *, struct meta_obj *, int *);
465};
466
Thomas Graf48900622005-06-08 15:10:48 -0700467#define META_ID(name) TCF_META_ID_##name
468#define META_FUNC(name) { .get = meta_##name }
469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470/* Meta value operations table listing all meta value collectors and
471 * assigns them to a type and meta id. */
472static struct meta_ops __meta_ops[TCF_META_TYPE_MAX+1][TCF_META_ID_MAX+1] = {
473 [TCF_META_TYPE_VAR] = {
Thomas Graf48900622005-06-08 15:10:48 -0700474 [META_ID(DEV)] = META_FUNC(var_dev),
Thomas Graf48900622005-06-08 15:10:48 -0700475 [META_ID(SK_BOUND_IF)] = META_FUNC(var_sk_bound_if),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 },
477 [TCF_META_TYPE_INT] = {
Thomas Graf48900622005-06-08 15:10:48 -0700478 [META_ID(RANDOM)] = META_FUNC(int_random),
479 [META_ID(LOADAVG_0)] = META_FUNC(int_loadavg_0),
480 [META_ID(LOADAVG_1)] = META_FUNC(int_loadavg_1),
481 [META_ID(LOADAVG_2)] = META_FUNC(int_loadavg_2),
482 [META_ID(DEV)] = META_FUNC(int_dev),
Thomas Graf48900622005-06-08 15:10:48 -0700483 [META_ID(PRIORITY)] = META_FUNC(int_priority),
484 [META_ID(PROTOCOL)] = META_FUNC(int_protocol),
Thomas Graf48900622005-06-08 15:10:48 -0700485 [META_ID(PKTTYPE)] = META_FUNC(int_pkttype),
486 [META_ID(PKTLEN)] = META_FUNC(int_pktlen),
487 [META_ID(DATALEN)] = META_FUNC(int_datalen),
488 [META_ID(MACLEN)] = META_FUNC(int_maclen),
Thomas Graf82e91ff2006-11-09 15:19:14 -0800489 [META_ID(NFMARK)] = META_FUNC(int_mark),
Thomas Graf48900622005-06-08 15:10:48 -0700490 [META_ID(TCINDEX)] = META_FUNC(int_tcindex),
Thomas Graf48900622005-06-08 15:10:48 -0700491 [META_ID(RTCLASSID)] = META_FUNC(int_rtclassid),
Thomas Graf48900622005-06-08 15:10:48 -0700492 [META_ID(RTIIF)] = META_FUNC(int_rtiif),
493 [META_ID(SK_FAMILY)] = META_FUNC(int_sk_family),
494 [META_ID(SK_STATE)] = META_FUNC(int_sk_state),
495 [META_ID(SK_REUSE)] = META_FUNC(int_sk_reuse),
496 [META_ID(SK_BOUND_IF)] = META_FUNC(int_sk_bound_if),
497 [META_ID(SK_REFCNT)] = META_FUNC(int_sk_refcnt),
498 [META_ID(SK_RCVBUF)] = META_FUNC(int_sk_rcvbuf),
499 [META_ID(SK_SNDBUF)] = META_FUNC(int_sk_sndbuf),
500 [META_ID(SK_SHUTDOWN)] = META_FUNC(int_sk_shutdown),
501 [META_ID(SK_PROTO)] = META_FUNC(int_sk_proto),
502 [META_ID(SK_TYPE)] = META_FUNC(int_sk_type),
503 [META_ID(SK_RMEM_ALLOC)] = META_FUNC(int_sk_rmem_alloc),
504 [META_ID(SK_WMEM_ALLOC)] = META_FUNC(int_sk_wmem_alloc),
505 [META_ID(SK_OMEM_ALLOC)] = META_FUNC(int_sk_omem_alloc),
506 [META_ID(SK_WMEM_QUEUED)] = META_FUNC(int_sk_wmem_queued),
507 [META_ID(SK_RCV_QLEN)] = META_FUNC(int_sk_rcv_qlen),
508 [META_ID(SK_SND_QLEN)] = META_FUNC(int_sk_snd_qlen),
509 [META_ID(SK_ERR_QLEN)] = META_FUNC(int_sk_err_qlen),
510 [META_ID(SK_FORWARD_ALLOCS)] = META_FUNC(int_sk_fwd_alloc),
511 [META_ID(SK_ALLOCS)] = META_FUNC(int_sk_alloc),
512 [META_ID(SK_ROUTE_CAPS)] = META_FUNC(int_sk_route_caps),
Eric Dumazet81c3d542005-10-03 14:13:38 -0700513 [META_ID(SK_HASH)] = META_FUNC(int_sk_hash),
Thomas Graf48900622005-06-08 15:10:48 -0700514 [META_ID(SK_LINGERTIME)] = META_FUNC(int_sk_lingertime),
515 [META_ID(SK_ACK_BACKLOG)] = META_FUNC(int_sk_ack_bl),
516 [META_ID(SK_MAX_ACK_BACKLOG)] = META_FUNC(int_sk_max_ack_bl),
517 [META_ID(SK_PRIO)] = META_FUNC(int_sk_prio),
518 [META_ID(SK_RCVLOWAT)] = META_FUNC(int_sk_rcvlowat),
519 [META_ID(SK_RCVTIMEO)] = META_FUNC(int_sk_rcvtimeo),
520 [META_ID(SK_SNDTIMEO)] = META_FUNC(int_sk_sndtimeo),
521 [META_ID(SK_SENDMSG_OFF)] = META_FUNC(int_sk_sendmsg_off),
522 [META_ID(SK_WRITE_PENDING)] = META_FUNC(int_sk_write_pend),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 }
524};
525
526static inline struct meta_ops * meta_ops(struct meta_value *val)
527{
528 return &__meta_ops[meta_type(val)][meta_id(val)];
529}
530
531/**************************************************************************
532 * Type specific operations for TCF_META_TYPE_VAR
533 **************************************************************************/
534
535static int meta_var_compare(struct meta_obj *a, struct meta_obj *b)
536{
537 int r = a->len - b->len;
538
539 if (r == 0)
540 r = memcmp((void *) a->value, (void *) b->value, a->len);
541
542 return r;
543}
544
545static int meta_var_change(struct meta_value *dst, struct rtattr *rta)
546{
547 int len = RTA_PAYLOAD(rta);
548
549 dst->val = (unsigned long) kmalloc(len, GFP_KERNEL);
550 if (dst->val == 0UL)
551 return -ENOMEM;
552 memcpy((void *) dst->val, RTA_DATA(rta), len);
553 dst->len = len;
554 return 0;
555}
556
557static void meta_var_destroy(struct meta_value *v)
558{
Jesper Juhla51482b2005-11-08 09:41:34 -0800559 kfree((void *) v->val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560}
561
562static void meta_var_apply_extras(struct meta_value *v,
563 struct meta_obj *dst)
564{
565 int shift = v->hdr.shift;
566
567 if (shift && shift < dst->len)
568 dst->len -= shift;
569}
570
571static int meta_var_dump(struct sk_buff *skb, struct meta_value *v, int tlv)
572{
573 if (v->val && v->len)
574 RTA_PUT(skb, tlv, v->len, (void *) v->val);
575 return 0;
576
577rtattr_failure:
578 return -1;
579}
580
581/**************************************************************************
582 * Type specific operations for TCF_META_TYPE_INT
583 **************************************************************************/
584
585static int meta_int_compare(struct meta_obj *a, struct meta_obj *b)
586{
587 /* Let gcc optimize it, the unlikely is not really based on
588 * some numbers but jump free code for mismatches seems
589 * more logical. */
Thomas Graf98e56402005-06-08 15:11:19 -0700590 if (unlikely(a->value == b->value))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 return 0;
Thomas Graf98e56402005-06-08 15:11:19 -0700592 else if (a->value < b->value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 return -1;
594 else
595 return 1;
596}
597
598static int meta_int_change(struct meta_value *dst, struct rtattr *rta)
599{
600 if (RTA_PAYLOAD(rta) >= sizeof(unsigned long)) {
601 dst->val = *(unsigned long *) RTA_DATA(rta);
602 dst->len = sizeof(unsigned long);
603 } else if (RTA_PAYLOAD(rta) == sizeof(u32)) {
604 dst->val = *(u32 *) RTA_DATA(rta);
605 dst->len = sizeof(u32);
606 } else
607 return -EINVAL;
608
609 return 0;
610}
611
612static void meta_int_apply_extras(struct meta_value *v,
613 struct meta_obj *dst)
614{
615 if (v->hdr.shift)
616 dst->value >>= v->hdr.shift;
617
618 if (v->val)
619 dst->value &= v->val;
620}
621
622static int meta_int_dump(struct sk_buff *skb, struct meta_value *v, int tlv)
623{
624 if (v->len == sizeof(unsigned long))
625 RTA_PUT(skb, tlv, sizeof(unsigned long), &v->val);
626 else if (v->len == sizeof(u32)) {
627 u32 d = v->val;
628 RTA_PUT(skb, tlv, sizeof(d), &d);
629 }
630
631 return 0;
632
633rtattr_failure:
634 return -1;
635}
636
637/**************************************************************************
638 * Type specific operations table
639 **************************************************************************/
640
641struct meta_type_ops
642{
643 void (*destroy)(struct meta_value *);
644 int (*compare)(struct meta_obj *, struct meta_obj *);
645 int (*change)(struct meta_value *, struct rtattr *);
646 void (*apply_extras)(struct meta_value *, struct meta_obj *);
647 int (*dump)(struct sk_buff *, struct meta_value *, int);
648};
649
650static struct meta_type_ops __meta_type_ops[TCF_META_TYPE_MAX+1] = {
651 [TCF_META_TYPE_VAR] = {
652 .destroy = meta_var_destroy,
653 .compare = meta_var_compare,
654 .change = meta_var_change,
655 .apply_extras = meta_var_apply_extras,
656 .dump = meta_var_dump
657 },
658 [TCF_META_TYPE_INT] = {
659 .compare = meta_int_compare,
660 .change = meta_int_change,
661 .apply_extras = meta_int_apply_extras,
662 .dump = meta_int_dump
663 }
664};
665
666static inline struct meta_type_ops * meta_type_ops(struct meta_value *v)
667{
668 return &__meta_type_ops[meta_type(v)];
669}
670
671/**************************************************************************
672 * Core
673 **************************************************************************/
674
675static inline int meta_get(struct sk_buff *skb, struct tcf_pkt_info *info,
676 struct meta_value *v, struct meta_obj *dst)
677{
678 int err = 0;
679
680 if (meta_id(v) == TCF_META_ID_VALUE) {
681 dst->value = v->val;
682 dst->len = v->len;
683 return 0;
684 }
685
686 meta_ops(v)->get(skb, info, v, dst, &err);
687 if (err < 0)
688 return err;
689
690 if (meta_type_ops(v)->apply_extras)
691 meta_type_ops(v)->apply_extras(v, dst);
692
693 return 0;
694}
695
696static int em_meta_match(struct sk_buff *skb, struct tcf_ematch *m,
697 struct tcf_pkt_info *info)
698{
699 int r;
700 struct meta_match *meta = (struct meta_match *) m->data;
701 struct meta_obj l_value, r_value;
702
703 if (meta_get(skb, info, &meta->lvalue, &l_value) < 0 ||
704 meta_get(skb, info, &meta->rvalue, &r_value) < 0)
705 return 0;
706
707 r = meta_type_ops(&meta->lvalue)->compare(&l_value, &r_value);
708
709 switch (meta->lvalue.hdr.op) {
710 case TCF_EM_OPND_EQ:
711 return !r;
712 case TCF_EM_OPND_LT:
713 return r < 0;
714 case TCF_EM_OPND_GT:
715 return r > 0;
716 }
717
718 return 0;
719}
720
721static inline void meta_delete(struct meta_match *meta)
722{
723 struct meta_type_ops *ops = meta_type_ops(&meta->lvalue);
724
725 if (ops && ops->destroy) {
726 ops->destroy(&meta->lvalue);
727 ops->destroy(&meta->rvalue);
728 }
729
730 kfree(meta);
731}
732
733static inline int meta_change_data(struct meta_value *dst, struct rtattr *rta)
734{
735 if (rta) {
736 if (RTA_PAYLOAD(rta) == 0)
737 return -EINVAL;
738
739 return meta_type_ops(dst)->change(dst, rta);
740 }
741
742 return 0;
743}
744
745static inline int meta_is_supported(struct meta_value *val)
746{
747 return (!meta_id(val) || meta_ops(val)->get);
748}
749
750static int em_meta_change(struct tcf_proto *tp, void *data, int len,
751 struct tcf_ematch *m)
752{
753 int err = -EINVAL;
754 struct rtattr *tb[TCA_EM_META_MAX];
755 struct tcf_meta_hdr *hdr;
756 struct meta_match *meta = NULL;
757
758 if (rtattr_parse(tb, TCA_EM_META_MAX, data, len) < 0)
759 goto errout;
760
761 if (tb[TCA_EM_META_HDR-1] == NULL ||
762 RTA_PAYLOAD(tb[TCA_EM_META_HDR-1]) < sizeof(*hdr))
763 goto errout;
764 hdr = RTA_DATA(tb[TCA_EM_META_HDR-1]);
765
766 if (TCF_META_TYPE(hdr->left.kind) != TCF_META_TYPE(hdr->right.kind) ||
767 TCF_META_TYPE(hdr->left.kind) > TCF_META_TYPE_MAX ||
768 TCF_META_ID(hdr->left.kind) > TCF_META_ID_MAX ||
769 TCF_META_ID(hdr->right.kind) > TCF_META_ID_MAX)
770 goto errout;
771
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700772 meta = kzalloc(sizeof(*meta), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 if (meta == NULL)
774 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
776 memcpy(&meta->lvalue.hdr, &hdr->left, sizeof(hdr->left));
777 memcpy(&meta->rvalue.hdr, &hdr->right, sizeof(hdr->right));
778
779 if (!meta_is_supported(&meta->lvalue) ||
780 !meta_is_supported(&meta->rvalue)) {
781 err = -EOPNOTSUPP;
782 goto errout;
783 }
784
785 if (meta_change_data(&meta->lvalue, tb[TCA_EM_META_LVALUE-1]) < 0 ||
786 meta_change_data(&meta->rvalue, tb[TCA_EM_META_RVALUE-1]) < 0)
787 goto errout;
788
789 m->datalen = sizeof(*meta);
790 m->data = (unsigned long) meta;
791
792 err = 0;
793errout:
794 if (err && meta)
795 meta_delete(meta);
796 return err;
797}
798
799static void em_meta_destroy(struct tcf_proto *tp, struct tcf_ematch *m)
800{
801 if (m)
802 meta_delete((struct meta_match *) m->data);
803}
804
805static int em_meta_dump(struct sk_buff *skb, struct tcf_ematch *em)
806{
807 struct meta_match *meta = (struct meta_match *) em->data;
808 struct tcf_meta_hdr hdr;
809 struct meta_type_ops *ops;
810
811 memset(&hdr, 0, sizeof(hdr));
812 memcpy(&hdr.left, &meta->lvalue.hdr, sizeof(hdr.left));
813 memcpy(&hdr.right, &meta->rvalue.hdr, sizeof(hdr.right));
814
815 RTA_PUT(skb, TCA_EM_META_HDR, sizeof(hdr), &hdr);
816
817 ops = meta_type_ops(&meta->lvalue);
818 if (ops->dump(skb, &meta->lvalue, TCA_EM_META_LVALUE) < 0 ||
819 ops->dump(skb, &meta->rvalue, TCA_EM_META_RVALUE) < 0)
820 goto rtattr_failure;
821
822 return 0;
823
824rtattr_failure:
825 return -1;
826}
827
828static struct tcf_ematch_ops em_meta_ops = {
829 .kind = TCF_EM_META,
830 .change = em_meta_change,
831 .match = em_meta_match,
832 .destroy = em_meta_destroy,
833 .dump = em_meta_dump,
834 .owner = THIS_MODULE,
835 .link = LIST_HEAD_INIT(em_meta_ops.link)
836};
837
838static int __init init_em_meta(void)
839{
840 return tcf_em_register(&em_meta_ops);
841}
842
843static void __exit exit_em_meta(void)
844{
845 tcf_em_unregister(&em_meta_ops);
846}
847
848MODULE_LICENSE("GPL");
849
850module_init(init_em_meta);
851module_exit(exit_em_meta);