config_file.c 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935
  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. #include "common.h"
  14. #include "config.h"
  15. #include "base64.h"
  16. #include "uuid.h"
  17. #include "p2p/p2p.h"
  18. /**
  19. * wpa_config_get_line - Read the next configuration file line
  20. * @s: Buffer for the line
  21. * @size: The buffer length
  22. * @stream: File stream to read from
  23. * @line: Pointer to a variable storing the file line number
  24. * @_pos: Buffer for the pointer to the beginning of data on the text line or
  25. * %NULL if not needed (returned value used instead)
  26. * Returns: Pointer to the beginning of data on the text line or %NULL if no
  27. * more text lines are available.
  28. *
  29. * This function reads the next non-empty line from the configuration file and
  30. * removes comments. The returned string is guaranteed to be null-terminated.
  31. */
  32. static char * wpa_config_get_line(char *s, int size, FILE *stream, int *line,
  33. char **_pos)
  34. {
  35. char *pos, *end, *sstart;
  36. while (fgets(s, size, stream)) {
  37. (*line)++;
  38. s[size - 1] = '\0';
  39. pos = s;
  40. /* Skip white space from the beginning of line. */
  41. while (*pos == ' ' || *pos == '\t' || *pos == '\r')
  42. pos++;
  43. /* Skip comment lines and empty lines */
  44. if (*pos == '#' || *pos == '\n' || *pos == '\0')
  45. continue;
  46. /*
  47. * Remove # comments unless they are within a double quoted
  48. * string.
  49. */
  50. sstart = os_strchr(pos, '"');
  51. if (sstart)
  52. sstart = os_strrchr(sstart + 1, '"');
  53. if (!sstart)
  54. sstart = pos;
  55. end = os_strchr(sstart, '#');
  56. if (end)
  57. *end-- = '\0';
  58. else
  59. end = pos + os_strlen(pos) - 1;
  60. /* Remove trailing white space. */
  61. while (end > pos &&
  62. (*end == '\n' || *end == ' ' || *end == '\t' ||
  63. *end == '\r'))
  64. *end-- = '\0';
  65. if (*pos == '\0')
  66. continue;
  67. if (_pos)
  68. *_pos = pos;
  69. return pos;
  70. }
  71. if (_pos)
  72. *_pos = NULL;
  73. return NULL;
  74. }
  75. static int wpa_config_validate_network(struct wpa_ssid *ssid, int line)
  76. {
  77. int errors = 0;
  78. if (ssid->passphrase) {
  79. if (ssid->psk_set) {
  80. wpa_printf(MSG_ERROR, "Line %d: both PSK and "
  81. "passphrase configured.", line);
  82. errors++;
  83. }
  84. wpa_config_update_psk(ssid);
  85. }
  86. if ((ssid->group_cipher & WPA_CIPHER_CCMP) &&
  87. !(ssid->pairwise_cipher & WPA_CIPHER_CCMP) &&
  88. !(ssid->pairwise_cipher & WPA_CIPHER_NONE)) {
  89. /* Group cipher cannot be stronger than the pairwise cipher. */
  90. wpa_printf(MSG_DEBUG, "Line %d: removed CCMP from group cipher"
  91. " list since it was not allowed for pairwise "
  92. "cipher", line);
  93. ssid->group_cipher &= ~WPA_CIPHER_CCMP;
  94. }
  95. return errors;
  96. }
  97. static struct wpa_ssid * wpa_config_read_network(FILE *f, int *line, int id)
  98. {
  99. struct wpa_ssid *ssid;
  100. int errors = 0, end = 0;
  101. char buf[256], *pos, *pos2;
  102. wpa_printf(MSG_MSGDUMP, "Line: %d - start of a new network block",
  103. *line);
  104. ssid = os_zalloc(sizeof(*ssid));
  105. if (ssid == NULL)
  106. return NULL;
  107. ssid->id = id;
  108. wpa_config_set_network_defaults(ssid);
  109. while (wpa_config_get_line(buf, sizeof(buf), f, line, &pos)) {
  110. if (os_strcmp(pos, "}") == 0) {
  111. end = 1;
  112. break;
  113. }
  114. pos2 = os_strchr(pos, '=');
  115. if (pos2 == NULL) {
  116. wpa_printf(MSG_ERROR, "Line %d: Invalid SSID line "
  117. "'%s'.", *line, pos);
  118. errors++;
  119. continue;
  120. }
  121. *pos2++ = '\0';
  122. if (*pos2 == '"') {
  123. if (os_strchr(pos2 + 1, '"') == NULL) {
  124. wpa_printf(MSG_ERROR, "Line %d: invalid "
  125. "quotation '%s'.", *line, pos2);
  126. errors++;
  127. continue;
  128. }
  129. }
  130. if (wpa_config_set(ssid, pos, pos2, *line) < 0)
  131. errors++;
  132. }
  133. if (!end) {
  134. wpa_printf(MSG_ERROR, "Line %d: network block was not "
  135. "terminated properly.", *line);
  136. errors++;
  137. }
  138. errors += wpa_config_validate_network(ssid, *line);
  139. if (errors) {
  140. wpa_config_free_ssid(ssid);
  141. ssid = NULL;
  142. }
  143. return ssid;
  144. }
  145. static struct wpa_cred * wpa_config_read_cred(FILE *f, int *line, int id)
  146. {
  147. struct wpa_cred *cred;
  148. int errors = 0, end = 0;
  149. char buf[256], *pos, *pos2;
  150. wpa_printf(MSG_MSGDUMP, "Line: %d - start of a new cred block", *line);
  151. cred = os_zalloc(sizeof(*cred));
  152. if (cred == NULL)
  153. return NULL;
  154. cred->id = id;
  155. while (wpa_config_get_line(buf, sizeof(buf), f, line, &pos)) {
  156. if (os_strcmp(pos, "}") == 0) {
  157. end = 1;
  158. break;
  159. }
  160. pos2 = os_strchr(pos, '=');
  161. if (pos2 == NULL) {
  162. wpa_printf(MSG_ERROR, "Line %d: Invalid cred line "
  163. "'%s'.", *line, pos);
  164. errors++;
  165. continue;
  166. }
  167. *pos2++ = '\0';
  168. if (*pos2 == '"') {
  169. if (os_strchr(pos2 + 1, '"') == NULL) {
  170. wpa_printf(MSG_ERROR, "Line %d: invalid "
  171. "quotation '%s'.", *line, pos2);
  172. errors++;
  173. continue;
  174. }
  175. }
  176. if (wpa_config_set_cred(cred, pos, pos2, *line) < 0)
  177. errors++;
  178. }
  179. if (!end) {
  180. wpa_printf(MSG_ERROR, "Line %d: cred block was not "
  181. "terminated properly.", *line);
  182. errors++;
  183. }
  184. if (errors) {
  185. wpa_config_free_cred(cred);
  186. cred = NULL;
  187. }
  188. return cred;
  189. }
  190. #ifndef CONFIG_NO_CONFIG_BLOBS
  191. static struct wpa_config_blob * wpa_config_read_blob(FILE *f, int *line,
  192. const char *name)
  193. {
  194. struct wpa_config_blob *blob;
  195. char buf[256], *pos;
  196. unsigned char *encoded = NULL, *nencoded;
  197. int end = 0;
  198. size_t encoded_len = 0, len;
  199. wpa_printf(MSG_MSGDUMP, "Line: %d - start of a new named blob '%s'",
  200. *line, name);
  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. len = os_strlen(pos);
  207. nencoded = os_realloc(encoded, encoded_len + len);
  208. if (nencoded == NULL) {
  209. wpa_printf(MSG_ERROR, "Line %d: not enough memory for "
  210. "blob", *line);
  211. os_free(encoded);
  212. return NULL;
  213. }
  214. encoded = nencoded;
  215. os_memcpy(encoded + encoded_len, pos, len);
  216. encoded_len += len;
  217. }
  218. if (!end) {
  219. wpa_printf(MSG_ERROR, "Line %d: blob was not terminated "
  220. "properly", *line);
  221. os_free(encoded);
  222. return NULL;
  223. }
  224. blob = os_zalloc(sizeof(*blob));
  225. if (blob == NULL) {
  226. os_free(encoded);
  227. return NULL;
  228. }
  229. blob->name = os_strdup(name);
  230. blob->data = base64_decode(encoded, encoded_len, &blob->len);
  231. os_free(encoded);
  232. if (blob->name == NULL || blob->data == NULL) {
  233. wpa_config_free_blob(blob);
  234. return NULL;
  235. }
  236. return blob;
  237. }
  238. static int wpa_config_process_blob(struct wpa_config *config, FILE *f,
  239. int *line, char *bname)
  240. {
  241. char *name_end;
  242. struct wpa_config_blob *blob;
  243. name_end = os_strchr(bname, '=');
  244. if (name_end == NULL) {
  245. wpa_printf(MSG_ERROR, "Line %d: no blob name terminator",
  246. *line);
  247. return -1;
  248. }
  249. *name_end = '\0';
  250. blob = wpa_config_read_blob(f, line, bname);
  251. if (blob == NULL) {
  252. wpa_printf(MSG_ERROR, "Line %d: failed to read blob %s",
  253. *line, bname);
  254. return -1;
  255. }
  256. wpa_config_set_blob(config, blob);
  257. return 0;
  258. }
  259. #endif /* CONFIG_NO_CONFIG_BLOBS */
  260. struct wpa_config * wpa_config_read(const char *name)
  261. {
  262. FILE *f;
  263. char buf[512], *pos;
  264. int errors = 0, line = 0;
  265. struct wpa_ssid *ssid, *tail = NULL, *head = NULL;
  266. struct wpa_cred *cred, *cred_tail = NULL, *cred_head = NULL;
  267. struct wpa_config *config;
  268. int id = 0;
  269. int cred_id = 0;
  270. config = wpa_config_alloc_empty(NULL, NULL);
  271. if (config == NULL)
  272. return NULL;
  273. wpa_printf(MSG_DEBUG, "Reading configuration file '%s'", name);
  274. f = fopen(name, "r");
  275. if (f == NULL) {
  276. os_free(config);
  277. return NULL;
  278. }
  279. while (wpa_config_get_line(buf, sizeof(buf), f, &line, &pos)) {
  280. if (os_strcmp(pos, "network={") == 0) {
  281. ssid = wpa_config_read_network(f, &line, id++);
  282. if (ssid == NULL) {
  283. wpa_printf(MSG_ERROR, "Line %d: failed to "
  284. "parse network block.", line);
  285. errors++;
  286. continue;
  287. }
  288. if (head == NULL) {
  289. head = tail = ssid;
  290. } else {
  291. tail->next = ssid;
  292. tail = ssid;
  293. }
  294. if (wpa_config_add_prio_network(config, ssid)) {
  295. wpa_printf(MSG_ERROR, "Line %d: failed to add "
  296. "network block to priority list.",
  297. line);
  298. errors++;
  299. continue;
  300. }
  301. } else if (os_strcmp(pos, "cred={") == 0) {
  302. cred = wpa_config_read_cred(f, &line, cred_id++);
  303. if (cred == NULL) {
  304. wpa_printf(MSG_ERROR, "Line %d: failed to "
  305. "parse cred block.", line);
  306. errors++;
  307. continue;
  308. }
  309. if (cred_head == NULL) {
  310. cred_head = cred_tail = cred;
  311. } else {
  312. cred_tail->next = cred;
  313. cred_tail = cred;
  314. }
  315. #ifndef CONFIG_NO_CONFIG_BLOBS
  316. } else if (os_strncmp(pos, "blob-base64-", 12) == 0) {
  317. if (wpa_config_process_blob(config, f, &line, pos + 12)
  318. < 0) {
  319. errors++;
  320. continue;
  321. }
  322. #endif /* CONFIG_NO_CONFIG_BLOBS */
  323. } else if (wpa_config_process_global(config, pos, line) < 0) {
  324. wpa_printf(MSG_ERROR, "Line %d: Invalid configuration "
  325. "line '%s'.", line, pos);
  326. errors++;
  327. continue;
  328. }
  329. }
  330. fclose(f);
  331. config->ssid = head;
  332. wpa_config_debug_dump_networks(config);
  333. config->cred = cred_head;
  334. #ifndef WPA_IGNORE_CONFIG_ERRORS
  335. if (errors) {
  336. wpa_config_free(config);
  337. config = NULL;
  338. head = NULL;
  339. }
  340. #endif /* WPA_IGNORE_CONFIG_ERRORS */
  341. return config;
  342. }
  343. #ifndef CONFIG_NO_CONFIG_WRITE
  344. static void write_str(FILE *f, const char *field, struct wpa_ssid *ssid)
  345. {
  346. char *value = wpa_config_get(ssid, field);
  347. if (value == NULL)
  348. return;
  349. fprintf(f, "\t%s=%s\n", field, value);
  350. os_free(value);
  351. }
  352. static void write_int(FILE *f, const char *field, int value, int def)
  353. {
  354. if (value == def)
  355. return;
  356. fprintf(f, "\t%s=%d\n", field, value);
  357. }
  358. static void write_bssid(FILE *f, struct wpa_ssid *ssid)
  359. {
  360. char *value = wpa_config_get(ssid, "bssid");
  361. if (value == NULL)
  362. return;
  363. fprintf(f, "\tbssid=%s\n", value);
  364. os_free(value);
  365. }
  366. static void write_psk(FILE *f, struct wpa_ssid *ssid)
  367. {
  368. char *value = wpa_config_get(ssid, "psk");
  369. if (value == NULL)
  370. return;
  371. fprintf(f, "\tpsk=%s\n", value);
  372. os_free(value);
  373. }
  374. static void write_proto(FILE *f, struct wpa_ssid *ssid)
  375. {
  376. char *value;
  377. if (ssid->proto == DEFAULT_PROTO)
  378. return;
  379. value = wpa_config_get(ssid, "proto");
  380. if (value == NULL)
  381. return;
  382. if (value[0])
  383. fprintf(f, "\tproto=%s\n", value);
  384. os_free(value);
  385. }
  386. static void write_key_mgmt(FILE *f, struct wpa_ssid *ssid)
  387. {
  388. char *value;
  389. if (ssid->key_mgmt == DEFAULT_KEY_MGMT)
  390. return;
  391. value = wpa_config_get(ssid, "key_mgmt");
  392. if (value == NULL)
  393. return;
  394. if (value[0])
  395. fprintf(f, "\tkey_mgmt=%s\n", value);
  396. os_free(value);
  397. }
  398. static void write_pairwise(FILE *f, struct wpa_ssid *ssid)
  399. {
  400. char *value;
  401. if (ssid->pairwise_cipher == DEFAULT_PAIRWISE)
  402. return;
  403. value = wpa_config_get(ssid, "pairwise");
  404. if (value == NULL)
  405. return;
  406. if (value[0])
  407. fprintf(f, "\tpairwise=%s\n", value);
  408. os_free(value);
  409. }
  410. static void write_group(FILE *f, struct wpa_ssid *ssid)
  411. {
  412. char *value;
  413. if (ssid->group_cipher == DEFAULT_GROUP)
  414. return;
  415. value = wpa_config_get(ssid, "group");
  416. if (value == NULL)
  417. return;
  418. if (value[0])
  419. fprintf(f, "\tgroup=%s\n", value);
  420. os_free(value);
  421. }
  422. static void write_auth_alg(FILE *f, struct wpa_ssid *ssid)
  423. {
  424. char *value;
  425. if (ssid->auth_alg == 0)
  426. return;
  427. value = wpa_config_get(ssid, "auth_alg");
  428. if (value == NULL)
  429. return;
  430. if (value[0])
  431. fprintf(f, "\tauth_alg=%s\n", value);
  432. os_free(value);
  433. }
  434. #ifdef IEEE8021X_EAPOL
  435. static void write_eap(FILE *f, struct wpa_ssid *ssid)
  436. {
  437. char *value;
  438. value = wpa_config_get(ssid, "eap");
  439. if (value == NULL)
  440. return;
  441. if (value[0])
  442. fprintf(f, "\teap=%s\n", value);
  443. os_free(value);
  444. }
  445. #endif /* IEEE8021X_EAPOL */
  446. static void write_wep_key(FILE *f, int idx, struct wpa_ssid *ssid)
  447. {
  448. char field[20], *value;
  449. int res;
  450. res = os_snprintf(field, sizeof(field), "wep_key%d", idx);
  451. if (res < 0 || (size_t) res >= sizeof(field))
  452. return;
  453. value = wpa_config_get(ssid, field);
  454. if (value) {
  455. fprintf(f, "\t%s=%s\n", field, value);
  456. os_free(value);
  457. }
  458. }
  459. #ifdef CONFIG_P2P
  460. static void write_p2p_client_list(FILE *f, struct wpa_ssid *ssid)
  461. {
  462. char *value = wpa_config_get(ssid, "p2p_client_list");
  463. if (value == NULL)
  464. return;
  465. fprintf(f, "\tp2p_client_list=%s\n", value);
  466. os_free(value);
  467. }
  468. #endif /* CONFIG_P2P */
  469. static void wpa_config_write_network(FILE *f, struct wpa_ssid *ssid)
  470. {
  471. int i;
  472. #define STR(t) write_str(f, #t, ssid)
  473. #define INT(t) write_int(f, #t, ssid->t, 0)
  474. #define INTe(t) write_int(f, #t, ssid->eap.t, 0)
  475. #define INT_DEF(t, def) write_int(f, #t, ssid->t, def)
  476. #define INT_DEFe(t, def) write_int(f, #t, ssid->eap.t, def)
  477. STR(ssid);
  478. INT(scan_ssid);
  479. write_bssid(f, ssid);
  480. write_psk(f, ssid);
  481. write_proto(f, ssid);
  482. write_key_mgmt(f, ssid);
  483. INT_DEF(bg_scan_period, DEFAULT_BG_SCAN_PERIOD);
  484. write_pairwise(f, ssid);
  485. write_group(f, ssid);
  486. write_auth_alg(f, ssid);
  487. STR(bgscan);
  488. STR(autoscan);
  489. #ifdef IEEE8021X_EAPOL
  490. write_eap(f, ssid);
  491. STR(identity);
  492. STR(anonymous_identity);
  493. STR(password);
  494. STR(ca_cert);
  495. STR(ca_path);
  496. STR(client_cert);
  497. STR(private_key);
  498. STR(private_key_passwd);
  499. STR(dh_file);
  500. STR(subject_match);
  501. STR(altsubject_match);
  502. STR(ca_cert2);
  503. STR(ca_path2);
  504. STR(client_cert2);
  505. STR(private_key2);
  506. STR(private_key2_passwd);
  507. STR(dh_file2);
  508. STR(subject_match2);
  509. STR(altsubject_match2);
  510. STR(phase1);
  511. STR(phase2);
  512. STR(pcsc);
  513. STR(pin);
  514. STR(engine_id);
  515. STR(key_id);
  516. STR(cert_id);
  517. STR(ca_cert_id);
  518. STR(key2_id);
  519. STR(pin2);
  520. STR(engine2_id);
  521. STR(cert2_id);
  522. STR(ca_cert2_id);
  523. INTe(engine);
  524. INTe(engine2);
  525. INT_DEF(eapol_flags, DEFAULT_EAPOL_FLAGS);
  526. #endif /* IEEE8021X_EAPOL */
  527. for (i = 0; i < 4; i++)
  528. write_wep_key(f, i, ssid);
  529. INT(wep_tx_keyidx);
  530. INT(priority);
  531. #ifdef IEEE8021X_EAPOL
  532. INT_DEF(eap_workaround, DEFAULT_EAP_WORKAROUND);
  533. STR(pac_file);
  534. INT_DEFe(fragment_size, DEFAULT_FRAGMENT_SIZE);
  535. #endif /* IEEE8021X_EAPOL */
  536. INT(mode);
  537. INT(proactive_key_caching);
  538. INT(disabled);
  539. INT(peerkey);
  540. #ifdef CONFIG_IEEE80211W
  541. INT(ieee80211w);
  542. #endif /* CONFIG_IEEE80211W */
  543. STR(id_str);
  544. #ifdef CONFIG_P2P
  545. write_p2p_client_list(f, ssid);
  546. #endif /* CONFIG_P2P */
  547. #undef STR
  548. #undef INT
  549. #undef INT_DEF
  550. }
  551. static void wpa_config_write_cred(FILE *f, struct wpa_cred *cred)
  552. {
  553. if (cred->priority)
  554. fprintf(f, "\tpriority=%d\n", cred->priority);
  555. if (cred->pcsc)
  556. fprintf(f, "\tpcsc=%d\n", cred->pcsc);
  557. if (cred->realm)
  558. fprintf(f, "\trealm=\"%s\"\n", cred->realm);
  559. if (cred->username)
  560. fprintf(f, "\tusername=\"%s\"\n", cred->username);
  561. if (cred->password)
  562. fprintf(f, "\tpassword=\"%s\"\n", cred->password);
  563. if (cred->ca_cert)
  564. fprintf(f, "\tca_cert=\"%s\"\n", cred->ca_cert);
  565. if (cred->imsi)
  566. fprintf(f, "\timsi=\"%s\"\n", cred->imsi);
  567. if (cred->milenage)
  568. fprintf(f, "\tmilenage=\"%s\"\n", cred->milenage);
  569. if (cred->domain)
  570. fprintf(f, "\tdomain=\"%s\"\n", cred->domain);
  571. }
  572. #ifndef CONFIG_NO_CONFIG_BLOBS
  573. static int wpa_config_write_blob(FILE *f, struct wpa_config_blob *blob)
  574. {
  575. unsigned char *encoded;
  576. encoded = base64_encode(blob->data, blob->len, NULL);
  577. if (encoded == NULL)
  578. return -1;
  579. fprintf(f, "\nblob-base64-%s={\n%s}\n", blob->name, encoded);
  580. os_free(encoded);
  581. return 0;
  582. }
  583. #endif /* CONFIG_NO_CONFIG_BLOBS */
  584. static void write_global_bin(FILE *f, const char *field,
  585. const struct wpabuf *val)
  586. {
  587. size_t i;
  588. const u8 *pos;
  589. if (val == NULL)
  590. return;
  591. fprintf(f, "%s=", field);
  592. pos = wpabuf_head(val);
  593. for (i = 0; i < wpabuf_len(val); i++)
  594. fprintf(f, "%02X", *pos++);
  595. fprintf(f, "\n");
  596. }
  597. static void wpa_config_write_global(FILE *f, struct wpa_config *config)
  598. {
  599. #ifdef CONFIG_CTRL_IFACE
  600. if (config->ctrl_interface)
  601. fprintf(f, "ctrl_interface=%s\n", config->ctrl_interface);
  602. if (config->ctrl_interface_group)
  603. fprintf(f, "ctrl_interface_group=%s\n",
  604. config->ctrl_interface_group);
  605. #endif /* CONFIG_CTRL_IFACE */
  606. if (config->eapol_version != DEFAULT_EAPOL_VERSION)
  607. fprintf(f, "eapol_version=%d\n", config->eapol_version);
  608. if (config->ap_scan != DEFAULT_AP_SCAN)
  609. fprintf(f, "ap_scan=%d\n", config->ap_scan);
  610. if (config->disable_scan_offload)
  611. fprintf(f, "disable_scan_offload=%d\n",
  612. config->disable_scan_offload);
  613. if (config->fast_reauth != DEFAULT_FAST_REAUTH)
  614. fprintf(f, "fast_reauth=%d\n", config->fast_reauth);
  615. if (config->opensc_engine_path)
  616. fprintf(f, "opensc_engine_path=%s\n",
  617. config->opensc_engine_path);
  618. if (config->pkcs11_engine_path)
  619. fprintf(f, "pkcs11_engine_path=%s\n",
  620. config->pkcs11_engine_path);
  621. if (config->pkcs11_module_path)
  622. fprintf(f, "pkcs11_module_path=%s\n",
  623. config->pkcs11_module_path);
  624. if (config->pcsc_reader)
  625. fprintf(f, "pcsc_reader=%s\n", config->pcsc_reader);
  626. if (config->pcsc_pin)
  627. fprintf(f, "pcsc_pin=%s\n", config->pcsc_pin);
  628. if (config->driver_param)
  629. fprintf(f, "driver_param=%s\n", config->driver_param);
  630. if (config->dot11RSNAConfigPMKLifetime)
  631. fprintf(f, "dot11RSNAConfigPMKLifetime=%d\n",
  632. config->dot11RSNAConfigPMKLifetime);
  633. if (config->dot11RSNAConfigPMKReauthThreshold)
  634. fprintf(f, "dot11RSNAConfigPMKReauthThreshold=%d\n",
  635. config->dot11RSNAConfigPMKReauthThreshold);
  636. if (config->dot11RSNAConfigSATimeout)
  637. fprintf(f, "dot11RSNAConfigSATimeout=%d\n",
  638. config->dot11RSNAConfigSATimeout);
  639. if (config->update_config)
  640. fprintf(f, "update_config=%d\n", config->update_config);
  641. #ifdef CONFIG_WPS
  642. if (!is_nil_uuid(config->uuid)) {
  643. char buf[40];
  644. uuid_bin2str(config->uuid, buf, sizeof(buf));
  645. fprintf(f, "uuid=%s\n", buf);
  646. }
  647. if (config->device_name)
  648. fprintf(f, "device_name=%s\n", config->device_name);
  649. if (config->manufacturer)
  650. fprintf(f, "manufacturer=%s\n", config->manufacturer);
  651. if (config->model_name)
  652. fprintf(f, "model_name=%s\n", config->model_name);
  653. if (config->model_number)
  654. fprintf(f, "model_number=%s\n", config->model_number);
  655. if (config->serial_number)
  656. fprintf(f, "serial_number=%s\n", config->serial_number);
  657. {
  658. char _buf[WPS_DEV_TYPE_BUFSIZE], *buf;
  659. buf = wps_dev_type_bin2str(config->device_type,
  660. _buf, sizeof(_buf));
  661. if (os_strcmp(buf, "0-00000000-0") != 0)
  662. fprintf(f, "device_type=%s\n", buf);
  663. }
  664. if (WPA_GET_BE32(config->os_version))
  665. fprintf(f, "os_version=%08x\n",
  666. WPA_GET_BE32(config->os_version));
  667. if (config->config_methods)
  668. fprintf(f, "config_methods=%s\n", config->config_methods);
  669. if (config->wps_cred_processing)
  670. fprintf(f, "wps_cred_processing=%d\n",
  671. config->wps_cred_processing);
  672. if (config->wps_vendor_ext_m1) {
  673. int i, len = wpabuf_len(config->wps_vendor_ext_m1);
  674. const u8 *p = wpabuf_head_u8(config->wps_vendor_ext_m1);
  675. if (len > 0) {
  676. fprintf(f, "wps_vendor_ext_m1=");
  677. for (i = 0; i < len; i++)
  678. fprintf(f, "%02x", *p++);
  679. fprintf(f, "\n");
  680. }
  681. }
  682. #endif /* CONFIG_WPS */
  683. #ifdef CONFIG_P2P
  684. if (config->p2p_listen_reg_class)
  685. fprintf(f, "p2p_listen_reg_class=%u\n",
  686. config->p2p_listen_reg_class);
  687. if (config->p2p_listen_channel)
  688. fprintf(f, "p2p_listen_channel=%u\n",
  689. config->p2p_listen_channel);
  690. if (config->p2p_oper_reg_class)
  691. fprintf(f, "p2p_oper_reg_class=%u\n",
  692. config->p2p_oper_reg_class);
  693. if (config->p2p_oper_channel)
  694. fprintf(f, "p2p_oper_channel=%u\n", config->p2p_oper_channel);
  695. if (config->p2p_go_intent != DEFAULT_P2P_GO_INTENT)
  696. fprintf(f, "p2p_go_intent=%u\n", config->p2p_go_intent);
  697. if (config->p2p_ssid_postfix)
  698. fprintf(f, "p2p_ssid_postfix=%s\n", config->p2p_ssid_postfix);
  699. if (config->persistent_reconnect)
  700. fprintf(f, "persistent_reconnect=%u\n",
  701. config->persistent_reconnect);
  702. if (config->p2p_intra_bss != DEFAULT_P2P_INTRA_BSS)
  703. fprintf(f, "p2p_intra_bss=%u\n", config->p2p_intra_bss);
  704. if (config->p2p_group_idle)
  705. fprintf(f, "p2p_group_idle=%u\n", config->p2p_group_idle);
  706. if (config->p2p_pref_chan) {
  707. unsigned int i;
  708. fprintf(f, "p2p_pref_chan=");
  709. for (i = 0; i < config->num_p2p_pref_chan; i++) {
  710. fprintf(f, "%s%u:%u", i > 0 ? "," : "",
  711. config->p2p_pref_chan[i].op_class,
  712. config->p2p_pref_chan[i].chan);
  713. }
  714. fprintf(f, "\n");
  715. }
  716. #endif /* CONFIG_P2P */
  717. if (config->country[0] && config->country[1]) {
  718. fprintf(f, "country=%c%c\n",
  719. config->country[0], config->country[1]);
  720. }
  721. if (config->bss_max_count != DEFAULT_BSS_MAX_COUNT)
  722. fprintf(f, "bss_max_count=%u\n", config->bss_max_count);
  723. if (config->bss_expiration_age != DEFAULT_BSS_EXPIRATION_AGE)
  724. fprintf(f, "bss_expiration_age=%u\n",
  725. config->bss_expiration_age);
  726. if (config->bss_expiration_scan_count !=
  727. DEFAULT_BSS_EXPIRATION_SCAN_COUNT)
  728. fprintf(f, "bss_expiration_scan_count=%u\n",
  729. config->bss_expiration_scan_count);
  730. if (config->filter_ssids)
  731. fprintf(f, "filter_ssids=%d\n", config->filter_ssids);
  732. if (config->max_num_sta != DEFAULT_MAX_NUM_STA)
  733. fprintf(f, "max_num_sta=%u\n", config->max_num_sta);
  734. if (config->disassoc_low_ack)
  735. fprintf(f, "disassoc_low_ack=%u\n", config->disassoc_low_ack);
  736. #ifdef CONFIG_HS20
  737. if (config->hs20)
  738. fprintf(f, "hs20=1\n");
  739. #endif /* CONFIG_HS20 */
  740. #ifdef CONFIG_INTERWORKING
  741. if (config->interworking)
  742. fprintf(f, "interworking=%u\n", config->interworking);
  743. if (!is_zero_ether_addr(config->hessid))
  744. fprintf(f, "hessid=" MACSTR "\n", MAC2STR(config->hessid));
  745. if (config->access_network_type != DEFAULT_ACCESS_NETWORK_TYPE)
  746. fprintf(f, "access_network_type=%d\n",
  747. config->access_network_type);
  748. #endif /* CONFIG_INTERWORKING */
  749. if (config->pbc_in_m1)
  750. fprintf(f, "pbc_in_m1=%u\n", config->pbc_in_m1);
  751. if (config->wps_nfc_dev_pw_id)
  752. fprintf(f, "wps_nfc_dev_pw_id=%d\n",
  753. config->wps_nfc_dev_pw_id);
  754. write_global_bin(f, "wps_nfc_dh_pubkey", config->wps_nfc_dh_pubkey);
  755. write_global_bin(f, "wps_nfc_dh_privkey", config->wps_nfc_dh_privkey);
  756. write_global_bin(f, "wps_nfc_dev_pw", config->wps_nfc_dev_pw);
  757. if (config->ext_password_backend)
  758. fprintf(f, "ext_password_backend=%s\n",
  759. config->ext_password_backend);
  760. }
  761. #endif /* CONFIG_NO_CONFIG_WRITE */
  762. int wpa_config_write(const char *name, struct wpa_config *config)
  763. {
  764. #ifndef CONFIG_NO_CONFIG_WRITE
  765. FILE *f;
  766. struct wpa_ssid *ssid;
  767. struct wpa_cred *cred;
  768. #ifndef CONFIG_NO_CONFIG_BLOBS
  769. struct wpa_config_blob *blob;
  770. #endif /* CONFIG_NO_CONFIG_BLOBS */
  771. int ret = 0;
  772. wpa_printf(MSG_DEBUG, "Writing configuration file '%s'", name);
  773. f = fopen(name, "w");
  774. if (f == NULL) {
  775. wpa_printf(MSG_DEBUG, "Failed to open '%s' for writing", name);
  776. return -1;
  777. }
  778. wpa_config_write_global(f, config);
  779. for (cred = config->cred; cred; cred = cred->next) {
  780. fprintf(f, "\ncred={\n");
  781. wpa_config_write_cred(f, cred);
  782. fprintf(f, "}\n");
  783. }
  784. for (ssid = config->ssid; ssid; ssid = ssid->next) {
  785. if (ssid->key_mgmt == WPA_KEY_MGMT_WPS || ssid->temporary)
  786. continue; /* do not save temporary networks */
  787. if (wpa_key_mgmt_wpa_psk(ssid->key_mgmt) && !ssid->psk_set &&
  788. !ssid->passphrase)
  789. continue; /* do not save invalid network */
  790. fprintf(f, "\nnetwork={\n");
  791. wpa_config_write_network(f, ssid);
  792. fprintf(f, "}\n");
  793. }
  794. #ifndef CONFIG_NO_CONFIG_BLOBS
  795. for (blob = config->blobs; blob; blob = blob->next) {
  796. ret = wpa_config_write_blob(f, blob);
  797. if (ret)
  798. break;
  799. }
  800. #endif /* CONFIG_NO_CONFIG_BLOBS */
  801. fclose(f);
  802. wpa_printf(MSG_DEBUG, "Configuration file '%s' written %ssuccessfully",
  803. name, ret ? "un" : "");
  804. return ret;
  805. #else /* CONFIG_NO_CONFIG_WRITE */
  806. return -1;
  807. #endif /* CONFIG_NO_CONFIG_WRITE */
  808. }