3 * Copyright 2009-2014 Roy Marples <roy@marples.name>
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 #include <sys/socket.h>
47 (sizeof(*(su)) - sizeof((su)->sun_path) + strlen((su)->sun_path))
50 #define CLAMP(x, low, high) \
51 (((x) > (high)) ? (high) : (((x) < (low)) ? (low) : (x)))
54 wpa_open(const char *ifname, char **path)
59 struct sockaddr_un sun;
61 if ((fd = socket(AF_UNIX,
62 SOCK_DGRAM | SOCK_CLOEXEC | SOCK_NONBLOCK, 0)) == -1)
64 memset(&sun, 0, sizeof(sun));
65 sun.sun_family = AF_UNIX;
66 snprintf(sun.sun_path, sizeof(sun.sun_path),
67 "/tmp/libdhcpcd-wpa-%d.%d", getpid(), counter++);
68 *path = strdup(sun.sun_path);
69 len = (socklen_t)SUN_LEN(&sun);
70 if (bind(fd, (struct sockaddr *)&sun, len) == -1) {
77 snprintf(sun.sun_path, sizeof(sun.sun_path),
78 WPA_CTRL_DIR "/%s", ifname);
79 len = (socklen_t)SUN_LEN(&sun);
80 if (connect(fd, (struct sockaddr *)&sun, len) == -1) {
92 wpa_cmd(int fd, const char *cmd, char *buffer, size_t len)
100 bytes = write(fd, cmd, strlen(cmd));
101 if (bytes == -1 || bytes == 0)
103 if (buffer == NULL || len == 0)
106 pfd.events = POLLIN | POLLHUP;
108 retval = poll(&pfd, 1, 2000);
111 if (retval == 0 || !(pfd.revents & (POLLIN | POLLHUP)))
114 bytes = read(fd, buffer, len == 1 ? 1 : len - 1);
116 buffer[bytes] = '\0';
121 dhcpcd_wpa_command(DHCPCD_WPA *wpa, const char *cmd)
126 bytes = wpa_cmd(wpa->command_fd, cmd, buf, sizeof(buf));
127 return (bytes == -1 || bytes == 0 ||
128 strcmp(buf, "OK\n")) ? false : true;
132 dhcpcd_wpa_command_arg(DHCPCD_WPA *wpa, const char *cmd, const char *arg)
136 cmdlen = strlen(cmd);
137 nlen = cmdlen + strlen(arg) + 2;
138 if (!dhcpcd_realloc(wpa->con, nlen))
140 strlcpy(wpa->con->buf, cmd, wpa->con->buflen);
141 wpa->con->buf[cmdlen] = ' ';
142 strlcpy(wpa->con->buf + cmdlen + 1, arg, wpa->con->buflen - 1 - cmdlen);
143 return dhcpcd_wpa_command(wpa, wpa->con->buf);
147 dhcpcd_attach_detach(DHCPCD_WPA *wpa, bool attach)
152 if (wpa->attached == attach)
155 bytes = wpa_cmd(wpa->listen_fd, attach > 0 ? "ATTACH" : "DETACH",
157 if (bytes == -1 || bytes == 0 || strcmp(buf, "OK\n"))
160 wpa->attached = attach;
165 dhcpcd_wpa_scan(DHCPCD_WPA *wpa)
168 return dhcpcd_wpa_command(wpa, "SCAN");
172 dhcpcd_wi_scans_free(DHCPCD_WI_SCAN *wis)
184 dhcpcd_strtoi(int *val, const char *s)
188 l = strtol(s, NULL, 0);
189 if (l >= INT_MIN && l <= INT_MAX)
196 dhcpcd_wpa_hex2num(char c)
199 if (c >= '0' && c <= '9')
201 if (c >= 'a' && c <= 'f')
203 if (c >= 'A' && c <= 'F')
209 dhcpcd_wpa_hex2byte(const char *src)
213 if ((h = dhcpcd_wpa_hex2num(*src++)) == -1 ||
214 (l = dhcpcd_wpa_hex2num(*src)) == -1)
220 dhcpcd_wpa_decode_ssid(char *dst, size_t dlen, const char *src)
244 case '"': *dst++ = esc; break;
245 case 'n': *dst++ = '\n'; break;
246 case 'r': *dst++ = '\r'; break;
247 case 't': *dst++ = '\t'; break;
248 case 'e': *dst++ = '\033'; break;
250 if (src[0] == '\0' || src[1] == '\0') {
254 if ((xb = dhcpcd_wpa_hex2byte(src)) == -1)
259 default: errno = EINVAL; return -1;
261 default: *dst++ = c; break;
272 static DHCPCD_WI_SCAN *
273 dhcpcd_wpa_scans_read(DHCPCD_WPA *wpa)
277 DHCPCD_WI_SCAN *wis, *w, *l;
278 char *s, *p, buf[32];
279 char wssid[sizeof(w->ssid)];
281 if (!dhcpcd_realloc(wpa->con, 2048))
284 for (i = 0; i < 1000; i++) {
285 snprintf(buf, sizeof(buf), "BSS %zu", i);
286 bytes = wpa_cmd(wpa->command_fd, buf,
287 wpa->con->buf, wpa->con->buflen);
288 if (bytes == 0 || bytes == -1 ||
289 strncmp(wpa->con->buf, "FAIL", 4) == 0)
292 w = calloc(1, sizeof(*w));
297 while ((s = strsep(&p, "\n"))) {
300 if (strncmp(s, "bssid=", 6) == 0)
301 strlcpy(w->bssid, s + 6, sizeof(w->bssid));
302 else if (strncmp(s, "freq=", 5) == 0)
303 dhcpcd_strtoi(&w->frequency, s + 5);
304 // else if (strncmp(s, "beacon_int=", 11) == 0)
306 else if (strncmp(s, "qual=", 5) == 0)
307 dhcpcd_strtoi(&w->quality.value, s + 5);
308 else if (strncmp(s, "noise=", 6) == 0)
309 dhcpcd_strtoi(&w->noise.value, s + 6);
310 else if (strncmp(s, "level=", 6) == 0)
311 dhcpcd_strtoi(&w->level.value, s + 6);
312 else if (strncmp(s, "flags=", 6) == 0)
313 strlcpy(w->flags, s + 6, sizeof(w->flags));
314 else if (strncmp(s, "ssid=", 5) == 0) {
315 /* Decode it from \xNN to \NNN
316 * so we're consistent */
317 dl = dhcpcd_wpa_decode_ssid(wssid,
318 sizeof(wssid), s + 5);
321 dl = dhcpcd_encode_string_escape(w->ssid,
322 sizeof(w->ssid), wssid, (size_t)dl);
338 w->strength.value = w->level.value;
339 if (w->strength.value > 110 && w->strength.value < 256)
340 /* Convert WEXT level to dBm */
341 w->strength.value -= 256;
343 if (w->strength.value < 0) {
346 abs(CLAMP(w->strength.value, -100, -40) + 40);
348 100 - ((100 * w->strength.value) / 60);
350 /* Assume quality percentage */
351 w->strength.value = CLAMP(w->strength.value, 0, 100);
358 dhcpcd_wi_scan_compare(DHCPCD_WI_SCAN *a, DHCPCD_WI_SCAN *b)
362 /* Fist sort non case sensitive, then case sensitive */
363 cmp = strcasecmp(a->ssid, b->ssid);
365 cmp = strcmp(a->ssid, b->ssid);
367 /* If still the same, return strongest first */
369 cmp = b->strength.value - a->strength.value;
375 * This function is copyright 2001 Simon Tatham.
377 * Permission is hereby granted, free of charge, to any person
378 * obtaining a copy of this software and associated documentation
379 * files (the "Software"), to deal in the Software without
380 * restriction, including without limitation the rights to use,
381 * copy, modify, merge, publish, distribute, sublicense, and/or
382 * sell copies of the Software, and to permit persons to whom the
383 * Software is furnished to do so, subject to the following
386 * The above copyright notice and this permission notice shall be
387 * included in all copies or substantial portions of the Software.
389 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
390 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
391 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
392 * NONINFRINGEMENT. IN NO EVENT SHALL SIMON TATHAM BE LIABLE FOR
393 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
394 * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
395 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
398 static DHCPCD_WI_SCAN *
399 dhcpcd_wi_scans_sort(DHCPCD_WI_SCAN *list)
401 DHCPCD_WI_SCAN *p, *q, *e, *tail;
402 size_t insize, nmerges, psize, qsize, i;
404 /* Silly special case: if `list' was passed in as NULL, return
405 * NULL immediately. */
414 nmerges = 0; /* count number of merges we do in this pass */
417 nmerges++; /* there exists a merge to be done */
418 /* step `insize' places along from p */
421 for (i = 0; i < insize; i++) {
428 /* if q hasn't fallen off end,
429 * we have two lists to merge */
432 /* now we have two lists; merge them */
433 while (psize > 0 || (qsize > 0 && q)) {
434 /* decide whether next element of merge comes
437 /* p is empty; e must come from q. */
438 e = q; q = q->next; qsize--;
439 } else if (qsize == 0 || !q) {
440 /* q is empty; e must come from p. */
441 e = p; p = p->next; psize--;
442 } else if (dhcpcd_wi_scan_compare(p, q) <= 0) {
443 /* First element of p is lower
444 * (or same); e must come from p. */
445 e = p; p = p->next; psize--;
447 /* First element of q is lower;
448 * e must come from q. */
449 e = q; q = q->next; qsize--;
452 /* add the next element to the merged list */
460 /* now p has stepped `insize' places along,
466 /* If we have done only one merge, we're finished. */
467 if (nmerges <= 1) /* allow for nmerges==0, the empty list */
470 /* Otherwise repeat, merging lists twice the size */
476 dhcpcd_wi_scans(DHCPCD_IF *i)
479 DHCPCD_WI_SCAN *wis, *w, *n, *p;
481 DHCPCD_WI_HIST *h, *hl;
483 wpa = dhcpcd_wpa_find(i->con, i->ifname);
486 wis = dhcpcd_wpa_scans_read(wpa);
488 /* Sort the resultant list alphabetically and then by strength */
489 wis = dhcpcd_wi_scans_sort(wis);
492 for (w = wis; w && (n = w->next, 1); w = n) {
493 /* Currently we don't support non SSID broadcasting APs */
494 if (*w->ssid == '\0') {
502 /* Strip duplicated SSIDs, only show the strongest */
503 if (p && strcmp(p->ssid, w->ssid) == 0) {
508 /* Remember this as the previos next time */
513 w->quality.average = w->quality.value;
514 w->noise.average = w->noise.value;
515 w->level.average = w->level.value;
516 w->strength.average = w->strength.value;
518 for (h = wpa->con->wi_history; h; h = h->next) {
519 if (strcmp(h->ifname, i->ifname) == 0 &&
520 strcmp(h->bssid, wis->bssid) == 0)
522 w->quality.average += h->quality;
523 w->noise.average += h->noise;
524 w->level.average += h->level;
525 w->strength.average += h->strength;
526 if (++nh == DHCPCD_WI_HIST_MAX) {
536 w->quality.average /= nh;
537 w->noise.average /= nh;
538 w->level.average /= nh;
539 w->strength.average /= nh;
541 h = malloc(sizeof(*h));
543 strlcpy(h->ifname, i->ifname, sizeof(h->ifname));
544 strlcpy(h->bssid, w->bssid, sizeof(h->bssid));
545 h->quality = w->quality.value;
546 h->noise = w->noise.value;
547 h->level = w->level.value;
548 h->strength = w->strength.value;
549 h->next = wpa->con->wi_history;
550 wpa->con->wi_history = h;
558 dhcpcd_wpa_reassociate(DHCPCD_WPA *wpa)
561 return dhcpcd_wpa_command(wpa, "REASSOCIATE");
565 dhcpcd_wpa_disconnect(DHCPCD_WPA *wpa)
568 return dhcpcd_wpa_command(wpa, "DISCONNECT");
572 dhcpcd_wpa_config_write(DHCPCD_WPA *wpa)
575 return dhcpcd_wpa_command(wpa, "SAVE_CONFIG");
579 dhcpcd_wpa_network(DHCPCD_WPA *wpa, const char *cmd, int id)
583 len = strlen(cmd) + 32;
584 if (!dhcpcd_realloc(wpa->con, len))
586 snprintf(wpa->con->buf, wpa->con->buflen, "%s %d", cmd, id);
587 return dhcpcd_wpa_command(wpa, wpa->con->buf);
591 dhcpcd_wpa_network_disable(DHCPCD_WPA *wpa, int id)
594 return dhcpcd_wpa_network(wpa, "DISABLE_NETWORK", id);
598 dhcpcd_wpa_network_enable(DHCPCD_WPA *wpa, int id)
601 return dhcpcd_wpa_network(wpa, "ENABLE_NETWORK", id);
605 dhcpcd_wpa_network_remove(DHCPCD_WPA *wpa, int id)
608 return dhcpcd_wpa_network(wpa, "REMOVE_NETWORK", id);
612 dhcpcd_wpa_network_get(DHCPCD_WPA *wpa, int id, const char *param)
616 if (!dhcpcd_realloc(wpa->con, 2048))
618 snprintf(wpa->con->buf, wpa->con->buflen, "GET_NETWORK %d %s",
620 bytes = wpa_cmd(wpa->command_fd, wpa->con->buf,
621 wpa->con->buf, wpa->con->buflen);
622 if (bytes == 0 || bytes == -1)
624 if (strcmp(wpa->con->buf, "FAIL\n") == 0) {
628 return wpa->con->buf;
632 dhcpcd_wpa_network_set(DHCPCD_WPA *wpa, int id,
633 const char *param, const char *value)
637 len = strlen("SET_NETWORK") + 32 + strlen(param) + strlen(value) + 3;
638 if (!dhcpcd_realloc(wpa->con, len))
640 snprintf(wpa->con->buf, wpa->con->buflen, "SET_NETWORK %d %s %s",
642 return dhcpcd_wpa_command(wpa, wpa->con->buf);
646 dhcpcd_wpa_network_find(DHCPCD_WPA *wpa, const char *fssid)
648 ssize_t bytes, dl, tl;
650 char *s, *t, *ssid, *bssid, *flags;
651 char dssid[IF_SSIDSIZE], tssid[IF_SSIDSIZE];
654 dhcpcd_realloc(wpa->con, 2048);
655 bytes = wpa_cmd(wpa->command_fd, "LIST_NETWORKS",
656 wpa->con->buf, wpa->con->buflen);
657 if (bytes == 0 || bytes == -1)
662 s = strchr(wpa->con->buf, '\n');
665 while ((t = strsep(&s, "\b"))) {
668 ssid = strchr(t, '\t');
672 bssid = strchr(ssid, '\t');
676 flags = strchr(bssid, '\t');
680 l = strtol(t, NULL, 0);
681 if (l < 0 || l > INT_MAX) {
686 /* Decode the wpa_supplicant SSID into raw chars and
687 * then encode into our octal escaped string to
689 dl = dhcpcd_wpa_decode_ssid(dssid, sizeof(dssid), ssid);
692 tl = dhcpcd_encode_string_escape(tssid,
693 sizeof(tssid), dssid, (size_t)dl);
696 if ((size_t)tl == fl && memcmp(tssid, fssid, (size_t)tl) == 0)
704 dhcpcd_wpa_network_new(DHCPCD_WPA *wpa)
709 dhcpcd_realloc(wpa->con, 32);
710 bytes = wpa_cmd(wpa->command_fd, "ADD_NETWORK",
711 wpa->con->buf, sizeof(wpa->con->buf));
712 if (bytes == 0 || bytes == -1)
714 l = strtol(wpa->con->buf, NULL, 0);
715 if (l < 0 || l > INT_MAX) {
722 static const char hexchrs[] = "0123456789abcdef";
724 dhcpcd_wpa_network_find_new(DHCPCD_WPA *wpa, const char *ssid)
727 char dssid[IF_SSIDSIZE], essid[IF_SSIDSIZE], *ep;
731 id = dhcpcd_wpa_network_find(wpa, ssid);
735 dl = dhcpcd_decode_string_escape(dssid, sizeof(dssid), ssid);
739 for (i = 0; i < dl; i++) {
740 if (!isascii((int)dssid[i]) && !isprint((int)dssid[i]))
746 /* Non standard characters found! Encode as hex string */
750 c = (unsigned char)*dp++;
751 *ep++ = hexchrs[(c & 0xf0) >> 4];
752 *ep++ = hexchrs[(c & 0x0f)];
758 while (*++dp != '\0');
763 id = dhcpcd_wpa_network_new(wpa);
765 dhcpcd_wpa_network_set(wpa, id, "ssid", essid);
770 dhcpcd_wpa_close(DHCPCD_WPA *wpa)
775 if (wpa->command_fd == -1 || !wpa->open)
779 dhcpcd_attach_detach(wpa, false);
780 shutdown(wpa->command_fd, SHUT_RDWR);
781 shutdown(wpa->listen_fd, SHUT_RDWR);
783 if (wpa->con->wpa_status_cb)
784 wpa->con->wpa_status_cb(wpa, "down",
785 wpa->con->wpa_status_context);
787 close(wpa->command_fd);
788 wpa->command_fd = -1;
789 close(wpa->listen_fd);
791 unlink(wpa->command_path);
792 free(wpa->command_path);
793 wpa->command_path = NULL;
794 unlink(wpa->listen_path);
795 free(wpa->listen_path);
796 wpa->listen_path = NULL;
800 dhcpcd_wpa_find(DHCPCD_CONNECTION *con, const char *ifname)
804 for (wpa = con->wpa; wpa; wpa = wpa->next) {
805 if (strcmp(wpa->ifname, ifname) == 0)
813 dhcpcd_wpa_new(DHCPCD_CONNECTION *con, const char *ifname)
817 wpa = dhcpcd_wpa_find(con, ifname);
821 wpa = malloc(sizeof(*wpa));
826 strlcpy(wpa->ifname, ifname, sizeof(wpa->ifname));
827 wpa->command_fd = wpa->listen_fd = -1;
828 wpa->command_path = wpa->listen_path = NULL;
829 wpa->next = con->wpa;
835 dhcpcd_wpa_connection(DHCPCD_WPA *wpa)
843 dhcpcd_wpa_if(DHCPCD_WPA *wpa)
846 return dhcpcd_get_if(wpa->con, wpa->ifname, "link");
850 dhcpcd_wpa_open(DHCPCD_WPA *wpa)
852 int cmd_fd, list_fd = -1;
853 char *cmd_path = NULL, *list_path = NULL;
855 if (wpa->listen_fd != -1) {
860 return wpa->listen_fd;
863 cmd_fd = wpa_open(wpa->ifname, &cmd_path);
867 list_fd = wpa_open(wpa->ifname, &list_path);
872 wpa->attached = false;
873 wpa->command_fd = cmd_fd;
874 wpa->command_path = cmd_path;
875 wpa->listen_fd = list_fd;
876 wpa->listen_path = list_path;
877 if (!dhcpcd_attach_detach(wpa, true)) {
878 dhcpcd_wpa_close(wpa);
882 if (wpa->con->wi_scanresults_cb)
883 wpa->con->wi_scanresults_cb(wpa,
884 wpa->con->wi_scanresults_context);
886 return wpa->listen_fd;
902 dhcpcd_wpa_get_fd(DHCPCD_WPA *wpa)
906 return wpa->open ? wpa->listen_fd : -1;
910 dhcpcd_wpa_set_scan_callback(DHCPCD_CONNECTION *con,
911 void (*cb)(DHCPCD_WPA *, void *), void *context)
915 con->wi_scanresults_cb = cb;
916 con->wi_scanresults_context = context;
920 void dhcpcd_wpa_set_status_callback(DHCPCD_CONNECTION * con,
921 void (*cb)(DHCPCD_WPA *, const char *, void *), void *context)
925 con->wpa_status_cb = cb;
926 con->wpa_status_context = context;
930 dhcpcd_wpa_dispatch(DHCPCD_WPA *wpa)
932 char buffer[256], *p;
936 bytes = (size_t)read(wpa->listen_fd, buffer, sizeof(buffer));
937 if ((ssize_t)bytes == -1 || bytes == 0) {
938 dhcpcd_wpa_close(wpa);
942 buffer[bytes] = '\0';
943 bytes = strlen(buffer);
944 if (buffer[bytes - 1] == ' ')
945 buffer[--bytes] = '\0';
946 for (p = buffer + 1; *p != '\0'; p++)
951 if (strcmp(p, "CTRL-EVENT-SCAN-RESULTS") == 0 &&
952 wpa->con->wi_scanresults_cb)
953 wpa->con->wi_scanresults_cb(wpa,
954 wpa->con->wi_scanresults_context);
959 dhcpcd_wpa_if_event(DHCPCD_IF *i)
964 if (strcmp(i->type, "link") == 0) {
965 if (strcmp(i->reason, "STOPPED") == 0 ||
966 strcmp(i->reason, "DEPARTED") == 0)
968 wpa = dhcpcd_wpa_find(i->con, i->ifname);
970 dhcpcd_wpa_close(wpa);
971 } else if (i->wireless && i->con->wpa_started) {
972 wpa = dhcpcd_wpa_new(i->con, i->ifname);
973 if (wpa && wpa->listen_fd == -1)
974 dhcpcd_wpa_open(wpa);
980 dhcpcd_wpa_start(DHCPCD_CONNECTION *con)
985 con->wpa_started = true;
987 for (i = con->interfaces; i; i = i->next)
988 dhcpcd_wpa_if_event(i);
992 dhcpcd_wpa_configure_psk(DHCPCD_WPA *wpa, DHCPCD_WI_SCAN *s, const char *psk)
994 const char *mgmt, *var;
1003 id = dhcpcd_wpa_network_find_new(wpa, s->ssid);
1005 return DHCPCD_WPA_ERR;
1007 if (strcmp(s->flags, "[WEP]") == 0) {
1015 if (!dhcpcd_wpa_network_set(wpa, id, "key_mgmt", mgmt))
1016 return DHCPCD_WPA_ERR_SET;
1019 psk_len = strlen(psk);
1022 npsk = malloc(psk_len + 3);
1024 return DHCPCD_WPA_ERR;
1027 memcpy(npsk + 1, psk, psk_len);
1028 npsk[psk_len + 1] = '"';
1029 npsk[psk_len + 2] = '\0';
1030 r = dhcpcd_wpa_network_set(wpa, id, var, npsk);
1033 return DHCPCD_WPA_ERR_SET_PSK;
1035 if (!dhcpcd_wpa_network_enable(wpa, id))
1036 return DHCPCD_WPA_ERR_ENABLE;
1037 if (!dhcpcd_wpa_reassociate(wpa))
1038 return DHCPCD_WPA_ERR_ASSOC;
1039 if (!dhcpcd_wpa_config_write(wpa))
1040 return DHCPCD_WPA_ERR_WRITE;
1041 return DHCPCD_WPA_SUCCESS;