[NET_SCHED]: Propagate nla_parse return value
[deliverable/linux.git] / net / sched / act_simple.c
CommitLineData
db753079
JHS
1/*
2 * net/sched/simp.c Simple example of an action
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 (2005)
10 *
11 */
12
cbdbf00a
DM
13#include <linux/module.h>
14#include <linux/init.h>
db753079 15#include <linux/kernel.h>
db753079
JHS
16#include <linux/skbuff.h>
17#include <linux/rtnetlink.h>
dc5fc579 18#include <net/netlink.h>
db753079
JHS
19#include <net/pkt_sched.h>
20
21#define TCA_ACT_SIMP 22
22
db753079
JHS
23#include <linux/tc_act/tc_defact.h>
24#include <net/tc_act/tc_defact.h>
25
e9ce1cd3
DM
26#define SIMP_TAB_MASK 7
27static struct tcf_common *tcf_simp_ht[SIMP_TAB_MASK + 1];
28static u32 simp_idx_gen;
db753079
JHS
29static DEFINE_RWLOCK(simp_lock);
30
28a7b327 31static struct tcf_hashinfo simp_hash_info = {
e9ce1cd3
DM
32 .htab = tcf_simp_ht,
33 .hmask = SIMP_TAB_MASK,
34 .lock = &simp_lock,
35};
db753079 36
f43c5a0d 37static int tcf_simp(struct sk_buff *skb, struct tc_action *a, struct tcf_result *res)
db753079 38{
e9ce1cd3 39 struct tcf_defact *d = a->priv;
db753079 40
e9ce1cd3
DM
41 spin_lock(&d->tcf_lock);
42 d->tcf_tm.lastuse = jiffies;
43 d->tcf_bstats.bytes += skb->len;
44 d->tcf_bstats.packets++;
db753079 45
10297b99
YH
46 /* print policy string followed by _ then packet count
47 * Example if this was the 3rd packet and the string was "hello"
48 * then it would look like "hello_3" (without quotes)
db753079 49 **/
e9ce1cd3
DM
50 printk("simple: %s_%d\n",
51 (char *)d->tcfd_defdata, d->tcf_bstats.packets);
52 spin_unlock(&d->tcf_lock);
53 return d->tcf_action;
54}
55
56static int tcf_simp_release(struct tcf_defact *d, int bind)
57{
58 int ret = 0;
59 if (d) {
60 if (bind)
61 d->tcf_bindcnt--;
62 d->tcf_refcnt--;
63 if (d->tcf_bindcnt <= 0 && d->tcf_refcnt <= 0) {
64 kfree(d->tcfd_defdata);
65 tcf_hash_destroy(&d->common, &simp_hash_info);
66 ret = 1;
67 }
68 }
69 return ret;
70}
71
72static int alloc_defdata(struct tcf_defact *d, u32 datalen, void *defdata)
73{
c7b1b249 74 d->tcfd_defdata = kmemdup(defdata, datalen, GFP_KERNEL);
e9ce1cd3
DM
75 if (unlikely(!d->tcfd_defdata))
76 return -ENOMEM;
77 d->tcfd_datalen = datalen;
e9ce1cd3
DM
78 return 0;
79}
80
81static int realloc_defdata(struct tcf_defact *d, u32 datalen, void *defdata)
82{
83 kfree(d->tcfd_defdata);
84 return alloc_defdata(d, datalen, defdata);
85}
86
7ba699c6 87static int tcf_simp_init(struct nlattr *nla, struct nlattr *est,
e9ce1cd3
DM
88 struct tc_action *a, int ovr, int bind)
89{
7ba699c6 90 struct nlattr *tb[TCA_DEF_MAX + 1];
e9ce1cd3
DM
91 struct tc_defact *parm;
92 struct tcf_defact *d;
93 struct tcf_common *pc;
94 void *defdata;
95 u32 datalen = 0;
cee63723 96 int ret = 0, err;
e9ce1cd3 97
cee63723 98 if (nla == NULL)
e9ce1cd3
DM
99 return -EINVAL;
100
cee63723
PM
101 err = nla_parse_nested(tb, TCA_DEF_MAX, nla, NULL);
102 if (err < 0)
103 return err;
104
7ba699c6
PM
105 if (tb[TCA_DEF_PARMS] == NULL ||
106 nla_len(tb[TCA_DEF_PARMS]) < sizeof(*parm))
e9ce1cd3
DM
107 return -EINVAL;
108
7ba699c6
PM
109 parm = nla_data(tb[TCA_DEF_PARMS]);
110 defdata = nla_data(tb[TCA_DEF_DATA]);
e9ce1cd3
DM
111 if (defdata == NULL)
112 return -EINVAL;
113
7ba699c6 114 datalen = nla_len(tb[TCA_DEF_DATA]);
e9ce1cd3
DM
115 if (datalen <= 0)
116 return -EINVAL;
117
118 pc = tcf_hash_check(parm->index, a, bind, &simp_hash_info);
119 if (!pc) {
120 pc = tcf_hash_create(parm->index, est, a, sizeof(*d), bind,
121 &simp_idx_gen, &simp_hash_info);
122 if (unlikely(!pc))
123 return -ENOMEM;
124
125 d = to_defact(pc);
126 ret = alloc_defdata(d, datalen, defdata);
127 if (ret < 0) {
128 kfree(pc);
129 return ret;
130 }
131 ret = ACT_P_CREATED;
132 } else {
133 d = to_defact(pc);
134 if (!ovr) {
135 tcf_simp_release(d, bind);
136 return -EEXIST;
137 }
138 realloc_defdata(d, datalen, defdata);
139 }
140
141 spin_lock_bh(&d->tcf_lock);
142 d->tcf_action = parm->action;
143 spin_unlock_bh(&d->tcf_lock);
144
145 if (ret == ACT_P_CREATED)
146 tcf_hash_insert(pc, &simp_hash_info);
147 return ret;
148}
149
150static inline int tcf_simp_cleanup(struct tc_action *a, int bind)
151{
152 struct tcf_defact *d = a->priv;
153
154 if (d)
155 return tcf_simp_release(d, bind);
156 return 0;
157}
158
159static inline int tcf_simp_dump(struct sk_buff *skb, struct tc_action *a,
160 int bind, int ref)
161{
27a884dc 162 unsigned char *b = skb_tail_pointer(skb);
e9ce1cd3
DM
163 struct tcf_defact *d = a->priv;
164 struct tc_defact opt;
165 struct tcf_t t;
166
167 opt.index = d->tcf_index;
168 opt.refcnt = d->tcf_refcnt - ref;
169 opt.bindcnt = d->tcf_bindcnt - bind;
170 opt.action = d->tcf_action;
7ba699c6
PM
171 NLA_PUT(skb, TCA_DEF_PARMS, sizeof(opt), &opt);
172 NLA_PUT(skb, TCA_DEF_DATA, d->tcfd_datalen, d->tcfd_defdata);
e9ce1cd3
DM
173 t.install = jiffies_to_clock_t(jiffies - d->tcf_tm.install);
174 t.lastuse = jiffies_to_clock_t(jiffies - d->tcf_tm.lastuse);
175 t.expires = jiffies_to_clock_t(d->tcf_tm.expires);
7ba699c6 176 NLA_PUT(skb, TCA_DEF_TM, sizeof(t), &t);
e9ce1cd3
DM
177 return skb->len;
178
7ba699c6 179nla_put_failure:
dc5fc579 180 nlmsg_trim(skb, b);
e9ce1cd3 181 return -1;
db753079
JHS
182}
183
184static struct tc_action_ops act_simp_ops = {
e9ce1cd3
DM
185 .kind = "simple",
186 .hinfo = &simp_hash_info,
187 .type = TCA_ACT_SIMP,
188 .capab = TCA_CAP_NONE,
189 .owner = THIS_MODULE,
190 .act = tcf_simp,
191 .dump = tcf_simp_dump,
192 .cleanup = tcf_simp_cleanup,
193 .init = tcf_simp_init,
194 .walk = tcf_generic_walker,
db753079
JHS
195};
196
197MODULE_AUTHOR("Jamal Hadi Salim(2005)");
198MODULE_DESCRIPTION("Simple example action");
199MODULE_LICENSE("GPL");
200
201static int __init simp_init_module(void)
202{
203 int ret = tcf_register_action(&act_simp_ops);
204 if (!ret)
205 printk("Simple TC action Loaded\n");
206 return ret;
207}
208
209static void __exit simp_cleanup_module(void)
210{
211 tcf_unregister_action(&act_simp_ops);
212}
213
214module_init(simp_init_module);
215module_exit(simp_cleanup_module);
This page took 0.329345 seconds and 5 git commands to generate.