Module_Wifi.c 27 KB

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