Module_Wifi.c 27 KB

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