Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * net/sched/pedit.c Generic packet editor |
| 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 | |
WANG Cong | 369ba56 | 2013-12-15 20:15:08 -0800 | [diff] [blame] | 28 | static struct tcf_hashinfo pedit_hash_info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
Patrick McHardy | 53b2bf3 | 2008-01-23 20:36:30 -0800 | [diff] [blame] | 30 | static const struct nla_policy pedit_policy[TCA_PEDIT_MAX + 1] = { |
jamal | 53f7e35 | 2009-10-11 04:21:38 +0000 | [diff] [blame] | 31 | [TCA_PEDIT_PARMS] = { .len = sizeof(struct tc_pedit) }, |
Patrick McHardy | 53b2bf3 | 2008-01-23 20:36:30 -0800 | [diff] [blame] | 32 | }; |
| 33 | |
Benjamin LaHaise | c1b5273 | 2013-01-14 05:15:39 +0000 | [diff] [blame] | 34 | static int tcf_pedit_init(struct net *net, struct nlattr *nla, |
| 35 | struct nlattr *est, struct tc_action *a, |
| 36 | int ovr, int bind) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | { |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 38 | struct nlattr *tb[TCA_PEDIT_MAX + 1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | struct tc_pedit *parm; |
Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 40 | int ret = 0, err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | struct tcf_pedit *p; |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 42 | struct tcf_common *pc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | struct tc_pedit_key *keys = NULL; |
| 44 | int ksize; |
| 45 | |
Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 46 | if (nla == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | return -EINVAL; |
| 48 | |
Patrick McHardy | 53b2bf3 | 2008-01-23 20:36:30 -0800 | [diff] [blame] | 49 | err = nla_parse_nested(tb, TCA_PEDIT_MAX, nla, pedit_policy); |
Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 50 | if (err < 0) |
| 51 | return err; |
| 52 | |
Patrick McHardy | 53b2bf3 | 2008-01-23 20:36:30 -0800 | [diff] [blame] | 53 | if (tb[TCA_PEDIT_PARMS] == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | return -EINVAL; |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 55 | parm = nla_data(tb[TCA_PEDIT_PARMS]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | ksize = parm->nkeys * sizeof(struct tc_pedit_key); |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 57 | if (nla_len(tb[TCA_PEDIT_PARMS]) < sizeof(*parm) + ksize) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | return -EINVAL; |
| 59 | |
WANG Cong | c779f7a | 2014-01-17 11:37:02 -0800 | [diff] [blame] | 60 | pc = tcf_hash_check(parm->index, a, bind); |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 61 | if (!pc) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | if (!parm->nkeys) |
| 63 | return -EINVAL; |
WANG Cong | c779f7a | 2014-01-17 11:37:02 -0800 | [diff] [blame] | 64 | pc = tcf_hash_create(parm->index, est, a, sizeof(*p), bind); |
Stephen Hemminger | 0e991ec | 2008-11-25 21:12:32 -0800 | [diff] [blame] | 65 | if (IS_ERR(pc)) |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 66 | return PTR_ERR(pc); |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 67 | p = to_pedit(pc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | keys = kmalloc(ksize, GFP_KERNEL); |
| 69 | if (keys == NULL) { |
Hiroaki SHIMODA | 47fd92f | 2012-08-06 05:45:48 +0000 | [diff] [blame] | 70 | if (est) |
| 71 | gen_kill_estimator(&pc->tcfc_bstats, |
| 72 | &pc->tcfc_rate_est); |
| 73 | kfree_rcu(pc, tcfc_rcu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | return -ENOMEM; |
| 75 | } |
| 76 | ret = ACT_P_CREATED; |
| 77 | } else { |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 78 | p = to_pedit(pc); |
WANG Cong | c779f7a | 2014-01-17 11:37:02 -0800 | [diff] [blame] | 79 | tcf_hash_release(pc, bind, a->ops->hinfo); |
Jamal Hadi Salim | 1a29321 | 2013-12-23 08:02:11 -0500 | [diff] [blame] | 80 | if (bind) |
| 81 | return 0; |
| 82 | if (!ovr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | return -EEXIST; |
Jamal Hadi Salim | 1a29321 | 2013-12-23 08:02:11 -0500 | [diff] [blame] | 84 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 85 | if (p->tcfp_nkeys && p->tcfp_nkeys != parm->nkeys) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | keys = kmalloc(ksize, GFP_KERNEL); |
| 87 | if (keys == NULL) |
| 88 | return -ENOMEM; |
| 89 | } |
| 90 | } |
| 91 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 92 | spin_lock_bh(&p->tcf_lock); |
| 93 | p->tcfp_flags = parm->flags; |
| 94 | p->tcf_action = parm->action; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | if (keys) { |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 96 | kfree(p->tcfp_keys); |
| 97 | p->tcfp_keys = keys; |
| 98 | p->tcfp_nkeys = parm->nkeys; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | } |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 100 | memcpy(p->tcfp_keys, parm->keys, ksize); |
| 101 | spin_unlock_bh(&p->tcf_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | if (ret == ACT_P_CREATED) |
WANG Cong | c779f7a | 2014-01-17 11:37:02 -0800 | [diff] [blame] | 103 | tcf_hash_insert(pc, a->ops->hinfo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | return ret; |
| 105 | } |
| 106 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 107 | static int tcf_pedit_cleanup(struct tc_action *a, int bind) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | { |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 109 | struct tcf_pedit *p = a->priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 111 | if (p) { |
| 112 | struct tc_pedit_key *keys = p->tcfp_keys; |
| 113 | if (tcf_hash_release(&p->common, bind, &pedit_hash_info)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | kfree(keys); |
| 115 | return 1; |
| 116 | } |
| 117 | } |
| 118 | return 0; |
| 119 | } |
| 120 | |
Eric Dumazet | dc7f9f6 | 2011-07-05 23:25:42 +0000 | [diff] [blame] | 121 | 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] | 122 | struct tcf_result *res) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | { |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 124 | struct tcf_pedit *p = a->priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | int i, munged = 0; |
Changli Gao | db2c241 | 2010-06-02 04:55:02 +0000 | [diff] [blame] | 126 | unsigned int off; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | |
Pravin B Shelar | 14bbd6a | 2013-02-14 09:44:49 +0000 | [diff] [blame] | 128 | if (skb_unclone(skb, GFP_ATOMIC)) |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 129 | return p->tcf_action; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | |
Changli Gao | db2c241 | 2010-06-02 04:55:02 +0000 | [diff] [blame] | 131 | off = skb_network_offset(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 133 | spin_lock(&p->tcf_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 135 | p->tcf_tm.lastuse = jiffies; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 137 | if (p->tcfp_nkeys > 0) { |
| 138 | struct tc_pedit_key *tkey = p->tcfp_keys; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 140 | for (i = p->tcfp_nkeys; i > 0; i--, tkey++) { |
Changli Gao | db2c241 | 2010-06-02 04:55:02 +0000 | [diff] [blame] | 141 | u32 *ptr, _data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | int offset = tkey->off; |
| 143 | |
| 144 | if (tkey->offmask) { |
Changli Gao | db2c241 | 2010-06-02 04:55:02 +0000 | [diff] [blame] | 145 | char *d, _d; |
| 146 | |
| 147 | d = skb_header_pointer(skb, off + tkey->at, 1, |
| 148 | &_d); |
| 149 | if (!d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | goto bad; |
Changli Gao | db2c241 | 2010-06-02 04:55:02 +0000 | [diff] [blame] | 151 | offset += (*d & tkey->offmask) >> tkey->shift; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | } |
| 153 | |
| 154 | if (offset % 4) { |
stephen hemminger | 6ff9c36 | 2010-05-12 06:37:05 +0000 | [diff] [blame] | 155 | pr_info("tc filter pedit" |
| 156 | " offset must be on 32 bit boundaries\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | goto bad; |
| 158 | } |
Bill Nottingham | 75202e7 | 2007-05-31 21:33:35 -0700 | [diff] [blame] | 159 | if (offset > 0 && offset > skb->len) { |
stephen hemminger | 6ff9c36 | 2010-05-12 06:37:05 +0000 | [diff] [blame] | 160 | pr_info("tc filter pedit" |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 161 | " offset %d can't exceed pkt length %d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | offset, skb->len); |
| 163 | goto bad; |
| 164 | } |
| 165 | |
Changli Gao | db2c241 | 2010-06-02 04:55:02 +0000 | [diff] [blame] | 166 | ptr = skb_header_pointer(skb, off + offset, 4, &_data); |
| 167 | if (!ptr) |
| 168 | goto bad; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | /* just do it, baby */ |
| 170 | *ptr = ((*ptr & tkey->mask) ^ tkey->val); |
Changli Gao | db2c241 | 2010-06-02 04:55:02 +0000 | [diff] [blame] | 171 | if (ptr == &_data) |
| 172 | skb_store_bits(skb, off + offset, ptr, 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | munged++; |
| 174 | } |
YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 175 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | if (munged) |
| 177 | skb->tc_verd = SET_TC_MUNGED(skb->tc_verd); |
| 178 | goto done; |
stephen hemminger | 6ff9c36 | 2010-05-12 06:37:05 +0000 | [diff] [blame] | 179 | } else |
| 180 | WARN(1, "pedit BUG: index %d\n", p->tcf_index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | |
| 182 | bad: |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 183 | p->tcf_qstats.overlimits++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | done: |
Eric Dumazet | bfe0d02 | 2011-01-09 08:30:54 +0000 | [diff] [blame] | 185 | bstats_update(&p->tcf_bstats, skb); |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 186 | spin_unlock(&p->tcf_lock); |
| 187 | return p->tcf_action; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | } |
| 189 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 190 | static int tcf_pedit_dump(struct sk_buff *skb, struct tc_action *a, |
| 191 | int bind, int ref) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | { |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 193 | unsigned char *b = skb_tail_pointer(skb); |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 194 | struct tcf_pedit *p = a->priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | struct tc_pedit *opt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | struct tcf_t t; |
YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 197 | int s; |
| 198 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 199 | s = sizeof(*opt) + p->tcfp_nkeys * sizeof(struct tc_pedit_key); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | |
| 201 | /* netlink spinlocks held above us - must use ATOMIC */ |
Panagiotis Issaris | 0da974f | 2006-07-21 14:51:30 -0700 | [diff] [blame] | 202 | opt = kzalloc(s, GFP_ATOMIC); |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 203 | if (unlikely(!opt)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | return -ENOBUFS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 206 | memcpy(opt->keys, p->tcfp_keys, |
| 207 | p->tcfp_nkeys * sizeof(struct tc_pedit_key)); |
| 208 | opt->index = p->tcf_index; |
| 209 | opt->nkeys = p->tcfp_nkeys; |
| 210 | opt->flags = p->tcfp_flags; |
| 211 | opt->action = p->tcf_action; |
| 212 | opt->refcnt = p->tcf_refcnt - ref; |
| 213 | opt->bindcnt = p->tcf_bindcnt - bind; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 215 | if (nla_put(skb, TCA_PEDIT_PARMS, s, opt)) |
| 216 | goto nla_put_failure; |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 217 | t.install = jiffies_to_clock_t(jiffies - p->tcf_tm.install); |
| 218 | t.lastuse = jiffies_to_clock_t(jiffies - p->tcf_tm.lastuse); |
| 219 | t.expires = jiffies_to_clock_t(p->tcf_tm.expires); |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 220 | if (nla_put(skb, TCA_PEDIT_TM, sizeof(t), &t)) |
| 221 | goto nla_put_failure; |
Patrick McHardy | 541673c8 | 2006-01-08 22:17:27 -0800 | [diff] [blame] | 222 | kfree(opt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | return skb->len; |
| 224 | |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 225 | nla_put_failure: |
Arnaldo Carvalho de Melo | dc5fc57 | 2007-03-25 23:06:12 -0700 | [diff] [blame] | 226 | nlmsg_trim(skb, b); |
Patrick McHardy | 541673c8 | 2006-01-08 22:17:27 -0800 | [diff] [blame] | 227 | kfree(opt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | return -1; |
| 229 | } |
| 230 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 231 | static struct tc_action_ops act_pedit_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | .kind = "pedit", |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 233 | .hinfo = &pedit_hash_info, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | .type = TCA_ACT_PEDIT, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | .owner = THIS_MODULE, |
| 236 | .act = tcf_pedit, |
| 237 | .dump = tcf_pedit_dump, |
| 238 | .cleanup = tcf_pedit_cleanup, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | .init = tcf_pedit_init, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | }; |
| 241 | |
| 242 | MODULE_AUTHOR("Jamal Hadi Salim(2002-4)"); |
| 243 | MODULE_DESCRIPTION("Generic Packet Editor actions"); |
| 244 | MODULE_LICENSE("GPL"); |
| 245 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 246 | static int __init pedit_init_module(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | { |
WANG Cong | 568a153 | 2013-12-20 00:08:51 -0800 | [diff] [blame] | 248 | int err = tcf_hashinfo_init(&pedit_hash_info, PEDIT_TAB_MASK); |
WANG Cong | 369ba56 | 2013-12-15 20:15:08 -0800 | [diff] [blame] | 249 | if (err) |
| 250 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | return tcf_register_action(&act_pedit_ops); |
| 252 | } |
| 253 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 254 | static void __exit pedit_cleanup_module(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | { |
WANG Cong | 369ba56 | 2013-12-15 20:15:08 -0800 | [diff] [blame] | 256 | tcf_hashinfo_destroy(&pedit_hash_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | tcf_unregister_action(&act_pedit_ops); |
| 258 | } |
| 259 | |
| 260 | module_init(pedit_init_module); |
| 261 | module_exit(pedit_cleanup_module); |
| 262 | |