Module_Wifi.c 29 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150
  1. #include <sys/time.h>
  2. #include <sys/timeb.h>
  3. #include <sys/types.h>
  4. #include <sys/stat.h>
  5. #include <sys/types.h>
  6. #include <sys/ioctl.h>
  7. #include <sys/socket.h>
  8. #include <sys/ipc.h>
  9. #include <sys/shm.h>
  10. #include <sys/shm.h>
  11. #include <sys/mman.h>
  12. #include <linux/wireless.h>
  13. #include <arpa/inet.h>
  14. #include <netinet/in.h>
  15. #include <unistd.h>
  16. #include <stdarg.h>
  17. #include <stdio.h> /*標準輸入輸出定義*/
  18. #include <stdlib.h> /*標準函數庫定義*/
  19. #include <unistd.h> /*Unix 標準函數定義*/
  20. #include <fcntl.h> /*檔控制定義*/
  21. #include <termios.h> /*PPSIX 終端控制定義*/
  22. #include <errno.h> /*錯誤號定義*/
  23. #include <errno.h>
  24. #include <string.h>
  25. #include <time.h>
  26. #include <ctype.h>
  27. #include <ifaddrs.h>
  28. //#include "define.h"
  29. #include "../Projects/define.h"
  30. #define DEBUG_INFO(format, args...) StoreLogMsg("[%s:%d][%s][Info] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  31. #define DEBUG_WARN(format, args...) StoreLogMsg("[%s:%d][%s][Warn] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  32. #define DEBUG_ERROR(format, args...) StoreLogMsg("[%s:%d][%s][Error] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  33. #define Debug
  34. #define ARRAY_SIZE(A) (sizeof(A) / sizeof(A[0]))
  35. #define PASS 1
  36. #define FAIL -1
  37. #define true 1
  38. #define false 0
  39. #define IP_TYPE_DHCP 0
  40. #define IP_TYPE_STATIC 1
  41. #define AUTH_TYPE_NONE 0
  42. #define AUTH_TYPE_WEP 1
  43. #define AUTH_TYPE_WPAPSK 2
  44. #define AUTH_TYPE_WPA2PSK 3
  45. #define WIFI_MODE_DISABLE 0
  46. #define WIFI_MODE_STA 1
  47. #define WIFI_MODE_AP 2
  48. #define WIFI_MODE_ADHOC 3
  49. #define STA_STATE_INIT 0
  50. #define STA_STATE_DEVICE_DETECT 1
  51. #define STA_STATE_AP_CONNECTED 2
  52. #define STA_STATE_INTERNET_CHECKING 3
  53. #define AP_STATE_INIT 0
  54. #define AP_STATE_DEVICE_DETECT 1
  55. #define AP_STATE_AP_START 2
  56. #define AP_STATE_SERVER_LISTEN 3
  57. #define UBLOX
  58. //#define MT7601U
  59. struct interface_info
  60. {
  61. int ipType;
  62. int authType;
  63. int rssi;
  64. int cnt_InternetFail;
  65. char *currentInterface;
  66. char currentSSID[256];
  67. char currentPasswd[256];
  68. char currentMAC[24];
  69. char currentIPAddr[24];
  70. char currentNetmask[24];
  71. char currentGateway[24];
  72. char staticIPAddr[24];
  73. }Wifi;
  74. struct Display_Request
  75. {
  76. unsigned char isShowed_IF_info:1;
  77. unsigned char isShowed_IP_info:1;
  78. }dispReq;
  79. struct auth_info
  80. {
  81. int auth_type;
  82. unsigned char ssid[256];
  83. unsigned char passwd[256];
  84. }Wifi_A;
  85. struct SysConfigAndInfo *ShmSysConfigAndInfo;
  86. struct StatusCodeData *ShmStatusCodeData;
  87. int isFindInterface();
  88. int getInterfaceInfo();
  89. int isReachableInternet();
  90. int getLinkQuality();
  91. char* getTimeString(void);
  92. int setWPAconf();
  93. int restartWPA();
  94. void refreshUSB();
  95. void getParameters();
  96. int Wifi_module_sts = STA_STATE_INIT;
  97. int isSetWPA_OK = false;
  98. int cnt_pingDNS_Fail;
  99. int cnt_getAP_Fail;
  100. int cnt_getIP_Fail;
  101. void trim(char *s);
  102. int mystrcmp(char *p1,char *p2);
  103. void substr(char *dest, const char* src, unsigned int start, unsigned int cnt);
  104. void split(char **arr, char *str, const char *del);
  105. char *Support_InterfaceSTA[2] = {"mlan0", "wlan0"};
  106. char *Support_InterfaceAP[1] = {"uap0"};
  107. char *valid_Internet[2] = {"8.8.8.8", "180.76.76.76"};
  108. int StoreLogMsg(const char *fmt, ...)
  109. {
  110. char Buf[4096+256];
  111. char buffer[4096];
  112. time_t CurrentTime;
  113. struct tm *tm;
  114. va_list args;
  115. va_start(args, fmt);
  116. int rc = vsnprintf(buffer, sizeof(buffer), fmt, args);
  117. va_end(args);
  118. memset(Buf,0,sizeof(Buf));
  119. CurrentTime = time(NULL);
  120. tm=localtime(&CurrentTime);
  121. sprintf(Buf,"echo \"[%04d.%02d.%02d %02d:%02d:%02d] - %s\" >> /Storage/SystemLog/[%04d.%02d]SystemLog",
  122. tm->tm_year+1900,tm->tm_mon+1,tm->tm_mday,tm->tm_hour,tm->tm_min,tm->tm_sec,
  123. buffer,
  124. tm->tm_year+1900,tm->tm_mon+1);
  125. #ifdef SystemLogMessage
  126. system(Buf);
  127. #endif
  128. printf("[%04d.%02d.%02d %02d:%02d:%02d] - %s", tm->tm_year+1900,tm->tm_mon+1,tm->tm_mday,tm->tm_hour,tm->tm_min,tm->tm_sec, buffer);
  129. return rc;
  130. }
  131. int DiffTimeb(struct timeb ST, struct timeb ET)
  132. {
  133. //return milli-second
  134. unsigned int StartTime,StopTime;
  135. StartTime=(unsigned int)ST.time;
  136. StopTime=(unsigned int)ET.time;
  137. return (StopTime-StartTime)*1000+ET.millitm-ST.millitm;
  138. }
  139. //==========================================
  140. // Init all share memory
  141. //==========================================
  142. int InitShareMemory()
  143. {
  144. int result = PASS;
  145. int MeterSMId;
  146. //creat ShmSysConfigAndInfo
  147. if ((MeterSMId = shmget(ShmSysConfigAndInfoKey, sizeof(struct SysConfigAndInfo), 0777)) < 0)
  148. {
  149. #ifdef SystemLogMessage
  150. DEBUG_ERROR("shmget ShmSysConfigAndInfo NG\n");
  151. #endif
  152. result = FAIL;
  153. }
  154. else if ((ShmSysConfigAndInfo = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  155. {
  156. #ifdef SystemLogMessage
  157. DEBUG_ERROR("shmat ShmSysConfigAndInfo NG\n");
  158. #endif
  159. result = FAIL;
  160. }
  161. else
  162. {}
  163. //creat ShmStatusCodeData
  164. if ((MeterSMId = shmget(ShmStatusCodeKey, sizeof(struct StatusCodeData), 0777)) < 0)
  165. {
  166. #ifdef SystemLogMessage
  167. DEBUG_ERROR("shmget ShmStatusCodeData NG\n");
  168. #endif
  169. result = FAIL;
  170. }
  171. else if ((ShmStatusCodeData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  172. {
  173. #ifdef SystemLogMessage
  174. DEBUG_ERROR("shmat ShmStatusCodeData NG\n");
  175. #endif
  176. result = FAIL;
  177. }
  178. else
  179. {}
  180. return result;
  181. }
  182. //==========================================
  183. // Get parameters from shared memory
  184. //==========================================
  185. void getParameters(void)
  186. {
  187. DEBUG_INFO("============= Configuration ===============\r\n");
  188. strcpy((char*)Wifi_A.ssid, (const char*)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSsid);
  189. DEBUG_INFO("Wifi SSID: %s\n", Wifi_A.ssid);
  190. strcpy((char*)Wifi_A.passwd, (const char*)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiPassword);
  191. DEBUG_INFO("Wifi Password: %s\n", Wifi_A.passwd);
  192. if(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiIpAddress != NULL)
  193. strcpy((char*)Wifi.staticIPAddr, (const char*)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiIpAddress);
  194. DEBUG_INFO("Wifi Static IP: %s\n", Wifi.staticIPAddr);
  195. Wifi.ipType = ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpClient;
  196. DEBUG_INFO("DHCP client flag: %d\n", Wifi.ipType);
  197. DEBUG_INFO("===========================================\r\n");
  198. }
  199. //==========================================
  200. // Refresh USB interface
  201. //==========================================
  202. void refreshUSB(void)
  203. {
  204. FILE *fp;
  205. char cmd[256];
  206. // Get IP address & net mask
  207. strcpy(cmd, "echo '1-1'> /sys/bus/usb/drivers/usb/unbind");
  208. fp = popen(cmd, "r");
  209. sleep(2);
  210. pclose(fp);
  211. strcpy(cmd, "echo '1-1'> /sys/bus/usb/drivers/usb/bind");
  212. fp = popen(cmd, "r");
  213. sleep(5);
  214. pclose(fp);
  215. }
  216. //==========================================
  217. // Check wifi interface status
  218. //==========================================
  219. int isFindInterface()
  220. {
  221. int result = FAIL;
  222. struct ifaddrs *ifaddr, *ifa;
  223. //refreshUSB();
  224. if(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMode == WIFI_MODE_AP)
  225. {
  226. if (getifaddrs(&ifaddr) != FAIL)
  227. {
  228. for (ifa = ifaddr; ifa != NULL; ifa = ifa->ifa_next)
  229. {
  230. if (ifa->ifa_addr == NULL ||
  231. ifa->ifa_addr->sa_family != AF_PACKET) continue;
  232. for(int idx=0;idx<ARRAY_SIZE(Support_InterfaceAP);idx++)
  233. {
  234. if(mystrcmp(ifa->ifa_name, Support_InterfaceAP[idx]) == PASS)
  235. {
  236. Wifi.currentInterface = ifa->ifa_name;
  237. result = PASS;
  238. }
  239. }
  240. }
  241. freeifaddrs(ifaddr);
  242. freeifaddrs(ifa);
  243. }
  244. }
  245. else
  246. {
  247. if (getifaddrs(&ifaddr) != FAIL)
  248. {
  249. for (ifa = ifaddr; ifa != NULL; ifa = ifa->ifa_next)
  250. {
  251. if (ifa->ifa_addr == NULL ||
  252. ifa->ifa_addr->sa_family != AF_PACKET) continue;
  253. for(int idx=0;idx<ARRAY_SIZE(Support_InterfaceSTA);idx++)
  254. {
  255. if(mystrcmp(ifa->ifa_name, Support_InterfaceSTA[idx]) == PASS)
  256. {
  257. Wifi.currentInterface = ifa->ifa_name;
  258. result = PASS;
  259. }
  260. }
  261. }
  262. freeifaddrs(ifaddr);
  263. freeifaddrs(ifa);
  264. }
  265. }
  266. return result;
  267. }
  268. //==========================================
  269. // Get wifi interface info
  270. //==========================================
  271. int getInterfaceInfo()
  272. {
  273. int result = PASS;
  274. FILE *fp;
  275. char cmd[256];
  276. char buf[512];
  277. char tmp[512];
  278. // Get IP address & net mask
  279. strcpy(cmd, "ifconfig ");
  280. strcat(cmd, Wifi.currentInterface);
  281. fp = popen(cmd, "r");
  282. if(fp == NULL)
  283. result = FAIL;
  284. else
  285. {
  286. while(fgets(buf, sizeof(buf), fp) != NULL)
  287. {
  288. if(strstr(buf, "HWaddr") > 0)
  289. {
  290. sscanf(buf, "%*s%*s%*s%*s%s", tmp);
  291. strcpy(Wifi.currentMAC, tmp);
  292. }
  293. if(strstr(buf, "inet addr:") > 0)
  294. {
  295. sscanf(buf, "%*s%s", tmp);
  296. substr(Wifi.currentIPAddr, tmp, strspn(tmp, "addr:"), strlen(buf)-strspn(tmp, "addr:"));
  297. sscanf(buf, "%*s%*s%*s%s", tmp);
  298. substr(Wifi.currentNetmask, tmp, strspn(tmp, "Mask:"), strlen(buf)-strspn(tmp, "Mask:"));
  299. }
  300. }
  301. }
  302. pclose(fp);
  303. // Get gateway
  304. fp = popen("ip route", "r");
  305. if(fp == NULL)
  306. result = FAIL;
  307. else
  308. {
  309. while(fgets(buf, sizeof(buf), fp) != NULL)
  310. {
  311. if(strncmp(buf, "default", strlen("default")) == 0)
  312. break;
  313. }
  314. sscanf(buf, "%*s%*s%s", tmp);
  315. substr(Wifi.currentGateway, tmp, 0, strlen(tmp));
  316. }
  317. pclose(fp);
  318. if(!dispReq.isShowed_IF_info)
  319. {
  320. DEBUG_INFO("MAC: %s\n", Wifi.currentMAC);
  321. dispReq.isShowed_IF_info = true;
  322. }
  323. if(!dispReq.isShowed_IP_info)
  324. {
  325. DEBUG_INFO("IP address: %s\n", Wifi.currentIPAddr);
  326. DEBUG_INFO("Net mask: %s\n", Wifi.currentNetmask);
  327. DEBUG_INFO("Default gateway: %s\n", Wifi.currentGateway);
  328. dispReq.isShowed_IP_info = true;
  329. }
  330. strcpy((char*)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiIpAddress, (const char*)Wifi.currentIPAddr);
  331. strcpy((char*)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSubmaskAddress, (const char*)Wifi.currentNetmask);
  332. strcpy((char*)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiGatewayAddress, (const char*)Wifi.currentGateway);
  333. strcpy((char*)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMacAddress, (const char*)Wifi.currentMAC);
  334. return result;
  335. }
  336. //==========================================
  337. // Check if module connect to wifi AP
  338. //==========================================
  339. int isConnectAP()
  340. {
  341. int result = PASS;
  342. FILE *fp;
  343. char cmd[256];
  344. char buf[512];
  345. // Get IP address & net mask
  346. strcpy(cmd, "/root/iwconfig ");
  347. strcat(cmd, Wifi.currentInterface);
  348. fp = popen(cmd, "r");
  349. if(fp == NULL)
  350. result = FAIL;
  351. else
  352. {
  353. while(fgets(buf, sizeof(buf), fp) != NULL)
  354. {
  355. if(strstr(buf, "Not-Associated") > 0)
  356. {
  357. result = FAIL;
  358. DEBUG_INFO("AP check: Not-Associated.\n");
  359. }
  360. }
  361. }
  362. pclose(fp);
  363. return result;
  364. }
  365. //==========================================
  366. // Check internet access status
  367. //==========================================
  368. int isReachableInternet()
  369. {
  370. int result = FAIL;
  371. FILE *fp;
  372. char cmd[256];
  373. char buf[512];
  374. //char tmp[512];
  375. for(int idx=0;idx<ARRAY_SIZE(valid_Internet);idx++)
  376. {
  377. strcpy(cmd, "ping -c 1 -w 3 ");
  378. strcat(cmd, valid_Internet[idx]);
  379. fp = popen(cmd, "r");
  380. if(fp != NULL)
  381. {
  382. while(fgets(buf, sizeof(buf), fp) != NULL)
  383. {
  384. if(strstr(buf, "transmitted") > 0)
  385. {
  386. //sscanf(buf, "%*s%*s%*s%*s%*s%*s%s", tmp);
  387. if(strstr(buf,"100%") != NULL)
  388. {
  389. }
  390. else
  391. {
  392. result = PASS;
  393. }
  394. //DEBUG_INFO("%s",buf);
  395. //DEBUG_INFO("%s\n",tmp);
  396. }
  397. }
  398. }
  399. pclose(fp);
  400. }
  401. return result;
  402. }
  403. //==========================================
  404. // Check module soft AP is start up
  405. //==========================================
  406. int isStartUpAP()
  407. {
  408. int result = FAIL;
  409. FILE *fp;
  410. char cmd[256];
  411. char buf[512];
  412. // Get IP address & net mask
  413. strcpy(cmd, "/root/uaputl sys_cfg_bss_status");
  414. fp = popen(cmd, "r");
  415. if(fp != NULL)
  416. {
  417. while(fgets(buf, sizeof(buf), fp) != NULL)
  418. {
  419. if(strstr(buf, "BSS status = started") > 0)
  420. {
  421. result = PASS;
  422. DEBUG_INFO("AP already start up.\n");
  423. }
  424. }
  425. }
  426. pclose(fp);
  427. return result;
  428. }
  429. //==========================================
  430. // Get wifi connection quality
  431. //==========================================
  432. int getLinkQuality()
  433. {
  434. int result = FAIL;
  435. FILE *fp;
  436. char cmd[256];
  437. char buf[512];
  438. char tmp[512];
  439. strcpy(cmd, "/root/iwconfig ");
  440. strcat(cmd, Wifi.currentInterface);
  441. fp = popen(cmd, "r");
  442. if(fp == NULL)
  443. result = FAIL;
  444. else
  445. {
  446. while(fgets(buf, sizeof(buf), fp) != NULL)
  447. {
  448. if(strstr(buf, "Signal level") > 0)
  449. {
  450. sscanf(buf, "%*s%*s%*s%s", tmp);
  451. substr(tmp, tmp, strspn(tmp, "Signal level="), strlen(buf)-strspn(tmp, "Signal level="));
  452. Wifi.rssi = atoi(tmp);
  453. result = PASS;
  454. }
  455. }
  456. }
  457. pclose(fp);
  458. return result;
  459. }
  460. //==========================================
  461. // WPA parameter set
  462. //==========================================
  463. int setWPAconf()
  464. {
  465. int result = FAIL;
  466. char cmdBuf[512];
  467. FILE *pFile;
  468. char buffer[500]="ctrl_interface=/var/run/wpa_supplicant\nupdate_config=1\n";
  469. // Stop dhcp client or server
  470. sprintf(cmdBuf, "pgrep -f \"udhcpc\" | xargs kill");
  471. system(cmdBuf);
  472. sprintf(cmdBuf, "pgrep -f \"udhcpd\" | xargs kill");
  473. system(cmdBuf);
  474. // Clear wifi configuration file
  475. system("cat /dev/null > /etc/wpa.conf");
  476. switch(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMode)
  477. {
  478. case WIFI_MODE_STA:
  479. // Fill out configuration value depend on share memory setting
  480. if(strlen((const char*)Wifi_A.passwd)>0)
  481. {
  482. if(strlen((const char*)Wifi_A.passwd)>=8)
  483. {
  484. strcat(buffer, "network={\n ssid=\"");
  485. strcat(buffer, (char*)Wifi_A.ssid);
  486. strcat(buffer, "\"\n key_mgmt=WPA-EAP WPA-PSK \n");
  487. strcat(buffer, " psk=\"");
  488. strcat(buffer, (char*)Wifi_A.passwd);
  489. strcat(buffer, "\"\n}\n\n");
  490. }
  491. if(strlen((const char*)Wifi_A.passwd)==5 || strlen((const char*)Wifi_A.passwd)==13)
  492. {
  493. strcat(buffer, "network={\n ssid=\"");
  494. strcat(buffer, (char*)Wifi_A.ssid);
  495. strcat(buffer, "\"\n key_mgmt=NONE\n");
  496. strcat(buffer, " wep_key0=\"");
  497. strcat(buffer, (char*)Wifi_A.passwd);
  498. strcat(buffer, "\"\n auth_alg=OPEN SHARED\n");
  499. strcat(buffer, "\n}\n\n");
  500. }
  501. strcat(buffer, "network={\n ssid=\"");
  502. strcat(buffer, (char*)Wifi_A.ssid);
  503. strcat(buffer, "\"\n key_mgmt=NONE");
  504. strcat(buffer, "\n}");
  505. }
  506. else
  507. {
  508. strcat(buffer, "network={\n ssid=\"");
  509. strcat(buffer, (char*)Wifi_A.ssid);
  510. strcat(buffer, "\"\n key_mgmt=NONE");
  511. strcat(buffer, "\n}");
  512. }
  513. // Configuration value write to /etc/wpa.conf
  514. pFile = fopen("/etc/wpa.conf","w");
  515. fwrite(buffer,strlen(buffer), 1, pFile);
  516. fclose(pFile);
  517. // Restart wpa_supplicant
  518. sprintf(cmdBuf, "pgrep -f \"wpa_supplicant\" | xargs kill");
  519. system(cmdBuf);
  520. sprintf(cmdBuf, "/root/wpa_supplicant -i %s -c /etc/wpa.conf -B", Wifi.currentInterface);
  521. system(cmdBuf);
  522. // Stop wifi AP
  523. sprintf(cmdBuf, "/root/uaputl bss_stop");
  524. system(cmdBuf);
  525. sleep(5);
  526. // Wifi IP set by DHCP client or static
  527. if(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpClient==0)
  528. {
  529. sprintf(cmdBuf, "/sbin/udhcpc -i %s -s /root/dhcp_script/wifi.script > /dev/null &", Wifi.currentInterface);
  530. system(cmdBuf);
  531. }
  532. else
  533. {
  534. strcpy(cmdBuf, "ifconfig ");
  535. strcat(cmdBuf, Wifi.currentInterface);
  536. strcat(cmdBuf, " ");
  537. strcat(cmdBuf, Wifi.staticIPAddr);
  538. system(cmdBuf);
  539. DEBUG_INFO("Setting %s static IP to %s ...\n", Wifi.currentInterface, Wifi.staticIPAddr);
  540. }
  541. break;
  542. case WIFI_MODE_AP:
  543. // Stop wifi AP
  544. sprintf(cmdBuf, "/root/uaputl bss_stop");
  545. system(cmdBuf);
  546. // Set SSID to uaputl.conf
  547. sprintf(cmdBuf, "sed -i 's/ SSID=.*$/ SSID=\"%s\"/' /root/uaputl_config/uaputl.conf", Wifi_A.ssid);
  548. system(cmdBuf);
  549. // Set AP configuration by uaputl.conf
  550. sprintf(cmdBuf, "/root/uaputl sys_config /root/uaputl_config/uaputl.conf");
  551. system(cmdBuf);
  552. // Start up wifi AP
  553. sprintf(cmdBuf, "/root/uaputl bss_start");
  554. system(cmdBuf);
  555. sleep(5);
  556. // Set wifi AP ip address
  557. sprintf(cmdBuf, "ifconfig %s 192.168.10.10", Wifi.currentInterface);
  558. system(cmdBuf);
  559. DEBUG_INFO("Setting %s static IP to 192.168.10.10...\n", Wifi.currentInterface);
  560. // Start DHCP server
  561. if(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpServer==0)
  562. {
  563. sprintf(cmdBuf, "/usr/sbin/udhcpd /etc/udhcpd.conf > /dev/null &");
  564. system(cmdBuf);
  565. }
  566. break;
  567. case WIFI_MODE_ADHOC:
  568. break;
  569. case WIFI_MODE_DISABLE:
  570. default:
  571. break;
  572. }
  573. result = PASS;
  574. return result;
  575. }
  576. //=================================
  577. // Common routine
  578. //=================================
  579. char* getTimeString(void)
  580. {
  581. char *result=malloc(21);
  582. time_t timep;
  583. struct tm *p;
  584. time(&timep);
  585. p=gmtime(&timep);
  586. sprintf(result, "[%04d-%02d-%02d %02d:%02d:%02d]", (1900+p->tm_year), (1+p->tm_mon), p->tm_mday, p->tm_hour, p->tm_hour, p->tm_sec);
  587. return result;
  588. }
  589. void trim(char *s)
  590. {
  591. int i=0, j, k, l=0;
  592. while((s[i]==' ')||(s[i]=='\t')||(s[i]=='\n'))
  593. i++;
  594. j = strlen(s)-1;
  595. while((s[j]==' ')||(s[j]=='\t')||(s[j]=='\n'))
  596. j--;
  597. if(i==0 && j==strlen(s)-1) { }
  598. else if(i==0) s[j+1] = '\0';
  599. else {
  600. for(k=i; k<=j; k++) s[l++] = s[k];
  601. s[l] = '\0';
  602. }
  603. }
  604. int mystrcmp(char *p1,char *p2)
  605. {
  606. while(*p1==*p2)
  607. {
  608. if(*p1=='\0' || *p2=='\0')
  609. break;
  610. p1++;
  611. p2++;
  612. }
  613. if(*p1=='\0' && *p2=='\0')
  614. return(PASS);
  615. else
  616. return(FAIL);
  617. }
  618. void substr(char *dest, const char* src, unsigned int start, unsigned int cnt)
  619. {
  620. strncpy(dest, src + start, cnt);
  621. dest[cnt] = 0;
  622. }
  623. void split(char **arr, char *str, const char *del)
  624. {
  625. char *s = strtok(str, del);
  626. while(s != NULL)
  627. {
  628. *arr++ = s;
  629. s = strtok(NULL, del);
  630. }
  631. }
  632. int checkIP(void)
  633. {
  634. // DHCP or static setting
  635. int isGetIP = FAIL;
  636. FILE *fp;
  637. char buf[512];
  638. char tmp[512];
  639. char cmd[512];
  640. if(Wifi.ipType == IP_TYPE_DHCP) {
  641. // Get IP address & net mask
  642. strcpy(cmd, "ifconfig ");
  643. strcat(cmd, Wifi.currentInterface);
  644. fp = popen(cmd, "r");
  645. if(fp == NULL)
  646. isGetIP = FAIL;
  647. else
  648. {
  649. while(fgets(buf, sizeof(buf), fp) != NULL)
  650. {
  651. if(strstr(buf, "addr:") > 0)
  652. {
  653. if(strstr(buf, "192.168.1.10") > 0)
  654. {
  655. DEBUG_INFO("IP cannot be same as default value of Ethernet...\n");
  656. }
  657. else
  658. {
  659. isGetIP = PASS;
  660. cnt_getIP_Fail = 0;
  661. }
  662. sscanf(buf, "%*s%s", tmp);
  663. substr(Wifi.currentIPAddr, tmp, strspn(tmp, "addr:"), strlen(buf)-strspn(tmp, "addr:"));
  664. sscanf(buf, "%*s%*s%*s%s", tmp);
  665. substr(Wifi.currentNetmask, tmp, strspn(tmp, "Mask:"), strlen(buf)-strspn(tmp, "Mask:"));
  666. }else {
  667. }
  668. }
  669. }
  670. if(isGetIP == FAIL && cnt_getIP_Fail<3) {
  671. sprintf(cmd, "pgrep -f \"udhcpc -i %s\" | xargs kill", Wifi.currentInterface);
  672. system(cmd);
  673. if(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpClient==0)
  674. {
  675. sprintf(cmd, "/sbin/udhcpc -i %s -s /root/dhcp_script/wifi.script > /dev/null &", Wifi.currentInterface);
  676. system(cmd);
  677. }
  678. DEBUG_INFO("Sending DHCP request...\n");
  679. cnt_getIP_Fail++;
  680. sleep(5);
  681. }
  682. pclose(fp);
  683. }else {
  684. strcpy(cmd, "ifconfig ");
  685. strcat(cmd, Wifi.currentInterface);
  686. strcat(cmd, " ");
  687. strcat(cmd, Wifi.staticIPAddr);
  688. fp = popen(cmd, "r");
  689. DEBUG_INFO("Setting static IP to %s ...\n", Wifi.staticIPAddr);
  690. pclose(fp);
  691. isGetIP = PASS;
  692. }
  693. cnt_getIP_Fail = 0;
  694. return isGetIP;
  695. }
  696. int restartWPA(void)
  697. {
  698. int result = FAIL;
  699. FILE *fp;
  700. char buf[512];
  701. char cmd[50];
  702. // Get IP address & net mask
  703. strcpy(cmd, "wpa_cli -i ");
  704. strcat(cmd, Wifi.currentInterface);
  705. strcat(cmd, " reconfigure");
  706. fp = popen(cmd, "r");
  707. DEBUG_INFO("WPA reconfigure %s ...\n", Wifi.currentInterface);
  708. if(fp == NULL)
  709. result = FAIL;
  710. else
  711. {
  712. while(fgets(buf, sizeof(buf), fp) != NULL)
  713. {
  714. if(strstr(buf, "OK") > 0)
  715. {
  716. DEBUG_INFO("reconfigure OK.\n");
  717. result = PASS;
  718. }else {
  719. DEBUG_INFO("reconfigure failed.\n");
  720. result = FAIL;
  721. }
  722. }
  723. }
  724. pclose(fp);
  725. if(result == PASS) {
  726. strcpy(cmd, "wpa_cli -i ");
  727. strcat(cmd, Wifi.currentInterface);
  728. strcat(cmd, " reconfigure");
  729. fp = popen(cmd, "r");
  730. DEBUG_INFO("WPA reconnect %s ...\n", Wifi.currentInterface);
  731. if(fp == NULL)
  732. result = FAIL;
  733. else{
  734. while(fgets(buf, sizeof(buf), fp) != NULL)
  735. {
  736. if(strstr(buf, "OK") > 0){
  737. DEBUG_INFO("reconnect OK.\n");
  738. result = PASS;
  739. }else {
  740. DEBUG_INFO("reconnect failed.\n");
  741. result = FAIL;
  742. }
  743. }
  744. }
  745. pclose(fp);
  746. }
  747. return result;
  748. }
  749. void proc_sta()
  750. {
  751. switch(Wifi_module_sts)
  752. {
  753. case STA_STATE_INIT:
  754. dispReq.isShowed_IF_info = false;
  755. // get info from shared memory
  756. getParameters();
  757. ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectViaWiFi=1;
  758. ShmStatusCodeData->InfoCode.InfoEvents.bits.ApDisconnectViaWiFi=1;
  759. isSetWPA_OK = false;
  760. // check interface
  761. if((strlen((const char*)Wifi_A.ssid)>0) && (isFindInterface() == PASS))
  762. {
  763. DEBUG_INFO("Wifi interface: %s\n", Wifi.currentInterface);
  764. Wifi_module_sts = STA_STATE_DEVICE_DETECT;
  765. ShmStatusCodeData->FaultCode.FaultEvents.bits.WiFiModuleBroken=0;
  766. DEBUG_INFO("=================[State 1]===================\n");
  767. }
  768. else
  769. {
  770. ShmStatusCodeData->FaultCode.FaultEvents.bits.WiFiModuleBroken=1;
  771. DEBUG_ERROR("Wifi support interface valid result: Fail\n");
  772. sleep(30);
  773. }
  774. break;
  775. case STA_STATE_DEVICE_DETECT:
  776. dispReq.isShowed_IP_info = false;
  777. if(!isSetWPA_OK && (setWPAconf() == PASS))
  778. {
  779. isSetWPA_OK = true;
  780. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.WiFiModuleCommFail=0;
  781. sleep(5);
  782. }
  783. else if((isSetWPA_OK == true) && (isConnectAP() == PASS))
  784. {
  785. Wifi_module_sts = STA_STATE_AP_CONNECTED;
  786. ShmStatusCodeData->InfoCode.InfoEvents.bits.ApDisconnectViaWiFi=0;
  787. DEBUG_INFO("=================[State 2]===================\n");
  788. }
  789. else
  790. {
  791. cnt_getAP_Fail++;
  792. DEBUG_INFO("Fail to connect to the AP %d times...\n",cnt_getAP_Fail);
  793. if(cnt_getAP_Fail>=3)
  794. {
  795. Wifi_module_sts = STA_STATE_INIT;
  796. cnt_getAP_Fail = 0;
  797. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.WiFiModuleCommFail=1;
  798. DEBUG_INFO("=================[State 0]===================\n");
  799. }
  800. else
  801. {
  802. sleep(10);
  803. }
  804. }
  805. break;
  806. case STA_STATE_AP_CONNECTED:
  807. getInterfaceInfo();
  808. getLinkQuality();
  809. DEBUG_INFO("Wifi quality: %d dBm\n", Wifi.rssi);
  810. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiRssi = Wifi.rssi;
  811. if(isReachableInternet() == PASS)
  812. {
  813. DEBUG_INFO("Wifi internet valid result: Pass\n");
  814. ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectViaWiFi=0;
  815. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiNetworkConn=1;
  816. ShmSysConfigAndInfo->SysInfo.InternetConn=1;
  817. cnt_pingDNS_Fail = 0;
  818. sleep(30);
  819. }
  820. else
  821. {
  822. cnt_pingDNS_Fail++;
  823. DEBUG_INFO("Wifi internet valid result: Fail %d time\n", cnt_pingDNS_Fail);
  824. sleep(5);
  825. }
  826. if(cnt_pingDNS_Fail >= 3)
  827. {
  828. ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectViaWiFi=1;
  829. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiNetworkConn=0;
  830. ShmSysConfigAndInfo->SysInfo.InternetConn=0;
  831. cnt_pingDNS_Fail = 0;
  832. DEBUG_INFO("Ping DNS failed...");
  833. memset(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSubmaskAddress, 0, sizeof ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSubmaskAddress);
  834. memset(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiGatewayAddress, 0, sizeof ShmSysConfigAndInfo->SysConfig.AthInterface.WifiGatewayAddress);
  835. memset(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMacAddress, 0, sizeof ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMacAddress);
  836. if(isFindInterface() == PASS)
  837. {
  838. DEBUG_INFO("Wifi interface: %s\n", Wifi.currentInterface);
  839. isSetWPA_OK = false;
  840. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiRssi = 0;
  841. Wifi_module_sts = STA_STATE_DEVICE_DETECT;
  842. DEBUG_INFO("=================[State 1]===================\n");
  843. }
  844. else
  845. {
  846. DEBUG_INFO("Wifi support interface valid result: Fail\n");
  847. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiRssi = 0;
  848. Wifi_module_sts = STA_STATE_INIT;
  849. DEBUG_INFO("=================[State 0]===================\n");
  850. }
  851. }
  852. break;
  853. default:
  854. Wifi_module_sts = STA_STATE_INIT;
  855. break;
  856. }
  857. }
  858. void proc_ap()
  859. {
  860. switch(Wifi_module_sts)
  861. {
  862. case AP_STATE_INIT:
  863. // get info from shared memory
  864. getParameters();
  865. isSetWPA_OK = false;
  866. ShmStatusCodeData->InfoCode.InfoEvents.bits.ApDisconnectViaWiFi=1;
  867. // check interface
  868. if((strlen((const char*)Wifi_A.ssid)>0) && (isFindInterface() == PASS))
  869. {
  870. DEBUG_INFO("Wifi interface: %s\n", Wifi.currentInterface);
  871. Wifi_module_sts = AP_STATE_DEVICE_DETECT;
  872. ShmStatusCodeData->FaultCode.FaultEvents.bits.WiFiModuleBroken=0;
  873. DEBUG_INFO("=================[State 1]===================\n");
  874. }
  875. else
  876. {
  877. ShmStatusCodeData->FaultCode.FaultEvents.bits.WiFiModuleBroken=1;
  878. DEBUG_ERROR("Wifi support interface valid result: Fail\n");
  879. sleep(30);
  880. }
  881. break;
  882. case AP_STATE_DEVICE_DETECT:
  883. if(!isSetWPA_OK && (setWPAconf() == PASS))
  884. {
  885. isSetWPA_OK = true;
  886. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.WiFiModuleCommFail=0;
  887. sleep(5);
  888. }
  889. else if(isSetWPA_OK && (isStartUpAP() == PASS))
  890. {
  891. Wifi_module_sts = AP_STATE_AP_START;
  892. ShmStatusCodeData->InfoCode.InfoEvents.bits.ApDisconnectViaWiFi=0;
  893. DEBUG_INFO("=================[State 2]===================\n");
  894. }
  895. else
  896. {
  897. cnt_getAP_Fail++;
  898. DEBUG_INFO("Fail to start up AP %d times...\n",cnt_getAP_Fail);
  899. if(cnt_getAP_Fail>=3)
  900. {
  901. Wifi_module_sts = AP_STATE_INIT;
  902. cnt_getAP_Fail = 0;
  903. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.WiFiModuleCommFail=1;
  904. DEBUG_INFO("=================[State 0]===================\n");
  905. }
  906. else
  907. {
  908. sleep(10);
  909. }
  910. }
  911. break;
  912. case AP_STATE_AP_START:
  913. getInterfaceInfo();
  914. if(isStartUpAP() == PASS)
  915. {
  916. DEBUG_INFO("Wifi AP start up valid result: Pass\n");
  917. ShmStatusCodeData->InfoCode.InfoEvents.bits.ApDisconnectViaWiFi=0;
  918. cnt_pingDNS_Fail = 0;
  919. sleep(30);
  920. }
  921. else
  922. {
  923. cnt_pingDNS_Fail++;
  924. DEBUG_INFO("Wifi AP start up valid result: Fail %d time\n", cnt_pingDNS_Fail);
  925. sleep(5);
  926. }
  927. if(cnt_pingDNS_Fail >= 3)
  928. {
  929. ShmStatusCodeData->InfoCode.InfoEvents.bits.ApDisconnectViaWiFi=1;
  930. cnt_pingDNS_Fail = 0;
  931. DEBUG_INFO("Wifi AP start up status failed...");
  932. memset(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSubmaskAddress, 0, sizeof ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSubmaskAddress);
  933. memset(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiGatewayAddress, 0, sizeof ShmSysConfigAndInfo->SysConfig.AthInterface.WifiGatewayAddress);
  934. memset(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMacAddress, 0, sizeof ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMacAddress);
  935. if(isFindInterface() == PASS)
  936. {
  937. DEBUG_INFO("Wifi interface: %s\n", Wifi.currentInterface);
  938. isSetWPA_OK = false;
  939. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiRssi = 0;
  940. Wifi_module_sts = STA_STATE_DEVICE_DETECT;
  941. DEBUG_INFO("=================[State 1]===================\n");
  942. }
  943. else
  944. {
  945. DEBUG_INFO("Wifi support interface valid result: Fail\n");
  946. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiRssi = 0;
  947. Wifi_module_sts = STA_STATE_INIT;
  948. DEBUG_INFO("=================[State 0]===================\n");
  949. }
  950. }
  951. break;
  952. default:
  953. Wifi_module_sts = AP_STATE_INIT;
  954. break;
  955. }
  956. }
  957. int main(void)
  958. {
  959. if(InitShareMemory() == FAIL)
  960. {
  961. #ifdef SystemLogMessage
  962. DEBUG_ERROR("InitShareMemory NG\n");
  963. #endif
  964. if(ShmStatusCodeData!=NULL)
  965. {
  966. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.FailToCreateShareMemory=1;
  967. }
  968. sleep(5);
  969. return 0;
  970. }
  971. //=============================================
  972. // Install WIFI module driver
  973. //=============================================
  974. #ifdef UBLOX
  975. system("insmod /lib/modules/mlan.ko");
  976. system("insmod /lib/modules/usb8801.ko");
  977. sleep(5);
  978. system("ifconfig mlan0 up");
  979. system("ifconfig uap0 up");
  980. #endif
  981. #ifdef MT7601U
  982. system("insmod /lib/modules/mt7601u.ko");
  983. sleep(5);
  984. system("ifconfig wlan0 up");
  985. #endif
  986. DEBUG_INFO("=================[State 0]===================\n");
  987. for(;;)
  988. {
  989. switch(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMode)
  990. {
  991. case WIFI_MODE_STA:
  992. proc_sta();
  993. break;
  994. case WIFI_MODE_AP:
  995. proc_ap();
  996. break;
  997. case WIFI_MODE_ADHOC:
  998. break;
  999. case WIFI_MODE_DISABLE:
  1000. default:
  1001. break;
  1002. }
  1003. }
  1004. return 0;
  1005. }