| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  * net/sched/cls_basic.c	Basic Packet Classifier. | 
 | 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 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/module.h> | 
| Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 13 | #include <linux/slab.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/types.h> | 
 | 15 | #include <linux/kernel.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/string.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/errno.h> | 
 | 18 | #include <linux/rtnetlink.h> | 
 | 19 | #include <linux/skbuff.h> | 
| Arnaldo Carvalho de Melo | dc5fc57 | 2007-03-25 23:06:12 -0700 | [diff] [blame] | 20 | #include <net/netlink.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <net/act_api.h> | 
 | 22 | #include <net/pkt_cls.h> | 
 | 23 |  | 
| Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 24 | struct basic_head { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | 	u32			hgenerator; | 
 | 26 | 	struct list_head	flist; | 
| John Fastabend | 9888faef | 2014-09-12 20:05:59 -0700 | [diff] [blame] | 27 | 	struct rcu_head		rcu; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | }; | 
 | 29 |  | 
| Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 30 | struct basic_filter { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | 	u32			handle; | 
 | 32 | 	struct tcf_exts		exts; | 
 | 33 | 	struct tcf_ematch_tree	ematches; | 
 | 34 | 	struct tcf_result	res; | 
| John Fastabend | 9888faef | 2014-09-12 20:05:59 -0700 | [diff] [blame] | 35 | 	struct tcf_proto	*tp; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | 	struct list_head	link; | 
| John Fastabend | 9888faef | 2014-09-12 20:05:59 -0700 | [diff] [blame] | 37 | 	struct rcu_head		rcu; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | }; | 
 | 39 |  | 
| Eric Dumazet | dc7f9f6 | 2011-07-05 23:25:42 +0000 | [diff] [blame] | 40 | static int basic_classify(struct sk_buff *skb, const struct tcf_proto *tp, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | 			  struct tcf_result *res) | 
 | 42 | { | 
 | 43 | 	int r; | 
| John Fastabend | 9888faef | 2014-09-12 20:05:59 -0700 | [diff] [blame] | 44 | 	struct basic_head *head = rcu_dereference_bh(tp->root); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | 	struct basic_filter *f; | 
 | 46 |  | 
| John Fastabend | 9888faef | 2014-09-12 20:05:59 -0700 | [diff] [blame] | 47 | 	list_for_each_entry_rcu(f, &head->flist, link) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | 		if (!tcf_em_tree_match(skb, &f->ematches, NULL)) | 
 | 49 | 			continue; | 
 | 50 | 		*res = f->res; | 
 | 51 | 		r = tcf_exts_exec(skb, &f->exts, res); | 
 | 52 | 		if (r < 0) | 
 | 53 | 			continue; | 
 | 54 | 		return r; | 
 | 55 | 	} | 
 | 56 | 	return -1; | 
 | 57 | } | 
 | 58 |  | 
 | 59 | static unsigned long basic_get(struct tcf_proto *tp, u32 handle) | 
 | 60 | { | 
 | 61 | 	unsigned long l = 0UL; | 
| John Fastabend | 9888faef | 2014-09-12 20:05:59 -0700 | [diff] [blame] | 62 | 	struct basic_head *head = rtnl_dereference(tp->root); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | 	struct basic_filter *f; | 
 | 64 |  | 
| Daniel Borkmann | 1c1bc6b | 2015-01-22 10:58:18 +0100 | [diff] [blame] | 65 | 	list_for_each_entry(f, &head->flist, link) { | 
 | 66 | 		if (f->handle == handle) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | 			l = (unsigned long) f; | 
| Daniel Borkmann | 1c1bc6b | 2015-01-22 10:58:18 +0100 | [diff] [blame] | 68 | 			break; | 
 | 69 | 		} | 
 | 70 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 |  | 
 | 72 | 	return l; | 
 | 73 | } | 
 | 74 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | static int basic_init(struct tcf_proto *tp) | 
 | 76 | { | 
| Patrick McHardy | d3fa76e | 2007-03-24 22:13:06 -0700 | [diff] [blame] | 77 | 	struct basic_head *head; | 
 | 78 |  | 
 | 79 | 	head = kzalloc(sizeof(*head), GFP_KERNEL); | 
 | 80 | 	if (head == NULL) | 
 | 81 | 		return -ENOBUFS; | 
 | 82 | 	INIT_LIST_HEAD(&head->flist); | 
| John Fastabend | 9888faef | 2014-09-12 20:05:59 -0700 | [diff] [blame] | 83 | 	rcu_assign_pointer(tp->root, head); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | 	return 0; | 
 | 85 | } | 
 | 86 |  | 
