[IPVS]: Fix sysctl warnings about missing strategy
[safe/jmp/linux-2.6] / kernel / sysctl_check.c
1 #include <linux/stat.h>
2 #include <linux/sysctl.h>
3 #include "../arch/s390/appldata/appldata.h"
4 #include "../fs/xfs/linux-2.6/xfs_sysctl.h"
5 #include <linux/sunrpc/debug.h>
6 #include <linux/string.h>
7 #include <net/ip_vs.h>
8
9 struct trans_ctl_table {
10         int                     ctl_name;
11         const char              *procname;
12         struct trans_ctl_table  *child;
13 };
14
15 static struct trans_ctl_table trans_random_table[] = {
16         { RANDOM_POOLSIZE,      "poolsize" },
17         { RANDOM_ENTROPY_COUNT, "entropy_avail" },
18         { RANDOM_READ_THRESH,   "read_wakeup_threshold" },
19         { RANDOM_WRITE_THRESH,  "write_wakeup_threshold" },
20         { RANDOM_BOOT_ID,       "boot_id" },
21         { RANDOM_UUID,          "uuid" },
22         {}
23 };
24
25 static struct trans_ctl_table trans_pty_table[] = {
26         { PTY_MAX,              "max" },
27         { PTY_NR,               "nr" },
28         {}
29 };
30
31 static struct trans_ctl_table trans_kern_table[] = {
32         { KERN_OSTYPE,                  "ostype" },
33         { KERN_OSRELEASE,               "osrelease" },
34         /* KERN_OSREV not used */
35         { KERN_VERSION,                 "version" },
36         /* KERN_SECUREMASK not used */
37         /* KERN_PROF not used */
38         { KERN_NODENAME,                "hostname" },
39         { KERN_DOMAINNAME,              "domainname" },
40
41 #ifdef CONFIG_SECURITY_CAPABILITIES
42         { KERN_CAP_BSET,                "cap-bound" },
43 #endif /* def CONFIG_SECURITY_CAPABILITIES */
44
45         { KERN_PANIC,                   "panic" },
46         { KERN_REALROOTDEV,             "real-root-dev" },
47
48         { KERN_SPARC_REBOOT,            "reboot-cmd" },
49         { KERN_CTLALTDEL,               "ctrl-alt-del" },
50         { KERN_PRINTK,                  "printk" },
51
52         /* KERN_NAMETRANS not used */
53         /* KERN_PPC_HTABRECLAIM not used */
54         /* KERN_PPC_ZEROPAGED not used */
55         { KERN_PPC_POWERSAVE_NAP,       "powersave-nap" },
56
57         { KERN_MODPROBE,                "modprobe" },
58         { KERN_SG_BIG_BUFF,             "sg-big-buff" },
59         { KERN_ACCT,                    "acct" },
60         { KERN_PPC_L2CR,                "l2cr" },
61
62         /* KERN_RTSIGNR not used */
63         /* KERN_RTSIGMAX not used */
64
65         { KERN_SHMMAX,                  "shmmax" },
66         { KERN_MSGMAX,                  "msgmax" },
67         { KERN_MSGMNB,                  "msgmnb" },
68         /* KERN_MSGPOOL not used*/
69         { KERN_SYSRQ,                   "sysrq" },
70         { KERN_MAX_THREADS,             "threads-max" },
71         { KERN_RANDOM,                  "random",       trans_random_table },
72         { KERN_SHMALL,                  "shmall" },
73         { KERN_MSGMNI,                  "msgmni" },
74         { KERN_SEM,                     "sem" },
75         { KERN_SPARC_STOP_A,            "stop-a" },
76         { KERN_SHMMNI,                  "shmmni" },
77
78         { KERN_OVERFLOWUID,             "overflowuid" },
79         { KERN_OVERFLOWGID,             "overflowgid" },
80
81         { KERN_HOTPLUG,                 "hotplug", },
82         { KERN_IEEE_EMULATION_WARNINGS, "ieee_emulation_warnings" },
83
84         { KERN_S390_USER_DEBUG_LOGGING, "userprocess_debug" },
85         { KERN_CORE_USES_PID,           "core_uses_pid" },
86         { KERN_TAINTED,                 "tainted" },
87         { KERN_CADPID,                  "cad_pid" },
88         { KERN_PIDMAX,                  "pid_max" },
89         { KERN_CORE_PATTERN,            "core_pattern" },
90         { KERN_PANIC_ON_OOPS,           "panic_on_oops" },
91         { KERN_HPPA_PWRSW,              "soft-power" },
92         { KERN_HPPA_UNALIGNED,          "unaligned-trap" },
93
94         { KERN_PRINTK_RATELIMIT,        "printk_ratelimit" },
95         { KERN_PRINTK_RATELIMIT_BURST,  "printk_ratelimit_burst" },
96
97         { KERN_PTY,                     "pty",          trans_pty_table },
98         { KERN_NGROUPS_MAX,             "ngroups_max" },
99         { KERN_SPARC_SCONS_PWROFF,      "scons_poweroff" },
100         { KERN_HZ_TIMER,                "hz_timer" },
101         { KERN_UNKNOWN_NMI_PANIC,       "unknown_nmi_panic" },
102         { KERN_BOOTLOADER_TYPE,         "bootloader_type" },
103         { KERN_RANDOMIZE,               "randomize_va_space" },
104
105         { KERN_SPIN_RETRY,              "spin_retry" },
106         { KERN_ACPI_VIDEO_FLAGS,        "acpi_video_flags" },
107         { KERN_IA64_UNALIGNED,          "ignore-unaligned-usertrap" },
108         { KERN_COMPAT_LOG,              "compat-log" },
109         { KERN_MAX_LOCK_DEPTH,          "max_lock_depth" },
110         { KERN_NMI_WATCHDOG,            "nmi_watchdog" },
111         { KERN_PANIC_ON_NMI,            "panic_on_unrecovered_nmi" },
112         {}
113 };
114
115 static struct trans_ctl_table trans_vm_table[] = {
116         { VM_OVERCOMMIT_MEMORY,         "overcommit_memory" },
117         { VM_PAGE_CLUSTER,              "page-cluster" },
118         { VM_DIRTY_BACKGROUND,          "dirty_background_ratio" },
119         { VM_DIRTY_RATIO,               "dirty_ratio" },
120         { VM_DIRTY_WB_CS,               "dirty_writeback_centisecs" },
121         { VM_DIRTY_EXPIRE_CS,           "dirty_expire_centisecs" },
122         { VM_NR_PDFLUSH_THREADS,        "nr_pdflush_threads" },
123         { VM_OVERCOMMIT_RATIO,          "overcommit_ratio" },
124         /* VM_PAGEBUF unused */
125         { VM_HUGETLB_PAGES,             "nr_hugepages" },
126         { VM_SWAPPINESS,                "swappiness" },
127         { VM_LOWMEM_RESERVE_RATIO,      "lowmem_reserve_ratio" },
128         { VM_MIN_FREE_KBYTES,           "min_free_kbytes" },
129         { VM_MAX_MAP_COUNT,             "max_map_count" },
130         { VM_LAPTOP_MODE,               "laptop_mode" },
131         { VM_BLOCK_DUMP,                "block_dump" },
132         { VM_HUGETLB_GROUP,             "hugetlb_shm_group" },
133         { VM_VFS_CACHE_PRESSURE,        "vfs_cache_pressure" },
134         { VM_LEGACY_VA_LAYOUT,          "legacy_va_layout" },
135         /* VM_SWAP_TOKEN_TIMEOUT unused */
136         { VM_DROP_PAGECACHE,            "drop_caches" },
137         { VM_PERCPU_PAGELIST_FRACTION,  "percpu_pagelist_fraction" },
138         { VM_ZONE_RECLAIM_MODE,         "zone_reclaim_mode" },
139         { VM_MIN_UNMAPPED,              "min_unmapped_ratio" },
140         { VM_PANIC_ON_OOM,              "panic_on_oom" },
141         { VM_VDSO_ENABLED,              "vdso_enabled" },
142         { VM_MIN_SLAB,                  "min_slab_ratio" },
143         { VM_CMM_PAGES,                 "cmm_pages" },
144         { VM_CMM_TIMED_PAGES,           "cmm_timed_pages" },
145         { VM_CMM_TIMEOUT,               "cmm_timeout" },
146
147         {}
148 };
149
150 static struct trans_ctl_table trans_net_core_table[] = {
151         { NET_CORE_WMEM_MAX,            "wmem_max" },
152         { NET_CORE_RMEM_MAX,            "rmem_max" },
153         { NET_CORE_WMEM_DEFAULT,        "wmem_default" },
154         { NET_CORE_RMEM_DEFAULT,        "rmem_default" },
155         /* NET_CORE_DESTROY_DELAY unused */
156         { NET_CORE_MAX_BACKLOG,         "netdev_max_backlog" },
157         /* NET_CORE_FASTROUTE unused */
158         { NET_CORE_MSG_COST,            "message_cost" },
159         { NET_CORE_MSG_BURST,           "message_burst" },
160         { NET_CORE_OPTMEM_MAX,          "optmem_max" },
161         /* NET_CORE_HOT_LIST_LENGTH unused */
162         /* NET_CORE_DIVERT_VERSION unused */
163         /* NET_CORE_NO_CONG_THRESH unused */
164         /* NET_CORE_NO_CONG unused */
165         /* NET_CORE_LO_CONG unused */
166         /* NET_CORE_MOD_CONG unused */
167         { NET_CORE_DEV_WEIGHT,          "dev_weight" },
168         { NET_CORE_SOMAXCONN,           "somaxconn" },
169         { NET_CORE_BUDGET,              "netdev_budget" },
170         { NET_CORE_AEVENT_ETIME,        "xfrm_aevent_etime" },
171         { NET_CORE_AEVENT_RSEQTH,       "xfrm_aevent_rseqth" },
172         { NET_CORE_WARNINGS,            "warnings" },
173         {},
174 };
175
176 static struct trans_ctl_table trans_net_unix_table[] = {
177         /* NET_UNIX_DESTROY_DELAY unused */
178         /* NET_UNIX_DELETE_DELAY unused */
179         { NET_UNIX_MAX_DGRAM_QLEN,      "max_dgram_qlen" },
180         {}
181 };
182
183 static struct trans_ctl_table trans_net_ipv4_route_table[] = {
184         { NET_IPV4_ROUTE_FLUSH,                 "flush" },
185         { NET_IPV4_ROUTE_MIN_DELAY,             "min_delay" },
186         { NET_IPV4_ROUTE_MAX_DELAY,             "max_delay" },
187         { NET_IPV4_ROUTE_GC_THRESH,             "gc_thresh" },
188         { NET_IPV4_ROUTE_MAX_SIZE,              "max_size" },
189         { NET_IPV4_ROUTE_GC_MIN_INTERVAL,       "gc_min_interval" },
190         { NET_IPV4_ROUTE_GC_TIMEOUT,            "gc_timeout" },
191         { NET_IPV4_ROUTE_GC_INTERVAL,           "gc_interval" },
192         { NET_IPV4_ROUTE_REDIRECT_LOAD,         "redirect_load" },
193         { NET_IPV4_ROUTE_REDIRECT_NUMBER,       "redirect_number" },
194         { NET_IPV4_ROUTE_REDIRECT_SILENCE,      "redirect_silence" },
195         { NET_IPV4_ROUTE_ERROR_COST,            "error_cost" },
196         { NET_IPV4_ROUTE_ERROR_BURST,           "error_burst" },
197         { NET_IPV4_ROUTE_GC_ELASTICITY,         "gc_elasticity" },
198         { NET_IPV4_ROUTE_MTU_EXPIRES,           "mtu_expires" },
199         { NET_IPV4_ROUTE_MIN_PMTU,              "min_pmtu" },
200         { NET_IPV4_ROUTE_MIN_ADVMSS,            "min_adv_mss" },
201         { NET_IPV4_ROUTE_SECRET_INTERVAL,       "secret_interval" },
202         { NET_IPV4_ROUTE_GC_MIN_INTERVAL_MS,    "gc_min_interval_ms" },
203         {}
204 };
205
206 static struct trans_ctl_table trans_net_ipv4_conf_vars_table[] = {
207         { NET_IPV4_CONF_FORWARDING,             "forwarding" },
208         { NET_IPV4_CONF_MC_FORWARDING,          "mc_forwarding" },
209
210         { NET_IPV4_CONF_PROXY_ARP,              "proxy_arp" },
211         { NET_IPV4_CONF_ACCEPT_REDIRECTS,       "accept_redirects" },
212         { NET_IPV4_CONF_SECURE_REDIRECTS,       "secure_redirects" },
213         { NET_IPV4_CONF_SEND_REDIRECTS,         "send_redirects" },
214         { NET_IPV4_CONF_SHARED_MEDIA,           "shared_media" },
215         { NET_IPV4_CONF_RP_FILTER,              "rp_filter" },
216         { NET_IPV4_CONF_ACCEPT_SOURCE_ROUTE,    "accept_source_route" },
217         { NET_IPV4_CONF_BOOTP_RELAY,            "bootp_relay" },
218         { NET_IPV4_CONF_LOG_MARTIANS,           "log_martians" },
219         { NET_IPV4_CONF_TAG,                    "tag" },
220         { NET_IPV4_CONF_ARPFILTER,              "arp_filter" },
221         { NET_IPV4_CONF_MEDIUM_ID,              "medium_id" },
222         { NET_IPV4_CONF_NOXFRM,                 "disable_xfrm" },
223         { NET_IPV4_CONF_NOPOLICY,               "disable_policy" },
224         { NET_IPV4_CONF_FORCE_IGMP_VERSION,     "force_igmp_version" },
225
226         { NET_IPV4_CONF_ARP_ANNOUNCE,           "arp_announce" },
227         { NET_IPV4_CONF_ARP_IGNORE,             "arp_ignore" },
228         { NET_IPV4_CONF_PROMOTE_SECONDARIES,    "promote_secondaries" },
229         { NET_IPV4_CONF_ARP_ACCEPT,             "arp_accept" },
230         {}
231 };
232
233 static struct trans_ctl_table trans_net_ipv4_conf_table[] = {
234         { NET_PROTO_CONF_ALL,           "all",          trans_net_ipv4_conf_vars_table },
235         { NET_PROTO_CONF_DEFAULT,       "default",      trans_net_ipv4_conf_vars_table },
236         { 0, NULL, trans_net_ipv4_conf_vars_table },
237         {}
238 };
239
240
241 static struct trans_ctl_table trans_net_ipv4_vs_table[] = {
242         { NET_IPV4_VS_AMEMTHRESH,       "amemthresh" },
243         { NET_IPV4_VS_DEBUG_LEVEL,      "debug_level" },
244         { NET_IPV4_VS_AMDROPRATE,       "am_droprate" },
245         { NET_IPV4_VS_TO_ES,            "timeout_established" },
246         { NET_IPV4_VS_TO_SS,            "timeout_synsent" },
247         { NET_IPV4_VS_TO_SR,            "timeout_synrecv" },
248         { NET_IPV4_VS_TO_FW,            "timeout_finwait" },
249         { NET_IPV4_VS_TO_TW,            "timeout_timewait" },
250         { NET_IPV4_VS_TO_CL,            "timeout_close" },
251         { NET_IPV4_VS_TO_CW,            "timeout_closewait" },
252         { NET_IPV4_VS_TO_LA,            "timeout_lastack" },
253         { NET_IPV4_VS_TO_LI,            "timeout_listen" },
254         { NET_IPV4_VS_TO_SA,            "timeout_synack" },
255         { NET_IPV4_VS_TO_UDP,           "timeout_udp" },
256         { NET_IPV4_VS_TO_ICMP,          "timeout_icmp" },
257         { NET_IPV4_VS_CACHE_BYPASS,     "cache_bypass" },
258         { NET_IPV4_VS_EXPIRE_NODEST_CONN,       "expire_nodest_conn" },
259         { NET_IPV4_VS_EXPIRE_QUIESCENT_TEMPLATE,        "expire_quiescent_template" },
260         { NET_IPV4_VS_NAT_ICMP_SEND,    "nat_icmp_send" },
261         { NET_IPV4_VS_LBLC_EXPIRE,              "lblc_expiration" },
262         { NET_IPV4_VS_LBLCR_EXPIRE,             "lblcr_expiration" },
263         {}
264 };
265
266 static struct trans_ctl_table trans_net_neigh_vars_table[] = {
267         { NET_NEIGH_MCAST_SOLICIT,      "mcast_solicit" },
268         { NET_NEIGH_UCAST_SOLICIT,      "ucast_solicit" },
269         { NET_NEIGH_APP_SOLICIT,        "app_solicit" },
270         { NET_NEIGH_RETRANS_TIME,       "retrans_time" },
271         { NET_NEIGH_REACHABLE_TIME,     "base_reachable_time" },
272         { NET_NEIGH_DELAY_PROBE_TIME,   "delay_first_probe_time" },
273         { NET_NEIGH_GC_STALE_TIME,      "gc_stale_time" },
274         { NET_NEIGH_UNRES_QLEN,         "unres_qlen" },
275         { NET_NEIGH_PROXY_QLEN,         "proxy_qlen" },
276         { NET_NEIGH_ANYCAST_DELAY,      "anycast_delay" },
277         { NET_NEIGH_PROXY_DELAY,        "proxy_delay" },
278         { NET_NEIGH_LOCKTIME,           "locktime" },
279         { NET_NEIGH_GC_INTERVAL,        "gc_interval" },
280         { NET_NEIGH_GC_THRESH1,         "gc_thresh1" },
281         { NET_NEIGH_GC_THRESH2,         "gc_thresh2" },
282         { NET_NEIGH_GC_THRESH3,         "gc_thresh3" },
283         { NET_NEIGH_RETRANS_TIME_MS,    "retrans_time_ms" },
284         { NET_NEIGH_REACHABLE_TIME_MS,  "base_reachable_time_ms" },
285         {}
286 };
287
288 static struct trans_ctl_table trans_net_neigh_table[] = {
289         { NET_PROTO_CONF_DEFAULT, "default", trans_net_neigh_vars_table },
290         { 0, NULL, trans_net_neigh_vars_table },
291         {}
292 };
293
294 static struct trans_ctl_table trans_net_ipv4_netfilter_table[] = {
295         { NET_IPV4_NF_CONNTRACK_MAX,                            "ip_conntrack_max" },
296
297         { NET_IPV4_NF_CONNTRACK_TCP_TIMEOUT_SYN_SENT,           "ip_conntrack_tcp_timeout_syn_sent" },
298         { NET_IPV4_NF_CONNTRACK_TCP_TIMEOUT_SYN_RECV,           "ip_conntrack_tcp_timeout_syn_recv" },
299         { NET_IPV4_NF_CONNTRACK_TCP_TIMEOUT_ESTABLISHED,        "ip_conntrack_tcp_timeout_established" },
300         { NET_IPV4_NF_CONNTRACK_TCP_TIMEOUT_FIN_WAIT,           "ip_conntrack_tcp_timeout_fin_wait" },
301         { NET_IPV4_NF_CONNTRACK_TCP_TIMEOUT_CLOSE_WAIT,         "ip_conntrack_tcp_timeout_close_wait" },
302         { NET_IPV4_NF_CONNTRACK_TCP_TIMEOUT_LAST_ACK,           "ip_conntrack_tcp_timeout_last_ack" },
303         { NET_IPV4_NF_CONNTRACK_TCP_TIMEOUT_TIME_WAIT,          "ip_conntrack_tcp_timeout_time_wait" },
304         { NET_IPV4_NF_CONNTRACK_TCP_TIMEOUT_CLOSE,              "ip_conntrack_tcp_timeout_close" },
305
306         { NET_IPV4_NF_CONNTRACK_UDP_TIMEOUT,                    "ip_conntrack_udp_timeout" },
307         { NET_IPV4_NF_CONNTRACK_UDP_TIMEOUT_STREAM,             "ip_conntrack_udp_timeout_stream" },
308         { NET_IPV4_NF_CONNTRACK_ICMP_TIMEOUT,                   "ip_conntrack_icmp_timeout" },
309         { NET_IPV4_NF_CONNTRACK_GENERIC_TIMEOUT,                "ip_conntrack_generic_timeout" },
310
311         { NET_IPV4_NF_CONNTRACK_BUCKETS,                        "ip_conntrack_buckets" },
312         { NET_IPV4_NF_CONNTRACK_LOG_INVALID,                    "ip_conntrack_log_invalid" },
313         { NET_IPV4_NF_CONNTRACK_TCP_TIMEOUT_MAX_RETRANS,        "ip_conntrack_tcp_timeout_max_retrans" },
314         { NET_IPV4_NF_CONNTRACK_TCP_LOOSE,                      "ip_conntrack_tcp_loose" },
315         { NET_IPV4_NF_CONNTRACK_TCP_BE_LIBERAL,                 "ip_conntrack_tcp_be_liberal" },
316         { NET_IPV4_NF_CONNTRACK_TCP_MAX_RETRANS,                "ip_conntrack_tcp_max_retrans" },
317
318         { NET_IPV4_NF_CONNTRACK_SCTP_TIMEOUT_CLOSED,            "ip_conntrack_sctp_timeout_closed" },
319         { NET_IPV4_NF_CONNTRACK_SCTP_TIMEOUT_COOKIE_WAIT,       "ip_conntrack_sctp_timeout_cookie_wait" },
320         { NET_IPV4_NF_CONNTRACK_SCTP_TIMEOUT_COOKIE_ECHOED,     "ip_conntrack_sctp_timeout_cookie_echoed" },
321         { NET_IPV4_NF_CONNTRACK_SCTP_TIMEOUT_ESTABLISHED,       "ip_conntrack_sctp_timeout_established" },
322         { NET_IPV4_NF_CONNTRACK_SCTP_TIMEOUT_SHUTDOWN_SENT,     "ip_conntrack_sctp_timeout_shutdown_sent" },
323         { NET_IPV4_NF_CONNTRACK_SCTP_TIMEOUT_SHUTDOWN_RECD,     "ip_conntrack_sctp_timeout_shutdown_recd" },
324         { NET_IPV4_NF_CONNTRACK_SCTP_TIMEOUT_SHUTDOWN_ACK_SENT, "ip_conntrack_sctp_timeout_shutdown_ack_sent" },
325
326         { NET_IPV4_NF_CONNTRACK_COUNT,          "ip_conntrack_count" },
327         { NET_IPV4_NF_CONNTRACK_CHECKSUM,       "ip_conntrack_checksum" },
328         {}
329 };
330
331 static struct trans_ctl_table trans_net_ipv4_table[] = {
332         { NET_IPV4_FORWARD,                     "ip_forward" },
333         { NET_IPV4_DYNADDR,                     "ip_dynaddr" },
334
335         { NET_IPV4_CONF,                "conf",         trans_net_ipv4_conf_table },
336         { NET_IPV4_NEIGH,               "neigh",        trans_net_neigh_table },
337         { NET_IPV4_ROUTE,               "route",        trans_net_ipv4_route_table },
338         /* NET_IPV4_FIB_HASH unused */
339         { NET_IPV4_NETFILTER,           "netfilter",    trans_net_ipv4_netfilter_table },
340         { NET_IPV4_VS,                  "vs",           trans_net_ipv4_vs_table },
341
342         { NET_IPV4_TCP_TIMESTAMPS,              "tcp_timestamps" },
343         { NET_IPV4_TCP_WINDOW_SCALING,          "tcp_window_scaling" },
344         { NET_IPV4_TCP_SACK,                    "tcp_sack" },
345         { NET_IPV4_TCP_RETRANS_COLLAPSE,        "tcp_retrans_collapse" },
346         { NET_IPV4_DEFAULT_TTL,                 "ip_default_ttl" },
347         /* NET_IPV4_AUTOCONFIG unused */
348         { NET_IPV4_NO_PMTU_DISC,                "ip_no_pmtu_disc" },
349         { NET_IPV4_TCP_SYN_RETRIES,             "tcp_syn_retries" },
350         { NET_IPV4_IPFRAG_HIGH_THRESH,          "ipfrag_high_thresh" },
351         { NET_IPV4_IPFRAG_LOW_THRESH,           "ipfrag_low_thresh" },
352         { NET_IPV4_IPFRAG_TIME,                 "ipfrag_time" },
353         /* NET_IPV4_TCP_MAX_KA_PROBES unused */
354         { NET_IPV4_TCP_KEEPALIVE_TIME,          "tcp_keepalive_time" },
355         { NET_IPV4_TCP_KEEPALIVE_PROBES,        "tcp_keepalive_probes" },
356         { NET_IPV4_TCP_RETRIES1,                "tcp_retries1" },
357         { NET_IPV4_TCP_RETRIES2,                "tcp_retries2" },
358         { NET_IPV4_TCP_FIN_TIMEOUT,             "tcp_fin_timeout" },
359         /* NET_IPV4_IP_MASQ_DEBUG unused */
360         { NET_TCP_SYNCOOKIES,                   "tcp_syncookies" },
361         { NET_TCP_STDURG,                       "tcp_stdurg" },
362         { NET_TCP_RFC1337,                      "tcp_rfc1337" },
363         /* NET_TCP_SYN_TAILDROP unused */
364         { NET_TCP_MAX_SYN_BACKLOG,              "tcp_max_syn_backlog" },
365         { NET_IPV4_LOCAL_PORT_RANGE,            "ip_local_port_range" },
366         { NET_IPV4_ICMP_ECHO_IGNORE_ALL,        "icmp_echo_ignore_all" },
367         { NET_IPV4_ICMP_ECHO_IGNORE_BROADCASTS, "icmp_echo_ignore_broadcasts" },
368         /* NET_IPV4_ICMP_SOURCEQUENCH_RATE unused */
369         /* NET_IPV4_ICMP_DESTUNREACH_RATE unused */
370         /* NET_IPV4_ICMP_TIMEEXCEED_RATE unused */
371         /* NET_IPV4_ICMP_PARAMPROB_RATE unused */
372         /* NET_IPV4_ICMP_ECHOREPLY_RATE unused */
373         { NET_IPV4_ICMP_IGNORE_BOGUS_ERROR_RESPONSES,   "icmp_ignore_bogus_error_responses" },
374         { NET_IPV4_IGMP_MAX_MEMBERSHIPS,        "igmp_max_memberships" },
375         { NET_TCP_TW_RECYCLE,                   "tcp_tw_recycle" },
376         /* NET_IPV4_ALWAYS_DEFRAG unused */
377         { NET_IPV4_TCP_KEEPALIVE_INTVL,         "tcp_keepalive_intvl" },
378         { NET_IPV4_INET_PEER_THRESHOLD,         "inet_peer_threshold" },
379         { NET_IPV4_INET_PEER_MINTTL,            "inet_peer_minttl" },
380         { NET_IPV4_INET_PEER_MAXTTL,            "inet_peer_maxttl" },
381         { NET_IPV4_INET_PEER_GC_MINTIME,        "inet_peer_gc_mintime" },
382         { NET_IPV4_INET_PEER_GC_MAXTIME,        "inet_peer_gc_maxtime" },
383         { NET_TCP_ORPHAN_RETRIES,               "tcp_orphan_retries" },
384         { NET_TCP_ABORT_ON_OVERFLOW,            "tcp_abort_on_overflow" },
385         { NET_TCP_SYNACK_RETRIES,               "tcp_synack_retries" },
386         { NET_TCP_MAX_ORPHANS,                  "tcp_max_orphans" },
387         { NET_TCP_MAX_TW_BUCKETS,               "tcp_max_tw_buckets" },
388         { NET_TCP_FACK,                         "tcp_fack" },
389         { NET_TCP_REORDERING,                   "tcp_reordering" },
390         { NET_TCP_ECN,                          "tcp_ecn" },
391         { NET_TCP_DSACK,                        "tcp_dsack" },
392         { NET_TCP_MEM,                          "tcp_mem" },
393         { NET_TCP_WMEM,                         "tcp_wmem" },
394         { NET_TCP_RMEM,                         "tcp_rmem" },
395         { NET_TCP_APP_WIN,                      "tcp_app_win" },
396         { NET_TCP_ADV_WIN_SCALE,                "tcp_adv_win_scale" },
397         { NET_IPV4_NONLOCAL_BIND,               "ip_nonlocal_bind" },
398         { NET_IPV4_ICMP_RATELIMIT,              "icmp_ratelimit" },
399         { NET_IPV4_ICMP_RATEMASK,               "icmp_ratemask" },
400         { NET_TCP_TW_REUSE,                     "tcp_tw_reuse" },
401         { NET_TCP_FRTO,                         "tcp_frto" },
402         { NET_TCP_LOW_LATENCY,                  "tcp_low_latency" },
403         { NET_IPV4_IPFRAG_SECRET_INTERVAL,      "ipfrag_secret_interval" },
404         { NET_IPV4_IGMP_MAX_MSF,                "igmp_max_msf" },
405         { NET_TCP_NO_METRICS_SAVE,              "tcp_no_metrics_save" },
406         /* NET_TCP_DEFAULT_WIN_SCALE unused */
407         { NET_TCP_MODERATE_RCVBUF,              "tcp_moderate_rcvbuf" },
408         { NET_TCP_TSO_WIN_DIVISOR,              "tcp_tso_win_divisor" },
409         /* NET_TCP_BIC_BETA unused */
410         { NET_IPV4_ICMP_ERRORS_USE_INBOUND_IFADDR,      "icmp_errors_use_inbound_ifaddr" },
411         { NET_TCP_CONG_CONTROL,                 "tcp_congestion_control" },
412         { NET_TCP_ABC,                          "tcp_abc" },
413         { NET_IPV4_IPFRAG_MAX_DIST,             "ipfrag_max_dist" },
414         { NET_TCP_MTU_PROBING,                  "tcp_mtu_probing" },
415         { NET_TCP_BASE_MSS,                     "tcp_base_mss" },
416         { NET_IPV4_TCP_WORKAROUND_SIGNED_WINDOWS,       "tcp_workaround_signed_windows" },
417         { NET_TCP_DMA_COPYBREAK,                "tcp_dma_copybreak" },
418         { NET_TCP_SLOW_START_AFTER_IDLE,        "tcp_slow_start_after_idle" },
419         { NET_CIPSOV4_CACHE_ENABLE,             "cipso_cache_enable" },
420         { NET_CIPSOV4_CACHE_BUCKET_SIZE,        "cipso_cache_bucket_size" },
421         { NET_CIPSOV4_RBM_OPTFMT,               "cipso_rbm_optfmt" },
422         { NET_CIPSOV4_RBM_STRICTVALID,          "cipso_rbm_strictvalid" },
423         { NET_TCP_AVAIL_CONG_CONTROL,           "tcp_available_congestion_control" },
424         { NET_TCP_ALLOWED_CONG_CONTROL,         "tcp_allowed_congestion_control" },
425         { NET_TCP_MAX_SSTHRESH,                 "tcp_max_ssthresh" },
426         { NET_TCP_FRTO_RESPONSE,                "tcp_frto_response" },
427         { 2088 /* NET_IPQ_QMAX */,              "ip_queue_maxlen" },
428         {}
429 };
430
431 static struct trans_ctl_table trans_net_ipx_table[] = {
432         { NET_IPX_PPROP_BROADCASTING,   "ipx_pprop_broadcasting" },
433         /* NET_IPX_FORWARDING unused */
434         {}
435 };
436
437 static struct trans_ctl_table trans_net_atalk_table[] = {
438         { NET_ATALK_AARP_EXPIRY_TIME,           "aarp-expiry-time" },
439         { NET_ATALK_AARP_TICK_TIME,             "aarp-tick-time" },
440         { NET_ATALK_AARP_RETRANSMIT_LIMIT,      "aarp-retransmit-limit" },
441         { NET_ATALK_AARP_RESOLVE_TIME,          "aarp-resolve-time" },
442         {},
443 };
444
445 static struct trans_ctl_table trans_net_netrom_table[] = {
446         { NET_NETROM_DEFAULT_PATH_QUALITY,              "default_path_quality" },
447         { NET_NETROM_OBSOLESCENCE_COUNT_INITIALISER,    "obsolescence_count_initialiser" },
448         { NET_NETROM_NETWORK_TTL_INITIALISER,           "network_ttl_initialiser" },
449         { NET_NETROM_TRANSPORT_TIMEOUT,                 "transport_timeout" },
450         { NET_NETROM_TRANSPORT_MAXIMUM_TRIES,           "transport_maximum_tries" },
451         { NET_NETROM_TRANSPORT_ACKNOWLEDGE_DELAY,       "transport_acknowledge_delay" },
452         { NET_NETROM_TRANSPORT_BUSY_DELAY,              "transport_busy_delay" },
453         { NET_NETROM_TRANSPORT_REQUESTED_WINDOW_SIZE,   "transport_requested_window_size" },
454         { NET_NETROM_TRANSPORT_NO_ACTIVITY_TIMEOUT,     "transport_no_activity_timeout" },
455         { NET_NETROM_ROUTING_CONTROL,                   "routing_control" },
456         { NET_NETROM_LINK_FAILS_COUNT,                  "link_fails_count" },
457         { NET_NETROM_RESET,                             "reset" },
458         {}
459 };
460
461 static struct trans_ctl_table trans_net_ax25_table[] = {
462         { NET_AX25_IP_DEFAULT_MODE,     "ip_default_mode" },
463         { NET_AX25_DEFAULT_MODE,        "ax25_default_mode" },
464         { NET_AX25_BACKOFF_TYPE,        "backoff_type" },
465         { NET_AX25_CONNECT_MODE,        "connect_mode" },
466         { NET_AX25_STANDARD_WINDOW,     "standard_window_size" },
467         { NET_AX25_EXTENDED_WINDOW,     "extended_window_size" },
468         { NET_AX25_T1_TIMEOUT,          "t1_timeout" },
469         { NET_AX25_T2_TIMEOUT,          "t2_timeout" },
470         { NET_AX25_T3_TIMEOUT,          "t3_timeout" },
471         { NET_AX25_IDLE_TIMEOUT,        "idle_timeout" },
472         { NET_AX25_N2,                  "maximum_retry_count" },
473         { NET_AX25_PACLEN,              "maximum_packet_length" },
474         { NET_AX25_PROTOCOL,            "protocol" },
475         { NET_AX25_DAMA_SLAVE_TIMEOUT,  "dama_slave_timeout" },
476         {}
477 };
478
479 static struct trans_ctl_table trans_net_bridge_table[] = {
480         { NET_BRIDGE_NF_CALL_ARPTABLES,         "bridge-nf-call-arptables" },
481         { NET_BRIDGE_NF_CALL_IPTABLES,          "bridge-nf-call-iptables" },
482         { NET_BRIDGE_NF_CALL_IP6TABLES,         "bridge-nf-call-ip6tables" },
483         { NET_BRIDGE_NF_FILTER_VLAN_TAGGED,     "bridge-nf-filter-vlan-tagged" },
484         { NET_BRIDGE_NF_FILTER_PPPOE_TAGGED,    "bridge-nf-filter-pppoe-tagged" },
485         {}
486 };
487
488 static struct trans_ctl_table trans_net_rose_table[] = {
489         { NET_ROSE_RESTART_REQUEST_TIMEOUT,     "restart_request_timeout" },
490         { NET_ROSE_CALL_REQUEST_TIMEOUT,        "call_request_timeout" },
491         { NET_ROSE_RESET_REQUEST_TIMEOUT,       "reset_request_timeout" },
492         { NET_ROSE_CLEAR_REQUEST_TIMEOUT,       "clear_request_timeout" },
493         { NET_ROSE_ACK_HOLD_BACK_TIMEOUT,       "acknowledge_hold_back_timeout" },
494         { NET_ROSE_ROUTING_CONTROL,             "routing_control" },
495         { NET_ROSE_LINK_FAIL_TIMEOUT,           "link_fail_timeout" },
496         { NET_ROSE_MAX_VCS,                     "maximum_virtual_circuits" },
497         { NET_ROSE_WINDOW_SIZE,                 "window_size" },
498         { NET_ROSE_NO_ACTIVITY_TIMEOUT,         "no_activity_timeout" },
499         {}
500 };
501
502 static struct trans_ctl_table trans_net_ipv6_conf_var_table[] = {
503         { NET_IPV6_FORWARDING,                  "forwarding" },
504         { NET_IPV6_HOP_LIMIT,                   "hop_limit" },
505         { NET_IPV6_MTU,                         "mtu" },
506         { NET_IPV6_ACCEPT_RA,                   "accept_ra" },
507         { NET_IPV6_ACCEPT_REDIRECTS,            "accept_redirects" },
508         { NET_IPV6_AUTOCONF,                    "autoconf" },
509         { NET_IPV6_DAD_TRANSMITS,               "dad_transmits" },
510         { NET_IPV6_RTR_SOLICITS,                "router_solicitations" },
511         { NET_IPV6_RTR_SOLICIT_INTERVAL,        "router_solicitation_interval" },
512         { NET_IPV6_RTR_SOLICIT_DELAY,           "router_solicitation_delay" },
513         { NET_IPV6_USE_TEMPADDR,                "use_tempaddr" },
514         { NET_IPV6_TEMP_VALID_LFT,              "temp_valid_lft" },
515         { NET_IPV6_TEMP_PREFERED_LFT,           "temp_prefered_lft" },
516         { NET_IPV6_REGEN_MAX_RETRY,             "regen_max_retry" },
517         { NET_IPV6_MAX_DESYNC_FACTOR,           "max_desync_factor" },
518         { NET_IPV6_MAX_ADDRESSES,               "max_addresses" },
519         { NET_IPV6_FORCE_MLD_VERSION,           "force_mld_version" },
520         { NET_IPV6_ACCEPT_RA_DEFRTR,            "accept_ra_defrtr" },
521         { NET_IPV6_ACCEPT_RA_PINFO,             "accept_ra_pinfo" },
522         { NET_IPV6_ACCEPT_RA_RTR_PREF,          "accept_ra_rtr_pref" },
523         { NET_IPV6_RTR_PROBE_INTERVAL,          "router_probe_interval" },
524         { NET_IPV6_ACCEPT_RA_RT_INFO_MAX_PLEN,  "accept_ra_rt_info_max_plen" },
525         { NET_IPV6_PROXY_NDP,                   "proxy_ndp" },
526         { NET_IPV6_ACCEPT_SOURCE_ROUTE,         "accept_source_route" },
527         {}
528 };
529
530 static struct trans_ctl_table trans_net_ipv6_conf_table[] = {
531         { NET_PROTO_CONF_ALL,           "all",  trans_net_ipv6_conf_var_table },
532         { NET_PROTO_CONF_DEFAULT,       "default", trans_net_ipv6_conf_var_table },
533         { 0, NULL, trans_net_ipv6_conf_var_table },
534         {}
535 };
536
537 static struct trans_ctl_table trans_net_ipv6_route_table[] = {
538         { NET_IPV6_ROUTE_FLUSH,                 "flush" },
539         { NET_IPV6_ROUTE_GC_THRESH,             "gc_thresh" },
540         { NET_IPV6_ROUTE_MAX_SIZE,              "max_size" },
541         { NET_IPV6_ROUTE_GC_MIN_INTERVAL,       "gc_min_interval" },
542         { NET_IPV6_ROUTE_GC_TIMEOUT,            "gc_timeout" },
543         { NET_IPV6_ROUTE_GC_INTERVAL,           "gc_interval" },
544         { NET_IPV6_ROUTE_GC_ELASTICITY,         "gc_elasticity" },
545         { NET_IPV6_ROUTE_MTU_EXPIRES,           "mtu_expires" },
546         { NET_IPV6_ROUTE_MIN_ADVMSS,            "min_adv_mss" },
547         { NET_IPV6_ROUTE_GC_MIN_INTERVAL_MS,    "gc_min_interval_ms" },
548         {}
549 };
550
551 static struct trans_ctl_table trans_net_ipv6_icmp_table[] = {
552         { NET_IPV6_ICMP_RATELIMIT,      "ratelimit" },
553         {}
554 };
555
556 static struct trans_ctl_table trans_net_ipv6_table[] = {
557         { NET_IPV6_CONF,                "conf",         trans_net_ipv6_conf_table },
558         { NET_IPV6_NEIGH,               "neigh",        trans_net_neigh_table },
559         { NET_IPV6_ROUTE,               "route",        trans_net_ipv6_route_table },
560         { NET_IPV6_ICMP,                "icmp",         trans_net_ipv6_icmp_table },
561         { NET_IPV6_BINDV6ONLY,          "bindv6only" },
562         { NET_IPV6_IP6FRAG_HIGH_THRESH, "ip6frag_high_thresh" },
563         { NET_IPV6_IP6FRAG_LOW_THRESH,  "ip6frag_low_thresh" },
564         { NET_IPV6_IP6FRAG_TIME,        "ip6frag_time" },
565         { NET_IPV6_IP6FRAG_SECRET_INTERVAL,     "ip6frag_secret_interval" },
566         { NET_IPV6_MLD_MAX_MSF,         "mld_max_msf" },
567         { 2088 /* IPQ_QMAX */,          "ip6_queue_maxlen" },
568         {}
569 };
570
571 static struct trans_ctl_table trans_net_x25_table[] = {
572         { NET_X25_RESTART_REQUEST_TIMEOUT,      "restart_request_timeout" },
573         { NET_X25_CALL_REQUEST_TIMEOUT,         "call_request_timeout" },
574         { NET_X25_RESET_REQUEST_TIMEOUT,        "reset_request_timeout" },
575         { NET_X25_CLEAR_REQUEST_TIMEOUT,        "clear_request_timeout" },
576         { NET_X25_ACK_HOLD_BACK_TIMEOUT,        "acknowledgement_hold_back_timeout" },
577         { NET_X25_FORWARD,                      "x25_forward" },
578         {}
579 };
580
581 static struct trans_ctl_table trans_net_tr_table[] = {
582         { NET_TR_RIF_TIMEOUT,   "rif_timeout" },
583         {}
584 };
585
586
587 static struct trans_ctl_table trans_net_decnet_conf_vars[] = {
588         { NET_DECNET_CONF_DEV_FORWARDING,       "forwarding" },
589         { NET_DECNET_CONF_DEV_PRIORITY,         "priority" },
590         { NET_DECNET_CONF_DEV_T2,               "t2" },
591         { NET_DECNET_CONF_DEV_T3,               "t3" },
592         {}
593 };
594
595 static struct trans_ctl_table trans_net_decnet_conf[] = {
596         { 0, NULL, trans_net_decnet_conf_vars },
597         {}
598 };
599
600 static struct trans_ctl_table trans_net_decnet_table[] = {
601         { NET_DECNET_CONF,              "conf", trans_net_decnet_conf },
602         { NET_DECNET_NODE_ADDRESS,      "node_address" },
603         { NET_DECNET_NODE_NAME,         "node_name" },
604         { NET_DECNET_DEFAULT_DEVICE,    "default_device" },
605         { NET_DECNET_TIME_WAIT,         "time_wait" },
606         { NET_DECNET_DN_COUNT,          "dn_count" },
607         { NET_DECNET_DI_COUNT,          "di_count" },
608         { NET_DECNET_DR_COUNT,          "dr_count" },
609         { NET_DECNET_DST_GC_INTERVAL,   "dst_gc_interval" },
610         { NET_DECNET_NO_FC_MAX_CWND,    "no_fc_max_cwnd" },
611         { NET_DECNET_MEM,               "decnet_mem" },
612         { NET_DECNET_RMEM,              "decnet_rmem" },
613         { NET_DECNET_WMEM,              "decnet_wmem" },
614         { NET_DECNET_DEBUG_LEVEL,       "debug" },
615         {}
616 };
617
618 static struct trans_ctl_table trans_net_sctp_table[] = {
619         { NET_SCTP_RTO_INITIAL,         "rto_initial" },
620         { NET_SCTP_RTO_MIN,             "rto_min" },
621         { NET_SCTP_RTO_MAX,             "rto_max" },
622         { NET_SCTP_RTO_ALPHA,           "rto_alpha_exp_divisor" },
623         { NET_SCTP_RTO_BETA,            "rto_beta_exp_divisor" },
624         { NET_SCTP_VALID_COOKIE_LIFE,   "valid_cookie_life" },
625         { NET_SCTP_ASSOCIATION_MAX_RETRANS,     "association_max_retrans" },
626         { NET_SCTP_PATH_MAX_RETRANS,    "path_max_retrans" },
627         { NET_SCTP_MAX_INIT_RETRANSMITS,        "max_init_retransmits" },
628         { NET_SCTP_HB_INTERVAL,         "hb_interval" },
629         { NET_SCTP_PRESERVE_ENABLE,     "cookie_preserve_enable" },
630         { NET_SCTP_MAX_BURST,           "max_burst" },
631         { NET_SCTP_ADDIP_ENABLE,        "addip_enable" },
632         { NET_SCTP_PRSCTP_ENABLE,       "prsctp_enable" },
633         { NET_SCTP_SNDBUF_POLICY,       "sndbuf_policy" },
634         { NET_SCTP_SACK_TIMEOUT,        "sack_timeout" },
635         { NET_SCTP_RCVBUF_POLICY,       "rcvbuf_policy" },
636         {}
637 };
638
639 static struct trans_ctl_table trans_net_llc_llc2_timeout_table[] = {
640         { NET_LLC2_ACK_TIMEOUT,         "ack" },
641         { NET_LLC2_P_TIMEOUT,           "p" },
642         { NET_LLC2_REJ_TIMEOUT,         "rej" },
643         { NET_LLC2_BUSY_TIMEOUT,        "busy" },
644         {}
645 };
646
647 static struct trans_ctl_table trans_net_llc_station_table[] = {
648         { NET_LLC_STATION_ACK_TIMEOUT,  "ack_timeout" },
649         {}
650 };
651
652 static struct trans_ctl_table trans_net_llc_llc2_table[] = {
653         { NET_LLC2,             "timeout",      trans_net_llc_llc2_timeout_table },
654         {}
655 };
656
657 static struct trans_ctl_table trans_net_llc_table[] = {
658         { NET_LLC2,             "llc2",         trans_net_llc_llc2_table },
659         { NET_LLC_STATION,      "station",      trans_net_llc_station_table },
660         {}
661 };
662
663 static struct trans_ctl_table trans_net_netfilter_table[] = {
664         { NET_NF_CONNTRACK_MAX,                         "nf_conntrack_max" },
665         { NET_NF_CONNTRACK_TCP_TIMEOUT_SYN_SENT,        "nf_conntrack_tcp_timeout_syn_sent" },
666         { NET_NF_CONNTRACK_TCP_TIMEOUT_SYN_RECV,        "nf_conntrack_tcp_timeout_syn_recv" },
667         { NET_NF_CONNTRACK_TCP_TIMEOUT_ESTABLISHED,     "nf_conntrack_tcp_timeout_established" },
668         { NET_NF_CONNTRACK_TCP_TIMEOUT_FIN_WAIT,        "nf_conntrack_tcp_timeout_fin_wait" },
669         { NET_NF_CONNTRACK_TCP_TIMEOUT_CLOSE_WAIT,      "nf_conntrack_tcp_timeout_close_wait" },
670         { NET_NF_CONNTRACK_TCP_TIMEOUT_LAST_ACK,        "nf_conntrack_tcp_timeout_last_ack" },
671         { NET_NF_CONNTRACK_TCP_TIMEOUT_TIME_WAIT,       "nf_conntrack_tcp_timeout_time_wait" },
672         { NET_NF_CONNTRACK_TCP_TIMEOUT_CLOSE,           "nf_conntrack_tcp_timeout_close" },
673         { NET_NF_CONNTRACK_UDP_TIMEOUT,                 "nf_conntrack_udp_timeout" },
674         { NET_NF_CONNTRACK_UDP_TIMEOUT_STREAM,          "nf_conntrack_udp_timeout_stream" },
675         { NET_NF_CONNTRACK_ICMP_TIMEOUT,        "nf_conntrack_icmp_timeout" },
676         { NET_NF_CONNTRACK_GENERIC_TIMEOUT,             "nf_conntrack_generic_timeout" },
677         { NET_NF_CONNTRACK_BUCKETS,                     "nf_conntrack_buckets" },
678         { NET_NF_CONNTRACK_LOG_INVALID,                 "nf_conntrack_log_invalid" },
679         { NET_NF_CONNTRACK_TCP_TIMEOUT_MAX_RETRANS,     "nf_conntrack_tcp_timeout_max_retrans" },
680         { NET_NF_CONNTRACK_TCP_LOOSE,                   "nf_conntrack_tcp_loose" },
681         { NET_NF_CONNTRACK_TCP_BE_LIBERAL,              "nf_conntrack_tcp_be_liberal" },
682         { NET_NF_CONNTRACK_TCP_MAX_RETRANS,             "nf_conntrack_tcp_max_retrans" },
683         { NET_NF_CONNTRACK_SCTP_TIMEOUT_CLOSED,         "nf_conntrack_sctp_timeout_closed" },
684         { NET_NF_CONNTRACK_SCTP_TIMEOUT_COOKIE_WAIT,    "nf_conntrack_sctp_timeout_cookie_wait" },
685         { NET_NF_CONNTRACK_SCTP_TIMEOUT_COOKIE_ECHOED,  "nf_conntrack_sctp_timeout_cookie_echoed" },
686         { NET_NF_CONNTRACK_SCTP_TIMEOUT_ESTABLISHED,    "nf_conntrack_sctp_timeout_established" },
687         { NET_NF_CONNTRACK_SCTP_TIMEOUT_SHUTDOWN_SENT,  "nf_conntrack_sctp_timeout_shutdown_sent" },
688         { NET_NF_CONNTRACK_SCTP_TIMEOUT_SHUTDOWN_RECD,  "nf_conntrack_sctp_timeout_shutdown_recd" },
689         { NET_NF_CONNTRACK_SCTP_TIMEOUT_SHUTDOWN_ACK_SENT,      "nf_conntrack_sctp_timeout_shutdown_ack_sent" },
690         { NET_NF_CONNTRACK_COUNT,                       "nf_conntrack_count" },
691         { NET_NF_CONNTRACK_ICMPV6_TIMEOUT,      "nf_conntrack_icmpv6_timeout" },
692         { NET_NF_CONNTRACK_FRAG6_TIMEOUT,               "nf_conntrack_frag6_timeout" },
693         { NET_NF_CONNTRACK_FRAG6_LOW_THRESH,            "nf_conntrack_frag6_low_thresh" },
694         { NET_NF_CONNTRACK_FRAG6_HIGH_THRESH,           "nf_conntrack_frag6_high_thresh" },
695         { NET_NF_CONNTRACK_CHECKSUM,                    "nf_conntrack_checksum" },
696
697         {}
698 };
699
700 static struct trans_ctl_table trans_net_dccp_table[] = {
701         { NET_DCCP_DEFAULT,     "default" },
702         {}
703 };
704
705 static struct trans_ctl_table trans_net_irda_table[] = {
706         { NET_IRDA_DISCOVERY,           "discovery" },
707         { NET_IRDA_DEVNAME,             "devname" },
708         { NET_IRDA_DEBUG,               "debug" },
709         { NET_IRDA_FAST_POLL,           "fast_poll_increase" },
710         { NET_IRDA_DISCOVERY_SLOTS,     "discovery_slots" },
711         { NET_IRDA_DISCOVERY_TIMEOUT,   "discovery_timeout" },
712         { NET_IRDA_SLOT_TIMEOUT,        "slot_timeout" },
713         { NET_IRDA_MAX_BAUD_RATE,       "max_baud_rate" },
714         { NET_IRDA_MIN_TX_TURN_TIME,    "min_tx_turn_time" },
715         { NET_IRDA_MAX_TX_DATA_SIZE,    "max_tx_data_size" },
716         { NET_IRDA_MAX_TX_WINDOW,       "max_tx_window" },
717         { NET_IRDA_MAX_NOREPLY_TIME,    "max_noreply_time" },
718         { NET_IRDA_WARN_NOREPLY_TIME,   "warn_noreply_time" },
719         { NET_IRDA_LAP_KEEPALIVE_TIME,  "lap_keepalive_time" },
720         {}
721 };
722
723 static struct trans_ctl_table trans_net_table[] = {
724         { NET_CORE,             "core",         trans_net_core_table },
725         /* NET_ETHER not used */
726         /* NET_802 not used */
727         { NET_UNIX,             "unix",         trans_net_unix_table },
728         { NET_IPV4,             "ipv4",         trans_net_ipv4_table },
729         { NET_IPX,              "ipx",          trans_net_ipx_table },
730         { NET_ATALK,            "appletalk",    trans_net_atalk_table },
731         { NET_NETROM,           "netrom",       trans_net_netrom_table },
732         { NET_AX25,             "ax25",         trans_net_ax25_table },
733         { NET_BRIDGE,           "bridge",       trans_net_bridge_table },
734         { NET_ROSE,             "rose",         trans_net_rose_table },
735         { NET_IPV6,             "ipv6",         trans_net_ipv6_table },
736         { NET_X25,              "x25",          trans_net_x25_table },
737         { NET_TR,               "token-ring",   trans_net_tr_table },
738         { NET_DECNET,           "decnet",       trans_net_decnet_table },
739         /*  NET_ECONET not used */
740         { NET_SCTP,             "sctp",         trans_net_sctp_table },
741         { NET_LLC,              "llc",          trans_net_llc_table },
742         { NET_NETFILTER,        "netfilter",    trans_net_netfilter_table },
743         { NET_DCCP,             "dccp",         trans_net_dccp_table },
744         { NET_IRDA,             "irda",         trans_net_irda_table },
745         { 2089,                 "nf_conntrack_max" },
746         {}
747 };
748
749 static struct trans_ctl_table trans_fs_quota_table[] = {
750         { FS_DQ_LOOKUPS,        "lookups" },
751         { FS_DQ_DROPS,          "drops" },
752         { FS_DQ_READS,          "reads" },
753         { FS_DQ_WRITES,         "writes" },
754         { FS_DQ_CACHE_HITS,     "cache_hits" },
755         { FS_DQ_ALLOCATED,      "allocated_dquots" },
756         { FS_DQ_FREE,           "free_dquots" },
757         { FS_DQ_SYNCS,          "syncs" },
758         { FS_DQ_WARNINGS,       "warnings" },
759         {}
760 };
761
762 static struct trans_ctl_table trans_fs_xfs_table[] = {
763         { XFS_RESTRICT_CHOWN,   "restrict_chown" },
764         { XFS_SGID_INHERIT,     "irix_sgid_inherit" },
765         { XFS_SYMLINK_MODE,     "irix_symlink_mode" },
766         { XFS_PANIC_MASK,       "panic_mask" },
767
768         { XFS_ERRLEVEL,         "error_level" },
769         { XFS_SYNCD_TIMER,      "xfssyncd_centisecs" },
770         { XFS_INHERIT_SYNC,     "inherit_sync" },
771         { XFS_INHERIT_NODUMP,   "inherit_nodump" },
772         { XFS_INHERIT_NOATIME,  "inherit_noatime" },
773         { XFS_BUF_TIMER,        "xfsbufd_centisecs" },
774         { XFS_BUF_AGE,          "age_buffer_centisecs" },
775         { XFS_INHERIT_NOSYM,    "inherit_nosymlinks" },
776         { XFS_ROTORSTEP,        "rotorstep" },
777         { XFS_INHERIT_NODFRG,   "inherit_nodefrag" },
778         { XFS_FILESTREAM_TIMER, "filestream_centisecs" },
779         { XFS_STATS_CLEAR,      "stats_clear" },
780         {}
781 };
782
783 static struct trans_ctl_table trans_fs_ocfs2_nm_table[] = {
784         { 1, "hb_ctl_path" },
785         {}
786 };
787
788 static struct trans_ctl_table trans_fs_ocfs2_table[] = {
789         { 1,    "nm",   trans_fs_ocfs2_nm_table },
790         {}
791 };
792
793 static struct trans_ctl_table trans_inotify_table[] = {
794         { INOTIFY_MAX_USER_INSTANCES,   "max_user_instances" },
795         { INOTIFY_MAX_USER_WATCHES,     "max_user_watches" },
796         { INOTIFY_MAX_QUEUED_EVENTS,    "max_queued_events" },
797         {}
798 };
799
800 static struct trans_ctl_table trans_fs_table[] = {
801         { FS_NRINODE,           "inode-nr" },
802         { FS_STATINODE,         "inode-state" },
803         /* FS_MAXINODE unused */
804         /* FS_NRDQUOT unused */
805         /* FS_MAXDQUOT unused */
806         { FS_NRFILE,            "file-nr" },
807         { FS_MAXFILE,           "file-max" },
808         { FS_DENTRY,            "dentry-state" },
809         /* FS_NRSUPER unused */
810         /* FS_MAXUPSER unused */
811         { FS_OVERFLOWUID,       "overflowuid" },
812         { FS_OVERFLOWGID,       "overflowgid" },
813         { FS_LEASES,            "leases-enable" },
814         { FS_DIR_NOTIFY,        "dir-notify-enable" },
815         { FS_LEASE_TIME,        "lease-break-time" },
816         { FS_DQSTATS,           "quota",                trans_fs_quota_table },
817         { FS_XFS,               "xfs",                  trans_fs_xfs_table },
818         { FS_AIO_NR,            "aio-nr" },
819         { FS_AIO_MAX_NR,        "aio-max-nr" },
820         { FS_INOTIFY,           "inotify",              trans_inotify_table },
821         { FS_OCFS2,             "ocfs2",                trans_fs_ocfs2_table },
822         { KERN_SETUID_DUMPABLE, "suid_dumpable" },
823         {}
824 };
825
826 static struct trans_ctl_table trans_debug_table[] = {
827         {}
828 };
829
830 static struct trans_ctl_table trans_cdrom_table[] = {
831         { DEV_CDROM_INFO,               "info" },
832         { DEV_CDROM_AUTOCLOSE,          "autoclose" },
833         { DEV_CDROM_AUTOEJECT,          "autoeject" },
834         { DEV_CDROM_DEBUG,              "debug" },
835         { DEV_CDROM_LOCK,               "lock" },
836         { DEV_CDROM_CHECK_MEDIA,        "check_media" },
837         {}
838 };
839
840 static struct trans_ctl_table trans_ipmi_table[] = {
841         { DEV_IPMI_POWEROFF_POWERCYCLE, "poweroff_powercycle" },
842         {}
843 };
844
845 static struct trans_ctl_table trans_mac_hid_files[] = {
846         /* DEV_MAC_HID_KEYBOARD_SENDS_LINUX_KEYCODES unused */
847         /* DEV_MAC_HID_KEYBOARD_LOCK_KEYCODES unused */
848         { DEV_MAC_HID_MOUSE_BUTTON_EMULATION,   "mouse_button_emulation" },
849         { DEV_MAC_HID_MOUSE_BUTTON2_KEYCODE,    "mouse_button2_keycode" },
850         { DEV_MAC_HID_MOUSE_BUTTON3_KEYCODE,    "mouse_button3_keycode" },
851         /* DEV_MAC_HID_ADB_MOUSE_SENDS_KEYCODES unused */
852         {}
853 };
854
855 static struct trans_ctl_table trans_raid_table[] = {
856         { DEV_RAID_SPEED_LIMIT_MIN,     "speed_limit_min" },
857         { DEV_RAID_SPEED_LIMIT_MAX,     "speed_limit_max" },
858         {}
859 };
860
861 static struct trans_ctl_table trans_scsi_table[] = {
862         { DEV_SCSI_LOGGING_LEVEL, "logging_level" },
863         {}
864 };
865
866 static struct trans_ctl_table trans_parport_default_table[] = {
867         { DEV_PARPORT_DEFAULT_TIMESLICE,        "timeslice" },
868         { DEV_PARPORT_DEFAULT_SPINTIME,         "spintime" },
869         {}
870 };
871
872 static struct trans_ctl_table trans_parport_device_table[] = {
873         { DEV_PARPORT_DEVICE_TIMESLICE,         "timeslice" },
874         {}
875 };
876
877 static struct trans_ctl_table trans_parport_devices_table[] = {
878         { DEV_PARPORT_DEVICES_ACTIVE,           "active" },
879         { 0, NULL, trans_parport_device_table },
880         {}
881 };
882
883 static struct trans_ctl_table trans_parport_parport_table[] = {
884         { DEV_PARPORT_SPINTIME,         "spintime" },
885         { DEV_PARPORT_BASE_ADDR,        "base-addr" },
886         { DEV_PARPORT_IRQ,              "irq" },
887         { DEV_PARPORT_DMA,              "dma" },
888         { DEV_PARPORT_MODES,            "modes" },
889         { DEV_PARPORT_DEVICES,          "devices",      trans_parport_devices_table },
890         { DEV_PARPORT_AUTOPROBE,        "autoprobe" },
891         { DEV_PARPORT_AUTOPROBE + 1,    "autoprobe0" },
892         { DEV_PARPORT_AUTOPROBE + 2,    "autoprobe1" },
893         { DEV_PARPORT_AUTOPROBE + 3,    "autoprobe2" },
894         { DEV_PARPORT_AUTOPROBE + 4,    "autoprobe3" },
895         {}
896 };
897 static struct trans_ctl_table trans_parport_table[] = {
898         { DEV_PARPORT_DEFAULT,  "default",      trans_parport_default_table },
899         { 0, NULL, trans_parport_parport_table },
900         {}
901 };
902
903 static struct trans_ctl_table trans_dev_table[] = {
904         { DEV_CDROM,    "cdrom",        trans_cdrom_table },
905         /* DEV_HWMON unused */
906         { DEV_PARPORT,  "parport",      trans_parport_table },
907         { DEV_RAID,     "raid",         trans_raid_table },
908         { DEV_MAC_HID,  "mac_hid",      trans_mac_hid_files },
909         { DEV_SCSI,     "scsi",         trans_scsi_table },
910         { DEV_IPMI,     "ipmi",         trans_ipmi_table },
911         {}
912 };
913
914 static struct trans_ctl_table trans_bus_isa_table[] = {
915         { BUS_ISA_MEM_BASE,     "membase" },
916         { BUS_ISA_PORT_BASE,    "portbase" },
917         { BUS_ISA_PORT_SHIFT,   "portshift" },
918         {}
919 };
920
921 static struct trans_ctl_table trans_bus_table[] = {
922         { CTL_BUS_ISA,  "isa",  trans_bus_isa_table },
923         {}
924 };
925
926 static struct trans_ctl_table trans_arlan_conf_table0[] = {
927         { 1,    "spreadingCode" },
928         { 2,    "channelNumber" },
929         { 3,    "scramblingDisable" },
930         { 4,    "txAttenuation" },
931         { 5,    "systemId" },
932         { 6,    "maxDatagramSize" },
933         { 7,    "maxFrameSize" },
934         { 8,    "maxRetries" },
935         { 9,    "receiveMode" },
936         { 10,   "priority" },
937         { 11,   "rootOrRepeater" },
938         { 12,   "SID" },
939         { 13,   "registrationMode" },
940         { 14,   "registrationFill" },
941         { 15,   "localTalkAddress" },
942         { 16,   "codeFormat" },
943         { 17,   "numChannels" },
944         { 18,   "channel1" },
945         { 19,   "channel2" },
946         { 20,   "channel3" },
947         { 21,   "channel4" },
948         { 22,   "txClear" },
949         { 23,   "txRetries" },
950         { 24,   "txRouting" },
951         { 25,   "txScrambled" },
952         { 26,   "rxParameter" },
953         { 27,   "txTimeoutMs" },
954         { 28,   "waitCardTimeout" },
955         { 29,   "channelSet" },
956         { 30,   "name" },
957         { 31,   "waitTime" },
958         { 32,   "lParameter" },
959         { 33,   "_15" },
960         { 34,   "headerSize" },
961         { 36,   "tx_delay_ms" },
962         { 37,   "retries" },
963         { 38,   "ReTransmitPacketMaxSize" },
964         { 39,   "waitReTransmitPacketMaxSize" },
965         { 40,   "fastReTransCount" },
966         { 41,   "driverRetransmissions" },
967         { 42,   "txAckTimeoutMs" },
968         { 43,   "registrationInterrupts" },
969         { 44,   "hardwareType" },
970         { 45,   "radioType" },
971         { 46,   "writeEEPROM" },
972         { 47,   "writeRadioType" },
973         { 48,   "entry_exit_debug" },
974         { 49,   "debug" },
975         { 50,   "in_speed" },
976         { 51,   "out_speed" },
977         { 52,   "in_speed10" },
978         { 53,   "out_speed10" },
979         { 54,   "in_speed_max" },
980         { 55,   "out_speed_max" },
981         { 56,   "measure_rate" },
982         { 57,   "pre_Command_Wait" },
983         { 58,   "rx_tweak1" },
984         { 59,   "rx_tweak2" },
985         { 60,   "tx_queue_len" },
986
987         { 150,  "arlan0-txRing" },
988         { 151,  "arlan0-rxRing" },
989         { 152,  "arlan0-18" },
990         { 153,  "arlan0-ring" },
991         { 154,  "arlan0-shm-cpy" },
992         { 155,  "config0" },
993         { 156,  "reset0" },
994         {}
995 };
996
997 static struct trans_ctl_table trans_arlan_conf_table1[] = {
998         { 1,    "spreadingCode" },
999         { 2,    "channelNumber" },
1000         { 3,    "scramblingDisable" },
1001         { 4,    "txAttenuation" },
1002         { 5,    "systemId" },
1003         { 6,    "maxDatagramSize" },
1004         { 7,    "maxFrameSize" },
1005         { 8,    "maxRetries" },
1006         { 9,    "receiveMode" },
1007         { 10,   "priority" },
1008         { 11,   "rootOrRepeater" },
1009         { 12,   "SID" },
1010         { 13,   "registrationMode" },
1011         { 14,   "registrationFill" },
1012         { 15,   "localTalkAddress" },
1013         { 16,   "codeFormat" },
1014         { 17,   "numChannels" },
1015         { 18,   "channel1" },
1016         { 19,   "channel2" },
1017         { 20,   "channel3" },
1018         { 21,   "channel4" },
1019         { 22,   "txClear" },
1020         { 23,   "txRetries" },
1021         { 24,   "txRouting" },
1022         { 25,   "txScrambled" },
1023         { 26,   "rxParameter" },
1024         { 27,   "txTimeoutMs" },
1025         { 28,   "waitCardTimeout" },
1026         { 29,   "channelSet" },
1027         { 30,   "name" },
1028         { 31,   "waitTime" },
1029         { 32,   "lParameter" },
1030         { 33,   "_15" },
1031         { 34,   "headerSize" },
1032         { 36,   "tx_delay_ms" },
1033         { 37,   "retries" },
1034         { 38,   "ReTransmitPacketMaxSize" },
1035         { 39,   "waitReTransmitPacketMaxSize" },
1036         { 40,   "fastReTransCount" },
1037         { 41,   "driverRetransmissions" },
1038         { 42,   "txAckTimeoutMs" },
1039         { 43,   "registrationInterrupts" },
1040         { 44,   "hardwareType" },
1041         { 45,   "radioType" },
1042         { 46,   "writeEEPROM" },
1043         { 47,   "writeRadioType" },
1044         { 48,   "entry_exit_debug" },
1045         { 49,   "debug" },
1046         { 50,   "in_speed" },
1047         { 51,   "out_speed" },
1048         { 52,   "in_speed10" },
1049         { 53,   "out_speed10" },
1050         { 54,   "in_speed_max" },
1051         { 55,   "out_speed_max" },
1052         { 56,   "measure_rate" },
1053         { 57,   "pre_Command_Wait" },
1054         { 58,   "rx_tweak1" },
1055         { 59,   "rx_tweak2" },
1056         { 60,   "tx_queue_len" },
1057
1058         { 150,  "arlan1-txRing" },
1059         { 151,  "arlan1-rxRing" },
1060         { 152,  "arlan1-18" },
1061         { 153,  "arlan1-ring" },
1062         { 154,  "arlan1-shm-cpy" },
1063         { 155,  "config1" },
1064         { 156,  "reset1" },
1065         {}
1066 };
1067
1068 static struct trans_ctl_table trans_arlan_conf_table2[] = {
1069         { 1,    "spreadingCode" },
1070         { 2,    "channelNumber" },
1071         { 3,    "scramblingDisable" },
1072         { 4,    "txAttenuation" },
1073         { 5,    "systemId" },
1074         { 6,    "maxDatagramSize" },
1075         { 7,    "maxFrameSize" },
1076         { 8,    "maxRetries" },
1077         { 9,    "receiveMode" },
1078         { 10,   "priority" },
1079         { 11,   "rootOrRepeater" },
1080         { 12,   "SID" },
1081         { 13,   "registrationMode" },
1082         { 14,   "registrationFill" },
1083         { 15,   "localTalkAddress" },
1084         { 16,   "codeFormat" },
1085         { 17,   "numChannels" },
1086         { 18,   "channel1" },
1087         { 19,   "channel2" },
1088         { 20,   "channel3" },
1089         { 21,   "channel4" },
1090         { 22,   "txClear" },
1091         { 23,   "txRetries" },
1092         { 24,   "txRouting" },
1093         { 25,   "txScrambled" },
1094         { 26,   "rxParameter" },
1095         { 27,   "txTimeoutMs" },
1096         { 28,   "waitCardTimeout" },
1097         { 29,   "channelSet" },
1098         { 30,   "name" },
1099         { 31,   "waitTime" },
1100         { 32,   "lParameter" },
1101         { 33,   "_15" },
1102         { 34,   "headerSize" },
1103         { 36,   "tx_delay_ms" },
1104         { 37,   "retries" },
1105         { 38,   "ReTransmitPacketMaxSize" },
1106         { 39,   "waitReTransmitPacketMaxSize" },
1107         { 40,   "fastReTransCount" },
1108         { 41,   "driverRetransmissions" },
1109         { 42,   "txAckTimeoutMs" },
1110         { 43,   "registrationInterrupts" },
1111         { 44,   "hardwareType" },
1112         { 45,   "radioType" },
1113         { 46,   "writeEEPROM" },
1114         { 47,   "writeRadioType" },
1115         { 48,   "entry_exit_debug" },
1116         { 49,   "debug" },
1117         { 50,   "in_speed" },
1118         { 51,   "out_speed" },
1119         { 52,   "in_speed10" },
1120         { 53,   "out_speed10" },
1121         { 54,   "in_speed_max" },
1122         { 55,   "out_speed_max" },
1123         { 56,   "measure_rate" },
1124         { 57,   "pre_Command_Wait" },
1125         { 58,   "rx_tweak1" },
1126         { 59,   "rx_tweak2" },
1127         { 60,   "tx_queue_len" },
1128
1129         { 150,  "arlan2-txRing" },
1130         { 151,  "arlan2-rxRing" },
1131         { 152,  "arlan2-18" },
1132         { 153,  "arlan2-ring" },
1133         { 154,  "arlan2-shm-cpy" },
1134         { 155,  "config2" },
1135         { 156,  "reset2" },
1136         {}
1137 };
1138
1139 static struct trans_ctl_table trans_arlan_conf_table3[] = {
1140         { 1,    "spreadingCode" },
1141         { 2,    "channelNumber" },
1142         { 3,    "scramblingDisable" },
1143         { 4,    "txAttenuation" },
1144         { 5,    "systemId" },
1145         { 6,    "maxDatagramSize" },
1146         { 7,    "maxFrameSize" },
1147         { 8,    "maxRetries" },
1148         { 9,    "receiveMode" },
1149         { 10,   "priority" },
1150         { 11,   "rootOrRepeater" },
1151         { 12,   "SID" },
1152         { 13,   "registrationMode" },
1153         { 14,   "registrationFill" },
1154         { 15,   "localTalkAddress" },
1155         { 16,   "codeFormat" },
1156         { 17,   "numChannels" },
1157         { 18,   "channel1" },
1158         { 19,   "channel2" },
1159         { 20,   "channel3" },
1160         { 21,   "channel4" },
1161         { 22,   "txClear" },
1162         { 23,   "txRetries" },
1163         { 24,   "txRouting" },
1164         { 25,   "txScrambled" },
1165         { 26,   "rxParameter" },
1166         { 27,   "txTimeoutMs" },
1167         { 28,   "waitCardTimeout" },
1168         { 29,   "channelSet" },
1169         { 30,   "name" },
1170         { 31,   "waitTime" },
1171         { 32,   "lParameter" },
1172         { 33,   "_15" },
1173         { 34,   "headerSize" },
1174         { 36,   "tx_delay_ms" },
1175         { 37,   "retries" },
1176         { 38,   "ReTransmitPacketMaxSize" },
1177         { 39,   "waitReTransmitPacketMaxSize" },
1178         { 40,   "fastReTransCount" },
1179         { 41,   "driverRetransmissions" },
1180         { 42,   "txAckTimeoutMs" },
1181         { 43,   "registrationInterrupts" },
1182         { 44,   "hardwareType" },
1183         { 45,   "radioType" },
1184         { 46,   "writeEEPROM" },
1185         { 47,   "writeRadioType" },
1186         { 48,   "entry_exit_debug" },
1187         { 49,   "debug" },
1188         { 50,   "in_speed" },
1189         { 51,   "out_speed" },
1190         { 52,   "in_speed10" },
1191         { 53,   "out_speed10" },
1192         { 54,   "in_speed_max" },
1193         { 55,   "out_speed_max" },
1194         { 56,   "measure_rate" },
1195         { 57,   "pre_Command_Wait" },
1196         { 58,   "rx_tweak1" },
1197         { 59,   "rx_tweak2" },
1198         { 60,   "tx_queue_len" },
1199
1200         { 150,  "arlan3-txRing" },
1201         { 151,  "arlan3-rxRing" },
1202         { 152,  "arlan3-18" },
1203         { 153,  "arlan3-ring" },
1204         { 154,  "arlan3-shm-cpy" },
1205         { 155,  "config3" },
1206         { 156,  "reset3" },
1207         {}
1208 };
1209
1210 static struct trans_ctl_table trans_arlan_table[] = {
1211         { 1,            "arlan0",       trans_arlan_conf_table0 },
1212         { 2,            "arlan1",       trans_arlan_conf_table1 },
1213         { 3,            "arlan2",       trans_arlan_conf_table2 },
1214         { 4,            "arlan3",       trans_arlan_conf_table3 },
1215         {}
1216 };
1217
1218 static struct trans_ctl_table trans_appldata_table[] = {
1219         { CTL_APPLDATA_TIMER,           "timer" },
1220         { CTL_APPLDATA_INTERVAL,        "interval" },
1221         { CTL_APPLDATA_OS,              "os" },
1222         { CTL_APPLDATA_NET_SUM,         "net_sum" },
1223         { CTL_APPLDATA_MEM,             "mem" },
1224         {}
1225
1226 };
1227
1228 static struct trans_ctl_table trans_s390dbf_table[] = {
1229         { 5678 /* CTL_S390DBF_STOPPABLE */,     "debug_stoppable" },
1230         { 5679 /* CTL_S390DBF_ACTIVE */,        "debug_active" },
1231         {}
1232 };
1233
1234 static struct trans_ctl_table trans_sunrpc_table[] = {
1235         { CTL_RPCDEBUG,         "rpc_debug" },
1236         { CTL_NFSDEBUG,         "nfs_debug" },
1237         { CTL_NFSDDEBUG,        "nfsd_debug" },
1238         { CTL_NLMDEBUG,         "nlm_debug" },
1239         { CTL_SLOTTABLE_UDP,    "udp_slot_table_entries" },
1240         { CTL_SLOTTABLE_TCP,    "tcp_slot_table_entries" },
1241         { CTL_MIN_RESVPORT,     "min_resvport" },
1242         { CTL_MAX_RESVPORT,     "max_resvport" },
1243         {}
1244 };
1245
1246 static struct trans_ctl_table trans_pm_table[] = {
1247         { 1 /* CTL_PM_SUSPEND */,       "suspend" },
1248         { 2 /* CTL_PM_CMODE */,         "cmode" },
1249         { 3 /* CTL_PM_P0 */,            "p0" },
1250         { 4 /* CTL_PM_CM */,            "cm" },
1251         {}
1252 };
1253
1254 static struct trans_ctl_table trans_frv_table[] = {
1255         { 1,    "cache-mode" },
1256         { 2,    "pin-cxnr" },
1257         {}
1258 };
1259
1260 static struct trans_ctl_table trans_root_table[] = {
1261         { CTL_KERN,     "kernel",       trans_kern_table },
1262         { CTL_VM,       "vm",           trans_vm_table },
1263         { CTL_NET,      "net",          trans_net_table },
1264         /* CTL_PROC not used */
1265         { CTL_FS,       "fs",           trans_fs_table },
1266         { CTL_DEBUG,    "debug",        trans_debug_table },
1267         { CTL_DEV,      "dev",          trans_dev_table },
1268         { CTL_BUS,      "bus",          trans_bus_table },
1269         { CTL_ABI,      "abi" },
1270         /* CTL_CPU not used */
1271         { CTL_ARLAN,    "arlan",        trans_arlan_table },
1272         { CTL_APPLDATA, "appldata",     trans_appldata_table },
1273         { CTL_S390DBF,  "s390dbf",      trans_s390dbf_table },
1274         { CTL_SUNRPC,   "sunrpc",       trans_sunrpc_table },
1275         { CTL_PM,       "pm",           trans_pm_table },
1276         { CTL_FRV,      "frv",          trans_frv_table },
1277         {}
1278 };
1279
1280
1281
1282
1283 static int sysctl_depth(struct ctl_table *table)
1284 {
1285         struct ctl_table *tmp;
1286         int depth;
1287
1288         depth = 0;
1289         for (tmp = table; tmp->parent; tmp = tmp->parent)
1290                 depth++;
1291
1292         return depth;
1293 }
1294
1295 static struct ctl_table *sysctl_parent(struct ctl_table *table, int n)
1296 {
1297         int i;
1298
1299         for (i = 0; table && i < n; i++)
1300                 table = table->parent;
1301
1302         return table;
1303 }
1304
1305 static struct trans_ctl_table *sysctl_binary_lookup(struct ctl_table *table)
1306 {
1307         struct ctl_table *test;
1308         struct trans_ctl_table *ref;
1309         int depth, cur_depth;
1310
1311         depth = sysctl_depth(table);
1312
1313         cur_depth = depth;
1314         ref = trans_root_table;
1315 repeat:
1316         test = sysctl_parent(table, cur_depth);
1317         for (; ref->ctl_name || ref->procname || ref->child; ref++) {
1318                 int match = 0;
1319
1320                 if (cur_depth && !ref->child)
1321                         continue;
1322
1323                 if (test->procname && ref->procname &&
1324                         (strcmp(test->procname, ref->procname) == 0))
1325                         match++;
1326
1327                 if (test->ctl_name && ref->ctl_name &&
1328                         (test->ctl_name == ref->ctl_name))
1329                         match++;
1330
1331                 if (!ref->ctl_name && !ref->procname)
1332                         match++;
1333
1334                 if (match) {
1335                         if (cur_depth != 0) {
1336                                 cur_depth--;
1337                                 ref = ref->child;
1338                                 goto repeat;
1339                         }
1340                         goto out;
1341                 }
1342         }
1343         ref = NULL;
1344 out:
1345         return ref;
1346 }
1347
1348 static void sysctl_print_path(struct ctl_table *table)
1349 {
1350         struct ctl_table *tmp;
1351         int depth, i;
1352         depth = sysctl_depth(table);
1353         if (table->procname) {
1354                 for (i = depth; i >= 0; i--) {
1355                         tmp = sysctl_parent(table, i);
1356                         printk("/%s", tmp->procname?tmp->procname:"");
1357                 }
1358         }
1359         printk(" ");
1360         if (table->ctl_name) {
1361                 for (i = depth; i >= 0; i--) {
1362                         tmp = sysctl_parent(table, i);
1363                         printk(".%d", tmp->ctl_name);
1364                 }
1365         }
1366 }
1367
1368 static void sysctl_repair_table(struct ctl_table *table)
1369 {
1370         /* Don't complain about the classic default
1371          * sysctl strategy routine.  Maybe later we
1372          * can get the tables fixed and complain about
1373          * this.
1374          */
1375         if (table->ctl_name && table->procname &&
1376                 (table->proc_handler == proc_dointvec) &&
1377                 (!table->strategy)) {
1378                 table->strategy = sysctl_data;
1379         }
1380 }
1381
1382 static struct ctl_table *sysctl_check_lookup(struct ctl_table *table)
1383 {
1384         struct ctl_table_header *head;
1385         struct ctl_table *ref, *test;
1386         int depth, cur_depth;
1387
1388         depth = sysctl_depth(table);
1389
1390         for (head = sysctl_head_next(NULL); head;
1391              head = sysctl_head_next(head)) {
1392                 cur_depth = depth;
1393                 ref = head->ctl_table;
1394 repeat:
1395                 test = sysctl_parent(table, cur_depth);
1396                 for (; ref->ctl_name || ref->procname; ref++) {
1397                         int match = 0;
1398                         if (cur_depth && !ref->child)
1399                                 continue;
1400
1401                         if (test->procname && ref->procname &&
1402                             (strcmp(test->procname, ref->procname) == 0))
1403                                         match++;
1404
1405                         if (test->ctl_name && ref->ctl_name &&
1406                             (test->ctl_name == ref->ctl_name))
1407                                 match++;
1408
1409                         if (match) {
1410                                 if (cur_depth != 0) {
1411                                         cur_depth--;
1412                                         ref = ref->child;
1413                                         goto repeat;
1414                                 }
1415                                 goto out;
1416                         }
1417                 }
1418         }
1419         ref = NULL;
1420 out:
1421         sysctl_head_finish(head);
1422         return ref;
1423 }
1424
1425 static void set_fail(const char **fail, struct ctl_table *table, const char *str)
1426 {
1427         if (*fail) {
1428                 printk(KERN_ERR "sysctl table check failed: ");
1429                 sysctl_print_path(table);
1430                 printk(" %s\n", *fail);
1431                 dump_stack();
1432         }
1433         *fail = str;
1434 }
1435
1436 static int sysctl_check_dir(struct ctl_table *table)
1437 {
1438         struct ctl_table *ref;
1439         int error;
1440
1441         error = 0;
1442         ref = sysctl_check_lookup(table);
1443         if (ref) {
1444                 int match = 0;
1445                 if ((!table->procname && !ref->procname) ||
1446                     (table->procname && ref->procname &&
1447                      (strcmp(table->procname, ref->procname) == 0)))
1448                         match++;
1449
1450                 if ((!table->ctl_name && !ref->ctl_name) ||
1451                     (table->ctl_name && ref->ctl_name &&
1452                      (table->ctl_name == ref->ctl_name)))
1453                         match++;
1454
1455                 if (match != 2) {
1456                         printk(KERN_ERR "%s: failed: ", __func__);
1457                         sysctl_print_path(table);
1458                         printk(" ref: ");
1459                         sysctl_print_path(ref);
1460                         printk("\n");
1461                         error = -EINVAL;
1462                 }
1463         }
1464         return error;
1465 }
1466
1467 static void sysctl_check_leaf(struct ctl_table *table, const char **fail)
1468 {
1469         struct ctl_table *ref;
1470
1471         ref = sysctl_check_lookup(table);
1472         if (ref && (ref != table))
1473                 set_fail(fail, table, "Sysctl already exists");
1474 }
1475
1476 static void sysctl_check_bin_path(struct ctl_table *table, const char **fail)
1477 {
1478         struct trans_ctl_table *ref;
1479
1480         ref = sysctl_binary_lookup(table);
1481         if (table->ctl_name && !ref)
1482                 set_fail(fail, table, "Unknown sysctl binary path");
1483         if (ref) {
1484                 if (ref->procname &&
1485                     (!table->procname ||
1486                      (strcmp(table->procname, ref->procname) != 0)))
1487                         set_fail(fail, table, "procname does not match binary path procname");
1488
1489                 if (ref->ctl_name && table->ctl_name &&
1490                     (table->ctl_name != ref->ctl_name))
1491                         set_fail(fail, table, "ctl_name does not match binary path ctl_name");
1492         }
1493 }
1494
1495 int sysctl_check_table(struct ctl_table *table)
1496 {
1497         int error = 0;
1498         for (; table->ctl_name || table->procname; table++) {
1499                 const char *fail = NULL;
1500
1501                 sysctl_repair_table(table);
1502                 if (table->parent) {
1503                         if (table->procname && !table->parent->procname)
1504                                 set_fail(&fail, table, "Parent without procname");
1505                         if (table->ctl_name && !table->parent->ctl_name)
1506                                 set_fail(&fail, table, "Parent without ctl_name");
1507                 }
1508                 if (!table->procname)
1509                         set_fail(&fail, table, "No procname");
1510                 if (table->child) {
1511                         if (table->data)
1512                                 set_fail(&fail, table, "Directory with data?");
1513                         if (table->maxlen)
1514                                 set_fail(&fail, table, "Directory with maxlen?");
1515                         if ((table->mode & (S_IRUGO|S_IXUGO)) != table->mode)
1516                                 set_fail(&fail, table, "Writable sysctl directory");
1517                         if (table->proc_handler)
1518                                 set_fail(&fail, table, "Directory with proc_handler");
1519                         if (table->strategy)
1520                                 set_fail(&fail, table, "Directory with strategy");
1521                         if (table->extra1)
1522                                 set_fail(&fail, table, "Directory with extra1");
1523                         if (table->extra2)
1524                                 set_fail(&fail, table, "Directory with extra2");
1525                         if (sysctl_check_dir(table))
1526                                 set_fail(&fail, table, "Inconsistent directory names");
1527                 } else {
1528                         if ((table->strategy == sysctl_data) ||
1529                             (table->strategy == sysctl_string) ||
1530                             (table->strategy == sysctl_intvec) ||
1531                             (table->strategy == sysctl_jiffies) ||
1532                             (table->strategy == sysctl_ms_jiffies) ||
1533                             (table->proc_handler == proc_dostring) ||
1534                             (table->proc_handler == proc_dointvec) ||
1535 #ifdef CONFIG_SECURITY_CAPABILITIES
1536                             (table->proc_handler == proc_dointvec_bset) ||
1537 #endif /* def CONFIG_SECURITY_CAPABILITIES */
1538                             (table->proc_handler == proc_dointvec_minmax) ||
1539                             (table->proc_handler == proc_dointvec_jiffies) ||
1540                             (table->proc_handler == proc_dointvec_userhz_jiffies) ||
1541                             (table->proc_handler == proc_dointvec_ms_jiffies) ||
1542                             (table->proc_handler == proc_doulongvec_minmax) ||
1543                             (table->proc_handler == proc_doulongvec_ms_jiffies_minmax)) {
1544                                 if (!table->data)
1545                                         set_fail(&fail, table, "No data");
1546                                 if (!table->maxlen)
1547                                         set_fail(&fail, table, "No maxlen");
1548                         }
1549                         if ((table->proc_handler == proc_doulongvec_minmax) ||
1550                             (table->proc_handler == proc_doulongvec_ms_jiffies_minmax)) {
1551                                 if (table->maxlen > sizeof (unsigned long)) {
1552                                         if (!table->extra1)
1553                                                 set_fail(&fail, table, "No min");
1554                                         if (!table->extra2)
1555                                                 set_fail(&fail, table, "No max");
1556                                 }
1557                         }
1558 #ifdef CONFIG_SYSCTL_SYSCALL
1559                         if (table->ctl_name && !table->strategy)
1560                                 set_fail(&fail, table, "Missing strategy");
1561 #endif
1562 #if 0
1563                         if (!table->ctl_name && table->strategy)
1564                                 set_fail(&fail, table, "Strategy without ctl_name");
1565 #endif
1566 #ifdef CONFIG_PROC_FS
1567                         if (table->procname && !table->proc_handler)
1568                                 set_fail(&fail, table, "No proc_handler");
1569 #endif
1570 #if 0
1571                         if (!table->procname && table->proc_handler)
1572                                 set_fail(&fail, table, "proc_handler without procname");
1573 #endif
1574                         sysctl_check_leaf(table, &fail);
1575                 }
1576                 sysctl_check_bin_path(table, &fail);
1577                 if (fail) {
1578                         set_fail(&fail, table, NULL);
1579                         error = -EINVAL;
1580                 }
1581                 if (table->child)
1582                         error |= sysctl_check_table(table->child);
1583         }
1584         return error;
1585 }