config_file.c 30 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217
  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. #include "eap_peer/eap_methods.h"
  19. #include "eap_peer/eap.h"
  20. static int newline_terminated(const char *buf, size_t buflen)
  21. {
  22. size_t len = os_strlen(buf);
  23. if (len == 0)
  24. return 0;
  25. if (len == buflen - 1 && buf[buflen - 1] != '\r' &&
  26. buf[len - 1] != '\n')
  27. return 0;
  28. return 1;
  29. }
  30. static void skip_line_end(FILE *stream)
  31. {
  32. char buf[100];
  33. while (fgets(buf, sizeof(buf), stream)) {
  34. buf[sizeof(buf) - 1] = '\0';
  35. if (newline_terminated(buf, sizeof(buf)))
  36. return;
  37. }
  38. }
  39. /**
  40. * wpa_config_get_line - Read the next configuration file line
  41. * @s: Buffer for the line
  42. * @size: The buffer length
  43. * @stream: File stream to read from
  44. * @line: Pointer to a variable storing the file line number
  45. * @_pos: Buffer for the pointer to the beginning of data on the text line or
  46. * %NULL if not needed (returned value used instead)
  47. * Returns: Pointer to the beginning of data on the text line or %NULL if no
  48. * more text lines are available.
  49. *
  50. * This function reads the next non-empty line from the configuration file and
  51. * removes comments. The returned string is guaranteed to be null-terminated.
  52. */
  53. static char * wpa_config_get_line(char *s, int size, FILE *stream, int *line,
  54. char **_pos)
  55. {
  56. char *pos, *end, *sstart;
  57. while (fgets(s, size, stream)) {
  58. (*line)++;
  59. s[size - 1] = '\0';
  60. if (!newline_terminated(s, size)) {
  61. /*
  62. * The line was truncated - skip rest of it to avoid
  63. * confusing error messages.
  64. */
  65. wpa_printf(MSG_INFO, "Long line in configuration file "
  66. "truncated");
  67. skip_line_end(stream);
  68. }
  69. pos = s;
  70. /* Skip white space from the beginning of line. */
  71. while (*pos == ' ' || *pos == '\t' || *pos == '\r')
  72. pos++;
  73. /* Skip comment lines and empty lines */
  74. if (*pos == '#' || *pos == '\n' || *pos == '\0')
  75. continue;
  76. /*
  77. * Remove # comments unless they are within a double quoted
  78. * string.
  79. */
  80. sstart = os_strchr(pos, '"');
  81. if (sstart)
  82. sstart = os_strrchr(sstart + 1, '"');
  83. if (!sstart)
  84. sstart = pos;
  85. end = os_strchr(sstart, '#');
  86. if (end)
  87. *end-- = '\0';
  88. else
  89. end = pos + os_strlen(pos) - 1;
  90. /* Remove trailing white space. */
  91. while (end > pos &&
  92. (*end == '\n' || *end == ' ' || *end == '\t' ||
  93. *end == '\r'))
  94. *end-- = '\0';
  95. if (*pos == '\0')
  96. continue;
  97. if (_pos)
  98. *_pos = pos;
  99. return pos;
  100. }
  101. if (_pos)
  102. *_pos = NULL;
  103. return NULL;
  104. }
  105. static int wpa_config_validate_network(struct wpa_ssid *ssid, int line)
  106. {
  107. int errors = 0;
  108. if (ssid->passphrase) {
  109. if (ssid->psk_set) {
  110. wpa_printf(MSG_ERROR, "Line %d: both PSK and "
  111. "passphrase configured.", line);
  112. errors++;
  113. }
  114. wpa_config_update_psk(ssid);
  115. }
  116. if ((ssid->group_cipher & WPA_CIPHER_CCMP) &&
  117. !(ssid->pairwise_cipher & WPA_CIPHER_CCMP) &&
  118. !(ssid->pairwise_cipher & WPA_CIPHER_NONE)) {
  119. /* Group cipher cannot be stronger than the pairwise cipher. */
  120. wpa_printf(MSG_DEBUG, "Line %d: removed CCMP from group cipher"
  121. " list since it was not allowed for pairwise "
  122. "cipher", line);
  123. ssid->group_cipher &= ~WPA_CIPHER_CCMP;
  124. }
  125. return errors;
  126. }
  127. static struct wpa_ssid * wpa_config_read_network(FILE *f, int *line, int id)
  128. {
  129. struct wpa_ssid *ssid;
  130. int errors = 0, end = 0;
  131. char buf[2000], *pos, *pos2;
  132. wpa_printf(MSG_MSGDUMP, "Line: %d - start of a new network block",
  133. *line);
  134. ssid = os_zalloc(sizeof(*ssid));
  135. if (ssid == NULL)
  136. return NULL;
  137. dl_list_init(&ssid->psk_list);
  138. ssid->id = id;
  139. wpa_config_set_network_defaults(ssid);
  140. while (wpa_config_get_line(buf, sizeof(buf), f, line, &pos)) {
  141. if (os_strcmp(pos, "}") == 0) {
  142. end = 1;
  143. break;
  144. }
  145. pos2 = os_strchr(pos, '=');
  146. if (pos2 == NULL) {
  147. wpa_printf(MSG_ERROR, "Line %d: Invalid SSID line "
  148. "'%s'.", *line, pos);
  149. errors++;
  150. continue;
  151. }
  152. *pos2++ = '\0';
  153. if (*pos2 == '"') {
  154. if (os_strchr(pos2 + 1, '"') == NULL) {
  155. wpa_printf(MSG_ERROR, "Line %d: invalid "
  156. "quotation '%s'.", *line, pos2);
  157. errors++;
  158. continue;
  159. }
  160. }
  161. if (wpa_config_set(ssid, pos, pos2, *line) < 0)
  162. errors++;
  163. }
  164. if (!end) {
  165. wpa_printf(MSG_ERROR, "Line %d: network block was not "
  166. "terminated properly.", *line);
  167. errors++;
  168. }
  169. errors += wpa_config_validate_network(ssid, *line);
  170. if (errors) {
  171. wpa_config_free_ssid(ssid);
  172. ssid = NULL;
  173. }
  174. return ssid;
  175. }
  176. static struct wpa_cred * wpa_config_read_cred(FILE *f, int *line, int id)
  177. {
  178. struct wpa_cred *cred;
  179. int errors = 0, end = 0;
  180. char buf[256], *pos, *pos2;
  181. wpa_printf(MSG_MSGDUMP, "Line: %d - start of a new cred block", *line);
  182. cred = os_zalloc(sizeof(*cred));
  183. if (cred == NULL)
  184. return NULL;
  185. cred->id = id;
  186. cred->sim_num = DEFAULT_USER_SELECTED_SIM;
  187. while (wpa_config_get_line(buf, sizeof(buf), f, line, &pos)) {
  188. if (os_strcmp(pos, "}") == 0) {
  189. end = 1;
  190. break;
  191. }
  192. pos2 = os_strchr(pos, '=');
  193. if (pos2 == NULL) {
  194. wpa_printf(MSG_ERROR, "Line %d: Invalid cred line "
  195. "'%s'.", *line, pos);
  196. errors++;
  197. continue;
  198. }
  199. *pos2++ = '\0';
  200. if (*pos2 == '"') {
  201. if (os_strchr(pos2 + 1, '"') == NULL) {
  202. wpa_printf(MSG_ERROR, "Line %d: invalid "
  203. "quotation '%s'.", *line, pos2);
  204. errors++;
  205. continue;
  206. }
  207. }
  208. if (wpa_config_set_cred(cred, pos, pos2, *line) < 0)
  209. errors++;
  210. }
  211. if (!end) {
  212. wpa_printf(MSG_ERROR, "Line %d: cred block was not "
  213. "terminated properly.", *line);
  214. errors++;
  215. }
  216. if (errors) {
  217. wpa_config_free_cred(cred);
  218. cred = NULL;
  219. }
  220. return cred;
  221. }
  222. #ifndef CONFIG_NO_CONFIG_BLOBS
  223. static struct wpa_config_blob * wpa_config_read_blob(FILE *f, int *line,
  224. const char *name)
  225. {
  226. struct wpa_config_blob *blob;
  227. char buf[256], *pos;
  228. unsigned char *encoded = NULL, *nencoded;
  229. int end = 0;
  230. size_t encoded_len = 0, len;
  231. wpa_printf(MSG_MSGDUMP, "Line: %d - start of a new named blob '%s'",
  232. *line, name);
  233. while (wpa_config_get_line(buf, sizeof(buf), f, line, &pos)) {
  234. if (os_strcmp(pos, "}") == 0) {
  235. end = 1;
  236. break;
  237. }
  238. len = os_strlen(pos);
  239. nencoded = os_realloc(encoded, encoded_len + len);
  240. if (nencoded == NULL) {
  241. wpa_printf(MSG_ERROR, "Line %d: not enough memory for "
  242. "blob", *line);
  243. os_free(encoded);
  244. return NULL;
  245. }
  246. encoded = nencoded;
  247. os_memcpy(encoded + encoded_len, pos, len);
  248. encoded_len += len;
  249. }
  250. if (!end) {
  251. wpa_printf(MSG_ERROR, "Line %d: blob was not terminated "
  252. "properly", *line);
  253. os_free(encoded);
  254. return NULL;
  255. }
  256. blob = os_zalloc(sizeof(*blob));
  257. if (blob == NULL) {
  258. os_free(encoded);
  259. return NULL;
  260. }
  261. blob->name = os_strdup(name);
  262. blob->data = base64_decode(encoded, encoded_len, &blob->len);
  263. os_free(encoded);
  264. if (blob->name == NULL || blob->data == NULL) {
  265. wpa_config_free_blob(blob);
  266. return NULL;
  267. }
  268. return blob;
  269. }
  270. static int wpa_config_process_blob(struct wpa_config *config, FILE *f,
  271. int *line, char *bname)
  272. {
  273. char *name_end;
  274. struct wpa_config_blob *blob;
  275. name_end = os_strchr(bname, '=');
  276. if (name_end == NULL) {
  277. wpa_printf(MSG_ERROR, "Line %d: no blob name terminator",
  278. *line);
  279. return -1;
  280. }
  281. *name_end = '\0';
  282. blob = wpa_config_read_blob(f, line, bname);
  283. if (blob == NULL) {
  284. wpa_printf(MSG_ERROR, "Line %d: failed to read blob %s",
  285. *line, bname);
  286. return -1;
  287. }
  288. wpa_config_set_blob(config, blob);
  289. return 0;
  290. }
  291. #endif /* CONFIG_NO_CONFIG_BLOBS */
  292. struct wpa_config * wpa_config_read(const char *name, struct wpa_config *cfgp)
  293. {
  294. FILE *f;
  295. char buf[512], *pos;
  296. int errors = 0, line = 0;
  297. struct wpa_ssid *ssid, *tail = NULL, *head = NULL;
  298. struct wpa_cred *cred, *cred_tail = NULL, *cred_head = NULL;
  299. struct wpa_config *config;
  300. int id = 0;
  301. int cred_id = 0;
  302. if (name == NULL)
  303. return NULL;
  304. if (cfgp)
  305. config = cfgp;
  306. else
  307. config = wpa_config_alloc_empty(NULL, NULL);
  308. if (config == NULL) {
  309. wpa_printf(MSG_ERROR, "Failed to allocate config file "
  310. "structure");
  311. return NULL;
  312. }
  313. head = config->ssid;
  314. cred_head = config->cred;
  315. wpa_printf(MSG_DEBUG, "Reading configuration file '%s'", name);
  316. f = fopen(name, "r");
  317. if (f == NULL) {
  318. wpa_printf(MSG_ERROR, "Failed to open config file '%s', "
  319. "error: %s", name, strerror(errno));
  320. os_free(config);
  321. return NULL;
  322. }
  323. while (wpa_config_get_line(buf, sizeof(buf), f, &line, &pos)) {
  324. if (os_strcmp(pos, "network={") == 0) {
  325. ssid = wpa_config_read_network(f, &line, id++);
  326. if (ssid == NULL) {
  327. wpa_printf(MSG_ERROR, "Line %d: failed to "
  328. "parse network block.", line);
  329. errors++;
  330. continue;
  331. }
  332. if (head == NULL) {
  333. head = tail = ssid;
  334. } else {
  335. tail->next = ssid;
  336. tail = ssid;
  337. }
  338. if (wpa_config_add_prio_network(config, ssid)) {
  339. wpa_printf(MSG_ERROR, "Line %d: failed to add "
  340. "network block to priority list.",
  341. line);
  342. errors++;
  343. continue;
  344. }
  345. } else if (os_strcmp(pos, "cred={") == 0) {
  346. cred = wpa_config_read_cred(f, &line, cred_id++);
  347. if (cred == NULL) {
  348. wpa_printf(MSG_ERROR, "Line %d: failed to "
  349. "parse cred block.", line);
  350. errors++;
  351. continue;
  352. }
  353. if (cred_head == NULL) {
  354. cred_head = cred_tail = cred;
  355. } else {
  356. cred_tail->next = cred;
  357. cred_tail = cred;
  358. }
  359. #ifndef CONFIG_NO_CONFIG_BLOBS
  360. } else if (os_strncmp(pos, "blob-base64-", 12) == 0) {
  361. if (wpa_config_process_blob(config, f, &line, pos + 12)
  362. < 0) {
  363. wpa_printf(MSG_ERROR, "Line %d: failed to "
  364. "process blob.", line);
  365. errors++;
  366. continue;
  367. }
  368. #endif /* CONFIG_NO_CONFIG_BLOBS */
  369. } else if (wpa_config_process_global(config, pos, line) < 0) {
  370. wpa_printf(MSG_ERROR, "Line %d: Invalid configuration "
  371. "line '%s'.", line, pos);
  372. errors++;
  373. continue;
  374. }
  375. }
  376. fclose(f);
  377. config->ssid = head;
  378. wpa_config_debug_dump_networks(config);
  379. config->cred = cred_head;
  380. #ifndef WPA_IGNORE_CONFIG_ERRORS
  381. if (errors) {
  382. wpa_config_free(config);
  383. config = NULL;
  384. head = NULL;
  385. }
  386. #endif /* WPA_IGNORE_CONFIG_ERRORS */
  387. return config;
  388. }
  389. #ifndef CONFIG_NO_CONFIG_WRITE
  390. static void write_str(FILE *f, const char *field, struct wpa_ssid *ssid)
  391. {
  392. char *value = wpa_config_get(ssid, field);
  393. if (value == NULL)
  394. return;
  395. fprintf(f, "\t%s=%s\n", field, value);
  396. os_free(value);
  397. }
  398. static void write_int(FILE *f, const char *field, int value, int def)
  399. {
  400. if (value == def)
  401. return;
  402. fprintf(f, "\t%s=%d\n", field, value);
  403. }
  404. static void write_bssid(FILE *f, struct wpa_ssid *ssid)
  405. {
  406. char *value = wpa_config_get(ssid, "bssid");
  407. if (value == NULL)
  408. return;
  409. fprintf(f, "\tbssid=%s\n", value);
  410. os_free(value);
  411. }
  412. static void write_psk(FILE *f, struct wpa_ssid *ssid)
  413. {
  414. char *value = wpa_config_get(ssid, "psk");
  415. if (value == NULL)
  416. return;
  417. fprintf(f, "\tpsk=%s\n", value);
  418. os_free(value);
  419. }
  420. static void write_proto(FILE *f, struct wpa_ssid *ssid)
  421. {
  422. char *value;
  423. if (ssid->proto == DEFAULT_PROTO)
  424. return;
  425. value = wpa_config_get(ssid, "proto");
  426. if (value == NULL)
  427. return;
  428. if (value[0])
  429. fprintf(f, "\tproto=%s\n", value);
  430. os_free(value);
  431. }
  432. static void write_key_mgmt(FILE *f, struct wpa_ssid *ssid)
  433. {
  434. char *value;
  435. if (ssid->key_mgmt == DEFAULT_KEY_MGMT)
  436. return;
  437. value = wpa_config_get(ssid, "key_mgmt");
  438. if (value == NULL)
  439. return;
  440. if (value[0])
  441. fprintf(f, "\tkey_mgmt=%s\n", value);
  442. os_free(value);
  443. }
  444. static void write_pairwise(FILE *f, struct wpa_ssid *ssid)
  445. {
  446. char *value;
  447. if (ssid->pairwise_cipher == DEFAULT_PAIRWISE)
  448. return;
  449. value = wpa_config_get(ssid, "pairwise");
  450. if (value == NULL)
  451. return;
  452. if (value[0])
  453. fprintf(f, "\tpairwise=%s\n", value);
  454. os_free(value);
  455. }
  456. static void write_group(FILE *f, struct wpa_ssid *ssid)
  457. {
  458. char *value;
  459. if (ssid->group_cipher == DEFAULT_GROUP)
  460. return;
  461. value = wpa_config_get(ssid, "group");
  462. if (value == NULL)
  463. return;
  464. if (value[0])
  465. fprintf(f, "\tgroup=%s\n", value);
  466. os_free(value);
  467. }
  468. static void write_auth_alg(FILE *f, struct wpa_ssid *ssid)
  469. {
  470. char *value;
  471. if (ssid->auth_alg == 0)
  472. return;
  473. value = wpa_config_get(ssid, "auth_alg");
  474. if (value == NULL)
  475. return;
  476. if (value[0])
  477. fprintf(f, "\tauth_alg=%s\n", value);
  478. os_free(value);
  479. }
  480. #ifdef IEEE8021X_EAPOL
  481. static void write_eap(FILE *f, struct wpa_ssid *ssid)
  482. {
  483. char *value;
  484. value = wpa_config_get(ssid, "eap");
  485. if (value == NULL)
  486. return;
  487. if (value[0])
  488. fprintf(f, "\teap=%s\n", value);
  489. os_free(value);
  490. }
  491. #endif /* IEEE8021X_EAPOL */
  492. static void write_wep_key(FILE *f, int idx, struct wpa_ssid *ssid)
  493. {
  494. char field[20], *value;
  495. int res;
  496. res = os_snprintf(field, sizeof(field), "wep_key%d", idx);
  497. if (res < 0 || (size_t) res >= sizeof(field))
  498. return;
  499. value = wpa_config_get(ssid, field);
  500. if (value) {
  501. fprintf(f, "\t%s=%s\n", field, value);
  502. os_free(value);
  503. }
  504. }
  505. #ifdef CONFIG_P2P
  506. static void write_go_p2p_dev_addr(FILE *f, struct wpa_ssid *ssid)
  507. {
  508. char *value = wpa_config_get(ssid, "go_p2p_dev_addr");
  509. if (value == NULL)
  510. return;
  511. fprintf(f, "\tgo_p2p_dev_addr=%s\n", value);
  512. os_free(value);
  513. }
  514. static void write_p2p_client_list(FILE *f, struct wpa_ssid *ssid)
  515. {
  516. char *value = wpa_config_get(ssid, "p2p_client_list");
  517. if (value == NULL)
  518. return;
  519. fprintf(f, "\tp2p_client_list=%s\n", value);
  520. os_free(value);
  521. }
  522. static void write_psk_list(FILE *f, struct wpa_ssid *ssid)
  523. {
  524. struct psk_list_entry *psk;
  525. char hex[32 * 2 + 1];
  526. dl_list_for_each(psk, &ssid->psk_list, struct psk_list_entry, list) {
  527. wpa_snprintf_hex(hex, sizeof(hex), psk->psk, sizeof(psk->psk));
  528. fprintf(f, "\tpsk_list=%s" MACSTR "-%s\n",
  529. psk->p2p ? "P2P-" : "", MAC2STR(psk->addr), hex);
  530. }
  531. }
  532. #endif /* CONFIG_P2P */
  533. static void wpa_config_write_network(FILE *f, struct wpa_ssid *ssid)
  534. {
  535. int i;
  536. #define STR(t) write_str(f, #t, ssid)
  537. #define INT(t) write_int(f, #t, ssid->t, 0)
  538. #define INTe(t) write_int(f, #t, ssid->eap.t, 0)
  539. #define INT_DEF(t, def) write_int(f, #t, ssid->t, def)
  540. #define INT_DEFe(t, def) write_int(f, #t, ssid->eap.t, def)
  541. STR(ssid);
  542. INT(scan_ssid);
  543. write_bssid(f, ssid);
  544. write_psk(f, ssid);
  545. write_proto(f, ssid);
  546. write_key_mgmt(f, ssid);
  547. INT_DEF(bg_scan_period, DEFAULT_BG_SCAN_PERIOD);
  548. write_pairwise(f, ssid);
  549. write_group(f, ssid);
  550. write_auth_alg(f, ssid);
  551. STR(bgscan);
  552. STR(autoscan);
  553. STR(scan_freq);
  554. #ifdef IEEE8021X_EAPOL
  555. write_eap(f, ssid);
  556. STR(identity);
  557. STR(anonymous_identity);
  558. STR(password);
  559. STR(ca_cert);
  560. STR(ca_path);
  561. STR(client_cert);
  562. STR(private_key);
  563. STR(private_key_passwd);
  564. STR(dh_file);
  565. STR(subject_match);
  566. STR(altsubject_match);
  567. STR(domain_suffix_match);
  568. STR(ca_cert2);
  569. STR(ca_path2);
  570. STR(client_cert2);
  571. STR(private_key2);
  572. STR(private_key2_passwd);
  573. STR(dh_file2);
  574. STR(subject_match2);
  575. STR(altsubject_match2);
  576. STR(domain_suffix_match2);
  577. STR(phase1);
  578. STR(phase2);
  579. STR(pcsc);
  580. STR(pin);
  581. STR(engine_id);
  582. STR(key_id);
  583. STR(cert_id);
  584. STR(ca_cert_id);
  585. STR(key2_id);
  586. STR(pin2);
  587. STR(engine2_id);
  588. STR(cert2_id);
  589. STR(ca_cert2_id);
  590. INTe(engine);
  591. INTe(engine2);
  592. INT_DEF(eapol_flags, DEFAULT_EAPOL_FLAGS);
  593. #endif /* IEEE8021X_EAPOL */
  594. for (i = 0; i < 4; i++)
  595. write_wep_key(f, i, ssid);
  596. INT(wep_tx_keyidx);
  597. INT(priority);
  598. #ifdef IEEE8021X_EAPOL
  599. INT_DEF(eap_workaround, DEFAULT_EAP_WORKAROUND);
  600. STR(pac_file);
  601. INT_DEFe(fragment_size, DEFAULT_FRAGMENT_SIZE);
  602. INTe(ocsp);
  603. INT_DEFe(sim_num, DEFAULT_USER_SELECTED_SIM);
  604. #endif /* IEEE8021X_EAPOL */
  605. INT(mode);
  606. INT(frequency);
  607. write_int(f, "proactive_key_caching", ssid->proactive_key_caching, -1);
  608. INT(disabled);
  609. INT(peerkey);
  610. #ifdef CONFIG_IEEE80211W
  611. write_int(f, "ieee80211w", ssid->ieee80211w,
  612. MGMT_FRAME_PROTECTION_DEFAULT);
  613. #endif /* CONFIG_IEEE80211W */
  614. STR(id_str);
  615. #ifdef CONFIG_P2P
  616. write_go_p2p_dev_addr(f, ssid);
  617. write_p2p_client_list(f, ssid);
  618. write_psk_list(f, ssid);
  619. #endif /* CONFIG_P2P */
  620. INT(dtim_period);
  621. INT(beacon_int);
  622. #undef STR
  623. #undef INT
  624. #undef INT_DEF
  625. }
  626. static void wpa_config_write_cred(FILE *f, struct wpa_cred *cred)
  627. {
  628. size_t i;
  629. if (cred->priority)
  630. fprintf(f, "\tpriority=%d\n", cred->priority);
  631. if (cred->pcsc)
  632. fprintf(f, "\tpcsc=%d\n", cred->pcsc);
  633. if (cred->realm)
  634. fprintf(f, "\trealm=\"%s\"\n", cred->realm);
  635. if (cred->username)
  636. fprintf(f, "\tusername=\"%s\"\n", cred->username);
  637. if (cred->password && cred->ext_password)
  638. fprintf(f, "\tpassword=ext:%s\n", cred->password);
  639. else if (cred->password)
  640. fprintf(f, "\tpassword=\"%s\"\n", cred->password);
  641. if (cred->ca_cert)
  642. fprintf(f, "\tca_cert=\"%s\"\n", cred->ca_cert);
  643. if (cred->client_cert)
  644. fprintf(f, "\tclient_cert=\"%s\"\n", cred->client_cert);
  645. if (cred->private_key)
  646. fprintf(f, "\tprivate_key=\"%s\"\n", cred->private_key);
  647. if (cred->private_key_passwd)
  648. fprintf(f, "\tprivate_key_passwd=\"%s\"\n",
  649. cred->private_key_passwd);
  650. if (cred->imsi)
  651. fprintf(f, "\timsi=\"%s\"\n", cred->imsi);
  652. if (cred->milenage)
  653. fprintf(f, "\tmilenage=\"%s\"\n", cred->milenage);
  654. for (i = 0; i < cred->num_domain; i++)
  655. fprintf(f, "\tdomain=\"%s\"\n", cred->domain[i]);
  656. if (cred->domain_suffix_match)
  657. fprintf(f, "\tdomain_suffix_match=\"%s\"",
  658. cred->domain_suffix_match);
  659. if (cred->roaming_consortium_len) {
  660. fprintf(f, "\troaming_consortium=");
  661. for (i = 0; i < cred->roaming_consortium_len; i++)
  662. fprintf(f, "%02x", cred->roaming_consortium[i]);
  663. fprintf(f, "\n");
  664. }
  665. if (cred->eap_method) {
  666. const char *name;
  667. name = eap_get_name(cred->eap_method[0].vendor,
  668. cred->eap_method[0].method);
  669. fprintf(f, "\teap=%s\n", name);
  670. }
  671. if (cred->phase1)
  672. fprintf(f, "\tphase1=\"%s\"\n", cred->phase1);
  673. if (cred->phase2)
  674. fprintf(f, "\tphase2=\"%s\"\n", cred->phase2);
  675. if (cred->excluded_ssid) {
  676. size_t j;
  677. for (i = 0; i < cred->num_excluded_ssid; i++) {
  678. struct excluded_ssid *e = &cred->excluded_ssid[i];
  679. fprintf(f, "\texcluded_ssid=");
  680. for (j = 0; j < e->ssid_len; j++)
  681. fprintf(f, "%02x", e->ssid[j]);
  682. fprintf(f, "\n");
  683. }
  684. }
  685. if (cred->roaming_partner) {
  686. for (i = 0; i < cred->num_roaming_partner; i++) {
  687. struct roaming_partner *p = &cred->roaming_partner[i];
  688. fprintf(f, "\troaming_partner=\"%s,%d,%u,%s\"\n",
  689. p->fqdn, p->exact_match, p->priority,
  690. p->country);
  691. }
  692. }
  693. if (cred->update_identifier)
  694. fprintf(f, "\tupdate_identifier=%d\n", cred->update_identifier);
  695. if (cred->provisioning_sp)
  696. fprintf(f, "\tprovisioning_sp=\"%s\"\n", cred->provisioning_sp);
  697. if (cred->sp_priority)
  698. fprintf(f, "\tsp_priority=%d\n", cred->sp_priority);
  699. if (cred->min_dl_bandwidth_home)
  700. fprintf(f, "\tmin_dl_bandwidth_home=%u\n",
  701. cred->min_dl_bandwidth_home);
  702. if (cred->min_ul_bandwidth_home)
  703. fprintf(f, "\tmin_ul_bandwidth_home=%u\n",
  704. cred->min_ul_bandwidth_home);
  705. if (cred->min_dl_bandwidth_roaming)
  706. fprintf(f, "\tmin_dl_bandwidth_roaming=%u\n",
  707. cred->min_dl_bandwidth_roaming);
  708. if (cred->min_ul_bandwidth_roaming)
  709. fprintf(f, "\tmin_ul_bandwidth_roaming=%u\n",
  710. cred->min_ul_bandwidth_roaming);
  711. if (cred->max_bss_load)
  712. fprintf(f, "\tmax_bss_load=%u\n",
  713. cred->max_bss_load);
  714. if (cred->ocsp)
  715. fprintf(f, "\tocsp=%d\n", cred->ocsp);
  716. if (cred->num_req_conn_capab) {
  717. for (i = 0; i < cred->num_req_conn_capab; i++) {
  718. int *ports;
  719. fprintf(f, "\treq_conn_capab=%u",
  720. cred->req_conn_capab_proto[i]);
  721. ports = cred->req_conn_capab_port[i];
  722. if (ports) {
  723. int j;
  724. for (j = 0; ports[j] != -1; j++) {
  725. fprintf(f, "%s%d", j > 0 ? "," : ":",
  726. ports[j]);
  727. }
  728. }
  729. fprintf(f, "\n");
  730. }
  731. }
  732. if (cred->required_roaming_consortium_len) {
  733. fprintf(f, "\trequired_roaming_consortium=");
  734. for (i = 0; i < cred->required_roaming_consortium_len; i++)
  735. fprintf(f, "%02x",
  736. cred->required_roaming_consortium[i]);
  737. fprintf(f, "\n");
  738. }
  739. if (cred->sim_num != DEFAULT_USER_SELECTED_SIM)
  740. fprintf(f, "\tsim_num=%d\n", cred->sim_num);
  741. }
  742. #ifndef CONFIG_NO_CONFIG_BLOBS
  743. static int wpa_config_write_blob(FILE *f, struct wpa_config_blob *blob)
  744. {
  745. unsigned char *encoded;
  746. encoded = base64_encode(blob->data, blob->len, NULL);
  747. if (encoded == NULL)
  748. return -1;
  749. fprintf(f, "\nblob-base64-%s={\n%s}\n", blob->name, encoded);
  750. os_free(encoded);
  751. return 0;
  752. }
  753. #endif /* CONFIG_NO_CONFIG_BLOBS */
  754. static void write_global_bin(FILE *f, const char *field,
  755. const struct wpabuf *val)
  756. {
  757. size_t i;
  758. const u8 *pos;
  759. if (val == NULL)
  760. return;
  761. fprintf(f, "%s=", field);
  762. pos = wpabuf_head(val);
  763. for (i = 0; i < wpabuf_len(val); i++)
  764. fprintf(f, "%02X", *pos++);
  765. fprintf(f, "\n");
  766. }
  767. static void wpa_config_write_global(FILE *f, struct wpa_config *config)
  768. {
  769. #ifdef CONFIG_CTRL_IFACE
  770. if (config->ctrl_interface)
  771. fprintf(f, "ctrl_interface=%s\n", config->ctrl_interface);
  772. if (config->ctrl_interface_group)
  773. fprintf(f, "ctrl_interface_group=%s\n",
  774. config->ctrl_interface_group);
  775. #endif /* CONFIG_CTRL_IFACE */
  776. if (config->eapol_version != DEFAULT_EAPOL_VERSION)
  777. fprintf(f, "eapol_version=%d\n", config->eapol_version);
  778. if (config->ap_scan != DEFAULT_AP_SCAN)
  779. fprintf(f, "ap_scan=%d\n", config->ap_scan);
  780. if (config->disable_scan_offload)
  781. fprintf(f, "disable_scan_offload=%d\n",
  782. config->disable_scan_offload);
  783. if (config->fast_reauth != DEFAULT_FAST_REAUTH)
  784. fprintf(f, "fast_reauth=%d\n", config->fast_reauth);
  785. if (config->opensc_engine_path)
  786. fprintf(f, "opensc_engine_path=%s\n",
  787. config->opensc_engine_path);
  788. if (config->pkcs11_engine_path)
  789. fprintf(f, "pkcs11_engine_path=%s\n",
  790. config->pkcs11_engine_path);
  791. if (config->pkcs11_module_path)
  792. fprintf(f, "pkcs11_module_path=%s\n",
  793. config->pkcs11_module_path);
  794. if (config->pcsc_reader)
  795. fprintf(f, "pcsc_reader=%s\n", config->pcsc_reader);
  796. if (config->pcsc_pin)
  797. fprintf(f, "pcsc_pin=%s\n", config->pcsc_pin);
  798. if (config->driver_param)
  799. fprintf(f, "driver_param=%s\n", config->driver_param);
  800. if (config->dot11RSNAConfigPMKLifetime)
  801. fprintf(f, "dot11RSNAConfigPMKLifetime=%d\n",
  802. config->dot11RSNAConfigPMKLifetime);
  803. if (config->dot11RSNAConfigPMKReauthThreshold)
  804. fprintf(f, "dot11RSNAConfigPMKReauthThreshold=%d\n",
  805. config->dot11RSNAConfigPMKReauthThreshold);
  806. if (config->dot11RSNAConfigSATimeout)
  807. fprintf(f, "dot11RSNAConfigSATimeout=%d\n",
  808. config->dot11RSNAConfigSATimeout);
  809. if (config->update_config)
  810. fprintf(f, "update_config=%d\n", config->update_config);
  811. #ifdef CONFIG_WPS
  812. if (!is_nil_uuid(config->uuid)) {
  813. char buf[40];
  814. uuid_bin2str(config->uuid, buf, sizeof(buf));
  815. fprintf(f, "uuid=%s\n", buf);
  816. }
  817. if (config->device_name)
  818. fprintf(f, "device_name=%s\n", config->device_name);
  819. if (config->manufacturer)
  820. fprintf(f, "manufacturer=%s\n", config->manufacturer);
  821. if (config->model_name)
  822. fprintf(f, "model_name=%s\n", config->model_name);
  823. if (config->model_number)
  824. fprintf(f, "model_number=%s\n", config->model_number);
  825. if (config->serial_number)
  826. fprintf(f, "serial_number=%s\n", config->serial_number);
  827. {
  828. char _buf[WPS_DEV_TYPE_BUFSIZE], *buf;
  829. buf = wps_dev_type_bin2str(config->device_type,
  830. _buf, sizeof(_buf));
  831. if (os_strcmp(buf, "0-00000000-0") != 0)
  832. fprintf(f, "device_type=%s\n", buf);
  833. }
  834. if (WPA_GET_BE32(config->os_version))
  835. fprintf(f, "os_version=%08x\n",
  836. WPA_GET_BE32(config->os_version));
  837. if (config->config_methods)
  838. fprintf(f, "config_methods=%s\n", config->config_methods);
  839. if (config->wps_cred_processing)
  840. fprintf(f, "wps_cred_processing=%d\n",
  841. config->wps_cred_processing);
  842. if (config->wps_vendor_ext_m1) {
  843. int i, len = wpabuf_len(config->wps_vendor_ext_m1);
  844. const u8 *p = wpabuf_head_u8(config->wps_vendor_ext_m1);
  845. if (len > 0) {
  846. fprintf(f, "wps_vendor_ext_m1=");
  847. for (i = 0; i < len; i++)
  848. fprintf(f, "%02x", *p++);
  849. fprintf(f, "\n");
  850. }
  851. }
  852. #endif /* CONFIG_WPS */
  853. #ifdef CONFIG_P2P
  854. if (config->p2p_listen_reg_class)
  855. fprintf(f, "p2p_listen_reg_class=%u\n",
  856. config->p2p_listen_reg_class);
  857. if (config->p2p_listen_channel)
  858. fprintf(f, "p2p_listen_channel=%u\n",
  859. config->p2p_listen_channel);
  860. if (config->p2p_oper_reg_class)
  861. fprintf(f, "p2p_oper_reg_class=%u\n",
  862. config->p2p_oper_reg_class);
  863. if (config->p2p_oper_channel)
  864. fprintf(f, "p2p_oper_channel=%u\n", config->p2p_oper_channel);
  865. if (config->p2p_go_intent != DEFAULT_P2P_GO_INTENT)
  866. fprintf(f, "p2p_go_intent=%u\n", config->p2p_go_intent);
  867. if (config->p2p_ssid_postfix)
  868. fprintf(f, "p2p_ssid_postfix=%s\n", config->p2p_ssid_postfix);
  869. if (config->persistent_reconnect)
  870. fprintf(f, "persistent_reconnect=%u\n",
  871. config->persistent_reconnect);
  872. if (config->p2p_intra_bss != DEFAULT_P2P_INTRA_BSS)
  873. fprintf(f, "p2p_intra_bss=%u\n", config->p2p_intra_bss);
  874. if (config->p2p_group_idle)
  875. fprintf(f, "p2p_group_idle=%u\n", config->p2p_group_idle);
  876. if (config->p2p_pref_chan) {
  877. unsigned int i;
  878. fprintf(f, "p2p_pref_chan=");
  879. for (i = 0; i < config->num_p2p_pref_chan; i++) {
  880. fprintf(f, "%s%u:%u", i > 0 ? "," : "",
  881. config->p2p_pref_chan[i].op_class,
  882. config->p2p_pref_chan[i].chan);
  883. }
  884. fprintf(f, "\n");
  885. }
  886. if (config->p2p_no_go_freq.num) {
  887. char *val = freq_range_list_str(&config->p2p_no_go_freq);
  888. if (val) {
  889. fprintf(f, "p2p_no_go_freq=%s\n", val);
  890. os_free(val);
  891. }
  892. }
  893. if (config->p2p_add_cli_chan)
  894. fprintf(f, "p2p_add_cli_chan=%d\n", config->p2p_add_cli_chan);
  895. if (config->p2p_go_ht40)
  896. fprintf(f, "p2p_go_ht40=%u\n", config->p2p_go_ht40);
  897. if (config->p2p_go_vht)
  898. fprintf(f, "p2p_go_vht=%u\n", config->p2p_go_vht);
  899. if (config->p2p_disabled)
  900. fprintf(f, "p2p_disabled=%u\n", config->p2p_disabled);
  901. if (config->p2p_no_group_iface)
  902. fprintf(f, "p2p_no_group_iface=%u\n",
  903. config->p2p_no_group_iface);
  904. if (config->p2p_ignore_shared_freq)
  905. fprintf(f, "p2p_ignore_shared_freq=%u\n",
  906. config->p2p_ignore_shared_freq);
  907. #endif /* CONFIG_P2P */
  908. if (config->country[0] && config->country[1]) {
  909. fprintf(f, "country=%c%c\n",
  910. config->country[0], config->country[1]);
  911. }
  912. if (config->bss_max_count != DEFAULT_BSS_MAX_COUNT)
  913. fprintf(f, "bss_max_count=%u\n", config->bss_max_count);
  914. if (config->bss_expiration_age != DEFAULT_BSS_EXPIRATION_AGE)
  915. fprintf(f, "bss_expiration_age=%u\n",
  916. config->bss_expiration_age);
  917. if (config->bss_expiration_scan_count !=
  918. DEFAULT_BSS_EXPIRATION_SCAN_COUNT)
  919. fprintf(f, "bss_expiration_scan_count=%u\n",
  920. config->bss_expiration_scan_count);
  921. if (config->filter_ssids)
  922. fprintf(f, "filter_ssids=%d\n", config->filter_ssids);
  923. if (config->max_num_sta != DEFAULT_MAX_NUM_STA)
  924. fprintf(f, "max_num_sta=%u\n", config->max_num_sta);
  925. if (config->disassoc_low_ack)
  926. fprintf(f, "disassoc_low_ack=%u\n", config->disassoc_low_ack);
  927. #ifdef CONFIG_HS20
  928. if (config->hs20)
  929. fprintf(f, "hs20=1\n");
  930. #endif /* CONFIG_HS20 */
  931. #ifdef CONFIG_INTERWORKING
  932. if (config->interworking)
  933. fprintf(f, "interworking=%u\n", config->interworking);
  934. if (!is_zero_ether_addr(config->hessid))
  935. fprintf(f, "hessid=" MACSTR "\n", MAC2STR(config->hessid));
  936. if (config->access_network_type != DEFAULT_ACCESS_NETWORK_TYPE)
  937. fprintf(f, "access_network_type=%d\n",
  938. config->access_network_type);
  939. #endif /* CONFIG_INTERWORKING */
  940. if (config->pbc_in_m1)
  941. fprintf(f, "pbc_in_m1=%u\n", config->pbc_in_m1);
  942. if (config->wps_nfc_pw_from_config) {
  943. if (config->wps_nfc_dev_pw_id)
  944. fprintf(f, "wps_nfc_dev_pw_id=%d\n",
  945. config->wps_nfc_dev_pw_id);
  946. write_global_bin(f, "wps_nfc_dh_pubkey",
  947. config->wps_nfc_dh_pubkey);
  948. write_global_bin(f, "wps_nfc_dh_privkey",
  949. config->wps_nfc_dh_privkey);
  950. write_global_bin(f, "wps_nfc_dev_pw", config->wps_nfc_dev_pw);
  951. }
  952. if (config->ext_password_backend)
  953. fprintf(f, "ext_password_backend=%s\n",
  954. config->ext_password_backend);
  955. if (config->p2p_go_max_inactivity != DEFAULT_P2P_GO_MAX_INACTIVITY)
  956. fprintf(f, "p2p_go_max_inactivity=%d\n",
  957. config->p2p_go_max_inactivity);
  958. if (config->auto_interworking)
  959. fprintf(f, "auto_interworking=%d\n",
  960. config->auto_interworking);
  961. if (config->okc)
  962. fprintf(f, "okc=%d\n", config->okc);
  963. if (config->pmf)
  964. fprintf(f, "pmf=%d\n", config->pmf);
  965. if (config->dtim_period)
  966. fprintf(f, "dtim_period=%d\n", config->dtim_period);
  967. if (config->beacon_int)
  968. fprintf(f, "beacon_int=%d\n", config->beacon_int);
  969. if (config->sae_groups) {
  970. int i;
  971. fprintf(f, "sae_groups=");
  972. for (i = 0; config->sae_groups[i] >= 0; i++) {
  973. fprintf(f, "%s%d", i > 0 ? " " : "",
  974. config->sae_groups[i]);
  975. }
  976. fprintf(f, "\n");
  977. }
  978. if (config->ap_vendor_elements) {
  979. int i, len = wpabuf_len(config->ap_vendor_elements);
  980. const u8 *p = wpabuf_head_u8(config->ap_vendor_elements);
  981. if (len > 0) {
  982. fprintf(f, "ap_vendor_elements=");
  983. for (i = 0; i < len; i++)
  984. fprintf(f, "%02x", *p++);
  985. fprintf(f, "\n");
  986. }
  987. }
  988. if (config->ignore_old_scan_res)
  989. fprintf(f, "ignore_old_scan_res=%d\n",
  990. config->ignore_old_scan_res);
  991. if (config->freq_list && config->freq_list[0]) {
  992. int i;
  993. fprintf(f, "freq_list=");
  994. for (i = 0; config->freq_list[i]; i++) {
  995. fprintf(f, "%s%u", i > 0 ? " " : "",
  996. config->freq_list[i]);
  997. }
  998. fprintf(f, "\n");
  999. }
  1000. if (config->scan_cur_freq != DEFAULT_SCAN_CUR_FREQ)
  1001. fprintf(f, "scan_cur_freq=%d\n", config->scan_cur_freq);
  1002. if (config->sched_scan_interval)
  1003. fprintf(f, "sched_scan_interval=%u\n",
  1004. config->sched_scan_interval);
  1005. if (config->external_sim)
  1006. fprintf(f, "external_sim=%d\n", config->external_sim);
  1007. if (config->tdls_external_control)
  1008. fprintf(f, "tdls_external_control=%d\n",
  1009. config->tdls_external_control);
  1010. if (config->bgscan)
  1011. fprintf(f, "bgscan=\"%s\"\n", config->bgscan);
  1012. }
  1013. #endif /* CONFIG_NO_CONFIG_WRITE */
  1014. int wpa_config_write(const char *name, struct wpa_config *config)
  1015. {
  1016. #ifndef CONFIG_NO_CONFIG_WRITE
  1017. FILE *f;
  1018. struct wpa_ssid *ssid;
  1019. struct wpa_cred *cred;
  1020. #ifndef CONFIG_NO_CONFIG_BLOBS
  1021. struct wpa_config_blob *blob;
  1022. #endif /* CONFIG_NO_CONFIG_BLOBS */
  1023. int ret = 0;
  1024. wpa_printf(MSG_DEBUG, "Writing configuration file '%s'", name);
  1025. f = fopen(name, "w");
  1026. if (f == NULL) {
  1027. wpa_printf(MSG_DEBUG, "Failed to open '%s' for writing", name);
  1028. return -1;
  1029. }
  1030. wpa_config_write_global(f, config);
  1031. for (cred = config->cred; cred; cred = cred->next) {
  1032. if (cred->temporary)
  1033. continue;
  1034. fprintf(f, "\ncred={\n");
  1035. wpa_config_write_cred(f, cred);
  1036. fprintf(f, "}\n");
  1037. }
  1038. for (ssid = config->ssid; ssid; ssid = ssid->next) {
  1039. if (ssid->key_mgmt == WPA_KEY_MGMT_WPS || ssid->temporary)
  1040. continue; /* do not save temporary networks */
  1041. if (wpa_key_mgmt_wpa_psk(ssid->key_mgmt) && !ssid->psk_set &&
  1042. !ssid->passphrase)
  1043. continue; /* do not save invalid network */
  1044. fprintf(f, "\nnetwork={\n");
  1045. wpa_config_write_network(f, ssid);
  1046. fprintf(f, "}\n");
  1047. }
  1048. #ifndef CONFIG_NO_CONFIG_BLOBS
  1049. for (blob = config->blobs; blob; blob = blob->next) {
  1050. ret = wpa_config_write_blob(f, blob);
  1051. if (ret)
  1052. break;
  1053. }
  1054. #endif /* CONFIG_NO_CONFIG_BLOBS */
  1055. fclose(f);
  1056. wpa_printf(MSG_DEBUG, "Configuration file '%s' written %ssuccessfully",
  1057. name, ret ? "un" : "");
  1058. return ret;
  1059. #else /* CONFIG_NO_CONFIG_WRITE */
  1060. return -1;
  1061. #endif /* CONFIG_NO_CONFIG_WRITE */
  1062. }