| John Fastabend | 9888faef | 2014-09-12 20:05:59 -0700 | [diff] [blame] | 87 | static void basic_delete_filter(struct rcu_head *head) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | { | 
| John Fastabend | 9888faef | 2014-09-12 20:05:59 -0700 | [diff] [blame] | 89 | 	struct basic_filter *f = container_of(head, struct basic_filter, rcu); | 
| John Fastabend | 9888faef | 2014-09-12 20:05:59 -0700 | [diff] [blame] | 90 |  | 
| WANG Cong | 18d0264 | 2014-09-25 10:26:37 -0700 | [diff] [blame] | 91 | 	tcf_exts_destroy(&f->exts); | 
| John Fastabend | 82a470f | 2014-10-05 21:27:53 -0700 | [diff] [blame] | 92 | 	tcf_em_tree_destroy(&f->ematches); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | 	kfree(f); | 
 | 94 | } | 
 | 95 |  | 
| Cong Wang | 1e052be | 2015-03-06 11:47:59 -0800 | [diff] [blame] | 96 | static bool basic_destroy(struct tcf_proto *tp, bool force) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | { | 
| John Fastabend | 9888faef | 2014-09-12 20:05:59 -0700 | [diff] [blame] | 98 | 	struct basic_head *head = rtnl_dereference(tp->root); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | 	struct basic_filter *f, *n; | 
| YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 100 |  | 
| Cong Wang | 1e052be | 2015-03-06 11:47:59 -0800 | [diff] [blame] | 101 | 	if (!force && !list_empty(&head->flist)) | 
 | 102 | 		return false; | 
 | 103 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | 	list_for_each_entry_safe(f, n, &head->flist, link) { | 
| John Fastabend | 9888faef | 2014-09-12 20:05:59 -0700 | [diff] [blame] | 105 | 		list_del_rcu(&f->link); | 
| John Fastabend | 18cdb37 | 2014-10-05 21:28:52 -0700 | [diff] [blame] | 106 | 		tcf_unbind_filter(tp, &f->res); | 
| John Fastabend | 9888faef | 2014-09-12 20:05:59 -0700 | [diff] [blame] | 107 | 		call_rcu(&f->rcu, basic_delete_filter); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | 	} | 
| John Fastabend | 9888faef | 2014-09-12 20:05:59 -0700 | [diff] [blame] | 109 | 	kfree_rcu(head, rcu); | 
| Cong Wang | 1e052be | 2015-03-06 11:47:59 -0800 | [diff] [blame] | 110 | 	return true; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | } | 
 | 112 |  | 
 | 113 | static int basic_delete(struct tcf_proto *tp, unsigned long arg) | 
 | 114 | { | 
| Jiri Pirko | e438645 | 2014-12-02 18:00:31 +0100 | [diff] [blame] | 115 | 	struct basic_filter *f = (struct basic_filter *) arg; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 |  | 
| Jiri Pirko | e438645 | 2014-12-02 18:00:31 +0100 | [diff] [blame] | 117 | 	list_del_rcu(&f->link); | 
 | 118 | 	tcf_unbind_filter(tp, &f->res); | 
 | 119 | 	call_rcu(&f->rcu, basic_delete_filter); | 
 | 120 | 	return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | } | 
 | 122 |  | 
| Patrick McHardy | 6fa8c01 | 2008-01-23 20:36:12 -0800 | [diff] [blame] | 123 | static const struct nla_policy basic_policy[TCA_BASIC_MAX + 1] = { | 
 | 124 | 	[TCA_BASIC_CLASSID]	= { .type = NLA_U32 }, | 
 | 125 | 	[TCA_BASIC_EMATCHES]	= { .type = NLA_NESTED }, | 
 | 126 | }; | 
 | 127 |  | 
