config_file.c 40 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547
  1. /*
  2. * WPA Supplicant / Configuration backend: text file
  3. * Copyright (c) 2003-2012, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. *
  8. * This file implements a configuration backend for text files. All the
  9. * configuration information is stored in a text file that uses a format
  10. * described in the sample configuration file, wpa_supplicant.conf.
  11. */
  12. #include "includes.h"
  13. #ifdef ANDROID
  14. #include <sys/stat.h>
  15. #endif /* ANDROID */
  16. #include "common.h"
  17. #include "config.h"
  18. #include "base64.h"
  19. #include "uuid.h"
  20. #include "common/ieee802_1x_defs.h"
  21. #include "p2p/p2p.h"
  22. #include "eap_peer/eap_methods.h"
  23. #include "eap_peer/eap.h"
  24. static int newline_terminated(const char *buf, size_t buflen)
  25. {
  26. size_t len = os_strlen(buf);
  27. if (len == 0)
  28. return 0;
  29. if (len == buflen - 1 && buf[buflen - 1] != '\r' &&
  30. buf[len - 1] != '\n')
  31. return 0;
  32. return 1;
  33. }
  34. static void skip_line_end(FILE *stream)
  35. {
  36. char buf[100];
  37. while (fgets(buf, sizeof(buf), stream)) {
  38. buf[sizeof(buf) - 1] = '\0';
  39. if (newline_terminated(buf, sizeof(buf)))
  40. return;
  41. }
  42. }
  43. /**
  44. * wpa_config_get_line - Read the next configuration file line
  45. * @s: Buffer for the line
  46. * @size: The buffer length
  47. * @stream: File stream to read from
  48. * @line: Pointer to a variable storing the file line number
  49. * @_pos: Buffer for the pointer to the beginning of data on the text line or
  50. * %NULL if not needed (returned value used instead)
  51. * Returns: Pointer to the beginning of data on the text line or %NULL if no
  52. * more text lines are available.
  53. *
  54. * This function reads the next non-empty line from the configuration file and
  55. * removes comments. The returned string is guaranteed to be null-terminated.
  56. */
  57. static char * wpa_config_get_line(char *s, int size, FILE *stream, int *line,
  58. char **_pos)
  59. {
  60. char *pos, *end, *sstart;
  61. while (fgets(s, size, stream)) {
  62. (*line)++;
  63. s[size - 1] = '\0';
  64. if (!newline_terminated(s, size)) {
  65. /*
  66. * The line was truncated - skip rest of it to avoid
  67. * confusing error messages.
  68. */
  69. wpa_printf(MSG_INFO, "Long line in configuration file "
  70. "truncated");
  71. skip_line_end(stream);
  72. }
  73. pos = s;
  74. /* Skip white space from the beginning of line. */
  75. while (*pos == ' ' || *pos == '\t' || *pos == '\r')
  76. pos++;
  77. /* Skip comment lines and empty lines */
  78. if (*pos == '#' || *pos == '\n' || *pos == '\0')
  79. continue;
  80. /*
  81. * Remove # comments unless they are within a double quoted
  82. * string.
  83. */
  84. sstart = os_strchr(pos, '"');
  85. if (sstart)
  86. sstart = os_strrchr(sstart + 1, '"');
  87. if (!sstart)
  88. sstart = pos;
  89. end = os_strchr(sstart, '#');
  90. if (end)
  91. *end-- = '\0';
  92. else
  93. end = pos + os_strlen(pos) - 1;
  94. /* Remove trailing white space. */
  95. while (end > pos &&
  96. (*end == '\n' || *end == ' ' || *end == '\t' ||
  97. *end == '\r'))
  98. *end-- = '\0';
  99. if (*pos == '\0')
  100. continue;
  101. if (_pos)
  102. *_pos = pos;
  103. return pos;
  104. }
  105. if (_pos)
  106. *_pos = NULL;
  107. return NULL;
  108. }
  109. static int wpa_config_validate_network(struct wpa_ssid *ssid, int line)
  110. {
  111. int errors = 0;
  112. if (ssid->passphrase) {
  113. if (ssid->psk_set) {
  114. wpa_printf(MSG_ERROR, "Line %d: both PSK and "
  115. "passphrase configured.", line);
  116. errors++;
  117. }
  118. wpa_config_update_psk(ssid);
  119. }
  120. if (ssid->disabled == 2)
  121. ssid->p2p_persistent_group = 1;
  122. if ((ssid->group_cipher & WPA_CIPHER_CCMP) &&
  123. !(ssid->pairwise_cipher & WPA_CIPHER_CCMP) &&
  124. !(ssid->pairwise_cipher & WPA_CIPHER_NONE)) {
  125. /* Group cipher cannot be stronger than the pairwise cipher. */
  126. wpa_printf(MSG_DEBUG, "Line %d: removed CCMP from group cipher"
  127. " list since it was not allowed for pairwise "
  128. "cipher", line);
  129. ssid->group_cipher &= ~WPA_CIPHER_CCMP;
  130. }
  131. if (ssid->mode == WPAS_MODE_MESH &&
  132. (ssid->key_mgmt != WPA_KEY_MGMT_NONE &&
  133. ssid->key_mgmt != WPA_KEY_MGMT_SAE)) {
  134. wpa_printf(MSG_ERROR,
  135. "Line %d: key_mgmt for mesh network should be open or SAE",
  136. line);
  137. errors++;
  138. }
  139. return errors;
  140. }
  141. static struct wpa_ssid * wpa_config_read_network(FILE *f, int *line, int id)
  142. {
  143. struct wpa_ssid *ssid;
  144. int errors = 0, end = 0;
  145. char buf[2000], *pos, *pos2;
  146. wpa_printf(MSG_MSGDUMP, "Line: %d - start of a new network block",
  147. *line);
  148. ssid = os_zalloc(sizeof(*ssid));
  149. if (ssid == NULL)
  150. return NULL;
  151. dl_list_init(&ssid->psk_list);
  152. ssid->id = id;
  153. wpa_config_set_network_defaults(ssid);
  154. while (wpa_config_get_line(buf, sizeof(buf), f, line, &pos)) {
  155. if (os_strcmp(pos, "}") == 0) {
  156. end = 1;
  157. break;
  158. }
  159. pos2 = os_strchr(pos, '=');
  160. if (pos2 == NULL) {
  161. wpa_printf(MSG_ERROR, "Line %d: Invalid SSID line "
  162. "'%s'.", *line, pos);
  163. errors++;
  164. continue;
  165. }
  166. *pos2++ = '\0';
  167. if (*pos2 == '"') {
  168. if (os_strchr(pos2 + 1, '"') == NULL) {
  169. wpa_printf(MSG_ERROR, "Line %d: invalid "
  170. "quotation '%s'.", *line, pos2);
  171. errors++;
  172. continue;
  173. }
  174. }
  175. if (wpa_config_set(ssid, pos, pos2, *line) < 0)
  176. errors++;
  177. }
  178. if (!end) {
  179. wpa_printf(MSG_ERROR, "Line %d: network block was not "
  180. "terminated properly.", *line);
  181. errors++;
  182. }
  183. errors += wpa_config_validate_network(ssid, *line);
  184. if (errors) {
  185. wpa_config_free_ssid(ssid);
  186. ssid = NULL;
  187. }
  188. return ssid;
  189. }
  190. static struct wpa_cred * wpa_config_read_cred(FILE *f, int *line, int id)
  191. {
  192. struct wpa_cred *cred;
  193. int errors = 0, end = 0;
  194. char buf[256], *pos, *pos2;
  195. wpa_printf(MSG_MSGDUMP, "Line: %d - start of a new cred block", *line);
  196. cred = os_zalloc(sizeof(*cred));
  197. if (cred == NULL)
  198. return NULL;
  199. cred->id = id;
  200. cred->sim_num = DEFAULT_USER_SELECTED_SIM;
  201. while (wpa_config_get_line(buf, sizeof(buf), f, line, &pos)) {
  202. if (os_strcmp(pos, "}") == 0) {
  203. end = 1;
  204. break;
  205. }
  206. pos2 = os_strchr(pos, '=');
  207. if (pos2 == NULL) {
  208. wpa_printf(MSG_ERROR, "Line %d: Invalid cred line "
  209. "'%s'.", *line, pos);
  210. errors++;
  211. continue;
  212. }
  213. *pos2++ = '\0';
  214. if (*pos2 == '"') {
  215. if (os_strchr(pos2 + 1, '"') == NULL) {
  216. wpa_printf(MSG_ERROR, "Line %d: invalid "
  217. "quotation '%s'.", *line, pos2);
  218. errors++;
  219. continue;
  220. }
  221. }
  222. if (wpa_config_set_cred(cred, pos, pos2, *line) < 0)
  223. errors++;
  224. }
  225. if (!end) {
  226. wpa_printf(MSG_ERROR, "Line %d: cred block was not "
  227. "terminated properly.", *line);
  228. errors++;
  229. }
  230. if (errors) {
  231. wpa_config_free_cred(cred);
  232. cred = NULL;
  233. }
  234. return cred;
  235. }
  236. #ifndef CONFIG_NO_CONFIG_BLOBS
  237. static struct wpa_config_blob * wpa_config_read_blob(FILE *f, int *line,
  238. const char *name)
  239. {
  240. struct wpa_config_blob *blob;
  241. char buf[256], *pos;
  242. unsigned char *encoded = NULL, *nencoded;
  243. int end = 0;
  244. size_t encoded_len = 0, len;
  245. wpa_printf(MSG_MSGDUMP, "Line: %d - start of a new named blob '%s'",
  246. *line, name);
  247. while (wpa_config_get_line(buf, sizeof(buf), f, line, &pos)) {
  248. if (os_strcmp(pos, "}") == 0) {
  249. end = 1;
  250. break;
  251. }
  252. len = os_strlen(pos);
  253. nencoded = os_realloc(encoded, encoded_len + len);
  254. if (nencoded == NULL) {
  255. wpa_printf(MSG_ERROR, "Line %d: not enough memory for "
  256. "blob", *line);
  257. os_free(encoded);
  258. return NULL;
  259. }
  260. encoded = nencoded;
  261. os_memcpy(encoded + encoded_len, pos, len);
  262. encoded_len += len;
  263. }
  264. if (!end || !encoded) {
  265. wpa_printf(MSG_ERROR, "Line %d: blob was not terminated "
  266. "properly", *line);
  267. os_free(encoded);
  268. return NULL;
  269. }
  270. blob = os_zalloc(sizeof(*blob));
  271. if (blob == NULL) {
  272. os_free(encoded);
  273. return NULL;
  274. }
  275. blob->name = os_strdup(name);
  276. blob->data = base64_decode(encoded, encoded_len, &blob->len);
  277. os_free(encoded);
  278. if (blob->name == NULL || blob->data == NULL) {
  279. wpa_config_free_blob(blob);
  280. return NULL;
  281. }
  282. return blob;
  283. }
  284. static int wpa_config_process_blob(struct wpa_config *config, FILE *f,
  285. int *line, char *bname)
  286. {
  287. char *name_end;
  288. struct wpa_config_blob *blob;
  289. name_end = os_strchr(bname, '=');
  290. if (name_end == NULL) {
  291. wpa_printf(MSG_ERROR, "Line %d: no blob name terminator",
  292. *line);
  293. return -1;
  294. }
  295. *name_end = '\0';
  296. blob = wpa_config_read_blob(f, line, bname);
  297. if (blob == NULL) {
  298. wpa_printf(MSG_ERROR, "Line %d: failed to read blob %s",
  299. *line, bname);
  300. return -1;
  301. }
  302. wpa_config_set_blob(config, blob);
  303. return 0;
  304. }
  305. #endif /* CONFIG_NO_CONFIG_BLOBS */
  306. struct wpa_config * wpa_config_read(const char *name, struct wpa_config *cfgp)
  307. {
  308. FILE *f;
  309. char buf[512], *pos;
  310. int errors = 0, line = 0;
  311. struct wpa_ssid *ssid, *tail, *head;
  312. struct wpa_cred *cred, *cred_tail, *cred_head;
  313. struct wpa_config *config;
  314. int id = 0;
  315. int cred_id = 0;
  316. if (name == NULL)
  317. return NULL;
  318. if (cfgp)
  319. config = cfgp;
  320. else
  321. config = wpa_config_alloc_empty(NULL, NULL);
  322. if (config == NULL) {
  323. wpa_printf(MSG_ERROR, "Failed to allocate config file "
  324. "structure");
  325. return NULL;
  326. }
  327. tail = head = config->ssid;
  328. while (tail && tail->next)
  329. tail = tail->next;
  330. cred_tail = cred_head = config->cred;
  331. while (cred_tail && cred_tail->next)
  332. cred_tail = cred_tail->next;
  333. wpa_printf(MSG_DEBUG, "Reading configuration file '%s'", name);
  334. f = fopen(name, "r");
  335. if (f == NULL) {
  336. wpa_printf(MSG_ERROR, "Failed to open config file '%s', "
  337. "error: %s", name, strerror(errno));
  338. os_free(config);
  339. return NULL;
  340. }
  341. while (wpa_config_get_line(buf, sizeof(buf), f, &line, &pos)) {
  342. if (os_strcmp(pos, "network={") == 0) {
  343. ssid = wpa_config_read_network(f, &line, id++);
  344. if (ssid == NULL) {
  345. wpa_printf(MSG_ERROR, "Line %d: failed to "
  346. "parse network block.", line);
  347. errors++;
  348. continue;
  349. }
  350. if (head == NULL) {
  351. head = tail = ssid;
  352. } else {
  353. tail->next = ssid;
  354. tail = ssid;
  355. }
  356. if (wpa_config_add_prio_network(config, ssid)) {
  357. wpa_printf(MSG_ERROR, "Line %d: failed to add "
  358. "network block to priority list.",
  359. line);
  360. errors++;
  361. continue;
  362. }
  363. } else if (os_strcmp(pos, "cred={") == 0) {
  364. cred = wpa_config_read_cred(f, &line, cred_id++);
  365. if (cred == NULL) {
  366. wpa_printf(MSG_ERROR, "Line %d: failed to "
  367. "parse cred block.", line);
  368. errors++;
  369. continue;
  370. }
  371. if (cred_head == NULL) {
  372. cred_head = cred_tail = cred;
  373. } else {
  374. cred_tail->next = cred;
  375. cred_tail = cred;
  376. }
  377. #ifndef CONFIG_NO_CONFIG_BLOBS
  378. } else if (os_strncmp(pos, "blob-base64-", 12) == 0) {
  379. if (wpa_config_process_blob(config, f, &line, pos + 12)
  380. < 0) {
  381. wpa_printf(MSG_ERROR, "Line %d: failed to "
  382. "process blob.", line);
  383. errors++;
  384. continue;
  385. }
  386. #endif /* CONFIG_NO_CONFIG_BLOBS */
  387. } else if (wpa_config_process_global(config, pos, line) < 0) {
  388. wpa_printf(MSG_ERROR, "Line %d: Invalid configuration "
  389. "line '%s'.", line, pos);
  390. errors++;
  391. continue;
  392. }
  393. }
  394. fclose(f);
  395. config->ssid = head;
  396. wpa_config_debug_dump_networks(config);
  397. config->cred = cred_head;
  398. #ifndef WPA_IGNORE_CONFIG_ERRORS
  399. if (errors) {
  400. wpa_config_free(config);
  401. config = NULL;
  402. head = NULL;
  403. }
  404. #endif /* WPA_IGNORE_CONFIG_ERRORS */
  405. return config;
  406. }
  407. #ifndef CONFIG_NO_CONFIG_WRITE
  408. static void write_str(FILE *f, const char *field, struct wpa_ssid *ssid)
  409. {
  410. char *value = wpa_config_get(ssid, field);
  411. if (value == NULL)
  412. return;
  413. fprintf(f, "\t%s=%s\n", field, value);
  414. os_free(value);
  415. }
  416. static void write_int(FILE *f, const char *field, int value, int def)
  417. {
  418. if (value == def)
  419. return;
  420. fprintf(f, "\t%s=%d\n", field, value);
  421. }
  422. static void write_bssid(FILE *f, struct wpa_ssid *ssid)
  423. {
  424. char *value = wpa_config_get(ssid, "bssid");
  425. if (value == NULL)
  426. return;
  427. fprintf(f, "\tbssid=%s\n", value);
  428. os_free(value);
  429. }
  430. static void write_bssid_hint(FILE *f, struct wpa_ssid *ssid)
  431. {
  432. char *value = wpa_config_get(ssid, "bssid_hint");
  433. if (!value)
  434. return;
  435. fprintf(f, "\tbssid_hint=%s\n", value);
  436. os_free(value);
  437. }
  438. static void write_psk(FILE *f, struct wpa_ssid *ssid)
  439. {
  440. char *value;
  441. if (ssid->mem_only_psk)
  442. return;
  443. value = wpa_config_get(ssid, "psk");
  444. if (value == NULL)
  445. return;
  446. fprintf(f, "\tpsk=%s\n", value);
  447. os_free(value);
  448. }
  449. static void write_proto(FILE *f, struct wpa_ssid *ssid)
  450. {
  451. char *value;
  452. if (ssid->proto == DEFAULT_PROTO)
  453. return;
  454. value = wpa_config_get(ssid, "proto");
  455. if (value == NULL)
  456. return;
  457. if (value[0])
  458. fprintf(f, "\tproto=%s\n", value);
  459. os_free(value);
  460. }
  461. static void write_key_mgmt(FILE *f, struct wpa_ssid *ssid)
  462. {
  463. char *value;
  464. if (ssid->key_mgmt == DEFAULT_KEY_MGMT)
  465. return;
  466. value = wpa_config_get(ssid, "key_mgmt");
  467. if (value == NULL)
  468. return;
  469. if (value[0])
  470. fprintf(f, "\tkey_mgmt=%s\n", value);
  471. os_free(value);
  472. }
  473. static void write_pairwise(FILE *f, struct wpa_ssid *ssid)
  474. {
  475. char *value;
  476. if (ssid->pairwise_cipher == DEFAULT_PAIRWISE)
  477. return;
  478. value = wpa_config_get(ssid, "pairwise");
  479. if (value == NULL)
  480. return;
  481. if (value[0])
  482. fprintf(f, "\tpairwise=%s\n", value);
  483. os_free(value);
  484. }
  485. static void write_group(FILE *f, struct wpa_ssid *ssid)
  486. {
  487. char *value;
  488. if (ssid->group_cipher == DEFAULT_GROUP)
  489. return;
  490. value = wpa_config_get(ssid, "group");
  491. if (value == NULL)
  492. return;
  493. if (value[0])
  494. fprintf(f, "\tgroup=%s\n", value);
  495. os_free(value);
  496. }
  497. static void write_auth_alg(FILE *f, struct wpa_ssid *ssid)
  498. {
  499. char *value;
  500. if (ssid->auth_alg == 0)
  501. return;
  502. value = wpa_config_get(ssid, "auth_alg");
  503. if (value == NULL)
  504. return;
  505. if (value[0])
  506. fprintf(f, "\tauth_alg=%s\n", value);
  507. os_free(value);
  508. }
  509. #ifdef IEEE8021X_EAPOL
  510. static void write_eap(FILE *f, struct wpa_ssid *ssid)
  511. {
  512. char *value;
  513. value = wpa_config_get(ssid, "eap");
  514. if (value == NULL)
  515. return;
  516. if (value[0])
  517. fprintf(f, "\teap=%s\n", value);
  518. os_free(value);
  519. }
  520. #endif /* IEEE8021X_EAPOL */
  521. static void write_wep_key(FILE *f, int idx, struct wpa_ssid *ssid)
  522. {
  523. char field[20], *value;
  524. int res;
  525. res = os_snprintf(field, sizeof(field), "wep_key%d", idx);
  526. if (os_snprintf_error(sizeof(field), res))
  527. return;
  528. value = wpa_config_get(ssid, field);
  529. if (value) {
  530. fprintf(f, "\t%s=%s\n", field, value);
  531. os_free(value);
  532. }
  533. }
  534. #ifdef CONFIG_P2P
  535. static void write_go_p2p_dev_addr(FILE *f, struct wpa_ssid *ssid)
  536. {
  537. char *value = wpa_config_get(ssid, "go_p2p_dev_addr");
  538. if (value == NULL)
  539. return;
  540. fprintf(f, "\tgo_p2p_dev_addr=%s\n", value);
  541. os_free(value);
  542. }
  543. static void write_p2p_client_list(FILE *f, struct wpa_ssid *ssid)
  544. {
  545. char *value = wpa_config_get(ssid, "p2p_client_list");
  546. if (value == NULL)
  547. return;
  548. fprintf(f, "\tp2p_client_list=%s\n", value);
  549. os_free(value);
  550. }
  551. static void write_psk_list(FILE *f, struct wpa_ssid *ssid)
  552. {
  553. struct psk_list_entry *psk;
  554. char hex[32 * 2 + 1];
  555. dl_list_for_each(psk, &ssid->psk_list, struct psk_list_entry, list) {
  556. wpa_snprintf_hex(hex, sizeof(hex), psk->psk, sizeof(psk->psk));
  557. fprintf(f, "\tpsk_list=%s" MACSTR "-%s\n",
  558. psk->p2p ? "P2P-" : "", MAC2STR(psk->addr), hex);
  559. }
  560. }
  561. #endif /* CONFIG_P2P */
  562. #ifdef CONFIG_MACSEC
  563. static void write_mka_cak(FILE *f, struct wpa_ssid *ssid)
  564. {
  565. char *value;
  566. if (!(ssid->mka_psk_set & MKA_PSK_SET_CAK))
  567. return;
  568. value = wpa_config_get(ssid, "mka_cak");
  569. if (!value)
  570. return;
  571. fprintf(f, "\tmka_cak=%s\n", value);
  572. os_free(value);
  573. }
  574. static void write_mka_ckn(FILE *f, struct wpa_ssid *ssid)
  575. {
  576. char *value;
  577. if (!(ssid->mka_psk_set & MKA_PSK_SET_CKN))
  578. return;
  579. value = wpa_config_get(ssid, "mka_ckn");
  580. if (!value)
  581. return;
  582. fprintf(f, "\tmka_ckn=%s\n", value);
  583. os_free(value);
  584. }
  585. #endif /* CONFIG_MACSEC */
  586. static void wpa_config_write_network(FILE *f, struct wpa_ssid *ssid)
  587. {
  588. int i;
  589. #define STR(t) write_str(f, #t, ssid)
  590. #define INT(t) write_int(f, #t, ssid->t, 0)
  591. #define INTe(t) write_int(f, #t, ssid->eap.t, 0)
  592. #define INT_DEF(t, def) write_int(f, #t, ssid->t, def)
  593. #define INT_DEFe(t, def) write_int(f, #t, ssid->eap.t, def)
  594. STR(ssid);
  595. INT(scan_ssid);
  596. write_bssid(f, ssid);
  597. write_bssid_hint(f, ssid);
  598. write_str(f, "bssid_blacklist", ssid);
  599. write_str(f, "bssid_whitelist", ssid);
  600. write_psk(f, ssid);
  601. INT(mem_only_psk);
  602. write_proto(f, ssid);
  603. write_key_mgmt(f, ssid);
  604. INT_DEF(bg_scan_period, DEFAULT_BG_SCAN_PERIOD);
  605. write_pairwise(f, ssid);
  606. write_group(f, ssid);
  607. write_auth_alg(f, ssid);
  608. STR(bgscan);
  609. STR(autoscan);
  610. STR(scan_freq);
  611. #ifdef IEEE8021X_EAPOL
  612. write_eap(f, ssid);
  613. STR(identity);
  614. STR(anonymous_identity);
  615. STR(password);
  616. STR(ca_cert);
  617. STR(ca_path);
  618. STR(client_cert);
  619. STR(private_key);
  620. STR(private_key_passwd);
  621. STR(dh_file);
  622. STR(subject_match);
  623. STR(altsubject_match);
  624. STR(domain_suffix_match);
  625. STR(domain_match);
  626. STR(ca_cert2);
  627. STR(ca_path2);
  628. STR(client_cert2);
  629. STR(private_key2);
  630. STR(private_key2_passwd);
  631. STR(dh_file2);
  632. STR(subject_match2);
  633. STR(altsubject_match2);
  634. STR(domain_suffix_match2);
  635. STR(domain_match2);
  636. STR(phase1);
  637. STR(phase2);
  638. STR(pcsc);
  639. STR(pin);
  640. STR(engine_id);
  641. STR(key_id);
  642. STR(cert_id);
  643. STR(ca_cert_id);
  644. STR(key2_id);
  645. STR(pin2);
  646. STR(engine2_id);
  647. STR(cert2_id);
  648. STR(ca_cert2_id);
  649. INTe(engine);
  650. INTe(engine2);
  651. INT_DEF(eapol_flags, DEFAULT_EAPOL_FLAGS);
  652. STR(openssl_ciphers);
  653. INTe(erp);
  654. #endif /* IEEE8021X_EAPOL */
  655. for (i = 0; i < 4; i++)
  656. write_wep_key(f, i, ssid);
  657. INT(wep_tx_keyidx);
  658. INT(priority);
  659. #ifdef IEEE8021X_EAPOL
  660. INT_DEF(eap_workaround, DEFAULT_EAP_WORKAROUND);
  661. STR(pac_file);
  662. INT_DEFe(fragment_size, DEFAULT_FRAGMENT_SIZE);
  663. INTe(ocsp);
  664. INT_DEFe(sim_num, DEFAULT_USER_SELECTED_SIM);
  665. #endif /* IEEE8021X_EAPOL */
  666. INT(mode);
  667. INT(no_auto_peer);
  668. INT_DEF(mesh_rssi_threshold, DEFAULT_MESH_RSSI_THRESHOLD);
  669. INT(frequency);
  670. INT(fixed_freq);
  671. #ifdef CONFIG_ACS
  672. INT(acs);
  673. #endif /* CONFIG_ACS */
  674. write_int(f, "proactive_key_caching", ssid->proactive_key_caching, -1);
  675. INT(disabled);
  676. INT(peerkey);
  677. INT(mixed_cell);
  678. INT(vht);
  679. INT_DEF(ht, 1);
  680. INT(ht40);
  681. INT(max_oper_chwidth);
  682. INT(vht_center_freq1);
  683. INT(vht_center_freq2);
  684. INT(pbss);
  685. INT(wps_disabled);
  686. INT(fils_dh_group);
  687. #ifdef CONFIG_IEEE80211W
  688. write_int(f, "ieee80211w", ssid->ieee80211w,
  689. MGMT_FRAME_PROTECTION_DEFAULT);
  690. #endif /* CONFIG_IEEE80211W */
  691. STR(id_str);
  692. #ifdef CONFIG_P2P
  693. write_go_p2p_dev_addr(f, ssid);
  694. write_p2p_client_list(f, ssid);
  695. write_psk_list(f, ssid);
  696. #endif /* CONFIG_P2P */
  697. INT(ap_max_inactivity);
  698. INT(dtim_period);
  699. INT(beacon_int);
  700. #ifdef CONFIG_MACSEC
  701. INT(macsec_policy);
  702. write_mka_cak(f, ssid);
  703. write_mka_ckn(f, ssid);
  704. INT(macsec_integ_only);
  705. INT(macsec_port);
  706. INT_DEF(mka_priority, DEFAULT_PRIO_NOT_KEY_SERVER);
  707. #endif /* CONFIG_MACSEC */
  708. #ifdef CONFIG_HS20
  709. INT(update_identifier);
  710. #endif /* CONFIG_HS20 */
  711. write_int(f, "mac_addr", ssid->mac_addr, -1);
  712. #ifdef CONFIG_MESH
  713. STR(mesh_basic_rates);
  714. INT_DEF(dot11MeshMaxRetries, DEFAULT_MESH_MAX_RETRIES);
  715. INT_DEF(dot11MeshRetryTimeout, DEFAULT_MESH_RETRY_TIMEOUT);
  716. INT_DEF(dot11MeshConfirmTimeout, DEFAULT_MESH_CONFIRM_TIMEOUT);
  717. INT_DEF(dot11MeshHoldingTimeout, DEFAULT_MESH_HOLDING_TIMEOUT);
  718. #endif /* CONFIG_MESH */
  719. INT(wpa_ptk_rekey);
  720. INT(group_rekey);
  721. INT(ignore_broadcast_ssid);
  722. #ifdef CONFIG_DPP
  723. STR(dpp_connector);
  724. STR(dpp_netaccesskey);
  725. INT(dpp_netaccesskey_expiry);
  726. STR(dpp_csign);
  727. INT(dpp_csign_expiry);
  728. #endif /* CONFIG_DPP */
  729. #ifdef CONFIG_HT_OVERRIDES
  730. INT_DEF(disable_ht, DEFAULT_DISABLE_HT);
  731. INT_DEF(disable_ht40, DEFAULT_DISABLE_HT40);
  732. INT_DEF(disable_sgi, DEFAULT_DISABLE_SGI);
  733. INT_DEF(disable_ldpc, DEFAULT_DISABLE_LDPC);
  734. INT(ht40_intolerant);
  735. INT_DEF(disable_max_amsdu, DEFAULT_DISABLE_MAX_AMSDU);
  736. INT_DEF(ampdu_factor, DEFAULT_AMPDU_FACTOR);
  737. INT_DEF(ampdu_density, DEFAULT_AMPDU_DENSITY);
  738. STR(ht_mcs);
  739. #endif /* CONFIG_HT_OVERRIDES */
  740. #ifdef CONFIG_VHT_OVERRIDES
  741. INT(disable_vht);
  742. INT(vht_capa);
  743. INT(vht_capa_mask);
  744. INT_DEF(vht_rx_mcs_nss_1, -1);
  745. INT_DEF(vht_rx_mcs_nss_2, -1);
  746. INT_DEF(vht_rx_mcs_nss_3, -1);
  747. INT_DEF(vht_rx_mcs_nss_4, -1);
  748. INT_DEF(vht_rx_mcs_nss_5, -1);
  749. INT_DEF(vht_rx_mcs_nss_6, -1);
  750. INT_DEF(vht_rx_mcs_nss_7, -1);
  751. INT_DEF(vht_rx_mcs_nss_8, -1);
  752. INT_DEF(vht_tx_mcs_nss_1, -1);
  753. INT_DEF(vht_tx_mcs_nss_2, -1);
  754. INT_DEF(vht_tx_mcs_nss_3, -1);
  755. INT_DEF(vht_tx_mcs_nss_4, -1);
  756. INT_DEF(vht_tx_mcs_nss_5, -1);
  757. INT_DEF(vht_tx_mcs_nss_6, -1);
  758. INT_DEF(vht_tx_mcs_nss_7, -1);
  759. INT_DEF(vht_tx_mcs_nss_8, -1);
  760. #endif /* CONFIG_VHT_OVERRIDES */
  761. #undef STR
  762. #undef INT
  763. #undef INT_DEF
  764. }
  765. static void wpa_config_write_cred(FILE *f, struct wpa_cred *cred)
  766. {
  767. size_t i;
  768. if (cred->priority)
  769. fprintf(f, "\tpriority=%d\n", cred->priority);
  770. if (cred->pcsc)
  771. fprintf(f, "\tpcsc=%d\n", cred->pcsc);
  772. if (cred->realm)
  773. fprintf(f, "\trealm=\"%s\"\n", cred->realm);
  774. if (cred->username)
  775. fprintf(f, "\tusername=\"%s\"\n", cred->username);
  776. if (cred->password && cred->ext_password)
  777. fprintf(f, "\tpassword=ext:%s\n", cred->password);
  778. else if (cred->password)
  779. fprintf(f, "\tpassword=\"%s\"\n", cred->password);
  780. if (cred->ca_cert)
  781. fprintf(f, "\tca_cert=\"%s\"\n", cred->ca_cert);
  782. if (cred->client_cert)
  783. fprintf(f, "\tclient_cert=\"%s\"\n", cred->client_cert);
  784. if (cred->private_key)
  785. fprintf(f, "\tprivate_key=\"%s\"\n", cred->private_key);
  786. if (cred->private_key_passwd)
  787. fprintf(f, "\tprivate_key_passwd=\"%s\"\n",
  788. cred->private_key_passwd);
  789. if (cred->imsi)
  790. fprintf(f, "\timsi=\"%s\"\n", cred->imsi);
  791. if (cred->milenage)
  792. fprintf(f, "\tmilenage=\"%s\"\n", cred->milenage);
  793. for (i = 0; i < cred->num_domain; i++)
  794. fprintf(f, "\tdomain=\"%s\"\n", cred->domain[i]);
  795. if (cred->domain_suffix_match)
  796. fprintf(f, "\tdomain_suffix_match=\"%s\"\n",
  797. cred->domain_suffix_match);
  798. if (cred->roaming_consortium_len) {
  799. fprintf(f, "\troaming_consortium=");
  800. for (i = 0; i < cred->roaming_consortium_len; i++)
  801. fprintf(f, "%02x", cred->roaming_consortium[i]);
  802. fprintf(f, "\n");
  803. }
  804. if (cred->eap_method) {
  805. const char *name;
  806. name = eap_get_name(cred->eap_method[0].vendor,
  807. cred->eap_method[0].method);
  808. if (name)
  809. fprintf(f, "\teap=%s\n", name);
  810. }
  811. if (cred->phase1)
  812. fprintf(f, "\tphase1=\"%s\"\n", cred->phase1);
  813. if (cred->phase2)
  814. fprintf(f, "\tphase2=\"%s\"\n", cred->phase2);
  815. if (cred->excluded_ssid) {
  816. size_t j;
  817. for (i = 0; i < cred->num_excluded_ssid; i++) {
  818. struct excluded_ssid *e = &cred->excluded_ssid[i];
  819. fprintf(f, "\texcluded_ssid=");
  820. for (j = 0; j < e->ssid_len; j++)
  821. fprintf(f, "%02x", e->ssid[j]);
  822. fprintf(f, "\n");
  823. }
  824. }
  825. if (cred->roaming_partner) {
  826. for (i = 0; i < cred->num_roaming_partner; i++) {
  827. struct roaming_partner *p = &cred->roaming_partner[i];
  828. fprintf(f, "\troaming_partner=\"%s,%d,%u,%s\"\n",
  829. p->fqdn, p->exact_match, p->priority,
  830. p->country);
  831. }
  832. }
  833. if (cred->update_identifier)
  834. fprintf(f, "\tupdate_identifier=%d\n", cred->update_identifier);
  835. if (cred->provisioning_sp)
  836. fprintf(f, "\tprovisioning_sp=\"%s\"\n", cred->provisioning_sp);
  837. if (cred->sp_priority)
  838. fprintf(f, "\tsp_priority=%d\n", cred->sp_priority);
  839. if (cred->min_dl_bandwidth_home)
  840. fprintf(f, "\tmin_dl_bandwidth_home=%u\n",
  841. cred->min_dl_bandwidth_home);
  842. if (cred->min_ul_bandwidth_home)
  843. fprintf(f, "\tmin_ul_bandwidth_home=%u\n",
  844. cred->min_ul_bandwidth_home);
  845. if (cred->min_dl_bandwidth_roaming)
  846. fprintf(f, "\tmin_dl_bandwidth_roaming=%u\n",
  847. cred->min_dl_bandwidth_roaming);
  848. if (cred->min_ul_bandwidth_roaming)
  849. fprintf(f, "\tmin_ul_bandwidth_roaming=%u\n",
  850. cred->min_ul_bandwidth_roaming);
  851. if (cred->max_bss_load)
  852. fprintf(f, "\tmax_bss_load=%u\n",
  853. cred->max_bss_load);
  854. if (cred->ocsp)
  855. fprintf(f, "\tocsp=%d\n", cred->ocsp);
  856. if (cred->num_req_conn_capab) {
  857. for (i = 0; i < cred->num_req_conn_capab; i++) {
  858. int *ports;
  859. fprintf(f, "\treq_conn_capab=%u",
  860. cred->req_conn_capab_proto[i]);
  861. ports = cred->req_conn_capab_port[i];
  862. if (ports) {
  863. int j;
  864. for (j = 0; ports[j] != -1; j++) {
  865. fprintf(f, "%s%d", j > 0 ? "," : ":",
  866. ports[j]);
  867. }
  868. }
  869. fprintf(f, "\n");
  870. }
  871. }
  872. if (cred->required_roaming_consortium_len) {
  873. fprintf(f, "\trequired_roaming_consortium=");
  874. for (i = 0; i < cred->required_roaming_consortium_len; i++)
  875. fprintf(f, "%02x",
  876. cred->required_roaming_consortium[i]);
  877. fprintf(f, "\n");
  878. }
  879. if (cred->sim_num != DEFAULT_USER_SELECTED_SIM)
  880. fprintf(f, "\tsim_num=%d\n", cred->sim_num);
  881. }
  882. #ifndef CONFIG_NO_CONFIG_BLOBS
  883. static int wpa_config_write_blob(FILE *f, struct wpa_config_blob *blob)
  884. {
  885. unsigned char *encoded;
  886. encoded = base64_encode(blob->data, blob->len, NULL);
  887. if (encoded == NULL)
  888. return -1;
  889. fprintf(f, "\nblob-base64-%s={\n%s}\n", blob->name, encoded);
  890. os_free(encoded);
  891. return 0;
  892. }
  893. #endif /* CONFIG_NO_CONFIG_BLOBS */
  894. static void write_global_bin(FILE *f, const char *field,
  895. const struct wpabuf *val)
  896. {
  897. size_t i;
  898. const u8 *pos;
  899. if (val == NULL)
  900. return;
  901. fprintf(f, "%s=", field);
  902. pos = wpabuf_head(val);
  903. for (i = 0; i < wpabuf_len(val); i++)
  904. fprintf(f, "%02X", *pos++);
  905. fprintf(f, "\n");
  906. }
  907. static void wpa_config_write_global(FILE *f, struct wpa_config *config)
  908. {
  909. #ifdef CONFIG_CTRL_IFACE
  910. if (config->ctrl_interface)
  911. fprintf(f, "ctrl_interface=%s\n", config->ctrl_interface);
  912. if (config->ctrl_interface_group)
  913. fprintf(f, "ctrl_interface_group=%s\n",
  914. config->ctrl_interface_group);
  915. #endif /* CONFIG_CTRL_IFACE */
  916. if (config->eapol_version != DEFAULT_EAPOL_VERSION)
  917. fprintf(f, "eapol_version=%d\n", config->eapol_version);
  918. if (config->ap_scan != DEFAULT_AP_SCAN)
  919. fprintf(f, "ap_scan=%d\n", config->ap_scan);
  920. if (config->disable_scan_offload)
  921. fprintf(f, "disable_scan_offload=%d\n",
  922. config->disable_scan_offload);
  923. if (config->fast_reauth != DEFAULT_FAST_REAUTH)
  924. fprintf(f, "fast_reauth=%d\n", config->fast_reauth);
  925. if (config->opensc_engine_path)
  926. fprintf(f, "opensc_engine_path=%s\n",
  927. config->opensc_engine_path);
  928. if (config->pkcs11_engine_path)
  929. fprintf(f, "pkcs11_engine_path=%s\n",
  930. config->pkcs11_engine_path);
  931. if (config->pkcs11_module_path)
  932. fprintf(f, "pkcs11_module_path=%s\n",
  933. config->pkcs11_module_path);
  934. if (config->openssl_ciphers)
  935. fprintf(f, "openssl_ciphers=%s\n", config->openssl_ciphers);
  936. if (config->pcsc_reader)
  937. fprintf(f, "pcsc_reader=%s\n", config->pcsc_reader);
  938. if (config->pcsc_pin)
  939. fprintf(f, "pcsc_pin=%s\n", config->pcsc_pin);
  940. if (config->driver_param)
  941. fprintf(f, "driver_param=%s\n", config->driver_param);
  942. if (config->dot11RSNAConfigPMKLifetime)
  943. fprintf(f, "dot11RSNAConfigPMKLifetime=%u\n",
  944. config->dot11RSNAConfigPMKLifetime);
  945. if (config->dot11RSNAConfigPMKReauthThreshold)
  946. fprintf(f, "dot11RSNAConfigPMKReauthThreshold=%u\n",
  947. config->dot11RSNAConfigPMKReauthThreshold);
  948. if (config->dot11RSNAConfigSATimeout)
  949. fprintf(f, "dot11RSNAConfigSATimeout=%u\n",
  950. config->dot11RSNAConfigSATimeout);
  951. if (config->update_config)
  952. fprintf(f, "update_config=%d\n", config->update_config);
  953. #ifdef CONFIG_WPS
  954. if (!is_nil_uuid(config->uuid)) {
  955. char buf[40];
  956. uuid_bin2str(config->uuid, buf, sizeof(buf));
  957. fprintf(f, "uuid=%s\n", buf);
  958. }
  959. if (config->auto_uuid)
  960. fprintf(f, "auto_uuid=%d\n", config->auto_uuid);
  961. if (config->device_name)
  962. fprintf(f, "device_name=%s\n", config->device_name);
  963. if (config->manufacturer)
  964. fprintf(f, "manufacturer=%s\n", config->manufacturer);
  965. if (config->model_name)
  966. fprintf(f, "model_name=%s\n", config->model_name);
  967. if (config->model_number)
  968. fprintf(f, "model_number=%s\n", config->model_number);
  969. if (config->serial_number)
  970. fprintf(f, "serial_number=%s\n", config->serial_number);
  971. {
  972. char _buf[WPS_DEV_TYPE_BUFSIZE], *buf;
  973. buf = wps_dev_type_bin2str(config->device_type,
  974. _buf, sizeof(_buf));
  975. if (os_strcmp(buf, "0-00000000-0") != 0)
  976. fprintf(f, "device_type=%s\n", buf);
  977. }
  978. if (WPA_GET_BE32(config->os_version))
  979. fprintf(f, "os_version=%08x\n",
  980. WPA_GET_BE32(config->os_version));
  981. if (config->config_methods)
  982. fprintf(f, "config_methods=%s\n", config->config_methods);
  983. if (config->wps_cred_processing)
  984. fprintf(f, "wps_cred_processing=%d\n",
  985. config->wps_cred_processing);
  986. if (config->wps_vendor_ext_m1) {
  987. int i, len = wpabuf_len(config->wps_vendor_ext_m1);
  988. const u8 *p = wpabuf_head_u8(config->wps_vendor_ext_m1);
  989. if (len > 0) {
  990. fprintf(f, "wps_vendor_ext_m1=");
  991. for (i = 0; i < len; i++)
  992. fprintf(f, "%02x", *p++);
  993. fprintf(f, "\n");
  994. }
  995. }
  996. #endif /* CONFIG_WPS */
  997. #ifdef CONFIG_P2P
  998. {
  999. int i;
  1000. char _buf[WPS_DEV_TYPE_BUFSIZE], *buf;
  1001. for (i = 0; i < config->num_sec_device_types; i++) {
  1002. buf = wps_dev_type_bin2str(config->sec_device_type[i],
  1003. _buf, sizeof(_buf));
  1004. if (buf)
  1005. fprintf(f, "sec_device_type=%s\n", buf);
  1006. }
  1007. }
  1008. if (config->p2p_listen_reg_class)
  1009. fprintf(f, "p2p_listen_reg_class=%d\n",
  1010. config->p2p_listen_reg_class);
  1011. if (config->p2p_listen_channel)
  1012. fprintf(f, "p2p_listen_channel=%d\n",
  1013. config->p2p_listen_channel);
  1014. if (config->p2p_oper_reg_class)
  1015. fprintf(f, "p2p_oper_reg_class=%d\n",
  1016. config->p2p_oper_reg_class);
  1017. if (config->p2p_oper_channel)
  1018. fprintf(f, "p2p_oper_channel=%d\n", config->p2p_oper_channel);
  1019. if (config->p2p_go_intent != DEFAULT_P2P_GO_INTENT)
  1020. fprintf(f, "p2p_go_intent=%d\n", config->p2p_go_intent);
  1021. if (config->p2p_ssid_postfix)
  1022. fprintf(f, "p2p_ssid_postfix=%s\n", config->p2p_ssid_postfix);
  1023. if (config->persistent_reconnect)
  1024. fprintf(f, "persistent_reconnect=%d\n",
  1025. config->persistent_reconnect);
  1026. if (config->p2p_intra_bss != DEFAULT_P2P_INTRA_BSS)
  1027. fprintf(f, "p2p_intra_bss=%d\n", config->p2p_intra_bss);
  1028. if (config->p2p_group_idle)
  1029. fprintf(f, "p2p_group_idle=%d\n", config->p2p_group_idle);
  1030. if (config->p2p_passphrase_len)
  1031. fprintf(f, "p2p_passphrase_len=%u\n",
  1032. config->p2p_passphrase_len);
  1033. if (config->p2p_pref_chan) {
  1034. unsigned int i;
  1035. fprintf(f, "p2p_pref_chan=");
  1036. for (i = 0; i < config->num_p2p_pref_chan; i++) {
  1037. fprintf(f, "%s%u:%u", i > 0 ? "," : "",
  1038. config->p2p_pref_chan[i].op_class,
  1039. config->p2p_pref_chan[i].chan);
  1040. }
  1041. fprintf(f, "\n");
  1042. }
  1043. if (config->p2p_no_go_freq.num) {
  1044. char *val = freq_range_list_str(&config->p2p_no_go_freq);
  1045. if (val) {
  1046. fprintf(f, "p2p_no_go_freq=%s\n", val);
  1047. os_free(val);
  1048. }
  1049. }
  1050. if (config->p2p_add_cli_chan)
  1051. fprintf(f, "p2p_add_cli_chan=%d\n", config->p2p_add_cli_chan);
  1052. if (config->p2p_optimize_listen_chan !=
  1053. DEFAULT_P2P_OPTIMIZE_LISTEN_CHAN)
  1054. fprintf(f, "p2p_optimize_listen_chan=%d\n",
  1055. config->p2p_optimize_listen_chan);
  1056. if (config->p2p_go_ht40)
  1057. fprintf(f, "p2p_go_ht40=%d\n", config->p2p_go_ht40);
  1058. if (config->p2p_go_vht)
  1059. fprintf(f, "p2p_go_vht=%d\n", config->p2p_go_vht);
  1060. if (config->p2p_go_ctwindow != DEFAULT_P2P_GO_CTWINDOW)
  1061. fprintf(f, "p2p_go_ctwindow=%d\n", config->p2p_go_ctwindow);
  1062. if (config->p2p_disabled)
  1063. fprintf(f, "p2p_disabled=%d\n", config->p2p_disabled);
  1064. if (config->p2p_no_group_iface)
  1065. fprintf(f, "p2p_no_group_iface=%d\n",
  1066. config->p2p_no_group_iface);
  1067. if (config->p2p_ignore_shared_freq)
  1068. fprintf(f, "p2p_ignore_shared_freq=%d\n",
  1069. config->p2p_ignore_shared_freq);
  1070. if (config->p2p_cli_probe)
  1071. fprintf(f, "p2p_cli_probe=%d\n", config->p2p_cli_probe);
  1072. if (config->p2p_go_freq_change_policy != DEFAULT_P2P_GO_FREQ_MOVE)
  1073. fprintf(f, "p2p_go_freq_change_policy=%u\n",
  1074. config->p2p_go_freq_change_policy);
  1075. if (WPA_GET_BE32(config->ip_addr_go))
  1076. fprintf(f, "ip_addr_go=%u.%u.%u.%u\n",
  1077. config->ip_addr_go[0], config->ip_addr_go[1],
  1078. config->ip_addr_go[2], config->ip_addr_go[3]);
  1079. if (WPA_GET_BE32(config->ip_addr_mask))
  1080. fprintf(f, "ip_addr_mask=%u.%u.%u.%u\n",
  1081. config->ip_addr_mask[0], config->ip_addr_mask[1],
  1082. config->ip_addr_mask[2], config->ip_addr_mask[3]);
  1083. if (WPA_GET_BE32(config->ip_addr_start))
  1084. fprintf(f, "ip_addr_start=%u.%u.%u.%u\n",
  1085. config->ip_addr_start[0], config->ip_addr_start[1],
  1086. config->ip_addr_start[2], config->ip_addr_start[3]);
  1087. if (WPA_GET_BE32(config->ip_addr_end))
  1088. fprintf(f, "ip_addr_end=%u.%u.%u.%u\n",
  1089. config->ip_addr_end[0], config->ip_addr_end[1],
  1090. config->ip_addr_end[2], config->ip_addr_end[3]);
  1091. #endif /* CONFIG_P2P */
  1092. if (config->country[0] && config->country[1]) {
  1093. fprintf(f, "country=%c%c\n",
  1094. config->country[0], config->country[1]);
  1095. }
  1096. if (config->bss_max_count != DEFAULT_BSS_MAX_COUNT)
  1097. fprintf(f, "bss_max_count=%u\n", config->bss_max_count);
  1098. if (config->bss_expiration_age != DEFAULT_BSS_EXPIRATION_AGE)
  1099. fprintf(f, "bss_expiration_age=%u\n",
  1100. config->bss_expiration_age);
  1101. if (config->bss_expiration_scan_count !=
  1102. DEFAULT_BSS_EXPIRATION_SCAN_COUNT)
  1103. fprintf(f, "bss_expiration_scan_count=%u\n",
  1104. config->bss_expiration_scan_count);
  1105. if (config->filter_ssids)
  1106. fprintf(f, "filter_ssids=%d\n", config->filter_ssids);
  1107. if (config->filter_rssi)
  1108. fprintf(f, "filter_rssi=%d\n", config->filter_rssi);
  1109. if (config->max_num_sta != DEFAULT_MAX_NUM_STA)
  1110. fprintf(f, "max_num_sta=%u\n", config->max_num_sta);
  1111. if (config->disassoc_low_ack)
  1112. fprintf(f, "disassoc_low_ack=%d\n", config->disassoc_low_ack);
  1113. #ifdef CONFIG_HS20
  1114. if (config->hs20)
  1115. fprintf(f, "hs20=1\n");
  1116. #endif /* CONFIG_HS20 */
  1117. #ifdef CONFIG_INTERWORKING
  1118. if (config->interworking)
  1119. fprintf(f, "interworking=%d\n", config->interworking);
  1120. if (!is_zero_ether_addr(config->hessid))
  1121. fprintf(f, "hessid=" MACSTR "\n", MAC2STR(config->hessid));
  1122. if (config->access_network_type != DEFAULT_ACCESS_NETWORK_TYPE)
  1123. fprintf(f, "access_network_type=%d\n",
  1124. config->access_network_type);
  1125. #endif /* CONFIG_INTERWORKING */
  1126. if (config->pbc_in_m1)
  1127. fprintf(f, "pbc_in_m1=%d\n", config->pbc_in_m1);
  1128. if (config->wps_nfc_pw_from_config) {
  1129. if (config->wps_nfc_dev_pw_id)
  1130. fprintf(f, "wps_nfc_dev_pw_id=%d\n",
  1131. config->wps_nfc_dev_pw_id);
  1132. write_global_bin(f, "wps_nfc_dh_pubkey",
  1133. config->wps_nfc_dh_pubkey);
  1134. write_global_bin(f, "wps_nfc_dh_privkey",
  1135. config->wps_nfc_dh_privkey);
  1136. write_global_bin(f, "wps_nfc_dev_pw", config->wps_nfc_dev_pw);
  1137. }
  1138. if (config->ext_password_backend)
  1139. fprintf(f, "ext_password_backend=%s\n",
  1140. config->ext_password_backend);
  1141. if (config->p2p_go_max_inactivity != DEFAULT_P2P_GO_MAX_INACTIVITY)
  1142. fprintf(f, "p2p_go_max_inactivity=%d\n",
  1143. config->p2p_go_max_inactivity);
  1144. if (config->auto_interworking)
  1145. fprintf(f, "auto_interworking=%d\n",
  1146. config->auto_interworking);
  1147. if (config->okc)
  1148. fprintf(f, "okc=%d\n", config->okc);
  1149. if (config->pmf)
  1150. fprintf(f, "pmf=%d\n", config->pmf);
  1151. if (config->dtim_period)
  1152. fprintf(f, "dtim_period=%d\n", config->dtim_period);
  1153. if (config->beacon_int)
  1154. fprintf(f, "beacon_int=%d\n", config->beacon_int);
  1155. if (config->sae_groups) {
  1156. int i;
  1157. fprintf(f, "sae_groups=");
  1158. for (i = 0; config->sae_groups[i] > 0; i++) {
  1159. fprintf(f, "%s%d", i > 0 ? " " : "",
  1160. config->sae_groups[i]);
  1161. }
  1162. fprintf(f, "\n");
  1163. }
  1164. if (config->ap_vendor_elements) {
  1165. int i, len = wpabuf_len(config->ap_vendor_elements);
  1166. const u8 *p = wpabuf_head_u8(config->ap_vendor_elements);
  1167. if (len > 0) {
  1168. fprintf(f, "ap_vendor_elements=");
  1169. for (i = 0; i < len; i++)
  1170. fprintf(f, "%02x", *p++);
  1171. fprintf(f, "\n");
  1172. }
  1173. }
  1174. if (config->ignore_old_scan_res)
  1175. fprintf(f, "ignore_old_scan_res=%d\n",
  1176. config->ignore_old_scan_res);
  1177. if (config->freq_list && config->freq_list[0]) {
  1178. int i;
  1179. fprintf(f, "freq_list=");
  1180. for (i = 0; config->freq_list[i]; i++) {
  1181. fprintf(f, "%s%d", i > 0 ? " " : "",
  1182. config->freq_list[i]);
  1183. }
  1184. fprintf(f, "\n");
  1185. }
  1186. if (config->scan_cur_freq != DEFAULT_SCAN_CUR_FREQ)
  1187. fprintf(f, "scan_cur_freq=%d\n", config->scan_cur_freq);
  1188. if (config->sched_scan_interval)
  1189. fprintf(f, "sched_scan_interval=%u\n",
  1190. config->sched_scan_interval);
  1191. if (config->sched_scan_start_delay)
  1192. fprintf(f, "sched_scan_start_delay=%u\n",
  1193. config->sched_scan_start_delay);
  1194. if (config->external_sim)
  1195. fprintf(f, "external_sim=%d\n", config->external_sim);
  1196. if (config->tdls_external_control)
  1197. fprintf(f, "tdls_external_control=%d\n",
  1198. config->tdls_external_control);
  1199. if (config->wowlan_triggers)
  1200. fprintf(f, "wowlan_triggers=%s\n",
  1201. config->wowlan_triggers);
  1202. if (config->bgscan)
  1203. fprintf(f, "bgscan=\"%s\"\n", config->bgscan);
  1204. if (config->autoscan)
  1205. fprintf(f, "autoscan=%s\n", config->autoscan);
  1206. if (config->p2p_search_delay != DEFAULT_P2P_SEARCH_DELAY)
  1207. fprintf(f, "p2p_search_delay=%u\n",
  1208. config->p2p_search_delay);
  1209. if (config->mac_addr)
  1210. fprintf(f, "mac_addr=%d\n", config->mac_addr);
  1211. if (config->rand_addr_lifetime != DEFAULT_RAND_ADDR_LIFETIME)
  1212. fprintf(f, "rand_addr_lifetime=%u\n",
  1213. config->rand_addr_lifetime);
  1214. if (config->preassoc_mac_addr)
  1215. fprintf(f, "preassoc_mac_addr=%d\n", config->preassoc_mac_addr);
  1216. if (config->key_mgmt_offload != DEFAULT_KEY_MGMT_OFFLOAD)
  1217. fprintf(f, "key_mgmt_offload=%d\n", config->key_mgmt_offload);
  1218. if (config->user_mpm != DEFAULT_USER_MPM)
  1219. fprintf(f, "user_mpm=%d\n", config->user_mpm);
  1220. if (config->max_peer_links != DEFAULT_MAX_PEER_LINKS)
  1221. fprintf(f, "max_peer_links=%d\n", config->max_peer_links);
  1222. if (config->cert_in_cb != DEFAULT_CERT_IN_CB)
  1223. fprintf(f, "cert_in_cb=%d\n", config->cert_in_cb);
  1224. if (config->mesh_max_inactivity != DEFAULT_MESH_MAX_INACTIVITY)
  1225. fprintf(f, "mesh_max_inactivity=%d\n",
  1226. config->mesh_max_inactivity);
  1227. if (config->dot11RSNASAERetransPeriod !=
  1228. DEFAULT_DOT11_RSNA_SAE_RETRANS_PERIOD)
  1229. fprintf(f, "dot11RSNASAERetransPeriod=%d\n",
  1230. config->dot11RSNASAERetransPeriod);
  1231. if (config->passive_scan)
  1232. fprintf(f, "passive_scan=%d\n", config->passive_scan);
  1233. if (config->reassoc_same_bss_optim)
  1234. fprintf(f, "reassoc_same_bss_optim=%d\n",
  1235. config->reassoc_same_bss_optim);
  1236. if (config->wps_priority)
  1237. fprintf(f, "wps_priority=%d\n", config->wps_priority);
  1238. if (config->wpa_rsc_relaxation != DEFAULT_WPA_RSC_RELAXATION)
  1239. fprintf(f, "wpa_rsc_relaxation=%d\n",
  1240. config->wpa_rsc_relaxation);
  1241. if (config->sched_scan_plans)
  1242. fprintf(f, "sched_scan_plans=%s\n", config->sched_scan_plans);
  1243. #ifdef CONFIG_MBO
  1244. if (config->non_pref_chan)
  1245. fprintf(f, "non_pref_chan=%s\n", config->non_pref_chan);
  1246. if (config->mbo_cell_capa != DEFAULT_MBO_CELL_CAPA)
  1247. fprintf(f, "mbo_cell_capa=%u\n", config->mbo_cell_capa);
  1248. if (config->disassoc_imminent_rssi_threshold !=
  1249. DEFAULT_DISASSOC_IMMINENT_RSSI_THRESHOLD)
  1250. fprintf(f, "disassoc_imminent_rssi_threshold=%d\n",
  1251. config->disassoc_imminent_rssi_threshold);
  1252. #endif /* CONFIG_MBO */
  1253. if (config->gas_address3)
  1254. fprintf(f, "gas_address3=%d\n", config->gas_address3);
  1255. if (config->ftm_responder)
  1256. fprintf(f, "ftm_responder=%d\n", config->ftm_responder);
  1257. if (config->ftm_initiator)
  1258. fprintf(f, "ftm_initiator=%d\n", config->ftm_initiator);
  1259. if (config->osu_dir)
  1260. fprintf(f, "osu_dir=%s\n", config->osu_dir);
  1261. if (config->fst_group_id)
  1262. fprintf(f, "fst_group_id=%s\n", config->fst_group_id);
  1263. if (config->fst_priority)
  1264. fprintf(f, "fst_priority=%d\n", config->fst_priority);
  1265. if (config->fst_llt)
  1266. fprintf(f, "fst_llt=%d\n", config->fst_llt);
  1267. if (config->gas_rand_addr_lifetime != DEFAULT_RAND_ADDR_LIFETIME)
  1268. fprintf(f, "gas_rand_addr_lifetime=%u\n",
  1269. config->gas_rand_addr_lifetime);
  1270. if (config->gas_rand_mac_addr)
  1271. fprintf(f, "gas_rand_mac_addr=%d\n", config->gas_rand_mac_addr);
  1272. if (config->dpp_config_processing)
  1273. fprintf(f, "dpp_config_processing=%d\n",
  1274. config->dpp_config_processing);
  1275. }
  1276. #endif /* CONFIG_NO_CONFIG_WRITE */
  1277. int wpa_config_write(const char *name, struct wpa_config *config)
  1278. {
  1279. #ifndef CONFIG_NO_CONFIG_WRITE
  1280. FILE *f;
  1281. struct wpa_ssid *ssid;
  1282. struct wpa_cred *cred;
  1283. #ifndef CONFIG_NO_CONFIG_BLOBS
  1284. struct wpa_config_blob *blob;
  1285. #endif /* CONFIG_NO_CONFIG_BLOBS */
  1286. int ret = 0;
  1287. const char *orig_name = name;
  1288. int tmp_len = os_strlen(name) + 5; /* allow space for .tmp suffix */
  1289. char *tmp_name = os_malloc(tmp_len);
  1290. if (tmp_name) {
  1291. os_snprintf(tmp_name, tmp_len, "%s.tmp", name);
  1292. name = tmp_name;
  1293. }
  1294. wpa_printf(MSG_DEBUG, "Writing configuration file '%s'", name);
  1295. f = fopen(name, "w");
  1296. if (f == NULL) {
  1297. wpa_printf(MSG_DEBUG, "Failed to open '%s' for writing", name);
  1298. os_free(tmp_name);
  1299. return -1;
  1300. }
  1301. wpa_config_write_global(f, config);
  1302. for (cred = config->cred; cred; cred = cred->next) {
  1303. if (cred->temporary)
  1304. continue;
  1305. fprintf(f, "\ncred={\n");
  1306. wpa_config_write_cred(f, cred);
  1307. fprintf(f, "}\n");
  1308. }
  1309. for (ssid = config->ssid; ssid; ssid = ssid->next) {
  1310. if (ssid->key_mgmt == WPA_KEY_MGMT_WPS || ssid->temporary)
  1311. continue; /* do not save temporary networks */
  1312. if (wpa_key_mgmt_wpa_psk(ssid->key_mgmt) && !ssid->psk_set &&
  1313. !ssid->passphrase)
  1314. continue; /* do not save invalid network */
  1315. fprintf(f, "\nnetwork={\n");
  1316. wpa_config_write_network(f, ssid);
  1317. fprintf(f, "}\n");
  1318. }
  1319. #ifndef CONFIG_NO_CONFIG_BLOBS
  1320. for (blob = config->blobs; blob; blob = blob->next) {
  1321. ret = wpa_config_write_blob(f, blob);
  1322. if (ret)
  1323. break;
  1324. }
  1325. #endif /* CONFIG_NO_CONFIG_BLOBS */
  1326. os_fdatasync(f);
  1327. fclose(f);
  1328. if (tmp_name) {
  1329. int chmod_ret = 0;
  1330. #ifdef ANDROID
  1331. chmod_ret = chmod(tmp_name,
  1332. S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP);
  1333. #endif /* ANDROID */
  1334. if (chmod_ret != 0 || rename(tmp_name, orig_name) != 0)
  1335. ret = -1;
  1336. os_free(tmp_name);
  1337. }
  1338. wpa_printf(MSG_DEBUG, "Configuration file '%s' written %ssuccessfully",
  1339. orig_name, ret ? "un" : "");
  1340. return ret;
  1341. #else /* CONFIG_NO_CONFIG_WRITE */
  1342. return -1;
  1343. #endif /* CONFIG_NO_CONFIG_WRITE */
  1344. }