blob: 0ba15633c4184484fb46e99c50fdb0608a325046 [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_rcu(struct rcu_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000337 kfree(container_of(head, struct dn_ifaddr, rcu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338}
339
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000340static void dn_dev_free_ifa(struct dn_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000342 call_rcu(&ifa->rcu, dn_dev_free_ifa_rcu);
343}
344
345static void dn_dev_del_ifa(struct dn_dev *dn_db, struct dn_ifaddr __rcu **ifap, int destroy)
346{
347 struct dn_ifaddr *ifa1 = rtnl_dereference(*ifap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 unsigned char mac_addr[6];
349 struct net_device *dev = dn_db->dev;
350
351 ASSERT_RTNL();
352
353 *ifap = ifa1->ifa_next;
354
355 if (dn_db->dev->type == ARPHRD_ETHER) {
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800356 if (ifa1->ifa_local != dn_eth2dn(dev->dev_addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 dn_dn2eth(mac_addr, ifa1->ifa_local);
Jiri Pirko22bedad32010-04-01 21:22:57 +0000358 dev_mc_del(dev, mac_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 }
360 }
361
Thomas Grafb020b942006-11-24 17:14:31 -0800362 dn_ifaddr_notify(RTM_DELADDR, ifa1);
Alan Sterne041c682006-03-27 01:16:30 -0800363 blocking_notifier_call_chain(&dnaddr_chain, NETDEV_DOWN, ifa1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 if (destroy) {
365 dn_dev_free_ifa(ifa1);
366
367 if (dn_db->ifa_list == NULL)
368 dn_dev_delete(dn_db->dev);
369 }
370}
371
372static int dn_dev_insert_ifa(struct dn_dev *dn_db, struct dn_ifaddr *ifa)
373{
374 struct net_device *dev = dn_db->dev;
375 struct dn_ifaddr *ifa1;
376 unsigned char mac_addr[6];
377
378 ASSERT_RTNL();
379
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900380 /* Check for duplicates */
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000381 for (ifa1 = rtnl_dereference(dn_db->ifa_list);
382 ifa1 != NULL;
383 ifa1 = rtnl_dereference(ifa1->ifa_next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 if (ifa1->ifa_local == ifa->ifa_local)
385 return -EEXIST;
386 }
387
388 if (dev->type == ARPHRD_ETHER) {
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800389 if (ifa->ifa_local != dn_eth2dn(dev->dev_addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 dn_dn2eth(mac_addr, ifa->ifa_local);
Jiri Pirko22bedad32010-04-01 21:22:57 +0000391 dev_mc_add(dev, mac_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 }
393 }
394
395 ifa->ifa_next = dn_db->ifa_list;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000396 rcu_assign_pointer(dn_db->ifa_list, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Thomas Grafb020b942006-11-24 17:14:31 -0800398 dn_ifaddr_notify(RTM_NEWADDR, ifa);
Alan Sterne041c682006-03-27 01:16:30 -0800399 blocking_notifier_call_chain(&dnaddr_chain, NETDEV_UP, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401 return 0;
402}
403
404static int dn_dev_set_ifa(struct net_device *dev, struct dn_ifaddr *ifa)
405{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000406 struct dn_dev *dn_db = rtnl_dereference(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 int rv;
408
409 if (dn_db == NULL) {
410 int err;
411 dn_db = dn_dev_create(dev, &err);
412 if (dn_db == NULL)
413 return err;
414 }
415
416 ifa->ifa_dev = dn_db;
417
418 if (dev->flags & IFF_LOOPBACK)
419 ifa->ifa_scope = RT_SCOPE_HOST;
420
421 rv = dn_dev_insert_ifa(dn_db, ifa);
422 if (rv)
423 dn_dev_free_ifa(ifa);
424 return rv;
425}
426
427
428int dn_dev_ioctl(unsigned int cmd, void __user *arg)
429{
430 char buffer[DN_IFREQ_SIZE];
431 struct ifreq *ifr = (struct ifreq *)buffer;
432 struct sockaddr_dn *sdn = (struct sockaddr_dn *)&ifr->ifr_addr;
433 struct dn_dev *dn_db;
434 struct net_device *dev;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000435 struct dn_ifaddr *ifa = NULL;
436 struct dn_ifaddr __rcu **ifap = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 int ret = 0;
438
439 if (copy_from_user(ifr, arg, DN_IFREQ_SIZE))
440 return -EFAULT;
441 ifr->ifr_name[IFNAMSIZ-1] = 0;
442
Eric W. Biederman881d9662007-09-17 11:56:21 -0700443 dev_load(&init_net, ifr->ifr_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445 switch(cmd) {
446 case SIOCGIFADDR:
447 break;
448 case SIOCSIFADDR:
449 if (!capable(CAP_NET_ADMIN))
450 return -EACCES;
451 if (sdn->sdn_family != AF_DECnet)
452 return -EINVAL;
453 break;
454 default:
455 return -EINVAL;
456 }
457
458 rtnl_lock();
459
Eric W. Biederman881d9662007-09-17 11:56:21 -0700460 if ((dev = __dev_get_by_name(&init_net, ifr->ifr_name)) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 ret = -ENODEV;
462 goto done;
463 }
464
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000465 if ((dn_db = rtnl_dereference(dev->dn_ptr)) != NULL) {
466 for (ifap = &dn_db->ifa_list;
467 (ifa = rtnl_dereference(*ifap)) != NULL;
468 ifap = &ifa->ifa_next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 if (strcmp(ifr->ifr_name, ifa->ifa_label) == 0)
470 break;
471 }
472
473 if (ifa == NULL && cmd != SIOCSIFADDR) {
474 ret = -EADDRNOTAVAIL;
475 goto done;
476 }
477
478 switch(cmd) {
479 case SIOCGIFADDR:
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800480 *((__le16 *)sdn->sdn_nodeaddr) = ifa->ifa_local;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 goto rarok;
482
483 case SIOCSIFADDR:
484 if (!ifa) {
485 if ((ifa = dn_dev_alloc_ifa()) == NULL) {
486 ret = -ENOBUFS;
487 break;
488 }
489 memcpy(ifa->ifa_label, dev->name, IFNAMSIZ);
490 } else {
491 if (ifa->ifa_local == dn_saddr2dn(sdn))
492 break;
493 dn_dev_del_ifa(dn_db, ifap, 0);
494 }
495
496 ifa->ifa_local = ifa->ifa_address = dn_saddr2dn(sdn);
497
498 ret = dn_dev_set_ifa(dev, ifa);
499 }
500done:
501 rtnl_unlock();
502
503 return ret;
504rarok:
505 if (copy_to_user(arg, ifr, DN_IFREQ_SIZE))
506 ret = -EFAULT;
507 goto done;
508}
509
510struct net_device *dn_dev_get_default(void)
511{
512 struct net_device *dev;
stephen hemmingere5c140a2009-11-11 07:40:36 +0000513
514 spin_lock(&dndev_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 dev = decnet_default_device;
516 if (dev) {
517 if (dev->dn_ptr)
518 dev_hold(dev);
519 else
520 dev = NULL;
521 }
stephen hemmingere5c140a2009-11-11 07:40:36 +0000522 spin_unlock(&dndev_lock);
523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 return dev;
525}
526
527int dn_dev_set_default(struct net_device *dev, int force)
528{
529 struct net_device *old = NULL;
530 int rv = -EBUSY;
531 if (!dev->dn_ptr)
532 return -ENODEV;
stephen hemmingere5c140a2009-11-11 07:40:36 +0000533
534 spin_lock(&dndev_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 if (force || decnet_default_device == NULL) {
536 old = decnet_default_device;
537 decnet_default_device = dev;
538 rv = 0;
539 }
stephen hemmingere5c140a2009-11-11 07:40:36 +0000540 spin_unlock(&dndev_lock);
541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 if (old)
Patrick Caulfield6a57b2e2006-03-29 13:57:31 -0800543 dev_put(old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 return rv;
545}
546
547static void dn_dev_check_default(struct net_device *dev)
548{
stephen hemmingere5c140a2009-11-11 07:40:36 +0000549 spin_lock(&dndev_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 if (dev == decnet_default_device) {
551 decnet_default_device = NULL;
552 } else {
553 dev = NULL;
554 }
stephen hemmingere5c140a2009-11-11 07:40:36 +0000555 spin_unlock(&dndev_lock);
556
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 if (dev)
558 dev_put(dev);
559}
560
Eric Dumazetb4d745d2009-11-04 10:59:38 -0800561/*
562 * Called with RTNL
563 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564static struct dn_dev *dn_dev_by_index(int ifindex)
565{
566 struct net_device *dev;
567 struct dn_dev *dn_dev = NULL;
Eric Dumazetb4d745d2009-11-04 10:59:38 -0800568
569 dev = __dev_get_by_index(&init_net, ifindex);
570 if (dev)
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000571 dn_dev = rtnl_dereference(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
573 return dn_dev;
574}
575
Patrick McHardyef7c79e2007-06-05 12:38:30 -0700576static const struct nla_policy dn_ifa_policy[IFA_MAX+1] = {
Thomas Graf4a89c252006-11-24 17:14:51 -0800577 [IFA_ADDRESS] = { .type = NLA_U16 },
578 [IFA_LOCAL] = { .type = NLA_U16 },
579 [IFA_LABEL] = { .type = NLA_STRING,
580 .len = IFNAMSIZ - 1 },
581};
582
583static int dn_nl_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900585 struct net *net = sock_net(skb->sk);
Thomas Graf4a89c252006-11-24 17:14:51 -0800586 struct nlattr *tb[IFA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 struct dn_dev *dn_db;
Thomas Graf4a89c252006-11-24 17:14:51 -0800588 struct ifaddrmsg *ifm;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000589 struct dn_ifaddr *ifa;
590 struct dn_ifaddr __rcu **ifap;
Denis V. Lunevb8542722007-12-01 00:21:31 +1100591 int err = -EINVAL;
592
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800593 if (!net_eq(net, &init_net))
Denis V. Lunevb8542722007-12-01 00:21:31 +1100594 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Thomas Graf4a89c252006-11-24 17:14:51 -0800596 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, dn_ifa_policy);
597 if (err < 0)
598 goto errout;
599
Pavel Emelyanov3ccd8622007-11-30 23:43:31 +1100600 err = -ENODEV;
Thomas Graf4a89c252006-11-24 17:14:51 -0800601 ifm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 if ((dn_db = dn_dev_by_index(ifm->ifa_index)) == NULL)
Thomas Graf4a89c252006-11-24 17:14:51 -0800603 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Pavel Emelyanov3ccd8622007-11-30 23:43:31 +1100605 err = -EADDRNOTAVAIL;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000606 for (ifap = &dn_db->ifa_list;
607 (ifa = rtnl_dereference(*ifap)) != NULL;
608 ifap = &ifa->ifa_next) {
Thomas Graf4a89c252006-11-24 17:14:51 -0800609 if (tb[IFA_LOCAL] &&
610 nla_memcmp(tb[IFA_LOCAL], &ifa->ifa_local, 2))
611 continue;
612
613 if (tb[IFA_LABEL] && nla_strcmp(tb[IFA_LABEL], ifa->ifa_label))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 continue;
615
616 dn_dev_del_ifa(dn_db, ifap, 1);
617 return 0;
618 }
619
Thomas Graf4a89c252006-11-24 17:14:51 -0800620errout:
621 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622}
623
Thomas Graf4a89c252006-11-24 17:14:51 -0800624static int dn_nl_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900626 struct net *net = sock_net(skb->sk);
Thomas Graf4a89c252006-11-24 17:14:51 -0800627 struct nlattr *tb[IFA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 struct net_device *dev;
629 struct dn_dev *dn_db;
Thomas Graf4a89c252006-11-24 17:14:51 -0800630 struct ifaddrmsg *ifm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 struct dn_ifaddr *ifa;
Thomas Graf4a89c252006-11-24 17:14:51 -0800632 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800634 if (!net_eq(net, &init_net))
Denis V. Lunevb8542722007-12-01 00:21:31 +1100635 return -EINVAL;
636
Thomas Graf4a89c252006-11-24 17:14:51 -0800637 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, dn_ifa_policy);
638 if (err < 0)
639 return err;
640
641 if (tb[IFA_LOCAL] == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 return -EINVAL;
643
Thomas Graf4a89c252006-11-24 17:14:51 -0800644 ifm = nlmsg_data(nlh);
Eric W. Biederman881d9662007-09-17 11:56:21 -0700645 if ((dev = __dev_get_by_index(&init_net, ifm->ifa_index)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 return -ENODEV;
647
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000648 if ((dn_db = rtnl_dereference(dev->dn_ptr)) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 dn_db = dn_dev_create(dev, &err);
650 if (!dn_db)
651 return err;
652 }
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 if ((ifa = dn_dev_alloc_ifa()) == NULL)
655 return -ENOBUFS;
656
Thomas Graf4a89c252006-11-24 17:14:51 -0800657 if (tb[IFA_ADDRESS] == NULL)
658 tb[IFA_ADDRESS] = tb[IFA_LOCAL];
659
660 ifa->ifa_local = nla_get_le16(tb[IFA_LOCAL]);
661 ifa->ifa_address = nla_get_le16(tb[IFA_ADDRESS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 ifa->ifa_flags = ifm->ifa_flags;
663 ifa->ifa_scope = ifm->ifa_scope;
664 ifa->ifa_dev = dn_db;
Thomas Graf4a89c252006-11-24 17:14:51 -0800665
666 if (tb[IFA_LABEL])
667 nla_strlcpy(ifa->ifa_label, tb[IFA_LABEL], IFNAMSIZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 else
669 memcpy(ifa->ifa_label, dev->name, IFNAMSIZ);
670
Thomas Graf4a89c252006-11-24 17:14:51 -0800671 err = dn_dev_insert_ifa(dn_db, ifa);
672 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 dn_dev_free_ifa(ifa);
Thomas Graf4a89c252006-11-24 17:14:51 -0800674
675 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676}
677
Thomas Grafa6f01ca2006-11-24 17:14:07 -0800678static inline size_t dn_ifaddr_nlmsg_size(void)
679{
680 return NLMSG_ALIGN(sizeof(struct ifaddrmsg))
681 + nla_total_size(IFNAMSIZ) /* IFA_LABEL */
682 + nla_total_size(2) /* IFA_ADDRESS */
683 + nla_total_size(2); /* IFA_LOCAL */
684}
685
Thomas Graf4a89c252006-11-24 17:14:51 -0800686static int dn_nl_fill_ifaddr(struct sk_buff *skb, struct dn_ifaddr *ifa,
687 u32 pid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688{
689 struct ifaddrmsg *ifm;
690 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Thomas Graf4a89c252006-11-24 17:14:51 -0800692 nlh = nlmsg_put(skb, pid, seq, event, sizeof(*ifm), flags);
693 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -0800694 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Thomas Graf4a89c252006-11-24 17:14:51 -0800696 ifm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 ifm->ifa_family = AF_DECnet;
698 ifm->ifa_prefixlen = 16;
699 ifm->ifa_flags = ifa->ifa_flags | IFA_F_PERMANENT;
700 ifm->ifa_scope = ifa->ifa_scope;
701 ifm->ifa_index = ifa->ifa_dev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
Thomas Graf4a89c252006-11-24 17:14:51 -0800703 if (ifa->ifa_address)
704 NLA_PUT_LE16(skb, IFA_ADDRESS, ifa->ifa_address);
705 if (ifa->ifa_local)
706 NLA_PUT_LE16(skb, IFA_LOCAL, ifa->ifa_local);
707 if (ifa->ifa_label[0])
708 NLA_PUT_STRING(skb, IFA_LABEL, ifa->ifa_label);
709
710 return nlmsg_end(skb, nlh);
711
712nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -0800713 nlmsg_cancel(skb, nlh);
714 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715}
716
Thomas Grafb020b942006-11-24 17:14:31 -0800717static void dn_ifaddr_notify(int event, struct dn_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718{
719 struct sk_buff *skb;
Thomas Grafdc738dd2006-08-15 00:33:35 -0700720 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
Thomas Grafa6f01ca2006-11-24 17:14:07 -0800722 skb = alloc_skb(dn_ifaddr_nlmsg_size(), GFP_KERNEL);
Thomas Grafdc738dd2006-08-15 00:33:35 -0700723 if (skb == NULL)
724 goto errout;
725
Thomas Graf4a89c252006-11-24 17:14:51 -0800726 err = dn_nl_fill_ifaddr(skb, ifa, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -0800727 if (err < 0) {
728 /* -EMSGSIZE implies BUG in dn_ifaddr_nlmsg_size() */
729 WARN_ON(err == -EMSGSIZE);
730 kfree_skb(skb);
731 goto errout;
732 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -0800733 rtnl_notify(skb, &init_net, 0, RTNLGRP_DECnet_IFADDR, NULL, GFP_KERNEL);
734 return;
Thomas Grafdc738dd2006-08-15 00:33:35 -0700735errout:
736 if (err < 0)
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800737 rtnl_set_sk_err(&init_net, RTNLGRP_DECnet_IFADDR, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738}
739
Thomas Graf4a89c252006-11-24 17:14:51 -0800740static int dn_nl_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900742 struct net *net = sock_net(skb->sk);
Thomas Graf4a89c252006-11-24 17:14:51 -0800743 int idx, dn_idx = 0, skip_ndevs, skip_naddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 struct net_device *dev;
745 struct dn_dev *dn_db;
746 struct dn_ifaddr *ifa;
747
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800748 if (!net_eq(net, &init_net))
Denis V. Lunevb8542722007-12-01 00:21:31 +1100749 return 0;
750
Thomas Graf4a89c252006-11-24 17:14:51 -0800751 skip_ndevs = cb->args[0];
752 skip_naddr = cb->args[1];
753
Pavel Emelianov7562f872007-05-03 15:13:45 -0700754 idx = 0;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700755 for_each_netdev(&init_net, dev) {
Thomas Graf4a89c252006-11-24 17:14:51 -0800756 if (idx < skip_ndevs)
Pavel Emelianov7562f872007-05-03 15:13:45 -0700757 goto cont;
Thomas Graf4a89c252006-11-24 17:14:51 -0800758 else if (idx > skip_ndevs) {
759 /* Only skip over addresses for first dev dumped
760 * in this iteration (idx == skip_ndevs) */
761 skip_naddr = 0;
762 }
763
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000764 if ((dn_db = rtnl_dereference(dev->dn_ptr)) == NULL)
Pavel Emelianov7562f872007-05-03 15:13:45 -0700765 goto cont;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000767 for (ifa = rtnl_dereference(dn_db->ifa_list), dn_idx = 0; ifa;
768 ifa = rtnl_dereference(ifa->ifa_next), dn_idx++) {
Thomas Graf4a89c252006-11-24 17:14:51 -0800769 if (dn_idx < skip_naddr)
Patrick McHardya2221f32007-09-11 10:45:15 +0200770 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Thomas Graf4a89c252006-11-24 17:14:51 -0800772 if (dn_nl_fill_ifaddr(skb, ifa, NETLINK_CB(cb->skb).pid,
773 cb->nlh->nlmsg_seq, RTM_NEWADDR,
774 NLM_F_MULTI) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 goto done;
776 }
Pavel Emelianov7562f872007-05-03 15:13:45 -0700777cont:
778 idx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 }
780done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 cb->args[0] = idx;
782 cb->args[1] = dn_idx;
783
784 return skb->len;
785}
786
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800787static int dn_dev_get_first(struct net_device *dev, __le16 *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000789 struct dn_dev *dn_db;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 struct dn_ifaddr *ifa;
791 int rv = -ENODEV;
stephen hemminger41bdecf2009-11-11 07:39:27 +0000792
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000793 rcu_read_lock();
794 dn_db = rcu_dereference(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 if (dn_db == NULL)
796 goto out;
stephen hemminger41bdecf2009-11-11 07:39:27 +0000797
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000798 ifa = rcu_dereference(dn_db->ifa_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 if (ifa != NULL) {
800 *addr = ifa->ifa_local;
801 rv = 0;
802 }
803out:
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000804 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 return rv;
806}
807
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900808/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 * Find a default address to bind to.
810 *
811 * This is one of those areas where the initial VMS concepts don't really
812 * map onto the Linux concepts, and since we introduced multiple addresses
813 * per interface we have to cope with slightly odd ways of finding out what
814 * "our address" really is. Mostly it's not a problem; for this we just guess
815 * a sensible default. Eventually the routing code will take care of all the
816 * nasties for us I hope.
817 */
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800818int dn_dev_bind_default(__le16 *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819{
820 struct net_device *dev;
821 int rv;
822 dev = dn_dev_get_default();
823last_chance:
824 if (dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 rv = dn_dev_get_first(dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 dev_put(dev);
Eric W. Biederman2774c7a2007-09-26 22:10:56 -0700827 if (rv == 0 || dev == init_net.loopback_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 return rv;
829 }
Eric W. Biederman2774c7a2007-09-26 22:10:56 -0700830 dev = init_net.loopback_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 dev_hold(dev);
832 goto last_chance;
833}
834
835static void dn_send_endnode_hello(struct net_device *dev, struct dn_ifaddr *ifa)
836{
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900837 struct endnode_hello_message *msg;
838 struct sk_buff *skb = NULL;
839 __le16 *pktlen;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000840 struct dn_dev *dn_db = rcu_dereference_raw(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900842 if ((skb = dn_alloc_skb(NULL, sizeof(*msg), GFP_ATOMIC)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 return;
844
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900845 skb->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900847 msg = (struct endnode_hello_message *)skb_put(skb,sizeof(*msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900849 msg->msgflg = 0x0D;
850 memcpy(msg->tiver, dn_eco_version, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 dn_dn2eth(msg->id, ifa->ifa_local);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900852 msg->iinfo = DN_RT_INFO_ENDN;
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800853 msg->blksize = cpu_to_le16(mtu2blksize(dev));
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900854 msg->area = 0x00;
855 memset(msg->seed, 0, 8);
856 memcpy(msg->neighbor, dn_hiord, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
858 if (dn_db->router) {
859 struct dn_neigh *dn = (struct dn_neigh *)dn_db->router;
860 dn_dn2eth(msg->neighbor, dn->addr);
861 }
862
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800863 msg->timer = cpu_to_le16((unsigned short)dn_db->parms.t3);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900864 msg->mpd = 0x00;
865 msg->datalen = 0x02;
866 memset(msg->data, 0xAA, 2);
867
868 pktlen = (__le16 *)skb_push(skb,2);
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800869 *pktlen = cpu_to_le16(skb->len - 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700871 skb_reset_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
873 dn_rt_finish_output(skb, dn_rt_all_rt_mcast, msg->id);
874}
875
876
877#define DRDELAY (5 * HZ)
878
879static int dn_am_i_a_router(struct dn_neigh *dn, struct dn_dev *dn_db, struct dn_ifaddr *ifa)
880{
881 /* First check time since device went up */
882 if ((jiffies - dn_db->uptime) < DRDELAY)
883 return 0;
884
885 /* If there is no router, then yes... */
886 if (!dn_db->router)
887 return 1;
888
889 /* otherwise only if we have a higher priority or.. */
890 if (dn->priority < dn_db->parms.priority)
891 return 1;
892
893 /* if we have equal priority and a higher node number */
894 if (dn->priority != dn_db->parms.priority)
895 return 0;
896
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800897 if (le16_to_cpu(dn->addr) < le16_to_cpu(ifa->ifa_local))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 return 1;
899
900 return 0;
901}
902
903static void dn_send_router_hello(struct net_device *dev, struct dn_ifaddr *ifa)
904{
905 int n;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000906 struct dn_dev *dn_db = rcu_dereference_raw(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 struct dn_neigh *dn = (struct dn_neigh *)dn_db->router;
908 struct sk_buff *skb;
909 size_t size;
910 unsigned char *ptr;
911 unsigned char *i1, *i2;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800912 __le16 *pktlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 char *src;
914
915 if (mtu2blksize(dev) < (26 + 7))
916 return;
917
918 n = mtu2blksize(dev) - 26;
919 n /= 7;
920
921 if (n > 32)
922 n = 32;
923
924 size = 2 + 26 + 7 * n;
925
926 if ((skb = dn_alloc_skb(NULL, size, GFP_ATOMIC)) == NULL)
927 return;
928
929 skb->dev = dev;
930 ptr = skb_put(skb, size);
931
932 *ptr++ = DN_RT_PKT_CNTL | DN_RT_PKT_ERTH;
933 *ptr++ = 2; /* ECO */
934 *ptr++ = 0;
935 *ptr++ = 0;
936 dn_dn2eth(ptr, ifa->ifa_local);
937 src = ptr;
938 ptr += ETH_ALEN;
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900939 *ptr++ = dn_db->parms.forwarding == 1 ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 DN_RT_INFO_L1RT : DN_RT_INFO_L2RT;
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800941 *((__le16 *)ptr) = cpu_to_le16(mtu2blksize(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 ptr += 2;
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900943 *ptr++ = dn_db->parms.priority; /* Priority */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 *ptr++ = 0; /* Area: Reserved */
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800945 *((__le16 *)ptr) = cpu_to_le16((unsigned short)dn_db->parms.t3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 ptr += 2;
947 *ptr++ = 0; /* MPD: Reserved */
948 i1 = ptr++;
949 memset(ptr, 0, 7); /* Name: Reserved */
950 ptr += 7;
951 i2 = ptr++;
952
953 n = dn_neigh_elist(dev, ptr, n);
954
955 *i2 = 7 * n;
956 *i1 = 8 + *i2;
957
958 skb_trim(skb, (27 + *i2));
959
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800960 pktlen = (__le16 *)skb_push(skb, 2);
Harvey Harrisonc4106aa2008-11-27 00:12:47 -0800961 *pktlen = cpu_to_le16(skb->len - 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700963 skb_reset_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
965 if (dn_am_i_a_router(dn, dn_db, ifa)) {
966 struct sk_buff *skb2 = skb_copy(skb, GFP_ATOMIC);
967 if (skb2) {
968 dn_rt_finish_output(skb2, dn_rt_all_end_mcast, src);
969 }
970 }
971
972 dn_rt_finish_output(skb, dn_rt_all_rt_mcast, src);
973}
974
975static void dn_send_brd_hello(struct net_device *dev, struct dn_ifaddr *ifa)
976{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000977 struct dn_dev *dn_db = rcu_dereference_raw(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
979 if (dn_db->parms.forwarding == 0)
980 dn_send_endnode_hello(dev, ifa);
981 else
982 dn_send_router_hello(dev, ifa);
983}
984
985static void dn_send_ptp_hello(struct net_device *dev, struct dn_ifaddr *ifa)
986{
987 int tdlen = 16;
988 int size = dev->hard_header_len + 2 + 4 + tdlen;
989 struct sk_buff *skb = dn_alloc_skb(NULL, size, GFP_ATOMIC);
990 int i;
991 unsigned char *ptr;
992 char src[ETH_ALEN];
993
994 if (skb == NULL)
995 return ;
996
997 skb->dev = dev;
998 skb_push(skb, dev->hard_header_len);
999 ptr = skb_put(skb, 2 + 4 + tdlen);
1000
1001 *ptr++ = DN_RT_PKT_HELO;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -08001002 *((__le16 *)ptr) = ifa->ifa_local;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 ptr += 2;
1004 *ptr++ = tdlen;
1005
1006 for(i = 0; i < tdlen; i++)
1007 *ptr++ = 0252;
1008
1009 dn_dn2eth(src, ifa->ifa_local);
1010 dn_rt_finish_output(skb, dn_rt_all_rt_mcast, src);
1011}
1012
1013static int dn_eth_up(struct net_device *dev)
1014{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001015 struct dn_dev *dn_db = rcu_dereference_raw(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
1017 if (dn_db->parms.forwarding == 0)
Jiri Pirko22bedad32010-04-01 21:22:57 +00001018 dev_mc_add(dev, dn_rt_all_end_mcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 else
Jiri Pirko22bedad32010-04-01 21:22:57 +00001020 dev_mc_add(dev, dn_rt_all_rt_mcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 dn_db->use_long = 1;
1023
1024 return 0;
1025}
1026
1027static void dn_eth_down(struct net_device *dev)
1028{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001029 struct dn_dev *dn_db = rcu_dereference_raw(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
1031 if (dn_db->parms.forwarding == 0)
Jiri Pirko22bedad32010-04-01 21:22:57 +00001032 dev_mc_del(dev, dn_rt_all_end_mcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 else
Jiri Pirko22bedad32010-04-01 21:22:57 +00001034 dev_mc_del(dev, dn_rt_all_rt_mcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035}
1036
1037static void dn_dev_set_timer(struct net_device *dev);
1038
1039static void dn_dev_timer_func(unsigned long arg)
1040{
1041 struct net_device *dev = (struct net_device *)arg;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001042 struct dn_dev *dn_db;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 struct dn_ifaddr *ifa;
1044
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001045 rcu_read_lock();
1046 dn_db = rcu_dereference(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 if (dn_db->t3 <= dn_db->parms.t2) {
1048 if (dn_db->parms.timer3) {
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001049 for (ifa = rcu_dereference(dn_db->ifa_list);
1050 ifa;
1051 ifa = rcu_dereference(ifa->ifa_next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 if (!(ifa->ifa_flags & IFA_F_SECONDARY))
1053 dn_db->parms.timer3(dev, ifa);
1054 }
1055 }
1056 dn_db->t3 = dn_db->parms.t3;
1057 } else {
1058 dn_db->t3 -= dn_db->parms.t2;
1059 }
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001060 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 dn_dev_set_timer(dev);
1062}
1063
1064static void dn_dev_set_timer(struct net_device *dev)
1065{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001066 struct dn_dev *dn_db = rcu_dereference_raw(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
1068 if (dn_db->parms.t2 > dn_db->parms.t3)
1069 dn_db->parms.t2 = dn_db->parms.t3;
1070
1071 dn_db->timer.data = (unsigned long)dev;
1072 dn_db->timer.function = dn_dev_timer_func;
1073 dn_db->timer.expires = jiffies + (dn_db->parms.t2 * HZ);
1074
1075 add_timer(&dn_db->timer);
1076}
1077
Roel Kluin5eaa65b2008-12-10 15:18:31 -08001078static struct dn_dev *dn_dev_create(struct net_device *dev, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079{
1080 int i;
1081 struct dn_dev_parms *p = dn_dev_list;
1082 struct dn_dev *dn_db;
1083
1084 for(i = 0; i < DN_DEV_LIST_SIZE; i++, p++) {
1085 if (p->type == dev->type)
1086 break;
1087 }
1088
1089 *err = -ENODEV;
1090 if (i == DN_DEV_LIST_SIZE)
1091 return NULL;
1092
1093 *err = -ENOBUFS;
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001094 if ((dn_db = kzalloc(sizeof(struct dn_dev), GFP_ATOMIC)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 return NULL;
1096
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 memcpy(&dn_db->parms, p, sizeof(struct dn_dev_parms));
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001098
1099 rcu_assign_pointer(dev->dn_ptr, dn_db);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 dn_db->dev = dev;
1101 init_timer(&dn_db->timer);
1102
1103 dn_db->uptime = jiffies;
Eric W. Biederman95743de2007-01-25 15:51:51 -08001104
1105 dn_db->neigh_parms = neigh_parms_alloc(dev, &dn_neigh_table);
1106 if (!dn_db->neigh_parms) {
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001107 rcu_assign_pointer(dev->dn_ptr, NULL);
Eric W. Biederman95743de2007-01-25 15:51:51 -08001108 kfree(dn_db);
1109 return NULL;
1110 }
1111
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 if (dn_db->parms.up) {
1113 if (dn_db->parms.up(dev) < 0) {
Eric W. Biederman95743de2007-01-25 15:51:51 -08001114 neigh_parms_release(&dn_neigh_table, dn_db->neigh_parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 dev->dn_ptr = NULL;
1116 kfree(dn_db);
1117 return NULL;
1118 }
1119 }
1120
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 dn_dev_sysctl_register(dev, &dn_db->parms);
1122
1123 dn_dev_set_timer(dev);
1124
1125 *err = 0;
1126 return dn_db;
1127}
1128
1129
1130/*
1131 * This processes a device up event. We only start up
1132 * the loopback device & ethernet devices with correct
1133 * MAC addreses automatically. Others must be started
1134 * specifically.
1135 *
1136 * FIXME: How should we configure the loopback address ? If we could dispense
1137 * with using decnet_address here and for autobind, it will be one less thing
1138 * for users to worry about setting up.
1139 */
1140
1141void dn_dev_up(struct net_device *dev)
1142{
1143 struct dn_ifaddr *ifa;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -08001144 __le16 addr = decnet_address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 int maybe_default = 0;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001146 struct dn_dev *dn_db = rtnl_dereference(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
1148 if ((dev->type != ARPHRD_ETHER) && (dev->type != ARPHRD_LOOPBACK))
1149 return;
1150
1151 /*
1152 * Need to ensure that loopback device has a dn_db attached to it
1153 * to allow creation of neighbours against it, even though it might
1154 * not have a local address of its own. Might as well do the same for
1155 * all autoconfigured interfaces.
1156 */
1157 if (dn_db == NULL) {
1158 int err;
1159 dn_db = dn_dev_create(dev, &err);
1160 if (dn_db == NULL)
1161 return;
1162 }
1163
1164 if (dev->type == ARPHRD_ETHER) {
1165 if (memcmp(dev->dev_addr, dn_hiord, 4) != 0)
1166 return;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -08001167 addr = dn_eth2dn(dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 maybe_default = 1;
1169 }
1170
1171 if (addr == 0)
1172 return;
1173
1174 if ((ifa = dn_dev_alloc_ifa()) == NULL)
1175 return;
1176
1177 ifa->ifa_local = ifa->ifa_address = addr;
1178 ifa->ifa_flags = 0;
1179 ifa->ifa_scope = RT_SCOPE_UNIVERSE;
1180 strcpy(ifa->ifa_label, dev->name);
1181
1182 dn_dev_set_ifa(dev, ifa);
1183
1184 /*
1185 * Automagically set the default device to the first automatically
1186 * configured ethernet card in the system.
1187 */
1188 if (maybe_default) {
1189 dev_hold(dev);
1190 if (dn_dev_set_default(dev, 0))
1191 dev_put(dev);
1192 }
1193}
1194
1195static void dn_dev_delete(struct net_device *dev)
1196{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001197 struct dn_dev *dn_db = rtnl_dereference(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
1199 if (dn_db == NULL)
1200 return;
1201
1202 del_timer_sync(&dn_db->timer);
1203 dn_dev_sysctl_unregister(&dn_db->parms);
1204 dn_dev_check_default(dev);
1205 neigh_ifdown(&dn_neigh_table, dev);
1206
1207 if (dn_db->parms.down)
1208 dn_db->parms.down(dev);
1209
1210 dev->dn_ptr = NULL;
1211
1212 neigh_parms_release(&dn_neigh_table, dn_db->neigh_parms);
1213 neigh_ifdown(&dn_neigh_table, dev);
1214
1215 if (dn_db->router)
1216 neigh_release(dn_db->router);
1217 if (dn_db->peer)
1218 neigh_release(dn_db->peer);
1219
1220 kfree(dn_db);
1221}
1222
1223void dn_dev_down(struct net_device *dev)
1224{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001225 struct dn_dev *dn_db = rtnl_dereference(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 struct dn_ifaddr *ifa;
1227
1228 if (dn_db == NULL)
1229 return;
1230
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001231 while ((ifa = rtnl_dereference(dn_db->ifa_list)) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 dn_dev_del_ifa(dn_db, &dn_db->ifa_list, 0);
1233 dn_dev_free_ifa(ifa);
1234 }
1235
1236 dn_dev_delete(dev);
1237}
1238
1239void dn_dev_init_pkt(struct sk_buff *skb)
1240{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241}
1242
1243void dn_dev_veri_pkt(struct sk_buff *skb)
1244{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245}
1246
1247void dn_dev_hello(struct sk_buff *skb)
1248{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249}
1250
1251void dn_dev_devices_off(void)
1252{
1253 struct net_device *dev;
1254
1255 rtnl_lock();
Eric W. Biederman881d9662007-09-17 11:56:21 -07001256 for_each_netdev(&init_net, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 dn_dev_down(dev);
1258 rtnl_unlock();
1259
1260}
1261
1262void dn_dev_devices_on(void)
1263{
1264 struct net_device *dev;
1265
1266 rtnl_lock();
Eric W. Biederman881d9662007-09-17 11:56:21 -07001267 for_each_netdev(&init_net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 if (dev->flags & IFF_UP)
1269 dn_dev_up(dev);
1270 }
1271 rtnl_unlock();
1272}
1273
1274int register_dnaddr_notifier(struct notifier_block *nb)
1275{
Alan Sterne041c682006-03-27 01:16:30 -08001276 return blocking_notifier_chain_register(&dnaddr_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277}
1278
1279int unregister_dnaddr_notifier(struct notifier_block *nb)
1280{
Alan Sterne041c682006-03-27 01:16:30 -08001281 return blocking_notifier_chain_unregister(&dnaddr_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282}
1283
1284#ifdef CONFIG_PROC_FS
Pavel Emelianov7562f872007-05-03 15:13:45 -07001285static inline int is_dn_dev(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286{
Pavel Emelianov7562f872007-05-03 15:13:45 -07001287 return dev->dn_ptr != NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288}
1289
1290static void *dn_dev_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001291 __acquires(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292{
Pavel Emelianov7562f872007-05-03 15:13:45 -07001293 int i;
1294 struct net_device *dev;
1295
stephen hemmingerfa918602009-11-10 07:54:53 +00001296 rcu_read_lock();
Pavel Emelianov7562f872007-05-03 15:13:45 -07001297
1298 if (*pos == 0)
1299 return SEQ_START_TOKEN;
1300
1301 i = 1;
stephen hemmingerfa918602009-11-10 07:54:53 +00001302 for_each_netdev_rcu(&init_net, dev) {
Pavel Emelianov7562f872007-05-03 15:13:45 -07001303 if (!is_dn_dev(dev))
1304 continue;
1305
1306 if (i++ == *pos)
1307 return dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 }
Pavel Emelianov7562f872007-05-03 15:13:45 -07001309
1310 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311}
1312
1313static void *dn_dev_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1314{
Pavel Emelianov7562f872007-05-03 15:13:45 -07001315 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 ++*pos;
Pavel Emelianov7562f872007-05-03 15:13:45 -07001318
1319 dev = (struct net_device *)v;
1320 if (v == SEQ_START_TOKEN)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001321 dev = net_device_entry(&init_net.dev_base_head);
Pavel Emelianov7562f872007-05-03 15:13:45 -07001322
stephen hemmingerfa918602009-11-10 07:54:53 +00001323 for_each_netdev_continue_rcu(&init_net, dev) {
Pavel Emelianov7562f872007-05-03 15:13:45 -07001324 if (!is_dn_dev(dev))
1325 continue;
1326
1327 return dev;
1328 }
1329
1330 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331}
1332
1333static void dn_dev_seq_stop(struct seq_file *seq, void *v)
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001334 __releases(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335{
stephen hemmingerfa918602009-11-10 07:54:53 +00001336 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337}
1338
1339static char *dn_type2asc(char type)
1340{
1341 switch(type) {
1342 case DN_DEV_BCAST:
1343 return "B";
1344 case DN_DEV_UCAST:
1345 return "U";
1346 case DN_DEV_MPOINT:
1347 return "M";
1348 }
1349
1350 return "?";
1351}
1352
1353static int dn_dev_seq_show(struct seq_file *seq, void *v)
1354{
1355 if (v == SEQ_START_TOKEN)
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001356 seq_puts(seq, "Name Flags T1 Timer1 T3 Timer3 BlkSize Pri State DevType Router Peer\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 else {
1358 struct net_device *dev = v;
1359 char peer_buf[DN_ASCBUF_LEN];
1360 char router_buf[DN_ASCBUF_LEN];
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001361 struct dn_dev *dn_db = rcu_dereference(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001363 seq_printf(seq, "%-8s %1s %04u %04u %04lu %04lu"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 " %04hu %03d %02x %-10s %-7s %-7s\n",
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001365 dev->name ? dev->name : "???",
1366 dn_type2asc(dn_db->parms.mode),
1367 0, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 dn_db->t3, dn_db->parms.t3,
1369 mtu2blksize(dev),
1370 dn_db->parms.priority,
1371 dn_db->parms.state, dn_db->parms.name,
Harvey Harrisonc4106aa2008-11-27 00:12:47 -08001372 dn_db->router ? dn_addr2asc(le16_to_cpu(*(__le16 *)dn_db->router->primary_key), router_buf) : "",
1373 dn_db->peer ? dn_addr2asc(le16_to_cpu(*(__le16 *)dn_db->peer->primary_key), peer_buf) : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 }
1375 return 0;
1376}
1377
Philippe De Muyter56b3d972007-07-10 23:07:31 -07001378static const struct seq_operations dn_dev_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 .start = dn_dev_seq_start,
1380 .next = dn_dev_seq_next,
1381 .stop = dn_dev_seq_stop,
1382 .show = dn_dev_seq_show,
1383};
1384
1385static int dn_dev_seq_open(struct inode *inode, struct file *file)
1386{
1387 return seq_open(file, &dn_dev_seq_ops);
1388}
1389
Arjan van de Ven9a321442007-02-12 00:55:35 -08001390static const struct file_operations dn_dev_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 .owner = THIS_MODULE,
1392 .open = dn_dev_seq_open,
1393 .read = seq_read,
1394 .llseek = seq_lseek,
1395 .release = seq_release,
1396};
1397
1398#endif /* CONFIG_PROC_FS */
1399
Alexey Dobriyan4e058062007-11-05 21:30:11 -08001400static int addr[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401module_param_array(addr, int, NULL, 0444);
1402MODULE_PARM_DESC(addr, "The DECnet address of this machine: area,node");
1403
1404void __init dn_dev_init(void)
1405{
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001406 if (addr[0] > 63 || addr[0] < 0) {
1407 printk(KERN_ERR "DECnet: Area must be between 0 and 63");
1408 return;
1409 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001411 if (addr[1] > 1023 || addr[1] < 0) {
1412 printk(KERN_ERR "DECnet: Node must be between 0 and 1023");
1413 return;
1414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
Harvey Harrisonc4106aa2008-11-27 00:12:47 -08001416 decnet_address = cpu_to_le16((addr[0] << 10) | addr[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
1418 dn_dev_devices_on();
1419
Thomas Graffa34ddd2007-03-22 11:57:46 -07001420 rtnl_register(PF_DECnet, RTM_NEWADDR, dn_nl_newaddr, NULL);
1421 rtnl_register(PF_DECnet, RTM_DELADDR, dn_nl_deladdr, NULL);
1422 rtnl_register(PF_DECnet, RTM_GETADDR, NULL, dn_nl_dump_ifaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02001424 proc_net_fops_create(&init_net, "decnet_dev", S_IRUGO, &dn_dev_seq_fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425
1426#ifdef CONFIG_SYSCTL
1427 {
1428 int i;
1429 for(i = 0; i < DN_DEV_LIST_SIZE; i++)
1430 dn_dev_sysctl_register(NULL, &dn_dev_list[i]);
1431 }
1432#endif /* CONFIG_SYSCTL */
1433}
1434
1435void __exit dn_dev_cleanup(void)
1436{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437#ifdef CONFIG_SYSCTL
1438 {
1439 int i;
1440 for(i = 0; i < DN_DEV_LIST_SIZE; i++)
1441 dn_dev_sysctl_unregister(&dn_dev_list[i]);
1442 }
1443#endif /* CONFIG_SYSCTL */
1444
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02001445 proc_net_remove(&init_net, "decnet_dev");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
1447 dn_dev_devices_off();
1448}