Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * net/sched/cls_fw.c Classifier mapping ipchains' fwmark to traffic class. |
| 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: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru> |
| 10 | * |
| 11 | * Changes: |
| 12 | * Karlis Peisenieks <karlis@mt.lv> : 990415 : fw_walk off by one |
| 13 | * Karlis Peisenieks <karlis@mt.lv> : 990415 : fw_delete killed all the filter (and kernel). |
| 14 | * Alex <alex@pilotsoft.com> : 2004xxyy: Added Action extension |
| 15 | * |
| 16 | * JHS: We should remove the CONFIG_NET_CLS_IND from here |
| 17 | * eventually when the meta match extension is made available |
| 18 | * |
| 19 | */ |
| 20 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/module.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 22 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include <linux/types.h> |
| 24 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/string.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <linux/errno.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <linux/skbuff.h> |
Patrick McHardy | 0ba4805 | 2007-07-02 22:49:07 -0700 | [diff] [blame] | 28 | #include <net/netlink.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <net/act_api.h> |
| 30 | #include <net/pkt_cls.h> |
| 31 | |
Eric Dumazet | d37d8ac | 2014-03-17 20:20:49 -0700 | [diff] [blame] | 32 | #define HTSIZE 256 |
Thomas Graf | c5c13fa | 2005-04-24 20:19:54 -0700 | [diff] [blame] | 33 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 34 | struct fw_head { |
Eric Dumazet | d37d8ac | 2014-03-17 20:20:49 -0700 | [diff] [blame] | 35 | u32 mask; |
| 36 | struct fw_filter *ht[HTSIZE]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | }; |
| 38 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 39 | struct fw_filter { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | struct fw_filter *next; |
| 41 | u32 id; |
| 42 | struct tcf_result res; |
| 43 | #ifdef CONFIG_NET_CLS_IND |
WANG Cong | 2519a60 | 2014-01-09 16:14:02 -0800 | [diff] [blame] | 44 | int ifindex; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #endif /* CONFIG_NET_CLS_IND */ |
| 46 | struct tcf_exts exts; |
| 47 | }; |
| 48 | |
Eric Dumazet | d37d8ac | 2014-03-17 20:20:49 -0700 | [diff] [blame] | 49 | static u32 fw_hash(u32 handle) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | { |
Eric Dumazet | d37d8ac | 2014-03-17 20:20:49 -0700 | [diff] [blame] | 51 | handle ^= (handle >> 16); |
| 52 | handle ^= (handle >> 8); |
| 53 | return handle % HTSIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | } |
| 55 | |
Eric Dumazet | dc7f9f6 | 2011-07-05 23:25:42 +0000 | [diff] [blame] | 56 | static int fw_classify(struct sk_buff *skb, const struct tcf_proto *tp, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | struct tcf_result *res) |
| 58 | { |
WANG Cong | a8701a6 | 2014-01-09 16:14:03 -0800 | [diff] [blame] | 59 | struct fw_head *head = tp->root; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | struct fw_filter *f; |
| 61 | int r; |
Patrick McHardy | 5c804bf | 2006-12-05 13:46:13 -0800 | [diff] [blame] | 62 | u32 id = skb->mark; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | |
| 64 | if (head != NULL) { |
Patrick McHardy | 5c804bf | 2006-12-05 13:46:13 -0800 | [diff] [blame] | 65 | id &= head->mask; |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 66 | for (f = head->ht[fw_hash(id)]; f; f = f->next) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | if (f->id == id) { |
| 68 | *res = f->res; |
| 69 | #ifdef CONFIG_NET_CLS_IND |
WANG Cong | 2519a60 | 2014-01-09 16:14:02 -0800 | [diff] [blame] | 70 | if (!tcf_match_indev(skb, f->ifindex)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | continue; |
| 72 | #endif /* CONFIG_NET_CLS_IND */ |
| 73 | r = tcf_exts_exec(skb, &f->exts, res); |
| 74 | if (r < 0) |
| 75 | continue; |
| 76 | |
| 77 | return r; |
| 78 | } |
| 79 | } |
| 80 | } else { |
| 81 | /* old method */ |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 82 | if (id && (TC_H_MAJ(id) == 0 || |
| 83 | !(TC_H_MAJ(id ^ tp->q->handle)))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | res->classid = id; |
| 85 | res->class = 0; |
| 86 | return 0; |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | return -1; |
| 91 | } |
| 92 | |
| 93 | static unsigned long fw_get(struct tcf_proto *tp, u32 handle) |
| 94 | { |
WANG Cong | a8701a6 | 2014-01-09 16:14:03 -0800 | [diff] [blame] | 95 | struct fw_head *head = tp->root; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | struct fw_filter *f; |
| 97 | |
| 98 | if (head == NULL) |
| 99 | return 0; |
| 100 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 101 | for (f = head->ht[fw_hash(handle)]; f; f = f->next) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | if (f->id == handle) |
| 103 | return (unsigned long)f; |
| 104 | } |
| 105 | return 0; |
| 106 | } |
| 107 | |
| 108 | static void fw_put(struct tcf_proto *tp, unsigned long f) |
| 109 | { |
| 110 | } |
| 111 | |
| 112 | static int fw_init(struct tcf_proto *tp) |
| 113 | { |
| 114 | return 0; |
| 115 | } |
| 116 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 117 | static void fw_delete_filter(struct tcf_proto *tp, struct fw_filter *f) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | { |
| 119 | tcf_unbind_filter(tp, &f->res); |
| 120 | tcf_exts_destroy(tp, &f->exts); |
| 121 | kfree(f); |
| 122 | } |
| 123 | |
| 124 | static void fw_destroy(struct tcf_proto *tp) |
| 125 | { |
Patrick McHardy | 47a1a1d | 2008-11-19 08:03:09 +0000 | [diff] [blame] | 126 | struct fw_head *head = tp->root; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | struct fw_filter *f; |
| 128 | int h; |
| 129 | |
| 130 | if (head == NULL) |
| 131 | return; |
| 132 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 133 | for (h = 0; h < HTSIZE; h++) { |
| 134 | while ((f = head->ht[h]) != NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | head->ht[h] = f->next; |
| 136 | fw_delete_filter(tp, f); |
| 137 | } |
| 138 | } |
| 139 | kfree(head); |
| 140 | } |
| 141 | |
| 142 | static int fw_delete(struct tcf_proto *tp, unsigned long arg) |
| 143 | { |
WANG Cong | a8701a6 | 2014-01-09 16:14:03 -0800 | [diff] [blame] | 144 | struct fw_head *head = tp->root; |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 145 | struct fw_filter *f = (struct fw_filter *)arg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | struct fw_filter **fp; |
| 147 | |
| 148 | if (head == NULL || f == NULL) |
| 149 | goto out; |
| 150 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 151 | for (fp = &head->ht[fw_hash(f->id)]; *fp; fp = &(*fp)->next) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | if (*fp == f) { |
| 153 | tcf_tree_lock(tp); |
| 154 | *fp = f->next; |
| 155 | tcf_tree_unlock(tp); |
| 156 | fw_delete_filter(tp, f); |
| 157 | return 0; |
| 158 | } |
| 159 | } |
| 160 | out: |
| 161 | return -EINVAL; |
| 162 | } |
| 163 | |
Patrick McHardy | 6fa8c01 | 2008-01-23 20:36:12 -0800 | [diff] [blame] | 164 | static const struct nla_policy fw_policy[TCA_FW_MAX + 1] = { |
| 165 | [TCA_FW_CLASSID] = { .type = NLA_U32 }, |
| 166 | [TCA_FW_INDEV] = { .type = NLA_STRING, .len = IFNAMSIZ }, |
| 167 | [TCA_FW_MASK] = { .type = NLA_U32 }, |
| 168 | }; |
| 169 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | static int |
Benjamin LaHaise | c1b5273 | 2013-01-14 05:15:39 +0000 | [diff] [blame] | 171 | fw_change_attrs(struct net *net, struct tcf_proto *tp, struct fw_filter *f, |
Cong Wang | 2f7ef2f | 2014-04-25 13:54:06 -0700 | [diff] [blame] | 172 | struct nlattr **tb, struct nlattr **tca, unsigned long base, bool ovr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | { |
WANG Cong | a8701a6 | 2014-01-09 16:14:03 -0800 | [diff] [blame] | 174 | struct fw_head *head = tp->root; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | struct tcf_exts e; |
Patrick McHardy | b4e9b52 | 2006-08-25 16:11:42 -0700 | [diff] [blame] | 176 | u32 mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | int err; |
| 178 | |
WANG Cong | 5da57f4 | 2013-12-15 20:15:07 -0800 | [diff] [blame] | 179 | tcf_exts_init(&e, TCA_FW_ACT, TCA_FW_POLICE); |
Cong Wang | 2f7ef2f | 2014-04-25 13:54:06 -0700 | [diff] [blame] | 180 | err = tcf_exts_validate(net, tp, tb, tca[TCA_RATE], &e, ovr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | if (err < 0) |
| 182 | return err; |
| 183 | |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 184 | if (tb[TCA_FW_CLASSID]) { |
Patrick McHardy | 1587bac | 2008-01-23 20:35:03 -0800 | [diff] [blame] | 185 | f->res.classid = nla_get_u32(tb[TCA_FW_CLASSID]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | tcf_bind_filter(tp, &f->res, base); |
| 187 | } |
| 188 | |
| 189 | #ifdef CONFIG_NET_CLS_IND |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 190 | if (tb[TCA_FW_INDEV]) { |
WANG Cong | 2519a60 | 2014-01-09 16:14:02 -0800 | [diff] [blame] | 191 | int ret; |
| 192 | ret = tcf_change_indev(net, tb[TCA_FW_INDEV]); |
Wei Yongjun | 722e47d | 2014-01-17 09:53:20 +0800 | [diff] [blame] | 193 | if (ret < 0) { |
| 194 | err = ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | goto errout; |
Wei Yongjun | 722e47d | 2014-01-17 09:53:20 +0800 | [diff] [blame] | 196 | } |
WANG Cong | 2519a60 | 2014-01-09 16:14:02 -0800 | [diff] [blame] | 197 | f->ifindex = ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | } |
| 199 | #endif /* CONFIG_NET_CLS_IND */ |
| 200 | |
Wei Yongjun | cb95ec6 | 2013-04-17 16:49:10 +0000 | [diff] [blame] | 201 | err = -EINVAL; |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 202 | if (tb[TCA_FW_MASK]) { |
Patrick McHardy | 1587bac | 2008-01-23 20:35:03 -0800 | [diff] [blame] | 203 | mask = nla_get_u32(tb[TCA_FW_MASK]); |
Patrick McHardy | b4e9b52 | 2006-08-25 16:11:42 -0700 | [diff] [blame] | 204 | if (mask != head->mask) |
| 205 | goto errout; |
| 206 | } else if (head->mask != 0xFFFFFFFF) |
| 207 | goto errout; |
| 208 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | tcf_exts_change(tp, &f->exts, &e); |
| 210 | |
| 211 | return 0; |
| 212 | errout: |
| 213 | tcf_exts_destroy(tp, &e); |
| 214 | return err; |
| 215 | } |
| 216 | |
Benjamin LaHaise | c1b5273 | 2013-01-14 05:15:39 +0000 | [diff] [blame] | 217 | static int fw_change(struct net *net, struct sk_buff *in_skb, |
Eric W. Biederman | af4c664 | 2012-05-25 13:42:45 -0600 | [diff] [blame] | 218 | struct tcf_proto *tp, unsigned long base, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | u32 handle, |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 220 | struct nlattr **tca, |
Cong Wang | 2f7ef2f | 2014-04-25 13:54:06 -0700 | [diff] [blame] | 221 | unsigned long *arg, bool ovr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | { |
WANG Cong | a8701a6 | 2014-01-09 16:14:03 -0800 | [diff] [blame] | 223 | struct fw_head *head = tp->root; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | struct fw_filter *f = (struct fw_filter *) *arg; |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 225 | struct nlattr *opt = tca[TCA_OPTIONS]; |
| 226 | struct nlattr *tb[TCA_FW_MAX + 1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | int err; |
| 228 | |
| 229 | if (!opt) |
| 230 | return handle ? -EINVAL : 0; |
| 231 | |
Patrick McHardy | 6fa8c01 | 2008-01-23 20:36:12 -0800 | [diff] [blame] | 232 | err = nla_parse_nested(tb, TCA_FW_MAX, opt, fw_policy); |
Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 233 | if (err < 0) |
| 234 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | |
| 236 | if (f != NULL) { |
| 237 | if (f->id != handle && handle) |
| 238 | return -EINVAL; |
Cong Wang | 2f7ef2f | 2014-04-25 13:54:06 -0700 | [diff] [blame] | 239 | return fw_change_attrs(net, tp, f, tb, tca, base, ovr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | } |
| 241 | |
| 242 | if (!handle) |
| 243 | return -EINVAL; |
| 244 | |
| 245 | if (head == NULL) { |
Patrick McHardy | b4e9b52 | 2006-08-25 16:11:42 -0700 | [diff] [blame] | 246 | u32 mask = 0xFFFFFFFF; |
Patrick McHardy | 6fa8c01 | 2008-01-23 20:36:12 -0800 | [diff] [blame] | 247 | if (tb[TCA_FW_MASK]) |
Patrick McHardy | 1587bac | 2008-01-23 20:35:03 -0800 | [diff] [blame] | 248 | mask = nla_get_u32(tb[TCA_FW_MASK]); |
Patrick McHardy | b4e9b52 | 2006-08-25 16:11:42 -0700 | [diff] [blame] | 249 | |
Panagiotis Issaris | 0da974f | 2006-07-21 14:51:30 -0700 | [diff] [blame] | 250 | head = kzalloc(sizeof(struct fw_head), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | if (head == NULL) |
| 252 | return -ENOBUFS; |
Patrick McHardy | b4e9b52 | 2006-08-25 16:11:42 -0700 | [diff] [blame] | 253 | head->mask = mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | |
| 255 | tcf_tree_lock(tp); |
| 256 | tp->root = head; |
| 257 | tcf_tree_unlock(tp); |
| 258 | } |
| 259 | |
Panagiotis Issaris | 0da974f | 2006-07-21 14:51:30 -0700 | [diff] [blame] | 260 | f = kzalloc(sizeof(struct fw_filter), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | if (f == NULL) |
| 262 | return -ENOBUFS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | |
WANG Cong | 5da57f4 | 2013-12-15 20:15:07 -0800 | [diff] [blame] | 264 | tcf_exts_init(&f->exts, TCA_FW_ACT, TCA_FW_POLICE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | f->id = handle; |
| 266 | |
Cong Wang | 2f7ef2f | 2014-04-25 13:54:06 -0700 | [diff] [blame] | 267 | err = fw_change_attrs(net, tp, f, tb, tca, base, ovr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | if (err < 0) |
| 269 | goto errout; |
| 270 | |
| 271 | f->next = head->ht[fw_hash(handle)]; |
| 272 | tcf_tree_lock(tp); |
| 273 | head->ht[fw_hash(handle)] = f; |
| 274 | tcf_tree_unlock(tp); |
| 275 | |
| 276 | *arg = (unsigned long)f; |
| 277 | return 0; |
| 278 | |
| 279 | errout: |
Jesper Juhl | a51482b | 2005-11-08 09:41:34 -0800 | [diff] [blame] | 280 | kfree(f); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | return err; |
| 282 | } |
| 283 | |
| 284 | static void fw_walk(struct tcf_proto *tp, struct tcf_walker *arg) |
| 285 | { |
WANG Cong | a8701a6 | 2014-01-09 16:14:03 -0800 | [diff] [blame] | 286 | struct fw_head *head = tp->root; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | int h; |
| 288 | |
| 289 | if (head == NULL) |
| 290 | arg->stop = 1; |
| 291 | |
| 292 | if (arg->stop) |
| 293 | return; |
| 294 | |
Thomas Graf | c5c13fa | 2005-04-24 20:19:54 -0700 | [diff] [blame] | 295 | for (h = 0; h < HTSIZE; h++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | struct fw_filter *f; |
| 297 | |
| 298 | for (f = head->ht[h]; f; f = f->next) { |
| 299 | if (arg->count < arg->skip) { |
| 300 | arg->count++; |
| 301 | continue; |
| 302 | } |
| 303 | if (arg->fn(tp, (unsigned long)f, arg) < 0) { |
| 304 | arg->stop = 1; |
| 305 | return; |
| 306 | } |
| 307 | arg->count++; |
| 308 | } |
| 309 | } |
| 310 | } |
| 311 | |
WANG Cong | 832d1d5 | 2014-01-09 16:14:01 -0800 | [diff] [blame] | 312 | static int fw_dump(struct net *net, struct tcf_proto *tp, unsigned long fh, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | struct sk_buff *skb, struct tcmsg *t) |
| 314 | { |
WANG Cong | a8701a6 | 2014-01-09 16:14:03 -0800 | [diff] [blame] | 315 | struct fw_head *head = tp->root; |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 316 | struct fw_filter *f = (struct fw_filter *)fh; |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 317 | unsigned char *b = skb_tail_pointer(skb); |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 318 | struct nlattr *nest; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | |
| 320 | if (f == NULL) |
| 321 | return skb->len; |
| 322 | |
| 323 | t->tcm_handle = f->id; |
| 324 | |
| 325 | if (!f->res.classid && !tcf_exts_is_available(&f->exts)) |
| 326 | return skb->len; |
| 327 | |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 328 | nest = nla_nest_start(skb, TCA_OPTIONS); |
| 329 | if (nest == NULL) |
| 330 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 332 | if (f->res.classid && |
| 333 | nla_put_u32(skb, TCA_FW_CLASSID, f->res.classid)) |
| 334 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | #ifdef CONFIG_NET_CLS_IND |
WANG Cong | 2519a60 | 2014-01-09 16:14:02 -0800 | [diff] [blame] | 336 | if (f->ifindex) { |
| 337 | struct net_device *dev; |
| 338 | dev = __dev_get_by_index(net, f->ifindex); |
| 339 | if (dev && nla_put_string(skb, TCA_FW_INDEV, dev->name)) |
| 340 | goto nla_put_failure; |
| 341 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | #endif /* CONFIG_NET_CLS_IND */ |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 343 | if (head->mask != 0xFFFFFFFF && |
| 344 | nla_put_u32(skb, TCA_FW_MASK, head->mask)) |
| 345 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | |
WANG Cong | 5da57f4 | 2013-12-15 20:15:07 -0800 | [diff] [blame] | 347 | if (tcf_exts_dump(skb, &f->exts) < 0) |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 348 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 350 | nla_nest_end(skb, nest); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | |
WANG Cong | 5da57f4 | 2013-12-15 20:15:07 -0800 | [diff] [blame] | 352 | if (tcf_exts_dump_stats(skb, &f->exts) < 0) |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 353 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | |
| 355 | return skb->len; |
| 356 | |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 357 | nla_put_failure: |
Arnaldo Carvalho de Melo | dc5fc57 | 2007-03-25 23:06:12 -0700 | [diff] [blame] | 358 | nlmsg_trim(skb, b); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | return -1; |
| 360 | } |
| 361 | |
Patrick McHardy | 2eb9d75 | 2008-01-22 22:10:42 -0800 | [diff] [blame] | 362 | static struct tcf_proto_ops cls_fw_ops __read_mostly = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | .kind = "fw", |
| 364 | .classify = fw_classify, |
| 365 | .init = fw_init, |
| 366 | .destroy = fw_destroy, |
| 367 | .get = fw_get, |
| 368 | .put = fw_put, |
| 369 | .change = fw_change, |
| 370 | .delete = fw_delete, |
| 371 | .walk = fw_walk, |
| 372 | .dump = fw_dump, |
| 373 | .owner = THIS_MODULE, |
| 374 | }; |
| 375 | |
| 376 | static int __init init_fw(void) |
| 377 | { |
| 378 | return register_tcf_proto_ops(&cls_fw_ops); |
| 379 | } |
| 380 | |
YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 381 | static void __exit exit_fw(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | { |
| 383 | unregister_tcf_proto_ops(&cls_fw_ops); |
| 384 | } |
| 385 | |
| 386 | module_init(init_fw) |
| 387 | module_exit(exit_fw) |
| 388 | MODULE_LICENSE("GPL"); |