Module_Wifi.c 29 KB

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