Module_Wifi.c 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149
  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. char *q[2];
  440. strcpy(cmd, "/root/iwconfig ");
  441. strcat(cmd, Wifi.currentInterface);
  442. fp = popen(cmd, "r");
  443. if(fp == NULL)
  444. result = FAIL;
  445. else
  446. {
  447. while(fgets(buf, sizeof(buf), fp) != NULL)
  448. {
  449. if(strstr(buf, "Quality") > 0)
  450. {
  451. sscanf(buf, "%*s%s", tmp);
  452. substr(tmp, tmp, strspn(tmp, "Quality="), strlen(buf)-strspn(tmp, "Quality="));
  453. split(q,tmp,"/");
  454. Wifi.rssi = (atoi(q[0])*100)/atoi(q[1]);
  455. result = PASS;
  456. }
  457. }
  458. }
  459. pclose(fp);
  460. return result;
  461. }
  462. //==========================================
  463. // WPA parameter set
  464. //==========================================
  465. int setWPAconf()
  466. {
  467. int result = FAIL;
  468. char cmdBuf[512];
  469. FILE *pFile;
  470. char buffer[500]="ctrl_interface=/var/run/wpa_supplicant\nupdate_config=1\n";
  471. // Stop dhcp client or server
  472. sprintf(cmdBuf, "pgrep -f \"udhcpc\" | xargs kill");
  473. system(cmdBuf);
  474. sprintf(cmdBuf, "pgrep -f \"udhcpd\" | xargs kill");
  475. system(cmdBuf);
  476. // Clear wifi configuration file
  477. system("cat /dev/null > /etc/wpa.conf");
  478. switch(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMode)
  479. {
  480. case WIFI_MODE_STA:
  481. // Fill out configuration value depend on share memory setting
  482. if(strlen((const char*)Wifi_A.passwd)>0)
  483. {
  484. if(strlen((const char*)Wifi_A.passwd)>=8)
  485. {
  486. strcat(buffer, "network={\n ssid=\"");
  487. strcat(buffer, (char*)Wifi_A.ssid);
  488. strcat(buffer, "\"\n key_mgmt=WPA-EAP WPA-PSK \n");
  489. strcat(buffer, " psk=\"");
  490. strcat(buffer, (char*)Wifi_A.passwd);
  491. strcat(buffer, "\"\n}\n\n");
  492. }
  493. if(strlen((const char*)Wifi_A.passwd)==5 || strlen((const char*)Wifi_A.passwd)==13)
  494. {
  495. strcat(buffer, "network={\n ssid=\"");
  496. strcat(buffer, (char*)Wifi_A.ssid);
  497. strcat(buffer, "\"\n key_mgmt=NONE\n");
  498. strcat(buffer, " wep_key0=\"");
  499. strcat(buffer, (char*)Wifi_A.passwd);
  500. strcat(buffer, "\"\n auth_alg=OPEN SHARED\n");
  501. strcat(buffer, "\n}\n\n");
  502. }
  503. strcat(buffer, "network={\n ssid=\"");
  504. strcat(buffer, (char*)Wifi_A.ssid);
  505. strcat(buffer, "\"\n key_mgmt=NONE");
  506. strcat(buffer, "\n}");
  507. }
  508. else
  509. {
  510. strcat(buffer, "network={\n ssid=\"");
  511. strcat(buffer, (char*)Wifi_A.ssid);
  512. strcat(buffer, "\"\n key_mgmt=NONE");
  513. strcat(buffer, "\n}");
  514. }
  515. // Configuration value write to /etc/wpa.conf
  516. pFile = fopen("/etc/wpa.conf","w");
  517. fwrite(buffer,strlen(buffer), 1, pFile);
  518. fclose(pFile);
  519. // Restart wpa_supplicant
  520. sprintf(cmdBuf, "pgrep -f \"wpa_supplicant\" | xargs kill");
  521. system(cmdBuf);
  522. sprintf(cmdBuf, "/root/wpa_supplicant -i %s -c /etc/wpa.conf -B", Wifi.currentInterface);
  523. system(cmdBuf);
  524. // Stop wifi AP
  525. sprintf(cmdBuf, "/root/uaputl bss_stop");
  526. system(cmdBuf);
  527. sleep(5);
  528. // Wifi IP set by DHCP client or static
  529. if(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpClient==0)
  530. {
  531. sprintf(cmdBuf, "/sbin/udhcpc -i %s -s /root/dhcp_script/wifi.script > /dev/null &", Wifi.currentInterface);
  532. system(cmdBuf);
  533. }
  534. else
  535. {
  536. strcpy(cmdBuf, "ifconfig ");
  537. strcat(cmdBuf, Wifi.currentInterface);
  538. strcat(cmdBuf, " ");
  539. strcat(cmdBuf, Wifi.staticIPAddr);
  540. system(cmdBuf);
  541. DEBUG_INFO("Setting %s static IP to %s ...\n", Wifi.currentInterface, Wifi.staticIPAddr);
  542. }
  543. break;
  544. case WIFI_MODE_AP:
  545. // Stop wifi AP
  546. sprintf(cmdBuf, "/root/uaputl bss_stop");
  547. system(cmdBuf);
  548. // Set SSID to uaputl.conf
  549. sprintf(cmdBuf, "sed -i 's/ SSID=.*$/ SSID=\"%s\"/' /root/uaputl_config/uaputl.conf", Wifi_A.ssid);
  550. system(cmdBuf);
  551. // Set AP configuration by uaputl.conf
  552. sprintf(cmdBuf, "/root/uaputl sys_config /root/uaputl_config/uaputl.conf");
  553. system(cmdBuf);
  554. // Start up wifi AP
  555. sprintf(cmdBuf, "/root/uaputl bss_start");
  556. system(cmdBuf);
  557. sleep(5);
  558. // Set wifi AP ip address
  559. sprintf(cmdBuf, "ifconfig %s 192.168.10.10", Wifi.currentInterface);
  560. system(cmdBuf);
  561. DEBUG_INFO("Setting %s static IP to 192.168.10.10...\n", Wifi.currentInterface);
  562. // Start DHCP server
  563. if(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpServer==0)
  564. {
  565. sprintf(cmdBuf, "/usr/sbin/udhcpd /etc/udhcpd.conf > /dev/null &");
  566. system(cmdBuf);
  567. }
  568. break;
  569. case WIFI_MODE_ADHOC:
  570. break;
  571. case WIFI_MODE_DISABLE:
  572. default:
  573. break;
  574. }
  575. result = PASS;
  576. return result;
  577. }
  578. //=================================
  579. // Common routine
  580. //=================================
  581. char* getTimeString(void)
  582. {
  583. char *result=malloc(21);
  584. time_t timep;
  585. struct tm *p;
  586. time(&timep);
  587. p=gmtime(&timep);
  588. 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);
  589. return result;
  590. }
  591. void trim(char *s)
  592. {
  593. int i=0, j, k, l=0;
  594. while((s[i]==' ')||(s[i]=='\t')||(s[i]=='\n'))
  595. i++;
  596. j = strlen(s)-1;
  597. while((s[j]==' ')||(s[j]=='\t')||(s[j]=='\n'))
  598. j--;
  599. if(i==0 && j==strlen(s)-1) { }
  600. else if(i==0) s[j+1] = '\0';
  601. else {
  602. for(k=i; k<=j; k++) s[l++] = s[k];
  603. s[l] = '\0';
  604. }
  605. }
  606. int mystrcmp(char *p1,char *p2)
  607. {
  608. while(*p1==*p2)
  609. {
  610. if(*p1=='\0' || *p2=='\0')
  611. break;
  612. p1++;
  613. p2++;
  614. }
  615. if(*p1=='\0' && *p2=='\0')
  616. return(PASS);
  617. else
  618. return(FAIL);
  619. }
  620. void substr(char *dest, const char* src, unsigned int start, unsigned int cnt)
  621. {
  622. strncpy(dest, src + start, cnt);
  623. dest[cnt] = 0;
  624. }
  625. void split(char **arr, char *str, const char *del)
  626. {
  627. char *s = strtok(str, del);
  628. while(s != NULL)
  629. {
  630. *arr++ = s;
  631. s = strtok(NULL, del);
  632. }
  633. }
  634. int checkIP(void)
  635. {
  636. // DHCP or static setting
  637. int isGetIP = FAIL;
  638. FILE *fp;
  639. char buf[512];
  640. char tmp[512];
  641. char cmd[512];
  642. if(Wifi.ipType == IP_TYPE_DHCP) {
  643. // Get IP address & net mask
  644. strcpy(cmd, "ifconfig ");
  645. strcat(cmd, Wifi.currentInterface);
  646. fp = popen(cmd, "r");
  647. if(fp == NULL)
  648. isGetIP = FAIL;
  649. else
  650. {
  651. while(fgets(buf, sizeof(buf), fp) != NULL)
  652. {
  653. if(strstr(buf, "addr:") > 0)
  654. {
  655. if(strstr(buf, "192.168.1.10") > 0)
  656. {
  657. DEBUG_INFO("IP cannot be same as default value of Ethernet...\n");
  658. }
  659. else
  660. {
  661. isGetIP = PASS;
  662. cnt_getIP_Fail = 0;
  663. }
  664. sscanf(buf, "%*s%s", tmp);
  665. substr(Wifi.currentIPAddr, tmp, strspn(tmp, "addr:"), strlen(buf)-strspn(tmp, "addr:"));
  666. sscanf(buf, "%*s%*s%*s%s", tmp);
  667. substr(Wifi.currentNetmask, tmp, strspn(tmp, "Mask:"), strlen(buf)-strspn(tmp, "Mask:"));
  668. }else {
  669. }
  670. }
  671. }
  672. if(isGetIP == FAIL && cnt_getIP_Fail<3) {
  673. sprintf(cmd, "pgrep -f \"udhcpc -i %s\" | xargs kill", Wifi.currentInterface);
  674. system(cmd);
  675. if(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpClient==0)
  676. {
  677. sprintf(cmd, "/sbin/udhcpc -i %s -s /root/dhcp_script/wifi.script > /dev/null &", Wifi.currentInterface);
  678. system(cmd);
  679. }
  680. DEBUG_INFO("Sending DHCP request...\n");
  681. cnt_getIP_Fail++;
  682. sleep(5);
  683. }
  684. pclose(fp);
  685. }else {
  686. strcpy(cmd, "ifconfig ");
  687. strcat(cmd, Wifi.currentInterface);
  688. strcat(cmd, " ");
  689. strcat(cmd, Wifi.staticIPAddr);
  690. fp = popen(cmd, "r");
  691. DEBUG_INFO("Setting static IP to %s ...\n", Wifi.staticIPAddr);
  692. pclose(fp);
  693. isGetIP = PASS;
  694. }
  695. cnt_getIP_Fail = 0;
  696. return isGetIP;
  697. }
  698. int restartWPA(void)
  699. {
  700. int result = FAIL;
  701. FILE *fp;
  702. char buf[512];
  703. char cmd[50];
  704. // Get IP address & net mask
  705. strcpy(cmd, "wpa_cli -i ");
  706. strcat(cmd, Wifi.currentInterface);
  707. strcat(cmd, " reconfigure");
  708. fp = popen(cmd, "r");
  709. DEBUG_INFO("WPA reconfigure %s ...\n", Wifi.currentInterface);
  710. if(fp == NULL)
  711. result = FAIL;
  712. else
  713. {
  714. while(fgets(buf, sizeof(buf), fp) != NULL)
  715. {
  716. if(strstr(buf, "OK") > 0)
  717. {
  718. DEBUG_INFO("reconfigure OK.\n");
  719. result = PASS;
  720. }else {
  721. DEBUG_INFO("reconfigure failed.\n");
  722. result = FAIL;
  723. }
  724. }
  725. }
  726. pclose(fp);
  727. if(result == PASS) {
  728. strcpy(cmd, "wpa_cli -i ");
  729. strcat(cmd, Wifi.currentInterface);
  730. strcat(cmd, " reconfigure");
  731. fp = popen(cmd, "r");
  732. DEBUG_INFO("WPA reconnect %s ...\n", Wifi.currentInterface);
  733. if(fp == NULL)
  734. result = FAIL;
  735. else{
  736. while(fgets(buf, sizeof(buf), fp) != NULL)
  737. {
  738. if(strstr(buf, "OK") > 0){
  739. DEBUG_INFO("reconnect OK.\n");
  740. result = PASS;
  741. }else {
  742. DEBUG_INFO("reconnect failed.\n");
  743. result = FAIL;
  744. }
  745. }
  746. }
  747. pclose(fp);
  748. }
  749. return result;
  750. }
  751. void proc_sta()
  752. {
  753. switch(Wifi_module_sts)
  754. {
  755. case STA_STATE_INIT:
  756. dispReq.isShowed_IF_info = false;
  757. // get info from shared memory
  758. getParameters();
  759. ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectViaWiFi=1;
  760. ShmStatusCodeData->InfoCode.InfoEvents.bits.ApDisconnectViaWiFi=1;
  761. isSetWPA_OK = false;
  762. // check interface
  763. if((strlen((const char*)Wifi_A.ssid)>0) && (isFindInterface() == PASS))
  764. {
  765. DEBUG_INFO("Wifi interface: %s\n", Wifi.currentInterface);
  766. Wifi_module_sts = STA_STATE_DEVICE_DETECT;
  767. ShmStatusCodeData->FaultCode.FaultEvents.bits.WiFiModuleBroken=0;
  768. DEBUG_INFO("=================[State 1]===================\n");
  769. }
  770. else
  771. {
  772. ShmStatusCodeData->FaultCode.FaultEvents.bits.WiFiModuleBroken=1;
  773. DEBUG_ERROR("Wifi support interface valid result: Fail\n");
  774. sleep(30);
  775. }
  776. break;
  777. case STA_STATE_DEVICE_DETECT:
  778. dispReq.isShowed_IP_info = false;
  779. if(!isSetWPA_OK && (setWPAconf() == PASS))
  780. {
  781. isSetWPA_OK = true;
  782. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.WiFiModuleCommFail=0;
  783. sleep(5);
  784. }
  785. else if((isSetWPA_OK == true) && (isConnectAP() == PASS))
  786. {
  787. Wifi_module_sts = STA_STATE_AP_CONNECTED;
  788. ShmStatusCodeData->InfoCode.InfoEvents.bits.ApDisconnectViaWiFi=0;
  789. DEBUG_INFO("=================[State 2]===================\n");
  790. }
  791. else
  792. {
  793. cnt_getAP_Fail++;
  794. DEBUG_INFO("Fail to connect to the AP %d times...\n",cnt_getAP_Fail);
  795. if(cnt_getAP_Fail>=3)
  796. {
  797. Wifi_module_sts = STA_STATE_INIT;
  798. cnt_getAP_Fail = 0;
  799. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.WiFiModuleCommFail=1;
  800. DEBUG_INFO("=================[State 0]===================\n");
  801. }
  802. else
  803. {
  804. sleep(10);
  805. }
  806. }
  807. break;
  808. case STA_STATE_AP_CONNECTED:
  809. getInterfaceInfo();
  810. getLinkQuality();
  811. DEBUG_INFO("Wifi quality: %d\n", Wifi.rssi);
  812. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiRssi = Wifi.rssi;
  813. if(isReachableInternet() == PASS)
  814. {
  815. DEBUG_INFO("Wifi internet valid result: Pass\n");
  816. ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectViaWiFi=0;
  817. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiNetworkConn=1;
  818. cnt_pingDNS_Fail = 0;
  819. sleep(30);
  820. }
  821. else
  822. {
  823. cnt_pingDNS_Fail++;
  824. DEBUG_INFO("Wifi internet valid result: Fail %d time\n", cnt_pingDNS_Fail);
  825. sleep(5);
  826. }
  827. if(cnt_pingDNS_Fail >= 3)
  828. {
  829. ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectViaWiFi=1;
  830. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiNetworkConn=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. }