| Benjamin LaHaise | c1b5273 | 2013-01-14 05:15:39 +0000 | [diff] [blame] | 128 | static int basic_set_parms(struct net *net, struct tcf_proto *tp, | 
 | 129 | 			   struct basic_filter *f, unsigned long base, | 
 | 130 | 			   struct nlattr **tb, | 
| Cong Wang | 2f7ef2f | 2014-04-25 13:54:06 -0700 | [diff] [blame] | 131 | 			   struct nlattr *est, bool ovr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | { | 
| stephen hemminger | 6459082 | 2013-09-26 17:42:16 -0700 | [diff] [blame] | 133 | 	int err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | 	struct tcf_exts e; | 
 | 135 | 	struct tcf_ematch_tree t; | 
 | 136 |  | 
| WANG Cong | b9a24bb | 2016-08-19 12:36:54 -0700 | [diff] [blame] | 137 | 	err = tcf_exts_init(&e, TCA_BASIC_ACT, TCA_BASIC_POLICE); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | 	if (err < 0) | 
 | 139 | 		return err; | 
| WANG Cong | b9a24bb | 2016-08-19 12:36:54 -0700 | [diff] [blame] | 140 | 	err = tcf_exts_validate(net, tp, tb, est, &e, ovr); | 
 | 141 | 	if (err < 0) | 
 | 142 | 		goto errout; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 |  | 
| Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 144 | 	err = tcf_em_tree_validate(tp, tb[TCA_BASIC_EMATCHES], &t); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | 	if (err < 0) | 
 | 146 | 		goto errout; | 
 | 147 |  | 
| Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 148 | 	if (tb[TCA_BASIC_CLASSID]) { | 
| Patrick McHardy | 1587bac | 2008-01-23 20:35:03 -0800 | [diff] [blame] | 149 | 		f->res.classid = nla_get_u32(tb[TCA_BASIC_CLASSID]); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | 		tcf_bind_filter(tp, &f->res, base); | 
 | 151 | 	} | 
 | 152 |  | 
 | 153 | 	tcf_exts_change(tp, &f->exts, &e); | 
 | 154 | 	tcf_em_tree_change(tp, &f->ematches, &t); | 
| John Fastabend | 9888faef | 2014-09-12 20:05:59 -0700 | [diff] [blame] | 155 | 	f->tp = tp; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 |  | 
 | 157 | 	return 0; | 
 | 158 | errout: | 
| WANG Cong | 18d0264 | 2014-09-25 10:26:37 -0700 | [diff] [blame] | 159 | 	tcf_exts_destroy(&e); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | 	return err; | 
 | 161 | } | 
 | 162 |  | 
| Benjamin LaHaise | c1b5273 | 2013-01-14 05:15:39 +0000 | [diff] [blame] | 163 | static int basic_change(struct net *net, struct sk_buff *in_skb, | 
| Eric W. Biederman | af4c664 | 2012-05-25 13:42:45 -0600 | [diff] [blame] | 164 | 			struct tcf_proto *tp, unsigned long base, u32 handle, | 
| Cong Wang | 2f7ef2f | 2014-04-25 13:54:06 -0700 | [diff] [blame] | 165 | 			struct nlattr **tca, unsigned long *arg, bool ovr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | { | 
| Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 167 | 	int err; | 
| John Fastabend | 9888faef | 2014-09-12 20:05:59 -0700 | [diff] [blame] | 168 | 	struct basic_head *head = rtnl_dereference(tp->root); | 
| Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 169 | 	struct nlattr *tb[TCA_BASIC_MAX + 1]; | 
| John Fastabend | 9888faef | 2014-09-12 20:05:59 -0700 | [diff] [blame] | 170 | 	struct basic_filter *fold = (struct basic_filter *) *arg; | 
 | 171 | 	struct basic_filter *fnew; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 |  | 
| Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 173 | 	if (tca[TCA_OPTIONS] == NULL) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | 		return -EINVAL; | 
 | 175 |  | 
| Patrick McHardy | 6fa8c01 | 2008-01-23 20:36:12 -0800 | [diff] [blame] | 176 | 	err = nla_parse_nested(tb, TCA_BASIC_MAX, tca[TCA_OPTIONS], | 
 | 177 | 			       basic_policy); | 
| Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 178 | 	if (err < 0) | 
 | 179 | 		return err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 |  | 
| John Fastabend | 9888faef | 2014-09-12 20:05:59 -0700 | [diff] [blame] | 181 | 	if (fold != NULL) { | 
 | 182 | 		if (handle && fold->handle != handle) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | 			return -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | 	} | 
 | 185 |  | 
| John Fastabend | 9888faef | 2014-09-12 20:05:59 -0700 | [diff] [blame] | 186 | 	fnew = kzalloc(sizeof(*fnew), GFP_KERNEL); | 
| Jiri Pirko | bd42b78 | 2014-12-05 15:50:22 +0100 | [diff] [blame] | 187 | 	if (!fnew) | 
 | 188 | 		return -ENOBUFS; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 |  | 
| WANG Cong | b9a24bb | 2016-08-19 12:36:54 -0700 | [diff] [blame] | 190 | 	err = tcf_exts_init(&fnew->exts, TCA_BASIC_ACT, TCA_BASIC_POLICE); | 
 | 191 | 	if (err < 0) | 
 | 192 | 		goto errout; | 
 | 193 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | 	err = -EINVAL; | 
| John Fastabend | 9888faef | 2014-09-12 20:05:59 -0700 | [diff] [blame] | 195 | 	if (handle) { | 
 | 196 | 		fnew->handle = handle; | 
 | 197 | 	} else if (fold) { | 
 | 198 | 		fnew->handle = fold->handle; | 
 | 199 | 	} else { | 
| Kim Nordlund | 658270a | 2006-09-27 16:19:53 -0700 | [diff] [blame] | 200 | 		unsigned int i = 0x80000000; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | 		do { | 
 | 202 | 			if (++head->hgenerator == 0x7FFFFFFF) | 
 | 203 | 				head->hgenerator = 1; | 
 | 204 | 		} while (--i > 0 && basic_get(tp, head->hgenerator)); | 
 | 205 |  | 
 | 206 | 		if (i <= 0) { | 
| Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 207 | 			pr_err("Insufficient number of handles\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | 			goto errout; | 
 | 209 | 		} | 
 | 210 |  | 
| John Fastabend | 9888faef | 2014-09-12 20:05:59 -0700 | [diff] [blame] | 211 | 		fnew->handle = head->hgenerator; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | 	} | 
 | 213 |  | 
| John Fastabend | 9888faef | 2014-09-12 20:05:59 -0700 | [diff] [blame] | 214 | 	err = basic_set_parms(net, tp, fnew, base, tb, tca[TCA_RATE], ovr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | 	if (err < 0) | 
 | 216 | 		goto errout; | 
 | 217 |  | 
| John Fastabend | 9888faef | 2014-09-12 20:05:59 -0700 | [diff] [blame] | 218 | 	*arg = (unsigned long)fnew; | 
 | 219 |  | 
 | 220 | 	if (fold) { | 
 | 221 | 		list_replace_rcu(&fold->link, &fnew->link); | 
| John Fastabend | 18cdb37 | 2014-10-05 21:28:52 -0700 | [diff] [blame] | 222 | 		tcf_unbind_filter(tp, &fold->res); | 
| John Fastabend | 9888faef | 2014-09-12 20:05:59 -0700 | [diff] [blame] | 223 | 		call_rcu(&fold->rcu, basic_delete_filter); | 
 | 224 | 	} else { | 
 | 225 | 		list_add_rcu(&fnew->link, &head->flist); | 
 | 226 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 |  | 
 | 228 | 	return 0; | 
 | 229 | errout: | 
| WANG Cong | b9a24bb | 2016-08-19 12:36:54 -0700 | [diff] [blame] | 230 | 	tcf_exts_destroy(&fnew->exts); | 
| John Fastabend | 9888faef | 2014-09-12 20:05:59 -0700 | [diff] [blame] | 231 | 	kfree(fnew); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | 	return err; | 
 | 233 | } | 
 | 234 |  | 
 | 235 | static void basic_walk(struct tcf_proto *tp, struct tcf_walker *arg) | 
 | 236 | { | 
| John Fastabend | 9888faef | 2014-09-12 20:05:59 -0700 | [diff] [blame] | 237 | 	struct basic_head *head = rtnl_dereference(tp->root); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | 	struct basic_filter *f; | 
 | 239 |  | 
 | 240 | 	list_for_each_entry(f, &head->flist, link) { | 
 | 241 | 		if (arg->count < arg->skip) | 
 | 242 | 			goto skip; | 
 | 243 |  | 
 | 244 | 		if (arg->fn(tp, (unsigned long) f, arg) < 0) { | 
 | 245 | 			arg->stop = 1; | 
 | 246 | 			break; | 
 | 247 | 		} | 
 | 248 | skip: | 
 | 249 | 		arg->count++; | 
 | 250 | 	} | 
 | 251 | } | 
 | 252 |  | 
| WANG Cong | 832d1d5 | 2014-01-09 16:14:01 -0800 | [diff] [blame] | 253 | static int basic_dump(struct net *net, struct tcf_proto *tp, unsigned long fh, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | 		      struct sk_buff *skb, struct tcmsg *t) | 
 | 255 | { | 
 | 256 | 	struct basic_filter *f = (struct basic_filter *) fh; | 
| Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 257 | 	struct nlattr *nest; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 |  | 
 | 259 | 	if (f == NULL) | 
 | 260 | 		return skb->len; | 
 | 261 |  | 
 | 262 | 	t->tcm_handle = f->handle; | 
 | 263 |  | 
| Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 264 | 	nest = nla_nest_start(skb, TCA_OPTIONS); | 
 | 265 | 	if (nest == NULL) | 
 | 266 | 		goto nla_put_failure; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 |  | 
| David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 268 | 	if (f->res.classid && | 
 | 269 | 	    nla_put_u32(skb, TCA_BASIC_CLASSID, f->res.classid)) | 
 | 270 | 		goto nla_put_failure; | 
| Thomas Graf | e1e284a | 2005-06-08 15:11:02 -0700 | [diff] [blame] | 271 |  | 
| WANG Cong | 5da57f4 | 2013-12-15 20:15:07 -0800 | [diff] [blame] | 272 | 	if (tcf_exts_dump(skb, &f->exts) < 0 || | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | 	    tcf_em_tree_dump(skb, &f->ematches, TCA_BASIC_EMATCHES) < 0) | 
| Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 274 | 		goto nla_put_failure; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 |  | 
| Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 276 | 	nla_nest_end(skb, nest); | 
| stephen hemminger | 4c46ee5 | 2010-11-04 11:47:04 +0000 | [diff] [blame] | 277 |  | 
| WANG Cong | 5da57f4 | 2013-12-15 20:15:07 -0800 | [diff] [blame] | 278 | 	if (tcf_exts_dump_stats(skb, &f->exts) < 0) | 
| stephen hemminger | 4c46ee5 | 2010-11-04 11:47:04 +0000 | [diff] [blame] | 279 | 		goto nla_put_failure; | 
 | 280 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | 	return skb->len; | 
 | 282 |  | 
| Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 283 | nla_put_failure: | 
| Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 284 | 	nla_nest_cancel(skb, nest); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | 	return -1; | 
 | 286 | } | 
 | 287 |  | 
| Patrick McHardy | 2eb9d75 | 2008-01-22 22:10:42 -0800 | [diff] [blame] | 288 | static struct tcf_proto_ops cls_basic_ops __read_mostly = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | 	.kind		=	"basic", | 
 | 290 | 	.classify	=	basic_classify, | 
 | 291 | 	.init		=	basic_init, | 
 | 292 | 	.destroy	=	basic_destroy, | 
 | 293 | 	.get		=	basic_get, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | 	.change		=	basic_change, | 
 | 295 | 	.delete		=	basic_delete, | 
 | 296 | 	.walk		=	basic_walk, | 
 | 297 | 	.dump		=	basic_dump, | 
 | 298 | 	.owner		=	THIS_MODULE, | 
 | 299 | }; | 
 | 300 |  | 
 | 301 | static int __init init_basic(void) | 
 | 302 | { | 
 | 303 | 	return register_tcf_proto_ops(&cls_basic_ops); | 
 | 304 | } | 
 | 305 |  | 
| YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 306 | static void __exit exit_basic(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | { | 
 | 308 | 	unregister_tcf_proto_ops(&cls_basic_ops); | 
 | 309 | } | 
 | 310 |  | 
 | 311 | module_init(init_basic) | 
 | 312 | module_exit(exit_basic) | 
 | 313 | MODULE_LICENSE("GPL"); | 
 | 314 |  |