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.
6 * DECnet sysctl support functions
8 * Author: Steve Whitehouse <SteveW@ACM.org>
12 * Steve Whitehouse - C99 changes and default device handling
15 #include <linux/config.h>
17 #include <linux/sysctl.h>
19 #include <linux/netdevice.h>
20 #include <linux/string.h>
21 #include <net/neighbour.h>
25 #include <asm/uaccess.h>
28 #include <net/dn_dev.h>
29 #include <net/dn_route.h>
32 int decnet_debug_level
;
33 int decnet_time_wait
= 30;
34 int decnet_dn_count
= 1;
35 int decnet_di_count
= 3;
36 int decnet_dr_count
= 3;
37 int decnet_log_martians
= 1;
38 int decnet_no_fc_max_cwnd
= NSP_MIN_WINDOW
;
41 extern int decnet_dst_gc_interval
;
42 static int min_decnet_time_wait
[] = { 5 };
43 static int max_decnet_time_wait
[] = { 600 };
44 static int min_state_count
[] = { 1 };
45 static int max_state_count
[] = { NSP_MAXRXTSHIFT
};
46 static int min_decnet_dst_gc_interval
[] = { 1 };
47 static int max_decnet_dst_gc_interval
[] = { 60 };
48 static int min_decnet_no_fc_max_cwnd
[] = { NSP_MIN_WINDOW
};
49 static int max_decnet_no_fc_max_cwnd
[] = { NSP_MAX_WINDOW
};
50 static char node_name
[7] = "???";
52 static struct ctl_table_header
*dn_table_header
= NULL
;
57 #define ISNUM(x) (((x) >= '0') && ((x) <= '9'))
58 #define ISLOWER(x) (((x) >= 'a') && ((x) <= 'z'))
59 #define ISUPPER(x) (((x) >= 'A') && ((x) <= 'Z'))
60 #define ISALPHA(x) (ISLOWER(x) || ISUPPER(x))
61 #define INVALID_END_CHAR(x) (ISNUM(x) || ISALPHA(x))
63 static void strip_it(char *str
)
80 * Simple routine to parse an ascii DECnet address
81 * into a network order address.
83 static int parse_addr(dn_address
*addr
, char *str
)
85 dn_address area
, node
;
87 while(*str
&& !ISNUM(*str
)) str
++;
92 area
= (*str
++ - '0');
95 area
+= (*str
++ - '0');
107 node
+= (*str
++ - '0');
111 node
+= (*str
++ - '0');
115 node
+= (*str
++ - '0');
118 if ((node
> 1023) || (area
> 63))
121 if (INVALID_END_CHAR(*str
))
124 *addr
= dn_htons((area
<< 10) | node
);
130 static int dn_node_address_strategy(ctl_table
*table
, int __user
*name
, int nlen
,
131 void __user
*oldval
, size_t __user
*oldlenp
,
132 void __user
*newval
, size_t newlen
,
138 if (oldval
&& oldlenp
) {
139 if (get_user(len
, oldlenp
))
142 if (len
!= sizeof(unsigned short))
144 if (put_user(decnet_address
, (unsigned short __user
*)oldval
))
148 if (newval
&& newlen
) {
149 if (newlen
!= sizeof(unsigned short))
151 if (get_user(addr
, (unsigned short __user
*)newval
))
154 dn_dev_devices_off();
156 decnet_address
= addr
;
163 static int dn_node_address_handler(ctl_table
*table
, int write
,
166 size_t *lenp
, loff_t
*ppos
)
168 char addr
[DN_ASCBUF_LEN
];
172 if (!*lenp
|| (*ppos
&& !write
)) {
178 int len
= (*lenp
< DN_ASCBUF_LEN
) ? *lenp
: (DN_ASCBUF_LEN
-1);
180 if (copy_from_user(addr
, buffer
, len
))
186 if (parse_addr(&dnaddr
, addr
))
189 dn_dev_devices_off();
191 decnet_address
= dnaddr
;
200 dn_addr2asc(dn_ntohs(decnet_address
), addr
);
204 if (len
> *lenp
) len
= *lenp
;
206 if (copy_to_user(buffer
, addr
, len
))
216 static int dn_def_dev_strategy(ctl_table
*table
, int __user
*name
, int nlen
,
217 void __user
*oldval
, size_t __user
*oldlenp
,
218 void __user
*newval
, size_t newlen
,
222 struct net_device
*dev
;
229 if (oldval
&& oldlenp
) {
230 if (get_user(len
, oldlenp
))
233 dev
= dn_dev_get_default();
235 strcpy(devname
, dev
->name
);
239 namel
= strlen(devname
) + 1;
240 if (len
> namel
) len
= namel
;
242 if (copy_to_user(oldval
, devname
, len
))
245 if (put_user(len
, oldlenp
))
250 if (newval
&& newlen
) {
254 if (copy_from_user(devname
, newval
, newlen
))
259 dev
= dev_get_by_name(devname
);
264 if (dev
->dn_ptr
!= NULL
) {
265 rv
= dn_dev_set_default(dev
, 1);
275 static int dn_def_dev_handler(ctl_table
*table
, int write
,
278 size_t *lenp
, loff_t
*ppos
)
281 struct net_device
*dev
;
284 if (!*lenp
|| (*ppos
&& !write
)) {
293 if (copy_from_user(devname
, buffer
, *lenp
))
299 dev
= dev_get_by_name(devname
);
303 if (dev
->dn_ptr
== NULL
) {
308 if (dn_dev_set_default(dev
, 1)) {
317 dev
= dn_dev_get_default();
323 strcpy(devname
, dev
->name
);
325 len
= strlen(devname
);
326 devname
[len
++] = '\n';
328 if (len
> *lenp
) len
= *lenp
;
330 if (copy_to_user(buffer
, devname
, len
))
339 static ctl_table dn_table
[] = {
341 .ctl_name
= NET_DECNET_NODE_ADDRESS
,
342 .procname
= "node_address",
345 .proc_handler
= dn_node_address_handler
,
346 .strategy
= dn_node_address_strategy
,
349 .ctl_name
= NET_DECNET_NODE_NAME
,
350 .procname
= "node_name",
354 .proc_handler
= &proc_dostring
,
355 .strategy
= &sysctl_string
,
358 .ctl_name
= NET_DECNET_DEFAULT_DEVICE
,
359 .procname
= "default_device",
362 .proc_handler
= dn_def_dev_handler
,
363 .strategy
= dn_def_dev_strategy
,
366 .ctl_name
= NET_DECNET_TIME_WAIT
,
367 .procname
= "time_wait",
368 .data
= &decnet_time_wait
,
369 .maxlen
= sizeof(int),
371 .proc_handler
= &proc_dointvec_minmax
,
372 .strategy
= &sysctl_intvec
,
373 .extra1
= &min_decnet_time_wait
,
374 .extra2
= &max_decnet_time_wait
377 .ctl_name
= NET_DECNET_DN_COUNT
,
378 .procname
= "dn_count",
379 .data
= &decnet_dn_count
,
380 .maxlen
= sizeof(int),
382 .proc_handler
= &proc_dointvec_minmax
,
383 .strategy
= &sysctl_intvec
,
384 .extra1
= &min_state_count
,
385 .extra2
= &max_state_count
388 .ctl_name
= NET_DECNET_DI_COUNT
,
389 .procname
= "di_count",
390 .data
= &decnet_di_count
,
391 .maxlen
= sizeof(int),
393 .proc_handler
= &proc_dointvec_minmax
,
394 .strategy
= &sysctl_intvec
,
395 .extra1
= &min_state_count
,
396 .extra2
= &max_state_count
399 .ctl_name
= NET_DECNET_DR_COUNT
,
400 .procname
= "dr_count",
401 .data
= &decnet_dr_count
,
402 .maxlen
= sizeof(int),
404 .proc_handler
= &proc_dointvec_minmax
,
405 .strategy
= &sysctl_intvec
,
406 .extra1
= &min_state_count
,
407 .extra2
= &max_state_count
410 .ctl_name
= NET_DECNET_DST_GC_INTERVAL
,
411 .procname
= "dst_gc_interval",
412 .data
= &decnet_dst_gc_interval
,
413 .maxlen
= sizeof(int),
415 .proc_handler
= &proc_dointvec_minmax
,
416 .strategy
= &sysctl_intvec
,
417 .extra1
= &min_decnet_dst_gc_interval
,
418 .extra2
= &max_decnet_dst_gc_interval
421 .ctl_name
= NET_DECNET_NO_FC_MAX_CWND
,
422 .procname
= "no_fc_max_cwnd",
423 .data
= &decnet_no_fc_max_cwnd
,
424 .maxlen
= sizeof(int),
426 .proc_handler
= &proc_dointvec_minmax
,
427 .strategy
= &sysctl_intvec
,
428 .extra1
= &min_decnet_no_fc_max_cwnd
,
429 .extra2
= &max_decnet_no_fc_max_cwnd
432 .ctl_name
= NET_DECNET_DEBUG_LEVEL
,
434 .data
= &decnet_debug_level
,
435 .maxlen
= sizeof(int),
437 .proc_handler
= &proc_dointvec
,
438 .strategy
= &sysctl_intvec
,
443 static ctl_table dn_dir_table
[] = {
445 .ctl_name
= NET_DECNET
,
446 .procname
= "decnet",
452 static ctl_table dn_root_table
[] = {
457 .child
= dn_dir_table
462 void dn_register_sysctl(void)
464 dn_table_header
= register_sysctl_table(dn_root_table
, 1);
467 void dn_unregister_sysctl(void)
469 unregister_sysctl_table(dn_table_header
);
472 #else /* CONFIG_SYSCTL */
473 void dn_unregister_sysctl(void)
476 void dn_register_sysctl(void)