Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Jiri Pirko | 0c6965d | 2014-11-05 20:51:51 +0100 | [diff] [blame] | 2 | * net/sched/act_pedit.c Generic packet editor |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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: Jamal Hadi Salim (2002-4) |
| 10 | */ |
| 11 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/types.h> |
| 13 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/string.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/errno.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/skbuff.h> |
| 17 | #include <linux/rtnetlink.h> |
| 18 | #include <linux/module.h> |
| 19 | #include <linux/init.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 20 | #include <linux/slab.h> |
Arnaldo Carvalho de Melo | dc5fc57 | 2007-03-25 23:06:12 -0700 | [diff] [blame] | 21 | #include <net/netlink.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <net/pkt_sched.h> |
| 23 | #include <linux/tc_act/tc_pedit.h> |
| 24 | #include <net/tc_act/tc_pedit.h> |
| 25 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 26 | #define PEDIT_TAB_MASK 15 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |
Alexey Dobriyan | c7d03a0 | 2016-11-17 04:58:21 +0300 | [diff] [blame] | 28 | static unsigned int pedit_net_id; |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 29 | static struct tc_action_ops act_pedit_ops; |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 30 | |
Patrick McHardy | 53b2bf3 | 2008-01-23 20:36:30 -0800 | [diff] [blame] | 31 | static const struct nla_policy pedit_policy[TCA_PEDIT_MAX + 1] = { |
jamal | 53f7e35 | 2009-10-11 04:21:38 +0000 | [diff] [blame] | 32 | [TCA_PEDIT_PARMS] = { .len = sizeof(struct tc_pedit) }, |
Patrick McHardy | 53b2bf3 | 2008-01-23 20:36:30 -0800 | [diff] [blame] | 33 | }; |
| 34 | |
Benjamin LaHaise | c1b5273 | 2013-01-14 05:15:39 +0000 | [diff] [blame] | 35 | static int tcf_pedit_init(struct net *net, struct nlattr *nla, |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 36 | struct nlattr *est, struct tc_action **a, |
Benjamin LaHaise | c1b5273 | 2013-01-14 05:15:39 +0000 | [diff] [blame] | 37 | int ovr, int bind) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | { |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 39 | struct tc_action_net *tn = net_generic(net, pedit_net_id); |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 40 | struct nlattr *tb[TCA_PEDIT_MAX + 1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | struct tc_pedit *parm; |
Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 42 | int ret = 0, err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | struct tcf_pedit *p; |
| 44 | struct tc_pedit_key *keys = NULL; |
| 45 | int ksize; |
| 46 | |
Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 47 | if (nla == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | return -EINVAL; |
| 49 | |
Patrick McHardy | 53b2bf3 | 2008-01-23 20:36:30 -0800 | [diff] [blame] | 50 | err = nla_parse_nested(tb, TCA_PEDIT_MAX, nla, pedit_policy); |
Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 51 | if (err < 0) |
| 52 | return err; |
| 53 | |
Patrick McHardy | 53b2bf3 | 2008-01-23 20:36:30 -0800 | [diff] [blame] | 54 | if (tb[TCA_PEDIT_PARMS] == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | return -EINVAL; |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 56 | parm = nla_data(tb[TCA_PEDIT_PARMS]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | ksize = parm->nkeys * sizeof(struct tc_pedit_key); |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 58 | if (nla_len(tb[TCA_PEDIT_PARMS]) < sizeof(*parm) + ksize) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | return -EINVAL; |
| 60 | |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 61 | if (!tcf_hash_check(tn, parm->index, a, bind)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | if (!parm->nkeys) |
| 63 | return -EINVAL; |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 64 | ret = tcf_hash_create(tn, parm->index, est, a, |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 65 | &act_pedit_ops, bind, false); |
WANG Cong | 8606203 | 2014-02-11 17:07:31 -0800 | [diff] [blame] | 66 | if (ret) |
| 67 | return ret; |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 68 | p = to_pedit(*a); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | keys = kmalloc(ksize, GFP_KERNEL); |
| 70 | if (keys == NULL) { |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 71 | tcf_hash_cleanup(*a, est); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | return -ENOMEM; |
| 73 | } |
| 74 | ret = ACT_P_CREATED; |
| 75 | } else { |
Jamal Hadi Salim | 1a29321 | 2013-12-23 08:02:11 -0500 | [diff] [blame] | 76 | if (bind) |
| 77 | return 0; |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 78 | tcf_hash_release(*a, bind); |
Jamal Hadi Salim | 1a29321 | 2013-12-23 08:02:11 -0500 | [diff] [blame] | 79 | if (!ovr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | return -EEXIST; |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 81 | p = to_pedit(*a); |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 82 | if (p->tcfp_nkeys && p->tcfp_nkeys != parm->nkeys) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | keys = kmalloc(ksize, GFP_KERNEL); |
| 84 | if (keys == NULL) |
| 85 | return -ENOMEM; |
| 86 | } |
| 87 | } |
| 88 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 89 | spin_lock_bh(&p->tcf_lock); |
| 90 | p->tcfp_flags = parm->flags; |
| 91 | p->tcf_action = parm->action; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | if (keys) { |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 93 | kfree(p->tcfp_keys); |
| 94 | p->tcfp_keys = keys; |
| 95 | p->tcfp_nkeys = parm->nkeys; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | } |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 97 | memcpy(p->tcfp_keys, parm->keys, ksize); |
| 98 | spin_unlock_bh(&p->tcf_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | if (ret == ACT_P_CREATED) |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 100 | tcf_hash_insert(tn, *a); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | return ret; |
| 102 | } |
| 103 | |
WANG Cong | a5b5c95 | 2014-02-11 17:07:32 -0800 | [diff] [blame] | 104 | static void tcf_pedit_cleanup(struct tc_action *a, int bind) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | { |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 106 | struct tcf_pedit *p = to_pedit(a); |
WANG Cong | a5b5c95 | 2014-02-11 17:07:32 -0800 | [diff] [blame] | 107 | struct tc_pedit_key *keys = p->tcfp_keys; |
| 108 | kfree(keys); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | } |
| 110 | |
Amir Vadai | 95c2027 | 2016-11-28 12:56:40 +0200 | [diff] [blame] | 111 | static bool offset_valid(struct sk_buff *skb, int offset) |
| 112 | { |
| 113 | if (offset > 0 && offset > skb->len) |
| 114 | return false; |
| 115 | |
| 116 | if (offset < 0 && -offset > skb_headroom(skb)) |
| 117 | return false; |
| 118 | |
| 119 | return true; |
| 120 | } |
| 121 | |
Eric Dumazet | dc7f9f6 | 2011-07-05 23:25:42 +0000 | [diff] [blame] | 122 | static int tcf_pedit(struct sk_buff *skb, const struct tc_action *a, |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 123 | struct tcf_result *res) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | { |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 125 | struct tcf_pedit *p = to_pedit(a); |
Florian Westphal | 4749c3ef | 2015-04-30 12:12:00 +0200 | [diff] [blame] | 126 | int i; |
Changli Gao | db2c241 | 2010-06-02 04:55:02 +0000 | [diff] [blame] | 127 | unsigned int off; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | |
Pravin B Shelar | 14bbd6a | 2013-02-14 09:44:49 +0000 | [diff] [blame] | 129 | if (skb_unclone(skb, GFP_ATOMIC)) |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 130 | return p->tcf_action; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | |
Changli Gao | db2c241 | 2010-06-02 04:55:02 +0000 | [diff] [blame] | 132 | off = skb_network_offset(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 134 | spin_lock(&p->tcf_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | |
Jamal Hadi Salim | 9c4a4e4 | 2016-06-06 06:32:53 -0400 | [diff] [blame] | 136 | tcf_lastuse_update(&p->tcf_tm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 138 | if (p->tcfp_nkeys > 0) { |
| 139 | struct tc_pedit_key *tkey = p->tcfp_keys; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 141 | for (i = p->tcfp_nkeys; i > 0; i--, tkey++) { |
Changli Gao | db2c241 | 2010-06-02 04:55:02 +0000 | [diff] [blame] | 142 | u32 *ptr, _data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | int offset = tkey->off; |
| 144 | |
| 145 | if (tkey->offmask) { |
Changli Gao | db2c241 | 2010-06-02 04:55:02 +0000 | [diff] [blame] | 146 | char *d, _d; |
| 147 | |
Amir Vadai | 95c2027 | 2016-11-28 12:56:40 +0200 | [diff] [blame] | 148 | if (!offset_valid(skb, off + tkey->at)) { |
| 149 | pr_info("tc filter pedit 'at' offset %d out of bounds\n", |
| 150 | off + tkey->at); |
| 151 | goto bad; |
| 152 | } |
Changli Gao | db2c241 | 2010-06-02 04:55:02 +0000 | [diff] [blame] | 153 | d = skb_header_pointer(skb, off + tkey->at, 1, |
| 154 | &_d); |
| 155 | if (!d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | goto bad; |
Changli Gao | db2c241 | 2010-06-02 04:55:02 +0000 | [diff] [blame] | 157 | offset += (*d & tkey->offmask) >> tkey->shift; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | } |
| 159 | |
| 160 | if (offset % 4) { |
stephen hemminger | 6ff9c36 | 2010-05-12 06:37:05 +0000 | [diff] [blame] | 161 | pr_info("tc filter pedit" |
| 162 | " offset must be on 32 bit boundaries\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | goto bad; |
| 164 | } |
Amir Vadai | 95c2027 | 2016-11-28 12:56:40 +0200 | [diff] [blame] | 165 | |
| 166 | if (!offset_valid(skb, off + offset)) { |
| 167 | pr_info("tc filter pedit offset %d out of bounds\n", |
| 168 | offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | goto bad; |
| 170 | } |
| 171 | |
Changli Gao | db2c241 | 2010-06-02 04:55:02 +0000 | [diff] [blame] | 172 | ptr = skb_header_pointer(skb, off + offset, 4, &_data); |
| 173 | if (!ptr) |
| 174 | goto bad; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | /* just do it, baby */ |
| 176 | *ptr = ((*ptr & tkey->mask) ^ tkey->val); |
Changli Gao | db2c241 | 2010-06-02 04:55:02 +0000 | [diff] [blame] | 177 | if (ptr == &_data) |
| 178 | skb_store_bits(skb, off + offset, ptr, 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | } |
YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 180 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | goto done; |
stephen hemminger | 6ff9c36 | 2010-05-12 06:37:05 +0000 | [diff] [blame] | 182 | } else |
| 183 | WARN(1, "pedit BUG: index %d\n", p->tcf_index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | |
| 185 | bad: |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 186 | p->tcf_qstats.overlimits++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | done: |
Eric Dumazet | bfe0d02 | 2011-01-09 08:30:54 +0000 | [diff] [blame] | 188 | bstats_update(&p->tcf_bstats, skb); |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 189 | spin_unlock(&p->tcf_lock); |
| 190 | return p->tcf_action; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | } |
| 192 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 193 | static int tcf_pedit_dump(struct sk_buff *skb, struct tc_action *a, |
| 194 | int bind, int ref) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | { |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 196 | unsigned char *b = skb_tail_pointer(skb); |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 197 | struct tcf_pedit *p = to_pedit(a); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | struct tc_pedit *opt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | struct tcf_t t; |
YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 200 | int s; |
| 201 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 202 | s = sizeof(*opt) + p->tcfp_nkeys * sizeof(struct tc_pedit_key); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | |
| 204 | /* netlink spinlocks held above us - must use ATOMIC */ |
Panagiotis Issaris | 0da974f | 2006-07-21 14:51:30 -0700 | [diff] [blame] | 205 | opt = kzalloc(s, GFP_ATOMIC); |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 206 | if (unlikely(!opt)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | return -ENOBUFS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 209 | memcpy(opt->keys, p->tcfp_keys, |
| 210 | p->tcfp_nkeys * sizeof(struct tc_pedit_key)); |
| 211 | opt->index = p->tcf_index; |
| 212 | opt->nkeys = p->tcfp_nkeys; |
| 213 | opt->flags = p->tcfp_flags; |
| 214 | opt->action = p->tcf_action; |
| 215 | opt->refcnt = p->tcf_refcnt - ref; |
| 216 | opt->bindcnt = p->tcf_bindcnt - bind; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 218 | if (nla_put(skb, TCA_PEDIT_PARMS, s, opt)) |
| 219 | goto nla_put_failure; |
Jamal Hadi Salim | 48d8ee1 | 2016-06-06 06:32:55 -0400 | [diff] [blame] | 220 | |
| 221 | tcf_tm_dump(&t, &p->tcf_tm); |
Nicolas Dichtel | 9854518 | 2016-04-26 10:06:18 +0200 | [diff] [blame] | 222 | if (nla_put_64bit(skb, TCA_PEDIT_TM, sizeof(t), &t, TCA_PEDIT_PAD)) |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 223 | goto nla_put_failure; |
Jamal Hadi Salim | 48d8ee1 | 2016-06-06 06:32:55 -0400 | [diff] [blame] | 224 | |
Patrick McHardy | 541673c8 | 2006-01-08 22:17:27 -0800 | [diff] [blame] | 225 | kfree(opt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | return skb->len; |
| 227 | |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 228 | nla_put_failure: |
Arnaldo Carvalho de Melo | dc5fc57 | 2007-03-25 23:06:12 -0700 | [diff] [blame] | 229 | nlmsg_trim(skb, b); |
Patrick McHardy | 541673c8 | 2006-01-08 22:17:27 -0800 | [diff] [blame] | 230 | kfree(opt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | return -1; |
| 232 | } |
| 233 | |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 234 | static int tcf_pedit_walker(struct net *net, struct sk_buff *skb, |
| 235 | struct netlink_callback *cb, int type, |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 236 | const struct tc_action_ops *ops) |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 237 | { |
| 238 | struct tc_action_net *tn = net_generic(net, pedit_net_id); |
| 239 | |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 240 | return tcf_generic_walker(tn, skb, cb, type, ops); |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 241 | } |
| 242 | |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 243 | static int tcf_pedit_search(struct net *net, struct tc_action **a, u32 index) |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 244 | { |
| 245 | struct tc_action_net *tn = net_generic(net, pedit_net_id); |
| 246 | |
| 247 | return tcf_hash_search(tn, a, index); |
| 248 | } |
| 249 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 250 | static struct tc_action_ops act_pedit_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | .kind = "pedit", |
| 252 | .type = TCA_ACT_PEDIT, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | .owner = THIS_MODULE, |
| 254 | .act = tcf_pedit, |
| 255 | .dump = tcf_pedit_dump, |
| 256 | .cleanup = tcf_pedit_cleanup, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | .init = tcf_pedit_init, |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 258 | .walk = tcf_pedit_walker, |
| 259 | .lookup = tcf_pedit_search, |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 260 | .size = sizeof(struct tcf_pedit), |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 261 | }; |
| 262 | |
| 263 | static __net_init int pedit_init_net(struct net *net) |
| 264 | { |
| 265 | struct tc_action_net *tn = net_generic(net, pedit_net_id); |
| 266 | |
| 267 | return tc_action_net_init(tn, &act_pedit_ops, PEDIT_TAB_MASK); |
| 268 | } |
| 269 | |
| 270 | static void __net_exit pedit_exit_net(struct net *net) |
| 271 | { |
| 272 | struct tc_action_net *tn = net_generic(net, pedit_net_id); |
| 273 | |
| 274 | tc_action_net_exit(tn); |
| 275 | } |
| 276 | |
| 277 | static struct pernet_operations pedit_net_ops = { |
| 278 | .init = pedit_init_net, |
| 279 | .exit = pedit_exit_net, |
| 280 | .id = &pedit_net_id, |
| 281 | .size = sizeof(struct tc_action_net), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | }; |
| 283 | |
| 284 | MODULE_AUTHOR("Jamal Hadi Salim(2002-4)"); |
| 285 | MODULE_DESCRIPTION("Generic Packet Editor actions"); |
| 286 | MODULE_LICENSE("GPL"); |
| 287 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 288 | static int __init pedit_init_module(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | { |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 290 | return tcf_register_action(&act_pedit_ops, &pedit_net_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | } |
| 292 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 293 | static void __exit pedit_cleanup_module(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | { |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 295 | tcf_unregister_action(&act_pedit_ops, &pedit_net_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | } |
| 297 | |
| 298 | module_init(pedit_init_module); |
| 299 | module_exit(pedit_cleanup_module); |
| 300 | |