devinet.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:28k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * NET3 IP device support routines.
  3.  *
  4.  * Version: $Id: devinet.c,v 1.44 2001/10/31 21:55:54 davem Exp $
  5.  *
  6.  * This program is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU General Public License
  8.  * as published by the Free Software Foundation; either version
  9.  * 2 of the License, or (at your option) any later version.
  10.  *
  11.  * Derived from the IP parts of dev.c 1.0.19
  12.  *  Authors: Ross Biro, <bir7@leland.Stanford.Edu>
  13.  * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
  14.  * Mark Evans, <evansmp@uhura.aston.ac.uk>
  15.  *
  16.  * Additional Authors:
  17.  * Alan Cox, <gw4pts@gw4pts.ampr.org>
  18.  * Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
  19.  *
  20.  * Changes:
  21.  *         Alexey Kuznetsov: pa_* fields are replaced with ifaddr lists.
  22.  * Cyrus Durgin: updated for kmod
  23.  * Matthias Andree: in devinet_ioctl, compare label and 
  24.  * address (4.4BSD alias style support),
  25.  * fall back to comparing just the label
  26.  * if no match found.
  27.  */
  28. #include <linux/config.h>
  29.  
  30. #include <asm/uaccess.h>
  31. #include <asm/system.h>
  32. #include <asm/bitops.h>
  33. #include <linux/types.h>
  34. #include <linux/kernel.h>
  35. #include <linux/sched.h>
  36. #include <linux/string.h>
  37. #include <linux/mm.h>
  38. #include <linux/socket.h>
  39. #include <linux/sockios.h>
  40. #include <linux/in.h>
  41. #include <linux/errno.h>
  42. #include <linux/interrupt.h>
  43. #include <linux/if_ether.h>
  44. #include <linux/inet.h>
  45. #include <linux/netdevice.h>
  46. #include <linux/etherdevice.h>
  47. #include <linux/skbuff.h>
  48. #include <linux/rtnetlink.h>
  49. #include <linux/init.h>
  50. #include <linux/notifier.h>
  51. #include <linux/inetdevice.h>
  52. #include <linux/igmp.h>
  53. #ifdef CONFIG_SYSCTL
  54. #include <linux/sysctl.h>
  55. #endif
  56. #include <linux/kmod.h>
  57. #include <net/ip.h>
  58. #include <net/route.h>
  59. #include <net/ip_fib.h>
  60. struct ipv4_devconf ipv4_devconf = { 1, 1, 1, 1, 0, };
  61. static struct ipv4_devconf ipv4_devconf_dflt = { 1, 1, 1, 1, 1, };
  62. static void rtmsg_ifa(int event, struct in_ifaddr *);
  63. static struct notifier_block *inetaddr_chain;
  64. static void inet_del_ifa(struct in_device *in_dev, struct in_ifaddr **ifap, int destroy);
  65. #ifdef CONFIG_SYSCTL
  66. static void devinet_sysctl_register(struct in_device *in_dev, struct ipv4_devconf *p);
  67. static void devinet_sysctl_unregister(struct ipv4_devconf *p);
  68. #endif
  69. int inet_ifa_count;
  70. int inet_dev_count;
  71. /* Locks all the inet devices. */
  72. rwlock_t inetdev_lock = RW_LOCK_UNLOCKED;
  73. static struct in_ifaddr * inet_alloc_ifa(void)
  74. {
  75. struct in_ifaddr *ifa;
  76. ifa = kmalloc(sizeof(*ifa), GFP_KERNEL);
  77. if (ifa) {
  78. memset(ifa, 0, sizeof(*ifa));
  79. inet_ifa_count++;
  80. }
  81. return ifa;
  82. }
  83. static __inline__ void inet_free_ifa(struct in_ifaddr *ifa)
  84. {
  85. if (ifa->ifa_dev)
  86. __in_dev_put(ifa->ifa_dev);
  87. kfree(ifa);
  88. inet_ifa_count--;
  89. }
  90. void in_dev_finish_destroy(struct in_device *idev)
  91. {
  92. struct net_device *dev = idev->dev;
  93. BUG_TRAP(idev->ifa_list==NULL);
  94. BUG_TRAP(idev->mc_list==NULL);
  95. #ifdef NET_REFCNT_DEBUG
  96. printk(KERN_DEBUG "in_dev_finish_destroy: %p=%sn", idev, dev ? dev->name : "NIL");
  97. #endif
  98. dev_put(dev);
  99. if (!idev->dead) {
  100. printk("Freeing alive in_device %pn", idev);
  101. return;
  102. }
  103. inet_dev_count--;
  104. kfree(idev);
  105. }
  106. struct in_device *inetdev_init(struct net_device *dev)
  107. {
  108. struct in_device *in_dev;
  109. ASSERT_RTNL();
  110. in_dev = kmalloc(sizeof(*in_dev), GFP_KERNEL);
  111. if (!in_dev)
  112. return NULL;
  113. memset(in_dev, 0, sizeof(*in_dev));
  114. in_dev->lock = RW_LOCK_UNLOCKED;
  115. memcpy(&in_dev->cnf, &ipv4_devconf_dflt, sizeof(in_dev->cnf));
  116. in_dev->cnf.sysctl = NULL;
  117. in_dev->dev = dev;
  118. if ((in_dev->arp_parms = neigh_parms_alloc(dev, &arp_tbl)) == NULL) {
  119. kfree(in_dev);
  120. return NULL;
  121. }
  122. inet_dev_count++;
  123. /* Reference in_dev->dev */
  124. dev_hold(dev);
  125. #ifdef CONFIG_SYSCTL
  126. neigh_sysctl_register(dev, in_dev->arp_parms, NET_IPV4, NET_IPV4_NEIGH, "ipv4");
  127. #endif
  128. write_lock_bh(&inetdev_lock);
  129. dev->ip_ptr = in_dev;
  130. /* Account for reference dev->ip_ptr */
  131. in_dev_hold(in_dev);
  132. write_unlock_bh(&inetdev_lock);
  133. #ifdef CONFIG_SYSCTL
  134. devinet_sysctl_register(in_dev, &in_dev->cnf);
  135. #endif
  136. if (dev->flags&IFF_UP)
  137. ip_mc_up(in_dev);
  138. return in_dev;
  139. }
  140. static void inetdev_destroy(struct in_device *in_dev)
  141. {
  142. struct in_ifaddr *ifa;
  143. ASSERT_RTNL();
  144. in_dev->dead = 1;
  145. ip_mc_destroy_dev(in_dev);
  146. while ((ifa = in_dev->ifa_list) != NULL) {
  147. inet_del_ifa(in_dev, &in_dev->ifa_list, 0);
  148. inet_free_ifa(ifa);
  149. }
  150. #ifdef CONFIG_SYSCTL
  151. devinet_sysctl_unregister(&in_dev->cnf);
  152. #endif
  153. write_lock_bh(&inetdev_lock);
  154. in_dev->dev->ip_ptr = NULL;
  155. /* in_dev_put following below will kill the in_device */
  156. write_unlock_bh(&inetdev_lock);
  157. neigh_parms_release(&arp_tbl, in_dev->arp_parms);
  158. in_dev_put(in_dev);
  159. }
  160. int inet_addr_onlink(struct in_device *in_dev, u32 a, u32 b)
  161. {
  162. read_lock(&in_dev->lock);
  163. for_primary_ifa(in_dev) {
  164. if (inet_ifa_match(a, ifa)) {
  165. if (!b || inet_ifa_match(b, ifa)) {
  166. read_unlock(&in_dev->lock);
  167. return 1;
  168. }
  169. }
  170. } endfor_ifa(in_dev);
  171. read_unlock(&in_dev->lock);
  172. return 0;
  173. static void
  174. inet_del_ifa(struct in_device *in_dev, struct in_ifaddr **ifap, int destroy)
  175. {
  176. struct in_ifaddr *ifa1 = *ifap;
  177. ASSERT_RTNL();
  178. /* 1. Deleting primary ifaddr forces deletion all secondaries */
  179. if (!(ifa1->ifa_flags&IFA_F_SECONDARY)) {
  180. struct in_ifaddr *ifa;
  181. struct in_ifaddr **ifap1 = &ifa1->ifa_next;
  182. while ((ifa=*ifap1) != NULL) {
  183. if (!(ifa->ifa_flags&IFA_F_SECONDARY) ||
  184.     ifa1->ifa_mask != ifa->ifa_mask ||
  185.     !inet_ifa_match(ifa1->ifa_address, ifa)) {
  186. ifap1 = &ifa->ifa_next;
  187. continue;
  188. }
  189. write_lock_bh(&in_dev->lock);
  190. *ifap1 = ifa->ifa_next;
  191. write_unlock_bh(&in_dev->lock);
  192. rtmsg_ifa(RTM_DELADDR, ifa);
  193. notifier_call_chain(&inetaddr_chain, NETDEV_DOWN, ifa);
  194. inet_free_ifa(ifa);
  195. }
  196. }
  197. /* 2. Unlink it */
  198. write_lock_bh(&in_dev->lock);
  199. *ifap = ifa1->ifa_next;
  200. write_unlock_bh(&in_dev->lock);
  201. /* 3. Announce address deletion */
  202. /* Send message first, then call notifier.
  203.    At first sight, FIB update triggered by notifier
  204.    will refer to already deleted ifaddr, that could confuse
  205.    netlink listeners. It is not true: look, gated sees
  206.    that route deleted and if it still thinks that ifaddr
  207.    is valid, it will try to restore deleted routes... Grr.
  208.    So that, this order is correct.
  209.  */
  210. rtmsg_ifa(RTM_DELADDR, ifa1);
  211. notifier_call_chain(&inetaddr_chain, NETDEV_DOWN, ifa1);
  212. if (destroy) {
  213. inet_free_ifa(ifa1);
  214. if (in_dev->ifa_list == NULL)
  215. inetdev_destroy(in_dev);
  216. }
  217. }
  218. static int
  219. inet_insert_ifa(struct in_ifaddr *ifa)
  220. {
  221. struct in_device *in_dev = ifa->ifa_dev;
  222. struct in_ifaddr *ifa1, **ifap, **last_primary;
  223. ASSERT_RTNL();
  224. if (ifa->ifa_local == 0) {
  225. inet_free_ifa(ifa);
  226. return 0;
  227. }
  228. ifa->ifa_flags &= ~IFA_F_SECONDARY;
  229. last_primary = &in_dev->ifa_list;
  230. for (ifap=&in_dev->ifa_list; (ifa1=*ifap)!=NULL; ifap=&ifa1->ifa_next) {
  231. if (!(ifa1->ifa_flags&IFA_F_SECONDARY) && ifa->ifa_scope <= ifa1->ifa_scope)
  232. last_primary = &ifa1->ifa_next;
  233. if (ifa1->ifa_mask == ifa->ifa_mask && inet_ifa_match(ifa1->ifa_address, ifa)) {
  234. if (ifa1->ifa_local == ifa->ifa_local) {
  235. inet_free_ifa(ifa);
  236. return -EEXIST;
  237. }
  238. if (ifa1->ifa_scope != ifa->ifa_scope) {
  239. inet_free_ifa(ifa);
  240. return -EINVAL;
  241. }
  242. ifa->ifa_flags |= IFA_F_SECONDARY;
  243. }
  244. }
  245. if (!(ifa->ifa_flags&IFA_F_SECONDARY)) {
  246. net_srandom(ifa->ifa_local);
  247. ifap = last_primary;
  248. }
  249. ifa->ifa_next = *ifap;
  250. write_lock_bh(&in_dev->lock);
  251. *ifap = ifa;
  252. write_unlock_bh(&in_dev->lock);
  253. /* Send message first, then call notifier.
  254.    Notifier will trigger FIB update, so that
  255.    listeners of netlink will know about new ifaddr */
  256. rtmsg_ifa(RTM_NEWADDR, ifa);
  257. notifier_call_chain(&inetaddr_chain, NETDEV_UP, ifa);
  258. return 0;
  259. }
  260. static int
  261. inet_set_ifa(struct net_device *dev, struct in_ifaddr *ifa)
  262. {
  263. struct in_device *in_dev = __in_dev_get(dev);
  264. ASSERT_RTNL();
  265. if (in_dev == NULL) {
  266. in_dev = inetdev_init(dev);
  267. if (in_dev == NULL) {
  268. inet_free_ifa(ifa);
  269. return -ENOBUFS;
  270. }
  271. }
  272. if (ifa->ifa_dev != in_dev) {
  273. BUG_TRAP(ifa->ifa_dev==NULL);
  274. in_dev_hold(in_dev);
  275. ifa->ifa_dev=in_dev;
  276. }
  277. if (LOOPBACK(ifa->ifa_local))
  278. ifa->ifa_scope = RT_SCOPE_HOST;
  279. return inet_insert_ifa(ifa);
  280. }
  281. struct in_device *inetdev_by_index(int ifindex)
  282. {
  283. struct net_device *dev;
  284. struct in_device *in_dev = NULL;
  285. read_lock(&dev_base_lock);
  286. dev = __dev_get_by_index(ifindex);
  287. if (dev)
  288. in_dev = in_dev_get(dev);
  289. read_unlock(&dev_base_lock);
  290. return in_dev;
  291. }
  292. /* Called only from RTNL semaphored context. No locks. */
  293. struct in_ifaddr *inet_ifa_byprefix(struct in_device *in_dev, u32 prefix, u32 mask)
  294. {
  295. ASSERT_RTNL();
  296. for_primary_ifa(in_dev) {
  297. if (ifa->ifa_mask == mask && inet_ifa_match(prefix, ifa))
  298. return ifa;
  299. } endfor_ifa(in_dev);
  300. return NULL;
  301. }
  302. int
  303. inet_rtm_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
  304. {
  305. struct rtattr  **rta = arg;
  306. struct in_device *in_dev;
  307. struct ifaddrmsg *ifm = NLMSG_DATA(nlh);
  308. struct in_ifaddr *ifa, **ifap;
  309. ASSERT_RTNL();
  310. if ((in_dev = inetdev_by_index(ifm->ifa_index)) == NULL)
  311. return -EADDRNOTAVAIL;
  312. __in_dev_put(in_dev);
  313. for (ifap=&in_dev->ifa_list; (ifa=*ifap)!=NULL; ifap=&ifa->ifa_next) {
  314. if ((rta[IFA_LOCAL-1] && memcmp(RTA_DATA(rta[IFA_LOCAL-1]), &ifa->ifa_local, 4)) ||
  315.     (rta[IFA_LABEL-1] && strcmp(RTA_DATA(rta[IFA_LABEL-1]), ifa->ifa_label)) ||
  316.     (rta[IFA_ADDRESS-1] &&
  317.      (ifm->ifa_prefixlen != ifa->ifa_prefixlen ||
  318.       !inet_ifa_match(*(u32*)RTA_DATA(rta[IFA_ADDRESS-1]), ifa))))
  319. continue;
  320. inet_del_ifa(in_dev, ifap, 1);
  321. return 0;
  322. }
  323. return -EADDRNOTAVAIL;
  324. }
  325. int
  326. inet_rtm_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
  327. {
  328. struct rtattr **rta = arg;
  329. struct net_device *dev;
  330. struct in_device *in_dev;
  331. struct ifaddrmsg *ifm = NLMSG_DATA(nlh);
  332. struct in_ifaddr *ifa;
  333. ASSERT_RTNL();
  334. if (ifm->ifa_prefixlen > 32 || rta[IFA_LOCAL-1] == NULL)
  335. return -EINVAL;
  336. if ((dev = __dev_get_by_index(ifm->ifa_index)) == NULL)
  337. return -ENODEV;
  338. if ((in_dev = __in_dev_get(dev)) == NULL) {
  339. in_dev = inetdev_init(dev);
  340. if (!in_dev)
  341. return -ENOBUFS;
  342. }
  343. if ((ifa = inet_alloc_ifa()) == NULL)
  344. return -ENOBUFS;
  345. if (rta[IFA_ADDRESS-1] == NULL)
  346. rta[IFA_ADDRESS-1] = rta[IFA_LOCAL-1];
  347. memcpy(&ifa->ifa_local, RTA_DATA(rta[IFA_LOCAL-1]), 4);
  348. memcpy(&ifa->ifa_address, RTA_DATA(rta[IFA_ADDRESS-1]), 4);
  349. ifa->ifa_prefixlen = ifm->ifa_prefixlen;
  350. ifa->ifa_mask = inet_make_mask(ifm->ifa_prefixlen);
  351. if (rta[IFA_BROADCAST-1])
  352. memcpy(&ifa->ifa_broadcast, RTA_DATA(rta[IFA_BROADCAST-1]), 4);
  353. if (rta[IFA_ANYCAST-1])
  354. memcpy(&ifa->ifa_anycast, RTA_DATA(rta[IFA_ANYCAST-1]), 4);
  355. ifa->ifa_flags = ifm->ifa_flags;
  356. ifa->ifa_scope = ifm->ifa_scope;
  357. in_dev_hold(in_dev);
  358. ifa->ifa_dev = in_dev;
  359. if (rta[IFA_LABEL-1])
  360. memcpy(ifa->ifa_label, RTA_DATA(rta[IFA_LABEL-1]), IFNAMSIZ);
  361. else
  362. memcpy(ifa->ifa_label, dev->name, IFNAMSIZ);
  363. return inet_insert_ifa(ifa);
  364. }
  365. /* 
  366.  * Determine a default network mask, based on the IP address. 
  367.  */
  368. static __inline__ int inet_abc_len(u32 addr)
  369. {
  370.    if (ZERONET(addr))
  371.    return 0;
  372.    addr = ntohl(addr);
  373.    if (IN_CLASSA(addr)) 
  374.    return 8;
  375.    if (IN_CLASSB(addr)) 
  376.    return 16;
  377.    if (IN_CLASSC(addr)) 
  378.    return 24;
  379. /*
  380.  * Something else, probably a multicast. 
  381.  */
  382.     
  383.    return -1;
  384. }
  385. int devinet_ioctl(unsigned int cmd, void *arg)
  386. {
  387. struct ifreq ifr;
  388. struct sockaddr_in sin_orig;
  389. struct sockaddr_in *sin = (struct sockaddr_in *)&ifr.ifr_addr;
  390. struct in_device *in_dev;
  391. struct in_ifaddr **ifap = NULL;
  392. struct in_ifaddr *ifa = NULL;
  393. struct net_device *dev;
  394. char *colon;
  395. int ret = 0;
  396. int tryaddrmatch = 0;
  397. /*
  398.  * Fetch the caller's info block into kernel space
  399.  */
  400. if (copy_from_user(&ifr, arg, sizeof(struct ifreq)))
  401. return -EFAULT;
  402. ifr.ifr_name[IFNAMSIZ-1] = 0;
  403. /* save original address for comparison */
  404. memcpy(&sin_orig, sin, sizeof(*sin));
  405. colon = strchr(ifr.ifr_name, ':');
  406. if (colon)
  407. *colon = 0;
  408. #ifdef CONFIG_KMOD
  409. dev_load(ifr.ifr_name);
  410. #endif
  411. switch(cmd) {
  412. case SIOCGIFADDR: /* Get interface address */
  413. case SIOCGIFBRDADDR: /* Get the broadcast address */
  414. case SIOCGIFDSTADDR: /* Get the destination address */
  415. case SIOCGIFNETMASK: /* Get the netmask for the interface */
  416. /* Note that these ioctls will not sleep,
  417.    so that we do not impose a lock.
  418.    One day we will be forced to put shlock here (I mean SMP)
  419.  */
  420. tryaddrmatch = (sin_orig.sin_family == AF_INET);
  421. memset(sin, 0, sizeof(*sin));
  422. sin->sin_family = AF_INET;
  423. break;
  424. case SIOCSIFFLAGS:
  425. if (!capable(CAP_NET_ADMIN))
  426. return -EACCES;
  427. break;
  428. case SIOCSIFADDR: /* Set interface address (and family) */
  429. case SIOCSIFBRDADDR: /* Set the broadcast address */
  430. case SIOCSIFDSTADDR: /* Set the destination address */
  431. case SIOCSIFNETMASK:  /* Set the netmask for the interface */
  432. if (!capable(CAP_NET_ADMIN))
  433. return -EACCES;
  434. if (sin->sin_family != AF_INET)
  435. return -EINVAL;
  436. break;
  437. default:
  438. return -EINVAL;
  439. }
  440. dev_probe_lock();
  441. rtnl_lock();
  442. if ((dev = __dev_get_by_name(ifr.ifr_name)) == NULL) {
  443. ret = -ENODEV;
  444. goto done;
  445. }
  446. if (colon)
  447. *colon = ':';
  448. if ((in_dev=__in_dev_get(dev)) != NULL) {
  449. if (tryaddrmatch) {
  450. /* Matthias Andree */
  451. /* compare label and address (4.4BSD style) */
  452. /* note: we only do this for a limited set of ioctls
  453.    and only if the original address family was AF_INET.
  454.    This is checked above. */
  455. for (ifap=&in_dev->ifa_list; (ifa=*ifap) != NULL; ifap=&ifa->ifa_next) {
  456. if ((strcmp(ifr.ifr_name, ifa->ifa_label) == 0)
  457.     && (sin_orig.sin_addr.s_addr == ifa->ifa_address)) {
  458. break; /* found */
  459. }
  460. }
  461. }
  462. /* we didn't get a match, maybe the application is
  463.    4.3BSD-style and passed in junk so we fall back to 
  464.    comparing just the label */
  465. if (ifa == NULL) {
  466. for (ifap=&in_dev->ifa_list; (ifa=*ifap) != NULL; ifap=&ifa->ifa_next)
  467. if (strcmp(ifr.ifr_name, ifa->ifa_label) == 0)
  468. break;
  469. }
  470. }
  471. if (ifa == NULL && cmd != SIOCSIFADDR && cmd != SIOCSIFFLAGS) {
  472. ret = -EADDRNOTAVAIL;
  473. goto done;
  474. }
  475. switch(cmd) {
  476. case SIOCGIFADDR: /* Get interface address */
  477. sin->sin_addr.s_addr = ifa->ifa_local;
  478. goto rarok;
  479. case SIOCGIFBRDADDR: /* Get the broadcast address */
  480. sin->sin_addr.s_addr = ifa->ifa_broadcast;
  481. goto rarok;
  482. case SIOCGIFDSTADDR: /* Get the destination address */
  483. sin->sin_addr.s_addr = ifa->ifa_address;
  484. goto rarok;
  485. case SIOCGIFNETMASK: /* Get the netmask for the interface */
  486. sin->sin_addr.s_addr = ifa->ifa_mask;
  487. goto rarok;
  488. case SIOCSIFFLAGS:
  489. if (colon) {
  490. if (ifa == NULL) {
  491. ret = -EADDRNOTAVAIL;
  492. break;
  493. }
  494. if (!(ifr.ifr_flags&IFF_UP))
  495. inet_del_ifa(in_dev, ifap, 1);
  496. break;
  497. }
  498. ret = dev_change_flags(dev, ifr.ifr_flags);
  499. break;
  500. case SIOCSIFADDR: /* Set interface address (and family) */
  501. if (inet_abc_len(sin->sin_addr.s_addr) < 0) {
  502. ret = -EINVAL;
  503. break;
  504. }
  505. if (!ifa) {
  506. if ((ifa = inet_alloc_ifa()) == NULL) {
  507. ret = -ENOBUFS;
  508. break;
  509. }
  510. if (colon)
  511. memcpy(ifa->ifa_label, ifr.ifr_name, IFNAMSIZ);
  512. else
  513. memcpy(ifa->ifa_label, dev->name, IFNAMSIZ);
  514. } else {
  515. ret = 0;
  516. if (ifa->ifa_local == sin->sin_addr.s_addr)
  517. break;
  518. inet_del_ifa(in_dev, ifap, 0);
  519. ifa->ifa_broadcast = 0;
  520. ifa->ifa_anycast = 0;
  521. }
  522. ifa->ifa_address =
  523. ifa->ifa_local = sin->sin_addr.s_addr;
  524. if (!(dev->flags&IFF_POINTOPOINT)) {
  525. ifa->ifa_prefixlen = inet_abc_len(ifa->ifa_address);
  526. ifa->ifa_mask = inet_make_mask(ifa->ifa_prefixlen);
  527. if ((dev->flags&IFF_BROADCAST) && ifa->ifa_prefixlen < 31)
  528. ifa->ifa_broadcast = ifa->ifa_address|~ifa->ifa_mask;
  529. } else {
  530. ifa->ifa_prefixlen = 32;
  531. ifa->ifa_mask = inet_make_mask(32);
  532. }
  533. ret = inet_set_ifa(dev, ifa);
  534. break;
  535. case SIOCSIFBRDADDR: /* Set the broadcast address */
  536. if (ifa->ifa_broadcast != sin->sin_addr.s_addr) {
  537. inet_del_ifa(in_dev, ifap, 0);
  538. ifa->ifa_broadcast = sin->sin_addr.s_addr;
  539. inet_insert_ifa(ifa);
  540. }
  541. break;
  542. case SIOCSIFDSTADDR: /* Set the destination address */
  543. if (ifa->ifa_address != sin->sin_addr.s_addr) {
  544. if (inet_abc_len(sin->sin_addr.s_addr) < 0) {
  545. ret = -EINVAL;
  546. break;
  547. }
  548. inet_del_ifa(in_dev, ifap, 0);
  549. ifa->ifa_address = sin->sin_addr.s_addr;
  550. inet_insert_ifa(ifa);
  551. }
  552. break;
  553. case SIOCSIFNETMASK:  /* Set the netmask for the interface */
  554. /*
  555.  * The mask we set must be legal.
  556.  */
  557. if (bad_mask(sin->sin_addr.s_addr, 0)) {
  558. ret = -EINVAL;
  559. break;
  560. }
  561. if (ifa->ifa_mask != sin->sin_addr.s_addr) {
  562. inet_del_ifa(in_dev, ifap, 0);
  563. ifa->ifa_mask = sin->sin_addr.s_addr;
  564. ifa->ifa_prefixlen = inet_mask_len(ifa->ifa_mask);
  565. inet_insert_ifa(ifa);
  566. }
  567. break;
  568. }
  569. done:
  570. rtnl_unlock();
  571. dev_probe_unlock();
  572. return ret;
  573. rarok:
  574. rtnl_unlock();
  575. dev_probe_unlock();
  576. if (copy_to_user(arg, &ifr, sizeof(struct ifreq)))
  577. return -EFAULT;
  578. return 0;
  579. }
  580. static int
  581. inet_gifconf(struct net_device *dev, char *buf, int len)
  582. {
  583. struct in_device *in_dev = __in_dev_get(dev);
  584. struct in_ifaddr *ifa;
  585. struct ifreq ifr;
  586. int done=0;
  587. if (in_dev==NULL || (ifa=in_dev->ifa_list)==NULL)
  588. return 0;
  589. for ( ; ifa; ifa = ifa->ifa_next) {
  590. if (!buf) {
  591. done += sizeof(ifr);
  592. continue;
  593. }
  594. if (len < (int) sizeof(ifr))
  595. return done;
  596. memset(&ifr, 0, sizeof(struct ifreq));
  597. if (ifa->ifa_label)
  598. strcpy(ifr.ifr_name, ifa->ifa_label);
  599. else
  600. strcpy(ifr.ifr_name, dev->name);
  601. (*(struct sockaddr_in *) &ifr.ifr_addr).sin_family = AF_INET;
  602. (*(struct sockaddr_in *) &ifr.ifr_addr).sin_addr.s_addr = ifa->ifa_local;
  603. if (copy_to_user(buf, &ifr, sizeof(struct ifreq)))
  604. return -EFAULT;
  605. buf += sizeof(struct ifreq);
  606. len -= sizeof(struct ifreq);
  607. done += sizeof(struct ifreq);
  608. }
  609. return done;
  610. }
  611. u32 inet_select_addr(const struct net_device *dev, u32 dst, int scope)
  612. {
  613. u32 addr = 0;
  614. struct in_device *in_dev;
  615. read_lock(&inetdev_lock);
  616. in_dev = __in_dev_get(dev);
  617. if (in_dev == NULL) {
  618. read_unlock(&inetdev_lock);
  619. return 0;
  620. }
  621. read_lock(&in_dev->lock);
  622. for_primary_ifa(in_dev) {
  623. if (ifa->ifa_scope > scope)
  624. continue;
  625. if (!dst || inet_ifa_match(dst, ifa)) {
  626. addr = ifa->ifa_local;
  627. break;
  628. }
  629. if (!addr)
  630. addr = ifa->ifa_local;
  631. } endfor_ifa(in_dev);
  632. read_unlock(&in_dev->lock);
  633. read_unlock(&inetdev_lock);
  634. if (addr)
  635. return addr;
  636. /* Not loopback addresses on loopback should be preferred
  637.    in this case. It is importnat that lo is the first interface
  638.    in dev_base list.
  639.  */
  640. read_lock(&dev_base_lock);
  641. read_lock(&inetdev_lock);
  642. for (dev=dev_base; dev; dev=dev->next) {
  643. if ((in_dev=__in_dev_get(dev)) == NULL)
  644. continue;
  645. read_lock(&in_dev->lock);
  646. for_primary_ifa(in_dev) {
  647. if (ifa->ifa_scope != RT_SCOPE_LINK &&
  648.     ifa->ifa_scope <= scope) {
  649. read_unlock(&in_dev->lock);
  650. read_unlock(&inetdev_lock);
  651. read_unlock(&dev_base_lock);
  652. return ifa->ifa_local;
  653. }
  654. } endfor_ifa(in_dev);
  655. read_unlock(&in_dev->lock);
  656. }
  657. read_unlock(&inetdev_lock);
  658. read_unlock(&dev_base_lock);
  659. return 0;
  660. }
  661. /*
  662.  * Device notifier
  663.  */
  664. int register_inetaddr_notifier(struct notifier_block *nb)
  665. {
  666. return notifier_chain_register(&inetaddr_chain, nb);
  667. }
  668. int unregister_inetaddr_notifier(struct notifier_block *nb)
  669. {
  670. return notifier_chain_unregister(&inetaddr_chain,nb);
  671. }
  672. /* Called only under RTNL semaphore */
  673. static int inetdev_event(struct notifier_block *this, unsigned long event, void *ptr)
  674. {
  675. struct net_device *dev = ptr;
  676. struct in_device *in_dev = __in_dev_get(dev);
  677. ASSERT_RTNL();
  678. if (in_dev == NULL)
  679. return NOTIFY_DONE;
  680. switch (event) {
  681. case NETDEV_REGISTER:
  682. printk(KERN_DEBUG "inetdev_event: bugn");
  683. dev->ip_ptr = NULL;
  684. break;
  685. case NETDEV_UP:
  686. if (dev->mtu < 68)
  687. break;
  688. if (dev == &loopback_dev) {
  689. struct in_ifaddr *ifa;
  690. if ((ifa = inet_alloc_ifa()) != NULL) {
  691. ifa->ifa_local =
  692. ifa->ifa_address = htonl(INADDR_LOOPBACK);
  693. ifa->ifa_prefixlen = 8;
  694. ifa->ifa_mask = inet_make_mask(8);
  695. in_dev_hold(in_dev);
  696. ifa->ifa_dev = in_dev;
  697. ifa->ifa_scope = RT_SCOPE_HOST;
  698. memcpy(ifa->ifa_label, dev->name, IFNAMSIZ);
  699. inet_insert_ifa(ifa);
  700. }
  701. }
  702. ip_mc_up(in_dev);
  703. break;
  704. case NETDEV_DOWN:
  705. ip_mc_down(in_dev);
  706. break;
  707. case NETDEV_CHANGEMTU:
  708. if (dev->mtu >= 68)
  709. break;
  710. /* MTU falled under 68, disable IP */
  711. case NETDEV_UNREGISTER:
  712. inetdev_destroy(in_dev);
  713. break;
  714. case NETDEV_CHANGENAME:
  715. if (in_dev->ifa_list) {
  716. struct in_ifaddr *ifa;
  717. for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next)
  718. memcpy(ifa->ifa_label, dev->name, IFNAMSIZ);
  719. /* Do not notify about label change, this event is
  720.    not interesting to applications using netlink.
  721.  */
  722. }
  723. break;
  724. }
  725. return NOTIFY_DONE;
  726. }
  727. struct notifier_block ip_netdev_notifier = {
  728. notifier_call: inetdev_event,
  729. };
  730. static int inet_fill_ifaddr(struct sk_buff *skb, struct in_ifaddr *ifa,
  731.     u32 pid, u32 seq, int event)
  732. {
  733. struct ifaddrmsg *ifm;
  734. struct nlmsghdr  *nlh;
  735. unsigned char  *b = skb->tail;
  736. nlh = NLMSG_PUT(skb, pid, seq, event, sizeof(*ifm));
  737. ifm = NLMSG_DATA(nlh);
  738. ifm->ifa_family = AF_INET;
  739. ifm->ifa_prefixlen = ifa->ifa_prefixlen;
  740. ifm->ifa_flags = ifa->ifa_flags|IFA_F_PERMANENT;
  741. ifm->ifa_scope = ifa->ifa_scope;
  742. ifm->ifa_index = ifa->ifa_dev->dev->ifindex;
  743. if (ifa->ifa_address)
  744. RTA_PUT(skb, IFA_ADDRESS, 4, &ifa->ifa_address);
  745. if (ifa->ifa_local)
  746. RTA_PUT(skb, IFA_LOCAL, 4, &ifa->ifa_local);
  747. if (ifa->ifa_broadcast)
  748. RTA_PUT(skb, IFA_BROADCAST, 4, &ifa->ifa_broadcast);
  749. if (ifa->ifa_anycast)
  750. RTA_PUT(skb, IFA_ANYCAST, 4, &ifa->ifa_anycast);
  751. if (ifa->ifa_label[0])
  752. RTA_PUT(skb, IFA_LABEL, IFNAMSIZ, &ifa->ifa_label);
  753. nlh->nlmsg_len = skb->tail - b;
  754. return skb->len;
  755. nlmsg_failure:
  756. rtattr_failure:
  757. skb_trim(skb, b - skb->data);
  758. return -1;
  759. }
  760. static int inet_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb)
  761. {
  762. int idx, ip_idx;
  763. int s_idx, s_ip_idx;
  764. struct net_device *dev;
  765. struct in_device *in_dev;
  766. struct in_ifaddr *ifa;
  767. s_idx = cb->args[0];
  768. s_ip_idx = ip_idx = cb->args[1];
  769. read_lock(&dev_base_lock);
  770. for (dev=dev_base, idx=0; dev; dev = dev->next, idx++) {
  771. if (idx < s_idx)
  772. continue;
  773. if (idx > s_idx)
  774. s_ip_idx = 0;
  775. read_lock(&inetdev_lock);
  776. if ((in_dev = __in_dev_get(dev)) == NULL) {
  777. read_unlock(&inetdev_lock);
  778. continue;
  779. }
  780. read_lock(&in_dev->lock);
  781. for (ifa = in_dev->ifa_list, ip_idx = 0; ifa;
  782.      ifa = ifa->ifa_next, ip_idx++) {
  783. if (ip_idx < s_ip_idx)
  784. continue;
  785. if (inet_fill_ifaddr(skb, ifa, NETLINK_CB(cb->skb).pid,
  786.      cb->nlh->nlmsg_seq, RTM_NEWADDR) <= 0) {
  787. read_unlock(&in_dev->lock);
  788. read_unlock(&inetdev_lock);
  789. goto done;
  790. }
  791. }
  792. read_unlock(&in_dev->lock);
  793. read_unlock(&inetdev_lock);
  794. }
  795. done:
  796. read_unlock(&dev_base_lock);
  797. cb->args[0] = idx;
  798. cb->args[1] = ip_idx;
  799. return skb->len;
  800. }
  801. static void rtmsg_ifa(int event, struct in_ifaddr * ifa)
  802. {
  803. struct sk_buff *skb;
  804. int size = NLMSG_SPACE(sizeof(struct ifaddrmsg)+128);
  805. skb = alloc_skb(size, GFP_KERNEL);
  806. if (!skb) {
  807. netlink_set_err(rtnl, 0, RTMGRP_IPV4_IFADDR, ENOBUFS);
  808. return;
  809. }
  810. if (inet_fill_ifaddr(skb, ifa, 0, 0, event) < 0) {
  811. kfree_skb(skb);
  812. netlink_set_err(rtnl, 0, RTMGRP_IPV4_IFADDR, EINVAL);
  813. return;
  814. }
  815. NETLINK_CB(skb).dst_groups = RTMGRP_IPV4_IFADDR;
  816. netlink_broadcast(rtnl, skb, 0, RTMGRP_IPV4_IFADDR, GFP_KERNEL);
  817. }
  818. static struct rtnetlink_link inet_rtnetlink_table[RTM_MAX-RTM_BASE+1] =
  819. {
  820. { NULL, NULL, },
  821. { NULL, NULL, },
  822. { NULL, NULL, },
  823. { NULL, NULL, },
  824. { inet_rtm_newaddr, NULL, },
  825. { inet_rtm_deladdr, NULL, },
  826. { NULL, inet_dump_ifaddr, },
  827. { NULL, NULL, },
  828. { inet_rtm_newroute, NULL, },
  829. { inet_rtm_delroute, NULL, },
  830. { inet_rtm_getroute, inet_dump_fib, },
  831. { NULL, NULL, },
  832. { NULL, NULL, },
  833. { NULL, NULL, },
  834. { NULL, NULL, },
  835. { NULL, NULL, },
  836. #ifdef CONFIG_IP_MULTIPLE_TABLES
  837. { inet_rtm_newrule, NULL, },
  838. { inet_rtm_delrule, NULL, },
  839. { NULL, inet_dump_rules, },
  840. { NULL, NULL, },
  841. #else
  842. { NULL, NULL, },
  843. { NULL, NULL, },
  844. { NULL, NULL, },
  845. { NULL, NULL, },
  846. #endif
  847. };
  848. #ifdef CONFIG_SYSCTL
  849. void inet_forward_change()
  850. {
  851. struct net_device *dev;
  852. int on = ipv4_devconf.forwarding;
  853. ipv4_devconf.accept_redirects = !on;
  854. ipv4_devconf_dflt.forwarding = on;
  855. read_lock(&dev_base_lock);
  856. for (dev = dev_base; dev; dev = dev->next) {
  857. struct in_device *in_dev;
  858. read_lock(&inetdev_lock);
  859. in_dev = __in_dev_get(dev);
  860. if (in_dev)
  861. in_dev->cnf.forwarding = on;
  862. read_unlock(&inetdev_lock);
  863. }
  864. read_unlock(&dev_base_lock);
  865. rt_cache_flush(0);
  866. }
  867. static
  868. int devinet_sysctl_forward(ctl_table *ctl, int write, struct file * filp,
  869.    void *buffer, size_t *lenp)
  870. {
  871. int *valp = ctl->data;
  872. int val = *valp;
  873. int ret;
  874. ret = proc_dointvec(ctl, write, filp, buffer, lenp);
  875. if (write && *valp != val) {
  876. if (valp == &ipv4_devconf.forwarding)
  877. inet_forward_change();
  878. else if (valp != &ipv4_devconf_dflt.forwarding)
  879. rt_cache_flush(0);
  880. }
  881.         return ret;
  882. }
  883. static struct devinet_sysctl_table
  884. {
  885. struct ctl_table_header *sysctl_header;
  886. ctl_table devinet_vars[15];
  887. ctl_table devinet_dev[2];
  888. ctl_table devinet_conf_dir[2];
  889. ctl_table devinet_proto_dir[2];
  890. ctl_table devinet_root_dir[2];
  891. } devinet_sysctl = {
  892. NULL,
  893. {{NET_IPV4_CONF_FORWARDING, "forwarding",
  894.          &ipv4_devconf.forwarding, sizeof(int), 0644, NULL,
  895.          &devinet_sysctl_forward},
  896. {NET_IPV4_CONF_MC_FORWARDING, "mc_forwarding",
  897.          &ipv4_devconf.mc_forwarding, sizeof(int), 0444, NULL,
  898.          &proc_dointvec},
  899. {NET_IPV4_CONF_ACCEPT_REDIRECTS, "accept_redirects",
  900.          &ipv4_devconf.accept_redirects, sizeof(int), 0644, NULL,
  901.          &proc_dointvec},
  902. {NET_IPV4_CONF_SECURE_REDIRECTS, "secure_redirects",
  903.          &ipv4_devconf.secure_redirects, sizeof(int), 0644, NULL,
  904.          &proc_dointvec},
  905. {NET_IPV4_CONF_SHARED_MEDIA, "shared_media",
  906.          &ipv4_devconf.shared_media, sizeof(int), 0644, NULL,
  907.          &proc_dointvec},
  908. {NET_IPV4_CONF_RP_FILTER, "rp_filter",
  909.          &ipv4_devconf.rp_filter, sizeof(int), 0644, NULL,
  910.          &proc_dointvec},
  911. {NET_IPV4_CONF_SEND_REDIRECTS, "send_redirects",
  912.          &ipv4_devconf.send_redirects, sizeof(int), 0644, NULL,
  913.          &proc_dointvec},
  914. {NET_IPV4_CONF_ACCEPT_SOURCE_ROUTE, "accept_source_route",
  915.          &ipv4_devconf.accept_source_route, sizeof(int), 0644, NULL,
  916.          &proc_dointvec},
  917. {NET_IPV4_CONF_PROXY_ARP, "proxy_arp",
  918.          &ipv4_devconf.proxy_arp, sizeof(int), 0644, NULL,
  919.          &proc_dointvec},
  920. {NET_IPV4_CONF_MEDIUM_ID, "medium_id",
  921.          &ipv4_devconf.medium_id, sizeof(int), 0644, NULL,
  922.          &proc_dointvec},
  923. {NET_IPV4_CONF_BOOTP_RELAY, "bootp_relay",
  924.          &ipv4_devconf.bootp_relay, sizeof(int), 0644, NULL,
  925.          &proc_dointvec},
  926.         {NET_IPV4_CONF_LOG_MARTIANS, "log_martians",
  927.          &ipv4_devconf.log_martians, sizeof(int), 0644, NULL,
  928.          &proc_dointvec},
  929. {NET_IPV4_CONF_TAG, "tag",
  930.  &ipv4_devconf.tag, sizeof(int), 0644, NULL,
  931.  &proc_dointvec},
  932. {NET_IPV4_CONF_ARPFILTER, "arp_filter",
  933.  &ipv4_devconf.arp_filter, sizeof(int), 0644, NULL,
  934.  &proc_dointvec},
  935.  {0}},
  936. {{NET_PROTO_CONF_ALL, "all", NULL, 0, 0555, devinet_sysctl.devinet_vars},{0}},
  937. {{NET_IPV4_CONF, "conf", NULL, 0, 0555, devinet_sysctl.devinet_dev},{0}},
  938. {{NET_IPV4, "ipv4", NULL, 0, 0555, devinet_sysctl.devinet_conf_dir},{0}},
  939. {{CTL_NET, "net", NULL, 0, 0555, devinet_sysctl.devinet_proto_dir},{0}}
  940. };
  941. static void devinet_sysctl_register(struct in_device *in_dev, struct ipv4_devconf *p)
  942. {
  943. int i;
  944. struct net_device *dev = in_dev ? in_dev->dev : NULL;
  945. struct devinet_sysctl_table *t;
  946. t = kmalloc(sizeof(*t), GFP_KERNEL);
  947. if (t == NULL)
  948. return;
  949. memcpy(t, &devinet_sysctl, sizeof(*t));
  950. for (i=0; i<sizeof(t->devinet_vars)/sizeof(t->devinet_vars[0])-1; i++) {
  951. t->devinet_vars[i].data += (char*)p - (char*)&ipv4_devconf;
  952. t->devinet_vars[i].de = NULL;
  953. }
  954. if (dev) {
  955. t->devinet_dev[0].procname = dev->name;
  956. t->devinet_dev[0].ctl_name = dev->ifindex;
  957. } else {
  958. t->devinet_dev[0].procname = "default";
  959. t->devinet_dev[0].ctl_name = NET_PROTO_CONF_DEFAULT;
  960. }
  961. t->devinet_dev[0].child = t->devinet_vars;
  962. t->devinet_dev[0].de = NULL;
  963. t->devinet_conf_dir[0].child = t->devinet_dev;
  964. t->devinet_conf_dir[0].de = NULL;
  965. t->devinet_proto_dir[0].child = t->devinet_conf_dir;
  966. t->devinet_proto_dir[0].de = NULL;
  967. t->devinet_root_dir[0].child = t->devinet_proto_dir;
  968. t->devinet_root_dir[0].de = NULL;
  969. t->sysctl_header = register_sysctl_table(t->devinet_root_dir, 0);
  970. if (t->sysctl_header == NULL)
  971. kfree(t);
  972. else
  973. p->sysctl = t;
  974. }
  975. static void devinet_sysctl_unregister(struct ipv4_devconf *p)
  976. {
  977. if (p->sysctl) {
  978. struct devinet_sysctl_table *t = p->sysctl;
  979. p->sysctl = NULL;
  980. unregister_sysctl_table(t->sysctl_header);
  981. kfree(t);
  982. }
  983. }
  984. #endif
  985. void __init devinet_init(void)
  986. {
  987. register_gifconf(PF_INET, inet_gifconf);
  988. register_netdevice_notifier(&ip_netdev_notifier);
  989. rtnetlink_links[PF_INET] = inet_rtnetlink_table;
  990. #ifdef CONFIG_SYSCTL
  991. devinet_sysctl.sysctl_header =
  992. register_sysctl_table(devinet_sysctl.devinet_root_dir, 0);
  993. devinet_sysctl_register(NULL, &ipv4_devconf_dflt);
  994. #endif
  995. }