FactoryConfig.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  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/can.h>
  13. #include <linux/can/raw.h>
  14. #include <linux/wireless.h>
  15. #include <arpa/inet.h>
  16. #include <netinet/in.h>
  17. #include <unistd.h>
  18. #include <stdarg.h>
  19. #include <stdio.h> /*標準輸入輸出定義*/
  20. #include <stdlib.h> /*標準函數庫定義*/
  21. #include <unistd.h> /*Unix 標準函數定義*/
  22. #include <fcntl.h> /*檔控制定義*/
  23. #include <termios.h> /*PPSIX 終端控制定義*/
  24. #include <errno.h> /*錯誤號定義*/
  25. #include <errno.h>
  26. #include <string.h>
  27. #include <time.h>
  28. #include <ctype.h>
  29. #include <ifaddrs.h>
  30. #include "./Define/define.h"
  31. #include "Config.h"
  32. #define Debug
  33. #define OUTPUT_FLASH 0x01
  34. #define OUTPUT_FILE 0x02
  35. struct SysConfigData SysConfig;
  36. int StoreLogMsg(const char *fmt, ...)
  37. {
  38. char Buf[4096 + 256];
  39. char buffer[4096];
  40. va_list args;
  41. struct timeb SeqEndTime;
  42. struct tm *tm;
  43. va_start(args, fmt);
  44. int rc = vsnprintf(buffer, sizeof(buffer), fmt, args);
  45. va_end(args);
  46. memset(Buf, 0, sizeof(Buf));
  47. ftime(&SeqEndTime);
  48. SeqEndTime.time = time(NULL);
  49. tm = localtime(&SeqEndTime.time);
  50. sprintf(Buf, "echo \"%04d-%02d-%02d %02d:%02d:%02d:%03d - %s\" >> /Storage/SystemLog/[%04d.%02d]SystemLog",
  51. tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday, tm->tm_hour, tm->tm_min, tm->tm_sec, SeqEndTime.millitm,
  52. buffer,
  53. tm->tm_year + 1900, tm->tm_mon + 1);
  54. system(Buf);
  55. return rc;
  56. }
  57. void helpOutput(void)
  58. {
  59. printf("Usage: Module_FactoryConfig [OPTION]...\r\n\r\n");
  60. printf("Generate factory default configuration value\r\n\r\n");
  61. printf("OPTION:\r\n");
  62. printf(" -a Write to file(/mnt) & flash\r\n");
  63. printf(" -f Write to file(/mnt)\r\n");
  64. printf(" -m Write to flash\r\n");
  65. }
  66. /**************************************************************************************/
  67. /************This task will create Factory default confgiuration file *****************/
  68. /***********and store it into mtdblock 10,11,12 ****************/
  69. /**************************************************************************************/
  70. int main(int argc, char *argv[])
  71. {
  72. uint8_t outType = 0;
  73. unsigned int i, Chk, MtdBlockSize = 0x600000;
  74. uint8_t *ptr;
  75. int fd, wrd;
  76. ptr = malloc(MtdBlockSize);
  77. if (ptr == NULL) {
  78. #ifdef SystemLogMessage
  79. StoreLogMsg("[FactoryConfig]main: malloc for SysConfigData NG");
  80. #endif
  81. return 0;
  82. }
  83. memset(ptr, 0, MtdBlockSize);
  84. memset(&SysConfig, 0, sizeof(struct SysConfigData));
  85. /*
  86. * TODO: Set factory default configuration
  87. */
  88. //********** System **********// udhcpc -i eth1 -s ./dhcp_script/eth1.script
  89. //
  90. strcpy((char *)SysConfig.ModelName, "DXYE18200EE1E4");
  91. strcpy((char *)SysConfig.SerialNumber, "SERIALFORRD");
  92. memset(SysConfig.SystemId, 0x00, sizeof(SysConfig.SystemId));
  93. char Dash = '-';
  94. strcat((char *)SysConfig.SystemId, (char *)SysConfig.ModelName);
  95. strncat((char *)SysConfig.SystemId, &Dash, 1);
  96. strcat((char *)SysConfig.SystemId, (char *)SysConfig.SerialNumber);
  97. strcpy((char *)SysConfig.SystemDateTime, "");
  98. SysConfig.AuthorisationMode = AUTH_MODE_ENABLE;
  99. SysConfig.DefaultLanguage = 0;
  100. SysConfig.RfidCardNumEndian = 0;
  101. SysConfig.AcPlugInTimes = 0;
  102. SysConfig.GbPlugInTimes = 0;
  103. SysConfig.Ccs1PlugInTime = 0;
  104. SysConfig.Ccs2PlugInTimes = 0;
  105. SysConfig.ChademoPlugInTimes = 0;
  106. SysConfig.BillingData.isBilling = 0;
  107. SysConfig.isAPP = 1;
  108. SysConfig.isQRCode = 1;
  109. SysConfig.isRFID = 1;
  110. //********** Charging **********//
  111. SysConfig.MaxChargingEnergy = 0;
  112. SysConfig.MaxChargingCurrent = 500; // 最大可輸出電流 (整樁)
  113. SysConfig.MaxChargingDuration = 0;
  114. SysConfig.AcMaxChargingCurrent = 0;
  115. SysConfig.PhaseLossPolicy = 0;
  116. /*+++ 20200908, vern, modify it +++*/
  117. /*for(uint8_t i = 0; i < 10; i++)
  118. strcpy((char *)SysConfig.LocalWhiteCard, "");*/
  119. memset(SysConfig.LocalWhiteCard, 0, sizeof(SysConfig.LocalWhiteCard));
  120. /*--- 20200908, vern, modify it ---*/
  121. strcpy((char *)SysConfig.UserId, "");
  122. //********** Network **********//
  123. strcpy((char *)SysConfig.FtpServer, "");
  124. SysConfig.Eth0Interface.EthDhcpClient = 0;
  125. strcpy((char *) SysConfig.Eth0Interface.EthIpAddress, "192.168.1.10");
  126. strcpy((char *) SysConfig.Eth0Interface.EthSubmaskAddress, "255.255.255.0");
  127. strcpy((char *) SysConfig.Eth0Interface.EthGatewayAddress, "192.168.1.254");
  128. SysConfig.Eth1Interface.EthDhcpClient = 0;
  129. strcpy((char *) SysConfig.Eth1Interface.EthIpAddress, "192.168.0.10");
  130. strcpy((char *) SysConfig.Eth1Interface.EthSubmaskAddress, "255.255.255.0");
  131. strcpy((char *) SysConfig.Eth1Interface.EthGatewayAddress, "192.168.0.254");
  132. if (SysConfig.ModelName[10] == 'W') {
  133. SysConfig.AthInterface.WifiMode = 2;
  134. } else {
  135. SysConfig.AthInterface.WifiMode = 0;
  136. }
  137. strcpy((char *) SysConfig.AthInterface.WifiSsid, "");
  138. strcpy((char *) SysConfig.AthInterface.WifiPassword, "");
  139. SysConfig.AthInterface.WifiRssi = 0;
  140. SysConfig.AthInterface.WifiDhcpServer = 0;
  141. SysConfig.AthInterface.WifiDhcpClient = 0;
  142. strcpy((char *) SysConfig.AthInterface.WifiMacAddress, "");
  143. strcpy((char *) SysConfig.AthInterface.WifiIpAddress, "");
  144. strcpy((char *) SysConfig.AthInterface.WifiSubmaskAddress, "");
  145. strcpy((char *) SysConfig.AthInterface.WifiGatewayAddress, "");
  146. SysConfig.AthInterface.WifiNetworkConn = 0;
  147. strcpy((char *) SysConfig.TelecomInterface.TelcomModelName, "");
  148. strcpy((char *) SysConfig.TelecomInterface.TelcomSoftwareVer, "");
  149. //strcpy((char *) SysConfig.TelecomInterface.TelcomApn, "Internet");
  150. strcpy((char *) SysConfig.TelecomInterface.TelcomApn, "");
  151. SysConfig.TelecomInterface.TelcomRssi = 0;
  152. strcpy((char *) SysConfig.TelecomInterface.TelcomChapPapId, " ");
  153. strcpy((char *) SysConfig.TelecomInterface.TelcomChapPapPwd, " ");
  154. strcpy((char *) SysConfig.TelecomInterface.TelcomModemImei, "");
  155. strcpy((char *) SysConfig.TelecomInterface.TelcomSimImsi, "");
  156. strcpy((char *) SysConfig.TelecomInterface.TelcomSimIccid, "");
  157. SysConfig.TelecomInterface.TelcomSimStatus = 0;
  158. SysConfig.TelecomInterface.TelcomModemMode = 0;
  159. strcpy((char *) SysConfig.TelecomInterface.TelcomIpAddress, "");
  160. SysConfig.TelecomInterface.TelcomNetworkConn = 0;
  161. strcpy((char *)SysConfig.chargePointVendor, "Phihong Technology");
  162. //********** Backend **********//
  163. SysConfig.BackendConnTimeout = 300; //300 seconds
  164. SysConfig.OfflinePolicy = 2;
  165. SysConfig.OfflineMaxChargeEnergy = 0;
  166. SysConfig.OfflineMaxChargeDuration = 0;
  167. strcpy((char *) SysConfig.OcppServerURL, "");
  168. strcpy((char *) SysConfig.ChargeBoxId, "");
  169. SysConfig.LedInfo.Intensity = 2;
  170. //copy default configuration to pointer
  171. memcpy(ptr, &SysConfig, sizeof(struct SysConfigData));
  172. //calculate CRC
  173. Chk = 0;
  174. for (i = 0; i < (MtdBlockSize - 4); i++) {
  175. Chk += *(ptr + i);
  176. }
  177. memcpy( ptr + MtdBlockSize - 4, &Chk, 4);
  178. /*
  179. * Parameter process
  180. */
  181. if (argc > 1) {
  182. char *arg = argv[1];
  183. switch (arg[0]) {
  184. case '-':
  185. switch (arg[1]) {
  186. case 'a':
  187. outType |= OUTPUT_FILE;
  188. outType |= OUTPUT_FLASH;
  189. break;
  190. case 'f':
  191. outType |= OUTPUT_FILE;
  192. break;
  193. case 'm':
  194. outType |= OUTPUT_FLASH;
  195. break;
  196. default:
  197. helpOutput();
  198. break;
  199. }
  200. break;
  201. default:
  202. helpOutput();
  203. break;
  204. }
  205. } else {
  206. helpOutput();
  207. }
  208. if (argc == 4) {
  209. strcpy((char *)SysConfig.ModelName, argv[2]);
  210. strcpy((char *)SysConfig.SerialNumber, argv[3]);
  211. } else {
  212. strcpy((char *)SysConfig.ModelName, "DDYC182V0UE2AD");
  213. strcpy((char *)SysConfig.SerialNumber, "SERIALFORRD");
  214. }
  215. /*
  216. * Configuration bin file generate
  217. */
  218. if ((outType & OUTPUT_FILE) > 0) {
  219. fd = open("/mnt/FactoryDefaultConfig.bin", O_RDWR | O_CREAT);
  220. if (fd < 0) {
  221. StoreLogMsg("[FactoryConfig]main: open /mnt/FactoryDefaultConfig.bin NG");
  222. free(ptr);
  223. return 0;
  224. }
  225. wrd = write(fd, ptr, MtdBlockSize);
  226. close(fd);
  227. if (wrd < MtdBlockSize) {
  228. StoreLogMsg("write /mnt/FactoryDefaultConfig.bin NG\r\n");
  229. free(ptr);
  230. return 0;
  231. }
  232. StoreLogMsg("FactoryConfig write to file in /mnt OK.\r\n");
  233. }
  234. /*
  235. * Flash memory write
  236. */
  237. if ((outType & OUTPUT_FLASH) > 0) {
  238. // Save factory default setting value to flash factory default setting block
  239. fd = open("/dev/mtdblock12", O_RDWR);
  240. if (fd < 0) {
  241. StoreLogMsg("open /dev/mtdblock12 NG\r\n");
  242. free(ptr);
  243. return 0;
  244. }
  245. wrd = write(fd, ptr, MtdBlockSize);
  246. close(fd);
  247. if (wrd < MtdBlockSize) {
  248. StoreLogMsg("write /dev/mtdblock12 NG\r\n");
  249. free(ptr);
  250. return 0;
  251. }
  252. // Save factory default setting value to flash backup setting block
  253. fd = open("/dev/mtdblock11", O_RDWR);
  254. if (fd < 0) {
  255. StoreLogMsg("open /dev/mtdblock11 NG\r\n");
  256. free(ptr);
  257. return 0;
  258. }
  259. wrd = write(fd, ptr, MtdBlockSize);
  260. close(fd);
  261. if (wrd < MtdBlockSize) {
  262. StoreLogMsg("write /dev/mtdblock11 NG\r\n");
  263. free(ptr);
  264. return 0;
  265. }
  266. // Save factory default setting value to flash setting block
  267. fd = open("/dev/mtdblock10", O_RDWR);
  268. if (fd < 0) {
  269. StoreLogMsg("open /dev/mtdblock10 NG\r\n");
  270. free(ptr);
  271. return 0;
  272. }
  273. wrd = write(fd, ptr, MtdBlockSize);
  274. close(fd);
  275. if (wrd < MtdBlockSize) {
  276. StoreLogMsg("write /dev/mtdblock10 NG\r\n");
  277. free(ptr);
  278. return 0;
  279. }
  280. StoreLogMsg("FactoryConfig write to flash OK\r\n");
  281. }
  282. free(ptr);
  283. return FAIL;
  284. }