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_associated(DHCPCD_IF *i, DHCPCD_WI_SCAN *scan)
178 return (i->up && i->ssid && strcmp(i->ssid, scan->ssid) == 0);
182 dhcpcd_wi_scans_free(DHCPCD_WI_SCAN *wis)
194 dhcpcd_strtoi(int *val, const char *s)
198 l = strtol(s, NULL, 0);
199 if (l >= INT_MIN && l <= INT_MAX)
206 dhcpcd_wpa_hex2num(char c)
209 if (c >= '0' && c <= '9')
211 if (c >= 'a' && c <= 'f')
213 if (c >= 'A' && c <= 'F')
219 dhcpcd_wpa_hex2byte(const char *src)
223 if ((h = dhcpcd_wpa_hex2num(*src++)) == -1 ||
224 (l = dhcpcd_wpa_hex2num(*src)) == -1)
230 dhcpcd_wpa_decode_ssid(char *dst, size_t dlen, const char *src)
254 case '"': *dst++ = esc; break;
255 case 'n': *dst++ = '\n'; break;
256 case 'r': *dst++ = '\r'; break;
257 case 't': *dst++ = '\t'; break;
258 case 'e': *dst++ = '\033'; break;
260 if (src[0] == '\0' || src[1] == '\0') {
264 if ((xb = dhcpcd_wpa_hex2byte(src)) == -1)
269 default: errno = EINVAL; return -1;
271 default: *dst++ = c; break;
282 static DHCPCD_WI_SCAN *
283 dhcpcd_wpa_scans_read(DHCPCD_WPA *wpa)
287 DHCPCD_WI_SCAN *wis, *w, *l;
288 char *s, *p, buf[32];
289 char wssid[sizeof(w->ssid)];
292 if (!dhcpcd_realloc(wpa->con, 2048))
295 for (i = 0; i < 1000; i++) {
296 snprintf(buf, sizeof(buf), "BSS %zu", i);
297 bytes = wpa_cmd(wpa->command_fd, buf,
298 wpa->con->buf, wpa->con->buflen);
299 if (bytes == 0 || bytes == -1 ||
300 strncmp(wpa->con->buf, "FAIL", 4) == 0)
303 w = calloc(1, sizeof(*w));
308 while ((s = strsep(&p, "\n"))) {
311 if (strncmp(s, "bssid=", 6) == 0)
312 strlcpy(w->bssid, s + 6, sizeof(w->bssid));
313 else if (strncmp(s, "freq=", 5) == 0)
314 dhcpcd_strtoi(&w->frequency, s + 5);
315 // else if (strncmp(s, "beacon_int=", 11) == 0)
317 else if (strncmp(s, "qual=", 5) == 0)
318 dhcpcd_strtoi(&w->quality.value, s + 5);
319 else if (strncmp(s, "noise=", 6) == 0)
320 dhcpcd_strtoi(&w->noise.value, s + 6);
321 else if (strncmp(s, "level=", 6) == 0)
322 dhcpcd_strtoi(&w->level.value, s + 6);
323 else if (strncmp(s, "flags=", 6) == 0)
324 strlcpy(w->wpa_flags, s + 6,
325 sizeof(w->wpa_flags));
326 else if (strncmp(s, "ssid=", 5) == 0) {
327 /* Decode it from \xNN to \NNN
328 * so we're consistent */
329 dl = dhcpcd_wpa_decode_ssid(wssid,
330 sizeof(wssid), s + 5);
333 dl = dhcpcd_encode_string_escape(w->ssid,
334 sizeof(w->ssid), wssid, (size_t)dl);
350 if ((proto = strstr(w->wpa_flags, "[WPA-")) ||
351 (proto = strstr(w->wpa_flags, "[WPA2-")) ||
352 (proto = strstr(w->wpa_flags, "[RSN-")))
354 const char *endp, *psk;
356 w->flags = WSF_WPA | WSF_SECURE;
357 endp = strchr(proto, ']');
358 if ((psk = strstr(proto, "-PSK]")) ||
359 (psk = strstr(proto, "-PSK-")) ||
360 (psk = strstr(proto, "-PSK+")))
366 if (strstr(w->wpa_flags, "[WEP]"))
367 w->flags = WSF_WEP | WSF_PSK | WSF_SECURE;
369 w->strength.value = w->level.value;
370 if (w->strength.value > 110 && w->strength.value < 256)
371 /* Convert WEXT level to dBm */
372 w->strength.value -= 256;
374 if (w->strength.value < 0) {
377 abs(CLAMP(w->strength.value, -100, -40) + 40);
379 100 - ((100 * w->strength.value) / 60);
381 /* Assume quality percentage */
382 w->strength.value = CLAMP(w->strength.value, 0, 100);
389 dhcpcd_wi_scan_compare(DHCPCD_WI_SCAN *a, DHCPCD_WI_SCAN *b)
393 /* Fist sort non case sensitive, then case sensitive */
394 cmp = strcasecmp(a->ssid, b->ssid);
396 cmp = strcmp(a->ssid, b->ssid);
398 /* If still the same, return strongest first */
400 cmp = b->strength.value - a->strength.value;
406 * This function is copyright 2001 Simon Tatham.
408 * Permission is hereby granted, free of charge, to any person
409 * obtaining a copy of this software and associated documentation
410 * files (the "Software"), to deal in the Software without
411 * restriction, including without limitation the rights to use,
412 * copy, modify, merge, publish, distribute, sublicense, and/or
413 * sell copies of the Software, and to permit persons to whom the
414 * Software is furnished to do so, subject to the following
417 * The above copyright notice and this permission notice shall be
418 * included in all copies or substantial portions of the Software.
420 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
421 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
422 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
423 * NONINFRINGEMENT. IN NO EVENT SHALL SIMON TATHAM BE LIABLE FOR
424 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
425 * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
426 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
429 static DHCPCD_WI_SCAN *
430 dhcpcd_wi_scans_sort(DHCPCD_WI_SCAN *list)
432 DHCPCD_WI_SCAN *p, *q, *e, *tail;
433 size_t insize, nmerges, psize, qsize, i;
435 /* Silly special case: if `list' was passed in as NULL, return
436 * NULL immediately. */
445 nmerges = 0; /* count number of merges we do in this pass */
448 nmerges++; /* there exists a merge to be done */
449 /* step `insize' places along from p */
452 for (i = 0; i < insize; i++) {
459 /* if q hasn't fallen off end,
460 * we have two lists to merge */
463 /* now we have two lists; merge them */
464 while (psize > 0 || (qsize > 0 && q)) {
465 /* decide whether next element of merge comes
468 /* p is empty; e must come from q. */
469 e = q; q = q->next; qsize--;
470 } else if (qsize == 0 || !q) {
471 /* q is empty; e must come from p. */
472 e = p; p = p->next; psize--;
473 } else if (dhcpcd_wi_scan_compare(p, q) <= 0) {
474 /* First element of p is lower
475 * (or same); e must come from p. */
476 e = p; p = p->next; psize--;
478 /* First element of q is lower;
479 * e must come from q. */
480 e = q; q = q->next; qsize--;
483 /* add the next element to the merged list */
491 /* now p has stepped `insize' places along,
497 /* If we have done only one merge, we're finished. */
498 if (nmerges <= 1) /* allow for nmerges==0, the empty list */
501 /* Otherwise repeat, merging lists twice the size */
507 dhcpcd_wi_scans(DHCPCD_IF *i)
510 DHCPCD_WI_SCAN *wis, *w, *n, *p;
512 DHCPCD_WI_HIST *h, *hl;
514 wpa = dhcpcd_wpa_find(i->con, i->ifname);
517 wis = dhcpcd_wpa_scans_read(wpa);
519 /* Sort the resultant list alphabetically and then by strength */
520 wis = dhcpcd_wi_scans_sort(wis);
523 for (w = wis; w && (n = w->next, 1); w = n) {
524 /* Currently we don't support non SSID broadcasting APs */
525 if (*w->ssid == '\0') {
533 /* Strip duplicated SSIDs, only show the strongest */
534 if (p && strcmp(p->ssid, w->ssid) == 0) {
539 /* Remember this as the previos next time */
544 w->quality.average = w->quality.value;
545 w->noise.average = w->noise.value;
546 w->level.average = w->level.value;
547 w->strength.average = w->strength.value;
549 for (h = wpa->con->wi_history; h; h = h->next) {
550 if (strcmp(h->ifname, i->ifname) == 0 &&
551 strcmp(h->bssid, wis->bssid) == 0)
553 w->quality.average += h->quality;
554 w->noise.average += h->noise;
555 w->level.average += h->level;
556 w->strength.average += h->strength;
557 if (++nh == DHCPCD_WI_HIST_MAX) {
567 w->quality.average /= nh;
568 w->noise.average /= nh;
569 w->level.average /= nh;
570 w->strength.average /= nh;
572 h = malloc(sizeof(*h));
574 strlcpy(h->ifname, i->ifname, sizeof(h->ifname));
575 strlcpy(h->bssid, w->bssid, sizeof(h->bssid));
576 h->quality = w->quality.value;
577 h->noise = w->noise.value;
578 h->level = w->level.value;
579 h->strength = w->strength.value;
580 h->next = wpa->con->wi_history;
581 wpa->con->wi_history = h;
589 dhcpcd_wpa_reconfigure(DHCPCD_WPA *wpa)
592 return dhcpcd_wpa_command(wpa, "RECONFIGURE");
596 dhcpcd_wpa_reassociate(DHCPCD_WPA *wpa)
599 return dhcpcd_wpa_command(wpa, "REASSOCIATE");
603 dhcpcd_wpa_disconnect(DHCPCD_WPA *wpa)
606 return dhcpcd_wpa_command(wpa, "DISCONNECT");
610 dhcpcd_wpa_config_write(DHCPCD_WPA *wpa)
613 return dhcpcd_wpa_command(wpa, "SAVE_CONFIG");
617 dhcpcd_wpa_network(DHCPCD_WPA *wpa, const char *cmd, int id)
621 len = strlen(cmd) + 32;
622 if (!dhcpcd_realloc(wpa->con, len))
624 snprintf(wpa->con->buf, wpa->con->buflen, "%s %d", cmd, id);
625 return dhcpcd_wpa_command(wpa, wpa->con->buf);
629 dhcpcd_wpa_network_disable(DHCPCD_WPA *wpa, int id)
632 return dhcpcd_wpa_network(wpa, "DISABLE_NETWORK", id);
636 dhcpcd_wpa_network_enable(DHCPCD_WPA *wpa, int id)
639 return dhcpcd_wpa_network(wpa, "ENABLE_NETWORK", id);
643 dhcpcd_wpa_network_select(DHCPCD_WPA *wpa, int id)
646 return dhcpcd_wpa_network(wpa, "SELECT_NETWORK", id);
650 dhcpcd_wpa_network_remove(DHCPCD_WPA *wpa, int id)
653 return dhcpcd_wpa_network(wpa, "REMOVE_NETWORK", id);
657 dhcpcd_wpa_network_get(DHCPCD_WPA *wpa, int id, const char *param)
661 if (!dhcpcd_realloc(wpa->con, 2048))
663 snprintf(wpa->con->buf, wpa->con->buflen, "GET_NETWORK %d %s",
665 bytes = wpa_cmd(wpa->command_fd, wpa->con->buf,
666 wpa->con->buf, wpa->con->buflen);
667 if (bytes == 0 || bytes == -1)
669 if (strcmp(wpa->con->buf, "FAIL\n") == 0) {
673 return wpa->con->buf;
677 dhcpcd_wpa_network_set(DHCPCD_WPA *wpa, int id,
678 const char *param, const char *value)
682 len = strlen("SET_NETWORK") + 32 + strlen(param) + strlen(value) + 3;
683 if (!dhcpcd_realloc(wpa->con, len))
685 snprintf(wpa->con->buf, wpa->con->buflen, "SET_NETWORK %d %s %s",
687 return dhcpcd_wpa_command(wpa, wpa->con->buf);
691 dhcpcd_wpa_network_find(DHCPCD_WPA *wpa, const char *fssid)
693 ssize_t bytes, dl, tl;
695 char *s, *t, *ssid, *bssid, *flags;
696 char dssid[IF_SSIDSIZE], tssid[IF_SSIDSIZE];
699 dhcpcd_realloc(wpa->con, 2048);
700 bytes = wpa_cmd(wpa->command_fd, "LIST_NETWORKS",
701 wpa->con->buf, wpa->con->buflen);
702 if (bytes == 0 || bytes == -1)
707 s = strchr(wpa->con->buf, '\n');
710 while ((t = strsep(&s, "\b\n"))) {
713 ssid = strchr(t, '\t');
717 bssid = strchr(ssid, '\t');
721 flags = strchr(bssid, '\t');
725 l = strtol(t, NULL, 0);
726 if (l < 0 || l > INT_MAX) {
731 /* Decode the wpa_supplicant SSID into raw chars and
732 * then encode into our octal escaped string to
734 dl = dhcpcd_wpa_decode_ssid(dssid, sizeof(dssid), ssid);
737 tl = dhcpcd_encode_string_escape(tssid,
738 sizeof(tssid), dssid, (size_t)dl);
741 if ((size_t)tl == fl && memcmp(tssid, fssid, (size_t)tl) == 0)
749 dhcpcd_wpa_network_new(DHCPCD_WPA *wpa)
754 dhcpcd_realloc(wpa->con, 32);
755 bytes = wpa_cmd(wpa->command_fd, "ADD_NETWORK",
756 wpa->con->buf, sizeof(wpa->con->buf));
757 if (bytes == 0 || bytes == -1)
759 l = strtol(wpa->con->buf, NULL, 0);
760 if (l < 0 || l > INT_MAX) {
767 static const char hexchrs[] = "0123456789abcdef";
769 dhcpcd_wpa_network_find_new(DHCPCD_WPA *wpa, const char *ssid)
772 char dssid[IF_SSIDSIZE], essid[IF_SSIDSIZE], *ep;
776 id = dhcpcd_wpa_network_find(wpa, ssid);
780 dl = dhcpcd_decode_string_escape(dssid, sizeof(dssid), ssid);
784 for (i = 0; i < dl; i++) {
785 if (!isascii((int)dssid[i]) && !isprint((int)dssid[i]))
791 /* Non standard characters found! Encode as hex string */
795 c = (unsigned char)*dp++;
796 *ep++ = hexchrs[(c & 0xf0) >> 4];
797 *ep++ = hexchrs[(c & 0x0f)];
803 while (*++dp != '\0');
808 id = dhcpcd_wpa_network_new(wpa);
810 dhcpcd_wpa_network_set(wpa, id, "ssid", essid);
815 dhcpcd_wpa_close(DHCPCD_WPA *wpa)
820 if (wpa->command_fd == -1 || !wpa->open)
824 dhcpcd_attach_detach(wpa, false);
825 shutdown(wpa->command_fd, SHUT_RDWR);
826 shutdown(wpa->listen_fd, SHUT_RDWR);
828 if (wpa->con->wpa_status_cb)
829 wpa->con->wpa_status_cb(wpa, "down",
830 wpa->con->wpa_status_context);
832 close(wpa->command_fd);
833 wpa->command_fd = -1;
834 close(wpa->listen_fd);
836 unlink(wpa->command_path);
837 free(wpa->command_path);
838 wpa->command_path = NULL;
839 unlink(wpa->listen_path);
840 free(wpa->listen_path);
841 wpa->listen_path = NULL;
845 dhcpcd_wpa_find(DHCPCD_CONNECTION *con, const char *ifname)
849 for (wpa = con->wpa; wpa; wpa = wpa->next) {
850 if (strcmp(wpa->ifname, ifname) == 0)
858 dhcpcd_wpa_new(DHCPCD_CONNECTION *con, const char *ifname)
862 wpa = dhcpcd_wpa_find(con, ifname);
866 wpa = malloc(sizeof(*wpa));
871 strlcpy(wpa->ifname, ifname, sizeof(wpa->ifname));
872 wpa->command_fd = wpa->listen_fd = -1;
873 wpa->command_path = wpa->listen_path = NULL;
874 wpa->next = con->wpa;
880 dhcpcd_wpa_connection(DHCPCD_WPA *wpa)
888 dhcpcd_wpa_if(DHCPCD_WPA *wpa)
891 return dhcpcd_get_if(wpa->con, wpa->ifname, "link");
895 dhcpcd_wpa_open(DHCPCD_WPA *wpa)
897 int cmd_fd, list_fd = -1;
898 char *cmd_path = NULL, *list_path = NULL;
900 if (wpa->listen_fd != -1) {
905 return wpa->listen_fd;
908 cmd_fd = wpa_open(wpa->ifname, &cmd_path);
912 list_fd = wpa_open(wpa->ifname, &list_path);
917 wpa->attached = false;
918 wpa->command_fd = cmd_fd;
919 wpa->command_path = cmd_path;
920 wpa->listen_fd = list_fd;
921 wpa->listen_path = list_path;
922 if (!dhcpcd_attach_detach(wpa, true)) {
923 dhcpcd_wpa_close(wpa);
927 if (wpa->con->wi_scanresults_cb)
928 wpa->con->wi_scanresults_cb(wpa,
929 wpa->con->wi_scanresults_context);
931 return wpa->listen_fd;
947 dhcpcd_wpa_get_fd(DHCPCD_WPA *wpa)
951 return wpa->open ? wpa->listen_fd : -1;
955 dhcpcd_wpa_set_scan_callback(DHCPCD_CONNECTION *con,
956 void (*cb)(DHCPCD_WPA *, void *), void *context)
960 con->wi_scanresults_cb = cb;
961 con->wi_scanresults_context = context;
965 void dhcpcd_wpa_set_status_callback(DHCPCD_CONNECTION * con,
966 void (*cb)(DHCPCD_WPA *, const char *, void *), void *context)
970 con->wpa_status_cb = cb;
971 con->wpa_status_context = context;
975 dhcpcd_wpa_dispatch(DHCPCD_WPA *wpa)
977 char buffer[256], *p;
981 bytes = (size_t)read(wpa->listen_fd, buffer, sizeof(buffer));
982 if ((ssize_t)bytes == -1 || bytes == 0) {
983 dhcpcd_wpa_close(wpa);
987 buffer[bytes] = '\0';
988 bytes = strlen(buffer);
989 if (buffer[bytes - 1] == ' ')
990 buffer[--bytes] = '\0';
991 for (p = buffer + 1; *p != '\0'; p++)
996 if (strcmp(p, "CTRL-EVENT-SCAN-RESULTS") == 0 &&
997 wpa->con->wi_scanresults_cb)
998 wpa->con->wi_scanresults_cb(wpa,
999 wpa->con->wi_scanresults_context);
1004 dhcpcd_wpa_if_event(DHCPCD_IF *i)
1009 if (strcmp(i->type, "link") == 0) {
1010 if (strcmp(i->reason, "STOPPED") == 0 ||
1011 strcmp(i->reason, "DEPARTED") == 0)
1013 wpa = dhcpcd_wpa_find(i->con, i->ifname);
1015 dhcpcd_wpa_close(wpa);
1016 } else if (i->wireless && i->con->wpa_started) {
1017 wpa = dhcpcd_wpa_new(i->con, i->ifname);
1018 if (wpa && wpa->listen_fd == -1)
1019 dhcpcd_wpa_open(wpa);
1025 dhcpcd_wpa_start(DHCPCD_CONNECTION *con)
1030 con->wpa_started = true;
1032 for (i = con->interfaces; i; i = i->next)
1033 dhcpcd_wpa_if_event(i);
1037 dhcpcd_wpa_var_psk(DHCPCD_WI_SCAN *s)
1040 if (s->flags & WSF_WEP)
1042 else if ((s->flags & (WSF_WPA | WSF_PSK)) == (WSF_WPA | WSF_PSK))
1048 dhcpcd_wpa_var_mgmt(DHCPCD_WI_SCAN *s)
1051 if (s->flags & WSF_WPA) {
1052 if (s->flags & WSF_PSK)
1059 dhcpcd_wpa_configure1(DHCPCD_WPA *wpa, DHCPCD_WI_SCAN *s, const char *psk)
1061 const char *mgmt, *var;
1067 if (!dhcpcd_wpa_disconnect(wpa))
1068 return DHCPCD_WPA_ERR_DISCONN;
1070 /* reload the configuration so that when we don't save
1071 * the disabled networks to the config file. */
1072 if (!dhcpcd_wpa_reconfigure(wpa))
1073 return DHCPCD_WPA_ERR_RECONF;
1075 id = dhcpcd_wpa_network_find_new(wpa, s->ssid);
1077 return DHCPCD_WPA_ERR;
1079 mgmt = dhcpcd_wpa_var_mgmt(s);
1080 var = dhcpcd_wpa_var_psk(s);
1082 if (!dhcpcd_wpa_network_set(wpa, id, "key_mgmt", mgmt))
1083 return DHCPCD_WPA_ERR_SET;
1086 psk_len = strlen(psk);
1089 npsk = malloc(psk_len + 3);
1091 return DHCPCD_WPA_ERR;
1094 memcpy(npsk + 1, psk, psk_len);
1095 npsk[psk_len + 1] = '"';
1096 npsk[psk_len + 2] = '\0';
1097 r = dhcpcd_wpa_network_set(wpa, id, var, npsk);
1100 return DHCPCD_WPA_ERR_SET_PSK;
1103 if (!dhcpcd_wpa_network_enable(wpa, id))
1104 return DHCPCD_WPA_ERR_ENABLE;
1105 if (dhcpcd_wpa_config_write(wpa))
1106 retval = DHCPCD_WPA_SUCCESS;
1108 retval = DHCPCD_WPA_ERR_WRITE;
1109 /* Selecting a network disbales the others.
1110 * This should not be saved. */
1111 if (!dhcpcd_wpa_network_select(wpa, id))
1112 return DHCPCD_WPA_ERR_SELECT;
1117 dhcpcd_wpa_configure(DHCPCD_WPA *wpa, DHCPCD_WI_SCAN *s, const char *psk)
1121 retval = dhcpcd_wpa_configure1(wpa, s, psk);
1122 /* Always reassociate */
1123 if (!dhcpcd_wpa_reassociate(wpa)) {
1124 if (retval == DHCPCD_WPA_SUCCESS)
1125 retval = DHCPCD_WPA_ERR_ASSOC;
1131 dhcpcd_wpa_select(DHCPCD_WPA *wpa, DHCPCD_WI_SCAN *s)
1138 id = dhcpcd_wpa_network_find(wpa, s->ssid);
1140 return DHCPCD_WPA_ERR;
1142 if (!dhcpcd_wpa_disconnect(wpa))
1143 retval = DHCPCD_WPA_ERR_DISCONN;
1144 else if (!dhcpcd_wpa_network_select(wpa, id))
1145 retval = DHCPCD_WPA_ERR_SELECT;
1147 retval = DHCPCD_WPA_SUCCESS;
1149 /* Always reassociate */
1150 if (!dhcpcd_wpa_reassociate(wpa)) {
1151 if (retval == DHCPCD_WPA_SUCCESS)
1152 retval = DHCPCD_WPA_ERR_ASSOC;