blob: 15d42353f1a3803be1758d491a7685618f9dfc8e [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * DECnet An implementation of the DECnet protocol suite for the LINUX
4 * operating system. DECnet is implemented using the BSD Socket
5 * interface as the means of communication with the user level.
6 *
7 * DECnet Device Layer
8 *
9 * Authors: Steve Whitehouse <SteveW@ACM.org>
10 * Eduardo Marcelo Serrat <emserrat@geocities.com>
11 *
12 * Changes:
13 * Steve Whitehouse : Devices now see incoming frames so they
14 * can mark on who it came from.
15 * Steve Whitehouse : Fixed bug in creating neighbours. Each neighbour
16 * can now have a device specific setup func.
17 * Steve Whitehouse : Added /proc/sys/net/decnet/conf/<dev>/
18 * Steve Whitehouse : Fixed bug which sometimes killed timer
19 * Steve Whitehouse : Multiple ifaddr support
20 * Steve Whitehouse : SIOCGIFCONF is now a compile time option
21 * Steve Whitehouse : /proc/sys/net/decnet/conf/<sys>/forwarding
22 * Steve Whitehouse : Removed timer1 - it's a user space issue now
23 * Patrick Caulfield : Fixed router hello message format
24 * Steve Whitehouse : Got rid of constant sizes for blksize for
25 * devices. All mtu based now.
26 */
27
Randy Dunlap4fc268d2006-01-11 12:17:47 -080028#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/module.h>
30#include <linux/moduleparam.h>
31#include <linux/init.h>
32#include <linux/net.h>
33#include <linux/netdevice.h>
34#include <linux/proc_fs.h>
35#include <linux/seq_file.h>
36#include <linux/timer.h>
37#include <linux/string.h>
Thomas Graf18237302006-08-04 23:04:54 -070038#include <linux/if_addr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/if_arp.h>
40#include <linux/if_ether.h>
41#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/sysctl.h>
43#include <linux/notifier.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090044#include <linux/slab.h>
Himangi Saraogib5c5c362014-08-20 23:13:07 +053045#include <linux/jiffies.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080046#include <linux/uaccess.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020047#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <net/neighbour.h>
49#include <net/dst.h>
50#include <net/flow.h>
Steven Whitehousea8731cb2006-08-09 15:56:46 -070051#include <net/fib_rules.h>
Thomas Grafa6f01ca2006-11-24 17:14:07 -080052#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <net/dn.h>
54#include <net/dn_dev.h>
55#include <net/dn_route.h>
56#include <net/dn_neigh.h>
57#include <net/dn_fib.h>
58
Johannes Berg50c293662019-01-26 21:12:19 +010059#define DN_IFREQ_SIZE (offsetof(struct ifreq, ifr_ifru) + sizeof(struct sockaddr_dn))
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61static char dn_rt_all_end_mcast[ETH_ALEN] = {0xAB,0x00,0x00,0x04,0x00,0x00};
62static char dn_rt_all_rt_mcast[ETH_ALEN] = {0xAB,0x00,0x00,0x03,0x00,0x00};
63static char dn_hiord[ETH_ALEN] = {0xAA,0x00,0x04,0x00,0x00,0x00};
64static unsigned char dn_eco_version[3] = {0x02,0x00,0x00};
65
66extern struct neigh_table dn_neigh_table;
67
68/*
69 * decnet_address is kept in network order.
70 */
Steven Whitehousec4ea94a2006-03-20 22:42:39 -080071__le16 decnet_address = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
stephen hemmingere5c140a2009-11-11 07:40:36 +000073static DEFINE_SPINLOCK(dndev_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074static struct net_device *decnet_default_device;
Alan Sterne041c682006-03-27 01:16:30 -080075static BLOCKING_NOTIFIER_HEAD(dnaddr_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77static struct dn_dev *dn_dev_create(struct net_device *dev, int *err);
78static void dn_dev_delete(struct net_device *dev);
Thomas Grafb020b942006-11-24 17:14:31 -080079static void dn_ifaddr_notify(int event, struct dn_ifaddr *ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81static int dn_eth_up(struct net_device *);
82static void dn_eth_down(struct net_device *);
83static void dn_send_brd_hello(struct net_device *dev, struct dn_ifaddr *ifa);
84static void dn_send_ptp_hello(struct net_device *dev, struct dn_ifaddr *ifa);
85
86static struct dn_dev_parms dn_dev_list[] = {
87{
88 .type = ARPHRD_ETHER, /* Ethernet */
89 .mode = DN_DEV_BCAST,
90 .state = DN_DEV_S_RU,
91 .t2 = 1,
92 .t3 = 10,
93 .name = "ethernet",
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 .up = dn_eth_up,
95 .down = dn_eth_down,
96 .timer3 = dn_send_brd_hello,
97},
98{
99 .type = ARPHRD_IPGRE, /* DECnet tunneled over GRE in IP */
100 .mode = DN_DEV_BCAST,
101 .state = DN_DEV_S_RU,
102 .t2 = 1,
103 .t3 = 10,
104 .name = "ipgre",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 .timer3 = dn_send_brd_hello,
106},
107#if 0
108{
109 .type = ARPHRD_X25, /* Bog standard X.25 */
110 .mode = DN_DEV_UCAST,
111 .state = DN_DEV_S_DS,
112 .t2 = 1,
113 .t3 = 120,
114 .name = "x25",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 .timer3 = dn_send_ptp_hello,
116},
117#endif
118#if 0
119{
120 .type = ARPHRD_PPP, /* DECnet over PPP */
121 .mode = DN_DEV_BCAST,
122 .state = DN_DEV_S_RU,
123 .t2 = 1,
124 .t3 = 10,
125 .name = "ppp",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 .timer3 = dn_send_brd_hello,
127},
128#endif
129{
130 .type = ARPHRD_DDCMP, /* DECnet over DDCMP */
131 .mode = DN_DEV_UCAST,
132 .state = DN_DEV_S_DS,
133 .t2 = 1,
134 .t3 = 120,
135 .name = "ddcmp",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 .timer3 = dn_send_ptp_hello,
137},
138{
139 .type = ARPHRD_LOOPBACK, /* Loopback interface - always last */
140 .mode = DN_DEV_BCAST,
141 .state = DN_DEV_S_RU,
142 .t2 = 1,
143 .t3 = 10,
144 .name = "loopback",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 .timer3 = dn_send_brd_hello,
146}
147};
148
Denis Cheng8b14a532007-09-16 16:41:29 -0700149#define DN_DEV_LIST_SIZE ARRAY_SIZE(dn_dev_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
David S. Miller8fa0b312008-10-15 15:59:50 -0700151#define DN_DEV_PARMS_OFFSET(x) offsetof(struct dn_dev_parms, x)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153#ifdef CONFIG_SYSCTL
154
155static int min_t2[] = { 1 };
156static int max_t2[] = { 60 }; /* No max specified, but this seems sensible */
157static int min_t3[] = { 1 };
158static int max_t3[] = { 8191 }; /* Must fit in 16 bits when multiplied by BCT3MULT or T3MULT */
159
160static int min_priority[1];
161static int max_priority[] = { 127 }; /* From DECnet spec */
162
Christoph Hellwig32927392020-04-24 08:43:38 +0200163static int dn_forwarding_proc(struct ctl_table *, int, void *, size_t *,
164 loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165static struct dn_dev_sysctl_table {
166 struct ctl_table_header *sysctl_header;
Joe Perchesfe2c6332013-06-11 23:04:25 -0700167 struct ctl_table dn_dev_vars[5];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168} dn_dev_sysctl = {
169 NULL,
170 {
171 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 .procname = "forwarding",
173 .data = (void *)DN_DEV_PARMS_OFFSET(forwarding),
174 .maxlen = sizeof(int),
175 .mode = 0644,
176 .proc_handler = dn_forwarding_proc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 },
178 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 .procname = "priority",
180 .data = (void *)DN_DEV_PARMS_OFFSET(priority),
181 .maxlen = sizeof(int),
182 .mode = 0644,
183 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 .extra1 = &min_priority,
185 .extra2 = &max_priority
186 },
187 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 .procname = "t2",
189 .data = (void *)DN_DEV_PARMS_OFFSET(t2),
190 .maxlen = sizeof(int),
191 .mode = 0644,
192 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 .extra1 = &min_t2,
194 .extra2 = &max_t2
195 },
196 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 .procname = "t3",
198 .data = (void *)DN_DEV_PARMS_OFFSET(t3),
199 .maxlen = sizeof(int),
200 .mode = 0644,
201 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 .extra1 = &min_t3,
203 .extra2 = &max_t3
204 },
Kees Cook9d1c0ca2016-12-16 16:58:58 -0800205 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207};
208
209static void dn_dev_sysctl_register(struct net_device *dev, struct dn_dev_parms *parms)
210{
211 struct dn_dev_sysctl_table *t;
212 int i;
213
Eric W. Biederman9bdcc882012-04-19 13:40:37 +0000214 char path[sizeof("net/decnet/conf/") + IFNAMSIZ];
Pavel Emelyanov3151a9a2008-01-09 00:31:49 -0800215
Arnaldo Carvalho de Meloc66b7212006-11-17 12:29:21 -0200216 t = kmemdup(&dn_dev_sysctl, sizeof(*t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 if (t == NULL)
218 return;
219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 for(i = 0; i < ARRAY_SIZE(t->dn_dev_vars) - 1; i++) {
221 long offset = (long)t->dn_dev_vars[i].data;
222 t->dn_dev_vars[i].data = ((char *)parms) + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 }
224
Eric W. Biederman9bdcc882012-04-19 13:40:37 +0000225 snprintf(path, sizeof(path), "net/decnet/conf/%s",
226 dev? dev->name : parms->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 t->dn_dev_vars[0].extra1 = (void *)dev;
229
Eric W. Biederman9bdcc882012-04-19 13:40:37 +0000230 t->sysctl_header = register_net_sysctl(&init_net, path, t->dn_dev_vars);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 if (t->sysctl_header == NULL)
232 kfree(t);
233 else
234 parms->sysctl = t;
235}
236
237static void dn_dev_sysctl_unregister(struct dn_dev_parms *parms)
238{
239 if (parms->sysctl) {
240 struct dn_dev_sysctl_table *t = parms->sysctl;
241 parms->sysctl = NULL;
Eric W. Biederman5dd3df12012-04-19 13:24:33 +0000242 unregister_net_sysctl_table(t->sysctl_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 kfree(t);
244 }
245}
246
Joe Perchesfe2c6332013-06-11 23:04:25 -0700247static int dn_forwarding_proc(struct ctl_table *table, int write,
Christoph Hellwig32927392020-04-24 08:43:38 +0200248 void *buffer, size_t *lenp, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249{
250#ifdef CONFIG_DECNET_ROUTER
251 struct net_device *dev = table->extra1;
252 struct dn_dev *dn_db;
253 int err;
254 int tmp, old;
255
256 if (table->extra1 == NULL)
257 return -EINVAL;
258
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000259 dn_db = rcu_dereference_raw(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 old = dn_db->parms.forwarding;
261
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700262 err = proc_dointvec(table, write, buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264 if ((err >= 0) && write) {
265 if (dn_db->parms.forwarding < 0)
266 dn_db->parms.forwarding = 0;
267 if (dn_db->parms.forwarding > 2)
268 dn_db->parms.forwarding = 2;
269 /*
270 * What an ugly hack this is... its works, just. It
271 * would be nice if sysctl/proc were just that little
272 * bit more flexible so I don't have to write a special
273 * routine, or suffer hacks like this - SJW
274 */
275 tmp = dn_db->parms.forwarding;
276 dn_db->parms.forwarding = old;
277 if (dn_db->parms.down)
278 dn_db->parms.down(dev);
279 dn_db->parms.forwarding = tmp;
280 if (dn_db->parms.up)
281 dn_db->parms.up(dev);
282 }
283
284 return err;
285#else
286 return -EINVAL;
287#endif
288}
289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290#else /* CONFIG_SYSCTL */
291static void dn_dev_sysctl_unregister(struct dn_dev_parms *parms)
292{
293}
294static void dn_dev_sysctl_register(struct net_device *dev, struct dn_dev_parms *parms)
295{
296}
297
298#endif /* CONFIG_SYSCTL */
299
300static inline __u16 mtu2blksize(struct net_device *dev)
301{
302 u32 blksize = dev->mtu;
303 if (blksize > 0xffff)
304 blksize = 0xffff;
305
306 if (dev->type == ARPHRD_ETHER ||
307 dev->type == ARPHRD_PPP ||
308 dev->type == ARPHRD_IPGRE ||
309 dev->type == ARPHRD_LOOPBACK)
310 blksize -= 2;
311
312 return (__u16)blksize;
313}
314
315static struct dn_ifaddr *dn_dev_alloc_ifa(void)
316{
317 struct dn_ifaddr *ifa;
318
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700319 ifa = kzalloc(sizeof(*ifa), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 return ifa;
322}
323
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000324static void dn_dev_free_ifa(struct dn_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
Lai Jiangshan1e547752011-03-15 18:10:12 +0800326 kfree_rcu(ifa, rcu);
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000327}
328
329static void dn_dev_del_ifa(struct dn_dev *dn_db, struct dn_ifaddr __rcu **ifap, int destroy)
330{
331 struct dn_ifaddr *ifa1 = rtnl_dereference(*ifap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 unsigned char mac_addr[6];
333 struct net_device *dev = dn_db->dev;
334
335 ASSERT_RTNL();
336
337 *ifap = ifa1->ifa_next;
338
339 if (dn_db->dev->type == ARPHRD_ETHER) {
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800340 if (ifa1->ifa_local != dn_eth2dn(dev->dev_addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 dn_dn2eth(mac_addr, ifa1->ifa_local);
Jiri Pirko22bedad32010-04-01 21:22:57 +0000342 dev_mc_del(dev, mac_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 }
344 }
345
Thomas Grafb020b942006-11-24 17:14:31 -0800346 dn_ifaddr_notify(RTM_DELADDR, ifa1);
Alan Sterne041c682006-03-27 01:16:30 -0800347 blocking_notifier_call_chain(&dnaddr_chain, NETDEV_DOWN, ifa1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 if (destroy) {
349 dn_dev_free_ifa(ifa1);
350
351 if (dn_db->ifa_list == NULL)
352 dn_dev_delete(dn_db->dev);
353 }
354}
355
356static int dn_dev_insert_ifa(struct dn_dev *dn_db, struct dn_ifaddr *ifa)
357{
358 struct net_device *dev = dn_db->dev;
359 struct dn_ifaddr *ifa1;
360 unsigned char mac_addr[6];
361
362 ASSERT_RTNL();
363
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900364 /* Check for duplicates */
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000365 for (ifa1 = rtnl_dereference(dn_db->ifa_list);
366 ifa1 != NULL;
367 ifa1 = rtnl_dereference(ifa1->ifa_next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 if (ifa1->ifa_local == ifa->ifa_local)
369 return -EEXIST;
370 }
371
372 if (dev->type == ARPHRD_ETHER) {
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800373 if (ifa->ifa_local != dn_eth2dn(dev->dev_addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 dn_dn2eth(mac_addr, ifa->ifa_local);
Jiri Pirko22bedad32010-04-01 21:22:57 +0000375 dev_mc_add(dev, mac_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 }
377 }
378
379 ifa->ifa_next = dn_db->ifa_list;
Eric Dumazetcf778b02012-01-12 04:41:32 +0000380 rcu_assign_pointer(dn_db->ifa_list, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Thomas Grafb020b942006-11-24 17:14:31 -0800382 dn_ifaddr_notify(RTM_NEWADDR, ifa);
Alan Sterne041c682006-03-27 01:16:30 -0800383 blocking_notifier_call_chain(&dnaddr_chain, NETDEV_UP, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
385 return 0;
386}
387
388static int dn_dev_set_ifa(struct net_device *dev, struct dn_ifaddr *ifa)
389{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000390 struct dn_dev *dn_db = rtnl_dereference(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 int rv;
392
393 if (dn_db == NULL) {
394 int err;
395 dn_db = dn_dev_create(dev, &err);
396 if (dn_db == NULL)
397 return err;
398 }
399
400 ifa->ifa_dev = dn_db;
401
402 if (dev->flags & IFF_LOOPBACK)
403 ifa->ifa_scope = RT_SCOPE_HOST;
404
405 rv = dn_dev_insert_ifa(dn_db, ifa);
406 if (rv)
407 dn_dev_free_ifa(ifa);
408 return rv;
409}
410
411
412int dn_dev_ioctl(unsigned int cmd, void __user *arg)
413{
414 char buffer[DN_IFREQ_SIZE];
415 struct ifreq *ifr = (struct ifreq *)buffer;
416 struct sockaddr_dn *sdn = (struct sockaddr_dn *)&ifr->ifr_addr;
417 struct dn_dev *dn_db;
418 struct net_device *dev;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000419 struct dn_ifaddr *ifa = NULL;
420 struct dn_ifaddr __rcu **ifap = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 int ret = 0;
422
423 if (copy_from_user(ifr, arg, DN_IFREQ_SIZE))
424 return -EFAULT;
425 ifr->ifr_name[IFNAMSIZ-1] = 0;
426
Eric W. Biederman881d9662007-09-17 11:56:21 -0700427 dev_load(&init_net, ifr->ifr_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Joe Perches06f8fe12011-07-01 09:43:03 +0000429 switch (cmd) {
430 case SIOCGIFADDR:
431 break;
432 case SIOCSIFADDR:
433 if (!capable(CAP_NET_ADMIN))
434 return -EACCES;
435 if (sdn->sdn_family != AF_DECnet)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 return -EINVAL;
Joe Perches06f8fe12011-07-01 09:43:03 +0000437 break;
438 default:
439 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 }
441
442 rtnl_lock();
443
Eric W. Biederman881d9662007-09-17 11:56:21 -0700444 if ((dev = __dev_get_by_name(&init_net, ifr->ifr_name)) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 ret = -ENODEV;
446 goto done;
447 }
448
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000449 if ((dn_db = rtnl_dereference(dev->dn_ptr)) != NULL) {
450 for (ifap = &dn_db->ifa_list;
451 (ifa = rtnl_dereference(*ifap)) != NULL;
452 ifap = &ifa->ifa_next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 if (strcmp(ifr->ifr_name, ifa->ifa_label) == 0)
454 break;
455 }
456
457 if (ifa == NULL && cmd != SIOCSIFADDR) {
458 ret = -EADDRNOTAVAIL;
459 goto done;
460 }
461
Joe Perches06f8fe12011-07-01 09:43:03 +0000462 switch (cmd) {
463 case SIOCGIFADDR:
464 *((__le16 *)sdn->sdn_nodeaddr) = ifa->ifa_local;
Suraj Upadhyay514d0952020-07-14 19:53:28 +0530465 if (copy_to_user(arg, ifr, DN_IFREQ_SIZE))
466 ret = -EFAULT;
467 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Joe Perches06f8fe12011-07-01 09:43:03 +0000469 case SIOCSIFADDR:
470 if (!ifa) {
471 if ((ifa = dn_dev_alloc_ifa()) == NULL) {
472 ret = -ENOBUFS;
473 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 }
Joe Perches06f8fe12011-07-01 09:43:03 +0000475 memcpy(ifa->ifa_label, dev->name, IFNAMSIZ);
476 } else {
477 if (ifa->ifa_local == dn_saddr2dn(sdn))
478 break;
479 dn_dev_del_ifa(dn_db, ifap, 0);
480 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Joe Perches06f8fe12011-07-01 09:43:03 +0000482 ifa->ifa_local = ifa->ifa_address = dn_saddr2dn(sdn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Joe Perches06f8fe12011-07-01 09:43:03 +0000484 ret = dn_dev_set_ifa(dev, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 }
486done:
487 rtnl_unlock();
488
489 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490}
491
492struct net_device *dn_dev_get_default(void)
493{
494 struct net_device *dev;
stephen hemmingere5c140a2009-11-11 07:40:36 +0000495
496 spin_lock(&dndev_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 dev = decnet_default_device;
498 if (dev) {
499 if (dev->dn_ptr)
500 dev_hold(dev);
501 else
502 dev = NULL;
503 }
stephen hemmingere5c140a2009-11-11 07:40:36 +0000504 spin_unlock(&dndev_lock);
505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 return dev;
507}
508
509int dn_dev_set_default(struct net_device *dev, int force)
510{
511 struct net_device *old = NULL;
512 int rv = -EBUSY;
513 if (!dev->dn_ptr)
514 return -ENODEV;
stephen hemmingere5c140a2009-11-11 07:40:36 +0000515
516 spin_lock(&dndev_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 if (force || decnet_default_device == NULL) {
518 old = decnet_default_device;
519 decnet_default_device = dev;
520 rv = 0;
521 }
stephen hemmingere5c140a2009-11-11 07:40:36 +0000522 spin_unlock(&dndev_lock);
523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 if (old)
Patrick Caulfield6a57b2e2006-03-29 13:57:31 -0800525 dev_put(old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 return rv;
527}
528
529static void dn_dev_check_default(struct net_device *dev)
530{
stephen hemmingere5c140a2009-11-11 07:40:36 +0000531 spin_lock(&dndev_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 if (dev == decnet_default_device) {
533 decnet_default_device = NULL;
534 } else {
535 dev = NULL;
536 }
stephen hemmingere5c140a2009-11-11 07:40:36 +0000537 spin_unlock(&dndev_lock);
538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 if (dev)
540 dev_put(dev);
541}
542
Eric Dumazetb4d745d2009-11-04 10:59:38 -0800543/*
544 * Called with RTNL
545 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546static struct dn_dev *dn_dev_by_index(int ifindex)
547{
548 struct net_device *dev;
549 struct dn_dev *dn_dev = NULL;
Eric Dumazetb4d745d2009-11-04 10:59:38 -0800550
551 dev = __dev_get_by_index(&init_net, ifindex);
552 if (dev)
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000553 dn_dev = rtnl_dereference(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
555 return dn_dev;
556}
557
Patrick McHardyef7c79e2007-06-05 12:38:30 -0700558static const struct nla_policy dn_ifa_policy[IFA_MAX+1] = {
Thomas Graf4a89c252006-11-24 17:14:51 -0800559 [IFA_ADDRESS] = { .type = NLA_U16 },
560 [IFA_LOCAL] = { .type = NLA_U16 },
561 [IFA_LABEL] = { .type = NLA_STRING,
562 .len = IFNAMSIZ - 1 },
Jiri Pirko9a32b862013-12-08 12:16:09 +0100563 [IFA_FLAGS] = { .type = NLA_U32 },
Thomas Graf4a89c252006-11-24 17:14:51 -0800564};
565
David Ahernc21ef3e2017-04-16 09:48:24 -0700566static int dn_nl_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh,
567 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900569 struct net *net = sock_net(skb->sk);
Thomas Graf4a89c252006-11-24 17:14:51 -0800570 struct nlattr *tb[IFA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 struct dn_dev *dn_db;
Thomas Graf4a89c252006-11-24 17:14:51 -0800572 struct ifaddrmsg *ifm;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000573 struct dn_ifaddr *ifa;
574 struct dn_ifaddr __rcu **ifap;
Denis V. Lunevb8542722007-12-01 00:21:31 +1100575 int err = -EINVAL;
576
Eric W. Biederman90f62cf2014-04-23 14:29:27 -0700577 if (!netlink_capable(skb, CAP_NET_ADMIN))
Eric W. Biedermandfc47ef2012-11-16 03:03:00 +0000578 return -EPERM;
579
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800580 if (!net_eq(net, &init_net))
Denis V. Lunevb8542722007-12-01 00:21:31 +1100581 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Johannes Berg8cb08172019-04-26 14:07:28 +0200583 err = nlmsg_parse_deprecated(nlh, sizeof(*ifm), tb, IFA_MAX,
584 dn_ifa_policy, extack);
Thomas Graf4a89c252006-11-24 17:14:51 -0800585 if (err < 0)
586 goto errout;
587
Pavel Emelyanov3ccd8622007-11-30 23:43:31 +1100588 err = -ENODEV;
Thomas Graf4a89c252006-11-24 17:14:51 -0800589 ifm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 if ((dn_db = dn_dev_by_index(ifm->ifa_index)) == NULL)
Thomas Graf4a89c252006-11-24 17:14:51 -0800591 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Pavel Emelyanov3ccd8622007-11-30 23:43:31 +1100593 err = -EADDRNOTAVAIL;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000594 for (ifap = &dn_db->ifa_list;
595 (ifa = rtnl_dereference(*ifap)) != NULL;
596 ifap = &ifa->ifa_next) {
Thomas Graf4a89c252006-11-24 17:14:51 -0800597 if (tb[IFA_LOCAL] &&
598 nla_memcmp(tb[IFA_LOCAL], &ifa->ifa_local, 2))
599 continue;
600
601 if (tb[IFA_LABEL] && nla_strcmp(tb[IFA_LABEL], ifa->ifa_label))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 continue;
603
604 dn_dev_del_ifa(dn_db, ifap, 1);
605 return 0;
606 }
607
Thomas Graf4a89c252006-11-24 17:14:51 -0800608errout:
609 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610}
611
David Ahernc21ef3e2017-04-16 09:48:24 -0700612static int dn_nl_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh,
613 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900615 struct net *net = sock_net(skb->sk);
Thomas Graf4a89c252006-11-24 17:14:51 -0800616 struct nlattr *tb[IFA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 struct net_device *dev;
618 struct dn_dev *dn_db;
Thomas Graf4a89c252006-11-24 17:14:51 -0800619 struct ifaddrmsg *ifm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 struct dn_ifaddr *ifa;
Thomas Graf4a89c252006-11-24 17:14:51 -0800621 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Eric W. Biederman90f62cf2014-04-23 14:29:27 -0700623 if (!netlink_capable(skb, CAP_NET_ADMIN))
Eric W. Biedermandfc47ef2012-11-16 03:03:00 +0000624 return -EPERM;
625
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800626 if (!net_eq(net, &init_net))
Denis V. Lunevb8542722007-12-01 00:21:31 +1100627 return -EINVAL;
628
Johannes Berg8cb08172019-04-26 14:07:28 +0200629 err = nlmsg_parse_deprecated(nlh, sizeof(*ifm), tb, IFA_MAX,
630 dn_ifa_policy, extack);
Thomas Graf4a89c252006-11-24 17:14:51 -0800631 if (err < 0)
632 return err;
633
634 if (tb[IFA_LOCAL] == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 return -EINVAL;
636
Thomas Graf4a89c252006-11-24 17:14:51 -0800637 ifm = nlmsg_data(nlh);
Eric W. Biederman881d9662007-09-17 11:56:21 -0700638 if ((dev = __dev_get_by_index(&init_net, ifm->ifa_index)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 return -ENODEV;
640
Eric Dumazetfc766e4c2010-10-29 03:09:24 +0000641 if ((dn_db = rtnl_dereference(dev->dn_ptr)) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 dn_db = dn_dev_create(dev, &err);
643 if (!dn_db)
644 return err;
645 }
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900646
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 if ((ifa = dn_dev_alloc_ifa()) == NULL)
648 return -ENOBUFS;
649
Thomas Graf4a89c252006-11-24 17:14:51 -0800650 if (tb[IFA_ADDRESS] == NULL)
651 tb[IFA_ADDRESS] = tb[IFA_LOCAL];
652
653 ifa->ifa_local = nla_get_le16(tb[IFA_LOCAL]);
654 ifa->ifa_address = nla_get_le16(tb[IFA_ADDRESS]);
Jiri Pirko9a32b862013-12-08 12:16:09 +0100655 ifa->ifa_flags = tb[IFA_FLAGS] ? nla_get_u32(tb[IFA_FLAGS]) :
656 ifm->ifa_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 ifa->ifa_scope = ifm->ifa_scope;
658 ifa->ifa_dev = dn_db;
Thomas Graf4a89c252006-11-24 17:14:51 -0800659
660 if (tb[IFA_LABEL])
661 nla_strlcpy(ifa->ifa_label, tb[IFA_LABEL], IFNAMSIZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 else
663 memcpy(ifa->ifa_label, dev->name, IFNAMSIZ);
664
Thomas Graf4a89c252006-11-24 17:14:51 -0800665 err = dn_dev_insert_ifa(dn_db, ifa);
666 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 dn_dev_free_ifa(ifa);
Thomas Graf4a89c252006-11-24 17:14:51 -0800668
669 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670}
671
Thomas Grafa6f01ca2006-11-24 17:14:07 -0800672static inline size_t dn_ifaddr_nlmsg_size(void)
673{
674 return NLMSG_ALIGN(sizeof(struct ifaddrmsg))
675 + nla_total_size(IFNAMSIZ) /* IFA_LABEL */
676 + nla_total_size(2) /* IFA_ADDRESS */
Jiri Pirko9a32b862013-12-08 12:16:09 +0100677 + nla_total_size(2) /* IFA_LOCAL */
678 + nla_total_size(4); /* IFA_FLAGS */
Thomas Grafa6f01ca2006-11-24 17:14:07 -0800679}
680
Thomas Graf4a89c252006-11-24 17:14:51 -0800681static int dn_nl_fill_ifaddr(struct sk_buff *skb, struct dn_ifaddr *ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000682 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683{
684 struct ifaddrmsg *ifm;
685 struct nlmsghdr *nlh;
Jiri Pirko9a32b862013-12-08 12:16:09 +0100686 u32 ifa_flags = ifa->ifa_flags | IFA_F_PERMANENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Eric W. Biederman15e47302012-09-07 20:12:54 +0000688 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*ifm), flags);
Thomas Graf4a89c252006-11-24 17:14:51 -0800689 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -0800690 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Thomas Graf4a89c252006-11-24 17:14:51 -0800692 ifm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 ifm->ifa_family = AF_DECnet;
694 ifm->ifa_prefixlen = 16;
Jiri Pirko9a32b862013-12-08 12:16:09 +0100695 ifm->ifa_flags = ifa_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 ifm->ifa_scope = ifa->ifa_scope;
697 ifm->ifa_index = ifa->ifa_dev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
David S. Millerb21dddb2012-04-01 20:15:14 -0400699 if ((ifa->ifa_address &&
700 nla_put_le16(skb, IFA_ADDRESS, ifa->ifa_address)) ||
701 (ifa->ifa_local &&
702 nla_put_le16(skb, IFA_LOCAL, ifa->ifa_local)) ||
703 (ifa->ifa_label[0] &&
Jiri Pirko9a32b862013-12-08 12:16:09 +0100704 nla_put_string(skb, IFA_LABEL, ifa->ifa_label)) ||
705 nla_put_u32(skb, IFA_FLAGS, ifa_flags))
David S. Millerb21dddb2012-04-01 20:15:14 -0400706 goto nla_put_failure;
Johannes Berg053c0952015-01-16 22:09:00 +0100707 nlmsg_end(skb, nlh);
708 return 0;
Thomas Graf4a89c252006-11-24 17:14:51 -0800709
710nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -0800711 nlmsg_cancel(skb, nlh);
712 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713}
714
Thomas Grafb020b942006-11-24 17:14:31 -0800715static void dn_ifaddr_notify(int event, struct dn_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716{
717 struct sk_buff *skb;
Thomas Grafdc738dd2006-08-15 00:33:35 -0700718 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
Thomas Grafa6f01ca2006-11-24 17:14:07 -0800720 skb = alloc_skb(dn_ifaddr_nlmsg_size(), GFP_KERNEL);
Thomas Grafdc738dd2006-08-15 00:33:35 -0700721 if (skb == NULL)
722 goto errout;
723
Thomas Graf4a89c252006-11-24 17:14:51 -0800724 err = dn_nl_fill_ifaddr(skb, ifa, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -0800725 if (err < 0) {
726 /* -EMSGSIZE implies BUG in dn_ifaddr_nlmsg_size() */
727 WARN_ON(err == -EMSGSIZE);
728 kfree_skb(skb);
729 goto errout;
730 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -0800731 rtnl_notify(skb, &init_net, 0, RTNLGRP_DECnet_IFADDR, NULL, GFP_KERNEL);
732 return;
Thomas Grafdc738dd2006-08-15 00:33:35 -0700733errout:
734 if (err < 0)
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800735 rtnl_set_sk_err(&init_net, RTNLGRP_DECnet_IFADDR, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736}
737
Thomas Graf4a89c252006-11-24 17:14:51 -0800738static int dn_nl_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900740 struct net *net = sock_net(skb->sk);
Thomas Graf4a89c252006-11-24 17:14:51 -0800741 int idx, dn_idx = 0, skip_ndevs, skip_naddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 struct net_device *dev;
743 struct dn_dev *dn_db;
744 struct dn_ifaddr *ifa;
745
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800746 if (!net_eq(net, &init_net))
Denis V. Lunevb8542722007-12-01 00:21:31 +1100747 return 0;
748
Thomas Graf4a89c252006-11-24 17:14:51 -0800749 skip_ndevs = cb->args[0];
750 skip_naddr = cb->args[1];
751
Pavel Emelianov7562f872007-05-03 15:13:45 -0700752 idx = 0;
Eric Dumazete67f88d2011-04-27 22:56:07 +0000753 rcu_read_lock();
754 for_each_netdev_rcu(&init_net, dev) {
Thomas Graf4a89c252006-11-24 17:14:51 -0800755 if (idx < skip_ndevs)
Pavel Emelianov7562f872007-05-03 15:13:45 -0700756 goto cont;
Thomas Graf4a89c252006-11-24 17:14:51 -0800757 else if (idx > skip_ndevs) {
758 /* Only skip over addresses for first dev dumped
759 * in this iteration (idx == skip_ndevs) */
760 skip_naddr = 0;
761 }
762
Eric Dumazete67f88d2011-04-27 22:56:07 +0000763 if ((dn_db = rcu_dereference(dev->dn_ptr)) == NULL)
Pavel Emelianov7562f872007-05-03 15:13:45 -0700764 goto cont;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
Eric Dumazete67f88d2011-04-27 22:56:07 +0000766 for (ifa = rcu_dereference(dn_db->ifa_list), dn_idx = 0; ifa;
767 ifa = rcu_dereference(ifa->ifa_next), dn_idx++) {
Thomas Graf4a89c252006-11-24 17:14:51 -0800768 if (dn_idx < skip_naddr)
Patrick McHardya2221f32007-09-11 10:45:15 +0200769 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Eric W. Biederman15e47302012-09-07 20:12:54 +0000771 if (dn_nl_fill_ifaddr(skb, ifa, NETLINK_CB(cb->skb).portid,
Thomas Graf4a89c252006-11-24 17:14:51 -0800772 cb->nlh->nlmsg_seq, RTM_NEWADDR,
773 NLM_F_MULTI) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 goto done;
775 }
Pavel Emelianov7562f872007-05-03 15:13:45 -0700776cont:
777 idx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 }
779done:
Eric Dumazete67f88d2011-04-27 22:56:07 +0000780 rcu_read_unlock();
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
Johannes Berg4df864c2017-06-16 14:29:21 +0200847 msg = 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
Johannes Bergd58ff352017-06-16 14:29:23 +0200868 pktlen = 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 */
Himangi Saraogib5c5c362014-08-20 23:13:07 +0530882 if (time_before(jiffies, dn_db->uptime + DRDELAY))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 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
Johannes Bergd58ff352017-06-16 14:29:23 +0200960 pktlen = 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
Kees Cookeb4ddaf2017-10-16 17:28:45 -07001039static void dn_dev_timer_func(struct timer_list *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040{
Kees Cookeb4ddaf2017-10-16 17:28:45 -07001041 struct dn_dev *dn_db = from_timer(dn_db, t, timer);
1042 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 struct dn_ifaddr *ifa;
1044
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001045 rcu_read_lock();
Kees Cookeb4ddaf2017-10-16 17:28:45 -07001046 dev = dn_db->dev;
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
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 dn_db->timer.expires = jiffies + (dn_db->parms.t2 * HZ);
1072
1073 add_timer(&dn_db->timer);
1074}
1075
Roel Kluin5eaa65b2008-12-10 15:18:31 -08001076static struct dn_dev *dn_dev_create(struct net_device *dev, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077{
1078 int i;
1079 struct dn_dev_parms *p = dn_dev_list;
1080 struct dn_dev *dn_db;
1081
1082 for(i = 0; i < DN_DEV_LIST_SIZE; i++, p++) {
1083 if (p->type == dev->type)
1084 break;
1085 }
1086
1087 *err = -ENODEV;
1088 if (i == DN_DEV_LIST_SIZE)
1089 return NULL;
1090
1091 *err = -ENOBUFS;
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001092 if ((dn_db = kzalloc(sizeof(struct dn_dev), GFP_ATOMIC)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 return NULL;
1094
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 memcpy(&dn_db->parms, p, sizeof(struct dn_dev_parms));
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001096
Eric Dumazetcf778b02012-01-12 04:41:32 +00001097 rcu_assign_pointer(dev->dn_ptr, dn_db);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 dn_db->dev = dev;
Kees Cookeb4ddaf2017-10-16 17:28:45 -07001099 timer_setup(&dn_db->timer, dn_dev_timer_func, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
1101 dn_db->uptime = jiffies;
Eric W. Biederman95743de2007-01-25 15:51:51 -08001102
1103 dn_db->neigh_parms = neigh_parms_alloc(dev, &dn_neigh_table);
1104 if (!dn_db->neigh_parms) {
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00001105 RCU_INIT_POINTER(dev->dn_ptr, NULL);
Eric W. Biederman95743de2007-01-25 15:51:51 -08001106 kfree(dn_db);
1107 return NULL;
1108 }
1109
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 if (dn_db->parms.up) {
1111 if (dn_db->parms.up(dev) < 0) {
Eric W. Biederman95743de2007-01-25 15:51:51 -08001112 neigh_parms_release(&dn_neigh_table, dn_db->neigh_parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 dev->dn_ptr = NULL;
1114 kfree(dn_db);
1115 return NULL;
1116 }
1117 }
1118
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 dn_dev_sysctl_register(dev, &dn_db->parms);
1120
1121 dn_dev_set_timer(dev);
1122
1123 *err = 0;
1124 return dn_db;
1125}
1126
1127
1128/*
1129 * This processes a device up event. We only start up
1130 * the loopback device & ethernet devices with correct
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001131 * MAC addresses automatically. Others must be started
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 * specifically.
1133 *
1134 * FIXME: How should we configure the loopback address ? If we could dispense
1135 * with using decnet_address here and for autobind, it will be one less thing
1136 * for users to worry about setting up.
1137 */
1138
1139void dn_dev_up(struct net_device *dev)
1140{
1141 struct dn_ifaddr *ifa;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -08001142 __le16 addr = decnet_address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 int maybe_default = 0;
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001144 struct dn_dev *dn_db = rtnl_dereference(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
1146 if ((dev->type != ARPHRD_ETHER) && (dev->type != ARPHRD_LOOPBACK))
1147 return;
1148
1149 /*
1150 * Need to ensure that loopback device has a dn_db attached to it
1151 * to allow creation of neighbours against it, even though it might
1152 * not have a local address of its own. Might as well do the same for
1153 * all autoconfigured interfaces.
1154 */
1155 if (dn_db == NULL) {
1156 int err;
1157 dn_db = dn_dev_create(dev, &err);
1158 if (dn_db == NULL)
1159 return;
1160 }
1161
1162 if (dev->type == ARPHRD_ETHER) {
1163 if (memcmp(dev->dev_addr, dn_hiord, 4) != 0)
1164 return;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -08001165 addr = dn_eth2dn(dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 maybe_default = 1;
1167 }
1168
1169 if (addr == 0)
1170 return;
1171
1172 if ((ifa = dn_dev_alloc_ifa()) == NULL)
1173 return;
1174
1175 ifa->ifa_local = ifa->ifa_address = addr;
1176 ifa->ifa_flags = 0;
1177 ifa->ifa_scope = RT_SCOPE_UNIVERSE;
1178 strcpy(ifa->ifa_label, dev->name);
1179
1180 dn_dev_set_ifa(dev, ifa);
1181
1182 /*
1183 * Automagically set the default device to the first automatically
1184 * configured ethernet card in the system.
1185 */
1186 if (maybe_default) {
1187 dev_hold(dev);
1188 if (dn_dev_set_default(dev, 0))
1189 dev_put(dev);
1190 }
1191}
1192
1193static void dn_dev_delete(struct net_device *dev)
1194{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001195 struct dn_dev *dn_db = rtnl_dereference(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
1197 if (dn_db == NULL)
1198 return;
1199
1200 del_timer_sync(&dn_db->timer);
1201 dn_dev_sysctl_unregister(&dn_db->parms);
1202 dn_dev_check_default(dev);
1203 neigh_ifdown(&dn_neigh_table, dev);
1204
1205 if (dn_db->parms.down)
1206 dn_db->parms.down(dev);
1207
1208 dev->dn_ptr = NULL;
1209
1210 neigh_parms_release(&dn_neigh_table, dn_db->neigh_parms);
1211 neigh_ifdown(&dn_neigh_table, dev);
1212
1213 if (dn_db->router)
1214 neigh_release(dn_db->router);
1215 if (dn_db->peer)
1216 neigh_release(dn_db->peer);
1217
1218 kfree(dn_db);
1219}
1220
1221void dn_dev_down(struct net_device *dev)
1222{
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001223 struct dn_dev *dn_db = rtnl_dereference(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 struct dn_ifaddr *ifa;
1225
1226 if (dn_db == NULL)
1227 return;
1228
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001229 while ((ifa = rtnl_dereference(dn_db->ifa_list)) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 dn_dev_del_ifa(dn_db, &dn_db->ifa_list, 0);
1231 dn_dev_free_ifa(ifa);
1232 }
1233
1234 dn_dev_delete(dev);
1235}
1236
1237void dn_dev_init_pkt(struct sk_buff *skb)
1238{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239}
1240
1241void dn_dev_veri_pkt(struct sk_buff *skb)
1242{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243}
1244
1245void dn_dev_hello(struct sk_buff *skb)
1246{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247}
1248
1249void dn_dev_devices_off(void)
1250{
1251 struct net_device *dev;
1252
1253 rtnl_lock();
Eric W. Biederman881d9662007-09-17 11:56:21 -07001254 for_each_netdev(&init_net, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 dn_dev_down(dev);
1256 rtnl_unlock();
1257
1258}
1259
1260void dn_dev_devices_on(void)
1261{
1262 struct net_device *dev;
1263
1264 rtnl_lock();
Eric W. Biederman881d9662007-09-17 11:56:21 -07001265 for_each_netdev(&init_net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 if (dev->flags & IFF_UP)
1267 dn_dev_up(dev);
1268 }
1269 rtnl_unlock();
1270}
1271
1272int register_dnaddr_notifier(struct notifier_block *nb)
1273{
Alan Sterne041c682006-03-27 01:16:30 -08001274 return blocking_notifier_chain_register(&dnaddr_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275}
1276
1277int unregister_dnaddr_notifier(struct notifier_block *nb)
1278{
Alan Sterne041c682006-03-27 01:16:30 -08001279 return blocking_notifier_chain_unregister(&dnaddr_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280}
1281
1282#ifdef CONFIG_PROC_FS
Pavel Emelianov7562f872007-05-03 15:13:45 -07001283static inline int is_dn_dev(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284{
Pavel Emelianov7562f872007-05-03 15:13:45 -07001285 return dev->dn_ptr != NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286}
1287
1288static void *dn_dev_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001289 __acquires(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290{
Pavel Emelianov7562f872007-05-03 15:13:45 -07001291 int i;
1292 struct net_device *dev;
1293
stephen hemmingerfa918602009-11-10 07:54:53 +00001294 rcu_read_lock();
Pavel Emelianov7562f872007-05-03 15:13:45 -07001295
1296 if (*pos == 0)
1297 return SEQ_START_TOKEN;
1298
1299 i = 1;
stephen hemmingerfa918602009-11-10 07:54:53 +00001300 for_each_netdev_rcu(&init_net, dev) {
Pavel Emelianov7562f872007-05-03 15:13:45 -07001301 if (!is_dn_dev(dev))
1302 continue;
1303
1304 if (i++ == *pos)
1305 return dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 }
Pavel Emelianov7562f872007-05-03 15:13:45 -07001307
1308 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309}
1310
1311static void *dn_dev_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1312{
Pavel Emelianov7562f872007-05-03 15:13:45 -07001313 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 ++*pos;
Pavel Emelianov7562f872007-05-03 15:13:45 -07001316
Joe Perchesea110732011-06-13 16:21:26 +00001317 dev = v;
Pavel Emelianov7562f872007-05-03 15:13:45 -07001318 if (v == SEQ_START_TOKEN)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001319 dev = net_device_entry(&init_net.dev_base_head);
Pavel Emelianov7562f872007-05-03 15:13:45 -07001320
stephen hemmingerfa918602009-11-10 07:54:53 +00001321 for_each_netdev_continue_rcu(&init_net, dev) {
Pavel Emelianov7562f872007-05-03 15:13:45 -07001322 if (!is_dn_dev(dev))
1323 continue;
1324
1325 return dev;
1326 }
1327
1328 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329}
1330
1331static void dn_dev_seq_stop(struct seq_file *seq, void *v)
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001332 __releases(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333{
stephen hemmingerfa918602009-11-10 07:54:53 +00001334 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335}
1336
1337static char *dn_type2asc(char type)
1338{
Joe Perches06f8fe12011-07-01 09:43:03 +00001339 switch (type) {
1340 case DN_DEV_BCAST:
1341 return "B";
1342 case DN_DEV_UCAST:
1343 return "U";
1344 case DN_DEV_MPOINT:
1345 return "M";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 }
1347
1348 return "?";
1349}
1350
1351static int dn_dev_seq_show(struct seq_file *seq, void *v)
1352{
1353 if (v == SEQ_START_TOKEN)
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001354 seq_puts(seq, "Name Flags T1 Timer1 T3 Timer3 BlkSize Pri State DevType Router Peer\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 else {
1356 struct net_device *dev = v;
1357 char peer_buf[DN_ASCBUF_LEN];
1358 char router_buf[DN_ASCBUF_LEN];
Eric Dumazetfc766e4c2010-10-29 03:09:24 +00001359 struct dn_dev *dn_db = rcu_dereference(dev->dn_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001361 seq_printf(seq, "%-8s %1s %04u %04u %04lu %04lu"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 " %04hu %03d %02x %-10s %-7s %-7s\n",
Nathan Chancellor5b9b0a802018-09-21 12:30:34 -07001363 dev->name,
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001364 dn_type2asc(dn_db->parms.mode),
1365 0, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 dn_db->t3, dn_db->parms.t3,
1367 mtu2blksize(dev),
1368 dn_db->parms.priority,
1369 dn_db->parms.state, dn_db->parms.name,
Harvey Harrisonc4106aa2008-11-27 00:12:47 -08001370 dn_db->router ? dn_addr2asc(le16_to_cpu(*(__le16 *)dn_db->router->primary_key), router_buf) : "",
1371 dn_db->peer ? dn_addr2asc(le16_to_cpu(*(__le16 *)dn_db->peer->primary_key), peer_buf) : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 }
1373 return 0;
1374}
1375
Philippe De Muyter56b3d972007-07-10 23:07:31 -07001376static const struct seq_operations dn_dev_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 .start = dn_dev_seq_start,
1378 .next = dn_dev_seq_next,
1379 .stop = dn_dev_seq_stop,
1380 .show = dn_dev_seq_show,
1381};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382#endif /* CONFIG_PROC_FS */
1383
Alexey Dobriyan4e058062007-11-05 21:30:11 -08001384static int addr[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385module_param_array(addr, int, NULL, 0444);
1386MODULE_PARM_DESC(addr, "The DECnet address of this machine: area,node");
1387
1388void __init dn_dev_init(void)
1389{
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001390 if (addr[0] > 63 || addr[0] < 0) {
1391 printk(KERN_ERR "DECnet: Area must be between 0 and 63");
1392 return;
1393 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +09001395 if (addr[1] > 1023 || addr[1] < 0) {
1396 printk(KERN_ERR "DECnet: Node must be between 0 and 1023");
1397 return;
1398 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
Harvey Harrisonc4106aa2008-11-27 00:12:47 -08001400 decnet_address = cpu_to_le16((addr[0] << 10) | addr[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
1402 dn_dev_devices_on();
1403
Florian Westphalc1c502b2017-12-02 21:44:07 +01001404 rtnl_register_module(THIS_MODULE, PF_DECnet, RTM_NEWADDR,
1405 dn_nl_newaddr, NULL, 0);
1406 rtnl_register_module(THIS_MODULE, PF_DECnet, RTM_DELADDR,
1407 dn_nl_deladdr, NULL, 0);
1408 rtnl_register_module(THIS_MODULE, PF_DECnet, RTM_GETADDR,
1409 NULL, dn_nl_dump_ifaddr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
Christoph Hellwigfddda2b2018-04-13 19:44:18 +02001411 proc_create_seq("decnet_dev", 0444, init_net.proc_net, &dn_dev_seq_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
1413#ifdef CONFIG_SYSCTL
1414 {
1415 int i;
1416 for(i = 0; i < DN_DEV_LIST_SIZE; i++)
1417 dn_dev_sysctl_register(NULL, &dn_dev_list[i]);
1418 }
1419#endif /* CONFIG_SYSCTL */
1420}
1421
1422void __exit dn_dev_cleanup(void)
1423{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424#ifdef CONFIG_SYSCTL
1425 {
1426 int i;
1427 for(i = 0; i < DN_DEV_LIST_SIZE; i++)
1428 dn_dev_sysctl_unregister(&dn_dev_list[i]);
1429 }
1430#endif /* CONFIG_SYSCTL */
1431
Gao fengece31ff2013-02-18 01:34:56 +00001432 remove_proc_entry("decnet_dev", init_net.proc_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
1434 dn_dev_devices_off();
1435}