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