blob: 4c27615340dc25987e0f3f3b3070790cad16c902 [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>
45#include <asm/system.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020046#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <net/neighbour.h>
48#include <net/dst.h>
49#include <net/flow.h>
Steven Whitehousea8731cb2006-08-09 15:56:46 -070050#include <net/fib_rules.h>
Thomas Grafa6f01ca2006-11-24 17:14:07 -080051#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#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
60static char dn_rt_all_end_mcast[ETH_ALEN] = {0xAB,0x00,0x00,0x04,0x00,0x00};
61static char dn_rt_all_rt_mcast[ETH_ALEN] = {0xAB,0x00,0x00,0x03,0x00,0x00};
62static char dn_hiord[ETH_ALEN] = {0xAA,0x00,0x04,0x00,0x00,0x00};
63static unsigned char dn_eco_version[3] = {0x02,0x00,0x00};
64
65extern struct neigh_table dn_neigh_table;
66
67/*
68 * decnet_address is kept in network order.
69 */
Steven Whitehousec4ea94a2006-03-20 22:42:39 -080070__le16 decnet_address = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
stephen hemmingere5c140a2009-11-11 07:40:36 +000072static DEFINE_SPINLOCK(dndev_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073static struct net_device *decnet_default_device;
Alan Sterne041c682006-03-27 01:16:30 -080074static BLOCKING_NOTIFIER_HEAD(dnaddr_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76static struct dn_dev *dn_dev_create(struct net_device *dev, int *err);
77static void dn_dev_delete(struct net_device *dev);
Thomas Grafb020b942006-11-24 17:14:31 -080078static void dn_ifaddr_notify(int event, struct dn_ifaddr *ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80static int dn_eth_up(struct net_device *);
81static void dn_eth_down(struct net_device *);
82static void dn_send_brd_hello(struct net_device *dev, struct dn_ifaddr *ifa);
83static void dn_send_ptp_hello(struct net_device *dev, struct dn_ifaddr *ifa);
84
85static 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 Torvalds1da177e2005-04-16 15:20:36 -070093 .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 Torvalds1da177e2005-04-16 15:20:36 -0700104 .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 Torvalds1da177e2005-04-16 15:20:36 -0700114 .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 Torvalds1da177e2005-04-16 15:20:36 -0700125 .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 Torvalds1da177e2005-04-16 15:20:36 -0700135 .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 Torvalds1da177e2005-04-16 15:20:36 -0700144 .timer3 = dn_send_brd_hello,
145}
146};
147
Denis Cheng8b14a532007-09-16 16:41:29 -0700148#define DN_DEV_LIST_SIZE ARRAY_SIZE(dn_dev_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
David S. Miller8fa0b312008-10-15 15:59:50 -0700150#define DN_DEV_PARMS_OFFSET(x) offsetof(struct dn_dev_parms, x)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152#ifdef CONFIG_SYSCTL
153
154static int min_t2[] = { 1 };
155static int max_t2[] = { 60 }; /* No max specified, but this seems sensible */
156static int min_t3[] = { 1 };
157static int max_t3[] = { 8191 }; /* Must fit in 16 bits when multiplied by BCT3MULT or T3MULT */
158
159static int min_priority[1];
160static int max_priority[] = { 127 }; /* From DECnet spec */
161
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700162static int dn_forwarding_proc(ctl_table *, int,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 void __user *, size_t *, loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164static struct dn_dev_sysctl_table {
165 struct ctl_table_header *sysctl_header;
166 ctl_table dn_dev_vars[5];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167} dn_dev_sysctl = {
168 NULL,
169 {
170 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 .procname = "forwarding",
172 .data = (void *)DN_DEV_PARMS_OFFSET(forwarding),
173 .maxlen = sizeof(int),
174 .mode = 0644,
175 .proc_handler = dn_forwarding_proc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 },
177 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 .procname = "priority",
179 .data = (void *)DN_DEV_PARMS_OFFSET(priority),
180 .maxlen = sizeof(int),
181 .mode = 0644,
182 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 .extra1 = &min_priority,
184 .extra2 = &max_priority
185 },
186 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 .procname = "t2",
188 .data = (void *)DN_DEV_PARMS_OFFSET(t2),
189 .maxlen = sizeof(int),
190 .mode = 0644,
191 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 .extra1 = &min_t2,
193 .extra2 = &max_t2
194 },
195 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 .procname = "t3",
197 .data = (void *)DN_DEV_PARMS_OFFSET(t3),
198 .maxlen = sizeof(int),
199 .mode = 0644,
200 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 .extra1 = &min_t3,
202 .extra2 = &max_t3
203 },
204 {0}
205 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206};
207
208static 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
Pavel Emelyanov3151a9a2008-01-09 00:31:49 -0800213#define DN_CTL_PATH_DEV 3
214
215 struct ctl_path dn_ctl_path[] = {
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800216 { .procname = "net", },
217 { .procname = "decnet", },
218 { .procname = "conf", },
Pavel Emelyanov3151a9a2008-01-09 00:31:49 -0800219 { /* to be set */ },
220 { },
221 };
222
Arnaldo Carvalho de Meloc66b7212006-11-17 12:29:21 -0200223 t = kmemdup(&dn_dev_sysctl, sizeof(*t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 if (t == NULL)
225 return;
226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 for(i = 0; i < ARRAY_SIZE(t->dn_dev_vars) - 1; i++) {
228 long offset = (long)t->dn_dev_vars[i].data;
229 t->dn_dev_vars[i].data = ((char *)parms) + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 }
231
232 if (dev) {
Pavel Emelyanov3151a9a2008-01-09 00:31:49 -0800233 dn_ctl_path[DN_CTL_PATH_DEV].procname = dev->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 } else {
Pavel Emelyanov3151a9a2008-01-09 00:31:49 -0800235 dn_ctl_path[DN_CTL_PATH_DEV].procname = parms->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 }
237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 t->dn_dev_vars[0].extra1 = (void *)dev;
239
Pavel Emelyanov3151a9a2008-01-09 00:31:49 -0800240 t->sysctl_header = register_sysctl_paths(dn_ctl_path, t->dn_dev_vars);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 if (t->sysctl_header == NULL)
242 kfree(t);
243 else
244 parms->sysctl = t;
245}
246
247static void dn_dev_sysctl_unregister(struct dn_dev_parms *parms)
248{
249 if (parms->sysctl) {
250 struct dn_dev_sysctl_table *t = parms->sysctl;
251 parms->sysctl = NULL;
252 unregister_sysctl_table(t->sysctl_header);
253 kfree(t);
254 }
255}
256
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900257static int dn_forwarding_proc(ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 void __user *buffer,
259 size_t *lenp, loff_t *ppos)
260{
261#ifdef CONFIG_DECNET_ROUTER
262 struct net_device *dev = table->extra1;
263 struct dn_dev *dn_db;
264 int err;
265 int tmp, old;
266
267 if (table->extra1 == NULL)
268 return -EINVAL;
269
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000270 dn_db = rcu_dereference_raw(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 old = dn_db->parms.forwarding;
272
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700273 err = proc_dointvec(table, write, buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275 if ((err >= 0) && write) {
276 if (dn_db->parms.forwarding < 0)
277 dn_db->parms.forwarding = 0;
278 if (dn_db->parms.forwarding > 2)
279 dn_db->parms.forwarding = 2;
280 /*
281 * What an ugly hack this is... its works, just. It
282 * would be nice if sysctl/proc were just that little
283 * bit more flexible so I don't have to write a special
284 * routine, or suffer hacks like this - SJW
285 */
286 tmp = dn_db->parms.forwarding;
287 dn_db->parms.forwarding = old;
288 if (dn_db->parms.down)
289 dn_db->parms.down(dev);
290 dn_db->parms.forwarding = tmp;
291 if (dn_db->parms.up)
292 dn_db->parms.up(dev);
293 }
294
295 return err;
296#else
297 return -EINVAL;
298#endif
299}
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301#else /* CONFIG_SYSCTL */
302static void dn_dev_sysctl_unregister(struct dn_dev_parms *parms)
303{
304}
305static void dn_dev_sysctl_register(struct net_device *dev, struct dn_dev_parms *parms)
306{
307}
308
309#endif /* CONFIG_SYSCTL */
310
311static inline __u16 mtu2blksize(struct net_device *dev)
312{
313 u32 blksize = dev->mtu;
314 if (blksize > 0xffff)
315 blksize = 0xffff;
316
317 if (dev->type == ARPHRD_ETHER ||
318 dev->type == ARPHRD_PPP ||
319 dev->type == ARPHRD_IPGRE ||
320 dev->type == ARPHRD_LOOPBACK)
321 blksize -= 2;
322
323 return (__u16)blksize;
324}
325
326static struct dn_ifaddr *dn_dev_alloc_ifa(void)
327{
328 struct dn_ifaddr *ifa;
329
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700330 ifa = kzalloc(sizeof(*ifa), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332 return ifa;
333}
334
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000335static void dn_dev_free_ifa(struct dn_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
Lai Jiangshan1e547752011-03-15 18:10:12 +0800337 kfree_rcu(ifa, rcu);
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000338}
339
340static void dn_dev_del_ifa(struct dn_dev *dn_db, struct dn_ifaddr __rcu **ifap, int destroy)
341{
342 struct dn_ifaddr *ifa1 = rtnl_dereference(*ifap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 unsigned char mac_addr[6];
344 struct net_device *dev = dn_db->dev;
345
346 ASSERT_RTNL();
347
348 *ifap = ifa1->ifa_next;
349
350 if (dn_db->dev->type == ARPHRD_ETHER) {
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800351 if (ifa1->ifa_local != dn_eth2dn(dev->dev_addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 dn_dn2eth(mac_addr, ifa1->ifa_local);
Jiri Pirko22bedad32010-04-01 21:22:57 +0000353 dev_mc_del(dev, mac_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 }
355 }
356
Thomas Grafb020b942006-11-24 17:14:31 -0800357 dn_ifaddr_notify(RTM_DELADDR, ifa1);
Alan Sterne041c682006-03-27 01:16:30 -0800358 blocking_notifier_call_chain(&dnaddr_chain, NETDEV_DOWN, ifa1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 if (destroy) {
360 dn_dev_free_ifa(ifa1);
361
362 if (dn_db->ifa_list == NULL)
363 dn_dev_delete(dn_db->dev);
364 }
365}
366
367static int dn_dev_insert_ifa(struct dn_dev *dn_db, struct dn_ifaddr *ifa)
368{
369 struct net_device *dev = dn_db->dev;
370 struct dn_ifaddr *ifa1;
371 unsigned char mac_addr[6];
372
373 ASSERT_RTNL();
374
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900375 /* Check for duplicates */
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000376 for (ifa1 = rtnl_dereference(dn_db->ifa_list);
377 ifa1 != NULL;
378 ifa1 = rtnl_dereference(ifa1->ifa_next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 if (ifa1->ifa_local == ifa->ifa_local)
380 return -EEXIST;
381 }
382
383 if (dev->type == ARPHRD_ETHER) {
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800384 if (ifa->ifa_local != dn_eth2dn(dev->dev_addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 dn_dn2eth(mac_addr, ifa->ifa_local);
Jiri Pirko22bedad32010-04-01 21:22:57 +0000386 dev_mc_add(dev, mac_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 }
388 }
389
390 ifa->ifa_next = dn_db->ifa_list;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000391 rcu_assign_pointer(dn_db->ifa_list, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Thomas Grafb020b942006-11-24 17:14:31 -0800393 dn_ifaddr_notify(RTM_NEWADDR, ifa);
Alan Sterne041c682006-03-27 01:16:30 -0800394 blocking_notifier_call_chain(&dnaddr_chain, NETDEV_UP, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
396 return 0;
397}
398
399static int dn_dev_set_ifa(struct net_device *dev, struct dn_ifaddr *ifa)
400{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000401 struct dn_dev *dn_db = rtnl_dereference(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 int rv;
403
404 if (dn_db == NULL) {
405 int err;
406 dn_db = dn_dev_create(dev, &err);
407 if (dn_db == NULL)
408 return err;
409 }
410
411 ifa->ifa_dev = dn_db;
412
413 if (dev->flags & IFF_LOOPBACK)
414 ifa->ifa_scope = RT_SCOPE_HOST;
415
416 rv = dn_dev_insert_ifa(dn_db, ifa);
417 if (rv)
418 dn_dev_free_ifa(ifa);
419 return rv;
420}
421
422
423int dn_dev_ioctl(unsigned int cmd, void __user *arg)
424{
425 char buffer[DN_IFREQ_SIZE];
426 struct ifreq *ifr = (struct ifreq *)buffer;
427 struct sockaddr_dn *sdn = (struct sockaddr_dn *)&ifr->ifr_addr;
428 struct dn_dev *dn_db;
429 struct net_device *dev;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000430 struct dn_ifaddr *ifa = NULL;
431 struct dn_ifaddr __rcu **ifap = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 int ret = 0;
433
434 if (copy_from_user(ifr, arg, DN_IFREQ_SIZE))
435 return -EFAULT;
436 ifr->ifr_name[IFNAMSIZ-1] = 0;
437
Eric W. Biederman881d9662007-09-17 11:56:21 -0700438 dev_load(&init_net, ifr->ifr_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440 switch(cmd) {
441 case SIOCGIFADDR:
442 break;
443 case SIOCSIFADDR:
444 if (!capable(CAP_NET_ADMIN))
445 return -EACCES;
446 if (sdn->sdn_family != AF_DECnet)
447 return -EINVAL;
448 break;
449 default:
450 return -EINVAL;
451 }
452
453 rtnl_lock();
454
Eric W. Biederman881d9662007-09-17 11:56:21 -0700455 if ((dev = __dev_get_by_name(&init_net, ifr->ifr_name)) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 ret = -ENODEV;
457 goto done;
458 }
459
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000460 if ((dn_db = rtnl_dereference(dev->dn_ptr)) != NULL) {
461 for (ifap = &dn_db->ifa_list;
462 (ifa = rtnl_dereference(*ifap)) != NULL;
463 ifap = &ifa->ifa_next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 if (strcmp(ifr->ifr_name, ifa->ifa_label) == 0)
465 break;
466 }
467
468 if (ifa == NULL && cmd != SIOCSIFADDR) {
469 ret = -EADDRNOTAVAIL;
470 goto done;
471 }
472
473 switch(cmd) {
474 case SIOCGIFADDR:
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800475 *((__le16 *)sdn->sdn_nodeaddr) = ifa->ifa_local;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 goto rarok;
477
478 case SIOCSIFADDR:
479 if (!ifa) {
480 if ((ifa = dn_dev_alloc_ifa()) == NULL) {
481 ret = -ENOBUFS;
482 break;
483 }
484 memcpy(ifa->ifa_label, dev->name, IFNAMSIZ);
485 } else {
486 if (ifa->ifa_local == dn_saddr2dn(sdn))
487 break;
488 dn_dev_del_ifa(dn_db, ifap, 0);
489 }
490
491 ifa->ifa_local = ifa->ifa_address = dn_saddr2dn(sdn);
492
493 ret = dn_dev_set_ifa(dev, ifa);
494 }
495done:
496 rtnl_unlock();
497
498 return ret;
499rarok:
500 if (copy_to_user(arg, ifr, DN_IFREQ_SIZE))
501 ret = -EFAULT;
502 goto done;
503}
504
505struct net_device *dn_dev_get_default(void)
506{
507 struct net_device *dev;
stephen hemmingere5c140a2009-11-11 07:40:36 +0000508
509 spin_lock(&dndev_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 dev = decnet_default_device;
511 if (dev) {
512 if (dev->dn_ptr)
513 dev_hold(dev);
514 else
515 dev = NULL;
516 }
stephen hemmingere5c140a2009-11-11 07:40:36 +0000517 spin_unlock(&dndev_lock);
518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 return dev;
520}
521
522int dn_dev_set_default(struct net_device *dev, int force)
523{
524 struct net_device *old = NULL;
525 int rv = -EBUSY;
526 if (!dev->dn_ptr)
527 return -ENODEV;
stephen hemmingere5c140a2009-11-11 07:40:36 +0000528
529 spin_lock(&dndev_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 if (force || decnet_default_device == NULL) {
531 old = decnet_default_device;
532 decnet_default_device = dev;
533 rv = 0;
534 }
stephen hemmingere5c140a2009-11-11 07:40:36 +0000535 spin_unlock(&dndev_lock);
536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 if (old)
Patrick Caulfield6a57b2e2006-03-29 13:57:31 -0800538 dev_put(old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 return rv;
540}
541
542static void dn_dev_check_default(struct net_device *dev)
543{
stephen hemmingere5c140a2009-11-11 07:40:36 +0000544 spin_lock(&dndev_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 if (dev == decnet_default_device) {
546 decnet_default_device = NULL;
547 } else {
548 dev = NULL;
549 }
stephen hemmingere5c140a2009-11-11 07:40:36 +0000550 spin_unlock(&dndev_lock);
551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 if (dev)
553 dev_put(dev);
554}
555
Eric Dumazetb4d745d2009-11-04 10:59:38 -0800556/*
557 * Called with RTNL
558 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559static struct dn_dev *dn_dev_by_index(int ifindex)
560{
561 struct net_device *dev;
562 struct dn_dev *dn_dev = NULL;
Eric Dumazetb4d745d2009-11-04 10:59:38 -0800563
564 dev = __dev_get_by_index(&init_net, ifindex);
565 if (dev)
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000566 dn_dev = rtnl_dereference(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
568 return dn_dev;
569}
570
Patrick McHardyef7c79e2007-06-05 12:38:30 -0700571static const struct nla_policy dn_ifa_policy[IFA_MAX+1] = {
Thomas Graf4a89c252006-11-24 17:14:51 -0800572 [IFA_ADDRESS] = { .type = NLA_U16 },
573 [IFA_LOCAL] = { .type = NLA_U16 },
574 [IFA_LABEL] = { .type = NLA_STRING,
575 .len = IFNAMSIZ - 1 },
576};
577
578static int dn_nl_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900580 struct net *net = sock_net(skb->sk);
Thomas Graf4a89c252006-11-24 17:14:51 -0800581 struct nlattr *tb[IFA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 struct dn_dev *dn_db;
Thomas Graf4a89c252006-11-24 17:14:51 -0800583 struct ifaddrmsg *ifm;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000584 struct dn_ifaddr *ifa;
585 struct dn_ifaddr __rcu **ifap;
Denis V. Lunevb8542722007-12-01 00:21:31 +1100586 int err = -EINVAL;
587
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800588 if (!net_eq(net, &init_net))
Denis V. Lunevb8542722007-12-01 00:21:31 +1100589 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Thomas Graf4a89c252006-11-24 17:14:51 -0800591 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, dn_ifa_policy);
592 if (err < 0)
593 goto errout;
594
Pavel Emelyanov3ccd8622007-11-30 23:43:31 +1100595 err = -ENODEV;
Thomas Graf4a89c252006-11-24 17:14:51 -0800596 ifm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 if ((dn_db = dn_dev_by_index(ifm->ifa_index)) == NULL)
Thomas Graf4a89c252006-11-24 17:14:51 -0800598 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Pavel Emelyanov3ccd8622007-11-30 23:43:31 +1100600 err = -EADDRNOTAVAIL;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000601 for (ifap = &dn_db->ifa_list;
602 (ifa = rtnl_dereference(*ifap)) != NULL;
603 ifap = &ifa->ifa_next) {
Thomas Graf4a89c252006-11-24 17:14:51 -0800604 if (tb[IFA_LOCAL] &&
605 nla_memcmp(tb[IFA_LOCAL], &ifa->ifa_local, 2))
606 continue;
607
608 if (tb[IFA_LABEL] && nla_strcmp(tb[IFA_LABEL], ifa->ifa_label))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 continue;
610
611 dn_dev_del_ifa(dn_db, ifap, 1);
612 return 0;
613 }
614
Thomas Graf4a89c252006-11-24 17:14:51 -0800615errout:
616 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617}
618
Thomas Graf4a89c252006-11-24 17:14:51 -0800619static int dn_nl_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900621 struct net *net = sock_net(skb->sk);
Thomas Graf4a89c252006-11-24 17:14:51 -0800622 struct nlattr *tb[IFA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 struct net_device *dev;
624 struct dn_dev *dn_db;
Thomas Graf4a89c252006-11-24 17:14:51 -0800625 struct ifaddrmsg *ifm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 struct dn_ifaddr *ifa;
Thomas Graf4a89c252006-11-24 17:14:51 -0800627 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800629 if (!net_eq(net, &init_net))
Denis V. Lunevb8542722007-12-01 00:21:31 +1100630 return -EINVAL;
631
Thomas Graf4a89c252006-11-24 17:14:51 -0800632 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, dn_ifa_policy);
633 if (err < 0)
634 return err;
635
636 if (tb[IFA_LOCAL] == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 return -EINVAL;
638
Thomas Graf4a89c252006-11-24 17:14:51 -0800639 ifm = nlmsg_data(nlh);
Eric W. Biederman881d9662007-09-17 11:56:21 -0700640 if ((dev = __dev_get_by_index(&init_net, ifm->ifa_index)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 return -ENODEV;
642
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000643 if ((dn_db = rtnl_dereference(dev->dn_ptr)) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 dn_db = dn_dev_create(dev, &err);
645 if (!dn_db)
646 return err;
647 }
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 if ((ifa = dn_dev_alloc_ifa()) == NULL)
650 return -ENOBUFS;
651
Thomas Graf4a89c252006-11-24 17:14:51 -0800652 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]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 ifa->ifa_flags = ifm->ifa_flags;
658 ifa->ifa_scope = ifm->ifa_scope;
659 ifa->ifa_dev = dn_db;
Thomas Graf4a89c252006-11-24 17:14:51 -0800660
661 if (tb[IFA_LABEL])
662 nla_strlcpy(ifa->ifa_label, tb[IFA_LABEL], IFNAMSIZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 else
664 memcpy(ifa->ifa_label, dev->name, IFNAMSIZ);
665
Thomas Graf4a89c252006-11-24 17:14:51 -0800666 err = dn_dev_insert_ifa(dn_db, ifa);
667 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 dn_dev_free_ifa(ifa);
Thomas Graf4a89c252006-11-24 17:14:51 -0800669
670 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671}
672
Thomas Grafa6f01ca2006-11-24 17:14:07 -0800673static inline size_t dn_ifaddr_nlmsg_size(void)
674{
675 return NLMSG_ALIGN(sizeof(struct ifaddrmsg))
676 + nla_total_size(IFNAMSIZ) /* IFA_LABEL */
677 + nla_total_size(2) /* IFA_ADDRESS */
678 + nla_total_size(2); /* IFA_LOCAL */
679}
680
Thomas Graf4a89c252006-11-24 17:14:51 -0800681static int dn_nl_fill_ifaddr(struct sk_buff *skb, struct dn_ifaddr *ifa,
682 u32 pid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683{
684 struct ifaddrmsg *ifm;
685 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Thomas Graf4a89c252006-11-24 17:14:51 -0800687 nlh = nlmsg_put(skb, pid, seq, event, sizeof(*ifm), flags);
688 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -0800689 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Thomas Graf4a89c252006-11-24 17:14:51 -0800691 ifm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 ifm->ifa_family = AF_DECnet;
693 ifm->ifa_prefixlen = 16;
694 ifm->ifa_flags = ifa->ifa_flags | IFA_F_PERMANENT;
695 ifm->ifa_scope = ifa->ifa_scope;
696 ifm->ifa_index = ifa->ifa_dev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Thomas Graf4a89c252006-11-24 17:14:51 -0800698 if (ifa->ifa_address)
699 NLA_PUT_LE16(skb, IFA_ADDRESS, ifa->ifa_address);
700 if (ifa->ifa_local)
701 NLA_PUT_LE16(skb, IFA_LOCAL, ifa->ifa_local);
702 if (ifa->ifa_label[0])
703 NLA_PUT_STRING(skb, IFA_LABEL, ifa->ifa_label);
704
705 return nlmsg_end(skb, nlh);
706
707nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -0800708 nlmsg_cancel(skb, nlh);
709 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710}
711
Thomas Grafb020b942006-11-24 17:14:31 -0800712static void dn_ifaddr_notify(int event, struct dn_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713{
714 struct sk_buff *skb;
Thomas Grafdc738dd2006-08-15 00:33:35 -0700715 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
Thomas Grafa6f01ca2006-11-24 17:14:07 -0800717 skb = alloc_skb(dn_ifaddr_nlmsg_size(), GFP_KERNEL);
Thomas Grafdc738dd2006-08-15 00:33:35 -0700718 if (skb == NULL)
719 goto errout;
720
Thomas Graf4a89c252006-11-24 17:14:51 -0800721 err = dn_nl_fill_ifaddr(skb, ifa, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -0800722 if (err < 0) {
723 /* -EMSGSIZE implies BUG in dn_ifaddr_nlmsg_size() */
724 WARN_ON(err == -EMSGSIZE);
725 kfree_skb(skb);
726 goto errout;
727 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -0800728 rtnl_notify(skb, &init_net, 0, RTNLGRP_DECnet_IFADDR, NULL, GFP_KERNEL);
729 return;
Thomas Grafdc738dd2006-08-15 00:33:35 -0700730errout:
731 if (err < 0)
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800732 rtnl_set_sk_err(&init_net, RTNLGRP_DECnet_IFADDR, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733}
734
Thomas Graf4a89c252006-11-24 17:14:51 -0800735static int dn_nl_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900737 struct net *net = sock_net(skb->sk);
Thomas Graf4a89c252006-11-24 17:14:51 -0800738 int idx, dn_idx = 0, skip_ndevs, skip_naddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 struct net_device *dev;
740 struct dn_dev *dn_db;
741 struct dn_ifaddr *ifa;
742
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800743 if (!net_eq(net, &init_net))
Denis V. Lunevb8542722007-12-01 00:21:31 +1100744 return 0;
745
Thomas Graf4a89c252006-11-24 17:14:51 -0800746 skip_ndevs = cb->args[0];
747 skip_naddr = cb->args[1];
748
Pavel Emelianov7562f872007-05-03 15:13:45 -0700749 idx = 0;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700750 for_each_netdev(&init_net, dev) {
Thomas Graf4a89c252006-11-24 17:14:51 -0800751 if (idx < skip_ndevs)
Pavel Emelianov7562f872007-05-03 15:13:45 -0700752 goto cont;
Thomas Graf4a89c252006-11-24 17:14:51 -0800753 else if (idx > skip_ndevs) {
754 /* Only skip over addresses for first dev dumped
755 * in this iteration (idx == skip_ndevs) */
756 skip_naddr = 0;
757 }
758
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000759 if ((dn_db = rtnl_dereference(dev->dn_ptr)) == NULL)
Pavel Emelianov7562f872007-05-03 15:13:45 -0700760 goto cont;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000762 for (ifa = rtnl_dereference(dn_db->ifa_list), dn_idx = 0; ifa;
763 ifa = rtnl_dereference(ifa->ifa_next), dn_idx++) {
Thomas Graf4a89c252006-11-24 17:14:51 -0800764 if (dn_idx < skip_naddr)
Patrick McHardya2221f32007-09-11 10:45:15 +0200765 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Thomas Graf4a89c252006-11-24 17:14:51 -0800767 if (dn_nl_fill_ifaddr(skb, ifa, NETLINK_CB(cb->skb).pid,
768 cb->nlh->nlmsg_seq, RTM_NEWADDR,
769 NLM_F_MULTI) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 goto done;
771 }
Pavel Emelianov7562f872007-05-03 15:13:45 -0700772cont:
773 idx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 }
775done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 cb->args[0] = idx;
777 cb->args[1] = dn_idx;
778
779 return skb->len;
780}
781
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800782static int dn_dev_get_first(struct net_device *dev, __le16 *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000784 struct dn_dev *dn_db;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 struct dn_ifaddr *ifa;
786 int rv = -ENODEV;
stephen hemminger41bdecf2009-11-11 07:39:27 +0000787
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000788 rcu_read_lock();
789 dn_db = rcu_dereference(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 if (dn_db == NULL)
791 goto out;
stephen hemminger41bdecf2009-11-11 07:39:27 +0000792
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000793 ifa = rcu_dereference(dn_db->ifa_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 if (ifa != NULL) {
795 *addr = ifa->ifa_local;
796 rv = 0;
797 }
798out:
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000799 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 return rv;
801}
802
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900803/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 * Find a default address to bind to.
805 *
806 * This is one of those areas where the initial VMS concepts don't really
807 * map onto the Linux concepts, and since we introduced multiple addresses
808 * per interface we have to cope with slightly odd ways of finding out what
809 * "our address" really is. Mostly it's not a problem; for this we just guess
810 * a sensible default. Eventually the routing code will take care of all the
811 * nasties for us I hope.
812 */
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800813int dn_dev_bind_default(__le16 *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
815 struct net_device *dev;
816 int rv;
817 dev = dn_dev_get_default();
818last_chance:
819 if (dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 rv = dn_dev_get_first(dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 dev_put(dev);
Eric W. Biederman2774c7a2007-09-26 22:10:56 -0700822 if (rv == 0 || dev == init_net.loopback_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 return rv;
824 }
Eric W. Biederman2774c7a2007-09-26 22:10:56 -0700825 dev = init_net.loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 dev_hold(dev);
827 goto last_chance;
828}
829
830static void dn_send_endnode_hello(struct net_device *dev, struct dn_ifaddr *ifa)
831{
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900832 struct endnode_hello_message *msg;
833 struct sk_buff *skb = NULL;
834 __le16 *pktlen;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000835 struct dn_dev *dn_db = rcu_dereference_raw(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900837 if ((skb = dn_alloc_skb(NULL, sizeof(*msg), GFP_ATOMIC)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 return;
839
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900840 skb->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900842 msg = (struct endnode_hello_message *)skb_put(skb,sizeof(*msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900844 msg->msgflg = 0x0D;
845 memcpy(msg->tiver, dn_eco_version, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 dn_dn2eth(msg->id, ifa->ifa_local);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900847 msg->iinfo = DN_RT_INFO_ENDN;
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800848 msg->blksize = cpu_to_le16(mtu2blksize(dev));
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900849 msg->area = 0x00;
850 memset(msg->seed, 0, 8);
851 memcpy(msg->neighbor, dn_hiord, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
853 if (dn_db->router) {
854 struct dn_neigh *dn = (struct dn_neigh *)dn_db->router;
855 dn_dn2eth(msg->neighbor, dn->addr);
856 }
857
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800858 msg->timer = cpu_to_le16((unsigned short)dn_db->parms.t3);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900859 msg->mpd = 0x00;
860 msg->datalen = 0x02;
861 memset(msg->data, 0xAA, 2);
862
863 pktlen = (__le16 *)skb_push(skb,2);
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800864 *pktlen = cpu_to_le16(skb->len - 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700866 skb_reset_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
868 dn_rt_finish_output(skb, dn_rt_all_rt_mcast, msg->id);
869}
870
871
872#define DRDELAY (5 * HZ)
873
874static int dn_am_i_a_router(struct dn_neigh *dn, struct dn_dev *dn_db, struct dn_ifaddr *ifa)
875{
876 /* First check time since device went up */
877 if ((jiffies - dn_db->uptime) < DRDELAY)
878 return 0;
879
880 /* If there is no router, then yes... */
881 if (!dn_db->router)
882 return 1;
883
884 /* otherwise only if we have a higher priority or.. */
885 if (dn->priority < dn_db->parms.priority)
886 return 1;
887
888 /* if we have equal priority and a higher node number */
889 if (dn->priority != dn_db->parms.priority)
890 return 0;
891
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800892 if (le16_to_cpu(dn->addr) < le16_to_cpu(ifa->ifa_local))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 return 1;
894
895 return 0;
896}
897
898static void dn_send_router_hello(struct net_device *dev, struct dn_ifaddr *ifa)
899{
900 int n;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000901 struct dn_dev *dn_db = rcu_dereference_raw(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 struct dn_neigh *dn = (struct dn_neigh *)dn_db->router;
903 struct sk_buff *skb;
904 size_t size;
905 unsigned char *ptr;
906 unsigned char *i1, *i2;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800907 __le16 *pktlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 char *src;
909
910 if (mtu2blksize(dev) < (26 + 7))
911 return;
912
913 n = mtu2blksize(dev) - 26;
914 n /= 7;
915
916 if (n > 32)
917 n = 32;
918
919 size = 2 + 26 + 7 * n;
920
921 if ((skb = dn_alloc_skb(NULL, size, GFP_ATOMIC)) == NULL)
922 return;
923
924 skb->dev = dev;
925 ptr = skb_put(skb, size);
926
927 *ptr++ = DN_RT_PKT_CNTL | DN_RT_PKT_ERTH;
928 *ptr++ = 2; /* ECO */
929 *ptr++ = 0;
930 *ptr++ = 0;
931 dn_dn2eth(ptr, ifa->ifa_local);
932 src = ptr;
933 ptr += ETH_ALEN;
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900934 *ptr++ = dn_db->parms.forwarding == 1 ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 DN_RT_INFO_L1RT : DN_RT_INFO_L2RT;
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800936 *((__le16 *)ptr) = cpu_to_le16(mtu2blksize(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 ptr += 2;
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900938 *ptr++ = dn_db->parms.priority; /* Priority */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 *ptr++ = 0; /* Area: Reserved */
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800940 *((__le16 *)ptr) = cpu_to_le16((unsigned short)dn_db->parms.t3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 ptr += 2;
942 *ptr++ = 0; /* MPD: Reserved */
943 i1 = ptr++;
944 memset(ptr, 0, 7); /* Name: Reserved */
945 ptr += 7;
946 i2 = ptr++;
947
948 n = dn_neigh_elist(dev, ptr, n);
949
950 *i2 = 7 * n;
951 *i1 = 8 + *i2;
952
953 skb_trim(skb, (27 + *i2));
954
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800955 pktlen = (__le16 *)skb_push(skb, 2);
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800956 *pktlen = cpu_to_le16(skb->len - 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700958 skb_reset_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
960 if (dn_am_i_a_router(dn, dn_db, ifa)) {
961 struct sk_buff *skb2 = skb_copy(skb, GFP_ATOMIC);
962 if (skb2) {
963 dn_rt_finish_output(skb2, dn_rt_all_end_mcast, src);
964 }
965 }
966
967 dn_rt_finish_output(skb, dn_rt_all_rt_mcast, src);
968}
969
970static void dn_send_brd_hello(struct net_device *dev, struct dn_ifaddr *ifa)
971{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000972 struct dn_dev *dn_db = rcu_dereference_raw(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
974 if (dn_db->parms.forwarding == 0)
975 dn_send_endnode_hello(dev, ifa);
976 else
977 dn_send_router_hello(dev, ifa);
978}
979
980static void dn_send_ptp_hello(struct net_device *dev, struct dn_ifaddr *ifa)
981{
982 int tdlen = 16;
983 int size = dev->hard_header_len + 2 + 4 + tdlen;
984 struct sk_buff *skb = dn_alloc_skb(NULL, size, GFP_ATOMIC);
985 int i;
986 unsigned char *ptr;
987 char src[ETH_ALEN];
988
989 if (skb == NULL)
990 return ;
991
992 skb->dev = dev;
993 skb_push(skb, dev->hard_header_len);
994 ptr = skb_put(skb, 2 + 4 + tdlen);
995
996 *ptr++ = DN_RT_PKT_HELO;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800997 *((__le16 *)ptr) = ifa->ifa_local;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 ptr += 2;
999 *ptr++ = tdlen;
1000
1001 for(i = 0; i < tdlen; i++)
1002 *ptr++ = 0252;
1003
1004 dn_dn2eth(src, ifa->ifa_local);
1005 dn_rt_finish_output(skb, dn_rt_all_rt_mcast, src);
1006}
1007
1008static int dn_eth_up(struct net_device *dev)
1009{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001010 struct dn_dev *dn_db = rcu_dereference_raw(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
1012 if (dn_db->parms.forwarding == 0)
Jiri Pirko22bedad32010-04-01 21:22:57 +00001013 dev_mc_add(dev, dn_rt_all_end_mcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 else
Jiri Pirko22bedad32010-04-01 21:22:57 +00001015 dev_mc_add(dev, dn_rt_all_rt_mcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 dn_db->use_long = 1;
1018
1019 return 0;
1020}
1021
1022static void dn_eth_down(struct net_device *dev)
1023{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001024 struct dn_dev *dn_db = rcu_dereference_raw(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
1026 if (dn_db->parms.forwarding == 0)
Jiri Pirko22bedad32010-04-01 21:22:57 +00001027 dev_mc_del(dev, dn_rt_all_end_mcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 else
Jiri Pirko22bedad32010-04-01 21:22:57 +00001029 dev_mc_del(dev, dn_rt_all_rt_mcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030}
1031
1032static void dn_dev_set_timer(struct net_device *dev);
1033
1034static void dn_dev_timer_func(unsigned long arg)
1035{
1036 struct net_device *dev = (struct net_device *)arg;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001037 struct dn_dev *dn_db;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 struct dn_ifaddr *ifa;
1039
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001040 rcu_read_lock();
1041 dn_db = rcu_dereference(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 if (dn_db->t3 <= dn_db->parms.t2) {
1043 if (dn_db->parms.timer3) {
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001044 for (ifa = rcu_dereference(dn_db->ifa_list);
1045 ifa;
1046 ifa = rcu_dereference(ifa->ifa_next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 if (!(ifa->ifa_flags & IFA_F_SECONDARY))
1048 dn_db->parms.timer3(dev, ifa);
1049 }
1050 }
1051 dn_db->t3 = dn_db->parms.t3;
1052 } else {
1053 dn_db->t3 -= dn_db->parms.t2;
1054 }
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001055 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 dn_dev_set_timer(dev);
1057}
1058
1059static void dn_dev_set_timer(struct net_device *dev)
1060{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001061 struct dn_dev *dn_db = rcu_dereference_raw(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
1063 if (dn_db->parms.t2 > dn_db->parms.t3)
1064 dn_db->parms.t2 = dn_db->parms.t3;
1065
1066 dn_db->timer.data = (unsigned long)dev;
1067 dn_db->timer.function = dn_dev_timer_func;
1068 dn_db->timer.expires = jiffies + (dn_db->parms.t2 * HZ);
1069
1070 add_timer(&dn_db->timer);
1071}
1072
Roel Kluin5eaa65b2008-12-10 15:18:31 -08001073static struct dn_dev *dn_dev_create(struct net_device *dev, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074{
1075 int i;
1076 struct dn_dev_parms *p = dn_dev_list;
1077 struct dn_dev *dn_db;
1078
1079 for(i = 0; i < DN_DEV_LIST_SIZE; i++, p++) {
1080 if (p->type == dev->type)
1081 break;
1082 }
1083
1084 *err = -ENODEV;
1085 if (i == DN_DEV_LIST_SIZE)
1086 return NULL;
1087
1088 *err = -ENOBUFS;
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001089 if ((dn_db = kzalloc(sizeof(struct dn_dev), GFP_ATOMIC)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 return NULL;
1091
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 memcpy(&dn_db->parms, p, sizeof(struct dn_dev_parms));
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001093
1094 rcu_assign_pointer(dev->dn_ptr, dn_db);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 dn_db->dev = dev;
1096 init_timer(&dn_db->timer);
1097
1098 dn_db->uptime = jiffies;
Eric W. Biederman95743de2007-01-25 15:51:51 -08001099
1100 dn_db->neigh_parms = neigh_parms_alloc(dev, &dn_neigh_table);
1101 if (!dn_db->neigh_parms) {
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001102 rcu_assign_pointer(dev->dn_ptr, NULL);
Eric W. Biederman95743de2007-01-25 15:51:51 -08001103 kfree(dn_db);
1104 return NULL;
1105 }
1106
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 if (dn_db->parms.up) {
1108 if (dn_db->parms.up(dev) < 0) {
Eric W. Biederman95743de2007-01-25 15:51:51 -08001109 neigh_parms_release(&dn_neigh_table, dn_db->neigh_parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 dev->dn_ptr = NULL;
1111 kfree(dn_db);
1112 return NULL;
1113 }
1114 }
1115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 dn_dev_sysctl_register(dev, &dn_db->parms);
1117
1118 dn_dev_set_timer(dev);
1119
1120 *err = 0;
1121 return dn_db;
1122}
1123
1124
1125/*
1126 * This processes a device up event. We only start up
1127 * the loopback device & ethernet devices with correct
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001128 * MAC addresses automatically. Others must be started
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 * specifically.
1130 *
1131 * FIXME: How should we configure the loopback address ? If we could dispense
1132 * with using decnet_address here and for autobind, it will be one less thing
1133 * for users to worry about setting up.
1134 */
1135
1136void dn_dev_up(struct net_device *dev)
1137{
1138 struct dn_ifaddr *ifa;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -08001139 __le16 addr = decnet_address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 int maybe_default = 0;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001141 struct dn_dev *dn_db = rtnl_dereference(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
1143 if ((dev->type != ARPHRD_ETHER) && (dev->type != ARPHRD_LOOPBACK))
1144 return;
1145
1146 /*
1147 * Need to ensure that loopback device has a dn_db attached to it
1148 * to allow creation of neighbours against it, even though it might
1149 * not have a local address of its own. Might as well do the same for
1150 * all autoconfigured interfaces.
1151 */
1152 if (dn_db == NULL) {
1153 int err;
1154 dn_db = dn_dev_create(dev, &err);
1155 if (dn_db == NULL)
1156 return;
1157 }
1158
1159 if (dev->type == ARPHRD_ETHER) {
1160 if (memcmp(dev->dev_addr, dn_hiord, 4) != 0)
1161 return;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -08001162 addr = dn_eth2dn(dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 maybe_default = 1;
1164 }
1165
1166 if (addr == 0)
1167 return;
1168
1169 if ((ifa = dn_dev_alloc_ifa()) == NULL)
1170 return;
1171
1172 ifa->ifa_local = ifa->ifa_address = addr;
1173 ifa->ifa_flags = 0;
1174 ifa->ifa_scope = RT_SCOPE_UNIVERSE;
1175 strcpy(ifa->ifa_label, dev->name);
1176
1177 dn_dev_set_ifa(dev, ifa);
1178
1179 /*
1180 * Automagically set the default device to the first automatically
1181 * configured ethernet card in the system.
1182 */
1183 if (maybe_default) {
1184 dev_hold(dev);
1185 if (dn_dev_set_default(dev, 0))
1186 dev_put(dev);
1187 }
1188}
1189
1190static void dn_dev_delete(struct net_device *dev)
1191{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001192 struct dn_dev *dn_db = rtnl_dereference(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
1194 if (dn_db == NULL)
1195 return;
1196
1197 del_timer_sync(&dn_db->timer);
1198 dn_dev_sysctl_unregister(&dn_db->parms);
1199 dn_dev_check_default(dev);
1200 neigh_ifdown(&dn_neigh_table, dev);
1201
1202 if (dn_db->parms.down)
1203 dn_db->parms.down(dev);
1204
1205 dev->dn_ptr = NULL;
1206
1207 neigh_parms_release(&dn_neigh_table, dn_db->neigh_parms);
1208 neigh_ifdown(&dn_neigh_table, dev);
1209
1210 if (dn_db->router)
1211 neigh_release(dn_db->router);
1212 if (dn_db->peer)
1213 neigh_release(dn_db->peer);
1214
1215 kfree(dn_db);
1216}
1217
1218void dn_dev_down(struct net_device *dev)
1219{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001220 struct dn_dev *dn_db = rtnl_dereference(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 struct dn_ifaddr *ifa;
1222
1223 if (dn_db == NULL)
1224 return;
1225
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001226 while ((ifa = rtnl_dereference(dn_db->ifa_list)) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 dn_dev_del_ifa(dn_db, &dn_db->ifa_list, 0);
1228 dn_dev_free_ifa(ifa);
1229 }
1230
1231 dn_dev_delete(dev);
1232}
1233
1234void dn_dev_init_pkt(struct sk_buff *skb)
1235{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236}
1237
1238void dn_dev_veri_pkt(struct sk_buff *skb)
1239{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240}
1241
1242void dn_dev_hello(struct sk_buff *skb)
1243{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244}
1245
1246void dn_dev_devices_off(void)
1247{
1248 struct net_device *dev;
1249
1250 rtnl_lock();
Eric W. Biederman881d9662007-09-17 11:56:21 -07001251 for_each_netdev(&init_net, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 dn_dev_down(dev);
1253 rtnl_unlock();
1254
1255}
1256
1257void dn_dev_devices_on(void)
1258{
1259 struct net_device *dev;
1260
1261 rtnl_lock();
Eric W. Biederman881d9662007-09-17 11:56:21 -07001262 for_each_netdev(&init_net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 if (dev->flags & IFF_UP)
1264 dn_dev_up(dev);
1265 }
1266 rtnl_unlock();
1267}
1268
1269int register_dnaddr_notifier(struct notifier_block *nb)
1270{
Alan Sterne041c682006-03-27 01:16:30 -08001271 return blocking_notifier_chain_register(&dnaddr_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272}
1273
1274int unregister_dnaddr_notifier(struct notifier_block *nb)
1275{
Alan Sterne041c682006-03-27 01:16:30 -08001276 return blocking_notifier_chain_unregister(&dnaddr_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277}
1278
1279#ifdef CONFIG_PROC_FS
Pavel Emelianov7562f872007-05-03 15:13:45 -07001280static inline int is_dn_dev(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281{
Pavel Emelianov7562f872007-05-03 15:13:45 -07001282 return dev->dn_ptr != NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283}
1284
1285static void *dn_dev_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001286 __acquires(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287{
Pavel Emelianov7562f872007-05-03 15:13:45 -07001288 int i;
1289 struct net_device *dev;
1290
stephen hemmingerfa918602009-11-10 07:54:53 +00001291 rcu_read_lock();
Pavel Emelianov7562f872007-05-03 15:13:45 -07001292
1293 if (*pos == 0)
1294 return SEQ_START_TOKEN;
1295
1296 i = 1;
stephen hemmingerfa918602009-11-10 07:54:53 +00001297 for_each_netdev_rcu(&init_net, dev) {
Pavel Emelianov7562f872007-05-03 15:13:45 -07001298 if (!is_dn_dev(dev))
1299 continue;
1300
1301 if (i++ == *pos)
1302 return dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 }
Pavel Emelianov7562f872007-05-03 15:13:45 -07001304
1305 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306}
1307
1308static void *dn_dev_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1309{
Pavel Emelianov7562f872007-05-03 15:13:45 -07001310 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 ++*pos;
Pavel Emelianov7562f872007-05-03 15:13:45 -07001313
1314 dev = (struct net_device *)v;
1315 if (v == SEQ_START_TOKEN)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001316 dev = net_device_entry(&init_net.dev_base_head);
Pavel Emelianov7562f872007-05-03 15:13:45 -07001317
stephen hemmingerfa918602009-11-10 07:54:53 +00001318 for_each_netdev_continue_rcu(&init_net, dev) {
Pavel Emelianov7562f872007-05-03 15:13:45 -07001319 if (!is_dn_dev(dev))
1320 continue;
1321
1322 return dev;
1323 }
1324
1325 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326}
1327
1328static void dn_dev_seq_stop(struct seq_file *seq, void *v)
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001329 __releases(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330{
stephen hemmingerfa918602009-11-10 07:54:53 +00001331 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332}
1333
1334static char *dn_type2asc(char type)
1335{
1336 switch(type) {
1337 case DN_DEV_BCAST:
1338 return "B";
1339 case DN_DEV_UCAST:
1340 return "U";
1341 case DN_DEV_MPOINT:
1342 return "M";
1343 }
1344
1345 return "?";
1346}
1347
1348static int dn_dev_seq_show(struct seq_file *seq, void *v)
1349{
1350 if (v == SEQ_START_TOKEN)
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001351 seq_puts(seq, "Name Flags T1 Timer1 T3 Timer3 BlkSize Pri State DevType Router Peer\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 else {
1353 struct net_device *dev = v;
1354 char peer_buf[DN_ASCBUF_LEN];
1355 char router_buf[DN_ASCBUF_LEN];
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001356 struct dn_dev *dn_db = rcu_dereference(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001358 seq_printf(seq, "%-8s %1s %04u %04u %04lu %04lu"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 " %04hu %03d %02x %-10s %-7s %-7s\n",
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001360 dev->name ? dev->name : "???",
1361 dn_type2asc(dn_db->parms.mode),
1362 0, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 dn_db->t3, dn_db->parms.t3,
1364 mtu2blksize(dev),
1365 dn_db->parms.priority,
1366 dn_db->parms.state, dn_db->parms.name,
Harvey Harrisonc4106aa2008-11-27 00:12:47 -08001367 dn_db->router ? dn_addr2asc(le16_to_cpu(*(__le16 *)dn_db->router->primary_key), router_buf) : "",
1368 dn_db->peer ? dn_addr2asc(le16_to_cpu(*(__le16 *)dn_db->peer->primary_key), peer_buf) : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 }
1370 return 0;
1371}
1372
Philippe De Muyter56b3d972007-07-10 23:07:31 -07001373static const struct seq_operations dn_dev_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 .start = dn_dev_seq_start,
1375 .next = dn_dev_seq_next,
1376 .stop = dn_dev_seq_stop,
1377 .show = dn_dev_seq_show,
1378};
1379
1380static int dn_dev_seq_open(struct inode *inode, struct file *file)
1381{
1382 return seq_open(file, &dn_dev_seq_ops);
1383}
1384
Arjan van de Ven9a321442007-02-12 00:55:35 -08001385static const struct file_operations dn_dev_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 .owner = THIS_MODULE,
1387 .open = dn_dev_seq_open,
1388 .read = seq_read,
1389 .llseek = seq_lseek,
1390 .release = seq_release,
1391};
1392
1393#endif /* CONFIG_PROC_FS */
1394
Alexey Dobriyan4e058062007-11-05 21:30:11 -08001395static int addr[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396module_param_array(addr, int, NULL, 0444);
1397MODULE_PARM_DESC(addr, "The DECnet address of this machine: area,node");
1398
1399void __init dn_dev_init(void)
1400{
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001401 if (addr[0] > 63 || addr[0] < 0) {
1402 printk(KERN_ERR "DECnet: Area must be between 0 and 63");
1403 return;
1404 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001406 if (addr[1] > 1023 || addr[1] < 0) {
1407 printk(KERN_ERR "DECnet: Node must be between 0 and 1023");
1408 return;
1409 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
Harvey Harrisonc4106aa2008-11-27 00:12:47 -08001411 decnet_address = cpu_to_le16((addr[0] << 10) | addr[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
1413 dn_dev_devices_on();
1414
Thomas Graffa34ddd2007-03-22 11:57:46 -07001415 rtnl_register(PF_DECnet, RTM_NEWADDR, dn_nl_newaddr, NULL);
1416 rtnl_register(PF_DECnet, RTM_DELADDR, dn_nl_deladdr, NULL);
1417 rtnl_register(PF_DECnet, RTM_GETADDR, NULL, dn_nl_dump_ifaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02001419 proc_net_fops_create(&init_net, "decnet_dev", S_IRUGO, &dn_dev_seq_fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
1421#ifdef CONFIG_SYSCTL
1422 {
1423 int i;
1424 for(i = 0; i < DN_DEV_LIST_SIZE; i++)
1425 dn_dev_sysctl_register(NULL, &dn_dev_list[i]);
1426 }
1427#endif /* CONFIG_SYSCTL */
1428}
1429
1430void __exit dn_dev_cleanup(void)
1431{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432#ifdef CONFIG_SYSCTL
1433 {
1434 int i;
1435 for(i = 0; i < DN_DEV_LIST_SIZE; i++)
1436 dn_dev_sysctl_unregister(&dn_dev_list[i]);
1437 }
1438#endif /* CONFIG_SYSCTL */
1439
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02001440 proc_net_remove(&init_net, "decnet_dev");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
1442 dn_dev_devices_off();
1443}