2 * net/core/netprio_cgroup.c Priority Control Group
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.
9 * Authors: Neil Horman <nhorman@tuxdriver.com>
12 #include <linux/module.h>
13 #include <linux/slab.h>
14 #include <linux/types.h>
15 #include <linux/string.h>
16 #include <linux/errno.h>
17 #include <linux/skbuff.h>
18 #include <linux/cgroup.h>
19 #include <linux/rcupdate.h>
20 #include <linux/atomic.h>
21 #include <net/rtnetlink.h>
22 #include <net/pkt_cls.h>
24 #include <net/netprio_cgroup.h>
26 static struct cgroup_subsys_state
*cgrp_create(struct cgroup_subsys
*ss
,
28 static void cgrp_destroy(struct cgroup_subsys
*ss
, struct cgroup
*cgrp
);
29 static int cgrp_populate(struct cgroup_subsys
*ss
, struct cgroup
*cgrp
);
31 struct cgroup_subsys net_prio_subsys
= {
33 .create
= cgrp_create
,
34 .destroy
= cgrp_destroy
,
35 .populate
= cgrp_populate
,
36 #ifdef CONFIG_NETPRIO_CGROUP
37 .subsys_id
= net_prio_subsys_id
,
42 #define PRIOIDX_SZ 128
44 static unsigned long prioidx_map
[PRIOIDX_SZ
];
45 static DEFINE_SPINLOCK(prioidx_map_lock
);
46 static atomic_t max_prioidx
= ATOMIC_INIT(0);
48 static inline struct cgroup_netprio_state
*cgrp_netprio_state(struct cgroup
*cgrp
)
50 return container_of(cgroup_subsys_state(cgrp
, net_prio_subsys_id
),
51 struct cgroup_netprio_state
, css
);
54 static int get_prioidx(u32
*prio
)
59 spin_lock_irqsave(&prioidx_map_lock
, flags
);
60 prioidx
= find_first_zero_bit(prioidx_map
, sizeof(unsigned long) * PRIOIDX_SZ
);
61 if (prioidx
== sizeof(unsigned long) * PRIOIDX_SZ
) {
62 spin_unlock_irqrestore(&prioidx_map_lock
, flags
);
65 set_bit(prioidx
, prioidx_map
);
66 spin_unlock_irqrestore(&prioidx_map_lock
, flags
);
67 atomic_set(&max_prioidx
, prioidx
);
72 static void put_prioidx(u32 idx
)
76 spin_lock_irqsave(&prioidx_map_lock
, flags
);
77 clear_bit(idx
, prioidx_map
);
78 spin_unlock_irqrestore(&prioidx_map_lock
, flags
);
81 static void extend_netdev_table(struct net_device
*dev
, u32 new_len
)
83 size_t new_size
= sizeof(struct netprio_map
) +
84 ((sizeof(u32
) * new_len
));
85 struct netprio_map
*new_priomap
= kzalloc(new_size
, GFP_KERNEL
);
86 struct netprio_map
*old_priomap
;
89 old_priomap
= rtnl_dereference(dev
->priomap
);
92 printk(KERN_WARNING
"Unable to alloc new priomap!\n");
97 old_priomap
&& (i
< old_priomap
->priomap_len
);
99 new_priomap
->priomap
[i
] = old_priomap
->priomap
[i
];
101 new_priomap
->priomap_len
= new_len
;
103 rcu_assign_pointer(dev
->priomap
, new_priomap
);
105 kfree_rcu(old_priomap
, rcu
);
108 static void update_netdev_tables(void)
110 struct net_device
*dev
;
111 u32 max_len
= atomic_read(&max_prioidx
) + 1;
112 struct netprio_map
*map
;
115 for_each_netdev(&init_net
, dev
) {
116 map
= rtnl_dereference(dev
->priomap
);
118 (map
->priomap_len
< max_len
))
119 extend_netdev_table(dev
, max_len
);
124 static struct cgroup_subsys_state
*cgrp_create(struct cgroup_subsys
*ss
,
127 struct cgroup_netprio_state
*cs
;
130 cs
= kzalloc(sizeof(*cs
), GFP_KERNEL
);
132 return ERR_PTR(-ENOMEM
);
134 if (cgrp
->parent
&& cgrp_netprio_state(cgrp
->parent
)->prioidx
) {
136 return ERR_PTR(-EINVAL
);
139 ret
= get_prioidx(&cs
->prioidx
);
141 printk(KERN_WARNING
"No space in priority index array\n");
149 static void cgrp_destroy(struct cgroup_subsys
*ss
, struct cgroup
*cgrp
)
151 struct cgroup_netprio_state
*cs
;
152 struct net_device
*dev
;
153 struct netprio_map
*map
;
155 cs
= cgrp_netprio_state(cgrp
);
157 for_each_netdev(&init_net
, dev
) {
158 map
= rtnl_dereference(dev
->priomap
);
160 map
->priomap
[cs
->prioidx
] = 0;
163 put_prioidx(cs
->prioidx
);
167 static u64
read_prioidx(struct cgroup
*cgrp
, struct cftype
*cft
)
169 return (u64
)cgrp_netprio_state(cgrp
)->prioidx
;
172 static int read_priomap(struct cgroup
*cont
, struct cftype
*cft
,
173 struct cgroup_map_cb
*cb
)
175 struct net_device
*dev
;
176 u32 prioidx
= cgrp_netprio_state(cont
)->prioidx
;
178 struct netprio_map
*map
;
181 for_each_netdev_rcu(&init_net
, dev
) {
182 map
= rcu_dereference(dev
->priomap
);
183 priority
= map
? map
->priomap
[prioidx
] : 0;
184 cb
->fill(cb
, dev
->name
, priority
);
190 static int write_priomap(struct cgroup
*cgrp
, struct cftype
*cft
,
193 char *devname
= kstrdup(buffer
, GFP_KERNEL
);
195 u32 prioidx
= cgrp_netprio_state(cgrp
)->prioidx
;
196 unsigned long priority
;
198 struct net_device
*dev
;
199 struct netprio_map
*map
;
205 * Minimally sized valid priomap string
207 if (strlen(devname
) < 3)
208 goto out_free_devname
;
210 priostr
= strstr(devname
, " ");
212 goto out_free_devname
;
215 *Separate the devname from the associated priority
216 *and advance the priostr poitner to the priority value
222 * If the priostr points to NULL, we're at the end of the passed
223 * in string, and its not a valid write
225 if (*priostr
== '\0')
226 goto out_free_devname
;
228 ret
= kstrtoul(priostr
, 10, &priority
);
230 goto out_free_devname
;
234 dev
= dev_get_by_name(&init_net
, devname
);
236 goto out_free_devname
;
238 update_netdev_tables();
241 map
= rcu_dereference(dev
->priomap
);
243 map
->priomap
[prioidx
] = priority
;
252 static struct cftype ss_files
[] = {
255 .read_u64
= read_prioidx
,
259 .read_map
= read_priomap
,
260 .write_string
= write_priomap
,
264 static int cgrp_populate(struct cgroup_subsys
*ss
, struct cgroup
*cgrp
)
266 return cgroup_add_files(cgrp
, ss
, ss_files
, ARRAY_SIZE(ss_files
));
269 static int netprio_device_event(struct notifier_block
*unused
,
270 unsigned long event
, void *ptr
)
272 struct net_device
*dev
= ptr
;
273 struct netprio_map
*old
;
276 * Note this is called with rtnl_lock held so we have update side
277 * protection on our rcu assignments
281 case NETDEV_UNREGISTER
:
282 old
= rtnl_dereference(dev
->priomap
);
283 RCU_INIT_POINTER(dev
->priomap
, NULL
);
291 static struct notifier_block netprio_device_notifier
= {
292 .notifier_call
= netprio_device_event
295 static int __init
init_cgroup_netprio(void)
299 ret
= cgroup_load_subsys(&net_prio_subsys
);
302 #ifndef CONFIG_NETPRIO_CGROUP
304 net_prio_subsys_id
= net_prio_subsys
.subsys_id
;
307 register_netdevice_notifier(&netprio_device_notifier
);
313 static void __exit
exit_cgroup_netprio(void)
315 struct netprio_map
*old
;
316 struct net_device
*dev
;
318 unregister_netdevice_notifier(&netprio_device_notifier
);
320 cgroup_unload_subsys(&net_prio_subsys
);
322 #ifndef CONFIG_NETPRIO_CGROUP
323 net_prio_subsys_id
= -1;
328 for_each_netdev(&init_net
, dev
) {
329 old
= rtnl_dereference(dev
->priomap
);
330 RCU_INIT_POINTER(dev
->priomap
, NULL
);
337 module_init(init_cgroup_netprio
);
338 module_exit(exit_cgroup_netprio
);
339 MODULE_LICENSE("GPL v2");