blob: c8da116d84a455b53aa917f47d504bd6ce07388b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Dunlap4fc268d2006-01-11 12:17:47 -080027#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#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 Graf18237302006-08-04 23:04:54 -070037#include <linux/if_addr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/if_arp.h>
39#include <linux/if_ether.h>
40#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/sysctl.h>
42#include <linux/notifier.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090043#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <asm/uaccess.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020045#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <net/neighbour.h>
47#include <net/dst.h>
48#include <net/flow.h>
Steven Whitehousea8731cb2006-08-09 15:56:46 -070049#include <net/fib_rules.h>
Thomas Grafa6f01ca2006-11-24 17:14:07 -080050#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <net/dn.h>
52#include <net/dn_dev.h>
53#include <net/dn_route.h>
54#include <net/dn_neigh.h>
55#include <net/dn_fib.h>
56
57#define DN_IFREQ_SIZE (sizeof(struct ifreq) - sizeof(struct sockaddr) + sizeof(struct sockaddr_dn))
58
59static char dn_rt_all_end_mcast[ETH_ALEN] = {0xAB,0x00,0x00,0x04,0x00,0x00};
60static char dn_rt_all_rt_mcast[ETH_ALEN] = {0xAB,0x00,0x00,0x03,0x00,0x00};
61static char dn_hiord[ETH_ALEN] = {0xAA,0x00,0x04,0x00,0x00,0x00};
62static unsigned char dn_eco_version[3] = {0x02,0x00,0x00};
63
64extern struct neigh_table dn_neigh_table;
65
66/*
67 * decnet_address is kept in network order.
68 */
Steven Whitehousec4ea94a2006-03-20 22:42:39 -080069__le16 decnet_address = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
stephen hemmingere5c140a2009-11-11 07:40:36 +000071static DEFINE_SPINLOCK(dndev_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072static struct net_device *decnet_default_device;
Alan Sterne041c682006-03-27 01:16:30 -080073static BLOCKING_NOTIFIER_HEAD(dnaddr_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75static struct dn_dev *dn_dev_create(struct net_device *dev, int *err);
76static void dn_dev_delete(struct net_device *dev);
Thomas Grafb020b942006-11-24 17:14:31 -080077static void dn_ifaddr_notify(int event, struct dn_ifaddr *ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79static int dn_eth_up(struct net_device *);
80static void dn_eth_down(struct net_device *);
81static void dn_send_brd_hello(struct net_device *dev, struct dn_ifaddr *ifa);
82static void dn_send_ptp_hello(struct net_device *dev, struct dn_ifaddr *ifa);
83
84static struct dn_dev_parms dn_dev_list[] = {
85{
86 .type = ARPHRD_ETHER, /* Ethernet */
87 .mode = DN_DEV_BCAST,
88 .state = DN_DEV_S_RU,
89 .t2 = 1,
90 .t3 = 10,
91 .name = "ethernet",
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 .up = dn_eth_up,
93 .down = dn_eth_down,
94 .timer3 = dn_send_brd_hello,
95},
96{
97 .type = ARPHRD_IPGRE, /* DECnet tunneled over GRE in IP */
98 .mode = DN_DEV_BCAST,
99 .state = DN_DEV_S_RU,
100 .t2 = 1,
101 .t3 = 10,
102 .name = "ipgre",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 .timer3 = dn_send_brd_hello,
104},
105#if 0
106{
107 .type = ARPHRD_X25, /* Bog standard X.25 */
108 .mode = DN_DEV_UCAST,
109 .state = DN_DEV_S_DS,
110 .t2 = 1,
111 .t3 = 120,
112 .name = "x25",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 .timer3 = dn_send_ptp_hello,
114},
115#endif
116#if 0
117{
118 .type = ARPHRD_PPP, /* DECnet over PPP */
119 .mode = DN_DEV_BCAST,
120 .state = DN_DEV_S_RU,
121 .t2 = 1,
122 .t3 = 10,
123 .name = "ppp",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 .timer3 = dn_send_brd_hello,
125},
126#endif
127{
128 .type = ARPHRD_DDCMP, /* DECnet over DDCMP */
129 .mode = DN_DEV_UCAST,
130 .state = DN_DEV_S_DS,
131 .t2 = 1,
132 .t3 = 120,
133 .name = "ddcmp",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 .timer3 = dn_send_ptp_hello,
135},
136{
137 .type = ARPHRD_LOOPBACK, /* Loopback interface - always last */
138 .mode = DN_DEV_BCAST,
139 .state = DN_DEV_S_RU,
140 .t2 = 1,
141 .t3 = 10,
142 .name = "loopback",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 .timer3 = dn_send_brd_hello,
144}
145};
146
Denis Cheng8b14a532007-09-16 16:41:29 -0700147#define DN_DEV_LIST_SIZE ARRAY_SIZE(dn_dev_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
David S. Miller8fa0b312008-10-15 15:59:50 -0700149#define DN_DEV_PARMS_OFFSET(x) offsetof(struct dn_dev_parms, x)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151#ifdef CONFIG_SYSCTL
152
153static int min_t2[] = { 1 };
154static int max_t2[] = { 60 }; /* No max specified, but this seems sensible */
155static int min_t3[] = { 1 };
156static int max_t3[] = { 8191 }; /* Must fit in 16 bits when multiplied by BCT3MULT or T3MULT */
157
158static int min_priority[1];
159static int max_priority[] = { 127 }; /* From DECnet spec */
160
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700161static int dn_forwarding_proc(ctl_table *, int,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 void __user *, size_t *, loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163static struct dn_dev_sysctl_table {
164 struct ctl_table_header *sysctl_header;
165 ctl_table dn_dev_vars[5];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166} dn_dev_sysctl = {
167 NULL,
168 {
169 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 .procname = "forwarding",
171 .data = (void *)DN_DEV_PARMS_OFFSET(forwarding),
172 .maxlen = sizeof(int),
173 .mode = 0644,
174 .proc_handler = dn_forwarding_proc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 },
176 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 .procname = "priority",
178 .data = (void *)DN_DEV_PARMS_OFFSET(priority),
179 .maxlen = sizeof(int),
180 .mode = 0644,
181 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 .extra1 = &min_priority,
183 .extra2 = &max_priority
184 },
185 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 .procname = "t2",
187 .data = (void *)DN_DEV_PARMS_OFFSET(t2),
188 .maxlen = sizeof(int),
189 .mode = 0644,
190 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 .extra1 = &min_t2,
192 .extra2 = &max_t2
193 },
194 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 .procname = "t3",
196 .data = (void *)DN_DEV_PARMS_OFFSET(t3),
197 .maxlen = sizeof(int),
198 .mode = 0644,
199 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 .extra1 = &min_t3,
201 .extra2 = &max_t3
202 },
203 {0}
204 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205};
206
207static void dn_dev_sysctl_register(struct net_device *dev, struct dn_dev_parms *parms)
208{
209 struct dn_dev_sysctl_table *t;
210 int i;
211
Eric W. Biederman9bdcc882012-04-19 13:40:37 +0000212 char path[sizeof("net/decnet/conf/") + IFNAMSIZ];
Pavel Emelyanov3151a9a2008-01-09 00:31:49 -0800213
Arnaldo Carvalho de Meloc66b7212006-11-17 12:29:21 -0200214 t = kmemdup(&dn_dev_sysctl, sizeof(*t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 if (t == NULL)
216 return;
217
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 for(i = 0; i < ARRAY_SIZE(t->dn_dev_vars) - 1; i++) {
219 long offset = (long)t->dn_dev_vars[i].data;
220 t->dn_dev_vars[i].data = ((char *)parms) + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 }
222
Eric W. Biederman9bdcc882012-04-19 13:40:37 +0000223 snprintf(path, sizeof(path), "net/decnet/conf/%s",
224 dev? dev->name : parms->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 t->dn_dev_vars[0].extra1 = (void *)dev;
227
Eric W. Biederman9bdcc882012-04-19 13:40:37 +0000228 t->sysctl_header = register_net_sysctl(&init_net, path, t->dn_dev_vars);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 if (t->sysctl_header == NULL)
230 kfree(t);
231 else
232 parms->sysctl = t;
233}
234
235static void dn_dev_sysctl_unregister(struct dn_dev_parms *parms)
236{
237 if (parms->sysctl) {
238 struct dn_dev_sysctl_table *t = parms->sysctl;
239 parms->sysctl = NULL;
Eric W. Biederman5dd3df12012-04-19 13:24:33 +0000240 unregister_net_sysctl_table(t->sysctl_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 kfree(t);
242 }
243}
244
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900245static int dn_forwarding_proc(ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 void __user *buffer,
247 size_t *lenp, loff_t *ppos)
248{
249#ifdef CONFIG_DECNET_ROUTER
250 struct net_device *dev = table->extra1;
251 struct dn_dev *dn_db;
252 int err;
253 int tmp, old;
254
255 if (table->extra1 == NULL)
256 return -EINVAL;
257
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000258 dn_db = rcu_dereference_raw(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 old = dn_db->parms.forwarding;
260
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700261 err = proc_dointvec(table, write, buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263 if ((err >= 0) && write) {
264 if (dn_db->parms.forwarding < 0)
265 dn_db->parms.forwarding = 0;
266 if (dn_db->parms.forwarding > 2)
267 dn_db->parms.forwarding = 2;
268 /*
269 * What an ugly hack this is... its works, just. It
270 * would be nice if sysctl/proc were just that little
271 * bit more flexible so I don't have to write a special
272 * routine, or suffer hacks like this - SJW
273 */
274 tmp = dn_db->parms.forwarding;
275 dn_db->parms.forwarding = old;
276 if (dn_db->parms.down)
277 dn_db->parms.down(dev);
278 dn_db->parms.forwarding = tmp;
279 if (dn_db->parms.up)
280 dn_db->parms.up(dev);
281 }
282
283 return err;
284#else
285 return -EINVAL;
286#endif
287}
288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289#else /* CONFIG_SYSCTL */
290static void dn_dev_sysctl_unregister(struct dn_dev_parms *parms)
291{
292}
293static void dn_dev_sysctl_register(struct net_device *dev, struct dn_dev_parms *parms)
294{
295}
296
297#endif /* CONFIG_SYSCTL */
298
299static inline __u16 mtu2blksize(struct net_device *dev)
300{
301 u32 blksize = dev->mtu;
302 if (blksize > 0xffff)
303 blksize = 0xffff;
304
305 if (dev->type == ARPHRD_ETHER ||
306 dev->type == ARPHRD_PPP ||
307 dev->type == ARPHRD_IPGRE ||
308 dev->type == ARPHRD_LOOPBACK)
309 blksize -= 2;
310
311 return (__u16)blksize;
312}
313
314static struct dn_ifaddr *dn_dev_alloc_ifa(void)
315{
316 struct dn_ifaddr *ifa;
317
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700318 ifa = kzalloc(sizeof(*ifa), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
320 return ifa;
321}
322
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000323static void dn_dev_free_ifa(struct dn_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
Lai Jiangshan1e547752011-03-15 18:10:12 +0800325 kfree_rcu(ifa, rcu);
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000326}
327
328static void dn_dev_del_ifa(struct dn_dev *dn_db, struct dn_ifaddr __rcu **ifap, int destroy)
329{
330 struct dn_ifaddr *ifa1 = rtnl_dereference(*ifap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 unsigned char mac_addr[6];
332 struct net_device *dev = dn_db->dev;
333
334 ASSERT_RTNL();
335
336 *ifap = ifa1->ifa_next;
337
338 if (dn_db->dev->type == ARPHRD_ETHER) {
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800339 if (ifa1->ifa_local != dn_eth2dn(dev->dev_addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 dn_dn2eth(mac_addr, ifa1->ifa_local);
Jiri Pirko22bedad32010-04-01 21:22:57 +0000341 dev_mc_del(dev, mac_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 }
343 }
344
Thomas Grafb020b942006-11-24 17:14:31 -0800345 dn_ifaddr_notify(RTM_DELADDR, ifa1);
Alan Sterne041c682006-03-27 01:16:30 -0800346 blocking_notifier_call_chain(&dnaddr_chain, NETDEV_DOWN, ifa1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 if (destroy) {
348 dn_dev_free_ifa(ifa1);
349
350 if (dn_db->ifa_list == NULL)
351 dn_dev_delete(dn_db->dev);
352 }
353}
354
355static int dn_dev_insert_ifa(struct dn_dev *dn_db, struct dn_ifaddr *ifa)
356{
357 struct net_device *dev = dn_db->dev;
358 struct dn_ifaddr *ifa1;
359 unsigned char mac_addr[6];
360
361 ASSERT_RTNL();
362
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900363 /* Check for duplicates */
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000364 for (ifa1 = rtnl_dereference(dn_db->ifa_list);
365 ifa1 != NULL;
366 ifa1 = rtnl_dereference(ifa1->ifa_next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 if (ifa1->ifa_local == ifa->ifa_local)
368 return -EEXIST;
369 }
370
371 if (dev->type == ARPHRD_ETHER) {
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800372 if (ifa->ifa_local != dn_eth2dn(dev->dev_addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 dn_dn2eth(mac_addr, ifa->ifa_local);
Jiri Pirko22bedad32010-04-01 21:22:57 +0000374 dev_mc_add(dev, mac_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 }
376 }
377
378 ifa->ifa_next = dn_db->ifa_list;
Eric Dumazetcf778b02012-01-12 04:41:32 +0000379 rcu_assign_pointer(dn_db->ifa_list, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Thomas Grafb020b942006-11-24 17:14:31 -0800381 dn_ifaddr_notify(RTM_NEWADDR, ifa);
Alan Sterne041c682006-03-27 01:16:30 -0800382 blocking_notifier_call_chain(&dnaddr_chain, NETDEV_UP, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384 return 0;
385}
386
387static int dn_dev_set_ifa(struct net_device *dev, struct dn_ifaddr *ifa)
388{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000389 struct dn_dev *dn_db = rtnl_dereference(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 int rv;
391
392 if (dn_db == NULL) {
393 int err;
394 dn_db = dn_dev_create(dev, &err);
395 if (dn_db == NULL)
396 return err;
397 }
398
399 ifa->ifa_dev = dn_db;
400
401 if (dev->flags & IFF_LOOPBACK)
402 ifa->ifa_scope = RT_SCOPE_HOST;
403
404 rv = dn_dev_insert_ifa(dn_db, ifa);
405 if (rv)
406 dn_dev_free_ifa(ifa);
407 return rv;
408}
409
410
411int dn_dev_ioctl(unsigned int cmd, void __user *arg)
412{
413 char buffer[DN_IFREQ_SIZE];
414 struct ifreq *ifr = (struct ifreq *)buffer;
415 struct sockaddr_dn *sdn = (struct sockaddr_dn *)&ifr->ifr_addr;
416 struct dn_dev *dn_db;
417 struct net_device *dev;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000418 struct dn_ifaddr *ifa = NULL;
419 struct dn_ifaddr __rcu **ifap = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 int ret = 0;
421
422 if (copy_from_user(ifr, arg, DN_IFREQ_SIZE))
423 return -EFAULT;
424 ifr->ifr_name[IFNAMSIZ-1] = 0;
425
Eric W. Biederman881d9662007-09-17 11:56:21 -0700426 dev_load(&init_net, ifr->ifr_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Joe Perches06f8fe12011-07-01 09:43:03 +0000428 switch (cmd) {
429 case SIOCGIFADDR:
430 break;
431 case SIOCSIFADDR:
432 if (!capable(CAP_NET_ADMIN))
433 return -EACCES;
434 if (sdn->sdn_family != AF_DECnet)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 return -EINVAL;
Joe Perches06f8fe12011-07-01 09:43:03 +0000436 break;
437 default:
438 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 }
440
441 rtnl_lock();
442
Eric W. Biederman881d9662007-09-17 11:56:21 -0700443 if ((dev = __dev_get_by_name(&init_net, ifr->ifr_name)) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 ret = -ENODEV;
445 goto done;
446 }
447
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000448 if ((dn_db = rtnl_dereference(dev->dn_ptr)) != NULL) {
449 for (ifap = &dn_db->ifa_list;
450 (ifa = rtnl_dereference(*ifap)) != NULL;
451 ifap = &ifa->ifa_next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 if (strcmp(ifr->ifr_name, ifa->ifa_label) == 0)
453 break;
454 }
455
456 if (ifa == NULL && cmd != SIOCSIFADDR) {
457 ret = -EADDRNOTAVAIL;
458 goto done;
459 }
460
Joe Perches06f8fe12011-07-01 09:43:03 +0000461 switch (cmd) {
462 case SIOCGIFADDR:
463 *((__le16 *)sdn->sdn_nodeaddr) = ifa->ifa_local;
464 goto rarok;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Joe Perches06f8fe12011-07-01 09:43:03 +0000466 case SIOCSIFADDR:
467 if (!ifa) {
468 if ((ifa = dn_dev_alloc_ifa()) == NULL) {
469 ret = -ENOBUFS;
470 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 }
Joe Perches06f8fe12011-07-01 09:43:03 +0000472 memcpy(ifa->ifa_label, dev->name, IFNAMSIZ);
473 } else {
474 if (ifa->ifa_local == dn_saddr2dn(sdn))
475 break;
476 dn_dev_del_ifa(dn_db, ifap, 0);
477 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Joe Perches06f8fe12011-07-01 09:43:03 +0000479 ifa->ifa_local = ifa->ifa_address = dn_saddr2dn(sdn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Joe Perches06f8fe12011-07-01 09:43:03 +0000481 ret = dn_dev_set_ifa(dev, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 }
483done:
484 rtnl_unlock();
485
486 return ret;
487rarok:
488 if (copy_to_user(arg, ifr, DN_IFREQ_SIZE))
489 ret = -EFAULT;
490 goto done;
491}
492
493struct net_device *dn_dev_get_default(void)
494{
495 struct net_device *dev;
stephen hemmingere5c140a2009-11-11 07:40:36 +0000496
497 spin_lock(&dndev_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 dev = decnet_default_device;
499 if (dev) {
500 if (dev->dn_ptr)
501 dev_hold(dev);
502 else
503 dev = NULL;
504 }
stephen hemmingere5c140a2009-11-11 07:40:36 +0000505 spin_unlock(&dndev_lock);
506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 return dev;
508}
509
510int dn_dev_set_default(struct net_device *dev, int force)
511{
512 struct net_device *old = NULL;
513 int rv = -EBUSY;
514 if (!dev->dn_ptr)
515 return -ENODEV;
stephen hemmingere5c140a2009-11-11 07:40:36 +0000516
517 spin_lock(&dndev_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 if (force || decnet_default_device == NULL) {
519 old = decnet_default_device;
520 decnet_default_device = dev;
521 rv = 0;
522 }
stephen hemmingere5c140a2009-11-11 07:40:36 +0000523 spin_unlock(&dndev_lock);
524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 if (old)
Patrick Caulfield6a57b2e2006-03-29 13:57:31 -0800526 dev_put(old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 return rv;
528}
529
530static void dn_dev_check_default(struct net_device *dev)
531{
stephen hemmingere5c140a2009-11-11 07:40:36 +0000532 spin_lock(&dndev_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 if (dev == decnet_default_device) {
534 decnet_default_device = NULL;
535 } else {
536 dev = NULL;
537 }
stephen hemmingere5c140a2009-11-11 07:40:36 +0000538 spin_unlock(&dndev_lock);
539
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 if (dev)
541 dev_put(dev);
542}
543
Eric Dumazetb4d745d2009-11-04 10:59:38 -0800544/*
545 * Called with RTNL
546 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547static struct dn_dev *dn_dev_by_index(int ifindex)
548{
549 struct net_device *dev;
550 struct dn_dev *dn_dev = NULL;
Eric Dumazetb4d745d2009-11-04 10:59:38 -0800551
552 dev = __dev_get_by_index(&init_net, ifindex);
553 if (dev)
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000554 dn_dev = rtnl_dereference(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
556 return dn_dev;
557}
558
Patrick McHardyef7c79e2007-06-05 12:38:30 -0700559static const struct nla_policy dn_ifa_policy[IFA_MAX+1] = {
Thomas Graf4a89c252006-11-24 17:14:51 -0800560 [IFA_ADDRESS] = { .type = NLA_U16 },
561 [IFA_LOCAL] = { .type = NLA_U16 },
562 [IFA_LABEL] = { .type = NLA_STRING,
563 .len = IFNAMSIZ - 1 },
564};
565
566static int dn_nl_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900568 struct net *net = sock_net(skb->sk);
Thomas Graf4a89c252006-11-24 17:14:51 -0800569 struct nlattr *tb[IFA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 struct dn_dev *dn_db;
Thomas Graf4a89c252006-11-24 17:14:51 -0800571 struct ifaddrmsg *ifm;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000572 struct dn_ifaddr *ifa;
573 struct dn_ifaddr __rcu **ifap;
Denis V. Lunevb8542722007-12-01 00:21:31 +1100574 int err = -EINVAL;
575
Eric W. Biedermandfc47ef2012-11-16 03:03:00 +0000576 if (!capable(CAP_NET_ADMIN))
577 return -EPERM;
578
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800579 if (!net_eq(net, &init_net))
Denis V. Lunevb8542722007-12-01 00:21:31 +1100580 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Thomas Graf4a89c252006-11-24 17:14:51 -0800582 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, dn_ifa_policy);
583 if (err < 0)
584 goto errout;
585
Pavel Emelyanov3ccd8622007-11-30 23:43:31 +1100586 err = -ENODEV;
Thomas Graf4a89c252006-11-24 17:14:51 -0800587 ifm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 if ((dn_db = dn_dev_by_index(ifm->ifa_index)) == NULL)
Thomas Graf4a89c252006-11-24 17:14:51 -0800589 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Pavel Emelyanov3ccd8622007-11-30 23:43:31 +1100591 err = -EADDRNOTAVAIL;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000592 for (ifap = &dn_db->ifa_list;
593 (ifa = rtnl_dereference(*ifap)) != NULL;
594 ifap = &ifa->ifa_next) {
Thomas Graf4a89c252006-11-24 17:14:51 -0800595 if (tb[IFA_LOCAL] &&
596 nla_memcmp(tb[IFA_LOCAL], &ifa->ifa_local, 2))
597 continue;
598
599 if (tb[IFA_LABEL] && nla_strcmp(tb[IFA_LABEL], ifa->ifa_label))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 continue;
601
602 dn_dev_del_ifa(dn_db, ifap, 1);
603 return 0;
604 }
605
Thomas Graf4a89c252006-11-24 17:14:51 -0800606errout:
607 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608}
609
Thomas Graf4a89c252006-11-24 17:14:51 -0800610static int dn_nl_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900612 struct net *net = sock_net(skb->sk);
Thomas Graf4a89c252006-11-24 17:14:51 -0800613 struct nlattr *tb[IFA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 struct net_device *dev;
615 struct dn_dev *dn_db;
Thomas Graf4a89c252006-11-24 17:14:51 -0800616 struct ifaddrmsg *ifm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 struct dn_ifaddr *ifa;
Thomas Graf4a89c252006-11-24 17:14:51 -0800618 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Eric W. Biedermandfc47ef2012-11-16 03:03:00 +0000620 if (!capable(CAP_NET_ADMIN))
621 return -EPERM;
622
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800623 if (!net_eq(net, &init_net))
Denis V. Lunevb8542722007-12-01 00:21:31 +1100624 return -EINVAL;
625
Thomas Graf4a89c252006-11-24 17:14:51 -0800626 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, dn_ifa_policy);
627 if (err < 0)
628 return err;
629
630 if (tb[IFA_LOCAL] == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 return -EINVAL;
632
Thomas Graf4a89c252006-11-24 17:14:51 -0800633 ifm = nlmsg_data(nlh);
Eric W. Biederman881d9662007-09-17 11:56:21 -0700634 if ((dev = __dev_get_by_index(&init_net, ifm->ifa_index)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 return -ENODEV;
636
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000637 if ((dn_db = rtnl_dereference(dev->dn_ptr)) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 dn_db = dn_dev_create(dev, &err);
639 if (!dn_db)
640 return err;
641 }
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900642
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 if ((ifa = dn_dev_alloc_ifa()) == NULL)
644 return -ENOBUFS;
645
Thomas Graf4a89c252006-11-24 17:14:51 -0800646 if (tb[IFA_ADDRESS] == NULL)
647 tb[IFA_ADDRESS] = tb[IFA_LOCAL];
648
649 ifa->ifa_local = nla_get_le16(tb[IFA_LOCAL]);
650 ifa->ifa_address = nla_get_le16(tb[IFA_ADDRESS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 ifa->ifa_flags = ifm->ifa_flags;
652 ifa->ifa_scope = ifm->ifa_scope;
653 ifa->ifa_dev = dn_db;
Thomas Graf4a89c252006-11-24 17:14:51 -0800654
655 if (tb[IFA_LABEL])
656 nla_strlcpy(ifa->ifa_label, tb[IFA_LABEL], IFNAMSIZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 else
658 memcpy(ifa->ifa_label, dev->name, IFNAMSIZ);
659
Thomas Graf4a89c252006-11-24 17:14:51 -0800660 err = dn_dev_insert_ifa(dn_db, ifa);
661 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 dn_dev_free_ifa(ifa);
Thomas Graf4a89c252006-11-24 17:14:51 -0800663
664 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665}
666
Thomas Grafa6f01ca2006-11-24 17:14:07 -0800667static inline size_t dn_ifaddr_nlmsg_size(void)
668{
669 return NLMSG_ALIGN(sizeof(struct ifaddrmsg))
670 + nla_total_size(IFNAMSIZ) /* IFA_LABEL */
671 + nla_total_size(2) /* IFA_ADDRESS */
672 + nla_total_size(2); /* IFA_LOCAL */
673}
674
Thomas Graf4a89c252006-11-24 17:14:51 -0800675static int dn_nl_fill_ifaddr(struct sk_buff *skb, struct dn_ifaddr *ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000676 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677{
678 struct ifaddrmsg *ifm;
679 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Eric W. Biederman15e47302012-09-07 20:12:54 +0000681 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*ifm), flags);
Thomas Graf4a89c252006-11-24 17:14:51 -0800682 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -0800683 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Thomas Graf4a89c252006-11-24 17:14:51 -0800685 ifm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 ifm->ifa_family = AF_DECnet;
687 ifm->ifa_prefixlen = 16;
688 ifm->ifa_flags = ifa->ifa_flags | IFA_F_PERMANENT;
689 ifm->ifa_scope = ifa->ifa_scope;
690 ifm->ifa_index = ifa->ifa_dev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
David S. Millerb21dddb2012-04-01 20:15:14 -0400692 if ((ifa->ifa_address &&
693 nla_put_le16(skb, IFA_ADDRESS, ifa->ifa_address)) ||
694 (ifa->ifa_local &&
695 nla_put_le16(skb, IFA_LOCAL, ifa->ifa_local)) ||
696 (ifa->ifa_label[0] &&
697 nla_put_string(skb, IFA_LABEL, ifa->ifa_label)))
698 goto nla_put_failure;
Thomas Graf4a89c252006-11-24 17:14:51 -0800699 return nlmsg_end(skb, nlh);
700
701nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -0800702 nlmsg_cancel(skb, nlh);
703 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704}
705
Thomas Grafb020b942006-11-24 17:14:31 -0800706static void dn_ifaddr_notify(int event, struct dn_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707{
708 struct sk_buff *skb;
Thomas Grafdc738dd2006-08-15 00:33:35 -0700709 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Thomas Grafa6f01ca2006-11-24 17:14:07 -0800711 skb = alloc_skb(dn_ifaddr_nlmsg_size(), GFP_KERNEL);
Thomas Grafdc738dd2006-08-15 00:33:35 -0700712 if (skb == NULL)
713 goto errout;
714
Thomas Graf4a89c252006-11-24 17:14:51 -0800715 err = dn_nl_fill_ifaddr(skb, ifa, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -0800716 if (err < 0) {
717 /* -EMSGSIZE implies BUG in dn_ifaddr_nlmsg_size() */
718 WARN_ON(err == -EMSGSIZE);
719 kfree_skb(skb);
720 goto errout;
721 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -0800722 rtnl_notify(skb, &init_net, 0, RTNLGRP_DECnet_IFADDR, NULL, GFP_KERNEL);
723 return;
Thomas Grafdc738dd2006-08-15 00:33:35 -0700724errout:
725 if (err < 0)
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800726 rtnl_set_sk_err(&init_net, RTNLGRP_DECnet_IFADDR, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727}
728
Thomas Graf4a89c252006-11-24 17:14:51 -0800729static int dn_nl_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900731 struct net *net = sock_net(skb->sk);
Thomas Graf4a89c252006-11-24 17:14:51 -0800732 int idx, dn_idx = 0, skip_ndevs, skip_naddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 struct net_device *dev;
734 struct dn_dev *dn_db;
735 struct dn_ifaddr *ifa;
736
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800737 if (!net_eq(net, &init_net))
Denis V. Lunevb8542722007-12-01 00:21:31 +1100738 return 0;
739
Thomas Graf4a89c252006-11-24 17:14:51 -0800740 skip_ndevs = cb->args[0];
741 skip_naddr = cb->args[1];
742
Pavel Emelianov7562f872007-05-03 15:13:45 -0700743 idx = 0;
Eric Dumazete67f88d2011-04-27 22:56:07 +0000744 rcu_read_lock();
745 for_each_netdev_rcu(&init_net, dev) {
Thomas Graf4a89c252006-11-24 17:14:51 -0800746 if (idx < skip_ndevs)
Pavel Emelianov7562f872007-05-03 15:13:45 -0700747 goto cont;
Thomas Graf4a89c252006-11-24 17:14:51 -0800748 else if (idx > skip_ndevs) {
749 /* Only skip over addresses for first dev dumped
750 * in this iteration (idx == skip_ndevs) */
751 skip_naddr = 0;
752 }
753
Eric Dumazete67f88d2011-04-27 22:56:07 +0000754 if ((dn_db = rcu_dereference(dev->dn_ptr)) == NULL)
Pavel Emelianov7562f872007-05-03 15:13:45 -0700755 goto cont;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Eric Dumazete67f88d2011-04-27 22:56:07 +0000757 for (ifa = rcu_dereference(dn_db->ifa_list), dn_idx = 0; ifa;
758 ifa = rcu_dereference(ifa->ifa_next), dn_idx++) {
Thomas Graf4a89c252006-11-24 17:14:51 -0800759 if (dn_idx < skip_naddr)
Patrick McHardya2221f32007-09-11 10:45:15 +0200760 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
Eric W. Biederman15e47302012-09-07 20:12:54 +0000762 if (dn_nl_fill_ifaddr(skb, ifa, NETLINK_CB(cb->skb).portid,
Thomas Graf4a89c252006-11-24 17:14:51 -0800763 cb->nlh->nlmsg_seq, RTM_NEWADDR,
764 NLM_F_MULTI) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 goto done;
766 }
Pavel Emelianov7562f872007-05-03 15:13:45 -0700767cont:
768 idx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 }
770done:
Eric Dumazete67f88d2011-04-27 22:56:07 +0000771 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 cb->args[0] = idx;
773 cb->args[1] = dn_idx;
774
775 return skb->len;
776}
777
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800778static int dn_dev_get_first(struct net_device *dev, __le16 *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000780 struct dn_dev *dn_db;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 struct dn_ifaddr *ifa;
782 int rv = -ENODEV;
stephen hemminger41bdecf2009-11-11 07:39:27 +0000783
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000784 rcu_read_lock();
785 dn_db = rcu_dereference(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 if (dn_db == NULL)
787 goto out;
stephen hemminger41bdecf2009-11-11 07:39:27 +0000788
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000789 ifa = rcu_dereference(dn_db->ifa_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 if (ifa != NULL) {
791 *addr = ifa->ifa_local;
792 rv = 0;
793 }
794out:
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000795 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 return rv;
797}
798
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900799/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 * Find a default address to bind to.
801 *
802 * This is one of those areas where the initial VMS concepts don't really
803 * map onto the Linux concepts, and since we introduced multiple addresses
804 * per interface we have to cope with slightly odd ways of finding out what
805 * "our address" really is. Mostly it's not a problem; for this we just guess
806 * a sensible default. Eventually the routing code will take care of all the
807 * nasties for us I hope.
808 */
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800809int dn_dev_bind_default(__le16 *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810{
811 struct net_device *dev;
812 int rv;
813 dev = dn_dev_get_default();
814last_chance:
815 if (dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 rv = dn_dev_get_first(dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 dev_put(dev);
Eric W. Biederman2774c7a2007-09-26 22:10:56 -0700818 if (rv == 0 || dev == init_net.loopback_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 return rv;
820 }
Eric W. Biederman2774c7a2007-09-26 22:10:56 -0700821 dev = init_net.loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 dev_hold(dev);
823 goto last_chance;
824}
825
826static void dn_send_endnode_hello(struct net_device *dev, struct dn_ifaddr *ifa)
827{
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900828 struct endnode_hello_message *msg;
829 struct sk_buff *skb = NULL;
830 __le16 *pktlen;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000831 struct dn_dev *dn_db = rcu_dereference_raw(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900833 if ((skb = dn_alloc_skb(NULL, sizeof(*msg), GFP_ATOMIC)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 return;
835
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900836 skb->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900838 msg = (struct endnode_hello_message *)skb_put(skb,sizeof(*msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900840 msg->msgflg = 0x0D;
841 memcpy(msg->tiver, dn_eco_version, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 dn_dn2eth(msg->id, ifa->ifa_local);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900843 msg->iinfo = DN_RT_INFO_ENDN;
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800844 msg->blksize = cpu_to_le16(mtu2blksize(dev));
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900845 msg->area = 0x00;
846 memset(msg->seed, 0, 8);
847 memcpy(msg->neighbor, dn_hiord, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
849 if (dn_db->router) {
850 struct dn_neigh *dn = (struct dn_neigh *)dn_db->router;
851 dn_dn2eth(msg->neighbor, dn->addr);
852 }
853
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800854 msg->timer = cpu_to_le16((unsigned short)dn_db->parms.t3);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900855 msg->mpd = 0x00;
856 msg->datalen = 0x02;
857 memset(msg->data, 0xAA, 2);
858
859 pktlen = (__le16 *)skb_push(skb,2);
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800860 *pktlen = cpu_to_le16(skb->len - 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700862 skb_reset_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
864 dn_rt_finish_output(skb, dn_rt_all_rt_mcast, msg->id);
865}
866
867
868#define DRDELAY (5 * HZ)
869
870static int dn_am_i_a_router(struct dn_neigh *dn, struct dn_dev *dn_db, struct dn_ifaddr *ifa)
871{
872 /* First check time since device went up */
873 if ((jiffies - dn_db->uptime) < DRDELAY)
874 return 0;
875
876 /* If there is no router, then yes... */
877 if (!dn_db->router)
878 return 1;
879
880 /* otherwise only if we have a higher priority or.. */
881 if (dn->priority < dn_db->parms.priority)
882 return 1;
883
884 /* if we have equal priority and a higher node number */
885 if (dn->priority != dn_db->parms.priority)
886 return 0;
887
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800888 if (le16_to_cpu(dn->addr) < le16_to_cpu(ifa->ifa_local))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 return 1;
890
891 return 0;
892}
893
894static void dn_send_router_hello(struct net_device *dev, struct dn_ifaddr *ifa)
895{
896 int n;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000897 struct dn_dev *dn_db = rcu_dereference_raw(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 struct dn_neigh *dn = (struct dn_neigh *)dn_db->router;
899 struct sk_buff *skb;
900 size_t size;
901 unsigned char *ptr;
902 unsigned char *i1, *i2;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800903 __le16 *pktlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 char *src;
905
906 if (mtu2blksize(dev) < (26 + 7))
907 return;
908
909 n = mtu2blksize(dev) - 26;
910 n /= 7;
911
912 if (n > 32)
913 n = 32;
914
915 size = 2 + 26 + 7 * n;
916
917 if ((skb = dn_alloc_skb(NULL, size, GFP_ATOMIC)) == NULL)
918 return;
919
920 skb->dev = dev;
921 ptr = skb_put(skb, size);
922
923 *ptr++ = DN_RT_PKT_CNTL | DN_RT_PKT_ERTH;
924 *ptr++ = 2; /* ECO */
925 *ptr++ = 0;
926 *ptr++ = 0;
927 dn_dn2eth(ptr, ifa->ifa_local);
928 src = ptr;
929 ptr += ETH_ALEN;
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900930 *ptr++ = dn_db->parms.forwarding == 1 ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 DN_RT_INFO_L1RT : DN_RT_INFO_L2RT;
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800932 *((__le16 *)ptr) = cpu_to_le16(mtu2blksize(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 ptr += 2;
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900934 *ptr++ = dn_db->parms.priority; /* Priority */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 *ptr++ = 0; /* Area: Reserved */
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800936 *((__le16 *)ptr) = cpu_to_le16((unsigned short)dn_db->parms.t3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 ptr += 2;
938 *ptr++ = 0; /* MPD: Reserved */
939 i1 = ptr++;
940 memset(ptr, 0, 7); /* Name: Reserved */
941 ptr += 7;
942 i2 = ptr++;
943
944 n = dn_neigh_elist(dev, ptr, n);
945
946 *i2 = 7 * n;
947 *i1 = 8 + *i2;
948
949 skb_trim(skb, (27 + *i2));
950
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800951 pktlen = (__le16 *)skb_push(skb, 2);
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800952 *pktlen = cpu_to_le16(skb->len - 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700954 skb_reset_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
956 if (dn_am_i_a_router(dn, dn_db, ifa)) {
957 struct sk_buff *skb2 = skb_copy(skb, GFP_ATOMIC);
958 if (skb2) {
959 dn_rt_finish_output(skb2, dn_rt_all_end_mcast, src);
960 }
961 }
962
963 dn_rt_finish_output(skb, dn_rt_all_rt_mcast, src);
964}
965
966static void dn_send_brd_hello(struct net_device *dev, struct dn_ifaddr *ifa)
967{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000968 struct dn_dev *dn_db = rcu_dereference_raw(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
970 if (dn_db->parms.forwarding == 0)
971 dn_send_endnode_hello(dev, ifa);
972 else
973 dn_send_router_hello(dev, ifa);
974}
975
976static void dn_send_ptp_hello(struct net_device *dev, struct dn_ifaddr *ifa)
977{
978 int tdlen = 16;
979 int size = dev->hard_header_len + 2 + 4 + tdlen;
980 struct sk_buff *skb = dn_alloc_skb(NULL, size, GFP_ATOMIC);
981 int i;
982 unsigned char *ptr;
983 char src[ETH_ALEN];
984
985 if (skb == NULL)
986 return ;
987
988 skb->dev = dev;
989 skb_push(skb, dev->hard_header_len);
990 ptr = skb_put(skb, 2 + 4 + tdlen);
991
992 *ptr++ = DN_RT_PKT_HELO;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800993 *((__le16 *)ptr) = ifa->ifa_local;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 ptr += 2;
995 *ptr++ = tdlen;
996
997 for(i = 0; i < tdlen; i++)
998 *ptr++ = 0252;
999
1000 dn_dn2eth(src, ifa->ifa_local);
1001 dn_rt_finish_output(skb, dn_rt_all_rt_mcast, src);
1002}
1003
1004static int dn_eth_up(struct net_device *dev)
1005{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001006 struct dn_dev *dn_db = rcu_dereference_raw(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
1008 if (dn_db->parms.forwarding == 0)
Jiri Pirko22bedad32010-04-01 21:22:57 +00001009 dev_mc_add(dev, dn_rt_all_end_mcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 else
Jiri Pirko22bedad32010-04-01 21:22:57 +00001011 dev_mc_add(dev, dn_rt_all_rt_mcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 dn_db->use_long = 1;
1014
1015 return 0;
1016}
1017
1018static void dn_eth_down(struct net_device *dev)
1019{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001020 struct dn_dev *dn_db = rcu_dereference_raw(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
1022 if (dn_db->parms.forwarding == 0)
Jiri Pirko22bedad32010-04-01 21:22:57 +00001023 dev_mc_del(dev, dn_rt_all_end_mcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 else
Jiri Pirko22bedad32010-04-01 21:22:57 +00001025 dev_mc_del(dev, dn_rt_all_rt_mcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026}
1027
1028static void dn_dev_set_timer(struct net_device *dev);
1029
1030static void dn_dev_timer_func(unsigned long arg)
1031{
1032 struct net_device *dev = (struct net_device *)arg;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001033 struct dn_dev *dn_db;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 struct dn_ifaddr *ifa;
1035
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001036 rcu_read_lock();
1037 dn_db = rcu_dereference(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 if (dn_db->t3 <= dn_db->parms.t2) {
1039 if (dn_db->parms.timer3) {
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001040 for (ifa = rcu_dereference(dn_db->ifa_list);
1041 ifa;
1042 ifa = rcu_dereference(ifa->ifa_next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 if (!(ifa->ifa_flags & IFA_F_SECONDARY))
1044 dn_db->parms.timer3(dev, ifa);
1045 }
1046 }
1047 dn_db->t3 = dn_db->parms.t3;
1048 } else {
1049 dn_db->t3 -= dn_db->parms.t2;
1050 }
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001051 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 dn_dev_set_timer(dev);
1053}
1054
1055static void dn_dev_set_timer(struct net_device *dev)
1056{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001057 struct dn_dev *dn_db = rcu_dereference_raw(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
1059 if (dn_db->parms.t2 > dn_db->parms.t3)
1060 dn_db->parms.t2 = dn_db->parms.t3;
1061
1062 dn_db->timer.data = (unsigned long)dev;
1063 dn_db->timer.function = dn_dev_timer_func;
1064 dn_db->timer.expires = jiffies + (dn_db->parms.t2 * HZ);
1065
1066 add_timer(&dn_db->timer);
1067}
1068
Roel Kluin5eaa65b2008-12-10 15:18:31 -08001069static struct dn_dev *dn_dev_create(struct net_device *dev, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070{
1071 int i;
1072 struct dn_dev_parms *p = dn_dev_list;
1073 struct dn_dev *dn_db;
1074
1075 for(i = 0; i < DN_DEV_LIST_SIZE; i++, p++) {
1076 if (p->type == dev->type)
1077 break;
1078 }
1079
1080 *err = -ENODEV;
1081 if (i == DN_DEV_LIST_SIZE)
1082 return NULL;
1083
1084 *err = -ENOBUFS;
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001085 if ((dn_db = kzalloc(sizeof(struct dn_dev), GFP_ATOMIC)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 return NULL;
1087
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 memcpy(&dn_db->parms, p, sizeof(struct dn_dev_parms));
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001089
Eric Dumazetcf778b02012-01-12 04:41:32 +00001090 rcu_assign_pointer(dev->dn_ptr, dn_db);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 dn_db->dev = dev;
1092 init_timer(&dn_db->timer);
1093
1094 dn_db->uptime = jiffies;
Eric W. Biederman95743de2007-01-25 15:51:51 -08001095
1096 dn_db->neigh_parms = neigh_parms_alloc(dev, &dn_neigh_table);
1097 if (!dn_db->neigh_parms) {
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00001098 RCU_INIT_POINTER(dev->dn_ptr, NULL);
Eric W. Biederman95743de2007-01-25 15:51:51 -08001099 kfree(dn_db);
1100 return NULL;
1101 }
1102
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 if (dn_db->parms.up) {
1104 if (dn_db->parms.up(dev) < 0) {
Eric W. Biederman95743de2007-01-25 15:51:51 -08001105 neigh_parms_release(&dn_neigh_table, dn_db->neigh_parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 dev->dn_ptr = NULL;
1107 kfree(dn_db);
1108 return NULL;
1109 }
1110 }
1111
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 dn_dev_sysctl_register(dev, &dn_db->parms);
1113
1114 dn_dev_set_timer(dev);
1115
1116 *err = 0;
1117 return dn_db;
1118}
1119
1120
1121/*
1122 * This processes a device up event. We only start up
1123 * the loopback device & ethernet devices with correct
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001124 * MAC addresses automatically. Others must be started
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 * specifically.
1126 *
1127 * FIXME: How should we configure the loopback address ? If we could dispense
1128 * with using decnet_address here and for autobind, it will be one less thing
1129 * for users to worry about setting up.
1130 */
1131
1132void dn_dev_up(struct net_device *dev)
1133{
1134 struct dn_ifaddr *ifa;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -08001135 __le16 addr = decnet_address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 int maybe_default = 0;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001137 struct dn_dev *dn_db = rtnl_dereference(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
1139 if ((dev->type != ARPHRD_ETHER) && (dev->type != ARPHRD_LOOPBACK))
1140 return;
1141
1142 /*
1143 * Need to ensure that loopback device has a dn_db attached to it
1144 * to allow creation of neighbours against it, even though it might
1145 * not have a local address of its own. Might as well do the same for
1146 * all autoconfigured interfaces.
1147 */
1148 if (dn_db == NULL) {
1149 int err;
1150 dn_db = dn_dev_create(dev, &err);
1151 if (dn_db == NULL)
1152 return;
1153 }
1154
1155 if (dev->type == ARPHRD_ETHER) {
1156 if (memcmp(dev->dev_addr, dn_hiord, 4) != 0)
1157 return;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -08001158 addr = dn_eth2dn(dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 maybe_default = 1;
1160 }
1161
1162 if (addr == 0)
1163 return;
1164
1165 if ((ifa = dn_dev_alloc_ifa()) == NULL)
1166 return;
1167
1168 ifa->ifa_local = ifa->ifa_address = addr;
1169 ifa->ifa_flags = 0;
1170 ifa->ifa_scope = RT_SCOPE_UNIVERSE;
1171 strcpy(ifa->ifa_label, dev->name);
1172
1173 dn_dev_set_ifa(dev, ifa);
1174
1175 /*
1176 * Automagically set the default device to the first automatically
1177 * configured ethernet card in the system.
1178 */
1179 if (maybe_default) {
1180 dev_hold(dev);
1181 if (dn_dev_set_default(dev, 0))
1182 dev_put(dev);
1183 }
1184}
1185
1186static void dn_dev_delete(struct net_device *dev)
1187{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001188 struct dn_dev *dn_db = rtnl_dereference(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
1190 if (dn_db == NULL)
1191 return;
1192
1193 del_timer_sync(&dn_db->timer);
1194 dn_dev_sysctl_unregister(&dn_db->parms);
1195 dn_dev_check_default(dev);
1196 neigh_ifdown(&dn_neigh_table, dev);
1197
1198 if (dn_db->parms.down)
1199 dn_db->parms.down(dev);
1200
1201 dev->dn_ptr = NULL;
1202
1203 neigh_parms_release(&dn_neigh_table, dn_db->neigh_parms);
1204 neigh_ifdown(&dn_neigh_table, dev);
1205
1206 if (dn_db->router)
1207 neigh_release(dn_db->router);
1208 if (dn_db->peer)
1209 neigh_release(dn_db->peer);
1210
1211 kfree(dn_db);
1212}
1213
1214void dn_dev_down(struct net_device *dev)
1215{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001216 struct dn_dev *dn_db = rtnl_dereference(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 struct dn_ifaddr *ifa;
1218
1219 if (dn_db == NULL)
1220 return;
1221
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001222 while ((ifa = rtnl_dereference(dn_db->ifa_list)) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 dn_dev_del_ifa(dn_db, &dn_db->ifa_list, 0);
1224 dn_dev_free_ifa(ifa);
1225 }
1226
1227 dn_dev_delete(dev);
1228}
1229
1230void dn_dev_init_pkt(struct sk_buff *skb)
1231{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232}
1233
1234void dn_dev_veri_pkt(struct sk_buff *skb)
1235{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236}
1237
1238void dn_dev_hello(struct sk_buff *skb)
1239{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240}
1241
1242void dn_dev_devices_off(void)
1243{
1244 struct net_device *dev;
1245
1246 rtnl_lock();
Eric W. Biederman881d9662007-09-17 11:56:21 -07001247 for_each_netdev(&init_net, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 dn_dev_down(dev);
1249 rtnl_unlock();
1250
1251}
1252
1253void dn_dev_devices_on(void)
1254{
1255 struct net_device *dev;
1256
1257 rtnl_lock();
Eric W. Biederman881d9662007-09-17 11:56:21 -07001258 for_each_netdev(&init_net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 if (dev->flags & IFF_UP)
1260 dn_dev_up(dev);
1261 }
1262 rtnl_unlock();
1263}
1264
1265int register_dnaddr_notifier(struct notifier_block *nb)
1266{
Alan Sterne041c682006-03-27 01:16:30 -08001267 return blocking_notifier_chain_register(&dnaddr_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268}
1269
1270int unregister_dnaddr_notifier(struct notifier_block *nb)
1271{
Alan Sterne041c682006-03-27 01:16:30 -08001272 return blocking_notifier_chain_unregister(&dnaddr_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273}
1274
1275#ifdef CONFIG_PROC_FS
Pavel Emelianov7562f872007-05-03 15:13:45 -07001276static inline int is_dn_dev(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277{
Pavel Emelianov7562f872007-05-03 15:13:45 -07001278 return dev->dn_ptr != NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279}
1280
1281static void *dn_dev_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001282 __acquires(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283{
Pavel Emelianov7562f872007-05-03 15:13:45 -07001284 int i;
1285 struct net_device *dev;
1286
stephen hemmingerfa918602009-11-10 07:54:53 +00001287 rcu_read_lock();
Pavel Emelianov7562f872007-05-03 15:13:45 -07001288
1289 if (*pos == 0)
1290 return SEQ_START_TOKEN;
1291
1292 i = 1;
stephen hemmingerfa918602009-11-10 07:54:53 +00001293 for_each_netdev_rcu(&init_net, dev) {
Pavel Emelianov7562f872007-05-03 15:13:45 -07001294 if (!is_dn_dev(dev))
1295 continue;
1296
1297 if (i++ == *pos)
1298 return dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 }
Pavel Emelianov7562f872007-05-03 15:13:45 -07001300
1301 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302}
1303
1304static void *dn_dev_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1305{
Pavel Emelianov7562f872007-05-03 15:13:45 -07001306 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 ++*pos;
Pavel Emelianov7562f872007-05-03 15:13:45 -07001309
Joe Perchesea110732011-06-13 16:21:26 +00001310 dev = v;
Pavel Emelianov7562f872007-05-03 15:13:45 -07001311 if (v == SEQ_START_TOKEN)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001312 dev = net_device_entry(&init_net.dev_base_head);
Pavel Emelianov7562f872007-05-03 15:13:45 -07001313
stephen hemmingerfa918602009-11-10 07:54:53 +00001314 for_each_netdev_continue_rcu(&init_net, dev) {
Pavel Emelianov7562f872007-05-03 15:13:45 -07001315 if (!is_dn_dev(dev))
1316 continue;
1317
1318 return dev;
1319 }
1320
1321 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322}
1323
1324static void dn_dev_seq_stop(struct seq_file *seq, void *v)
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001325 __releases(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326{
stephen hemmingerfa918602009-11-10 07:54:53 +00001327 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328}
1329
1330static char *dn_type2asc(char type)
1331{
Joe Perches06f8fe12011-07-01 09:43:03 +00001332 switch (type) {
1333 case DN_DEV_BCAST:
1334 return "B";
1335 case DN_DEV_UCAST:
1336 return "U";
1337 case DN_DEV_MPOINT:
1338 return "M";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 }
1340
1341 return "?";
1342}
1343
1344static int dn_dev_seq_show(struct seq_file *seq, void *v)
1345{
1346 if (v == SEQ_START_TOKEN)
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001347 seq_puts(seq, "Name Flags T1 Timer1 T3 Timer3 BlkSize Pri State DevType Router Peer\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 else {
1349 struct net_device *dev = v;
1350 char peer_buf[DN_ASCBUF_LEN];
1351 char router_buf[DN_ASCBUF_LEN];
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001352 struct dn_dev *dn_db = rcu_dereference(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001354 seq_printf(seq, "%-8s %1s %04u %04u %04lu %04lu"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 " %04hu %03d %02x %-10s %-7s %-7s\n",
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001356 dev->name ? dev->name : "???",
1357 dn_type2asc(dn_db->parms.mode),
1358 0, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 dn_db->t3, dn_db->parms.t3,
1360 mtu2blksize(dev),
1361 dn_db->parms.priority,
1362 dn_db->parms.state, dn_db->parms.name,
Harvey Harrisonc4106aa2008-11-27 00:12:47 -08001363 dn_db->router ? dn_addr2asc(le16_to_cpu(*(__le16 *)dn_db->router->primary_key), router_buf) : "",
1364 dn_db->peer ? dn_addr2asc(le16_to_cpu(*(__le16 *)dn_db->peer->primary_key), peer_buf) : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 }
1366 return 0;
1367}
1368
Philippe De Muyter56b3d972007-07-10 23:07:31 -07001369static const struct seq_operations dn_dev_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 .start = dn_dev_seq_start,
1371 .next = dn_dev_seq_next,
1372 .stop = dn_dev_seq_stop,
1373 .show = dn_dev_seq_show,
1374};
1375
1376static int dn_dev_seq_open(struct inode *inode, struct file *file)
1377{
1378 return seq_open(file, &dn_dev_seq_ops);
1379}
1380
Arjan van de Ven9a321442007-02-12 00:55:35 -08001381static const struct file_operations dn_dev_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 .owner = THIS_MODULE,
1383 .open = dn_dev_seq_open,
1384 .read = seq_read,
1385 .llseek = seq_lseek,
1386 .release = seq_release,
1387};
1388
1389#endif /* CONFIG_PROC_FS */
1390
Alexey Dobriyan4e058062007-11-05 21:30:11 -08001391static int addr[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392module_param_array(addr, int, NULL, 0444);
1393MODULE_PARM_DESC(addr, "The DECnet address of this machine: area,node");
1394
1395void __init dn_dev_init(void)
1396{
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001397 if (addr[0] > 63 || addr[0] < 0) {
1398 printk(KERN_ERR "DECnet: Area must be between 0 and 63");
1399 return;
1400 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001402 if (addr[1] > 1023 || addr[1] < 0) {
1403 printk(KERN_ERR "DECnet: Node must be between 0 and 1023");
1404 return;
1405 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
Harvey Harrisonc4106aa2008-11-27 00:12:47 -08001407 decnet_address = cpu_to_le16((addr[0] << 10) | addr[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408
1409 dn_dev_devices_on();
1410
Greg Rosec7ac8672011-06-10 01:27:09 +00001411 rtnl_register(PF_DECnet, RTM_NEWADDR, dn_nl_newaddr, NULL, NULL);
1412 rtnl_register(PF_DECnet, RTM_DELADDR, dn_nl_deladdr, NULL, NULL);
1413 rtnl_register(PF_DECnet, RTM_GETADDR, NULL, dn_nl_dump_ifaddr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
Gao fengd4beaa62013-02-18 01:34:54 +00001415 proc_create("decnet_dev", S_IRUGO, init_net.proc_net, &dn_dev_seq_fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
1417#ifdef CONFIG_SYSCTL
1418 {
1419 int i;
1420 for(i = 0; i < DN_DEV_LIST_SIZE; i++)
1421 dn_dev_sysctl_register(NULL, &dn_dev_list[i]);
1422 }
1423#endif /* CONFIG_SYSCTL */
1424}
1425
1426void __exit dn_dev_cleanup(void)
1427{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428#ifdef CONFIG_SYSCTL
1429 {
1430 int i;
1431 for(i = 0; i < DN_DEV_LIST_SIZE; i++)
1432 dn_dev_sysctl_unregister(&dn_dev_list[i]);
1433 }
1434#endif /* CONFIG_SYSCTL */
1435
Gao fengece31ff2013-02-18 01:34:56 +00001436 remove_proc_entry("decnet_dev", init_net.proc_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
1438 dn_dev_devices_off();
1439}