more advanced Nginx settings in GUI
[tomato.git] / release / src / router / httpd / tomato.c
blob73c9eca532f949c706e525cfe96e39d3fcfd4499
1 /*
3 Tomato Firmware
4 Copyright (C) 2006-2010 Jonathan Zarate
6 */
8 #include "tomato.h"
10 #include <sys/sysinfo.h>
11 #include <sys/stat.h>
12 #include <sys/types.h>
13 #include <sys/socket.h>
14 #include <arpa/inet.h>
15 #include <time.h>
18 // #define DEBUG_NOEXECSERVICE
19 #define DEBUG_NVRAMSET(k, v) _dprintf("nvram set %s=%s\n", k, v);
22 char *post_buf = NULL;
23 int rboot = 0;
24 extern int post;
26 static void asp_css(int argc, char **argv);
27 static void asp_resmsg(int argc, char **argv);
30 static void wo_tomato(char *url);
31 static void wo_update(char *url);
32 static void wo_service(char *url);
33 static void wo_shutdown(char *url);
34 static void wo_nvcommit(char *url);
35 // static void wo_logout(char *url);
38 // ----------------------------------------------------------------------------
41 void exec_service(const char *action)
43 int i;
45 _dprintf("exec_service: %s\n", action);
47 i = 10;
48 while ((!nvram_match("action_service", "")) && (i-- > 0)) {
49 _dprintf("%s: waiting before %d\n", __FUNCTION__, i);
50 sleep(1);
53 nvram_set("action_service", action);
54 kill(1, SIGUSR1);
56 i = 3;
57 while ((nvram_match("action_service", (char *)action)) && (i-- > 0)) {
58 _dprintf("%s: waiting after %d\n", __FUNCTION__, i);
59 sleep(1);
63 if (atoi(webcgi_safeget("_service_wait", ""))) {
64 i = 10;
65 while ((nvram_match("action_service", (char *)action)) && (i-- > 0)) {
66 _dprintf("%s: waiting after %d\n", __FUNCTION__, i);
67 sleep(1);
73 static void wi_generic_noid(char *url, int len, char *boundary)
75 if (post == 1) {
76 if (len >= (32 * 1024)) {
77 // syslog(LOG_WARNING, "POST max");
78 exit(1);
81 if (post_buf) free(post_buf);
82 if ((post_buf = malloc(len + 1)) == NULL) {
83 // syslog(LOG_CRIT, "Unable to allocate post buffer");
84 exit(1);
87 if (web_read_x(post_buf, len) != len) {
88 exit(1);
90 post_buf[len] = 0;
91 webcgi_init(post_buf);
95 void wi_generic(char *url, int len, char *boundary)
97 wi_generic_noid(url, len, boundary);
98 check_id(url);
101 // !!TB - CGI Support
102 void wi_cgi_bin(char *url, int len, char *boundary)
104 if (post_buf) free(post_buf);
105 post_buf = NULL;
107 if (post) {
108 if (len >= (128 * 1024)) {
109 syslog(LOG_WARNING, "POST length exceeded maximum allowed");
110 exit(1);
113 if (len > 0) {
114 if ((post_buf = malloc(len + 1)) == NULL) {
115 exit(1);
117 if (web_read_x(post_buf, len) != len) {
118 exit(1);
120 post_buf[len] = 0;
125 static void _execute_command(char *url, char *command, char *query, wofilter_t wof)
127 char webExecFile[] = "/tmp/.wxXXXXXX";
128 char webQueryFile[] = "/tmp/.wqXXXXXX";
129 char cmd[sizeof(webExecFile) + 10];
130 FILE *f;
131 int fe, fq = -1;
133 if ((fe = mkstemp(webExecFile)) < 0)
134 exit(1);
135 if (query) {
136 if ((fq = mkstemp(webQueryFile)) < 0) {
137 close(fe);
138 unlink(webExecFile);
139 exit(1);
143 if ((f = fdopen(fe, "wb")) != NULL) {
144 fprintf(f,
145 "#!/bin/sh\n"
146 "export REQUEST_METHOD=\"%s\"\n"
147 "export PATH=%s\n"
148 ". /etc/profile\n"
149 "%s%s %s%s\n",
150 post ? "POST" : "GET", getenv("PATH"),
151 command ? "" : "./", command ? command : url,
152 query ? "<" : "", query ? webQueryFile : "");
153 fclose(f);
155 else {
156 close(fe);
157 unlink(webExecFile);
158 if (query) {
159 close(fq);
160 unlink(webQueryFile);
162 exit(1);
164 chmod(webExecFile, 0700);
166 if (query) {
167 if ((f = fdopen(fq, "wb")) != NULL) {
168 fprintf(f, "%s\n", query);
169 fclose(f);
171 else {
172 unlink(webExecFile);
173 close(fq);
174 unlink(webQueryFile);
175 exit(1);
179 sprintf(cmd, "%s 2>&1", webExecFile);
180 web_pipecmd(cmd, wof);
181 unlink(webQueryFile);
182 unlink(webExecFile);
185 static void wo_cgi_bin(char *url)
187 if (!header_sent) send_header(200, NULL, mime_html, 0);
188 _execute_command(url, NULL, post_buf, WOF_NONE);
189 if (post_buf) {
190 free(post_buf);
191 post_buf = NULL;
195 static void wo_shell(char *url)
197 web_puts("\ncmdresult = '");
198 _execute_command(NULL, webcgi_get("command"), NULL, WOF_JAVASCRIPT);
199 web_puts("';");
202 static void wo_blank(char *url)
204 web_puts("\n\n\n\n");
207 static void wo_favicon(char *url)
209 send_header(200, NULL, "image/vnd.microsoft.icon", 0);
210 do_file(url);
212 if (nvram_match("web_favicon", "1")) {
213 send_header(200, NULL, "image/vnd.microsoft.icon", 0);
214 do_file(url);
216 else {
217 send_error(404, NULL, NULL);
222 static void wo_cfe(char *url)
224 do_file(MTD_DEV(0ro));
227 static void wo_nvram(char *url)
229 web_pipecmd("nvram show", WOF_NONE);
232 static void wo_iptables(char *url)
234 web_pipecmd("iptables -nvL; echo; iptables -t nat -nvL; echo; iptables -t mangle -nvL", WOF_NONE);
237 #ifdef TCONFIG_IPV6
238 static void wo_ip6tables(char *url)
240 web_pipecmd("ip6tables -nvL; echo; ip6tables -t mangle -nvL", WOF_NONE);
242 #endif
245 static void wo_spin(char *url)
247 char s[64];
249 strlcpy(s, nvram_safe_get("web_css"), sizeof(s));
250 strlcat(s, "_spin.gif", sizeof(s));
251 if (f_exists(s)) do_file(s);
252 else do_file("_spin.gif");
256 void common_redirect(void)
258 if (atoi(webcgi_safeget("_ajax", ""))) {
259 send_header(200, NULL, mime_html, 0);
260 web_puts("OK");
262 else {
263 redirect(webcgi_safeget("_redirect", "/"));
267 // ----------------------------------------------------------------------------
269 const struct mime_handler mime_handlers[] = {
270 { "update.cgi", mime_javascript, 0, wi_generic, wo_update, 1 },
271 { "tomato.cgi", NULL, 0, wi_generic, wo_tomato, 1 },
273 { "debug.js", mime_javascript, 5, wi_generic_noid, wo_blank, 1 }, // while debugging
274 { "cfe/*.bin", mime_binary, 0, wi_generic, wo_cfe, 1 },
275 { "nvram/*.txt", mime_binary, 0, wi_generic, wo_nvram, 1 },
276 { "ipt/*.txt", mime_binary, 0, wi_generic, wo_iptables, 1 },
277 #ifdef TCONFIG_IPV6
278 { "ip6t/*.txt", mime_binary, 0, wi_generic, wo_ip6tables, 1 },
279 #endif
280 { "cfg/*.cfg", NULL, 0, wi_generic, wo_backup, 1 },
281 { "cfg/restore.cgi", mime_html, 0, wi_restore, wo_restore, 1 },
282 { "cfg/defaults.cgi", NULL, 0, wi_generic, wo_defaults, 1 },
284 { "bwm/*.gz", NULL, 0, wi_generic, wo_bwmbackup, 1 },
285 { "bwm/restore.cgi", NULL, 0, wi_bwmrestore, wo_bwmrestore, 1 },
287 { "ipt/*.gz", NULL, 0, wi_generic, wo_iptbackup, 1 },
288 { "ipt/restore.cgi", NULL, 0, wi_iptrestore, wo_iptrestore, 1 },
290 { "logs/view.cgi", NULL, 0, wi_generic, wo_viewlog, 1 },
291 { "logs/*.txt", NULL, 0, wi_generic, wo_syslog, 1 },
292 { "webmon_**", NULL, 0, wi_generic, wo_syslog, 1 },
294 { "logout.asp", NULL, 0, wi_generic, wo_asp, 1 },
295 { "clearcookies.asp", NULL, 0, wi_generic, wo_asp, 1 },
297 // { "spin.gif", NULL, 0, wi_generic_noid, wo_spin, 1 },
299 { "**.asp", NULL, 0, wi_generic_noid, wo_asp, 1 },
300 { "**.css", "text/css", 2, wi_generic_noid, do_file, 1 },
301 { "**.htm|**.html", mime_html, 2, wi_generic_noid, do_file, 1 },
302 { "**.gif", "image/gif", 5, wi_generic_noid, do_file, 1 },
303 { "**.jpg", "image/jpeg", 5, wi_generic_noid, do_file, 1 },
304 { "**.png", "image/png", 5, wi_generic_noid, do_file, 1 },
305 { "**.js", mime_javascript, 2, wi_generic_noid, do_file, 1 },
306 { "**.jsx", mime_javascript, 0, wi_generic, wo_asp, 1 },
307 { "**.svg", "image/svg+xml", 2, wi_generic_noid, do_file, 1 },
308 { "**.txt", mime_plain, 2, wi_generic_noid, do_file, 1 },
309 { "**.bin", mime_binary, 0, wi_generic_noid, do_file, 1 },
310 { "**.bino", mime_octetstream, 0, wi_generic_noid, do_file, 1 },
311 { "favicon.ico", NULL, 5, wi_generic_noid, wo_favicon, 1 },
312 // !!TB - CGI Support, enable downloading archives
313 { "**/cgi-bin/**|**.sh", NULL, 0, wi_cgi_bin, wo_cgi_bin, 1 },
314 { "**.tar|**.gz", mime_binary, 0, wi_generic_noid, do_file, 1 },
315 { "shell.cgi", mime_javascript, 0, wi_generic, wo_shell, 1 },
316 { "wpad.dat|proxy.pac", "application/x-ns-proxy-autoconfig", 0, wi_generic_noid, do_file, 0 },
318 { "webmon.cgi", mime_javascript, 0, wi_generic, wo_webmon, 1 },
319 { "dhcpc.cgi", NULL, 0, wi_generic, wo_dhcpc, 1 },
320 { "dhcpd.cgi", mime_javascript, 0, wi_generic, wo_dhcpd, 1 },
321 { "nvcommit.cgi", NULL, 0, wi_generic, wo_nvcommit, 1 },
322 { "ping.cgi", mime_javascript, 0, wi_generic, wo_ping, 1 },
323 { "trace.cgi", mime_javascript, 0, wi_generic, wo_trace, 1 },
324 { "upgrade.cgi", mime_html, 0, wi_upgrade, wo_flash, 1 },
325 { "upnp.cgi", NULL, 0, wi_generic, wo_upnp, 1 },
326 { "wakeup.cgi", NULL, 0, wi_generic, wo_wakeup, 1 },
327 { "wlmnoise.cgi", mime_html, 0, wi_generic, wo_wlmnoise, 1 },
328 { "wlradio.cgi", NULL, 0, wi_generic, wo_wlradio, 1 },
329 { "resolve.cgi", mime_javascript, 0, wi_generic, wo_resolve, 1 },
330 { "expct.cgi", mime_html, 0, wi_generic, wo_expct, 1 },
331 { "service.cgi", NULL, 0, wi_generic, wo_service, 1 },
332 // { "logout.cgi", NULL, 0, wi_generic, wo_logout, 0 },
333 // see httpd.c
334 { "shutdown.cgi", mime_html, 0, wi_generic, wo_shutdown, 1 },
335 #ifdef TCONFIG_OPENVPN
336 { "vpnstatus.cgi", mime_javascript, 0, wi_generic, wo_vpn_status, 1 },
337 #endif
338 #ifdef TCONFIG_PPTPD
339 { "pptpd.cgi", mime_javascript, 0, wi_generic, wo_pptpdcmd, 1 }, //!!AB - PPTPD
340 #endif
341 #ifdef TCONFIG_USB
342 { "usbcmd.cgi", mime_javascript, 0, wi_generic, wo_usbcommand, 1 }, //!!TB - USB
343 #endif
344 #ifdef BLACKHOLE
345 { "blackhole.cgi", NULL, 0, wi_blackhole, NULL, 1 },
346 #endif
347 #ifdef TCONFIG_NOCAT
348 { "uploadsplash.cgi", NULL, 0, wi_uploadsplash, wo_uploadsplash, 1 },
349 { "ext/uploadsplash.cgi", NULL, 0, wi_uploadsplash, wo_uploadsplash, 1 },
350 #endif
351 { NULL, NULL, 0, NULL, NULL, 1 }
354 const aspapi_t aspapi[] = {
355 { "activeroutes", asp_activeroutes },
356 { "arplist", asp_arplist },
357 { "bandwidth", asp_bandwidth },
358 { "build_time", asp_build_time },
359 { "cgi_get", asp_cgi_get },
360 { "compmac", asp_compmac },
361 { "ctcount", asp_ctcount },
362 { "ctdump", asp_ctdump },
363 { "ctrate", asp_ctrate },
364 { "ddnsx", asp_ddnsx },
365 { "devlist", asp_devlist },
366 { "webmon", asp_webmon },
367 { "dhcpc_time", asp_dhcpc_time },
368 { "dns", asp_dns },
369 { "ident", asp_ident },
370 { "lanip", asp_lanip },
371 { "layer7", asp_layer7 },
372 { "link_uptime", asp_link_uptime },
373 { "lipp", asp_lipp },
374 { "netdev", asp_netdev },
376 { "iptraffic", asp_iptraffic },
377 { "iptmon", asp_iptmon },
378 { "ipt_bandwidth", asp_ipt_bandwidth },
380 { "notice", asp_notice },
381 { "nv", asp_nv },
382 { "nvram", asp_nvram },
383 { "nvramseq", asp_nvramseq },
384 { "nvstat", asp_nvstat },
385 { "psup", asp_psup },
386 { "qrate", asp_qrate },
387 { "resmsg", asp_resmsg },
388 { "rrule", asp_rrule },
389 { "statfs", asp_statfs },
390 { "sysinfo", asp_sysinfo },
391 { "time", asp_time },
392 { "upnpinfo", asp_upnpinfo },
393 { "version", asp_version },
394 { "wanstatus", asp_wanstatus },
395 { "wanup", asp_wanup },
396 #ifdef TCONFIG_PPTPD
397 { "pptpd_userol", asp_pptpd_userol },
398 #endif
399 { "wlstats", asp_wlstats },
400 { "wlclient", asp_wlclient },
401 { "wlnoise", asp_wlnoise },
402 { "wlscan", asp_wlscan },
403 { "wlchannels", asp_wlchannels }, //!!TB
404 { "wlcountries", asp_wlcountries },
405 { "wlifaces", asp_wlifaces },
406 { "wlbands", asp_wlbands },
407 #ifdef TCONFIG_USB
408 { "usbdevices", asp_usbdevices }, //!!TB - USB Support
409 #endif
410 #ifdef TCONFIG_SDHC
411 { "mmcid", asp_mmcid }, //MMC Support
412 #endif
413 { "etherstates", asp_etherstates }, //Ethernet States
414 { "anonupdate", asp_anonupdate }, //Tomato update notification system
415 #ifdef TCONFIG_IPV6
416 { "calc6rdlocalprefix", asp_calc6rdlocalprefix },
417 #endif
419 { "css", asp_css },
420 { NULL, NULL }
423 // -----------------------------------------------------------------------------
425 static void asp_css(int argc, char **argv)
427 const char *css = nvram_safe_get("web_css");
428 const char *ttb = nvram_safe_get("ttb_css");
430 if( nvram_match( "web_css", "online" ) ) {
431 web_printf("<link rel='stylesheet' type='text/css' href='ext/%s.css'>", ttb);
432 } else {
433 if (strcmp(css, "tomato") != 0) {
434 web_printf("<link rel='stylesheet' type='text/css' href='%s.css'>", css);
439 // -----------------------------------------------------------------------------
441 const char *resmsg_get(void)
443 return webcgi_safeget("resmsg", "");
446 void resmsg_set(const char *msg)
448 webcgi_set("resmsg", strdup(msg)); // m ok
451 int resmsg_fread(const char *fname)
453 char s[256];
454 char *p;
456 f_read_string(fname, s, sizeof(s));
457 if ((p = strchr(s, '\n')) != NULL) *p = 0;
458 if (s[0]) {
459 resmsg_set(s);
460 return 1;
462 return 0;
465 static void asp_resmsg(int argc, char **argv)
467 char *p;
469 if ((p = js_string(webcgi_safeget("resmsg", (argc > 0) ? argv[0] : ""))) == NULL) return;
470 web_printf("\nresmsg='%s';\n", p);
471 free(p);
474 // ----------------------------------------------------------------------------
476 // verification... simple sanity checks. UI should verify all fields.
478 // todo: move and re-use for filtering - zzz
480 typedef union {
481 int i;
482 long l;
483 const char *s;
484 } nvset_varg_t;
486 typedef struct {
487 const char *name;
488 enum {
489 VT_NONE, // no checking
490 VT_LENGTH, // check length of string
491 VT_TEXT, // strip \r, check length of string
492 VT_RANGE, // expect an integer, check range
493 VT_IP, // expect an ip address
494 VT_MAC, // expect a mac address
495 #ifdef TCONFIG_IPV6
496 VT_IPV6, // expect an ipv6 address
497 #endif
498 VT_TEMP // no checks, no commit
499 } vtype;
500 nvset_varg_t va;
501 nvset_varg_t vb;
502 } nvset_t;
505 #define V_NONE VT_NONE, { }, { }
506 #define V_01 VT_RANGE, { .l = 0 }, { .l = 1 }
507 #define V_PORT VT_RANGE, { .l = 2 }, { .l = 65535 }
508 #define V_ONOFF VT_LENGTH, { .i = 2 }, { .i = 3 }
509 #define V_WORD VT_LENGTH, { .i = 1 }, { .i = 16 }
510 #define V_LENGTH(min, max) VT_LENGTH, { .i = min }, { .i = max }
511 #define V_TEXT(min, max) VT_TEXT, { .i = min }, { .i = max }
512 #define V_RANGE(min, max) VT_RANGE, { .l = min }, { .l = max }
513 #define V_IP VT_IP, { }, { }
514 #define V_OCTET VT_RANGE, { .l = 0 }, { .l = 255 }
515 #define V_NUM VT_RANGE, { .l = 0 }, { .l = 0x7FFFFFFF }
516 #define V_TEMP VT_TEMP, { }, { }
517 #ifdef TCONFIG_IPV6
518 #define V_IPV6(required) VT_IPV6, { .i = required }, { }
519 #endif
521 static const nvset_t nvset_list[] = {
523 // basic-ident
524 { "router_name", V_LENGTH(0, 32) },
525 { "wan_hostname", V_LENGTH(0, 32) },
526 { "wan_domain", V_LENGTH(0, 32) },
528 // basic-time
529 { "tm_tz", V_LENGTH(1, 64) }, // PST8PDT
530 { "tm_sel", V_LENGTH(1, 64) }, // PST8PDT
531 { "tm_dst", V_01 },
532 { "ntp_updates", V_RANGE(-1, 24) },
533 { "ntp_tdod", V_01 },
534 { "ntp_server", V_LENGTH(1, 150) }, // x y z
535 { "ntp_kiss", V_LENGTH(0, 255) },
537 // basic-static
538 { "dhcpd_static", V_LENGTH(0, 108*251) }, // 108 (max chars per entry) x 250 entries
539 { "dhcpd_static_only", V_01 },
541 // basic-ddns
542 { "ddnsx0", V_LENGTH(0, 2048) },
543 { "ddnsx1", V_LENGTH(0, 2048) },
544 { "ddnsx0_cache", V_LENGTH(0, 1) }, // only to clear
545 { "ddnsx1_cache", V_LENGTH(0, 1) },
546 { "ddnsx_ip", V_LENGTH(0, 32) },
547 { "ddnsx_save", V_01 },
548 { "ddnsx_refresh", V_RANGE(0, 365) },
550 // basic-network
551 // WAN
552 { "wan_proto", V_LENGTH(1, 16) }, // disabled, dhcp, static, pppoe, pptp, l2tp
553 { "wan_ipaddr", V_IP },
554 { "wan_netmask", V_IP },
555 { "wan_gateway", V_IP },
556 { "hb_server_ip", V_LENGTH(0, 32) },
557 { "l2tp_server_ip", V_LENGTH(0, 128) },
558 { "pptp_server_ip", V_LENGTH(0, 128) },
559 { "pptp_dhcp", V_01 },
560 { "ppp_username", V_LENGTH(0, 60) },
561 { "ppp_passwd", V_LENGTH(0, 60) },
562 { "ppp_service", V_LENGTH(0, 50) },
563 { "ppp_demand", V_01 },
564 { "ppp_custom", V_LENGTH(0, 256) },
565 { "ppp_idletime", V_RANGE(0, 1440) },
566 { "ppp_redialperiod", V_RANGE(1, 86400) },
567 { "ppp_mlppp", V_01 },
568 { "mtu_enable", V_01 },
569 { "wan_mtu", V_RANGE(576, 1500) },
570 { "wan_islan", V_01 },
571 { "modem_ipaddr", V_IP },
572 { "pppoe_lei", V_RANGE(1, 60) },
573 { "pppoe_lef", V_RANGE(1, 10) },
575 // LAN
576 { "lan_ipaddr", V_IP },
577 { "lan_netmask", V_IP },
578 { "lan_gateway", V_IP },
579 { "wan_dns", V_LENGTH(0, 50) }, // ip ip ip
581 #ifdef TCONFIG_DNSSEC
582 { "dnssec_enable", V_01 },
583 #endif
585 #ifdef TCONFIG_DNSCRYPT
586 { "dnscrypt_proxy", V_01 },
587 { "dnscrypt_priority", V_RANGE(0, 2) }, // 0=none, 1=preferred, 2=exclusive
588 { "dnscrypt_port", V_PORT },
589 { "dnscrypt_resolver", V_LENGTH(0, 40) },
590 { "dnscrypt_log", V_RANGE(0, 99) },
591 { "dnscrypt_manual", V_01 },
592 { "dnscrypt_provider_name", V_LENGTH(0, 60) },
593 { "dnscrypt_provider_key", V_LENGTH(0, 80) },
594 { "dnscrypt_resolver_address", V_LENGTH(0, 50) },
595 #endif
596 { "lan_state", V_01 },
597 { "lan_desc", V_01 },
598 { "lan_invert", V_01 },
599 { "lan_proto", V_WORD }, // static, dhcp
600 { "dhcp_start", V_LENGTH(0, 15) }, // remove !
601 { "dhcp_num", V_LENGTH(0, 4) }, // remove !
602 { "dhcpd_startip", V_LENGTH(0, 15) },
603 { "dhcpd_endip", V_LENGTH(0, 15) },
604 { "dhcp_lease", V_LENGTH(0, 5) },
605 { "wan_wins", V_IP },
607 #ifdef TCONFIG_USB
608 // 3G MODEM
609 { "modem_pin", V_LENGTH(0,6) },
610 { "modem_dev", V_LENGTH(0,8) },
611 { "modem_init", V_LENGTH(0,25) },
612 { "modem_apn", V_LENGTH(0,25) },
613 #endif
615 // LAN networks
616 { "lan_ifname", V_LENGTH(0, 5) },
618 { "lan1_ifname", V_LENGTH(0, 5) },
619 { "lan1_ifnames", V_TEXT(0,64) },
620 { "lan1_ipaddr", V_LENGTH(0, 15) },
621 { "lan1_netmask", V_LENGTH(0, 15) },
622 { "lan1_proto", V_LENGTH(0, 6) },
623 { "lan1_stp", V_LENGTH(0, 1) },
624 { "dhcp1_start", V_LENGTH(0, 15) },
625 { "dhcp1_num", V_LENGTH(0, 4) },
626 { "dhcpd1_startip", V_LENGTH(0, 15) },
627 { "dhcpd1_endip", V_LENGTH(0, 15) },
628 { "dhcp1_lease", V_LENGTH(0, 5) },
630 { "lan2_ifname", V_LENGTH(0, 5) },
631 { "lan2_ifnames", V_TEXT(0,64) },
632 { "lan2_ipaddr", V_LENGTH(0, 15) },
633 { "lan2_netmask", V_LENGTH(0, 15) },
634 { "lan2_proto", V_LENGTH(0, 6) },
635 { "lan2_stp", V_LENGTH(0, 1) },
636 { "dhcp2_start", V_LENGTH(0, 15) },
637 { "dhcp2_num", V_LENGTH(0, 4) },
638 { "dhcpd2_startip", V_LENGTH(0, 15) },
639 { "dhcpd2_endip", V_LENGTH(0, 15) },
640 { "dhcp2_lease", V_LENGTH(0, 5) },
642 { "lan3_ifname", V_LENGTH(0, 5) },
643 { "lan3_ifnames", V_TEXT(0,64) },
644 { "lan3_ipaddr", V_LENGTH(0, 15) },
645 { "lan3_netmask", V_LENGTH(0, 15) },
646 { "lan3_proto", V_LENGTH(0, 6) },
647 { "lan3_stp", V_LENGTH(0, 1) },
648 { "dhcp3_start", V_LENGTH(0, 15) },
649 { "dhcp3_num", V_LENGTH(0, 4) },
650 { "dhcpd3_startip", V_LENGTH(0, 15) },
651 { "dhcpd3_endip", V_LENGTH(0, 15) },
652 { "dhcp3_lease", V_LENGTH(0, 5) },
654 // wireless
655 { "wl_radio", V_01 },
656 { "wl_mode", V_LENGTH(2, 3) }, // ap, sta, wet, wds
657 { "wl_net_mode", V_LENGTH(5, 8) }, // disabled, mixed, b-only, g-only, bg-mixed, n-only [speedbooster]
658 { "wl_ssid", V_LENGTH(1, 32) },
659 { "wl_closed", V_01 },
660 { "wl_channel", V_RANGE(0, 216) },
662 { "wl_vifs", V_LENGTH(0, 64) }, // multiple/virtual BSSIDs
663 #ifndef LINUX26
664 { "nas_alternate", V_01 }, // only meaningful for ND/K24 builds
665 #endif
667 { "wl_security_mode", V_LENGTH(1, 32) }, // disabled, radius, wep, wpa_personal, wpa_enterprise, wpa2_personal, wpa2_enterprise
668 { "wl_radius_ipaddr", V_IP },
669 { "wl_radius_port", V_PORT },
670 { "wl_radius_key", V_LENGTH(1, 64) },
671 { "wl_wep_bit", V_RANGE(64, 128) }, // 64 or 128
672 { "wl_passphrase", V_LENGTH(0, 20) },
673 { "wl_key", V_RANGE(1, 4) },
674 { "wl_key1", V_LENGTH(0, 26) },
675 { "wl_key2", V_LENGTH(0, 26) },
676 { "wl_key3", V_LENGTH(0, 26) },
677 { "wl_key4", V_LENGTH(0, 26) },
678 { "wl_crypto", V_LENGTH(3, 8) }, // tkip, aes, tkip+aes
679 { "wl_wpa_psk", V_LENGTH(8, 64) },
680 { "wl_wpa_gtk_rekey", V_RANGE(60, 7200) },
682 { "wl_lazywds", V_01 },
683 { "wl_wds", V_LENGTH(0, 180) }, // mac mac mac (x 10)
685 { "wl_wds_enable", V_01 },
686 { "wl_gmode", V_RANGE(-1, 6) },
687 { "wl_wep", V_LENGTH(1, 32) }, // off, on, restricted,tkip,aes,tkip+aes
688 { "wl_akm", V_LENGTH(0, 32) }, // wpa, wpa2, psk, psk2, wpa wpa2, psk psk2, ""
689 { "wl_auth_mode", V_LENGTH(4, 6) }, // none, radius
691 { "wl_nmode", V_NONE },
692 { "wl_nband", V_RANGE(0, 2) }, // 2 - 2.4GHz, 1 - 5GHz, 0 - Auto
693 { "wl_nreqd", V_NONE },
694 { "wl_nbw_cap", V_RANGE(0, 2) }, // 0 - 20MHz, 1 - 40MHz, 2 - Auto
695 { "wl_nbw", V_NONE },
696 { "wl_mimo_preamble", V_WORD }, // 802.11n Preamble: mm/gf/auto/gfbcm
697 { "wl_nctrlsb", V_NONE }, // none, lower, upper
699 #ifdef TCONFIG_IPV6
700 // basic-ipv6
701 { "ipv6_service", V_LENGTH(0, 16) }, // '', native, native-pd, 6to4, sit, other
702 { "ipv6_prefix", V_IPV6(0) },
703 { "ipv6_prefix_length", V_RANGE(3, 127) },
704 { "ipv6_rtr_addr", V_IPV6(0) },
705 { "ipv6_radvd", V_01 },
706 { "ipv6_accept_ra", V_NUM },
707 { "ipv6_tun_addr", V_IPV6(1) },
708 { "ipv6_tun_addrlen", V_RANGE(3, 127) },
709 { "ipv6_ifname", V_LENGTH(0, 8) },
710 { "ipv6_tun_v4end", V_IP },
711 { "ipv6_relay", V_RANGE(1, 254) },
712 { "ipv6_tun_mtu", V_NUM }, // Tunnel MTU
713 { "ipv6_tun_ttl", V_NUM }, // Tunnel TTL
714 { "ipv6_dns", V_LENGTH(0, 40*3) }, // ip6 ip6 ip6
715 { "ipv6_6rd_prefix", V_IPV6(0) },
716 { "ipv6_6rd_prefix_length", V_RANGE(3, 127) },
717 { "ipv6_6rd_borderrelay", V_IP },
718 { "ipv6_6rd_ipv4masklen", V_RANGE(0, 30) },
719 #endif
721 // basic-wfilter
722 { "wl_macmode", V_NONE }, // allow, deny, disabled
723 { "wl_maclist", V_LENGTH(0, 18*201) }, // 18 x 200 (11:22:33:44:55:66 ...)
724 { "macnames", V_LENGTH(0, 62*201) }, // 62 (12+1+48+1) x 50 (112233445566<..>) todo: re-use -- zzz
726 // advanced-ctnf
727 { "ct_max", V_NUM },
728 { "ct_tcp_timeout", V_LENGTH(20, 70) },
729 { "ct_udp_timeout", V_LENGTH(5, 15) },
730 { "ct_timeout", V_LENGTH(5, 15) },
731 { "nf_ttl", V_LENGTH(1, 6) },
732 { "nf_l7in", V_01 },
733 #ifdef LINUX26
734 { "nf_sip", V_01 },
735 { "ct_hashsize", V_NUM },
736 #endif
737 { "nf_rtsp", V_01 },
738 { "nf_pptp", V_01 },
739 { "nf_h323", V_01 },
740 { "nf_ftp", V_01 },
742 // advanced-dhcpdns
743 { "dhcpd_slt", V_RANGE(-1, 43200) }, // -1=infinite, 0=follow normal lease time, >=1 custom
744 { "dhcpd_dmdns", V_01 },
745 { "dhcpd_lmax", V_NUM },
746 { "dhcpd_gwmode", V_NUM },
747 { "dns_addget", V_01 },
748 { "dns_intcpt", V_01 },
749 { "dhcpc_minpkt", V_01 },
750 { "dhcpc_custom", V_LENGTH(0, 80) },
751 { "dns_norebind", V_01 },
752 { "dnsmasq_custom", V_TEXT(0, 2048) },
753 { "dnsmasq_q", V_RANGE(0,7) }, //bitfield quiet bit0=dhcp, 1=dhcp6, 2=ra
754 // { "dnsmasq_norw", V_01 },
756 // advanced-firewall
757 { "block_wan", V_01 },
758 { "block_wan_limit", V_01 },
759 { "block_wan_limit_icmp", V_RANGE(1, 300) },
760 { "block_wan_limit_tr", V_RANGE(1, 300) },
761 { "multicast_pass", V_01 },
762 { "multicast_lan", V_01 },
763 { "multicast_lan1", V_01 },
764 { "multicast_lan2", V_01 },
765 { "multicast_lan3", V_01 },
766 { "block_loopback", V_01 },
767 { "udpxy_enable", V_01 },
768 { "udpxy_stats", V_01 },
769 { "udpxy_clients", V_RANGE(1, 5000) },
770 { "udpxy_port", V_RANGE(0, 65535) },
771 { "nf_loopback", V_NUM },
772 { "ne_syncookies", V_01 },
773 { "DSCP_fix_enable", V_01 },
774 { "ne_snat", V_01 },
775 { "dhcp_pass", V_01 },
776 #ifdef TCONFIG_EMF
777 { "emf_entry", V_NONE },
778 { "emf_uffp_entry", V_NONE },
779 { "emf_rtport_entry", V_NONE },
780 { "emf_enable", V_01 },
781 #endif
783 // advanced-misc
784 { "wait_time", V_RANGE(3, 20) },
785 { "wan_speed", V_RANGE(0, 4) },
786 { "jumbo_frame_enable", V_01 }, // Jumbo Frames support (for RT-N16/WNR3500L)
787 { "jumbo_frame_size", V_RANGE(1, 9720) },
788 #ifdef CONFIG_BCMWL5
789 { "ctf_disable", V_01 },
790 #endif
791 // advanced-vlan
792 { "vlan0ports", V_TEXT(0,16) },
793 { "vlan1ports", V_TEXT(0,16) },
794 { "vlan2ports", V_TEXT(0,16) },
795 { "vlan3ports", V_TEXT(0,16) },
796 { "vlan4ports", V_TEXT(0,16) },
797 { "vlan5ports", V_TEXT(0,16) },
798 { "vlan6ports", V_TEXT(0,16) },
799 { "vlan7ports", V_TEXT(0,16) },
800 { "vlan8ports", V_TEXT(0,16) },
801 { "vlan9ports", V_TEXT(0,16) },
802 { "vlan10ports", V_TEXT(0,16) },
803 { "vlan11ports", V_TEXT(0,16) },
804 { "vlan12ports", V_TEXT(0,16) },
805 { "vlan13ports", V_TEXT(0,16) },
806 { "vlan14ports", V_TEXT(0,16) },
807 { "vlan15ports", V_TEXT(0,16) },
808 { "vlan0hwname", V_TEXT(0,8) },
809 { "vlan1hwname", V_TEXT(0,8) },
810 { "vlan2hwname", V_TEXT(0,8) },
811 { "vlan3hwname", V_TEXT(0,8) },
812 { "vlan4hwname", V_TEXT(0,8) },
813 { "vlan5hwname", V_TEXT(0,8) },
814 { "vlan6hwname", V_TEXT(0,8) },
815 { "vlan7hwname", V_TEXT(0,8) },
816 { "vlan8hwname", V_TEXT(0,8) },
817 { "vlan9hwname", V_TEXT(0,8) },
818 { "vlan10hwname", V_TEXT(0,8) },
819 { "vlan11hwname", V_TEXT(0,8) },
820 { "vlan12hwname", V_TEXT(0,8) },
821 { "vlan13hwname", V_TEXT(0,8) },
822 { "vlan14hwname", V_TEXT(0,8) },
823 { "vlan15hwname", V_TEXT(0,8) },
824 { "wan_ifnameX", V_TEXT(0,8) },
825 { "lan_ifnames", V_TEXT(0,64) },
826 { "manual_boot_nv", V_01 },
827 { "trunk_vlan_so", V_01 },
828 { "vlan0tag", V_TEXT(0,5) },
829 { "vlan0vid", V_TEXT(0,5) },
830 { "vlan1vid", V_TEXT(0,5) },
831 { "vlan2vid", V_TEXT(0,5) },
832 { "vlan3vid", V_TEXT(0,5) },
833 { "vlan4vid", V_TEXT(0,5) },
834 { "vlan5vid", V_TEXT(0,5) },
835 { "vlan6vid", V_TEXT(0,5) },
836 { "vlan7vid", V_TEXT(0,5) },
837 { "vlan8vid", V_TEXT(0,5) },
838 { "vlan9vid", V_TEXT(0,5) },
839 { "vlan10vid", V_TEXT(0,5) },
840 { "vlan11vid", V_TEXT(0,5) },
841 { "vlan12vid", V_TEXT(0,5) },
842 { "vlan13vid", V_TEXT(0,5) },
843 { "vlan14vid", V_TEXT(0,5) },
844 { "vlan15vid", V_TEXT(0,5) },
846 // advanced-mac
847 { "mac_wan", V_LENGTH(0, 17) },
848 { "wl_macaddr", V_LENGTH(0, 17) },
849 { "wl_hwaddr", V_LENGTH(0, 17) },
851 // advanced-routing
852 { "routes_static", V_LENGTH(0, 2048) },
853 { "dhcp_routes", V_01 },
854 { "lan_stp", V_RANGE(0, 1) },
855 { "wk_mode", V_LENGTH(1, 32) }, // gateway, router
856 #ifdef TCONFIG_ZEBRA
857 { "dr_setting", V_RANGE(0, 3) },
858 { "dr_lan_tx", V_LENGTH(0, 32) },
859 { "dr_lan_rx", V_LENGTH(0, 32) },
860 { "dr_lan1_tx", V_LENGTH(0, 32) },
861 { "dr_lan1_rx", V_LENGTH(0, 32) },
862 { "dr_lan2_tx", V_LENGTH(0, 32) },
863 { "dr_lan2_rx", V_LENGTH(0, 32) },
864 { "dr_lan3_tx", V_LENGTH(0, 32) },
865 { "dr_lan3_rx", V_LENGTH(0, 32) },
866 { "dr_wan_tx", V_LENGTH(0, 32) },
867 { "dr_wan_rx", V_LENGTH(0, 32) },
868 #endif
870 // advanced-access
871 { "lan_access", V_LENGTH(0, 4096) },
873 // advanced-wireless
874 { "wl_country", V_LENGTH(0, 64) }, // !!TB - Country code
875 { "wl_country_code", V_LENGTH(0, 4) }, // !!TB - Country code
876 { "wl_btc_mode", V_RANGE(0, 2) }, // !!TB - BT Coexistence Mode: 0 (disable), 1 (enable), 2 (preemption)
877 { "wl_afterburner", V_LENGTH(2, 4) }, // off, on, auto
878 { "wl_auth", V_01 },
879 { "wl_rateset", V_LENGTH(2, 7) }, // all, default, 12
880 { "wl_rate", V_RANGE(0, 54 * 1000 * 1000) },
881 { "wl_mrate", V_RANGE(0, 54 * 1000 * 1000) },
882 { "wl_gmode_protection",V_LENGTH(3, 4) }, // off, auto
883 { "wl_frameburst", V_ONOFF }, // off, on
884 { "wl_bcn", V_RANGE(1, 65535) },
885 { "wl_dtim", V_RANGE(1, 255) },
886 { "wl_frag", V_RANGE(256, 2346) },
887 { "wl_rts", V_RANGE(0, 2347) },
888 { "wl_ap_isolate", V_01 },
889 { "wl_plcphdr", V_LENGTH(4, 5) }, // long, short
890 { "wl_antdiv", V_RANGE(0, 3) },
891 { "wl_txant", V_RANGE(0, 3) },
892 { "wl_txpwr", V_RANGE(0, 400) },
893 { "wl_wme", V_WORD }, // auto, off, on
894 { "wl_wme_no_ack", V_ONOFF }, // off, on
895 { "wl_wme_apsd", V_ONOFF }, // off, on
896 { "wl_maxassoc", V_RANGE(0, 255) },
897 { "wl_distance", V_LENGTH(0, 5) }, // "", 1-99999
898 { "wlx_hpamp", V_01 },
899 { "wlx_hperx", V_01 },
900 { "wl_reg_mode", V_LENGTH(1, 3) }, // !!TB - Regulatory: off, h, d
901 { "wl_mitigation", V_RANGE(0, 3) }, // Interference Mitigation Mode (0|1|2|3)
903 { "wl_nmode_protection", V_WORD, }, // off, auto
904 { "wl_nmcsidx", V_RANGE(-2, 32), }, // -2 - 32
905 { "wl_obss_coex", V_01 },
906 { "wl_wmf_bss_enable", V_01 }, // Toastman
908 // forward-dmz
909 { "dmz_enable", V_01 },
910 { "dmz_ipaddr", V_LENGTH(0, 15) },
911 { "dmz_sip", V_LENGTH(0, 512) },
912 { "dmz_ifname", V_LENGTH(0, 5) },
913 { "dmz_ra", V_01 },
915 // forward-upnp
916 { "upnp_enable", V_NUM },
917 { "upnp_secure", V_01 },
918 { "upnp_port", V_RANGE(0, 65535) },
919 { "upnp_ssdp_interval", V_RANGE(10, 9999) },
920 { "upnp_mnp", V_01 },
921 { "upnp_clean", V_01 },
922 { "upnp_clean_interval", V_RANGE(60, 65535) },
923 { "upnp_clean_threshold", V_RANGE(0, 9999) },
924 { "upnp_min_port_int", V_PORT },
925 { "upnp_max_port_int", V_PORT },
926 { "upnp_min_port_ext", V_PORT },
927 { "upnp_max_port_ext", V_PORT },
928 { "upnp_lan", V_01 },
929 { "upnp_lan1", V_01 },
930 { "upnp_lan2", V_01 },
931 { "upnp_lan3", V_01 },
932 { "upnp_custom", V_TEXT(0, 2048) },
934 // forward-basic
935 { "portforward", V_LENGTH(0, 4096) },
937 #ifdef TCONFIG_IPV6
938 // forward-basic-ipv6
939 { "ipv6_portforward", V_LENGTH(0, 4096) },
940 #endif
942 // forward-triggered
943 { "trigforward", V_LENGTH(0, 4096) },
946 // access restriction
947 { "rruleN", V_RANGE(0, 99) },
948 // { "rrule##", V_LENGTH(0, 2048) }, // in save_variables()
950 // admin-access
951 { "http_enable", V_01 },
952 { "https_enable", V_01 },
953 { "https_crt_save", V_01 },
954 { "https_crt_cn", V_LENGTH(0, 64) },
955 { "https_crt_gen", V_TEMP },
956 { "remote_management", V_01 },
957 { "remote_mgt_https", V_01 },
958 { "http_lanport", V_PORT },
959 { "https_lanport", V_PORT },
960 { "web_wl_filter", V_01 },
961 { "web_css", V_LENGTH(1, 32) },
962 { "web_dir", V_LENGTH(1, 32) },
963 { "ttb_css", V_LENGTH(0, 128) },
964 { "web_mx", V_LENGTH(0, 128) },
965 { "http_wanport", V_PORT },
966 { "telnetd_eas", V_01 },
967 { "telnetd_port", V_PORT },
968 { "sshd_eas", V_01 },
969 { "sshd_pass", V_01 },
970 { "sshd_port", V_PORT },
971 { "sshd_remote", V_01 },
972 { "sshd_motd", V_01 },
973 { "sshd_forwarding", V_01 },
974 { "sshd_rport", V_PORT },
975 { "sshd_authkeys", V_TEXT(0, 4096) },
976 { "rmgt_sip", V_LENGTH(0, 512) },
977 { "ne_shlimit", V_TEXT(1, 50) },
979 // admin-bwm
980 { "rstats_enable", V_01 },
981 { "rstats_path", V_LENGTH(0, 48) },
982 { "rstats_stime", V_RANGE(1, 168) },
983 { "rstats_offset", V_RANGE(1, 31) },
984 { "rstats_exclude", V_LENGTH(0, 64) },
985 { "rstats_sshut", V_01 },
986 { "rstats_bak", V_01 },
988 // admin-ipt
989 { "cstats_enable", V_01 },
990 { "cstats_path", V_LENGTH(0, 48) },
991 { "cstats_stime", V_RANGE(1, 168) },
992 { "cstats_offset", V_RANGE(1, 31) },
993 { "cstats_labels", V_RANGE(0, 2) },
994 { "cstats_exclude", V_LENGTH(0, 512) },
995 { "cstats_include", V_LENGTH(0, 2048) },
996 { "cstats_all", V_01 },
997 { "cstats_sshut", V_01 },
998 { "cstats_bak", V_01 },
1000 // admin-buttons
1001 { "sesx_led", V_RANGE(0, 255) }, // amber, white, aoss
1002 { "sesx_b0", V_RANGE(0, 5) }, // 0-5: toggle wireless, reboot, shutdown, script, usb unmount
1003 { "sesx_b1", V_RANGE(0, 5) }, // "
1004 { "sesx_b2", V_RANGE(0, 5) }, // "
1005 { "sesx_b3", V_RANGE(0, 5) }, // "
1006 { "sesx_script", V_TEXT(0, 1024) }, //
1007 { "script_brau", V_TEXT(0, 1024) }, //
1009 // admin-debug
1010 { "debug_nocommit", V_01 },
1011 { "debug_cprintf", V_01 },
1012 { "debug_cprintf_file", V_01 },
1013 // { "debug_keepfiles", V_01 },
1014 { "debug_ddns", V_01 },
1015 { "debug_norestart", V_TEXT(0, 128) },
1016 { "console_loglevel", V_RANGE(1, 8) },
1017 { "t_cafree", V_01 },
1018 { "t_hidelr", V_01 },
1020 // admin-sched
1021 { "sch_rboot", V_TEXT(0, 64) },
1022 { "sch_rcon", V_TEXT(0, 64) },
1023 { "sch_c1", V_TEXT(0, 64) },
1024 { "sch_c1_cmd", V_TEXT(0, 2048) },
1025 { "sch_c2", V_TEXT(0, 64) },
1026 { "sch_c2_cmd", V_TEXT(0, 2048) },
1027 { "sch_c3", V_TEXT(0, 64) },
1028 { "sch_c3_cmd", V_TEXT(0, 2048) },
1029 { "sch_c4", V_TEXT(0, 64) },
1030 { "sch_c4_cmd", V_TEXT(0, 2048) },
1031 { "sch_c5", V_TEXT(0, 64) },
1032 { "sch_c5_cmd", V_TEXT(0, 2048) },
1034 // admin-scripts
1035 { "script_init", V_TEXT(0, 4096) },
1036 { "script_shut", V_TEXT(0, 4096) },
1037 { "script_fire", V_TEXT(0, 8192) },
1038 { "script_wanup", V_TEXT(0, 4096) },
1040 // admin-log
1041 { "log_remote", V_01 },
1042 { "log_remoteip", V_LENGTH(0, 512) },
1043 { "log_remoteport", V_PORT },
1044 { "log_file", V_01 },
1045 { "log_file_custom", V_01 },
1046 { "log_file_path", V_TEXT(0, 4096) },
1047 { "log_file_size", V_RANGE(0, 99999) },
1048 { "log_file_keep", V_RANGE(0, 99) },
1049 { "log_limit", V_RANGE(0, 2400) },
1050 { "log_in", V_RANGE(0, 3) },
1051 { "log_out", V_RANGE(0, 3) },
1052 { "log_mark", V_RANGE(0, 99999) },
1053 { "log_events", V_TEXT(0, 32) }, // "acre,crond,ntp"
1055 // admin-log-webmonitor
1056 { "log_wm", V_01 },
1057 { "log_wmtype", V_RANGE(0, 2) },
1058 { "log_wmip", V_LENGTH(0, 512) },
1059 { "log_wmdmax", V_RANGE(0, 9999) },
1060 { "log_wmsmax", V_RANGE(0, 9999) },
1061 { "webmon_bkp", V_01 },
1062 { "webmon_dir", V_LENGTH(0, 256) },
1063 { "webmon_shrink", V_01 },
1066 // admin-cifs
1067 { "cifs1", V_LENGTH(1, 1024) },
1068 { "cifs2", V_LENGTH(1, 1024) },
1070 // admin-jffs2
1071 { "jffs2_on", V_01 },
1072 { "jffs2_exec", V_LENGTH(0, 64) },
1073 { "jffs2_format", V_01 },
1075 #ifdef TCONFIG_SDHC
1076 // admin-sdhc
1077 { "mmc_on", V_01 },
1078 { "mmc_cs", V_RANGE(1, 7) }, // GPIO pin
1079 { "mmc_clk", V_RANGE(1, 7) }, // GPIO pin
1080 { "mmc_din", V_RANGE(1, 7) }, // GPIO pin
1081 { "mmc_dout", V_RANGE(1, 7) }, // GPIO pin
1082 { "mmc_fs_partition", V_RANGE(1, 4) }, // partition number in partition table
1083 { "mmc_fs_type", V_LENGTH(4, 4) }, // ext2, ext3, vfat
1084 { "mmc_exec_mount", V_LENGTH(0, 64) },
1085 { "mmc_exec_umount", V_LENGTH(0, 64) },
1086 #endif
1088 // admin-tomatoanon
1089 { "tomatoanon_answer", V_RANGE(0, 1) },
1090 { "tomatoanon_enable", V_RANGE(-1, 1) },
1091 { "tomatoanon_id", V_LENGTH(0, 32) },
1092 { "tomatoanon_notify", V_01 },
1094 // nas-usb - !!TB
1095 #ifdef TCONFIG_USB
1096 { "usb_enable", V_01 },
1097 { "usb_uhci", V_RANGE(-1, 1) }, // -1 - disabled, 0 - off, 1 - on
1098 { "usb_ohci", V_RANGE(-1, 1) },
1099 { "usb_usb2", V_RANGE(-1, 1) },
1100 { "usb_irq_thresh", V_RANGE(0, 6) },
1101 { "usb_storage", V_01 },
1102 { "usb_printer", V_01 },
1103 { "usb_printer_bidirect", V_01 },
1104 { "usb_fs_ext3", V_01 },
1105 { "usb_fs_fat", V_01 },
1106 #ifdef TCONFIG_NTFS
1107 { "usb_fs_ntfs", V_01 },
1108 #endif
1109 #ifdef TCONFIG_HFS
1110 { "usb_fs_hfs", V_01 }, //!Victek
1111 #endif
1112 { "usb_automount", V_01 },
1113 { "script_usbhotplug", V_TEXT(0, 2048) },
1114 { "script_usbmount", V_TEXT(0, 2048) },
1115 { "script_usbumount", V_TEXT(0, 2048) },
1116 { "idle_enable", V_01 },
1117 { "usb_3g", V_01 },
1118 #endif
1120 // nas-ftp - !!TB
1121 #ifdef TCONFIG_FTP
1122 { "ftp_enable", V_RANGE(0, 2) },
1123 { "ftp_super", V_01 },
1124 { "ftp_anonymous", V_RANGE(0, 3) },
1125 { "ftp_dirlist", V_RANGE(0, 2) },
1126 { "ftp_port", V_PORT },
1127 { "ftp_max", V_RANGE(0, 12) },
1128 { "ftp_ipmax", V_RANGE(0, 12) },
1129 { "ftp_staytimeout", V_RANGE(0, 65535) },
1130 { "ftp_rate", V_RANGE(0, 99999) },
1131 { "ftp_anonrate", V_RANGE(0, 99999) },
1132 { "ftp_anonroot", V_LENGTH(0, 256) },
1133 { "ftp_pubroot", V_LENGTH(0, 256) },
1134 { "ftp_pvtroot", V_LENGTH(0, 256) },
1135 { "ftp_users", V_LENGTH(0, 4096) },
1136 { "ftp_custom", V_TEXT(0, 2048) },
1137 { "ftp_sip", V_LENGTH(0, 512) },
1138 { "ftp_limit", V_TEXT(1, 50) },
1139 { "log_ftp", V_01 },
1140 #endif
1142 #ifdef TCONFIG_SNMP
1143 { "snmp_enable", V_RANGE(0, 1) },
1144 { "snmp_port", V_RANGE(1, 65535) },
1145 { "snmp_remote", V_RANGE(0, 1) },
1146 { "snmp_remote_sip", V_LENGTH(0, 512) },
1147 { "snmp_location", V_LENGTH(0, 40) },
1148 { "snmp_contact", V_LENGTH(0, 40) },
1149 { "snmp_ro", V_LENGTH(0, 40) },
1150 #endif
1152 #ifdef TCONFIG_SAMBASRV
1153 // nas-samba - !!TB
1154 { "smbd_enable", V_RANGE(0, 2) },
1155 { "smbd_wgroup", V_LENGTH(0, 20) },
1156 { "smbd_master", V_01 },
1157 { "smbd_wins", V_01 },
1158 { "smbd_cpage", V_LENGTH(0, 4) },
1159 { "smbd_cset", V_LENGTH(0, 20) },
1160 { "smbd_custom", V_TEXT(0, 2048) },
1161 { "smbd_autoshare", V_RANGE(0, 3) },
1162 { "smbd_shares", V_LENGTH(0, 4096) },
1163 { "smbd_user", V_LENGTH(0, 50) },
1164 { "smbd_passwd", V_LENGTH(0, 50) },
1165 #endif
1167 #ifdef TCONFIG_MEDIA_SERVER
1168 // nas-media
1169 { "ms_enable", V_01 },
1170 { "ms_dirs", V_LENGTH(0, 1024) },
1171 { "ms_port", V_RANGE(0, 65535) },
1172 { "ms_dbdir", V_LENGTH(0, 256) },
1173 { "ms_tivo", V_01 },
1174 { "ms_stdlna", V_01 },
1175 { "ms_rescan", V_01 },
1176 { "ms_sas", V_01 },
1177 #endif
1179 // qos
1180 { "qos_enable", V_01 },
1181 { "qos_ack", V_01 },
1182 { "qos_syn", V_01 },
1183 { "qos_fin", V_01 },
1184 { "qos_rst", V_01 },
1185 { "qos_icmp", V_01 },
1186 { "qos_udp", V_01 },
1187 { "qos_reset", V_01 },
1188 { "qos_pfifo", V_01 }, // !!TB
1189 { "qos_obw", V_RANGE(10, 999999) },
1190 { "qos_ibw", V_RANGE(10, 999999) },
1191 { "qos_orules", V_LENGTH(0, 4096) },
1192 { "qos_default", V_RANGE(0, 9) },
1193 { "qos_irates", V_LENGTH(0, 128) },
1194 { "qos_orates", V_LENGTH(0, 128) },
1195 { "qos_classnames", V_LENGTH(10, 128) }, // !!TOASTMAN
1196 { "atm_overhead", V_RANGE(-127, 128) },
1197 { "ne_vegas", V_01 },
1198 { "ne_valpha", V_NUM },
1199 { "ne_vbeta", V_NUM },
1200 { "ne_vgamma", V_NUM },
1202 // new_qoslimit
1203 { "new_qoslimit_enable", V_01 },
1204 { "new_qoslimit_rules", V_LENGTH(0, 4096) },
1205 { "qosl_enable", V_01 },
1206 { "qosl_ulr", V_RANGE(0, 999999) },
1207 { "qosl_ulc", V_RANGE(0, 999999) },
1208 { "qosl_dlr", V_RANGE(0, 999999) },
1209 { "qosl_dlc", V_RANGE(0, 999999) },
1210 { "qosl_tcp", V_RANGE(0, 1000) },
1211 { "qosl_udp", V_RANGE(0, 100) },
1212 { "limit_br1_enable", V_01 },
1213 { "limit_br1_ulr", V_RANGE(0, 999999) },
1214 { "limit_br1_ulc", V_RANGE(0, 999999) },
1215 { "limit_br1_dlr", V_RANGE(0, 999999) },
1216 { "limit_br1_dlc", V_RANGE(0, 999999) },
1217 { "limit_br1_prio", V_RANGE(0, 5) },
1218 { "limit_br2_enable", V_01 },
1219 { "limit_br2_ulr", V_RANGE(0, 999999) },
1220 { "limit_br2_ulc", V_RANGE(0, 999999) },
1221 { "limit_br2_dlr", V_RANGE(0, 999999) },
1222 { "limit_br2_dlc", V_RANGE(0, 999999) },
1223 { "limit_br2_prio", V_RANGE(0, 5) },
1224 { "limit_br3_enable", V_01 },
1225 { "limit_br3_ulr", V_RANGE(0, 999999) },
1226 { "limit_br3_ulc", V_RANGE(0, 999999) },
1227 { "limit_br3_dlr", V_RANGE(0, 999999) },
1228 { "limit_br3_dlc", V_RANGE(0, 999999) },
1229 { "limit_br3_prio", V_RANGE(0, 5) },
1232 #ifdef TCONFIG_BT
1233 // nas-transmission
1234 { "bt_enable", V_01 },
1235 { "bt_binary", V_LENGTH(0, 50) },
1236 { "bt_binary_custom", V_LENGTH(0, 50) },
1237 { "bt_custom", V_TEXT(0, 2048) },
1238 { "bt_port", V_PORT },
1239 { "bt_dir", V_LENGTH(0, 50) },
1240 { "bt_settings", V_LENGTH(0, 50) },
1241 { "bt_settings_custom", V_LENGTH(0, 50) },
1242 { "bt_incomplete", V_01 },
1243 { "bt_rpc_enable", V_01 },
1244 { "bt_rpc_wan", V_01 },
1245 { "bt_auth", V_01 },
1246 { "bt_login", V_LENGTH(0, 50) },
1247 { "bt_password", V_LENGTH(0, 50) },
1248 { "bt_port_gui", V_PORT },
1249 { "bt_dl_enable", V_01 },
1250 { "bt_ul_enable", V_01 },
1251 { "bt_dl", V_RANGE(1, 999999) },
1252 { "bt_ul", V_RANGE(1, 999999) },
1253 { "bt_peer_limit_global", V_RANGE(10, 1000) },
1254 { "bt_peer_limit_per_torrent", V_RANGE(1, 200) },
1255 { "bt_ul_slot_per_torrent", V_RANGE(1, 50) },
1256 { "bt_ratio_enable", V_01 },
1257 { "bt_ratio", V_LENGTH(0, 999999) },
1258 { "bt_ratio_idle_enable", V_01 },
1259 { "bt_ratio_idle", V_RANGE(1, 55) },
1260 { "bt_dht", V_01 },
1261 { "bt_pex", V_01 },
1262 { "bt_lpd", V_01 },
1263 { "bt_utp", V_01 },
1264 { "bt_blocklist", V_01 },
1265 { "bt_blocklist_url", V_LENGTH(0, 80) },
1266 { "bt_sleep", V_RANGE(1, 60) },
1267 { "bt_check", V_01 },
1268 { "bt_check_time", V_RANGE(1, 55) },
1269 { "bt_dl_queue_enable", V_01 },
1270 { "bt_dl_queue_size", V_RANGE(1, 30) },
1271 { "bt_ul_queue_enable", V_01 },
1272 { "bt_ul_queue_size", V_RANGE(1, 30) },
1273 { "bt_message", V_RANGE(0, 3) },
1274 #endif
1276 #ifdef TCONFIG_NFS
1277 { "nfs_enable", V_01 },
1278 { "nfs_exports", V_LENGTH(0, 4096) },
1279 #endif
1281 //NotCatSplash. Victek.
1282 #ifdef TCONFIG_NOCAT
1283 { "NC_enable", V_01 },
1284 { "NC_Verbosity", V_RANGE(0, 10) },
1285 { "NC_GatewayName", V_LENGTH(0, 255) },
1286 { "NC_GatewayPort", V_PORT },
1287 { "NC_ForcedRedirect", V_01 },
1288 { "NC_HomePage", V_LENGTH(0, 255) },
1289 { "NC_DocumentRoot", V_LENGTH(0, 255) },
1290 { "NC_SplashURL", V_LENGTH(0, 255) },
1291 { "NC_LoginTimeout", V_RANGE(0, 86400000) },
1292 { "NC_IdleTimeout", V_RANGE(0, 86400000) },
1293 { "NC_MaxMissedARP", V_RANGE(0, 10) },
1294 { "NC_PeerChecktimeout", V_RANGE(0, 60) },
1295 { "NC_ExcludePorts", V_LENGTH(0, 255) },
1296 { "NC_IncludePorts", V_LENGTH(0, 255) },
1297 { "NC_AllowedWebHosts", V_LENGTH(0, 255) },
1298 { "NC_MACWhiteList", V_LENGTH(0, 255) },
1299 { "NC_SplashFile", V_LENGTH(0, 8192) },
1300 { "NC_BridgeLAN", V_LENGTH(0, 50) },
1301 #endif
1303 // NGinX Roadkill-Victek
1304 #ifdef TCONFIG_NGINX
1305 {"nginx_enable", V_01 }, // NGinX enabled
1306 {"nginx_php", V_01 }, // PHP enabled
1307 {"nginx_keepconf", V_01 }, // NGinX configuration files overwrite flag
1308 {"nginx_docroot", V_LENGTH(0, 255) }, // root files path
1309 {"nginx_port", V_PORT }, // listening port
1310 {"nginx_fqdn", V_LENGTH(0, 255) }, // server name
1311 {"nginx_upload", V_LENGTH(1, 1000) }, // upload file size limit
1312 {"nginx_remote", V_01 },
1313 {"nginx_priority", V_LENGTH(0, 255) }, // server priority
1314 {"nginx_custom", V_TEXT(0, 4096) }, // user window to add parameters to nginx.conf
1315 {"nginx_httpcustom", V_TEXT(0, 4096) }, // user window to add parameters to nginx.conf
1316 {"nginx_servercustom", V_TEXT(0, 4096) }, // user window to add parameters to nginx.conf
1317 {"nginx_phpconf", V_TEXT(0, 4096) }, // user window to add parameters to php.ini
1318 {"nginx_user", V_LENGTH(0, 255) }, // user used to start nginx and spawn-fcgi
1319 {"nginx_override", V_01 },
1320 {"nginx_overridefile", V_TEXT(0, 4096) },
1321 #endif
1323 #ifdef TCONFIG_OPENVPN
1324 // vpn
1325 { "vpn_debug", V_01 },
1326 { "vpn_server_eas", V_NONE },
1327 { "vpn_server_dns", V_NONE },
1328 { "vpn_server1_poll", V_RANGE(0, 1440) },
1329 { "vpn_server1_if", V_TEXT(3, 3) }, // tap, tun
1330 { "vpn_server1_proto", V_TEXT(3, 10) }, // udp, tcp-server
1331 { "vpn_server1_port", V_PORT },
1332 { "vpn_server1_firewall", V_TEXT(0, 8) }, // auto, external, custom
1333 { "vpn_server1_crypt", V_TEXT(0, 6) }, // tls, secret, custom
1334 { "vpn_server1_comp", V_TEXT(0, 8) }, // yes, no, adaptive
1335 { "vpn_server1_cipher", V_TEXT(0, 16) },
1336 { "vpn_server1_dhcp", V_01 },
1337 { "vpn_server1_r1", V_IP },
1338 { "vpn_server1_r2", V_IP },
1339 { "vpn_server1_sn", V_IP },
1340 { "vpn_server1_nm", V_IP },
1341 { "vpn_server1_local", V_IP },
1342 { "vpn_server1_remote", V_IP },
1343 { "vpn_server1_reneg", V_RANGE(-1,2147483647)},
1344 { "vpn_server1_hmac", V_RANGE(-1, 2) },
1345 { "vpn_server1_plan", V_01 },
1346 { "vpn_server1_ccd", V_01 },
1347 { "vpn_server1_c2c", V_01 },
1348 { "vpn_server1_ccd_excl", V_01 },
1349 { "vpn_server1_ccd_val", V_NONE },
1350 { "vpn_server1_pdns", V_01 },
1351 { "vpn_server1_rgw", V_01 },
1352 { "vpn_server1_userpass", V_01 },
1353 { "vpn_server1_nocert", V_01 },
1354 { "vpn_server1_users_val",V_NONE },
1355 { "vpn_server1_custom", V_NONE },
1356 { "vpn_server1_static", V_NONE },
1357 { "vpn_server1_ca", V_NONE },
1358 { "vpn_server1_crt", V_NONE },
1359 { "vpn_server1_key", V_NONE },
1360 { "vpn_server1_dh", V_NONE },
1361 { "vpn_server2_poll", V_RANGE(0, 1440) },
1362 { "vpn_server2_if", V_TEXT(3, 3) }, // tap, tun
1363 { "vpn_server2_proto", V_TEXT(3, 10) }, // udp, tcp-server
1364 { "vpn_server2_port", V_PORT },
1365 { "vpn_server2_firewall", V_TEXT(0, 8) }, // auto, external, custom
1366 { "vpn_server2_crypt", V_TEXT(0, 6) }, // tls, secret, custom
1367 { "vpn_server2_comp", V_TEXT(0, 8) }, // yes, no, adaptive
1368 { "vpn_server2_cipher", V_TEXT(0, 16) },
1369 { "vpn_server2_dhcp", V_01 },
1370 { "vpn_server2_r1", V_IP },
1371 { "vpn_server2_r2", V_IP },
1372 { "vpn_server2_sn", V_IP },
1373 { "vpn_server2_nm", V_IP },
1374 { "vpn_server2_local", V_IP },
1375 { "vpn_server2_remote", V_IP },
1376 { "vpn_server2_reneg", V_RANGE(-1,2147483647)},
1377 { "vpn_server2_hmac", V_RANGE(-1, 2) },
1378 { "vpn_server2_plan", V_01 },
1379 { "vpn_server2_pdns", V_01 },
1380 { "vpn_server2_rgw", V_01 },
1381 { "vpn_server2_userpass", V_01 },
1382 { "vpn_server2_nocert", V_01 },
1383 { "vpn_server2_users_val",V_NONE },
1384 { "vpn_server2_custom", V_NONE },
1385 { "vpn_server2_ccd", V_01 },
1386 { "vpn_server2_c2c", V_01 },
1387 { "vpn_server2_ccd_excl", V_01 },
1388 { "vpn_server2_ccd_val", V_NONE },
1389 { "vpn_server2_static", V_NONE },
1390 { "vpn_server2_ca", V_NONE },
1391 { "vpn_server2_crt", V_NONE },
1392 { "vpn_server2_key", V_NONE },
1393 { "vpn_server2_dh", V_NONE },
1394 { "vpn_client_eas", V_NONE },
1395 { "vpn_client1_poll", V_RANGE(0, 1440) },
1396 { "vpn_client1_if", V_TEXT(3, 3) }, // tap, tun
1397 { "vpn_client1_bridge", V_01 },
1398 { "vpn_client1_nat", V_01 },
1399 { "vpn_client1_proto", V_TEXT(3, 10) }, // udp, tcp-server
1400 { "vpn_client1_addr", V_NONE },
1401 { "vpn_client1_port", V_PORT },
1402 { "vpn_client1_retry", V_RANGE(-1,32767) }, // -1 infinite, 0 disabled, >= 1 custom
1403 { "vpn_client1_firewall", V_TEXT(0, 6) }, // auto, custom
1404 { "vpn_client1_crypt", V_TEXT(0, 6) }, // tls, secret, custom
1405 { "vpn_client1_comp", V_TEXT(0, 8) }, // yes, no, adaptive
1406 { "vpn_client1_cipher", V_TEXT(0, 16) },
1407 { "vpn_client1_local", V_IP },
1408 { "vpn_client1_remote", V_IP },
1409 { "vpn_client1_nm", V_IP },
1410 { "vpn_client1_reneg", V_RANGE(-1,2147483647)},
1411 { "vpn_client1_hmac", V_RANGE(-1, 2) },
1412 { "vpn_client1_adns", V_RANGE(0, 3) },
1413 { "vpn_client1_rgw", V_01 },
1414 { "vpn_client1_gw", V_TEXT(0, 15) },
1415 { "vpn_client1_custom", V_NONE },
1416 { "vpn_client1_static", V_NONE },
1417 { "vpn_client1_ca", V_NONE },
1418 { "vpn_client1_crt", V_NONE },
1419 { "vpn_client1_key", V_NONE },
1420 { "vpn_client1_userauth", V_01 },
1421 { "vpn_client1_username", V_TEXT(0,50) },
1422 { "vpn_client1_password", V_TEXT(0,50) },
1423 { "vpn_client1_useronly", V_01 },
1424 { "vpn_client1_tlsremote",V_01 },
1425 { "vpn_client1_cn", V_NONE },
1426 { "vpn_client2_poll", V_RANGE(0, 1440) },
1427 { "vpn_client2_if", V_TEXT(3, 3) }, // tap, tun
1428 { "vpn_client2_bridge", V_01 },
1429 { "vpn_client2_nat", V_01 },
1430 { "vpn_client2_proto", V_TEXT(3, 10) }, // udp, tcp-server
1431 { "vpn_client2_addr", V_NONE },
1432 { "vpn_client2_port", V_PORT },
1433 { "vpn_client2_retry", V_RANGE(-1,32767) }, // -1 infinite, 0 disabled, >= 1 custom
1434 { "vpn_client2_firewall", V_TEXT(0, 6) }, // auto, custom
1435 { "vpn_client2_crypt", V_TEXT(0, 6) }, // tls, secret, custom
1436 { "vpn_client2_comp", V_TEXT(0, 8) }, // yes, no, adaptive
1437 { "vpn_client2_cipher", V_TEXT(0, 16) },
1438 { "vpn_client2_local", V_IP },
1439 { "vpn_client2_remote", V_IP },
1440 { "vpn_client2_nm", V_IP },
1441 { "vpn_client2_reneg", V_RANGE(-1,2147483647)},
1442 { "vpn_client2_hmac", V_RANGE(-1, 2) },
1443 { "vpn_client2_adns", V_RANGE(0, 3) },
1444 { "vpn_client2_rgw", V_01 },
1445 { "vpn_client2_gw", V_TEXT(0, 15) },
1446 { "vpn_client2_custom", V_NONE },
1447 { "vpn_client2_static", V_NONE },
1448 { "vpn_client2_ca", V_NONE },
1449 { "vpn_client2_crt", V_NONE },
1450 { "vpn_client2_key", V_NONE },
1451 { "vpn_client2_userauth", V_01 },
1452 { "vpn_client2_username", V_TEXT(0,50) },
1453 { "vpn_client2_password", V_TEXT(0,50) },
1454 { "vpn_client2_useronly", V_01 },
1455 { "vpn_client2_tlsremote",V_01 },
1456 { "vpn_client2_cn", V_NONE },
1457 #endif // vpn
1459 #ifdef TCONFIG_PPTPD
1460 // pptp server
1461 { "pptpd_enable", V_01 },
1462 { "pptpd_remoteip", V_TEXT(0,24) },
1463 { "pptpd_forcemppe", V_01 },
1464 { "pptpd_users", V_TEXT(0, 67*16) },
1465 { "pptpd_broadcast", V_TEXT(0,8) },
1466 { "pptpd_dns1", V_TEXT(0, 15) },
1467 { "pptpd_dns2", V_TEXT(0, 15) },
1468 { "pptpd_wins1", V_TEXT(0, 15) },
1469 { "pptpd_wins2", V_TEXT(0, 15) },
1470 { "pptpd_mtu", V_RANGE(576, 1500) },
1471 { "pptpd_mru", V_RANGE(576, 1500) },
1472 { "pptpd_custom", V_TEXT(0, 2048) },
1473 #endif
1475 #ifdef TCONFIG_TINC
1476 {"tinc_wanup", V_RANGE(0, 1) },
1477 {"tinc_name", V_LENGTH(0, 30) },
1478 {"tinc_devicetype", V_TEXT(3, 3) }, // tun, tap
1479 {"tinc_mode", V_TEXT(3, 6) }, // switch, hub
1480 {"tinc_vpn_netmask", V_IP },
1481 {"tinc_private_rsa", V_LENGTH(0, 1700) },
1482 {"tinc_private_ecdsa", V_LENGTH(0, 280) },
1483 {"tinc_custom", V_NONE },
1484 {"tinc_hosts", V_NONE },
1485 {"tinc_manual_firewall", V_RANGE(0, 1) },
1486 {"tinc_manual_tinc_up", V_RANGE(0, 1) },
1487 // scripts
1488 {"tinc_tinc_up", V_NONE },
1489 {"tinc_tinc_down", V_NONE },
1490 {"tinc_host_up", V_NONE },
1491 {"tinc_host_down", V_NONE },
1492 {"tinc_subnet_up", V_NONE },
1493 {"tinc_subnet_down", V_NONE },
1494 #endif
1496 #ifdef TCONFIG_TOR
1497 { "tor_enable", V_01 },
1498 { "tor_socksport", V_RANGE(1,65535) },
1499 { "tor_transport", V_RANGE(1,65535) },
1500 { "tor_dnsport", V_RANGE(1,65535) },
1501 { "tor_datadir", V_TEXT(0,24) },
1502 { "tor_iface", V_LENGTH(0, 50) },
1503 { "tor_users", V_LENGTH(0, 4096) },
1504 { "tor_custom", V_TEXT(0, 2048) },
1505 #endif
1508 ppp_static 0/1
1509 ppp_static_ip IP
1510 wl_enable 0/1
1511 wl_wds_timeout
1512 wl_maxassoc 1-256
1513 wl_phytype a,b,g
1514 wl_net_reauth
1515 wl_preauth
1516 wl_wme_ap_bk
1517 wl_wme_ap_be
1518 wl_wme_ap_vi
1519 wl_wme_ap_vo
1520 wl_wme_sta_bk
1521 wl_wme_sta_be
1522 wl_wme_sta_vi
1523 wl_wme_sta_vo
1525 port_priority_1 0-2
1526 port_flow_control_1 0,1
1527 port_rate_limit_1 0-8
1528 port_priority_2 0-2
1529 port_flow_control_2 0,1
1530 port_rate_limit_2 0-8
1531 port_priority_3 0-2
1532 port_flow_control_3 0,1
1533 port_rate_limit_3 0-8
1534 port_priority_4 0-2
1535 port_flow_control_4 0,1
1536 port_rate_limit_4 0-8
1537 wl_ap_ip
1538 wl_ap_ssid
1540 #ifdef TCONFIG_PPTPD
1541 { "pptp_client_enable", V_01 },
1542 { "pptp_client_peerdns", V_RANGE(0,2) },
1543 { "pptp_client_mtuenable",V_01 },
1544 { "pptp_client_mtu", V_RANGE(576, 1500) },
1545 { "pptp_client_mruenable",V_01 },
1546 { "pptp_client_mru", V_RANGE(576, 1500) },
1547 { "pptp_client_nat", V_01 },
1548 { "pptp_client_srvip", V_NONE },
1549 { "pptp_client_srvsub", V_IP },
1550 { "pptp_client_srvsubmsk",V_IP },
1551 { "pptp_client_username", V_TEXT(0,50) },
1552 { "pptp_client_passwd", V_TEXT(0,50) },
1553 { "pptp_client_crypt", V_RANGE(0, 3) },
1554 { "pptp_client_custom", V_NONE },
1555 { "pptp_client_dfltroute",V_01 },
1556 { "pptp_client_stateless",V_01 },
1557 #endif
1559 { NULL }
1563 static int webcgi_nvram_set(const nvset_t *v, const char *name, int write)
1565 char *p, *e;
1566 int n;
1567 long l;
1568 unsigned u[6];
1569 int ok;
1570 int dirty;
1571 #ifdef TCONFIG_IPV6
1572 struct in6_addr addr;
1573 #endif
1575 if ((p = webcgi_get((char*)name)) == NULL) return 0;
1577 _dprintf("[%s] %s=%s\n", v->name, (char*)name, p);
1578 dirty = 0;
1579 ok = 1;
1580 switch (v->vtype) {
1581 case VT_TEXT:
1582 p = unix_string(p); // NOTE: p = malloc'd
1583 // drop
1584 case VT_LENGTH:
1585 n = strlen(p);
1586 if ((n < v->va.i) || (n > v->vb.i)) ok = 0;
1587 break;
1588 case VT_RANGE:
1589 l = strtol(p, &e, 10);
1590 if ((p == e) || (*e) || (l < v->va.l) || (l > v->vb.l)) ok = 0;
1591 break;
1592 case VT_IP:
1593 if ((sscanf(p, "%3u.%3u.%3u.%3u", &u[0], &u[1], &u[2], &u[3]) != 4) ||
1594 (u[0] > 255) || (u[1] > 255) || (u[2] > 255) || (u[3] > 255)) ok = 0;
1595 break;
1596 case VT_MAC:
1597 if ((sscanf(p, "%2x:%2x:%2x:%2x:%2x:%2x", &u[0], &u[1], &u[2], &u[3], &u[4], &u[5]) != 6) ||
1598 (u[0] > 255) || (u[1] > 255) || (u[2] > 255) || (u[3] > 255) || (u[4] > 255) || (u[5] > 255)) ok = 0;
1599 break;
1600 #ifdef TCONFIG_IPV6
1601 case VT_IPV6:
1602 if (strlen(p) > 0 || v->va.i) {
1603 if (inet_pton(AF_INET6, p, &addr) != 1) ok = 0;
1605 break;
1606 #endif
1607 default:
1608 // shutup gcc
1609 break;
1611 if (!ok) {
1612 if (v->vtype == VT_TEXT) free(p);
1613 return -1;
1615 if (write) {
1616 if (!nvram_match((char *)name, p)) {
1617 if (v->vtype != VT_TEMP) dirty = 1;
1618 DEBUG_NVRAMSET(name, p);
1619 nvram_set(name, p);
1622 if (v->vtype == VT_TEXT) free(p);
1624 return dirty;
1627 typedef struct {
1628 const nvset_t *v;
1629 int write;
1630 int dirty;
1631 } nv_list_t;
1633 static int nv_wl_find(int idx, int unit, int subunit, void *param)
1635 nv_list_t *p = param;
1637 int ok = webcgi_nvram_set(p->v, wl_nvname(p->v->name + 3, unit, subunit), p->write);
1638 if (ok < 0)
1639 return 1;
1640 else {
1641 p->dirty |= ok;
1642 return 0;
1646 static int save_variables(int write)
1648 const nvset_t *v;
1649 char *p;
1650 int n;
1651 int ok;
1652 char s[256];
1653 int dirty;
1654 static const char *msgf = "The field \"%s\" is invalid. Please report this problem.";
1655 nv_list_t nv;
1657 dirty = 0;
1658 nv.write = write;
1659 for (v = nvset_list; v->name; ++v) {
1660 ok = webcgi_nvram_set(v, v->name, write);
1662 if ((ok >= 0) && (strncmp(v->name, "wl_", 3) == 0)) {
1663 nv.dirty = dirty;
1664 nv.v = v;
1665 if (foreach_wif(1, &nv, nv_wl_find) == 0)
1666 ok |= nv.dirty;
1667 else
1668 ok = -1;
1671 if (ok < 0) {
1672 sprintf(s, msgf, v->name);
1673 resmsg_set(s);
1674 return 0;
1676 dirty |= ok;
1679 // special cases
1681 char *p1, *p2;
1682 if (((p1 = webcgi_get("set_password_1")) != NULL) && (strcmp(p1, "**********") != 0)) {
1683 if (((p2 = webcgi_get("set_password_2")) != NULL) && (strcmp(p1, p2) == 0)) {
1684 if ((write) && (!nvram_match("http_passwd", p1))) {
1685 dirty = 1;
1686 nvram_set("http_passwd", p1);
1689 else {
1690 sprintf(s, msgf, "password");
1691 resmsg_set(s);
1692 return 0;
1696 for (n = 0; n < 50; ++n) {
1697 sprintf(s, "rrule%d", n);
1698 if ((p = webcgi_get(s)) != NULL) {
1699 if (strlen(p) > 2048) {
1700 sprintf(s, msgf, s);
1701 resmsg_set(s);
1702 return 0;
1704 if ((write) && (!nvram_match(s, p))) {
1705 dirty = 1;
1706 DEBUG_NVRAMSET(s, p);
1707 nvram_set(s, p);
1712 return (write) ? dirty : 1;
1715 static void wo_tomato(char *url)
1717 char *v;
1718 int i;
1719 int ajax;
1720 int nvset;
1721 const char *red;
1722 int commit;
1723 int force_commit;
1725 // _dprintf("tomato.cgi\n");
1727 red = webcgi_safeget("_redirect", "");
1728 if (!*red) send_header(200, NULL, mime_html, 0);
1730 commit = atoi(webcgi_safeget("_commit", "1"));
1731 force_commit = atoi(webcgi_safeget("_force_commit", "0"));
1732 ajax = atoi(webcgi_safeget("_ajax", "0"));
1734 nvset = atoi(webcgi_safeget("_nvset", "1"));
1735 if (nvset) {
1736 if (!save_variables(0)) {
1737 if (ajax) {
1738 web_printf("@msg:%s", resmsg_get());
1740 else {
1741 parse_asp("error.asp");
1743 return;
1745 commit = save_variables(1) && commit;
1747 resmsg_set("Settings saved.");
1750 rboot = atoi(webcgi_safeget("_reboot", "0"));
1751 if (rboot) {
1752 parse_asp("reboot.asp");
1754 else {
1755 if (ajax) {
1756 web_printf("@msg:%s", resmsg_get());
1758 else if (atoi(webcgi_safeget("_moveip", "0"))) {
1759 parse_asp("saved-moved.asp");
1761 else if (!*red) {
1762 parse_asp("saved.asp");
1766 if (commit || force_commit) {
1767 _dprintf("commit from tomato.cgi\n");
1768 nvram_commit_x();
1771 if ((v = webcgi_get("_service")) != NULL && *v != 0) {
1772 if (!*red) {
1773 if (ajax) web_printf(" Some services are being restarted...");
1774 web_close();
1776 sleep(1);
1778 if (*v == '*') {
1779 kill(1, SIGHUP);
1781 else {
1782 exec_service(v);
1786 for (i = atoi(webcgi_safeget("_sleep", "0")); i > 0; --i) sleep(1);
1788 if (*red) redirect(red);
1790 if (rboot) {
1791 web_close();
1792 sleep(1);
1793 kill(1, SIGTERM);
1798 // ----------------------------------------------------------------------------
1801 static void wo_update(char *url)
1803 const aspapi_t *api;
1804 const char *name;
1805 int argc;
1806 char *argv[16];
1807 char s[32];
1809 if ((name = webcgi_get("exec")) != NULL) {
1810 for (api = aspapi; api->name; ++api) {
1811 if (strcmp(api->name, name) == 0) {
1812 for (argc = 0; argc < 16; ++argc) {
1813 sprintf(s, "arg%d", argc);
1814 if ((argv[argc] = (char *)webcgi_get(s)) == NULL) break;
1816 api->exec(argc, argv);
1817 break;
1823 static void wo_service(char *url)
1825 int n;
1827 exec_service(webcgi_safeget("_service", ""));
1829 if ((n = atoi(webcgi_safeget("_sleep", "2"))) <= 0) n = 2;
1830 sleep(n);
1832 common_redirect();
1835 static void wo_shutdown(char *url)
1837 parse_asp("shutdown.asp");
1838 web_close();
1839 sleep(1);
1841 kill(1, SIGQUIT);
1844 static void wo_nvcommit(char *url)
1846 parse_asp("saved.asp");
1847 web_close();
1848 nvram_commit();