]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
2 | * INET An implementation of the TCP/IP protocol suite for the LINUX | |
3 | * operating system. INET is implemented using the BSD Socket | |
4 | * interface as the means of communication with the user level. | |
5 | * | |
6 | * Routing netlink socket interface: protocol independent part. | |
7 | * | |
8 | * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru> | |
9 | * | |
10 | * This program is free software; you can redistribute it and/or | |
11 | * modify it under the terms of the GNU General Public License | |
12 | * as published by the Free Software Foundation; either version | |
13 | * 2 of the License, or (at your option) any later version. | |
14 | * | |
15 | * Fixes: | |
16 | * Vitaly E. Lavrov RTA_OK arithmetics was wrong. | |
17 | */ | |
18 | ||
1da177e4 LT |
19 | #include <linux/errno.h> |
20 | #include <linux/module.h> | |
21 | #include <linux/types.h> | |
22 | #include <linux/socket.h> | |
23 | #include <linux/kernel.h> | |
1da177e4 LT |
24 | #include <linux/timer.h> |
25 | #include <linux/string.h> | |
26 | #include <linux/sockios.h> | |
27 | #include <linux/net.h> | |
28 | #include <linux/fcntl.h> | |
29 | #include <linux/mm.h> | |
30 | #include <linux/slab.h> | |
31 | #include <linux/interrupt.h> | |
32 | #include <linux/capability.h> | |
33 | #include <linux/skbuff.h> | |
34 | #include <linux/init.h> | |
35 | #include <linux/security.h> | |
6756ae4b | 36 | #include <linux/mutex.h> |
1823730f | 37 | #include <linux/if_addr.h> |
d8a5ec67 | 38 | #include <linux/nsproxy.h> |
1da177e4 LT |
39 | |
40 | #include <asm/uaccess.h> | |
41 | #include <asm/system.h> | |
42 | #include <asm/string.h> | |
43 | ||
44 | #include <linux/inet.h> | |
45 | #include <linux/netdevice.h> | |
46 | #include <net/ip.h> | |
47 | #include <net/protocol.h> | |
48 | #include <net/arp.h> | |
49 | #include <net/route.h> | |
50 | #include <net/udp.h> | |
51 | #include <net/sock.h> | |
52 | #include <net/pkt_sched.h> | |
14c0b97d | 53 | #include <net/fib_rules.h> |
e2849863 | 54 | #include <net/rtnetlink.h> |
1da177e4 | 55 | |
e2849863 TG |
56 | struct rtnl_link |
57 | { | |
58 | rtnl_doit_func doit; | |
59 | rtnl_dumpit_func dumpit; | |
60 | }; | |
61 | ||
6756ae4b | 62 | static DEFINE_MUTEX(rtnl_mutex); |
1da177e4 LT |
63 | |
64 | void rtnl_lock(void) | |
65 | { | |
6756ae4b | 66 | mutex_lock(&rtnl_mutex); |
1da177e4 LT |
67 | } |
68 | ||
6756ae4b | 69 | void __rtnl_unlock(void) |
1da177e4 | 70 | { |
6756ae4b | 71 | mutex_unlock(&rtnl_mutex); |
1da177e4 | 72 | } |
6756ae4b | 73 | |
1da177e4 LT |
74 | void rtnl_unlock(void) |
75 | { | |
6756ae4b | 76 | mutex_unlock(&rtnl_mutex); |
1da177e4 LT |
77 | netdev_run_todo(); |
78 | } | |
79 | ||
6756ae4b SH |
80 | int rtnl_trylock(void) |
81 | { | |
82 | return mutex_trylock(&rtnl_mutex); | |
83 | } | |
84 | ||
42bad1da | 85 | static struct rtnl_link *rtnl_msg_handlers[NPROTO]; |
e2849863 TG |
86 | |
87 | static inline int rtm_msgindex(int msgtype) | |
88 | { | |
89 | int msgindex = msgtype - RTM_BASE; | |
90 | ||
91 | /* | |
92 | * msgindex < 0 implies someone tried to register a netlink | |
93 | * control code. msgindex >= RTM_NR_MSGTYPES may indicate that | |
94 | * the message type has not been added to linux/rtnetlink.h | |
95 | */ | |
96 | BUG_ON(msgindex < 0 || msgindex >= RTM_NR_MSGTYPES); | |
97 | ||
98 | return msgindex; | |
99 | } | |
100 | ||
101 | static rtnl_doit_func rtnl_get_doit(int protocol, int msgindex) | |
102 | { | |
103 | struct rtnl_link *tab; | |
104 | ||
105 | tab = rtnl_msg_handlers[protocol]; | |
51057f2f | 106 | if (tab == NULL || tab[msgindex].doit == NULL) |
e2849863 TG |
107 | tab = rtnl_msg_handlers[PF_UNSPEC]; |
108 | ||
51057f2f | 109 | return tab ? tab[msgindex].doit : NULL; |
e2849863 TG |
110 | } |
111 | ||
112 | static rtnl_dumpit_func rtnl_get_dumpit(int protocol, int msgindex) | |
113 | { | |
114 | struct rtnl_link *tab; | |
115 | ||
116 | tab = rtnl_msg_handlers[protocol]; | |
51057f2f | 117 | if (tab == NULL || tab[msgindex].dumpit == NULL) |
e2849863 TG |
118 | tab = rtnl_msg_handlers[PF_UNSPEC]; |
119 | ||
51057f2f | 120 | return tab ? tab[msgindex].dumpit : NULL; |
e2849863 TG |
121 | } |
122 | ||
123 | /** | |
124 | * __rtnl_register - Register a rtnetlink message type | |
125 | * @protocol: Protocol family or PF_UNSPEC | |
126 | * @msgtype: rtnetlink message type | |
127 | * @doit: Function pointer called for each request message | |
128 | * @dumpit: Function pointer called for each dump request (NLM_F_DUMP) message | |
129 | * | |
130 | * Registers the specified function pointers (at least one of them has | |
131 | * to be non-NULL) to be called whenever a request message for the | |
132 | * specified protocol family and message type is received. | |
133 | * | |
134 | * The special protocol family PF_UNSPEC may be used to define fallback | |
135 | * function pointers for the case when no entry for the specific protocol | |
136 | * family exists. | |
137 | * | |
138 | * Returns 0 on success or a negative error code. | |
139 | */ | |
140 | int __rtnl_register(int protocol, int msgtype, | |
141 | rtnl_doit_func doit, rtnl_dumpit_func dumpit) | |
142 | { | |
143 | struct rtnl_link *tab; | |
144 | int msgindex; | |
145 | ||
146 | BUG_ON(protocol < 0 || protocol >= NPROTO); | |
147 | msgindex = rtm_msgindex(msgtype); | |
148 | ||
149 | tab = rtnl_msg_handlers[protocol]; | |
150 | if (tab == NULL) { | |
151 | tab = kcalloc(RTM_NR_MSGTYPES, sizeof(*tab), GFP_KERNEL); | |
152 | if (tab == NULL) | |
153 | return -ENOBUFS; | |
154 | ||
155 | rtnl_msg_handlers[protocol] = tab; | |
156 | } | |
157 | ||
158 | if (doit) | |
159 | tab[msgindex].doit = doit; | |
160 | ||
161 | if (dumpit) | |
162 | tab[msgindex].dumpit = dumpit; | |
163 | ||
164 | return 0; | |
165 | } | |
166 | ||
167 | EXPORT_SYMBOL_GPL(__rtnl_register); | |
168 | ||
169 | /** | |
170 | * rtnl_register - Register a rtnetlink message type | |
171 | * | |
172 | * Identical to __rtnl_register() but panics on failure. This is useful | |
173 | * as failure of this function is very unlikely, it can only happen due | |
174 | * to lack of memory when allocating the chain to store all message | |
175 | * handlers for a protocol. Meant for use in init functions where lack | |
176 | * of memory implies no sense in continueing. | |
177 | */ | |
178 | void rtnl_register(int protocol, int msgtype, | |
179 | rtnl_doit_func doit, rtnl_dumpit_func dumpit) | |
180 | { | |
181 | if (__rtnl_register(protocol, msgtype, doit, dumpit) < 0) | |
182 | panic("Unable to register rtnetlink message handler, " | |
183 | "protocol = %d, message type = %d\n", | |
184 | protocol, msgtype); | |
185 | } | |
186 | ||
187 | EXPORT_SYMBOL_GPL(rtnl_register); | |
188 | ||
189 | /** | |
190 | * rtnl_unregister - Unregister a rtnetlink message type | |
191 | * @protocol: Protocol family or PF_UNSPEC | |
192 | * @msgtype: rtnetlink message type | |
193 | * | |
194 | * Returns 0 on success or a negative error code. | |
195 | */ | |
196 | int rtnl_unregister(int protocol, int msgtype) | |
197 | { | |
198 | int msgindex; | |
199 | ||
200 | BUG_ON(protocol < 0 || protocol >= NPROTO); | |
201 | msgindex = rtm_msgindex(msgtype); | |
202 | ||
203 | if (rtnl_msg_handlers[protocol] == NULL) | |
204 | return -ENOENT; | |
205 | ||
206 | rtnl_msg_handlers[protocol][msgindex].doit = NULL; | |
207 | rtnl_msg_handlers[protocol][msgindex].dumpit = NULL; | |
208 | ||
209 | return 0; | |
210 | } | |
211 | ||
212 | EXPORT_SYMBOL_GPL(rtnl_unregister); | |
213 | ||
214 | /** | |
215 | * rtnl_unregister_all - Unregister all rtnetlink message type of a protocol | |
216 | * @protocol : Protocol family or PF_UNSPEC | |
217 | * | |
218 | * Identical to calling rtnl_unregster() for all registered message types | |
219 | * of a certain protocol family. | |
220 | */ | |
221 | void rtnl_unregister_all(int protocol) | |
222 | { | |
223 | BUG_ON(protocol < 0 || protocol >= NPROTO); | |
224 | ||
225 | kfree(rtnl_msg_handlers[protocol]); | |
226 | rtnl_msg_handlers[protocol] = NULL; | |
227 | } | |
228 | ||
229 | EXPORT_SYMBOL_GPL(rtnl_unregister_all); | |
1da177e4 | 230 | |
38f7b870 PM |
231 | static LIST_HEAD(link_ops); |
232 | ||
233 | /** | |
234 | * __rtnl_link_register - Register rtnl_link_ops with rtnetlink. | |
235 | * @ops: struct rtnl_link_ops * to register | |
236 | * | |
237 | * The caller must hold the rtnl_mutex. This function should be used | |
238 | * by drivers that create devices during module initialization. It | |
239 | * must be called before registering the devices. | |
240 | * | |
241 | * Returns 0 on success or a negative error code. | |
242 | */ | |
243 | int __rtnl_link_register(struct rtnl_link_ops *ops) | |
244 | { | |
2d85cba2 PM |
245 | if (!ops->dellink) |
246 | ops->dellink = unregister_netdevice; | |
247 | ||
38f7b870 PM |
248 | list_add_tail(&ops->list, &link_ops); |
249 | return 0; | |
250 | } | |
251 | ||
252 | EXPORT_SYMBOL_GPL(__rtnl_link_register); | |
253 | ||
254 | /** | |
255 | * rtnl_link_register - Register rtnl_link_ops with rtnetlink. | |
256 | * @ops: struct rtnl_link_ops * to register | |
257 | * | |
258 | * Returns 0 on success or a negative error code. | |
259 | */ | |
260 | int rtnl_link_register(struct rtnl_link_ops *ops) | |
261 | { | |
262 | int err; | |
263 | ||
264 | rtnl_lock(); | |
265 | err = __rtnl_link_register(ops); | |
266 | rtnl_unlock(); | |
267 | return err; | |
268 | } | |
269 | ||
270 | EXPORT_SYMBOL_GPL(rtnl_link_register); | |
271 | ||
272 | /** | |
273 | * __rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink. | |
274 | * @ops: struct rtnl_link_ops * to unregister | |
275 | * | |
2d85cba2 | 276 | * The caller must hold the rtnl_mutex. |
38f7b870 PM |
277 | */ |
278 | void __rtnl_link_unregister(struct rtnl_link_ops *ops) | |
279 | { | |
2d85cba2 | 280 | struct net_device *dev, *n; |
881d966b | 281 | struct net *net; |
2d85cba2 | 282 | |
881d966b | 283 | for_each_net(net) { |
68365458 | 284 | restart: |
881d966b | 285 | for_each_netdev_safe(net, dev, n) { |
68365458 | 286 | if (dev->rtnl_link_ops == ops) { |
881d966b | 287 | ops->dellink(dev); |
68365458 PM |
288 | goto restart; |
289 | } | |
881d966b | 290 | } |
2d85cba2 | 291 | } |
38f7b870 PM |
292 | list_del(&ops->list); |
293 | } | |
294 | ||
295 | EXPORT_SYMBOL_GPL(__rtnl_link_unregister); | |
296 | ||
297 | /** | |
298 | * rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink. | |
299 | * @ops: struct rtnl_link_ops * to unregister | |
300 | */ | |
301 | void rtnl_link_unregister(struct rtnl_link_ops *ops) | |
302 | { | |
303 | rtnl_lock(); | |
304 | __rtnl_link_unregister(ops); | |
305 | rtnl_unlock(); | |
306 | } | |
307 | ||
308 | EXPORT_SYMBOL_GPL(rtnl_link_unregister); | |
309 | ||
310 | static const struct rtnl_link_ops *rtnl_link_ops_get(const char *kind) | |
311 | { | |
312 | const struct rtnl_link_ops *ops; | |
313 | ||
314 | list_for_each_entry(ops, &link_ops, list) { | |
315 | if (!strcmp(ops->kind, kind)) | |
316 | return ops; | |
317 | } | |
318 | return NULL; | |
319 | } | |
320 | ||
321 | static size_t rtnl_link_get_size(const struct net_device *dev) | |
322 | { | |
323 | const struct rtnl_link_ops *ops = dev->rtnl_link_ops; | |
324 | size_t size; | |
325 | ||
326 | if (!ops) | |
327 | return 0; | |
328 | ||
329 | size = nlmsg_total_size(sizeof(struct nlattr)) + /* IFLA_LINKINFO */ | |
330 | nlmsg_total_size(strlen(ops->kind) + 1); /* IFLA_INFO_KIND */ | |
331 | ||
332 | if (ops->get_size) | |
333 | /* IFLA_INFO_DATA + nested data */ | |
334 | size += nlmsg_total_size(sizeof(struct nlattr)) + | |
335 | ops->get_size(dev); | |
336 | ||
337 | if (ops->get_xstats_size) | |
338 | size += ops->get_xstats_size(dev); /* IFLA_INFO_XSTATS */ | |
339 | ||
340 | return size; | |
341 | } | |
342 | ||
343 | static int rtnl_link_fill(struct sk_buff *skb, const struct net_device *dev) | |
344 | { | |
345 | const struct rtnl_link_ops *ops = dev->rtnl_link_ops; | |
346 | struct nlattr *linkinfo, *data; | |
347 | int err = -EMSGSIZE; | |
348 | ||
349 | linkinfo = nla_nest_start(skb, IFLA_LINKINFO); | |
350 | if (linkinfo == NULL) | |
351 | goto out; | |
352 | ||
353 | if (nla_put_string(skb, IFLA_INFO_KIND, ops->kind) < 0) | |
354 | goto err_cancel_link; | |
355 | if (ops->fill_xstats) { | |
356 | err = ops->fill_xstats(skb, dev); | |
357 | if (err < 0) | |
358 | goto err_cancel_link; | |
359 | } | |
360 | if (ops->fill_info) { | |
361 | data = nla_nest_start(skb, IFLA_INFO_DATA); | |
362 | if (data == NULL) | |
363 | goto err_cancel_link; | |
364 | err = ops->fill_info(skb, dev); | |
365 | if (err < 0) | |
366 | goto err_cancel_data; | |
367 | nla_nest_end(skb, data); | |
368 | } | |
369 | ||
370 | nla_nest_end(skb, linkinfo); | |
371 | return 0; | |
372 | ||
373 | err_cancel_data: | |
374 | nla_nest_cancel(skb, data); | |
375 | err_cancel_link: | |
376 | nla_nest_cancel(skb, linkinfo); | |
377 | out: | |
378 | return err; | |
379 | } | |
380 | ||
db46edc6 | 381 | static const int rtm_min[RTM_NR_FAMILIES] = |
1da177e4 | 382 | { |
f90a0a74 TG |
383 | [RTM_FAM(RTM_NEWLINK)] = NLMSG_LENGTH(sizeof(struct ifinfomsg)), |
384 | [RTM_FAM(RTM_NEWADDR)] = NLMSG_LENGTH(sizeof(struct ifaddrmsg)), | |
385 | [RTM_FAM(RTM_NEWROUTE)] = NLMSG_LENGTH(sizeof(struct rtmsg)), | |
14c0b97d | 386 | [RTM_FAM(RTM_NEWRULE)] = NLMSG_LENGTH(sizeof(struct fib_rule_hdr)), |
f90a0a74 TG |
387 | [RTM_FAM(RTM_NEWQDISC)] = NLMSG_LENGTH(sizeof(struct tcmsg)), |
388 | [RTM_FAM(RTM_NEWTCLASS)] = NLMSG_LENGTH(sizeof(struct tcmsg)), | |
389 | [RTM_FAM(RTM_NEWTFILTER)] = NLMSG_LENGTH(sizeof(struct tcmsg)), | |
390 | [RTM_FAM(RTM_NEWACTION)] = NLMSG_LENGTH(sizeof(struct tcamsg)), | |
f90a0a74 TG |
391 | [RTM_FAM(RTM_GETMULTICAST)] = NLMSG_LENGTH(sizeof(struct rtgenmsg)), |
392 | [RTM_FAM(RTM_GETANYCAST)] = NLMSG_LENGTH(sizeof(struct rtgenmsg)), | |
1da177e4 LT |
393 | }; |
394 | ||
db46edc6 | 395 | static const int rta_max[RTM_NR_FAMILIES] = |
1da177e4 | 396 | { |
f90a0a74 TG |
397 | [RTM_FAM(RTM_NEWLINK)] = IFLA_MAX, |
398 | [RTM_FAM(RTM_NEWADDR)] = IFA_MAX, | |
399 | [RTM_FAM(RTM_NEWROUTE)] = RTA_MAX, | |
14c0b97d | 400 | [RTM_FAM(RTM_NEWRULE)] = FRA_MAX, |
f90a0a74 TG |
401 | [RTM_FAM(RTM_NEWQDISC)] = TCA_MAX, |
402 | [RTM_FAM(RTM_NEWTCLASS)] = TCA_MAX, | |
403 | [RTM_FAM(RTM_NEWTFILTER)] = TCA_MAX, | |
404 | [RTM_FAM(RTM_NEWACTION)] = TCAA_MAX, | |
1da177e4 LT |
405 | }; |
406 | ||
407 | void __rta_fill(struct sk_buff *skb, int attrtype, int attrlen, const void *data) | |
408 | { | |
409 | struct rtattr *rta; | |
410 | int size = RTA_LENGTH(attrlen); | |
411 | ||
412 | rta = (struct rtattr*)skb_put(skb, RTA_ALIGN(size)); | |
413 | rta->rta_type = attrtype; | |
414 | rta->rta_len = size; | |
415 | memcpy(RTA_DATA(rta), data, attrlen); | |
b3563c4f | 416 | memset(RTA_DATA(rta) + attrlen, 0, RTA_ALIGN(size) - size); |
1da177e4 LT |
417 | } |
418 | ||
97c53cac | 419 | int rtnetlink_send(struct sk_buff *skb, struct net *net, u32 pid, unsigned group, int echo) |
1da177e4 | 420 | { |
97c53cac | 421 | struct sock *rtnl = net->rtnl; |
1da177e4 LT |
422 | int err = 0; |
423 | ||
ac6d439d | 424 | NETLINK_CB(skb).dst_group = group; |
1da177e4 LT |
425 | if (echo) |
426 | atomic_inc(&skb->users); | |
427 | netlink_broadcast(rtnl, skb, pid, group, GFP_KERNEL); | |
428 | if (echo) | |
429 | err = netlink_unicast(rtnl, skb, pid, MSG_DONTWAIT); | |
430 | return err; | |
431 | } | |
432 | ||
97c53cac | 433 | int rtnl_unicast(struct sk_buff *skb, struct net *net, u32 pid) |
2942e900 | 434 | { |
97c53cac DL |
435 | struct sock *rtnl = net->rtnl; |
436 | ||
2942e900 TG |
437 | return nlmsg_unicast(rtnl, skb, pid); |
438 | } | |
439 | ||
97c53cac | 440 | int rtnl_notify(struct sk_buff *skb, struct net *net, u32 pid, u32 group, |
97676b6b TG |
441 | struct nlmsghdr *nlh, gfp_t flags) |
442 | { | |
97c53cac | 443 | struct sock *rtnl = net->rtnl; |
97676b6b TG |
444 | int report = 0; |
445 | ||
446 | if (nlh) | |
447 | report = nlmsg_report(nlh); | |
448 | ||
449 | return nlmsg_notify(rtnl, skb, pid, group, report, flags); | |
450 | } | |
451 | ||
97c53cac | 452 | void rtnl_set_sk_err(struct net *net, u32 group, int error) |
97676b6b | 453 | { |
97c53cac DL |
454 | struct sock *rtnl = net->rtnl; |
455 | ||
97676b6b TG |
456 | netlink_set_err(rtnl, 0, group, error); |
457 | } | |
458 | ||
1da177e4 LT |
459 | int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics) |
460 | { | |
2d7202bf TG |
461 | struct nlattr *mx; |
462 | int i, valid = 0; | |
463 | ||
464 | mx = nla_nest_start(skb, RTA_METRICS); | |
465 | if (mx == NULL) | |
466 | return -ENOBUFS; | |
467 | ||
468 | for (i = 0; i < RTAX_MAX; i++) { | |
469 | if (metrics[i]) { | |
470 | valid++; | |
471 | NLA_PUT_U32(skb, i+1, metrics[i]); | |
472 | } | |
1da177e4 | 473 | } |
1da177e4 | 474 | |
a57d27fc DM |
475 | if (!valid) { |
476 | nla_nest_cancel(skb, mx); | |
477 | return 0; | |
478 | } | |
2d7202bf TG |
479 | |
480 | return nla_nest_end(skb, mx); | |
481 | ||
482 | nla_put_failure: | |
483 | return nla_nest_cancel(skb, mx); | |
1da177e4 LT |
484 | } |
485 | ||
e3703b3d TG |
486 | int rtnl_put_cacheinfo(struct sk_buff *skb, struct dst_entry *dst, u32 id, |
487 | u32 ts, u32 tsage, long expires, u32 error) | |
488 | { | |
489 | struct rta_cacheinfo ci = { | |
490 | .rta_lastuse = jiffies_to_clock_t(jiffies - dst->lastuse), | |
491 | .rta_used = dst->__use, | |
492 | .rta_clntref = atomic_read(&(dst->__refcnt)), | |
493 | .rta_error = error, | |
494 | .rta_id = id, | |
495 | .rta_ts = ts, | |
496 | .rta_tsage = tsage, | |
497 | }; | |
498 | ||
499 | if (expires) | |
500 | ci.rta_expires = jiffies_to_clock_t(expires); | |
501 | ||
502 | return nla_put(skb, RTA_CACHEINFO, sizeof(ci), &ci); | |
503 | } | |
504 | ||
505 | EXPORT_SYMBOL_GPL(rtnl_put_cacheinfo); | |
1da177e4 | 506 | |
93b2d4a2 | 507 | static void set_operstate(struct net_device *dev, unsigned char transition) |
b00055aa SR |
508 | { |
509 | unsigned char operstate = dev->operstate; | |
510 | ||
511 | switch(transition) { | |
512 | case IF_OPER_UP: | |
513 | if ((operstate == IF_OPER_DORMANT || | |
514 | operstate == IF_OPER_UNKNOWN) && | |
515 | !netif_dormant(dev)) | |
516 | operstate = IF_OPER_UP; | |
517 | break; | |
518 | ||
519 | case IF_OPER_DORMANT: | |
520 | if (operstate == IF_OPER_UP || | |
521 | operstate == IF_OPER_UNKNOWN) | |
522 | operstate = IF_OPER_DORMANT; | |
523 | break; | |
3ff50b79 | 524 | } |
b00055aa SR |
525 | |
526 | if (dev->operstate != operstate) { | |
527 | write_lock_bh(&dev_base_lock); | |
528 | dev->operstate = operstate; | |
529 | write_unlock_bh(&dev_base_lock); | |
93b2d4a2 DM |
530 | netdev_state_change(dev); |
531 | } | |
b00055aa SR |
532 | } |
533 | ||
b60c5115 TG |
534 | static void copy_rtnl_link_stats(struct rtnl_link_stats *a, |
535 | struct net_device_stats *b) | |
1da177e4 | 536 | { |
b60c5115 TG |
537 | a->rx_packets = b->rx_packets; |
538 | a->tx_packets = b->tx_packets; | |
539 | a->rx_bytes = b->rx_bytes; | |
540 | a->tx_bytes = b->tx_bytes; | |
541 | a->rx_errors = b->rx_errors; | |
542 | a->tx_errors = b->tx_errors; | |
543 | a->rx_dropped = b->rx_dropped; | |
544 | a->tx_dropped = b->tx_dropped; | |
545 | ||
546 | a->multicast = b->multicast; | |
547 | a->collisions = b->collisions; | |
548 | ||
549 | a->rx_length_errors = b->rx_length_errors; | |
550 | a->rx_over_errors = b->rx_over_errors; | |
551 | a->rx_crc_errors = b->rx_crc_errors; | |
552 | a->rx_frame_errors = b->rx_frame_errors; | |
553 | a->rx_fifo_errors = b->rx_fifo_errors; | |
554 | a->rx_missed_errors = b->rx_missed_errors; | |
555 | ||
556 | a->tx_aborted_errors = b->tx_aborted_errors; | |
557 | a->tx_carrier_errors = b->tx_carrier_errors; | |
558 | a->tx_fifo_errors = b->tx_fifo_errors; | |
559 | a->tx_heartbeat_errors = b->tx_heartbeat_errors; | |
560 | a->tx_window_errors = b->tx_window_errors; | |
561 | ||
562 | a->rx_compressed = b->rx_compressed; | |
563 | a->tx_compressed = b->tx_compressed; | |
564 | }; | |
1da177e4 | 565 | |
38f7b870 | 566 | static inline size_t if_nlmsg_size(const struct net_device *dev) |
339bf98f TG |
567 | { |
568 | return NLMSG_ALIGN(sizeof(struct ifinfomsg)) | |
569 | + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */ | |
570 | + nla_total_size(IFNAMSIZ) /* IFLA_QDISC */ | |
571 | + nla_total_size(sizeof(struct rtnl_link_ifmap)) | |
572 | + nla_total_size(sizeof(struct rtnl_link_stats)) | |
573 | + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */ | |
574 | + nla_total_size(MAX_ADDR_LEN) /* IFLA_BROADCAST */ | |
575 | + nla_total_size(4) /* IFLA_TXQLEN */ | |
576 | + nla_total_size(4) /* IFLA_WEIGHT */ | |
577 | + nla_total_size(4) /* IFLA_MTU */ | |
578 | + nla_total_size(4) /* IFLA_LINK */ | |
579 | + nla_total_size(4) /* IFLA_MASTER */ | |
580 | + nla_total_size(1) /* IFLA_OPERSTATE */ | |
38f7b870 PM |
581 | + nla_total_size(1) /* IFLA_LINKMODE */ |
582 | + rtnl_link_get_size(dev); /* IFLA_LINKINFO */ | |
339bf98f TG |
583 | } |
584 | ||
b60c5115 | 585 | static int rtnl_fill_ifinfo(struct sk_buff *skb, struct net_device *dev, |
575c3e2a PM |
586 | int type, u32 pid, u32 seq, u32 change, |
587 | unsigned int flags) | |
b60c5115 TG |
588 | { |
589 | struct ifinfomsg *ifm; | |
590 | struct nlmsghdr *nlh; | |
1da177e4 | 591 | |
b60c5115 TG |
592 | nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ifm), flags); |
593 | if (nlh == NULL) | |
26932566 | 594 | return -EMSGSIZE; |
1da177e4 | 595 | |
b60c5115 TG |
596 | ifm = nlmsg_data(nlh); |
597 | ifm->ifi_family = AF_UNSPEC; | |
598 | ifm->__ifi_pad = 0; | |
599 | ifm->ifi_type = dev->type; | |
600 | ifm->ifi_index = dev->ifindex; | |
601 | ifm->ifi_flags = dev_get_flags(dev); | |
602 | ifm->ifi_change = change; | |
603 | ||
604 | NLA_PUT_STRING(skb, IFLA_IFNAME, dev->name); | |
605 | NLA_PUT_U32(skb, IFLA_TXQLEN, dev->tx_queue_len); | |
b60c5115 TG |
606 | NLA_PUT_U8(skb, IFLA_OPERSTATE, |
607 | netif_running(dev) ? dev->operstate : IF_OPER_DOWN); | |
608 | NLA_PUT_U8(skb, IFLA_LINKMODE, dev->link_mode); | |
609 | NLA_PUT_U32(skb, IFLA_MTU, dev->mtu); | |
610 | ||
611 | if (dev->ifindex != dev->iflink) | |
612 | NLA_PUT_U32(skb, IFLA_LINK, dev->iflink); | |
613 | ||
614 | if (dev->master) | |
615 | NLA_PUT_U32(skb, IFLA_MASTER, dev->master->ifindex); | |
1da177e4 | 616 | |
b60c5115 TG |
617 | if (dev->qdisc_sleeping) |
618 | NLA_PUT_STRING(skb, IFLA_QDISC, dev->qdisc_sleeping->ops->id); | |
b00055aa | 619 | |
1da177e4 LT |
620 | if (1) { |
621 | struct rtnl_link_ifmap map = { | |
622 | .mem_start = dev->mem_start, | |
623 | .mem_end = dev->mem_end, | |
624 | .base_addr = dev->base_addr, | |
625 | .irq = dev->irq, | |
626 | .dma = dev->dma, | |
627 | .port = dev->if_port, | |
628 | }; | |
b60c5115 | 629 | NLA_PUT(skb, IFLA_MAP, sizeof(map), &map); |
1da177e4 LT |
630 | } |
631 | ||
632 | if (dev->addr_len) { | |
b60c5115 TG |
633 | NLA_PUT(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr); |
634 | NLA_PUT(skb, IFLA_BROADCAST, dev->addr_len, dev->broadcast); | |
1da177e4 LT |
635 | } |
636 | ||
637 | if (dev->get_stats) { | |
b60c5115 | 638 | struct net_device_stats *stats = dev->get_stats(dev); |
1da177e4 | 639 | if (stats) { |
b60c5115 TG |
640 | struct nlattr *attr; |
641 | ||
642 | attr = nla_reserve(skb, IFLA_STATS, | |
643 | sizeof(struct rtnl_link_stats)); | |
644 | if (attr == NULL) | |
645 | goto nla_put_failure; | |
646 | ||
647 | copy_rtnl_link_stats(nla_data(attr), stats); | |
1da177e4 LT |
648 | } |
649 | } | |
1da177e4 | 650 | |
38f7b870 PM |
651 | if (dev->rtnl_link_ops) { |
652 | if (rtnl_link_fill(skb, dev) < 0) | |
653 | goto nla_put_failure; | |
654 | } | |
655 | ||
b60c5115 TG |
656 | return nlmsg_end(skb, nlh); |
657 | ||
658 | nla_put_failure: | |
26932566 PM |
659 | nlmsg_cancel(skb, nlh); |
660 | return -EMSGSIZE; | |
1da177e4 LT |
661 | } |
662 | ||
b60c5115 | 663 | static int rtnl_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb) |
1da177e4 | 664 | { |
881d966b | 665 | struct net *net = skb->sk->sk_net; |
1da177e4 LT |
666 | int idx; |
667 | int s_idx = cb->args[0]; | |
668 | struct net_device *dev; | |
669 | ||
7562f876 | 670 | idx = 0; |
881d966b | 671 | for_each_netdev(net, dev) { |
1da177e4 | 672 | if (idx < s_idx) |
7562f876 | 673 | goto cont; |
575c3e2a | 674 | if (rtnl_fill_ifinfo(skb, dev, RTM_NEWLINK, |
b60c5115 TG |
675 | NETLINK_CB(cb->skb).pid, |
676 | cb->nlh->nlmsg_seq, 0, NLM_F_MULTI) <= 0) | |
1da177e4 | 677 | break; |
7562f876 PE |
678 | cont: |
679 | idx++; | |
1da177e4 | 680 | } |
1da177e4 LT |
681 | cb->args[0] = idx; |
682 | ||
683 | return skb->len; | |
684 | } | |
685 | ||
e7199288 | 686 | const struct nla_policy ifla_policy[IFLA_MAX+1] = { |
5176f91e | 687 | [IFLA_IFNAME] = { .type = NLA_STRING, .len = IFNAMSIZ-1 }, |
38f7b870 PM |
688 | [IFLA_ADDRESS] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN }, |
689 | [IFLA_BROADCAST] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN }, | |
5176f91e | 690 | [IFLA_MAP] = { .len = sizeof(struct rtnl_link_ifmap) }, |
da5e0494 TG |
691 | [IFLA_MTU] = { .type = NLA_U32 }, |
692 | [IFLA_TXQLEN] = { .type = NLA_U32 }, | |
693 | [IFLA_WEIGHT] = { .type = NLA_U32 }, | |
694 | [IFLA_OPERSTATE] = { .type = NLA_U8 }, | |
695 | [IFLA_LINKMODE] = { .type = NLA_U8 }, | |
d8a5ec67 | 696 | [IFLA_NET_NS_PID] = { .type = NLA_U32 }, |
da5e0494 TG |
697 | }; |
698 | ||
38f7b870 PM |
699 | static const struct nla_policy ifla_info_policy[IFLA_INFO_MAX+1] = { |
700 | [IFLA_INFO_KIND] = { .type = NLA_STRING }, | |
701 | [IFLA_INFO_DATA] = { .type = NLA_NESTED }, | |
702 | }; | |
703 | ||
d8a5ec67 EB |
704 | static struct net *get_net_ns_by_pid(pid_t pid) |
705 | { | |
706 | struct task_struct *tsk; | |
707 | struct net *net; | |
708 | ||
709 | /* Lookup the network namespace */ | |
710 | net = ERR_PTR(-ESRCH); | |
711 | rcu_read_lock(); | |
ceaa79c4 | 712 | tsk = find_task_by_vpid(pid); |
d8a5ec67 | 713 | if (tsk) { |
cf7b708c PE |
714 | struct nsproxy *nsproxy; |
715 | nsproxy = task_nsproxy(tsk); | |
716 | if (nsproxy) | |
717 | net = get_net(nsproxy->net_ns); | |
d8a5ec67 EB |
718 | } |
719 | rcu_read_unlock(); | |
720 | return net; | |
721 | } | |
722 | ||
0157f60c | 723 | static int do_setlink(struct net_device *dev, struct ifinfomsg *ifm, |
38f7b870 | 724 | struct nlattr **tb, char *ifname, int modified) |
1da177e4 | 725 | { |
38f7b870 | 726 | int send_addr_notify = 0; |
0157f60c | 727 | int err; |
1da177e4 | 728 | |
d8a5ec67 EB |
729 | if (tb[IFLA_NET_NS_PID]) { |
730 | struct net *net; | |
731 | net = get_net_ns_by_pid(nla_get_u32(tb[IFLA_NET_NS_PID])); | |
732 | if (IS_ERR(net)) { | |
733 | err = PTR_ERR(net); | |
734 | goto errout; | |
735 | } | |
736 | err = dev_change_net_namespace(dev, net, ifname); | |
737 | put_net(net); | |
738 | if (err) | |
739 | goto errout; | |
740 | modified = 1; | |
741 | } | |
742 | ||
da5e0494 | 743 | if (tb[IFLA_MAP]) { |
1da177e4 LT |
744 | struct rtnl_link_ifmap *u_map; |
745 | struct ifmap k_map; | |
746 | ||
747 | if (!dev->set_config) { | |
748 | err = -EOPNOTSUPP; | |
0157f60c | 749 | goto errout; |
1da177e4 LT |
750 | } |
751 | ||
752 | if (!netif_device_present(dev)) { | |
753 | err = -ENODEV; | |
0157f60c | 754 | goto errout; |
1da177e4 | 755 | } |
1da177e4 | 756 | |
da5e0494 | 757 | u_map = nla_data(tb[IFLA_MAP]); |
1da177e4 LT |
758 | k_map.mem_start = (unsigned long) u_map->mem_start; |
759 | k_map.mem_end = (unsigned long) u_map->mem_end; | |
760 | k_map.base_addr = (unsigned short) u_map->base_addr; | |
761 | k_map.irq = (unsigned char) u_map->irq; | |
762 | k_map.dma = (unsigned char) u_map->dma; | |
763 | k_map.port = (unsigned char) u_map->port; | |
764 | ||
765 | err = dev->set_config(dev, &k_map); | |
da5e0494 | 766 | if (err < 0) |
0157f60c | 767 | goto errout; |
1da177e4 | 768 | |
da5e0494 | 769 | modified = 1; |
1da177e4 LT |
770 | } |
771 | ||
da5e0494 | 772 | if (tb[IFLA_ADDRESS]) { |
70f8e78e DM |
773 | struct sockaddr *sa; |
774 | int len; | |
775 | ||
1da177e4 LT |
776 | if (!dev->set_mac_address) { |
777 | err = -EOPNOTSUPP; | |
0157f60c | 778 | goto errout; |
1da177e4 | 779 | } |
da5e0494 | 780 | |
1da177e4 LT |
781 | if (!netif_device_present(dev)) { |
782 | err = -ENODEV; | |
0157f60c | 783 | goto errout; |
1da177e4 | 784 | } |
1da177e4 | 785 | |
70f8e78e DM |
786 | len = sizeof(sa_family_t) + dev->addr_len; |
787 | sa = kmalloc(len, GFP_KERNEL); | |
788 | if (!sa) { | |
789 | err = -ENOMEM; | |
0157f60c | 790 | goto errout; |
70f8e78e DM |
791 | } |
792 | sa->sa_family = dev->type; | |
da5e0494 | 793 | memcpy(sa->sa_data, nla_data(tb[IFLA_ADDRESS]), |
70f8e78e DM |
794 | dev->addr_len); |
795 | err = dev->set_mac_address(dev, sa); | |
796 | kfree(sa); | |
1da177e4 | 797 | if (err) |
0157f60c | 798 | goto errout; |
1da177e4 | 799 | send_addr_notify = 1; |
da5e0494 | 800 | modified = 1; |
1da177e4 LT |
801 | } |
802 | ||
da5e0494 TG |
803 | if (tb[IFLA_MTU]) { |
804 | err = dev_set_mtu(dev, nla_get_u32(tb[IFLA_MTU])); | |
805 | if (err < 0) | |
0157f60c | 806 | goto errout; |
da5e0494 | 807 | modified = 1; |
1da177e4 LT |
808 | } |
809 | ||
da5e0494 TG |
810 | /* |
811 | * Interface selected by interface index but interface | |
812 | * name provided implies that a name change has been | |
813 | * requested. | |
814 | */ | |
51055be8 | 815 | if (ifm->ifi_index > 0 && ifname[0]) { |
da5e0494 TG |
816 | err = dev_change_name(dev, ifname); |
817 | if (err < 0) | |
0157f60c | 818 | goto errout; |
da5e0494 | 819 | modified = 1; |
1da177e4 LT |
820 | } |
821 | ||
da5e0494 TG |
822 | if (tb[IFLA_BROADCAST]) { |
823 | nla_memcpy(dev->broadcast, tb[IFLA_BROADCAST], dev->addr_len); | |
824 | send_addr_notify = 1; | |
1da177e4 LT |
825 | } |
826 | ||
83b496e9 PM |
827 | if (ifm->ifi_flags || ifm->ifi_change) { |
828 | unsigned int flags = ifm->ifi_flags; | |
829 | ||
830 | /* bugwards compatibility: ifi_change == 0 is treated as ~0 */ | |
831 | if (ifm->ifi_change) | |
832 | flags = (flags & ifm->ifi_change) | | |
833 | (dev->flags & ~ifm->ifi_change); | |
834 | dev_change_flags(dev, flags); | |
835 | } | |
1da177e4 | 836 | |
93b2d4a2 DM |
837 | if (tb[IFLA_TXQLEN]) |
838 | dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]); | |
b00055aa | 839 | |
da5e0494 | 840 | if (tb[IFLA_OPERSTATE]) |
93b2d4a2 | 841 | set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE])); |
b00055aa | 842 | |
da5e0494 | 843 | if (tb[IFLA_LINKMODE]) { |
93b2d4a2 DM |
844 | write_lock_bh(&dev_base_lock); |
845 | dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]); | |
846 | write_unlock_bh(&dev_base_lock); | |
b00055aa SR |
847 | } |
848 | ||
1da177e4 LT |
849 | err = 0; |
850 | ||
0157f60c | 851 | errout: |
da5e0494 TG |
852 | if (err < 0 && modified && net_ratelimit()) |
853 | printk(KERN_WARNING "A link change request failed with " | |
854 | "some changes comitted already. Interface %s may " | |
855 | "have been left with an inconsistent configuration, " | |
856 | "please check.\n", dev->name); | |
857 | ||
1da177e4 LT |
858 | if (send_addr_notify) |
859 | call_netdevice_notifiers(NETDEV_CHANGEADDR, dev); | |
0157f60c PM |
860 | return err; |
861 | } | |
1da177e4 | 862 | |
0157f60c PM |
863 | static int rtnl_setlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg) |
864 | { | |
881d966b | 865 | struct net *net = skb->sk->sk_net; |
0157f60c PM |
866 | struct ifinfomsg *ifm; |
867 | struct net_device *dev; | |
868 | int err; | |
869 | struct nlattr *tb[IFLA_MAX+1]; | |
870 | char ifname[IFNAMSIZ]; | |
871 | ||
872 | err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy); | |
873 | if (err < 0) | |
874 | goto errout; | |
875 | ||
876 | if (tb[IFLA_IFNAME]) | |
877 | nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ); | |
878 | else | |
879 | ifname[0] = '\0'; | |
880 | ||
881 | err = -EINVAL; | |
882 | ifm = nlmsg_data(nlh); | |
883 | if (ifm->ifi_index > 0) | |
881d966b | 884 | dev = dev_get_by_index(net, ifm->ifi_index); |
0157f60c | 885 | else if (tb[IFLA_IFNAME]) |
881d966b | 886 | dev = dev_get_by_name(net, ifname); |
0157f60c PM |
887 | else |
888 | goto errout; | |
889 | ||
890 | if (dev == NULL) { | |
891 | err = -ENODEV; | |
892 | goto errout; | |
893 | } | |
894 | ||
895 | if (tb[IFLA_ADDRESS] && | |
896 | nla_len(tb[IFLA_ADDRESS]) < dev->addr_len) | |
897 | goto errout_dev; | |
898 | ||
899 | if (tb[IFLA_BROADCAST] && | |
900 | nla_len(tb[IFLA_BROADCAST]) < dev->addr_len) | |
901 | goto errout_dev; | |
902 | ||
38f7b870 | 903 | err = do_setlink(dev, ifm, tb, ifname, 0); |
0157f60c | 904 | errout_dev: |
1da177e4 | 905 | dev_put(dev); |
da5e0494 | 906 | errout: |
1da177e4 LT |
907 | return err; |
908 | } | |
909 | ||
38f7b870 PM |
910 | static int rtnl_dellink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg) |
911 | { | |
881d966b | 912 | struct net *net = skb->sk->sk_net; |
38f7b870 PM |
913 | const struct rtnl_link_ops *ops; |
914 | struct net_device *dev; | |
915 | struct ifinfomsg *ifm; | |
916 | char ifname[IFNAMSIZ]; | |
917 | struct nlattr *tb[IFLA_MAX+1]; | |
918 | int err; | |
919 | ||
920 | err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy); | |
921 | if (err < 0) | |
922 | return err; | |
923 | ||
924 | if (tb[IFLA_IFNAME]) | |
925 | nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ); | |
926 | ||
927 | ifm = nlmsg_data(nlh); | |
928 | if (ifm->ifi_index > 0) | |
881d966b | 929 | dev = __dev_get_by_index(net, ifm->ifi_index); |
38f7b870 | 930 | else if (tb[IFLA_IFNAME]) |
881d966b | 931 | dev = __dev_get_by_name(net, ifname); |
38f7b870 PM |
932 | else |
933 | return -EINVAL; | |
934 | ||
935 | if (!dev) | |
936 | return -ENODEV; | |
937 | ||
938 | ops = dev->rtnl_link_ops; | |
939 | if (!ops) | |
940 | return -EOPNOTSUPP; | |
941 | ||
942 | ops->dellink(dev); | |
943 | return 0; | |
944 | } | |
945 | ||
881d966b | 946 | struct net_device *rtnl_create_link(struct net *net, char *ifname, |
e7199288 PE |
947 | const struct rtnl_link_ops *ops, struct nlattr *tb[]) |
948 | { | |
949 | int err; | |
950 | struct net_device *dev; | |
951 | ||
952 | err = -ENOMEM; | |
953 | dev = alloc_netdev(ops->priv_size, ifname, ops->setup); | |
954 | if (!dev) | |
955 | goto err; | |
956 | ||
957 | if (strchr(dev->name, '%')) { | |
958 | err = dev_alloc_name(dev, dev->name); | |
959 | if (err < 0) | |
960 | goto err_free; | |
961 | } | |
962 | ||
881d966b | 963 | dev->nd_net = net; |
e7199288 PE |
964 | dev->rtnl_link_ops = ops; |
965 | ||
966 | if (tb[IFLA_MTU]) | |
967 | dev->mtu = nla_get_u32(tb[IFLA_MTU]); | |
968 | if (tb[IFLA_ADDRESS]) | |
969 | memcpy(dev->dev_addr, nla_data(tb[IFLA_ADDRESS]), | |
970 | nla_len(tb[IFLA_ADDRESS])); | |
971 | if (tb[IFLA_BROADCAST]) | |
972 | memcpy(dev->broadcast, nla_data(tb[IFLA_BROADCAST]), | |
973 | nla_len(tb[IFLA_BROADCAST])); | |
974 | if (tb[IFLA_TXQLEN]) | |
975 | dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]); | |
976 | if (tb[IFLA_OPERSTATE]) | |
93b2d4a2 | 977 | set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE])); |
e7199288 PE |
978 | if (tb[IFLA_LINKMODE]) |
979 | dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]); | |
980 | ||
981 | return dev; | |
982 | ||
983 | err_free: | |
984 | free_netdev(dev); | |
985 | err: | |
986 | return ERR_PTR(err); | |
987 | } | |
988 | ||
38f7b870 PM |
989 | static int rtnl_newlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg) |
990 | { | |
881d966b | 991 | struct net *net = skb->sk->sk_net; |
38f7b870 PM |
992 | const struct rtnl_link_ops *ops; |
993 | struct net_device *dev; | |
994 | struct ifinfomsg *ifm; | |
995 | char kind[MODULE_NAME_LEN]; | |
996 | char ifname[IFNAMSIZ]; | |
997 | struct nlattr *tb[IFLA_MAX+1]; | |
998 | struct nlattr *linkinfo[IFLA_INFO_MAX+1]; | |
999 | int err; | |
1000 | ||
8072f085 | 1001 | #ifdef CONFIG_KMOD |
38f7b870 | 1002 | replay: |
8072f085 | 1003 | #endif |
38f7b870 PM |
1004 | err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy); |
1005 | if (err < 0) | |
1006 | return err; | |
1007 | ||
1008 | if (tb[IFLA_IFNAME]) | |
1009 | nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ); | |
1010 | else | |
1011 | ifname[0] = '\0'; | |
1012 | ||
1013 | ifm = nlmsg_data(nlh); | |
1014 | if (ifm->ifi_index > 0) | |
881d966b | 1015 | dev = __dev_get_by_index(net, ifm->ifi_index); |
38f7b870 | 1016 | else if (ifname[0]) |
881d966b | 1017 | dev = __dev_get_by_name(net, ifname); |
38f7b870 PM |
1018 | else |
1019 | dev = NULL; | |
1020 | ||
1021 | if (tb[IFLA_LINKINFO]) { | |
1022 | err = nla_parse_nested(linkinfo, IFLA_INFO_MAX, | |
1023 | tb[IFLA_LINKINFO], ifla_info_policy); | |
1024 | if (err < 0) | |
1025 | return err; | |
1026 | } else | |
1027 | memset(linkinfo, 0, sizeof(linkinfo)); | |
1028 | ||
1029 | if (linkinfo[IFLA_INFO_KIND]) { | |
1030 | nla_strlcpy(kind, linkinfo[IFLA_INFO_KIND], sizeof(kind)); | |
1031 | ops = rtnl_link_ops_get(kind); | |
1032 | } else { | |
1033 | kind[0] = '\0'; | |
1034 | ops = NULL; | |
1035 | } | |
1036 | ||
1037 | if (1) { | |
1038 | struct nlattr *attr[ops ? ops->maxtype + 1 : 0], **data = NULL; | |
1039 | ||
1040 | if (ops) { | |
1041 | if (ops->maxtype && linkinfo[IFLA_INFO_DATA]) { | |
1042 | err = nla_parse_nested(attr, ops->maxtype, | |
1043 | linkinfo[IFLA_INFO_DATA], | |
1044 | ops->policy); | |
1045 | if (err < 0) | |
1046 | return err; | |
1047 | data = attr; | |
1048 | } | |
1049 | if (ops->validate) { | |
1050 | err = ops->validate(tb, data); | |
1051 | if (err < 0) | |
1052 | return err; | |
1053 | } | |
1054 | } | |
1055 | ||
1056 | if (dev) { | |
1057 | int modified = 0; | |
1058 | ||
1059 | if (nlh->nlmsg_flags & NLM_F_EXCL) | |
1060 | return -EEXIST; | |
1061 | if (nlh->nlmsg_flags & NLM_F_REPLACE) | |
1062 | return -EOPNOTSUPP; | |
1063 | ||
1064 | if (linkinfo[IFLA_INFO_DATA]) { | |
1065 | if (!ops || ops != dev->rtnl_link_ops || | |
1066 | !ops->changelink) | |
1067 | return -EOPNOTSUPP; | |
1068 | ||
1069 | err = ops->changelink(dev, tb, data); | |
1070 | if (err < 0) | |
1071 | return err; | |
1072 | modified = 1; | |
1073 | } | |
1074 | ||
1075 | return do_setlink(dev, ifm, tb, ifname, modified); | |
1076 | } | |
1077 | ||
1078 | if (!(nlh->nlmsg_flags & NLM_F_CREATE)) | |
1079 | return -ENODEV; | |
1080 | ||
1081 | if (ifm->ifi_index || ifm->ifi_flags || ifm->ifi_change) | |
1082 | return -EOPNOTSUPP; | |
0e06877c | 1083 | if (tb[IFLA_MAP] || tb[IFLA_MASTER] || tb[IFLA_PROTINFO]) |
38f7b870 PM |
1084 | return -EOPNOTSUPP; |
1085 | ||
1086 | if (!ops) { | |
1087 | #ifdef CONFIG_KMOD | |
1088 | if (kind[0]) { | |
1089 | __rtnl_unlock(); | |
1090 | request_module("rtnl-link-%s", kind); | |
1091 | rtnl_lock(); | |
1092 | ops = rtnl_link_ops_get(kind); | |
1093 | if (ops) | |
1094 | goto replay; | |
1095 | } | |
1096 | #endif | |
1097 | return -EOPNOTSUPP; | |
1098 | } | |
1099 | ||
1100 | if (!ifname[0]) | |
1101 | snprintf(ifname, IFNAMSIZ, "%s%%d", ops->kind); | |
e7199288 | 1102 | |
881d966b | 1103 | dev = rtnl_create_link(net, ifname, ops, tb); |
e7199288 PE |
1104 | |
1105 | if (IS_ERR(dev)) | |
1106 | err = PTR_ERR(dev); | |
1107 | else if (ops->newlink) | |
2d85cba2 PM |
1108 | err = ops->newlink(dev, tb, data); |
1109 | else | |
1110 | err = register_netdevice(dev); | |
e7199288 PE |
1111 | |
1112 | if (err < 0 && !IS_ERR(dev)) | |
38f7b870 PM |
1113 | free_netdev(dev); |
1114 | return err; | |
1115 | } | |
1116 | } | |
1117 | ||
b60c5115 | 1118 | static int rtnl_getlink(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg) |
711e2c33 | 1119 | { |
881d966b | 1120 | struct net *net = skb->sk->sk_net; |
b60c5115 TG |
1121 | struct ifinfomsg *ifm; |
1122 | struct nlattr *tb[IFLA_MAX+1]; | |
1123 | struct net_device *dev = NULL; | |
1124 | struct sk_buff *nskb; | |
339bf98f | 1125 | int err; |
711e2c33 | 1126 | |
b60c5115 TG |
1127 | err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy); |
1128 | if (err < 0) | |
9918f230 | 1129 | return err; |
b60c5115 TG |
1130 | |
1131 | ifm = nlmsg_data(nlh); | |
51055be8 | 1132 | if (ifm->ifi_index > 0) { |
881d966b | 1133 | dev = dev_get_by_index(net, ifm->ifi_index); |
b60c5115 TG |
1134 | if (dev == NULL) |
1135 | return -ENODEV; | |
1136 | } else | |
711e2c33 | 1137 | return -EINVAL; |
711e2c33 | 1138 | |
38f7b870 | 1139 | nskb = nlmsg_new(if_nlmsg_size(dev), GFP_KERNEL); |
b60c5115 TG |
1140 | if (nskb == NULL) { |
1141 | err = -ENOBUFS; | |
1142 | goto errout; | |
1143 | } | |
1144 | ||
575c3e2a PM |
1145 | err = rtnl_fill_ifinfo(nskb, dev, RTM_NEWLINK, NETLINK_CB(skb).pid, |
1146 | nlh->nlmsg_seq, 0, 0); | |
26932566 PM |
1147 | if (err < 0) { |
1148 | /* -EMSGSIZE implies BUG in if_nlmsg_size */ | |
1149 | WARN_ON(err == -EMSGSIZE); | |
1150 | kfree_skb(nskb); | |
1151 | goto errout; | |
1152 | } | |
97c53cac | 1153 | err = rtnl_unicast(nskb, net, NETLINK_CB(skb).pid); |
b60c5115 | 1154 | errout: |
711e2c33 | 1155 | dev_put(dev); |
711e2c33 | 1156 | |
b60c5115 | 1157 | return err; |
711e2c33 | 1158 | } |
711e2c33 | 1159 | |
42bad1da | 1160 | static int rtnl_dump_all(struct sk_buff *skb, struct netlink_callback *cb) |
1da177e4 LT |
1161 | { |
1162 | int idx; | |
1163 | int s_idx = cb->family; | |
1164 | ||
1165 | if (s_idx == 0) | |
1166 | s_idx = 1; | |
1167 | for (idx=1; idx<NPROTO; idx++) { | |
1168 | int type = cb->nlh->nlmsg_type-RTM_BASE; | |
1169 | if (idx < s_idx || idx == PF_PACKET) | |
1170 | continue; | |
e2849863 TG |
1171 | if (rtnl_msg_handlers[idx] == NULL || |
1172 | rtnl_msg_handlers[idx][type].dumpit == NULL) | |
1da177e4 LT |
1173 | continue; |
1174 | if (idx > s_idx) | |
1175 | memset(&cb->args[0], 0, sizeof(cb->args)); | |
e2849863 | 1176 | if (rtnl_msg_handlers[idx][type].dumpit(skb, cb)) |
1da177e4 LT |
1177 | break; |
1178 | } | |
1179 | cb->family = idx; | |
1180 | ||
1181 | return skb->len; | |
1182 | } | |
1183 | ||
1184 | void rtmsg_ifinfo(int type, struct net_device *dev, unsigned change) | |
1185 | { | |
4b3da706 | 1186 | struct net *net = dev->nd_net; |
1da177e4 | 1187 | struct sk_buff *skb; |
0ec6d3f4 | 1188 | int err = -ENOBUFS; |
1da177e4 | 1189 | |
38f7b870 | 1190 | skb = nlmsg_new(if_nlmsg_size(dev), GFP_KERNEL); |
0ec6d3f4 TG |
1191 | if (skb == NULL) |
1192 | goto errout; | |
1da177e4 | 1193 | |
575c3e2a | 1194 | err = rtnl_fill_ifinfo(skb, dev, type, 0, 0, change, 0); |
26932566 PM |
1195 | if (err < 0) { |
1196 | /* -EMSGSIZE implies BUG in if_nlmsg_size() */ | |
1197 | WARN_ON(err == -EMSGSIZE); | |
1198 | kfree_skb(skb); | |
1199 | goto errout; | |
1200 | } | |
4b3da706 | 1201 | err = rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, GFP_KERNEL); |
0ec6d3f4 TG |
1202 | errout: |
1203 | if (err < 0) | |
4b3da706 | 1204 | rtnl_set_sk_err(net, RTNLGRP_LINK, err); |
1da177e4 LT |
1205 | } |
1206 | ||
1da177e4 LT |
1207 | /* Protected by RTNL sempahore. */ |
1208 | static struct rtattr **rta_buf; | |
1209 | static int rtattr_max; | |
1210 | ||
1211 | /* Process one rtnetlink message. */ | |
1212 | ||
1d00a4eb | 1213 | static int rtnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh) |
1da177e4 | 1214 | { |
97c53cac | 1215 | struct net *net = skb->sk->sk_net; |
e2849863 | 1216 | rtnl_doit_func doit; |
1da177e4 LT |
1217 | int sz_idx, kind; |
1218 | int min_len; | |
1219 | int family; | |
1220 | int type; | |
1c2d670f | 1221 | int err; |
1da177e4 | 1222 | |
1da177e4 | 1223 | type = nlh->nlmsg_type; |
1da177e4 | 1224 | if (type > RTM_MAX) |
038890fe | 1225 | return -EOPNOTSUPP; |
1da177e4 LT |
1226 | |
1227 | type -= RTM_BASE; | |
1228 | ||
1229 | /* All the messages must have at least 1 byte length */ | |
1230 | if (nlh->nlmsg_len < NLMSG_LENGTH(sizeof(struct rtgenmsg))) | |
1231 | return 0; | |
1232 | ||
1233 | family = ((struct rtgenmsg*)NLMSG_DATA(nlh))->rtgen_family; | |
1d00a4eb TG |
1234 | if (family >= NPROTO) |
1235 | return -EAFNOSUPPORT; | |
1da177e4 | 1236 | |
1da177e4 LT |
1237 | sz_idx = type>>2; |
1238 | kind = type&3; | |
1239 | ||
1d00a4eb TG |
1240 | if (kind != 2 && security_netlink_recv(skb, CAP_NET_ADMIN)) |
1241 | return -EPERM; | |
1da177e4 LT |
1242 | |
1243 | if (kind == 2 && nlh->nlmsg_flags&NLM_F_DUMP) { | |
97c53cac | 1244 | struct sock *rtnl; |
e2849863 | 1245 | rtnl_dumpit_func dumpit; |
1da177e4 | 1246 | |
e2849863 TG |
1247 | dumpit = rtnl_get_dumpit(family, type); |
1248 | if (dumpit == NULL) | |
038890fe | 1249 | return -EOPNOTSUPP; |
9ac4a169 | 1250 | |
1c2d670f | 1251 | __rtnl_unlock(); |
97c53cac | 1252 | rtnl = net->rtnl; |
1c2d670f PM |
1253 | err = netlink_dump_start(rtnl, skb, nlh, dumpit, NULL); |
1254 | rtnl_lock(); | |
1255 | return err; | |
1da177e4 LT |
1256 | } |
1257 | ||
1258 | memset(rta_buf, 0, (rtattr_max * sizeof(struct rtattr *))); | |
1259 | ||
1260 | min_len = rtm_min[sz_idx]; | |
1261 | if (nlh->nlmsg_len < min_len) | |
1d00a4eb | 1262 | return -EINVAL; |
1da177e4 LT |
1263 | |
1264 | if (nlh->nlmsg_len > min_len) { | |
1265 | int attrlen = nlh->nlmsg_len - NLMSG_ALIGN(min_len); | |
1266 | struct rtattr *attr = (void*)nlh + NLMSG_ALIGN(min_len); | |
1267 | ||
1268 | while (RTA_OK(attr, attrlen)) { | |
1269 | unsigned flavor = attr->rta_type; | |
1270 | if (flavor) { | |
1271 | if (flavor > rta_max[sz_idx]) | |
1d00a4eb | 1272 | return -EINVAL; |
1da177e4 LT |
1273 | rta_buf[flavor-1] = attr; |
1274 | } | |
1275 | attr = RTA_NEXT(attr, attrlen); | |
1276 | } | |
1277 | } | |
1278 | ||
e2849863 TG |
1279 | doit = rtnl_get_doit(family, type); |
1280 | if (doit == NULL) | |
038890fe | 1281 | return -EOPNOTSUPP; |
1da177e4 | 1282 | |
1d00a4eb | 1283 | return doit(skb, nlh, (void *)&rta_buf[0]); |
1da177e4 LT |
1284 | } |
1285 | ||
cd40b7d3 | 1286 | static void rtnetlink_rcv(struct sk_buff *skb) |
1da177e4 | 1287 | { |
cd40b7d3 DL |
1288 | rtnl_lock(); |
1289 | netlink_rcv_skb(skb, &rtnetlink_rcv_msg); | |
1290 | rtnl_unlock(); | |
1da177e4 LT |
1291 | } |
1292 | ||
1da177e4 LT |
1293 | static int rtnetlink_event(struct notifier_block *this, unsigned long event, void *ptr) |
1294 | { | |
1295 | struct net_device *dev = ptr; | |
e9dc8653 | 1296 | |
1da177e4 LT |
1297 | switch (event) { |
1298 | case NETDEV_UNREGISTER: | |
1299 | rtmsg_ifinfo(RTM_DELLINK, dev, ~0U); | |
1300 | break; | |
1301 | case NETDEV_REGISTER: | |
1302 | rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U); | |
1303 | break; | |
1304 | case NETDEV_UP: | |
1305 | case NETDEV_DOWN: | |
1306 | rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING); | |
1307 | break; | |
1308 | case NETDEV_CHANGE: | |
1309 | case NETDEV_GOING_DOWN: | |
1310 | break; | |
1311 | default: | |
1312 | rtmsg_ifinfo(RTM_NEWLINK, dev, 0); | |
1313 | break; | |
1314 | } | |
1315 | return NOTIFY_DONE; | |
1316 | } | |
1317 | ||
1318 | static struct notifier_block rtnetlink_dev_notifier = { | |
1319 | .notifier_call = rtnetlink_event, | |
1320 | }; | |
1321 | ||
97c53cac DL |
1322 | |
1323 | static int rtnetlink_net_init(struct net *net) | |
1324 | { | |
1325 | struct sock *sk; | |
1326 | sk = netlink_kernel_create(net, NETLINK_ROUTE, RTNLGRP_MAX, | |
1327 | rtnetlink_rcv, &rtnl_mutex, THIS_MODULE); | |
1328 | if (!sk) | |
1329 | return -ENOMEM; | |
97c53cac DL |
1330 | net->rtnl = sk; |
1331 | return 0; | |
1332 | } | |
1333 | ||
1334 | static void rtnetlink_net_exit(struct net *net) | |
1335 | { | |
775516bf DL |
1336 | netlink_kernel_release(net->rtnl); |
1337 | net->rtnl = NULL; | |
97c53cac DL |
1338 | } |
1339 | ||
1340 | static struct pernet_operations rtnetlink_net_ops = { | |
1341 | .init = rtnetlink_net_init, | |
1342 | .exit = rtnetlink_net_exit, | |
1343 | }; | |
1344 | ||
1da177e4 LT |
1345 | void __init rtnetlink_init(void) |
1346 | { | |
1347 | int i; | |
1348 | ||
1349 | rtattr_max = 0; | |
1350 | for (i = 0; i < ARRAY_SIZE(rta_max); i++) | |
1351 | if (rta_max[i] > rtattr_max) | |
1352 | rtattr_max = rta_max[i]; | |
1353 | rta_buf = kmalloc(rtattr_max * sizeof(struct rtattr *), GFP_KERNEL); | |
1354 | if (!rta_buf) | |
1355 | panic("rtnetlink_init: cannot allocate rta_buf\n"); | |
1356 | ||
97c53cac | 1357 | if (register_pernet_subsys(&rtnetlink_net_ops)) |
1da177e4 | 1358 | panic("rtnetlink_init: cannot initialize rtnetlink\n"); |
97c53cac | 1359 | |
1da177e4 LT |
1360 | netlink_set_nonroot(NETLINK_ROUTE, NL_NONROOT_RECV); |
1361 | register_netdevice_notifier(&rtnetlink_dev_notifier); | |
340d17fc TG |
1362 | |
1363 | rtnl_register(PF_UNSPEC, RTM_GETLINK, rtnl_getlink, rtnl_dump_ifinfo); | |
1364 | rtnl_register(PF_UNSPEC, RTM_SETLINK, rtnl_setlink, NULL); | |
38f7b870 PM |
1365 | rtnl_register(PF_UNSPEC, RTM_NEWLINK, rtnl_newlink, NULL); |
1366 | rtnl_register(PF_UNSPEC, RTM_DELLINK, rtnl_dellink, NULL); | |
687ad8cc TG |
1367 | |
1368 | rtnl_register(PF_UNSPEC, RTM_GETADDR, NULL, rtnl_dump_all); | |
1369 | rtnl_register(PF_UNSPEC, RTM_GETROUTE, NULL, rtnl_dump_all); | |
1da177e4 LT |
1370 | } |
1371 | ||
1372 | EXPORT_SYMBOL(__rta_fill); | |
1da177e4 | 1373 | EXPORT_SYMBOL(rtnetlink_put_metrics); |
1da177e4 | 1374 | EXPORT_SYMBOL(rtnl_lock); |
6756ae4b | 1375 | EXPORT_SYMBOL(rtnl_trylock); |
1da177e4 | 1376 | EXPORT_SYMBOL(rtnl_unlock); |
2942e900 | 1377 | EXPORT_SYMBOL(rtnl_unicast); |
97676b6b TG |
1378 | EXPORT_SYMBOL(rtnl_notify); |
1379 | EXPORT_SYMBOL(rtnl_set_sk_err); | |
e7199288 PE |
1380 | EXPORT_SYMBOL(rtnl_create_link); |
1381 | EXPORT_SYMBOL(ifla_policy); |