Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * DECnet An implementation of the DECnet protocol suite for the LINUX |
| 3 | * operating system. DECnet is implemented using the BSD Socket |
| 4 | * interface as the means of communication with the user level. |
| 5 | * |
| 6 | * DECnet Device Layer |
| 7 | * |
| 8 | * Authors: Steve Whitehouse <SteveW@ACM.org> |
| 9 | * Eduardo Marcelo Serrat <emserrat@geocities.com> |
| 10 | * |
| 11 | * Changes: |
| 12 | * Steve Whitehouse : Devices now see incoming frames so they |
| 13 | * can mark on who it came from. |
| 14 | * Steve Whitehouse : Fixed bug in creating neighbours. Each neighbour |
| 15 | * can now have a device specific setup func. |
| 16 | * Steve Whitehouse : Added /proc/sys/net/decnet/conf/<dev>/ |
| 17 | * Steve Whitehouse : Fixed bug which sometimes killed timer |
| 18 | * Steve Whitehouse : Multiple ifaddr support |
| 19 | * Steve Whitehouse : SIOCGIFCONF is now a compile time option |
| 20 | * Steve Whitehouse : /proc/sys/net/decnet/conf/<sys>/forwarding |
| 21 | * Steve Whitehouse : Removed timer1 - it's a user space issue now |
| 22 | * Patrick Caulfield : Fixed router hello message format |
| 23 | * Steve Whitehouse : Got rid of constant sizes for blksize for |
| 24 | * devices. All mtu based now. |
| 25 | */ |
| 26 | |
Randy Dunlap | 4fc268d | 2006-01-11 12:17:47 -0800 | [diff] [blame] | 27 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <linux/module.h> |
| 29 | #include <linux/moduleparam.h> |
| 30 | #include <linux/init.h> |
| 31 | #include <linux/net.h> |
| 32 | #include <linux/netdevice.h> |
| 33 | #include <linux/proc_fs.h> |
| 34 | #include <linux/seq_file.h> |
| 35 | #include <linux/timer.h> |
| 36 | #include <linux/string.h> |
Thomas Graf | 1823730 | 2006-08-04 23:04:54 -0700 | [diff] [blame] | 37 | #include <linux/if_addr.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include <linux/if_arp.h> |
| 39 | #include <linux/if_ether.h> |
| 40 | #include <linux/skbuff.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | #include <linux/sysctl.h> |
| 42 | #include <linux/notifier.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 43 | #include <linux/slab.h> |
Himangi Saraogi | b5c5c36 | 2014-08-20 23:13:07 +0530 | [diff] [blame] | 44 | #include <linux/jiffies.h> |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 45 | #include <linux/uaccess.h> |
Eric W. Biederman | 457c4cb | 2007-09-12 12:01:34 +0200 | [diff] [blame] | 46 | #include <net/net_namespace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #include <net/neighbour.h> |
| 48 | #include <net/dst.h> |
| 49 | #include <net/flow.h> |
Steven Whitehouse | a8731cb | 2006-08-09 15:56:46 -0700 | [diff] [blame] | 50 | #include <net/fib_rules.h> |
Thomas Graf | a6f01ca | 2006-11-24 17:14:07 -0800 | [diff] [blame] | 51 | #include <net/netlink.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | #include <net/dn.h> |
| 53 | #include <net/dn_dev.h> |
| 54 | #include <net/dn_route.h> |
| 55 | #include <net/dn_neigh.h> |
| 56 | #include <net/dn_fib.h> |
| 57 | |
| 58 | #define DN_IFREQ_SIZE (sizeof(struct ifreq) - sizeof(struct sockaddr) + sizeof(struct sockaddr_dn)) |
| 59 | |
| 60 | static char dn_rt_all_end_mcast[ETH_ALEN] = {0xAB,0x00,0x00,0x04,0x00,0x00}; |
| 61 | static char dn_rt_all_rt_mcast[ETH_ALEN] = {0xAB,0x00,0x00,0x03,0x00,0x00}; |
| 62 | static char dn_hiord[ETH_ALEN] = {0xAA,0x00,0x04,0x00,0x00,0x00}; |
| 63 | static unsigned char dn_eco_version[3] = {0x02,0x00,0x00}; |
| 64 | |
| 65 | extern struct neigh_table dn_neigh_table; |
| 66 | |
| 67 | /* |
| 68 | * decnet_address is kept in network order. |
| 69 | */ |
Steven Whitehouse | c4ea94a | 2006-03-20 22:42:39 -0800 | [diff] [blame] | 70 | __le16 decnet_address = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | |
stephen hemminger | e5c140a | 2009-11-11 07:40:36 +0000 | [diff] [blame] | 72 | static DEFINE_SPINLOCK(dndev_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | static struct net_device *decnet_default_device; |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 74 | static BLOCKING_NOTIFIER_HEAD(dnaddr_chain); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | |
| 76 | static struct dn_dev *dn_dev_create(struct net_device *dev, int *err); |
| 77 | static void dn_dev_delete(struct net_device *dev); |
Thomas Graf | b020b94 | 2006-11-24 17:14:31 -0800 | [diff] [blame] | 78 | static void dn_ifaddr_notify(int event, struct dn_ifaddr *ifa); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
| 80 | static int dn_eth_up(struct net_device *); |
| 81 | static void dn_eth_down(struct net_device *); |
| 82 | static void dn_send_brd_hello(struct net_device *dev, struct dn_ifaddr *ifa); |
| 83 | static void dn_send_ptp_hello(struct net_device *dev, struct dn_ifaddr *ifa); |
| 84 | |
| 85 | static struct dn_dev_parms dn_dev_list[] = { |
| 86 | { |
| 87 | .type = ARPHRD_ETHER, /* Ethernet */ |
| 88 | .mode = DN_DEV_BCAST, |
| 89 | .state = DN_DEV_S_RU, |
| 90 | .t2 = 1, |
| 91 | .t3 = 10, |
| 92 | .name = "ethernet", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | .up = dn_eth_up, |
| 94 | .down = dn_eth_down, |
| 95 | .timer3 = dn_send_brd_hello, |
| 96 | }, |
| 97 | { |
| 98 | .type = ARPHRD_IPGRE, /* DECnet tunneled over GRE in IP */ |
| 99 | .mode = DN_DEV_BCAST, |
| 100 | .state = DN_DEV_S_RU, |
| 101 | .t2 = 1, |
| 102 | .t3 = 10, |
| 103 | .name = "ipgre", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | .timer3 = dn_send_brd_hello, |
| 105 | }, |
| 106 | #if 0 |
| 107 | { |
| 108 | .type = ARPHRD_X25, /* Bog standard X.25 */ |
| 109 | .mode = DN_DEV_UCAST, |
| 110 | .state = DN_DEV_S_DS, |
| 111 | .t2 = 1, |
| 112 | .t3 = 120, |
| 113 | .name = "x25", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | .timer3 = dn_send_ptp_hello, |
| 115 | }, |
| 116 | #endif |
| 117 | #if 0 |
| 118 | { |
| 119 | .type = ARPHRD_PPP, /* DECnet over PPP */ |
| 120 | .mode = DN_DEV_BCAST, |
| 121 | .state = DN_DEV_S_RU, |
| 122 | .t2 = 1, |
| 123 | .t3 = 10, |
| 124 | .name = "ppp", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | .timer3 = dn_send_brd_hello, |
| 126 | }, |
| 127 | #endif |
| 128 | { |
| 129 | .type = ARPHRD_DDCMP, /* DECnet over DDCMP */ |
| 130 | .mode = DN_DEV_UCAST, |
| 131 | .state = DN_DEV_S_DS, |
| 132 | .t2 = 1, |
| 133 | .t3 = 120, |
| 134 | .name = "ddcmp", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | .timer3 = dn_send_ptp_hello, |
| 136 | }, |
| 137 | { |
| 138 | .type = ARPHRD_LOOPBACK, /* Loopback interface - always last */ |
| 139 | .mode = DN_DEV_BCAST, |
| 140 | .state = DN_DEV_S_RU, |
| 141 | .t2 = 1, |
| 142 | .t3 = 10, |
| 143 | .name = "loopback", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | .timer3 = dn_send_brd_hello, |
| 145 | } |
| 146 | }; |
| 147 | |
Denis Cheng | 8b14a53 | 2007-09-16 16:41:29 -0700 | [diff] [blame] | 148 | #define DN_DEV_LIST_SIZE ARRAY_SIZE(dn_dev_list) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | |
David S. Miller | 8fa0b31 | 2008-10-15 15:59:50 -0700 | [diff] [blame] | 150 | #define DN_DEV_PARMS_OFFSET(x) offsetof(struct dn_dev_parms, x) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | |
| 152 | #ifdef CONFIG_SYSCTL |
| 153 | |
| 154 | static int min_t2[] = { 1 }; |
| 155 | static int max_t2[] = { 60 }; /* No max specified, but this seems sensible */ |
| 156 | static int min_t3[] = { 1 }; |
| 157 | static int max_t3[] = { 8191 }; /* Must fit in 16 bits when multiplied by BCT3MULT or T3MULT */ |
| 158 | |
| 159 | static int min_priority[1]; |
| 160 | static int max_priority[] = { 127 }; /* From DECnet spec */ |
| 161 | |
Joe Perches | fe2c633 | 2013-06-11 23:04:25 -0700 | [diff] [blame] | 162 | static int dn_forwarding_proc(struct ctl_table *, int, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | void __user *, size_t *, loff_t *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | static struct dn_dev_sysctl_table { |
| 165 | struct ctl_table_header *sysctl_header; |
Joe Perches | fe2c633 | 2013-06-11 23:04:25 -0700 | [diff] [blame] | 166 | struct ctl_table dn_dev_vars[5]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | } dn_dev_sysctl = { |
| 168 | NULL, |
| 169 | { |
| 170 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | .procname = "forwarding", |
| 172 | .data = (void *)DN_DEV_PARMS_OFFSET(forwarding), |
| 173 | .maxlen = sizeof(int), |
| 174 | .mode = 0644, |
| 175 | .proc_handler = dn_forwarding_proc, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | }, |
| 177 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | .procname = "priority", |
| 179 | .data = (void *)DN_DEV_PARMS_OFFSET(priority), |
| 180 | .maxlen = sizeof(int), |
| 181 | .mode = 0644, |
| 182 | .proc_handler = proc_dointvec_minmax, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | .extra1 = &min_priority, |
| 184 | .extra2 = &max_priority |
| 185 | }, |
| 186 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | .procname = "t2", |
| 188 | .data = (void *)DN_DEV_PARMS_OFFSET(t2), |
| 189 | .maxlen = sizeof(int), |
| 190 | .mode = 0644, |
| 191 | .proc_handler = proc_dointvec_minmax, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | .extra1 = &min_t2, |
| 193 | .extra2 = &max_t2 |
| 194 | }, |
| 195 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | .procname = "t3", |
| 197 | .data = (void *)DN_DEV_PARMS_OFFSET(t3), |
| 198 | .maxlen = sizeof(int), |
| 199 | .mode = 0644, |
| 200 | .proc_handler = proc_dointvec_minmax, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | .extra1 = &min_t3, |
| 202 | .extra2 = &max_t3 |
| 203 | }, |
Kees Cook | 9d1c0ca | 2016-12-16 16:58:58 -0800 | [diff] [blame] | 204 | { } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | }; |
| 207 | |
| 208 | static void dn_dev_sysctl_register(struct net_device *dev, struct dn_dev_parms *parms) |
| 209 | { |
| 210 | struct dn_dev_sysctl_table *t; |
| 211 | int i; |
| 212 | |
Eric W. Biederman | 9bdcc88 | 2012-04-19 13:40:37 +0000 | [diff] [blame] | 213 | char path[sizeof("net/decnet/conf/") + IFNAMSIZ]; |
Pavel Emelyanov | 3151a9a | 2008-01-09 00:31:49 -0800 | [diff] [blame] | 214 | |
Arnaldo Carvalho de Melo | c66b721 | 2006-11-17 12:29:21 -0200 | [diff] [blame] | 215 | t = kmemdup(&dn_dev_sysctl, sizeof(*t), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | if (t == NULL) |
| 217 | return; |
| 218 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | for(i = 0; i < ARRAY_SIZE(t->dn_dev_vars) - 1; i++) { |
| 220 | long offset = (long)t->dn_dev_vars[i].data; |
| 221 | t->dn_dev_vars[i].data = ((char *)parms) + offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | } |
| 223 | |
Eric W. Biederman | 9bdcc88 | 2012-04-19 13:40:37 +0000 | [diff] [blame] | 224 | snprintf(path, sizeof(path), "net/decnet/conf/%s", |
| 225 | dev? dev->name : parms->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | t->dn_dev_vars[0].extra1 = (void *)dev; |
| 228 | |
Eric W. Biederman | 9bdcc88 | 2012-04-19 13:40:37 +0000 | [diff] [blame] | 229 | t->sysctl_header = register_net_sysctl(&init_net, path, t->dn_dev_vars); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | if (t->sysctl_header == NULL) |
| 231 | kfree(t); |
| 232 | else |
| 233 | parms->sysctl = t; |
| 234 | } |
| 235 | |
| 236 | static void dn_dev_sysctl_unregister(struct dn_dev_parms *parms) |
| 237 | { |
| 238 | if (parms->sysctl) { |
| 239 | struct dn_dev_sysctl_table *t = parms->sysctl; |
| 240 | parms->sysctl = NULL; |
Eric W. Biederman | 5dd3df1 | 2012-04-19 13:24:33 +0000 | [diff] [blame] | 241 | unregister_net_sysctl_table(t->sysctl_header); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | kfree(t); |
| 243 | } |
| 244 | } |
| 245 | |
Joe Perches | fe2c633 | 2013-06-11 23:04:25 -0700 | [diff] [blame] | 246 | static int dn_forwarding_proc(struct ctl_table *table, int write, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | void __user *buffer, |
| 248 | size_t *lenp, loff_t *ppos) |
| 249 | { |
| 250 | #ifdef CONFIG_DECNET_ROUTER |
| 251 | struct net_device *dev = table->extra1; |
| 252 | struct dn_dev *dn_db; |
| 253 | int err; |
| 254 | int tmp, old; |
| 255 | |
| 256 | if (table->extra1 == NULL) |
| 257 | return -EINVAL; |
| 258 | |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 259 | dn_db = rcu_dereference_raw(dev->dn_ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | old = dn_db->parms.forwarding; |
| 261 | |
Alexey Dobriyan | 8d65af7 | 2009-09-23 15:57:19 -0700 | [diff] [blame] | 262 | err = proc_dointvec(table, write, buffer, lenp, ppos); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | |
| 264 | if ((err >= 0) && write) { |
| 265 | if (dn_db->parms.forwarding < 0) |
| 266 | dn_db->parms.forwarding = 0; |
| 267 | if (dn_db->parms.forwarding > 2) |
| 268 | dn_db->parms.forwarding = 2; |
| 269 | /* |
| 270 | * What an ugly hack this is... its works, just. It |
| 271 | * would be nice if sysctl/proc were just that little |
| 272 | * bit more flexible so I don't have to write a special |
| 273 | * routine, or suffer hacks like this - SJW |
| 274 | */ |
| 275 | tmp = dn_db->parms.forwarding; |
| 276 | dn_db->parms.forwarding = old; |
| 277 | if (dn_db->parms.down) |
| 278 | dn_db->parms.down(dev); |
| 279 | dn_db->parms.forwarding = tmp; |
| 280 | if (dn_db->parms.up) |
| 281 | dn_db->parms.up(dev); |
| 282 | } |
| 283 | |
| 284 | return err; |
| 285 | #else |
| 286 | return -EINVAL; |
| 287 | #endif |
| 288 | } |
| 289 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | #else /* CONFIG_SYSCTL */ |
| 291 | static void dn_dev_sysctl_unregister(struct dn_dev_parms *parms) |
| 292 | { |
| 293 | } |
| 294 | static void dn_dev_sysctl_register(struct net_device *dev, struct dn_dev_parms *parms) |
| 295 | { |
| 296 | } |
| 297 | |
| 298 | #endif /* CONFIG_SYSCTL */ |
| 299 | |
| 300 | static inline __u16 mtu2blksize(struct net_device *dev) |
| 301 | { |
| 302 | u32 blksize = dev->mtu; |
| 303 | if (blksize > 0xffff) |
| 304 | blksize = 0xffff; |
| 305 | |
| 306 | if (dev->type == ARPHRD_ETHER || |
| 307 | dev->type == ARPHRD_PPP || |
| 308 | dev->type == ARPHRD_IPGRE || |
| 309 | dev->type == ARPHRD_LOOPBACK) |
| 310 | blksize -= 2; |
| 311 | |
| 312 | return (__u16)blksize; |
| 313 | } |
| 314 | |
| 315 | static struct dn_ifaddr *dn_dev_alloc_ifa(void) |
| 316 | { |
| 317 | struct dn_ifaddr *ifa; |
| 318 | |
Panagiotis Issaris | 0da974f | 2006-07-21 14:51:30 -0700 | [diff] [blame] | 319 | ifa = kzalloc(sizeof(*ifa), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | |
| 321 | return ifa; |
| 322 | } |
| 323 | |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 324 | static void dn_dev_free_ifa(struct dn_ifaddr *ifa) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | { |
Lai Jiangshan | 1e54775 | 2011-03-15 18:10:12 +0800 | [diff] [blame] | 326 | kfree_rcu(ifa, rcu); |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 327 | } |
| 328 | |
| 329 | static void dn_dev_del_ifa(struct dn_dev *dn_db, struct dn_ifaddr __rcu **ifap, int destroy) |
| 330 | { |
| 331 | struct dn_ifaddr *ifa1 = rtnl_dereference(*ifap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | unsigned char mac_addr[6]; |
| 333 | struct net_device *dev = dn_db->dev; |
| 334 | |
| 335 | ASSERT_RTNL(); |
| 336 | |
| 337 | *ifap = ifa1->ifa_next; |
| 338 | |
| 339 | if (dn_db->dev->type == ARPHRD_ETHER) { |
Steven Whitehouse | c4ea94a | 2006-03-20 22:42:39 -0800 | [diff] [blame] | 340 | if (ifa1->ifa_local != dn_eth2dn(dev->dev_addr)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | dn_dn2eth(mac_addr, ifa1->ifa_local); |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 342 | dev_mc_del(dev, mac_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | } |
| 344 | } |
| 345 | |
Thomas Graf | b020b94 | 2006-11-24 17:14:31 -0800 | [diff] [blame] | 346 | dn_ifaddr_notify(RTM_DELADDR, ifa1); |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 347 | blocking_notifier_call_chain(&dnaddr_chain, NETDEV_DOWN, ifa1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | if (destroy) { |
| 349 | dn_dev_free_ifa(ifa1); |
| 350 | |
| 351 | if (dn_db->ifa_list == NULL) |
| 352 | dn_dev_delete(dn_db->dev); |
| 353 | } |
| 354 | } |
| 355 | |
| 356 | static int dn_dev_insert_ifa(struct dn_dev *dn_db, struct dn_ifaddr *ifa) |
| 357 | { |
| 358 | struct net_device *dev = dn_db->dev; |
| 359 | struct dn_ifaddr *ifa1; |
| 360 | unsigned char mac_addr[6]; |
| 361 | |
| 362 | ASSERT_RTNL(); |
| 363 | |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 364 | /* Check for duplicates */ |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 365 | for (ifa1 = rtnl_dereference(dn_db->ifa_list); |
| 366 | ifa1 != NULL; |
| 367 | ifa1 = rtnl_dereference(ifa1->ifa_next)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | if (ifa1->ifa_local == ifa->ifa_local) |
| 369 | return -EEXIST; |
| 370 | } |
| 371 | |
| 372 | if (dev->type == ARPHRD_ETHER) { |
Steven Whitehouse | c4ea94a | 2006-03-20 22:42:39 -0800 | [diff] [blame] | 373 | if (ifa->ifa_local != dn_eth2dn(dev->dev_addr)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | dn_dn2eth(mac_addr, ifa->ifa_local); |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 375 | dev_mc_add(dev, mac_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | } |
| 377 | } |
| 378 | |
| 379 | ifa->ifa_next = dn_db->ifa_list; |
Eric Dumazet | cf778b0 | 2012-01-12 04:41:32 +0000 | [diff] [blame] | 380 | rcu_assign_pointer(dn_db->ifa_list, ifa); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | |
Thomas Graf | b020b94 | 2006-11-24 17:14:31 -0800 | [diff] [blame] | 382 | dn_ifaddr_notify(RTM_NEWADDR, ifa); |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 383 | blocking_notifier_call_chain(&dnaddr_chain, NETDEV_UP, ifa); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | |
| 385 | return 0; |
| 386 | } |
| 387 | |
| 388 | static int dn_dev_set_ifa(struct net_device *dev, struct dn_ifaddr *ifa) |
| 389 | { |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 390 | struct dn_dev *dn_db = rtnl_dereference(dev->dn_ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | int rv; |
| 392 | |
| 393 | if (dn_db == NULL) { |
| 394 | int err; |
| 395 | dn_db = dn_dev_create(dev, &err); |
| 396 | if (dn_db == NULL) |
| 397 | return err; |
| 398 | } |
| 399 | |
| 400 | ifa->ifa_dev = dn_db; |
| 401 | |
| 402 | if (dev->flags & IFF_LOOPBACK) |
| 403 | ifa->ifa_scope = RT_SCOPE_HOST; |
| 404 | |
| 405 | rv = dn_dev_insert_ifa(dn_db, ifa); |
| 406 | if (rv) |
| 407 | dn_dev_free_ifa(ifa); |
| 408 | return rv; |
| 409 | } |
| 410 | |
| 411 | |
| 412 | int dn_dev_ioctl(unsigned int cmd, void __user *arg) |
| 413 | { |
| 414 | char buffer[DN_IFREQ_SIZE]; |
| 415 | struct ifreq *ifr = (struct ifreq *)buffer; |
| 416 | struct sockaddr_dn *sdn = (struct sockaddr_dn *)&ifr->ifr_addr; |
| 417 | struct dn_dev *dn_db; |
| 418 | struct net_device *dev; |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 419 | struct dn_ifaddr *ifa = NULL; |
| 420 | struct dn_ifaddr __rcu **ifap = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | int ret = 0; |
| 422 | |
| 423 | if (copy_from_user(ifr, arg, DN_IFREQ_SIZE)) |
| 424 | return -EFAULT; |
| 425 | ifr->ifr_name[IFNAMSIZ-1] = 0; |
| 426 | |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 427 | dev_load(&init_net, ifr->ifr_name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | |
Joe Perches | 06f8fe1 | 2011-07-01 09:43:03 +0000 | [diff] [blame] | 429 | switch (cmd) { |
| 430 | case SIOCGIFADDR: |
| 431 | break; |
| 432 | case SIOCSIFADDR: |
| 433 | if (!capable(CAP_NET_ADMIN)) |
| 434 | return -EACCES; |
| 435 | if (sdn->sdn_family != AF_DECnet) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | return -EINVAL; |
Joe Perches | 06f8fe1 | 2011-07-01 09:43:03 +0000 | [diff] [blame] | 437 | break; |
| 438 | default: |
| 439 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | } |
| 441 | |
| 442 | rtnl_lock(); |
| 443 | |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 444 | if ((dev = __dev_get_by_name(&init_net, ifr->ifr_name)) == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | ret = -ENODEV; |
| 446 | goto done; |
| 447 | } |
| 448 | |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 449 | if ((dn_db = rtnl_dereference(dev->dn_ptr)) != NULL) { |
| 450 | for (ifap = &dn_db->ifa_list; |
| 451 | (ifa = rtnl_dereference(*ifap)) != NULL; |
| 452 | ifap = &ifa->ifa_next) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | if (strcmp(ifr->ifr_name, ifa->ifa_label) == 0) |
| 454 | break; |
| 455 | } |
| 456 | |
| 457 | if (ifa == NULL && cmd != SIOCSIFADDR) { |
| 458 | ret = -EADDRNOTAVAIL; |
| 459 | goto done; |
| 460 | } |
| 461 | |
Joe Perches | 06f8fe1 | 2011-07-01 09:43:03 +0000 | [diff] [blame] | 462 | switch (cmd) { |
| 463 | case SIOCGIFADDR: |
| 464 | *((__le16 *)sdn->sdn_nodeaddr) = ifa->ifa_local; |
| 465 | goto rarok; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | |
Joe Perches | 06f8fe1 | 2011-07-01 09:43:03 +0000 | [diff] [blame] | 467 | case SIOCSIFADDR: |
| 468 | if (!ifa) { |
| 469 | if ((ifa = dn_dev_alloc_ifa()) == NULL) { |
| 470 | ret = -ENOBUFS; |
| 471 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | } |
Joe Perches | 06f8fe1 | 2011-07-01 09:43:03 +0000 | [diff] [blame] | 473 | memcpy(ifa->ifa_label, dev->name, IFNAMSIZ); |
| 474 | } else { |
| 475 | if (ifa->ifa_local == dn_saddr2dn(sdn)) |
| 476 | break; |
| 477 | dn_dev_del_ifa(dn_db, ifap, 0); |
| 478 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | |
Joe Perches | 06f8fe1 | 2011-07-01 09:43:03 +0000 | [diff] [blame] | 480 | ifa->ifa_local = ifa->ifa_address = dn_saddr2dn(sdn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | |
Joe Perches | 06f8fe1 | 2011-07-01 09:43:03 +0000 | [diff] [blame] | 482 | ret = dn_dev_set_ifa(dev, ifa); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | } |
| 484 | done: |
| 485 | rtnl_unlock(); |
| 486 | |
| 487 | return ret; |
| 488 | rarok: |
| 489 | if (copy_to_user(arg, ifr, DN_IFREQ_SIZE)) |
| 490 | ret = -EFAULT; |
| 491 | goto done; |
| 492 | } |
| 493 | |
| 494 | struct net_device *dn_dev_get_default(void) |
| 495 | { |
| 496 | struct net_device *dev; |
stephen hemminger | e5c140a | 2009-11-11 07:40:36 +0000 | [diff] [blame] | 497 | |
| 498 | spin_lock(&dndev_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | dev = decnet_default_device; |
| 500 | if (dev) { |
| 501 | if (dev->dn_ptr) |
| 502 | dev_hold(dev); |
| 503 | else |
| 504 | dev = NULL; |
| 505 | } |
stephen hemminger | e5c140a | 2009-11-11 07:40:36 +0000 | [diff] [blame] | 506 | spin_unlock(&dndev_lock); |
| 507 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | return dev; |
| 509 | } |
| 510 | |
| 511 | int dn_dev_set_default(struct net_device *dev, int force) |
| 512 | { |
| 513 | struct net_device *old = NULL; |
| 514 | int rv = -EBUSY; |
| 515 | if (!dev->dn_ptr) |
| 516 | return -ENODEV; |
stephen hemminger | e5c140a | 2009-11-11 07:40:36 +0000 | [diff] [blame] | 517 | |
| 518 | spin_lock(&dndev_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | if (force || decnet_default_device == NULL) { |
| 520 | old = decnet_default_device; |
| 521 | decnet_default_device = dev; |
| 522 | rv = 0; |
| 523 | } |
stephen hemminger | e5c140a | 2009-11-11 07:40:36 +0000 | [diff] [blame] | 524 | spin_unlock(&dndev_lock); |
| 525 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | if (old) |
Patrick Caulfield | 6a57b2e | 2006-03-29 13:57:31 -0800 | [diff] [blame] | 527 | dev_put(old); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | return rv; |
| 529 | } |
| 530 | |
| 531 | static void dn_dev_check_default(struct net_device *dev) |
| 532 | { |
stephen hemminger | e5c140a | 2009-11-11 07:40:36 +0000 | [diff] [blame] | 533 | spin_lock(&dndev_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | if (dev == decnet_default_device) { |
| 535 | decnet_default_device = NULL; |
| 536 | } else { |
| 537 | dev = NULL; |
| 538 | } |
stephen hemminger | e5c140a | 2009-11-11 07:40:36 +0000 | [diff] [blame] | 539 | spin_unlock(&dndev_lock); |
| 540 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | if (dev) |
| 542 | dev_put(dev); |
| 543 | } |
| 544 | |
Eric Dumazet | b4d745d | 2009-11-04 10:59:38 -0800 | [diff] [blame] | 545 | /* |
| 546 | * Called with RTNL |
| 547 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | static struct dn_dev *dn_dev_by_index(int ifindex) |
| 549 | { |
| 550 | struct net_device *dev; |
| 551 | struct dn_dev *dn_dev = NULL; |
Eric Dumazet | b4d745d | 2009-11-04 10:59:38 -0800 | [diff] [blame] | 552 | |
| 553 | dev = __dev_get_by_index(&init_net, ifindex); |
| 554 | if (dev) |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 555 | dn_dev = rtnl_dereference(dev->dn_ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | |
| 557 | return dn_dev; |
| 558 | } |
| 559 | |
Patrick McHardy | ef7c79e | 2007-06-05 12:38:30 -0700 | [diff] [blame] | 560 | static const struct nla_policy dn_ifa_policy[IFA_MAX+1] = { |
Thomas Graf | 4a89c25 | 2006-11-24 17:14:51 -0800 | [diff] [blame] | 561 | [IFA_ADDRESS] = { .type = NLA_U16 }, |
| 562 | [IFA_LOCAL] = { .type = NLA_U16 }, |
| 563 | [IFA_LABEL] = { .type = NLA_STRING, |
| 564 | .len = IFNAMSIZ - 1 }, |
Jiri Pirko | 9a32b86 | 2013-12-08 12:16:09 +0100 | [diff] [blame] | 565 | [IFA_FLAGS] = { .type = NLA_U32 }, |
Thomas Graf | 4a89c25 | 2006-11-24 17:14:51 -0800 | [diff] [blame] | 566 | }; |
| 567 | |
David Ahern | c21ef3e | 2017-04-16 09:48:24 -0700 | [diff] [blame] | 568 | static int dn_nl_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh, |
| 569 | struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 571 | struct net *net = sock_net(skb->sk); |
Thomas Graf | 4a89c25 | 2006-11-24 17:14:51 -0800 | [diff] [blame] | 572 | struct nlattr *tb[IFA_MAX+1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | struct dn_dev *dn_db; |
Thomas Graf | 4a89c25 | 2006-11-24 17:14:51 -0800 | [diff] [blame] | 574 | struct ifaddrmsg *ifm; |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 575 | struct dn_ifaddr *ifa; |
| 576 | struct dn_ifaddr __rcu **ifap; |
Denis V. Lunev | b854272 | 2007-12-01 00:21:31 +1100 | [diff] [blame] | 577 | int err = -EINVAL; |
| 578 | |
Eric W. Biederman | 90f62cf | 2014-04-23 14:29:27 -0700 | [diff] [blame] | 579 | if (!netlink_capable(skb, CAP_NET_ADMIN)) |
Eric W. Biederman | dfc47ef | 2012-11-16 03:03:00 +0000 | [diff] [blame] | 580 | return -EPERM; |
| 581 | |
Octavian Purdila | 09ad9bc | 2009-11-25 15:14:13 -0800 | [diff] [blame] | 582 | if (!net_eq(net, &init_net)) |
Denis V. Lunev | b854272 | 2007-12-01 00:21:31 +1100 | [diff] [blame] | 583 | goto errout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | |
David Ahern | c21ef3e | 2017-04-16 09:48:24 -0700 | [diff] [blame] | 585 | err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, dn_ifa_policy, |
| 586 | extack); |
Thomas Graf | 4a89c25 | 2006-11-24 17:14:51 -0800 | [diff] [blame] | 587 | if (err < 0) |
| 588 | goto errout; |
| 589 | |
Pavel Emelyanov | 3ccd862 | 2007-11-30 23:43:31 +1100 | [diff] [blame] | 590 | err = -ENODEV; |
Thomas Graf | 4a89c25 | 2006-11-24 17:14:51 -0800 | [diff] [blame] | 591 | ifm = nlmsg_data(nlh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | if ((dn_db = dn_dev_by_index(ifm->ifa_index)) == NULL) |
Thomas Graf | 4a89c25 | 2006-11-24 17:14:51 -0800 | [diff] [blame] | 593 | goto errout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | |
Pavel Emelyanov | 3ccd862 | 2007-11-30 23:43:31 +1100 | [diff] [blame] | 595 | err = -EADDRNOTAVAIL; |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 596 | for (ifap = &dn_db->ifa_list; |
| 597 | (ifa = rtnl_dereference(*ifap)) != NULL; |
| 598 | ifap = &ifa->ifa_next) { |
Thomas Graf | 4a89c25 | 2006-11-24 17:14:51 -0800 | [diff] [blame] | 599 | if (tb[IFA_LOCAL] && |
| 600 | nla_memcmp(tb[IFA_LOCAL], &ifa->ifa_local, 2)) |
| 601 | continue; |
| 602 | |
| 603 | if (tb[IFA_LABEL] && nla_strcmp(tb[IFA_LABEL], ifa->ifa_label)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | continue; |
| 605 | |
| 606 | dn_dev_del_ifa(dn_db, ifap, 1); |
| 607 | return 0; |
| 608 | } |
| 609 | |
Thomas Graf | 4a89c25 | 2006-11-24 17:14:51 -0800 | [diff] [blame] | 610 | errout: |
| 611 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | } |
| 613 | |
David Ahern | c21ef3e | 2017-04-16 09:48:24 -0700 | [diff] [blame] | 614 | static int dn_nl_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh, |
| 615 | struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 617 | struct net *net = sock_net(skb->sk); |
Thomas Graf | 4a89c25 | 2006-11-24 17:14:51 -0800 | [diff] [blame] | 618 | struct nlattr *tb[IFA_MAX+1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | struct net_device *dev; |
| 620 | struct dn_dev *dn_db; |
Thomas Graf | 4a89c25 | 2006-11-24 17:14:51 -0800 | [diff] [blame] | 621 | struct ifaddrmsg *ifm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | struct dn_ifaddr *ifa; |
Thomas Graf | 4a89c25 | 2006-11-24 17:14:51 -0800 | [diff] [blame] | 623 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | |
Eric W. Biederman | 90f62cf | 2014-04-23 14:29:27 -0700 | [diff] [blame] | 625 | if (!netlink_capable(skb, CAP_NET_ADMIN)) |
Eric W. Biederman | dfc47ef | 2012-11-16 03:03:00 +0000 | [diff] [blame] | 626 | return -EPERM; |
| 627 | |
Octavian Purdila | 09ad9bc | 2009-11-25 15:14:13 -0800 | [diff] [blame] | 628 | if (!net_eq(net, &init_net)) |
Denis V. Lunev | b854272 | 2007-12-01 00:21:31 +1100 | [diff] [blame] | 629 | return -EINVAL; |
| 630 | |
David Ahern | c21ef3e | 2017-04-16 09:48:24 -0700 | [diff] [blame] | 631 | err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, dn_ifa_policy, |
| 632 | extack); |
Thomas Graf | 4a89c25 | 2006-11-24 17:14:51 -0800 | [diff] [blame] | 633 | if (err < 0) |
| 634 | return err; |
| 635 | |
| 636 | if (tb[IFA_LOCAL] == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | return -EINVAL; |
| 638 | |
Thomas Graf | 4a89c25 | 2006-11-24 17:14:51 -0800 | [diff] [blame] | 639 | ifm = nlmsg_data(nlh); |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 640 | if ((dev = __dev_get_by_index(&init_net, ifm->ifa_index)) == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | return -ENODEV; |
| 642 | |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 643 | if ((dn_db = rtnl_dereference(dev->dn_ptr)) == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | dn_db = dn_dev_create(dev, &err); |
| 645 | if (!dn_db) |
| 646 | return err; |
| 647 | } |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 648 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | if ((ifa = dn_dev_alloc_ifa()) == NULL) |
| 650 | return -ENOBUFS; |
| 651 | |
Thomas Graf | 4a89c25 | 2006-11-24 17:14:51 -0800 | [diff] [blame] | 652 | if (tb[IFA_ADDRESS] == NULL) |
| 653 | tb[IFA_ADDRESS] = tb[IFA_LOCAL]; |
| 654 | |
| 655 | ifa->ifa_local = nla_get_le16(tb[IFA_LOCAL]); |
| 656 | ifa->ifa_address = nla_get_le16(tb[IFA_ADDRESS]); |
Jiri Pirko | 9a32b86 | 2013-12-08 12:16:09 +0100 | [diff] [blame] | 657 | ifa->ifa_flags = tb[IFA_FLAGS] ? nla_get_u32(tb[IFA_FLAGS]) : |
| 658 | ifm->ifa_flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | ifa->ifa_scope = ifm->ifa_scope; |
| 660 | ifa->ifa_dev = dn_db; |
Thomas Graf | 4a89c25 | 2006-11-24 17:14:51 -0800 | [diff] [blame] | 661 | |
| 662 | if (tb[IFA_LABEL]) |
| 663 | nla_strlcpy(ifa->ifa_label, tb[IFA_LABEL], IFNAMSIZ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | else |
| 665 | memcpy(ifa->ifa_label, dev->name, IFNAMSIZ); |
| 666 | |
Thomas Graf | 4a89c25 | 2006-11-24 17:14:51 -0800 | [diff] [blame] | 667 | err = dn_dev_insert_ifa(dn_db, ifa); |
| 668 | if (err) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | dn_dev_free_ifa(ifa); |
Thomas Graf | 4a89c25 | 2006-11-24 17:14:51 -0800 | [diff] [blame] | 670 | |
| 671 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | } |
| 673 | |
Thomas Graf | a6f01ca | 2006-11-24 17:14:07 -0800 | [diff] [blame] | 674 | static inline size_t dn_ifaddr_nlmsg_size(void) |
| 675 | { |
| 676 | return NLMSG_ALIGN(sizeof(struct ifaddrmsg)) |
| 677 | + nla_total_size(IFNAMSIZ) /* IFA_LABEL */ |
| 678 | + nla_total_size(2) /* IFA_ADDRESS */ |
Jiri Pirko | 9a32b86 | 2013-12-08 12:16:09 +0100 | [diff] [blame] | 679 | + nla_total_size(2) /* IFA_LOCAL */ |
| 680 | + nla_total_size(4); /* IFA_FLAGS */ |
Thomas Graf | a6f01ca | 2006-11-24 17:14:07 -0800 | [diff] [blame] | 681 | } |
| 682 | |
Thomas Graf | 4a89c25 | 2006-11-24 17:14:51 -0800 | [diff] [blame] | 683 | static int dn_nl_fill_ifaddr(struct sk_buff *skb, struct dn_ifaddr *ifa, |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 684 | u32 portid, u32 seq, int event, unsigned int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | { |
| 686 | struct ifaddrmsg *ifm; |
| 687 | struct nlmsghdr *nlh; |
Jiri Pirko | 9a32b86 | 2013-12-08 12:16:09 +0100 | [diff] [blame] | 688 | u32 ifa_flags = ifa->ifa_flags | IFA_F_PERMANENT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 690 | nlh = nlmsg_put(skb, portid, seq, event, sizeof(*ifm), flags); |
Thomas Graf | 4a89c25 | 2006-11-24 17:14:51 -0800 | [diff] [blame] | 691 | if (nlh == NULL) |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 692 | return -EMSGSIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | |
Thomas Graf | 4a89c25 | 2006-11-24 17:14:51 -0800 | [diff] [blame] | 694 | ifm = nlmsg_data(nlh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | ifm->ifa_family = AF_DECnet; |
| 696 | ifm->ifa_prefixlen = 16; |
Jiri Pirko | 9a32b86 | 2013-12-08 12:16:09 +0100 | [diff] [blame] | 697 | ifm->ifa_flags = ifa_flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | ifm->ifa_scope = ifa->ifa_scope; |
| 699 | ifm->ifa_index = ifa->ifa_dev->dev->ifindex; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | |
David S. Miller | b21dddb | 2012-04-01 20:15:14 -0400 | [diff] [blame] | 701 | if ((ifa->ifa_address && |
| 702 | nla_put_le16(skb, IFA_ADDRESS, ifa->ifa_address)) || |
| 703 | (ifa->ifa_local && |
| 704 | nla_put_le16(skb, IFA_LOCAL, ifa->ifa_local)) || |
| 705 | (ifa->ifa_label[0] && |
Jiri Pirko | 9a32b86 | 2013-12-08 12:16:09 +0100 | [diff] [blame] | 706 | nla_put_string(skb, IFA_LABEL, ifa->ifa_label)) || |
| 707 | nla_put_u32(skb, IFA_FLAGS, ifa_flags)) |
David S. Miller | b21dddb | 2012-04-01 20:15:14 -0400 | [diff] [blame] | 708 | goto nla_put_failure; |
Johannes Berg | 053c095 | 2015-01-16 22:09:00 +0100 | [diff] [blame] | 709 | nlmsg_end(skb, nlh); |
| 710 | return 0; |
Thomas Graf | 4a89c25 | 2006-11-24 17:14:51 -0800 | [diff] [blame] | 711 | |
| 712 | nla_put_failure: |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 713 | nlmsg_cancel(skb, nlh); |
| 714 | return -EMSGSIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | } |
| 716 | |
Thomas Graf | b020b94 | 2006-11-24 17:14:31 -0800 | [diff] [blame] | 717 | static void dn_ifaddr_notify(int event, struct dn_ifaddr *ifa) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 718 | { |
| 719 | struct sk_buff *skb; |
Thomas Graf | dc738dd | 2006-08-15 00:33:35 -0700 | [diff] [blame] | 720 | int err = -ENOBUFS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | |
Thomas Graf | a6f01ca | 2006-11-24 17:14:07 -0800 | [diff] [blame] | 722 | skb = alloc_skb(dn_ifaddr_nlmsg_size(), GFP_KERNEL); |
Thomas Graf | dc738dd | 2006-08-15 00:33:35 -0700 | [diff] [blame] | 723 | if (skb == NULL) |
| 724 | goto errout; |
| 725 | |
Thomas Graf | 4a89c25 | 2006-11-24 17:14:51 -0800 | [diff] [blame] | 726 | err = dn_nl_fill_ifaddr(skb, ifa, 0, 0, event, 0); |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 727 | if (err < 0) { |
| 728 | /* -EMSGSIZE implies BUG in dn_ifaddr_nlmsg_size() */ |
| 729 | WARN_ON(err == -EMSGSIZE); |
| 730 | kfree_skb(skb); |
| 731 | goto errout; |
| 732 | } |
Pablo Neira Ayuso | 1ce85fe | 2009-02-24 23:18:28 -0800 | [diff] [blame] | 733 | rtnl_notify(skb, &init_net, 0, RTNLGRP_DECnet_IFADDR, NULL, GFP_KERNEL); |
| 734 | return; |
Thomas Graf | dc738dd | 2006-08-15 00:33:35 -0700 | [diff] [blame] | 735 | errout: |
| 736 | if (err < 0) |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 737 | rtnl_set_sk_err(&init_net, RTNLGRP_DECnet_IFADDR, err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 738 | } |
| 739 | |
Thomas Graf | 4a89c25 | 2006-11-24 17:14:51 -0800 | [diff] [blame] | 740 | static int dn_nl_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 742 | struct net *net = sock_net(skb->sk); |
Thomas Graf | 4a89c25 | 2006-11-24 17:14:51 -0800 | [diff] [blame] | 743 | int idx, dn_idx = 0, skip_ndevs, skip_naddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 744 | struct net_device *dev; |
| 745 | struct dn_dev *dn_db; |
| 746 | struct dn_ifaddr *ifa; |
| 747 | |
Octavian Purdila | 09ad9bc | 2009-11-25 15:14:13 -0800 | [diff] [blame] | 748 | if (!net_eq(net, &init_net)) |
Denis V. Lunev | b854272 | 2007-12-01 00:21:31 +1100 | [diff] [blame] | 749 | return 0; |
| 750 | |
Thomas Graf | 4a89c25 | 2006-11-24 17:14:51 -0800 | [diff] [blame] | 751 | skip_ndevs = cb->args[0]; |
| 752 | skip_naddr = cb->args[1]; |
| 753 | |
Pavel Emelianov | 7562f87 | 2007-05-03 15:13:45 -0700 | [diff] [blame] | 754 | idx = 0; |
Eric Dumazet | e67f88d | 2011-04-27 22:56:07 +0000 | [diff] [blame] | 755 | rcu_read_lock(); |
| 756 | for_each_netdev_rcu(&init_net, dev) { |
Thomas Graf | 4a89c25 | 2006-11-24 17:14:51 -0800 | [diff] [blame] | 757 | if (idx < skip_ndevs) |
Pavel Emelianov | 7562f87 | 2007-05-03 15:13:45 -0700 | [diff] [blame] | 758 | goto cont; |
Thomas Graf | 4a89c25 | 2006-11-24 17:14:51 -0800 | [diff] [blame] | 759 | else if (idx > skip_ndevs) { |
| 760 | /* Only skip over addresses for first dev dumped |
| 761 | * in this iteration (idx == skip_ndevs) */ |
| 762 | skip_naddr = 0; |
| 763 | } |
| 764 | |
Eric Dumazet | e67f88d | 2011-04-27 22:56:07 +0000 | [diff] [blame] | 765 | if ((dn_db = rcu_dereference(dev->dn_ptr)) == NULL) |
Pavel Emelianov | 7562f87 | 2007-05-03 15:13:45 -0700 | [diff] [blame] | 766 | goto cont; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | |
Eric Dumazet | e67f88d | 2011-04-27 22:56:07 +0000 | [diff] [blame] | 768 | for (ifa = rcu_dereference(dn_db->ifa_list), dn_idx = 0; ifa; |
| 769 | ifa = rcu_dereference(ifa->ifa_next), dn_idx++) { |
Thomas Graf | 4a89c25 | 2006-11-24 17:14:51 -0800 | [diff] [blame] | 770 | if (dn_idx < skip_naddr) |
Patrick McHardy | a2221f3 | 2007-09-11 10:45:15 +0200 | [diff] [blame] | 771 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 773 | if (dn_nl_fill_ifaddr(skb, ifa, NETLINK_CB(cb->skb).portid, |
Thomas Graf | 4a89c25 | 2006-11-24 17:14:51 -0800 | [diff] [blame] | 774 | cb->nlh->nlmsg_seq, RTM_NEWADDR, |
| 775 | NLM_F_MULTI) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | goto done; |
| 777 | } |
Pavel Emelianov | 7562f87 | 2007-05-03 15:13:45 -0700 | [diff] [blame] | 778 | cont: |
| 779 | idx++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | } |
| 781 | done: |
Eric Dumazet | e67f88d | 2011-04-27 22:56:07 +0000 | [diff] [blame] | 782 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 783 | cb->args[0] = idx; |
| 784 | cb->args[1] = dn_idx; |
| 785 | |
| 786 | return skb->len; |
| 787 | } |
| 788 | |
Steven Whitehouse | c4ea94a | 2006-03-20 22:42:39 -0800 | [diff] [blame] | 789 | static int dn_dev_get_first(struct net_device *dev, __le16 *addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | { |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 791 | struct dn_dev *dn_db; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | struct dn_ifaddr *ifa; |
| 793 | int rv = -ENODEV; |
stephen hemminger | 41bdecf | 2009-11-11 07:39:27 +0000 | [diff] [blame] | 794 | |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 795 | rcu_read_lock(); |
| 796 | dn_db = rcu_dereference(dev->dn_ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | if (dn_db == NULL) |
| 798 | goto out; |
stephen hemminger | 41bdecf | 2009-11-11 07:39:27 +0000 | [diff] [blame] | 799 | |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 800 | ifa = rcu_dereference(dn_db->ifa_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | if (ifa != NULL) { |
| 802 | *addr = ifa->ifa_local; |
| 803 | rv = 0; |
| 804 | } |
| 805 | out: |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 806 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 807 | return rv; |
| 808 | } |
| 809 | |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 810 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | * Find a default address to bind to. |
| 812 | * |
| 813 | * This is one of those areas where the initial VMS concepts don't really |
| 814 | * map onto the Linux concepts, and since we introduced multiple addresses |
| 815 | * per interface we have to cope with slightly odd ways of finding out what |
| 816 | * "our address" really is. Mostly it's not a problem; for this we just guess |
| 817 | * a sensible default. Eventually the routing code will take care of all the |
| 818 | * nasties for us I hope. |
| 819 | */ |
Steven Whitehouse | c4ea94a | 2006-03-20 22:42:39 -0800 | [diff] [blame] | 820 | int dn_dev_bind_default(__le16 *addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | { |
| 822 | struct net_device *dev; |
| 823 | int rv; |
| 824 | dev = dn_dev_get_default(); |
| 825 | last_chance: |
| 826 | if (dev) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 827 | rv = dn_dev_get_first(dev, addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | dev_put(dev); |
Eric W. Biederman | 2774c7a | 2007-09-26 22:10:56 -0700 | [diff] [blame] | 829 | if (rv == 0 || dev == init_net.loopback_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | return rv; |
| 831 | } |
Eric W. Biederman | 2774c7a | 2007-09-26 22:10:56 -0700 | [diff] [blame] | 832 | dev = init_net.loopback_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 833 | dev_hold(dev); |
| 834 | goto last_chance; |
| 835 | } |
| 836 | |
| 837 | static void dn_send_endnode_hello(struct net_device *dev, struct dn_ifaddr *ifa) |
| 838 | { |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 839 | struct endnode_hello_message *msg; |
| 840 | struct sk_buff *skb = NULL; |
| 841 | __le16 *pktlen; |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 842 | struct dn_dev *dn_db = rcu_dereference_raw(dev->dn_ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 843 | |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 844 | if ((skb = dn_alloc_skb(NULL, sizeof(*msg), GFP_ATOMIC)) == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | return; |
| 846 | |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 847 | skb->dev = dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 848 | |
Johannes Berg | 4df864c | 2017-06-16 14:29:21 +0200 | [diff] [blame] | 849 | msg = skb_put(skb, sizeof(*msg)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 850 | |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 851 | msg->msgflg = 0x0D; |
| 852 | memcpy(msg->tiver, dn_eco_version, 3); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | dn_dn2eth(msg->id, ifa->ifa_local); |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 854 | msg->iinfo = DN_RT_INFO_ENDN; |
Harvey Harrison | c4106aa | 2008-11-27 00:12:47 -0800 | [diff] [blame] | 855 | msg->blksize = cpu_to_le16(mtu2blksize(dev)); |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 856 | msg->area = 0x00; |
| 857 | memset(msg->seed, 0, 8); |
| 858 | memcpy(msg->neighbor, dn_hiord, ETH_ALEN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | |
| 860 | if (dn_db->router) { |
| 861 | struct dn_neigh *dn = (struct dn_neigh *)dn_db->router; |
| 862 | dn_dn2eth(msg->neighbor, dn->addr); |
| 863 | } |
| 864 | |
Harvey Harrison | c4106aa | 2008-11-27 00:12:47 -0800 | [diff] [blame] | 865 | msg->timer = cpu_to_le16((unsigned short)dn_db->parms.t3); |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 866 | msg->mpd = 0x00; |
| 867 | msg->datalen = 0x02; |
| 868 | memset(msg->data, 0xAA, 2); |
| 869 | |
Johannes Berg | d58ff35 | 2017-06-16 14:29:23 +0200 | [diff] [blame] | 870 | pktlen = skb_push(skb, 2); |
Harvey Harrison | c4106aa | 2008-11-27 00:12:47 -0800 | [diff] [blame] | 871 | *pktlen = cpu_to_le16(skb->len - 2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 872 | |
Arnaldo Carvalho de Melo | c1d2bbe | 2007-04-10 20:45:18 -0700 | [diff] [blame] | 873 | skb_reset_network_header(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | |
| 875 | dn_rt_finish_output(skb, dn_rt_all_rt_mcast, msg->id); |
| 876 | } |
| 877 | |
| 878 | |
| 879 | #define DRDELAY (5 * HZ) |
| 880 | |
| 881 | static int dn_am_i_a_router(struct dn_neigh *dn, struct dn_dev *dn_db, struct dn_ifaddr *ifa) |
| 882 | { |
| 883 | /* First check time since device went up */ |
Himangi Saraogi | b5c5c36 | 2014-08-20 23:13:07 +0530 | [diff] [blame] | 884 | if (time_before(jiffies, dn_db->uptime + DRDELAY)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | return 0; |
| 886 | |
| 887 | /* If there is no router, then yes... */ |
| 888 | if (!dn_db->router) |
| 889 | return 1; |
| 890 | |
| 891 | /* otherwise only if we have a higher priority or.. */ |
| 892 | if (dn->priority < dn_db->parms.priority) |
| 893 | return 1; |
| 894 | |
| 895 | /* if we have equal priority and a higher node number */ |
| 896 | if (dn->priority != dn_db->parms.priority) |
| 897 | return 0; |
| 898 | |
Harvey Harrison | c4106aa | 2008-11-27 00:12:47 -0800 | [diff] [blame] | 899 | if (le16_to_cpu(dn->addr) < le16_to_cpu(ifa->ifa_local)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 900 | return 1; |
| 901 | |
| 902 | return 0; |
| 903 | } |
| 904 | |
| 905 | static void dn_send_router_hello(struct net_device *dev, struct dn_ifaddr *ifa) |
| 906 | { |
| 907 | int n; |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 908 | struct dn_dev *dn_db = rcu_dereference_raw(dev->dn_ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 909 | struct dn_neigh *dn = (struct dn_neigh *)dn_db->router; |
| 910 | struct sk_buff *skb; |
| 911 | size_t size; |
| 912 | unsigned char *ptr; |
| 913 | unsigned char *i1, *i2; |
Steven Whitehouse | c4ea94a | 2006-03-20 22:42:39 -0800 | [diff] [blame] | 914 | __le16 *pktlen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 915 | char *src; |
| 916 | |
| 917 | if (mtu2blksize(dev) < (26 + 7)) |
| 918 | return; |
| 919 | |
| 920 | n = mtu2blksize(dev) - 26; |
| 921 | n /= 7; |
| 922 | |
| 923 | if (n > 32) |
| 924 | n = 32; |
| 925 | |
| 926 | size = 2 + 26 + 7 * n; |
| 927 | |
| 928 | if ((skb = dn_alloc_skb(NULL, size, GFP_ATOMIC)) == NULL) |
| 929 | return; |
| 930 | |
| 931 | skb->dev = dev; |
| 932 | ptr = skb_put(skb, size); |
| 933 | |
| 934 | *ptr++ = DN_RT_PKT_CNTL | DN_RT_PKT_ERTH; |
| 935 | *ptr++ = 2; /* ECO */ |
| 936 | *ptr++ = 0; |
| 937 | *ptr++ = 0; |
| 938 | dn_dn2eth(ptr, ifa->ifa_local); |
| 939 | src = ptr; |
| 940 | ptr += ETH_ALEN; |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 941 | *ptr++ = dn_db->parms.forwarding == 1 ? |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | DN_RT_INFO_L1RT : DN_RT_INFO_L2RT; |
Harvey Harrison | c4106aa | 2008-11-27 00:12:47 -0800 | [diff] [blame] | 943 | *((__le16 *)ptr) = cpu_to_le16(mtu2blksize(dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 944 | ptr += 2; |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 945 | *ptr++ = dn_db->parms.priority; /* Priority */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 946 | *ptr++ = 0; /* Area: Reserved */ |
Harvey Harrison | c4106aa | 2008-11-27 00:12:47 -0800 | [diff] [blame] | 947 | *((__le16 *)ptr) = cpu_to_le16((unsigned short)dn_db->parms.t3); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 948 | ptr += 2; |
| 949 | *ptr++ = 0; /* MPD: Reserved */ |
| 950 | i1 = ptr++; |
| 951 | memset(ptr, 0, 7); /* Name: Reserved */ |
| 952 | ptr += 7; |
| 953 | i2 = ptr++; |
| 954 | |
| 955 | n = dn_neigh_elist(dev, ptr, n); |
| 956 | |
| 957 | *i2 = 7 * n; |
| 958 | *i1 = 8 + *i2; |
| 959 | |
| 960 | skb_trim(skb, (27 + *i2)); |
| 961 | |
Johannes Berg | d58ff35 | 2017-06-16 14:29:23 +0200 | [diff] [blame] | 962 | pktlen = skb_push(skb, 2); |
Harvey Harrison | c4106aa | 2008-11-27 00:12:47 -0800 | [diff] [blame] | 963 | *pktlen = cpu_to_le16(skb->len - 2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 964 | |
Arnaldo Carvalho de Melo | c1d2bbe | 2007-04-10 20:45:18 -0700 | [diff] [blame] | 965 | skb_reset_network_header(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | |
| 967 | if (dn_am_i_a_router(dn, dn_db, ifa)) { |
| 968 | struct sk_buff *skb2 = skb_copy(skb, GFP_ATOMIC); |
| 969 | if (skb2) { |
| 970 | dn_rt_finish_output(skb2, dn_rt_all_end_mcast, src); |
| 971 | } |
| 972 | } |
| 973 | |
| 974 | dn_rt_finish_output(skb, dn_rt_all_rt_mcast, src); |
| 975 | } |
| 976 | |
| 977 | static void dn_send_brd_hello(struct net_device *dev, struct dn_ifaddr *ifa) |
| 978 | { |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 979 | struct dn_dev *dn_db = rcu_dereference_raw(dev->dn_ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 980 | |
| 981 | if (dn_db->parms.forwarding == 0) |
| 982 | dn_send_endnode_hello(dev, ifa); |
| 983 | else |
| 984 | dn_send_router_hello(dev, ifa); |
| 985 | } |
| 986 | |
| 987 | static void dn_send_ptp_hello(struct net_device *dev, struct dn_ifaddr *ifa) |
| 988 | { |
| 989 | int tdlen = 16; |
| 990 | int size = dev->hard_header_len + 2 + 4 + tdlen; |
| 991 | struct sk_buff *skb = dn_alloc_skb(NULL, size, GFP_ATOMIC); |
| 992 | int i; |
| 993 | unsigned char *ptr; |
| 994 | char src[ETH_ALEN]; |
| 995 | |
| 996 | if (skb == NULL) |
| 997 | return ; |
| 998 | |
| 999 | skb->dev = dev; |
| 1000 | skb_push(skb, dev->hard_header_len); |
| 1001 | ptr = skb_put(skb, 2 + 4 + tdlen); |
| 1002 | |
| 1003 | *ptr++ = DN_RT_PKT_HELO; |
Steven Whitehouse | c4ea94a | 2006-03-20 22:42:39 -0800 | [diff] [blame] | 1004 | *((__le16 *)ptr) = ifa->ifa_local; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1005 | ptr += 2; |
| 1006 | *ptr++ = tdlen; |
| 1007 | |
| 1008 | for(i = 0; i < tdlen; i++) |
| 1009 | *ptr++ = 0252; |
| 1010 | |
| 1011 | dn_dn2eth(src, ifa->ifa_local); |
| 1012 | dn_rt_finish_output(skb, dn_rt_all_rt_mcast, src); |
| 1013 | } |
| 1014 | |
| 1015 | static int dn_eth_up(struct net_device *dev) |
| 1016 | { |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 1017 | struct dn_dev *dn_db = rcu_dereference_raw(dev->dn_ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1018 | |
| 1019 | if (dn_db->parms.forwarding == 0) |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 1020 | dev_mc_add(dev, dn_rt_all_end_mcast); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1021 | else |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 1022 | dev_mc_add(dev, dn_rt_all_rt_mcast); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1023 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1024 | dn_db->use_long = 1; |
| 1025 | |
| 1026 | return 0; |
| 1027 | } |
| 1028 | |
| 1029 | static void dn_eth_down(struct net_device *dev) |
| 1030 | { |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 1031 | struct dn_dev *dn_db = rcu_dereference_raw(dev->dn_ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1032 | |
| 1033 | if (dn_db->parms.forwarding == 0) |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 1034 | dev_mc_del(dev, dn_rt_all_end_mcast); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1035 | else |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 1036 | dev_mc_del(dev, dn_rt_all_rt_mcast); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1037 | } |
| 1038 | |
| 1039 | static void dn_dev_set_timer(struct net_device *dev); |
| 1040 | |
| 1041 | static void dn_dev_timer_func(unsigned long arg) |
| 1042 | { |
| 1043 | struct net_device *dev = (struct net_device *)arg; |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 1044 | struct dn_dev *dn_db; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 | struct dn_ifaddr *ifa; |
| 1046 | |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 1047 | rcu_read_lock(); |
| 1048 | dn_db = rcu_dereference(dev->dn_ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1049 | if (dn_db->t3 <= dn_db->parms.t2) { |
| 1050 | if (dn_db->parms.timer3) { |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 1051 | for (ifa = rcu_dereference(dn_db->ifa_list); |
| 1052 | ifa; |
| 1053 | ifa = rcu_dereference(ifa->ifa_next)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | if (!(ifa->ifa_flags & IFA_F_SECONDARY)) |
| 1055 | dn_db->parms.timer3(dev, ifa); |
| 1056 | } |
| 1057 | } |
| 1058 | dn_db->t3 = dn_db->parms.t3; |
| 1059 | } else { |
| 1060 | dn_db->t3 -= dn_db->parms.t2; |
| 1061 | } |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 1062 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1063 | dn_dev_set_timer(dev); |
| 1064 | } |
| 1065 | |
| 1066 | static void dn_dev_set_timer(struct net_device *dev) |
| 1067 | { |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 1068 | struct dn_dev *dn_db = rcu_dereference_raw(dev->dn_ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1069 | |
| 1070 | if (dn_db->parms.t2 > dn_db->parms.t3) |
| 1071 | dn_db->parms.t2 = dn_db->parms.t3; |
| 1072 | |
| 1073 | dn_db->timer.data = (unsigned long)dev; |
| 1074 | dn_db->timer.function = dn_dev_timer_func; |
| 1075 | dn_db->timer.expires = jiffies + (dn_db->parms.t2 * HZ); |
| 1076 | |
| 1077 | add_timer(&dn_db->timer); |
| 1078 | } |
| 1079 | |
Roel Kluin | 5eaa65b | 2008-12-10 15:18:31 -0800 | [diff] [blame] | 1080 | static struct dn_dev *dn_dev_create(struct net_device *dev, int *err) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1081 | { |
| 1082 | int i; |
| 1083 | struct dn_dev_parms *p = dn_dev_list; |
| 1084 | struct dn_dev *dn_db; |
| 1085 | |
| 1086 | for(i = 0; i < DN_DEV_LIST_SIZE; i++, p++) { |
| 1087 | if (p->type == dev->type) |
| 1088 | break; |
| 1089 | } |
| 1090 | |
| 1091 | *err = -ENODEV; |
| 1092 | if (i == DN_DEV_LIST_SIZE) |
| 1093 | return NULL; |
| 1094 | |
| 1095 | *err = -ENOBUFS; |
Panagiotis Issaris | 0da974f | 2006-07-21 14:51:30 -0700 | [diff] [blame] | 1096 | if ((dn_db = kzalloc(sizeof(struct dn_dev), GFP_ATOMIC)) == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1097 | return NULL; |
| 1098 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1099 | memcpy(&dn_db->parms, p, sizeof(struct dn_dev_parms)); |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 1100 | |
Eric Dumazet | cf778b0 | 2012-01-12 04:41:32 +0000 | [diff] [blame] | 1101 | rcu_assign_pointer(dev->dn_ptr, dn_db); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1102 | dn_db->dev = dev; |
| 1103 | init_timer(&dn_db->timer); |
| 1104 | |
| 1105 | dn_db->uptime = jiffies; |
Eric W. Biederman | 95743de | 2007-01-25 15:51:51 -0800 | [diff] [blame] | 1106 | |
| 1107 | dn_db->neigh_parms = neigh_parms_alloc(dev, &dn_neigh_table); |
| 1108 | if (!dn_db->neigh_parms) { |
Stephen Hemminger | a9b3cd7 | 2011-08-01 16:19:00 +0000 | [diff] [blame] | 1109 | RCU_INIT_POINTER(dev->dn_ptr, NULL); |
Eric W. Biederman | 95743de | 2007-01-25 15:51:51 -0800 | [diff] [blame] | 1110 | kfree(dn_db); |
| 1111 | return NULL; |
| 1112 | } |
| 1113 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1114 | if (dn_db->parms.up) { |
| 1115 | if (dn_db->parms.up(dev) < 0) { |
Eric W. Biederman | 95743de | 2007-01-25 15:51:51 -0800 | [diff] [blame] | 1116 | neigh_parms_release(&dn_neigh_table, dn_db->neigh_parms); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1117 | dev->dn_ptr = NULL; |
| 1118 | kfree(dn_db); |
| 1119 | return NULL; |
| 1120 | } |
| 1121 | } |
| 1122 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1123 | dn_dev_sysctl_register(dev, &dn_db->parms); |
| 1124 | |
| 1125 | dn_dev_set_timer(dev); |
| 1126 | |
| 1127 | *err = 0; |
| 1128 | return dn_db; |
| 1129 | } |
| 1130 | |
| 1131 | |
| 1132 | /* |
| 1133 | * This processes a device up event. We only start up |
| 1134 | * the loopback device & ethernet devices with correct |
Uwe Kleine-König | b595076 | 2010-11-01 15:38:34 -0400 | [diff] [blame] | 1135 | * MAC addresses automatically. Others must be started |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1136 | * specifically. |
| 1137 | * |
| 1138 | * FIXME: How should we configure the loopback address ? If we could dispense |
| 1139 | * with using decnet_address here and for autobind, it will be one less thing |
| 1140 | * for users to worry about setting up. |
| 1141 | */ |
| 1142 | |
| 1143 | void dn_dev_up(struct net_device *dev) |
| 1144 | { |
| 1145 | struct dn_ifaddr *ifa; |
Steven Whitehouse | c4ea94a | 2006-03-20 22:42:39 -0800 | [diff] [blame] | 1146 | __le16 addr = decnet_address; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1147 | int maybe_default = 0; |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 1148 | struct dn_dev *dn_db = rtnl_dereference(dev->dn_ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1149 | |
| 1150 | if ((dev->type != ARPHRD_ETHER) && (dev->type != ARPHRD_LOOPBACK)) |
| 1151 | return; |
| 1152 | |
| 1153 | /* |
| 1154 | * Need to ensure that loopback device has a dn_db attached to it |
| 1155 | * to allow creation of neighbours against it, even though it might |
| 1156 | * not have a local address of its own. Might as well do the same for |
| 1157 | * all autoconfigured interfaces. |
| 1158 | */ |
| 1159 | if (dn_db == NULL) { |
| 1160 | int err; |
| 1161 | dn_db = dn_dev_create(dev, &err); |
| 1162 | if (dn_db == NULL) |
| 1163 | return; |
| 1164 | } |
| 1165 | |
| 1166 | if (dev->type == ARPHRD_ETHER) { |
| 1167 | if (memcmp(dev->dev_addr, dn_hiord, 4) != 0) |
| 1168 | return; |
Steven Whitehouse | c4ea94a | 2006-03-20 22:42:39 -0800 | [diff] [blame] | 1169 | addr = dn_eth2dn(dev->dev_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1170 | maybe_default = 1; |
| 1171 | } |
| 1172 | |
| 1173 | if (addr == 0) |
| 1174 | return; |
| 1175 | |
| 1176 | if ((ifa = dn_dev_alloc_ifa()) == NULL) |
| 1177 | return; |
| 1178 | |
| 1179 | ifa->ifa_local = ifa->ifa_address = addr; |
| 1180 | ifa->ifa_flags = 0; |
| 1181 | ifa->ifa_scope = RT_SCOPE_UNIVERSE; |
| 1182 | strcpy(ifa->ifa_label, dev->name); |
| 1183 | |
| 1184 | dn_dev_set_ifa(dev, ifa); |
| 1185 | |
| 1186 | /* |
| 1187 | * Automagically set the default device to the first automatically |
| 1188 | * configured ethernet card in the system. |
| 1189 | */ |
| 1190 | if (maybe_default) { |
| 1191 | dev_hold(dev); |
| 1192 | if (dn_dev_set_default(dev, 0)) |
| 1193 | dev_put(dev); |
| 1194 | } |
| 1195 | } |
| 1196 | |
| 1197 | static void dn_dev_delete(struct net_device *dev) |
| 1198 | { |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 1199 | struct dn_dev *dn_db = rtnl_dereference(dev->dn_ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1200 | |
| 1201 | if (dn_db == NULL) |
| 1202 | return; |
| 1203 | |
| 1204 | del_timer_sync(&dn_db->timer); |
| 1205 | dn_dev_sysctl_unregister(&dn_db->parms); |
| 1206 | dn_dev_check_default(dev); |
| 1207 | neigh_ifdown(&dn_neigh_table, dev); |
| 1208 | |
| 1209 | if (dn_db->parms.down) |
| 1210 | dn_db->parms.down(dev); |
| 1211 | |
| 1212 | dev->dn_ptr = NULL; |
| 1213 | |
| 1214 | neigh_parms_release(&dn_neigh_table, dn_db->neigh_parms); |
| 1215 | neigh_ifdown(&dn_neigh_table, dev); |
| 1216 | |
| 1217 | if (dn_db->router) |
| 1218 | neigh_release(dn_db->router); |
| 1219 | if (dn_db->peer) |
| 1220 | neigh_release(dn_db->peer); |
| 1221 | |
| 1222 | kfree(dn_db); |
| 1223 | } |
| 1224 | |
| 1225 | void dn_dev_down(struct net_device *dev) |
| 1226 | { |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 1227 | struct dn_dev *dn_db = rtnl_dereference(dev->dn_ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1228 | struct dn_ifaddr *ifa; |
| 1229 | |
| 1230 | if (dn_db == NULL) |
| 1231 | return; |
| 1232 | |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 1233 | while ((ifa = rtnl_dereference(dn_db->ifa_list)) != NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1234 | dn_dev_del_ifa(dn_db, &dn_db->ifa_list, 0); |
| 1235 | dn_dev_free_ifa(ifa); |
| 1236 | } |
| 1237 | |
| 1238 | dn_dev_delete(dev); |
| 1239 | } |
| 1240 | |
| 1241 | void dn_dev_init_pkt(struct sk_buff *skb) |
| 1242 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1243 | } |
| 1244 | |
| 1245 | void dn_dev_veri_pkt(struct sk_buff *skb) |
| 1246 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1247 | } |
| 1248 | |
| 1249 | void dn_dev_hello(struct sk_buff *skb) |
| 1250 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1251 | } |
| 1252 | |
| 1253 | void dn_dev_devices_off(void) |
| 1254 | { |
| 1255 | struct net_device *dev; |
| 1256 | |
| 1257 | rtnl_lock(); |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 1258 | for_each_netdev(&init_net, dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1259 | dn_dev_down(dev); |
| 1260 | rtnl_unlock(); |
| 1261 | |
| 1262 | } |
| 1263 | |
| 1264 | void dn_dev_devices_on(void) |
| 1265 | { |
| 1266 | struct net_device *dev; |
| 1267 | |
| 1268 | rtnl_lock(); |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 1269 | for_each_netdev(&init_net, dev) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1270 | if (dev->flags & IFF_UP) |
| 1271 | dn_dev_up(dev); |
| 1272 | } |
| 1273 | rtnl_unlock(); |
| 1274 | } |
| 1275 | |
| 1276 | int register_dnaddr_notifier(struct notifier_block *nb) |
| 1277 | { |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 1278 | return blocking_notifier_chain_register(&dnaddr_chain, nb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1279 | } |
| 1280 | |
| 1281 | int unregister_dnaddr_notifier(struct notifier_block *nb) |
| 1282 | { |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 1283 | return blocking_notifier_chain_unregister(&dnaddr_chain, nb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1284 | } |
| 1285 | |
| 1286 | #ifdef CONFIG_PROC_FS |
Pavel Emelianov | 7562f87 | 2007-05-03 15:13:45 -0700 | [diff] [blame] | 1287 | static inline int is_dn_dev(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1288 | { |
Pavel Emelianov | 7562f87 | 2007-05-03 15:13:45 -0700 | [diff] [blame] | 1289 | return dev->dn_ptr != NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1290 | } |
| 1291 | |
| 1292 | static void *dn_dev_seq_start(struct seq_file *seq, loff_t *pos) |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 1293 | __acquires(RCU) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1294 | { |
Pavel Emelianov | 7562f87 | 2007-05-03 15:13:45 -0700 | [diff] [blame] | 1295 | int i; |
| 1296 | struct net_device *dev; |
| 1297 | |
stephen hemminger | fa91860 | 2009-11-10 07:54:53 +0000 | [diff] [blame] | 1298 | rcu_read_lock(); |
Pavel Emelianov | 7562f87 | 2007-05-03 15:13:45 -0700 | [diff] [blame] | 1299 | |
| 1300 | if (*pos == 0) |
| 1301 | return SEQ_START_TOKEN; |
| 1302 | |
| 1303 | i = 1; |
stephen hemminger | fa91860 | 2009-11-10 07:54:53 +0000 | [diff] [blame] | 1304 | for_each_netdev_rcu(&init_net, dev) { |
Pavel Emelianov | 7562f87 | 2007-05-03 15:13:45 -0700 | [diff] [blame] | 1305 | if (!is_dn_dev(dev)) |
| 1306 | continue; |
| 1307 | |
| 1308 | if (i++ == *pos) |
| 1309 | return dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1310 | } |
Pavel Emelianov | 7562f87 | 2007-05-03 15:13:45 -0700 | [diff] [blame] | 1311 | |
| 1312 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1313 | } |
| 1314 | |
| 1315 | static void *dn_dev_seq_next(struct seq_file *seq, void *v, loff_t *pos) |
| 1316 | { |
Pavel Emelianov | 7562f87 | 2007-05-03 15:13:45 -0700 | [diff] [blame] | 1317 | struct net_device *dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1318 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1319 | ++*pos; |
Pavel Emelianov | 7562f87 | 2007-05-03 15:13:45 -0700 | [diff] [blame] | 1320 | |
Joe Perches | ea11073 | 2011-06-13 16:21:26 +0000 | [diff] [blame] | 1321 | dev = v; |
Pavel Emelianov | 7562f87 | 2007-05-03 15:13:45 -0700 | [diff] [blame] | 1322 | if (v == SEQ_START_TOKEN) |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 1323 | dev = net_device_entry(&init_net.dev_base_head); |
Pavel Emelianov | 7562f87 | 2007-05-03 15:13:45 -0700 | [diff] [blame] | 1324 | |
stephen hemminger | fa91860 | 2009-11-10 07:54:53 +0000 | [diff] [blame] | 1325 | for_each_netdev_continue_rcu(&init_net, dev) { |
Pavel Emelianov | 7562f87 | 2007-05-03 15:13:45 -0700 | [diff] [blame] | 1326 | if (!is_dn_dev(dev)) |
| 1327 | continue; |
| 1328 | |
| 1329 | return dev; |
| 1330 | } |
| 1331 | |
| 1332 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1333 | } |
| 1334 | |
| 1335 | static void dn_dev_seq_stop(struct seq_file *seq, void *v) |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 1336 | __releases(RCU) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1337 | { |
stephen hemminger | fa91860 | 2009-11-10 07:54:53 +0000 | [diff] [blame] | 1338 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1339 | } |
| 1340 | |
| 1341 | static char *dn_type2asc(char type) |
| 1342 | { |
Joe Perches | 06f8fe1 | 2011-07-01 09:43:03 +0000 | [diff] [blame] | 1343 | switch (type) { |
| 1344 | case DN_DEV_BCAST: |
| 1345 | return "B"; |
| 1346 | case DN_DEV_UCAST: |
| 1347 | return "U"; |
| 1348 | case DN_DEV_MPOINT: |
| 1349 | return "M"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1350 | } |
| 1351 | |
| 1352 | return "?"; |
| 1353 | } |
| 1354 | |
| 1355 | static int dn_dev_seq_show(struct seq_file *seq, void *v) |
| 1356 | { |
| 1357 | if (v == SEQ_START_TOKEN) |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 1358 | seq_puts(seq, "Name Flags T1 Timer1 T3 Timer3 BlkSize Pri State DevType Router Peer\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1359 | else { |
| 1360 | struct net_device *dev = v; |
| 1361 | char peer_buf[DN_ASCBUF_LEN]; |
| 1362 | char router_buf[DN_ASCBUF_LEN]; |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 1363 | struct dn_dev *dn_db = rcu_dereference(dev->dn_ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1364 | |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 1365 | seq_printf(seq, "%-8s %1s %04u %04u %04lu %04lu" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1366 | " %04hu %03d %02x %-10s %-7s %-7s\n", |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 1367 | dev->name ? dev->name : "???", |
| 1368 | dn_type2asc(dn_db->parms.mode), |
| 1369 | 0, 0, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1370 | dn_db->t3, dn_db->parms.t3, |
| 1371 | mtu2blksize(dev), |
| 1372 | dn_db->parms.priority, |
| 1373 | dn_db->parms.state, dn_db->parms.name, |
Harvey Harrison | c4106aa | 2008-11-27 00:12:47 -0800 | [diff] [blame] | 1374 | dn_db->router ? dn_addr2asc(le16_to_cpu(*(__le16 *)dn_db->router->primary_key), router_buf) : "", |
| 1375 | dn_db->peer ? dn_addr2asc(le16_to_cpu(*(__le16 *)dn_db->peer->primary_key), peer_buf) : ""); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1376 | } |
| 1377 | return 0; |
| 1378 | } |
| 1379 | |
Philippe De Muyter | 56b3d97 | 2007-07-10 23:07:31 -0700 | [diff] [blame] | 1380 | static const struct seq_operations dn_dev_seq_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1381 | .start = dn_dev_seq_start, |
| 1382 | .next = dn_dev_seq_next, |
| 1383 | .stop = dn_dev_seq_stop, |
| 1384 | .show = dn_dev_seq_show, |
| 1385 | }; |
| 1386 | |
| 1387 | static int dn_dev_seq_open(struct inode *inode, struct file *file) |
| 1388 | { |
| 1389 | return seq_open(file, &dn_dev_seq_ops); |
| 1390 | } |
| 1391 | |
Arjan van de Ven | 9a32144 | 2007-02-12 00:55:35 -0800 | [diff] [blame] | 1392 | static const struct file_operations dn_dev_seq_fops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1393 | .owner = THIS_MODULE, |
| 1394 | .open = dn_dev_seq_open, |
| 1395 | .read = seq_read, |
| 1396 | .llseek = seq_lseek, |
| 1397 | .release = seq_release, |
| 1398 | }; |
| 1399 | |
| 1400 | #endif /* CONFIG_PROC_FS */ |
| 1401 | |
Alexey Dobriyan | 4e05806 | 2007-11-05 21:30:11 -0800 | [diff] [blame] | 1402 | static int addr[2]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1403 | module_param_array(addr, int, NULL, 0444); |
| 1404 | MODULE_PARM_DESC(addr, "The DECnet address of this machine: area,node"); |
| 1405 | |
| 1406 | void __init dn_dev_init(void) |
| 1407 | { |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 1408 | if (addr[0] > 63 || addr[0] < 0) { |
| 1409 | printk(KERN_ERR "DECnet: Area must be between 0 and 63"); |
| 1410 | return; |
| 1411 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1412 | |
YOSHIFUJI Hideaki | 429eb0f | 2007-02-09 23:24:40 +0900 | [diff] [blame] | 1413 | if (addr[1] > 1023 || addr[1] < 0) { |
| 1414 | printk(KERN_ERR "DECnet: Node must be between 0 and 1023"); |
| 1415 | return; |
| 1416 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1417 | |
Harvey Harrison | c4106aa | 2008-11-27 00:12:47 -0800 | [diff] [blame] | 1418 | decnet_address = cpu_to_le16((addr[0] << 10) | addr[1]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1419 | |
| 1420 | dn_dev_devices_on(); |
| 1421 | |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 1422 | rtnl_register(PF_DECnet, RTM_NEWADDR, dn_nl_newaddr, NULL, NULL); |
| 1423 | rtnl_register(PF_DECnet, RTM_DELADDR, dn_nl_deladdr, NULL, NULL); |
| 1424 | rtnl_register(PF_DECnet, RTM_GETADDR, NULL, dn_nl_dump_ifaddr, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1425 | |
Gao feng | d4beaa6 | 2013-02-18 01:34:54 +0000 | [diff] [blame] | 1426 | proc_create("decnet_dev", S_IRUGO, init_net.proc_net, &dn_dev_seq_fops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1427 | |
| 1428 | #ifdef CONFIG_SYSCTL |
| 1429 | { |
| 1430 | int i; |
| 1431 | for(i = 0; i < DN_DEV_LIST_SIZE; i++) |
| 1432 | dn_dev_sysctl_register(NULL, &dn_dev_list[i]); |
| 1433 | } |
| 1434 | #endif /* CONFIG_SYSCTL */ |
| 1435 | } |
| 1436 | |
| 1437 | void __exit dn_dev_cleanup(void) |
| 1438 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1439 | #ifdef CONFIG_SYSCTL |
| 1440 | { |
| 1441 | int i; |
| 1442 | for(i = 0; i < DN_DEV_LIST_SIZE; i++) |
| 1443 | dn_dev_sysctl_unregister(&dn_dev_list[i]); |
| 1444 | } |
| 1445 | #endif /* CONFIG_SYSCTL */ |
| 1446 | |
Gao feng | ece31ff | 2013-02-18 01:34:56 +0000 | [diff] [blame] | 1447 | remove_proc_entry("decnet_dev", init_net.proc_net); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1448 | |
| 1449 | dn_dev_devices_off(); |
| 1450 | } |