3 Copyright 2005, Broadcom Corporation
6 THIS SOFTWARE IS OFFERED "AS IS", AND BROADCOM GRANTS NO WARRANTIES OF ANY
7 KIND, EXPRESS OR IMPLIED, BY STATUTE, COMMUNICATION OR OTHERWISE. BROADCOM
8 SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS
9 FOR A SPECIFIC PURPOSE OR NONINFRINGEMENT CONCERNING THIS SOFTWARE.
17 #include <sys/ioctl.h>
18 #include <sys/mount.h>
23 #include <sys/reboot.h>
26 #include <sys/types.h>
28 #include <sys/sysinfo.h>
33 #define SHELL "/bin/sh"
35 static int fatalsigs
[] = {
46 static int initsigs
[] = {
56 static char *defenv
[] = {
59 "PATH=/usr/bin:/bin:/usr/sbin:/sbin",
65 /* Set terminal settings to reasonable defaults */
66 static void set_term(int fd
)
72 /* set control chars */
73 tty
.c_cc
[VINTR
] = 3; /* C-c */
74 tty
.c_cc
[VQUIT
] = 28; /* C-\ */
75 tty
.c_cc
[VERASE
] = 127; /* C-? */
76 tty
.c_cc
[VKILL
] = 21; /* C-u */
77 tty
.c_cc
[VEOF
] = 4; /* C-d */
78 tty
.c_cc
[VSTART
] = 17; /* C-q */
79 tty
.c_cc
[VSTOP
] = 19; /* C-s */
80 tty
.c_cc
[VSUSP
] = 26; /* C-z */
82 /* use line dicipline 0 */
86 tty
.c_cflag
&= CBAUD
|CBAUDEX
|CSIZE
|CSTOPB
|PARENB
|PARODD
;
87 tty
.c_cflag
|= CREAD
|HUPCL
|CLOCAL
;
91 tty
.c_iflag
= ICRNL
| IXON
| IXOFF
;
94 tty
.c_oflag
= OPOST
| ONLCR
;
98 ISIG
| ICANON
| ECHO
| ECHOE
| ECHOK
| ECHOCTL
| ECHOKE
| IEXTEN
;
100 tcsetattr(fd
, TCSANOW
, &tty
);
103 static int console_init(void)
108 ioctl(0, TIOCNOTTY
, 0);
115 if ((fd
= open(_PATH_CONSOLE
, O_RDWR
)) < 0) {
116 /* Avoid debug messages is redirected to socket packet if no exist a UART chip, added by honor, 2003-12-04 */
117 open("/dev/null", O_RDONLY
);
118 open("/dev/null", O_WRONLY
);
119 open("/dev/null", O_WRONLY
);
120 perror(_PATH_CONSOLE
);
127 ioctl(0, TIOCSCTTY
, 1);
128 tcsetpgrp(0, getpgrp());
135 * Waits for a file descriptor to change status or unblocked signal
136 * @param fd file descriptor
137 * @param timeout seconds to wait before timing out or 0 for no timeout
138 * @return 1 if descriptor changed status or 0 if timed out or -1 on error
140 static int waitfor(int fd
, int timeout
)
143 struct timeval tv
= { timeout
, 0 };
147 return select(fd
+ 1, &rfds
, NULL
, NULL
, (timeout
> 0) ? &tv
: NULL
);
150 static pid_t
run_shell(int timeout
, int nowait
)
155 /* Wait for user input */
156 if (waitfor(STDIN_FILENO
, timeout
) <= 0) return 0;
158 switch (pid
= fork()) {
163 /* Reset signal handlers set for parent process */
164 for (sig
= 0; sig
< (_NSIG
-1); sig
++)
165 signal(sig
, SIG_DFL
);
169 printf("\n\nTomato %s\n\n", tomato_version
);
171 /* Now run it. The new program will take over this PID,
172 * so nothing further in init.c should be run. */
173 execve(SHELL
, (char *[]) { SHELL
, NULL
}, defenv
);
175 /* We're still here? Some error happened. */
183 waitpid(pid
, NULL
, 0);
189 int console_main(int argc
, char *argv
[])
191 for (;;) run_shell(0, 0);
196 static void shutdn(int rb
)
202 _dprintf("shutdn rb=%d\n", rb
);
205 for (i
= 0; i
< sizeof(fatalsigs
) / sizeof(fatalsigs
[0]); i
++)
206 sigaddset(&ss
, fatalsigs
[i
]);
207 for (i
= 0; i
< sizeof(initsigs
) / sizeof(initsigs
[0]); i
++)
208 sigaddset(&ss
, initsigs
[i
]);
209 sigprocmask(SIG_BLOCK
, &ss
, NULL
);
211 for (i
= 30; i
> 0; --i
) {
212 if (((act
= check_action()) == ACT_IDLE
) || (act
== ACT_REBOOT
)) break;
213 _dprintf("Busy with %d. Waiting before shutdown... %d\n", act
, i
);
216 set_action(ACT_REBOOT
);
218 // Disconnect pppd - need this for PPTP/L2TP to finish gracefully
232 umount("/jffs"); // may hang if not
238 for (i
= 4; i
> 0; --i
) {
249 reboot(rb
? RB_AUTOBOOT
: RB_HALT_SYSTEM
);
256 static void handle_fatalsigs(int sig
)
258 _dprintf("fatal sig=%d\n", sig
);
262 /* Fixed the race condition & incorrect code by using sigwait()
263 * instead of pause(). But SIGCHLD is a problem, since other
264 * code: 1) messes with it and 2) depends on CHLD being caught so
265 * that the pid gets immediately reaped instead of left a zombie.
266 * Pidof still shows the pid, even though it's in zombie state.
267 * So this SIGCHLD handler reaps and then signals the mainline by
270 static void handle_reap(int sig
)
276 static int check_nv(const char *name
, const char *value
)
279 if (!nvram_match("manual_boot_nv", "1")) {
280 if (((p
= nvram_get(name
)) == NULL
) || (strcmp(p
, value
) != 0)) {
281 _dprintf("Error: Critical variable %s is invalid. Resetting.\n", name
);
282 nvram_set(name
, value
);
289 static inline int invalid_mac(const char *mac
)
291 return (!mac
|| !(*mac
) || strncasecmp(mac
, "00:90:4c", 8) == 0);
294 static int find_sercom_mac_addr(void)
297 unsigned char m
[6], s
[18];
299 sprintf(s
, MTD_DEV(%dro
), 0);
300 if ((fp
= fopen(s
, "rb"))) {
301 fseek(fp
, 0x1ffa0, SEEK_SET
);
302 fread(m
, sizeof(m
), 1, fp
);
304 sprintf(s
, "%02X:%02X:%02X:%02X:%02X:%02X",
305 m
[0], m
[1], m
[2], m
[3], m
[4], m
[5]);
306 nvram_set("et0macaddr", s
);
307 return !invalid_mac(s
);
312 static int find_dir320_mac_addr(void)
316 int i
, part
, size
, found
= 0;
318 if (!mtd_getinfo("board_data", &part
, &size
))
320 sprintf(s
, MTD_DEV(%dro
), part
);
322 if ((fp
= fopen(s
, "rb"))) {
323 buffer
= malloc(size
);
324 memset(buffer
, 0, size
);
325 fread(buffer
, size
, 1, fp
);
326 if (!memcmp(buffer
, "RGCFG1", 6)) {
327 for (i
= 6; i
< size
- 24; i
++) {
328 if (!memcmp(buffer
+ i
, "lanmac=", 7)) {
329 memcpy(s
, buffer
+ i
+ 7, 17);
331 nvram_set("et0macaddr", s
);
334 else if (!memcmp(buffer
+ i
, "wanmac=", 7)) {
335 memcpy(s
, buffer
+ i
+ 7, 17);
337 nvram_set("il0macaddr", s
);
340 nvram_set("et0macaddr", s
);
351 strcpy(s
, nvram_safe_get("wl0_hwaddr"));
353 nvram_set("et0macaddr", s
);
358 static int init_vlan_ports(void)
361 int model
= get_model();
365 switch (check_hw_type()) {
366 case HW_BCM5352E
: // G v4, GS v3, v4
367 dirty
|= check_nv("vlan0ports", "3 2 1 0 5*");
372 dirty
|= check_nv("vlan0ports", "0 5*");
373 dirty
|= check_nv("vlan1ports", "1 5");
374 dirty
|= check_nv("vlan_enable", "1");
378 case MODEL_WL500GPv2
:
381 if (nvram_match("vlan1ports", "0 5u")) // 520GU or 330GE or WL500GE?
382 dirty
|= check_nv("vlan1ports", "0 5");
383 else if (nvram_match("vlan1ports", "4 5u"))
384 dirty
|= check_nv("vlan1ports", "4 5");
387 dirty
|= check_nv("vlan0ports", "1 2 3 4 5*");
388 dirty
|= check_nv("vlan1ports", "0 5");
392 dirty
|= (nvram_get("vlan2ports") != NULL
);
393 nvram_unset("vlan2ports");
394 dirty
|= check_nv("vlan1ports", "0 5");
396 case MODEL_WRT310Nv1
:
397 dirty
|= check_nv("vlan1ports", "1 2 3 4 8*");
398 dirty
|= check_nv("vlan2ports", "0 8");
401 dirty
|= check_nv("vlan0ports", "0 1 2 3 5*");
402 dirty
|= check_nv("vlan1ports", "4 5");
408 dirty
|= check_nv("vlan1ports", "4 3 2 1 8*");
409 dirty
|= check_nv("vlan2ports", "0 8");
411 case MODEL_WNR2000v2
:
412 dirty
|= check_nv("vlan0ports", "4 3 2 1 5*");
413 dirty
|= check_nv("vlan1ports", "0 5");
416 dirty
|= check_nv("vlan1ports", "4 5");
419 dirty
|= check_nv("vlan0ports", "3 2 1 0 5*");
420 dirty
|= check_nv("vlan1ports", "4 5");
422 case MODEL_WRT610Nv2
:
423 case MODEL_F5D8235v3
:
424 dirty
|= check_nv("vlan1ports", "1 2 3 4 8*");
425 dirty
|= check_nv("vlan2ports", "0 8");
429 dirty
|= check_nv("vlan1ports", "3 2 1 0 8*");
430 dirty
|= check_nv("vlan2ports", "4 8");
434 dirty
|= check_nv("vlan1ports", "0 1 2 3 5*");
435 dirty
|= check_nv("vlan2ports", "4 5");
438 dirty
|= check_nv("vlan1ports", "0 1 2 3 8*");
439 dirty
|= check_nv("vlan2ports", "4 8");
441 case MODEL_WRT160Nv3
:
442 if (nvram_match("vlan1ports", "1 2 3 4 5*")) {
443 // fix lan port numbering on CSE41, CSE51
444 dirty
|= check_nv("vlan1ports", "4 3 2 1 5*");
446 else if (nvram_match("vlan1ports", "1 2 3 4 8*")) {
448 dirty
|= check_nv("vlan1ports", "4 3 2 1 8*");
457 static void check_bootnv(void)
465 dirty
= check_nv("wl0_leddc", "0x640000") | check_nv("wl1_leddc", "0x640000");
469 dirty
|= check_nv("vlan0hwname", "et0");
470 dirty
|= check_nv("vlan1hwname", "et0");
473 dirty
|= check_nv("wl0gpio0", "130");
477 // need to cleanup some variables...
478 if ((nvram_get("t_model") == NULL
) && (nvram_get("MyFirmwareVersion") != NULL
)) {
479 nvram_unset("MyFirmwareVersion");
480 nvram_set("restore_defaults", "1");
484 dirty
|= check_nv("wl0gpio1", "0x02");
487 /* fix WL500W mac adresses for WAN port */
488 if (invalid_mac(nvram_get("et1macaddr"))) {
489 strcpy(mac
, nvram_safe_get("et0macaddr"));
491 dirty
|= check_nv("et1macaddr", mac
);
493 dirty
|= check_nv("wl0gpio0", "0x88");
496 dirty
|= check_nv("sdram_init", "0x0009"); // 32MB; defaults: 0x000b, 0x0009
497 dirty
|= check_nv("wl0gpio0", "136");
499 case MODEL_WL500GPv2
:
501 dirty
|= check_nv("wl0gpio1", "136");
504 dirty
|= check_nv("vlan0hwname", "et0");
505 dirty
|= check_nv("vlan1hwname", "et0");
506 dirty
|= check_nv("boardflags", "0x00000100"); // set BFL_ENETVLAN
507 nvram_unset("wl0gpio0");
510 if (strlen(nvram_safe_get("et0macaddr")) == 12 ||
511 strlen(nvram_safe_get("il0macaddr")) == 12) {
512 dirty
|= find_dir320_mac_addr();
514 if (nvram_get("vlan2hwname") != NULL
) {
515 nvram_unset("vlan2hwname");
518 dirty
|= check_nv("wandevs", "vlan1");
519 dirty
|= check_nv("vlan1hwname", "et0");
520 dirty
|= check_nv("wl0gpio0", "8");
521 dirty
|= check_nv("wl0gpio1", "0");
522 dirty
|= check_nv("wl0gpio2", "0");
523 dirty
|= check_nv("wl0gpio3", "0");
525 if (invalid_mac(nvram_get("et0macaddr"))) {
526 dirty
|= find_sercom_mac_addr();
529 case MODEL_WRT160Nv1
:
530 case MODEL_WRT310Nv1
:
532 dirty
|= check_nv("wl0gpio0", "8");
536 dirty
|= check_nv("boardflags", "0x00000710"); // needed to enable USB
537 dirty
|= check_nv("vlan2hwname", "et0");
538 dirty
|= check_nv("ledbh0", "7");
540 case MODEL_WNR2000v2
:
541 dirty
|= check_nv("ledbh5", "8");
544 dirty
|= check_nv("reset_gpio", "5");
545 dirty
|= check_nv("ledbh0", "136");
546 dirty
|= check_nv("ledbh1", "11");
547 /* fall through, same as RT-N16 */
549 dirty
|= check_nv("vlan2hwname", "et0");
551 case MODEL_WRT610Nv2
:
552 dirty
|= check_nv("vlan2hwname", "et0");
553 dirty
|= check_nv("pci/1/1/ledbh2", "8");
554 dirty
|= check_nv("sb/1/ledbh1", "8");
555 if (invalid_mac(nvram_get("pci/1/1/macaddr"))) {
556 strcpy(mac
, nvram_safe_get("et0macaddr"));
558 dirty
|= check_nv("pci/1/1/macaddr", mac
);
565 case MODEL_F5D8235v3
:
566 if (nvram_match("sb/1/macaddr", nvram_safe_get("et0macaddr"))) {
567 strcpy(mac
, nvram_safe_get("et0macaddr"));
569 dirty
|= check_nv("sb/1/macaddr", mac
);
571 dirty
|= check_nv("pci/1/1/macaddr", mac
);
574 dirty
|= check_nv("vlan2hwname", "et0");
575 if (strncasecmp(nvram_safe_get("pci/1/1/macaddr"), "00:90:4c", 8) == 0 ||
576 strncasecmp(nvram_safe_get("sb/1/macaddr"), "00:90:4c", 8) == 0) {
577 strcpy(mac
, nvram_safe_get("et0macaddr"));
579 dirty
|= check_nv("sb/1/macaddr", mac
);
581 dirty
|= check_nv("pci/1/1/macaddr", mac
);
584 case MODEL_WRT160Nv3
:
585 dirty
|= check_nv("vlan2hwname", "et0");
590 if (strncmp(nvram_safe_get("pmon_ver"), "CFE", 3) != 0) return;
592 hardware
= check_hw_type();
593 if (!nvram_get("boardtype") ||
594 !nvram_get("boardnum") ||
595 !nvram_get("boardflags") ||
596 !nvram_get("clkfreq") ||
597 !nvram_get("os_flash_addr") ||
598 !nvram_get("dl_ram_addr") ||
599 !nvram_get("os_ram_addr") ||
600 !nvram_get("scratch") ||
601 !nvram_get("et0macaddr") ||
602 ((hardware
!= HW_BCM4704_BCM5325F
) && (!nvram_get("vlan0ports") || !nvram_get("vlan0hwname")))) {
603 _dprintf("Unable to find critical settings, erasing NVRAM\n");
608 dirty
|= check_nv("aa0", "3");
609 dirty
|= check_nv("wl0gpio0", "136");
610 dirty
|= check_nv("wl0gpio2", "0");
611 dirty
|= check_nv("wl0gpio3", "0");
612 dirty
|= check_nv("cctl", "0");
613 dirty
|= check_nv("ccode", "0");
617 /* Lower the DDR ram drive strength , the value will be stable for all boards
618 Latency 3 is more stable for all ddr 20050420 by honor */
619 dirty
|= check_nv("sdram_init", "0x010b");
620 dirty
|= check_nv("sdram_config", "0x0062");
621 if (!nvram_match("debug_clkfix", "0")) {
622 dirty
|= check_nv("clkfreq", "216");
625 nvram_set("sdram_ncdl", "0x0");
627 dirty
|= check_nv("pa0itssit", "62");
628 dirty
|= check_nv("pa0b0", "0x15eb");
629 dirty
|= check_nv("pa0b1", "0xfa82");
630 dirty
|= check_nv("pa0b2", "0xfe66");
631 //dirty |= check_nv("pa0maxpwr", "0x4e");
633 case HW_BCM5352E
: // G v4, GS v3, v4
634 dirty
|= check_nv("sdram_init", "0x010b");
635 dirty
|= check_nv("sdram_config", "0x0062");
637 nvram_set("sdram_ncdl", "0x0");
639 dirty
|= check_nv("pa0itssit", "62");
640 dirty
|= check_nv("pa0b0", "0x168b");
641 dirty
|= check_nv("pa0b1", "0xfabf");
642 dirty
|= check_nv("pa0b2", "0xfeaf");
643 //dirty |= check_nv("pa0maxpwr", "0x4e");
646 dirty
|= check_nv("pa0itssit", "62");
647 dirty
|= check_nv("pa0b0", "0x1326");
648 dirty
|= check_nv("pa0b1", "0xFB51");
649 dirty
|= check_nv("pa0b2", "0xFE87");
650 //dirty |= check_nv("pa0maxpwr", "0x4e");
652 case HW_BCM4704_BCM5325F
:
656 dirty
|= check_nv("pa0itssit", "62");
657 dirty
|= check_nv("pa0b0", "0x170c");
658 dirty
|= check_nv("pa0b1", "0xfa24");
659 dirty
|= check_nv("pa0b2", "0xfe70");
660 //dirty |= check_nv("pa0maxpwr", "0x48");
667 dirty
|= init_vlan_ports();
671 REBOOT
: // do a simple reboot
678 static int init_nvram(void)
680 unsigned long features
;
689 sprintf(s
, "%d", model
);
690 nvram_set("t_model", s
);
698 name
= "WRT54G/GS/GL";
699 switch (check_hw_type()) {
701 nvram_set("gpio2", "adm_eecs");
702 nvram_set("gpio3", "adm_eesk");
703 nvram_unset("gpio4");
704 nvram_set("gpio5", "adm_eedi");
705 nvram_set("gpio6", "adm_rc");
708 nvram_unset("gpio2");
709 nvram_unset("gpio3");
710 nvram_unset("gpio4");
711 nvram_unset("gpio5");
712 nvram_unset("gpio6");
715 nvram_set("opo", "0x0008");
716 nvram_set("ag0", "0x02");
719 nvram_set("gpio2", "ses_led");
720 nvram_set("gpio3", "ses_led2");
721 nvram_set("gpio4", "ses_button");
722 features
= SUP_SES
| SUP_WHAM_LED
;
729 if (!nvram_match("t_fix1", (char *)name
)) {
730 nvram_set("lan_ifnames", "vlan0 eth1");
731 nvram_set("gpio2", "ses_button");
732 nvram_set("reset_gpio", "7");
734 nvram_set("pa0itssit", "62");
735 nvram_set("pa0b0", "0x1542");
736 nvram_set("pa0b1", "0xfacb");
737 nvram_set("pa0b2", "0xfec7");
738 //nvram_set("pa0maxpwr", "0x4c");
741 case MODEL_WRTSL54GS
:
744 features
= SUP_SES
| SUP_WHAM_LED
;
749 features
= SUP_SES
| SUP_AOSS_LED
| SUP_BRAU
;
752 case MODEL_WZRRSG54HP
:
755 features
= SUP_SES
| SUP_AOSS_LED
| SUP_HPAMP
;
757 case MODEL_WZRRSG54HP
:
758 name
= "WZR-RS-G54HP";
765 features
= SUP_SES
| SUP_AOSS_LED
| SUP_BRAU
| SUP_HPAMP
;
769 bf
= strtoul(nvram_safe_get("boardflags"), NULL
, 0);
775 if (nvram_match("wlx_hpamp", "")) {
776 if (nvram_get_int("wl_txpwr") > 10) nvram_set("wl_txpwr", "10");
777 nvram_set("wlx_hpamp", "1");
778 nvram_set("wlx_hperx", "0");
782 if (nvram_match("wlx_hpamp", "0")) {
788 if (nvram_match("wlx_hperx", "0")) {
795 sprintf(s
, "0x%lX", n
);
796 nvram_set("boardflags", s
);
800 syslog(LOG_WARNING
, "Unexpected: boardflag=%lX", bf
);
811 features
= SUP_SES
| SUP_AOSS_LED
;
813 case MODEL_WHR2A54G54
:
815 name
= "WHR2-A54G54";
816 features
= SUP_SES
| SUP_AOSS_LED
| SUP_BRAU
;
821 features
= SUP_SES
| SUP_AOSS_LED
;
826 features
= SUP_SES
| SUP_AOSS_LED
;
831 features
= SUP_SES
| SUP_AOSS_LED
;
841 features
= SUP_SES
| SUP_AOSS_LED
;
850 features
= SUP_NONVE
;
854 name
= "WR850G v2/v3";
855 features
= SUP_NONVE
;
862 nvram_set("usb_ohci", "-1");
864 if (!nvram_match("t_fix1", (char *)name
)) {
865 nvram_set("lan_ifnames", "vlan0 eth1 eth2 eth3"); // set to "vlan0 eth2" by DD-WRT; default: vlan0 eth1
871 features
= SUP_SES
| SUP_80211N
;
873 nvram_set("usb_ohci", "-1");
881 nvram_set("usb_uhci", "-1");
900 if (!nvram_match("t_fix1", (char *)name
)) {
901 nvram_set("lan_ifnames", "vlan0 eth1 eth2");
902 nvram_set("wl_ifname", "eth1");
903 nvram_set("wan_ifname", "none");
908 name
= "TrueMobile 2300";
917 #ifndef WL_BSS_INFO_VERSION
918 #error WL_BSS_INFO_VERSION
920 #if WL_BSS_INFO_VERSION >= 108
926 nvram_set("opo", "12");
932 features
= SUP_SES
| SUP_AOSS_LED
| SUP_BRAU
;
934 nvram_set("opo", "0x0008");
935 nvram_set("ag0", "0x0C");
941 features
= SUP_SES
| SUP_80211N
;
942 if (!nvram_match("t_fix1", (char *)name
)) {
943 nvram_set("lan_ifnames", "vlan0 eth1");
944 nvram_set("wan_ifnameX", "vlan1");
945 nvram_set("wl_ifname", "eth1");
951 features
= SUP_SES
| SUP_BRAU
| SUP_80211N
;
952 if (!nvram_match("t_fix1", (char *)name
)) {
953 nvram_set("lan_ifnames", "vlan0 eth1");
954 nvram_set("wan_ifnameX", "vlan1");
955 nvram_set("wl_ifname", "eth1");
961 features
= SUP_SES
| SUP_80211N
| SUP_1000ET
;
963 nvram_set("usb_uhci", "-1");
965 if (!nvram_match("t_fix1", (char *)name
)) {
966 nvram_set("lan_ifnames", "vlan1 eth1");
967 nvram_set("wan_ifnameX", "vlan2");
968 nvram_set("wl_ifname", "eth1");
969 nvram_set("vlan_enable", "1");
974 name
= "WNR3500L/U/v2";
975 features
= SUP_SES
| SUP_AOSS_LED
| SUP_80211N
| SUP_1000ET
;
976 if (!nvram_match("t_fix1", (char *)name
)) {
977 nvram_set("sromrev", "3");
978 nvram_set("lan_ifnames", "vlan1 eth1");
979 nvram_set("wan_ifnameX", "vlan2");
980 nvram_set("wl_ifname", "eth1");
983 case MODEL_WNR2000v2
:
986 features
= SUP_SES
| SUP_AOSS_LED
| SUP_80211N
;
987 if (!nvram_match("t_fix1", (char *)name
)) {
988 nvram_set("lan_ifnames", "vlan0 eth1");
989 nvram_set("wan_ifnameX", "vlan1");
990 nvram_set("wl_ifname", "eth1");
997 case MODEL_F5D8235v3
:
999 features
= SUP_SES
| SUP_80211N
;
1002 name
= "Share Max N300 (F7D3301/F7D7301) v1";
1005 name
= "Share N300 (F7D3302/F7D7302) v1";
1008 name
= "Play Max / N600 HD (F7D4301/F7D8301) v1";
1011 name
= "Play N600 (F7D4302/F7D8302) v1";
1013 case MODEL_F5D8235v3
:
1014 name
= "N F5D8235-4 v3";
1018 nvram_set("usb_uhci", "-1");
1020 if (!nvram_match("t_fix1", (char *)name
)) {
1021 nvram_set("lan_ifnames", "vlan1 eth1 eth2");
1022 nvram_set("wan_ifnameX", "vlan2");
1023 nvram_set("landevs", "vlan1 wl0 wl1");
1024 nvram_set("wandevs", "vlan2");
1027 case MODEL_WRT160Nv3
:
1028 // same as M10, M20, WRT310Nv2, E1000v1
1030 name
= nvram_safe_get("boot_hw_model");
1031 if (strcmp(name
, "E100") == 0)
1033 features
= SUP_SES
| SUP_80211N
| SUP_WHAM_LED
;
1034 if (!nvram_match("t_fix1", (char *)name
)) {
1035 nvram_set("lan_ifnames", "vlan1 eth1");
1036 nvram_set("wan_ifnameX", "vlan2");
1037 nvram_set("wl_ifname", "eth1");
1042 name
= nvram_match("boardrev", "0x1307") ? "E2000" : "WRT320N";
1043 features
= SUP_SES
| SUP_80211N
| SUP_WHAM_LED
| SUP_1000ET
;
1044 if (!nvram_match("t_fix1", (char *)name
)) {
1045 nvram_set("lan_ifnames", "vlan1 eth1");
1046 nvram_set("wan_ifnameX", "vlan2");
1047 nvram_set("wl_ifname", "eth1");
1050 case MODEL_WRT610Nv2
:
1052 name
= nvram_match("boot_hw_model", "E300") ? "E3000" : "WRT610N v2";
1053 features
= SUP_SES
| SUP_80211N
| SUP_WHAM_LED
| SUP_1000ET
;
1055 nvram_set("usb_uhci", "-1");
1057 if (!nvram_match("t_fix1", (char *)name
)) {
1058 nvram_set("lan_ifnames", "vlan1 eth1 eth2");
1059 nvram_set("wan_ifnameX", "vlan2");
1060 nvram_set("wl_ifname", "eth1");
1066 features
= SUP_SES
| SUP_80211N
| SUP_1000ET
;
1068 nvram_set("usb_uhci", "-1");
1070 if (!nvram_match("t_fix1", (char *)name
)) {
1071 nvram_set("lan_ifnames", "vlan1 eth1 eth2");
1072 nvram_set("wan_ifnameX", "vlan2");
1073 nvram_set("wl_ifname", "eth1");
1076 #endif // CONFIG_BCMWL5
1081 // The 330gE has only one wired port which can act either as WAN or LAN.
1082 // Failsafe mode is to have it start as a LAN port so you can get an IP
1083 // address via DHCP and access the router config page.
1084 if (!nvram_match("t_fix1", (char *)name
)) {
1085 nvram_set("wl_ifname", "eth1");
1086 nvram_set("lan_ifnames", "eth1");
1087 nvram_set("wan_ifnameX", "eth0");
1088 nvram_set("wan_islan", "1");
1089 nvram_set("wan_proto", "disabled");
1092 case MODEL_WL500GPv2
:
1094 name
= "WL-500gP v2";
1097 nvram_set("usb_uhci", "-1");
1105 nvram_set("usb_uhci", "-1");
1110 name
= "WL-500g Deluxe";
1111 // features = SUP_SES;
1113 nvram_set("usb_ohci", "-1");
1115 if (!nvram_match("t_fix1", (char *)name
)) {
1116 nvram_set("wl_ifname", "eth1");
1117 nvram_set("lan_ifnames", "vlan0 eth1");
1118 nvram_set("wan_ifnameX", "vlan1");
1119 nvram_unset("wl0gpio0");
1126 if (!nvram_match("t_fix1", (char *)name
)) {
1127 nvram_set("wan_ifnameX", "vlan1");
1128 nvram_set("wl_ifname", "eth1");
1133 name
= "ZXV10 H618B";
1134 features
= SUP_SES
| SUP_AOSS_LED
;
1136 case MODEL_WL1600GL
:
1141 #endif // WL_BSS_INFO_VERSION >= 108
1142 case MODEL_WZRG300N
:
1145 features
= SUP_SES
| SUP_AOSS_LED
| SUP_BRAU
| SUP_80211N
;
1147 case MODEL_WRT160Nv1
:
1150 name
= (model
== MODEL_WRT300N
) ? "WRT300N v1" : "WRT160N v1";
1151 features
= SUP_SES
| SUP_80211N
;
1152 if (!nvram_match("t_fix1", (char *)name
)) {
1153 nvram_set("wan_ifnameX", "eth1");
1154 nvram_set("lan_ifnames", "eth0 eth2");
1157 case MODEL_WRT310Nv1
:
1159 name
= "WRT310N v1";
1160 features
= SUP_SES
| SUP_80211N
| SUP_WHAM_LED
| SUP_1000ET
;
1161 if (!nvram_match("t_fix1", (char *)name
)) {
1162 nvram_set("lan_ifnames", "vlan1 eth1");
1163 nvram_set("wan_ifnameX", "vlan2");
1164 nvram_set("wl_ifname", "eth1");
1170 nvram_set("t_fix1", name
);
1171 sprintf(s
, "%s %s", mfr
, name
);
1174 snprintf(s
, sizeof(s
), "%s %d/%s/%s/%s/%s", mfr
, check_hw_type(),
1175 nvram_safe_get("boardtype"), nvram_safe_get("boardnum"), nvram_safe_get("boardrev"), nvram_safe_get("boardflags"));
1178 nvram_set("t_model_name", s
);
1180 nvram_set("pa0maxpwr", "400"); // allow Tx power up tp 400 mW, needed for ND only
1182 sprintf(s
, "0x%lX", features
);
1183 nvram_set("t_features", s
);
1186 note: set wan_ifnameX if wan_ifname needs to be overriden
1189 if (nvram_is_empty("wan_ifnameX")) {
1191 nvram_set("wan_ifnameX", ((strtoul(nvram_safe_get("boardflags"), NULL
, 0) & BFL_ENETVLAN
) ||
1192 (check_hw_type() == HW_BCM4712
)) ? "vlan1" : "eth1");
1194 p
= nvram_safe_get("wan_ifname");
1195 if ((*p
== 0) || (nvram_match("wl_ifname", p
))) {
1196 p
= ((strtoul(nvram_safe_get("boardflags"), NULL
, 0) & BFL_ENETVLAN
) ||
1197 (check_hw_type() == HW_BCM4712
)) ? "vlan1" : "eth1";
1199 nvram_set("wan_ifnameX", p
);
1203 //!!TB - do not force country code here to allow nvram override
1204 //nvram_set("wl_country", "JP");
1205 //nvram_set("wl_country_code", "JP");
1206 nvram_set("wan_get_dns", "");
1207 nvram_set("wan_get_domain", "");
1208 nvram_set("ppp_get_ip", "");
1209 nvram_set("action_service", "");
1210 nvram_set("jffs2_format", "0");
1211 nvram_set("rrules_radio", "-1");
1212 nvram_unset("https_crt_gen");
1213 nvram_unset("log_wmclear");
1215 nvram_set("ipv6_get_dns", "");
1217 #ifdef TCONFIG_MEDIA_SERVER
1218 nvram_unset("ms_rescan");
1220 if (nvram_get_int("http_id_gen") == 1) nvram_unset("http_id");
1222 nvram_unset("sch_rboot_last");
1223 nvram_unset("sch_rcon_last");
1224 nvram_unset("sch_c1_last");
1225 nvram_unset("sch_c2_last");
1226 nvram_unset("sch_c3_last");
1228 nvram_set("brau_state", "");
1229 if ((features
& SUP_BRAU
) == 0) nvram_set("script_brau", "");
1230 if ((features
& SUP_SES
) == 0) nvram_set("sesx_script", "");
1232 if ((features
& SUP_1000ET
) == 0) nvram_set("jumbo_frame_enable", "0");
1234 // compatibility with old versions
1235 if (nvram_match("wl_net_mode", "disabled")) {
1236 nvram_set("wl_radio", "0");
1237 nvram_set("wl_net_mode", "mixed");
1243 /* Get the special files from nvram and copy them to disc.
1244 * These were files saved with "nvram setfile2nvram <filename>".
1245 * Better hope that they were saved with full pathname.
1247 static void load_files_from_nvram(void)
1251 char buf
[NVRAM_SPACE
];
1253 if (nvram_getall(buf
, sizeof(buf
)) != 0)
1256 for (name
= buf
; *name
; name
+= strlen(name
) + 1) {
1257 if (strncmp(name
, "FILE:", 5) == 0) { /* This special name marks a file to get. */
1258 if ((cp
= strchr(name
, '=')) == NULL
)
1261 syslog(LOG_INFO
, "Loading file '%s' from nvram", name
+ 5);
1262 nvram_nvram2file(name
, name
+ 5);
1263 if (memcmp(".autorun", cp
- 8, 9) == 0)
1267 /* Start any autorun files that may have been loaded into one of the standard places. */
1269 run_nvscript(".autorun", NULL
, 3);
1272 #if defined(LINUX26) && defined(TCONFIG_USB)
1273 static inline void tune_min_free_kbytes(void)
1275 struct sysinfo info
;
1277 memset(&info
, 0, sizeof(struct sysinfo
));
1279 if (info
.totalram
>= 55 * 1024 * 1024) {
1280 // If we have 64MB+ RAM, tune min_free_kbytes
1281 // to reduce page allocation failure errors.
1282 f_write_string("/proc/sys/vm/min_free_kbytes", "8192", 0, 0);
1287 static void sysinit(void)
1289 static int noconsole
= 0;
1290 static const time_t tm
= 0;
1298 mount("proc", "/proc", "proc", 0, NULL
);
1299 mount("tmpfs", "/tmp", "tmpfs", 0, NULL
);
1302 mount("devfs", "/dev", "tmpfs", MS_MGC_VAL
| MS_NOATIME
, NULL
);
1303 mknod("/dev/null", S_IFCHR
| 0666, makedev(1, 3));
1304 mknod("/dev/console", S_IFCHR
| 0600, makedev(5, 1));
1305 mount("sysfs", "/sys", "sysfs", MS_MGC_VAL
, NULL
);
1306 mkdir("/dev/shm", 0777);
1307 mkdir("/dev/pts", 0777);
1308 mknod("/dev/pts/ptmx", S_IRWXU
|S_IFCHR
, makedev(5, 2));
1309 mknod("/dev/pts/0", S_IRWXU
|S_IFCHR
, makedev(136, 0));
1310 mknod("/dev/pts/1", S_IRWXU
|S_IFCHR
, makedev(136, 1));
1311 mount("devpts", "/dev/pts", "devpts", MS_MGC_VAL
, NULL
);
1314 if (console_init()) noconsole
= 1;
1318 static const char *mkd
[] = {
1319 "/tmp/etc", "/tmp/var", "/tmp/home", "/tmp/mnt",
1320 "/tmp/splashd", //!!Victek
1321 "/tmp/share", "/var/webmon", // !!TB
1322 "/var/log", "/var/run", "/var/tmp", "/var/lib", "/var/lib/misc",
1323 "/var/spool", "/var/spool/cron", "/var/spool/cron/crontabs",
1324 "/tmp/var/wwwext", "/tmp/var/wwwext/cgi-bin", // !!TB - CGI support
1328 for (i
= 0; mkd
[i
]; ++i
) {
1329 mkdir(mkd
[i
], 0755);
1331 mkdir("/var/lock", 0777);
1332 mkdir("/var/tmp/dhcp", 0777);
1333 mkdir("/home/root", 0700);
1334 chmod("/tmp", 0777);
1335 f_write("/etc/hosts", NULL
, 0, 0, 0644); // blank
1336 f_write("/etc/fstab", NULL
, 0, 0, 0644); // !!TB - blank
1337 simple_unlock("cron");
1338 simple_unlock("firewall");
1339 simple_unlock("restrictions");
1342 if ((d
= opendir("/rom/etc")) != NULL
) {
1343 while ((de
= readdir(d
)) != NULL
) {
1344 if (de
->d_name
[0] == '.') continue;
1345 snprintf(s
, sizeof(s
), "%s/%s", "/rom/etc", de
->d_name
);
1346 snprintf(t
, sizeof(t
), "%s/%s", "/etc", de
->d_name
);
1351 symlink("/proc/mounts", "/etc/mtab");
1353 #ifdef TCONFIG_SAMBASRV
1354 if ((d
= opendir("/usr/codepages")) != NULL
) {
1355 while ((de
= readdir(d
)) != NULL
) {
1356 if (de
->d_name
[0] == '.') continue;
1357 snprintf(s
, sizeof(s
), "/usr/codepages/%s", de
->d_name
);
1358 snprintf(t
, sizeof(t
), "/usr/share/%s", de
->d_name
);
1366 static const char *dn
[] = {
1367 "null", "zero", "random", "urandom", "full", "ptmx", "nvram",
1370 for (i
= 0; dn
[i
]; ++i
) {
1371 snprintf(s
, sizeof(s
), "/dev/%s", dn
[i
]);
1374 chmod("/dev/gpio", 0660);
1377 set_action(ACT_IDLE
);
1379 for (i
= 0; defenv
[i
]; ++i
) {
1384 eval("hotplug2", "--coldplug");
1389 printf("\n\nHit ENTER for console...\n\n");
1396 // disable IPv6 by default on all interfaces
1397 f_write_string("/proc/sys/net/ipv6/conf/default/disable_ipv6", "1", 0, 0);
1400 for (i
= 0; i
< sizeof(fatalsigs
) / sizeof(fatalsigs
[0]); i
++) {
1401 signal(fatalsigs
[i
], handle_fatalsigs
);
1403 signal(SIGCHLD
, handle_reap
);
1405 #ifdef CONFIG_BCMWL5
1406 // ctf must be loaded prior to any other modules
1407 if (nvram_invmatch("ctf_disable", "1"))
1416 switch (hardware
= check_hw_type()) {
1418 modprobe("bcm57xx");
1429 eval("nvram", "defaults", "--initcheck");
1432 // set the packet size
1433 if (nvram_get_int("jumbo_frame_enable")) {
1434 // only set the size here - 'enable' flag is set by the driver
1435 // eval("et", "robowr", "0x40", "0x01", "0x1F"); // (1 << 0) | (1 << 1) | (1 << 2) | (1 << 3) | (1 << 4)
1436 eval("et", "robowr", "0x40", "0x05", nvram_safe_get("jumbo_frame_size"));
1439 klogctl(8, NULL
, nvram_get_int("console_loglevel"));
1441 #if defined(LINUX26) && defined(TCONFIG_USB)
1442 tune_min_free_kbytes();
1445 set_host_domain_name();
1451 if (!noconsole
) xstart("console");
1453 i
= nvram_get_int("sesx_led");
1454 led(LED_AMBER
, (i
& 1) != 0);
1455 led(LED_WHITE
, (i
& 2) != 0);
1456 led(LED_AOSS
, (i
& 4) != 0);
1457 led(LED_BRIDGE
, (i
& 8) != 0);
1461 int init_main(int argc
, char *argv
[])
1467 nvram_unset("debug_rc_svc");
1471 sigemptyset(&sigset
);
1472 for (i
= 0; i
< sizeof(initsigs
) / sizeof(initsigs
[0]); i
++) {
1473 sigaddset(&sigset
, initsigs
[i
]);
1475 sigprocmask(SIG_BLOCK
, &sigset
, NULL
);
1477 #if defined(DEBUG_NOISY)
1478 nvram_set("debug_logeval", "1");
1479 nvram_set("debug_cprintf", "1");
1480 nvram_set("debug_cprintf_file", "1");
1481 nvram_set("debug_ddns", "1");
1486 state
= SIGUSR2
; /* START */
1489 TRACE_PT("main loop signal/state=%d\n", state
);
1492 case SIGUSR1
: /* USER1: service handler */
1496 case SIGHUP
: /* RESTART */
1497 case SIGINT
: /* STOP */
1498 case SIGQUIT
: /* HALT */
1499 case SIGTERM
: /* REBOOT */
1501 unlink("/var/notice/sysup");
1503 if( nvram_match( "webmon_bkp", "1" ) )
1504 xstart( "/usr/sbin/webmon_bkp", "hourly" ); // make a copy before halt/reboot router
1506 run_nvscript("script_shut", NULL
, 10);
1514 if ((state
== SIGTERM
/* REBOOT */) ||
1515 (state
== SIGQUIT
/* HALT */)) {
1516 remove_storage_main(1);
1519 shutdn(state
== SIGTERM
/* REBOOT */);
1522 if (state
== SIGINT
/* STOP */) {
1526 // SIGHUP (RESTART) falls through
1528 case SIGUSR2
: /* START */
1529 SET_LED(RELEASE_WAN_CONTROL
);
1532 load_files_from_nvram();
1535 fd
= file_lock("usb"); // hold off automount processing
1538 xstart("/usr/sbin/mymotd", "init");
1539 run_nvscript("script_init", NULL
, 2);
1541 file_unlock(fd
); // allow to process usb hotplug events
1544 * On RESTART some partitions can stay mounted if they are busy at the moment.
1545 * In that case USB drivers won't unload, and hotplug won't kick off again to
1546 * remount those drives that actually got unmounted. Make sure to remount ALL
1547 * partitions here by simulating hotplug event.
1549 if (state
== SIGHUP
/* RESTART */)
1550 add_remove_usbhost("-1", 1);
1561 #ifdef CONFIG_BCMWL5
1563 /* Restart NAS one more time - for some reason without
1564 * this the new driver doesn't always bring WDS up.
1571 syslog(LOG_INFO
, "%s: Tomato %s", nvram_safe_get("t_model_name"), tomato_version
);
1574 notice_set("sysup", "");
1578 chld_reap(0); /* Periodically reap zombies. */
1580 sigwait(&sigset
, &state
);
1586 int reboothalt_main(int argc
, char *argv
[])
1588 int reboot
= (strstr(argv
[0], "reboot") != NULL
);
1589 puts(reboot
? "Rebooting..." : "Shutting down...");
1592 kill(1, reboot
? SIGTERM
: SIGQUIT
);
1594 /* In the case we're hung, we'll get stuck and never actually reboot.
1595 * The only way out is to pull power.
1596 * So after 'reset_wait' seconds (default: 20), forcibly crash & restart.
1599 int wait
= nvram_get_int("reset_wait") ? : 20;
1600 if ((wait
< 10) || (wait
> 120)) wait
= 10;
1602 f_write("/proc/sysrq-trigger", "s", 1, 0 , 0); /* sync disks */
1604 puts("Still running... Doing machine reset.");
1606 f_write("/proc/sysrq-trigger", "s", 1, 0 , 0); /* sync disks */
1608 f_write("/proc/sysrq-trigger", "b", 1, 0 , 0); /* machine reset */