2 * iwinfo - Wireless Information Library - NL80211 Backend
4 * Copyright (C) 2010-2013 Jo-Philipp Wich <xm@subsignal.org>
6 * The iwinfo library is free software: you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License version 2
8 * as published by the Free Software Foundation.
10 * The iwinfo library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 * See the GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with the iwinfo library. If not, see http://www.gnu.org/licenses/.
18 * The signal handling code is derived from the official madwifi tools,
19 * wlanconfig.c in particular. The encryption property handling was
20 * inspired by the hostapd madwifi driver.
22 * Parts of this code are derived from the Linux iw utility.
32 #include "iwinfo_nl80211.h"
34 #define min(x, y) ((x) < (y)) ? (x) : (y)
36 #define BIT(x) (1ULL<<(x))
38 static struct nl80211_state
*nls
= NULL
;
40 static void nl80211_close(void)
45 genl_family_put(nls
->nlctrl
);
48 genl_family_put(nls
->nl80211
);
51 nl_socket_free(nls
->nl_sock
);
54 nl_cache_free(nls
->nl_cache
);
61 static int nl80211_init(void)
67 nls
= malloc(sizeof(struct nl80211_state
));
73 memset(nls
, 0, sizeof(*nls
));
75 nls
->nl_sock
= nl_socket_alloc();
81 if (genl_connect(nls
->nl_sock
)) {
86 fd
= nl_socket_get_fd(nls
->nl_sock
);
87 if (fcntl(fd
, F_SETFD
, fcntl(fd
, F_GETFD
) | FD_CLOEXEC
) < 0) {
92 if (genl_ctrl_alloc_cache(nls
->nl_sock
, &nls
->nl_cache
)) {
97 nls
->nl80211
= genl_ctrl_search_by_name(nls
->nl_cache
, "nl80211");
103 nls
->nlctrl
= genl_ctrl_search_by_name(nls
->nl_cache
, "nlctrl");
118 static int nl80211_readint(const char *path
)
124 if ((fd
= open(path
, O_RDONLY
)) > -1)
126 if (read(fd
, buffer
, sizeof(buffer
)) > 0)
135 static int nl80211_readstr(const char *path
, char *buffer
, int length
)
140 if ((fd
= open(path
, O_RDONLY
)) > -1)
142 if ((rv
= read(fd
, buffer
, length
- 1)) > 0)
144 if (buffer
[rv
- 1] == '\n')
156 static int nl80211_get_band(int nla_type
)
160 case NL80211_BAND_2GHZ
:
161 return IWINFO_BAND_24
;
162 case NL80211_BAND_5GHZ
:
163 return IWINFO_BAND_5
;
164 case NL80211_BAND_6GHZ
:
165 return IWINFO_BAND_6
;
166 case NL80211_BAND_60GHZ
:
167 return IWINFO_BAND_60
;
174 static int nl80211_msg_error(struct sockaddr_nl
*nla
,
175 struct nlmsgerr
*err
, void *arg
)
182 static int nl80211_msg_finish(struct nl_msg
*msg
, void *arg
)
189 static int nl80211_msg_ack(struct nl_msg
*msg
, void *arg
)
196 static int nl80211_msg_response(struct nl_msg
*msg
, void *arg
)
201 static void nl80211_free(struct nl80211_msg_conveyor
*cv
)
216 static struct nl80211_msg_conveyor
* nl80211_new(struct genl_family
*family
,
219 static struct nl80211_msg_conveyor cv
;
221 struct nl_msg
*req
= NULL
;
222 struct nl_cb
*cb
= NULL
;
228 cb
= nl_cb_alloc(NL_CB_DEFAULT
);
232 genlmsg_put(req
, 0, 0, genl_family_get_id(family
), 0, flags
, cmd
, 0);
246 static struct nl80211_msg_conveyor
* nl80211_ctl(int cmd
, int flags
)
248 if (nl80211_init() < 0)
251 return nl80211_new(nls
->nlctrl
, cmd
, flags
);
254 static const char *nl80211_phy_path_str(const char *phyname
)
256 static char path
[PATH_MAX
];
257 const char *prefix
= "/sys/devices/";
258 int prefix_len
= strlen(prefix
);
261 char buf
[512], *link
;
266 snprintf(buf
, sizeof(buf
), "/sys/class/ieee80211/%s/index", phyname
);
267 phy_idx
= nl80211_readint(buf
);
271 buf_len
= snprintf(buf
, sizeof(buf
), "/sys/class/ieee80211/%s/device", phyname
);
272 link
= realpath(buf
, path
);
276 if (strncmp(link
, prefix
, prefix_len
) != 0)
281 prefix
= "platform/";
282 prefix_len
= strlen(prefix
);
283 if (!strncmp(link
, prefix
, prefix_len
) && strstr(link
, "/pci"))
286 snprintf(buf
+ buf_len
, sizeof(buf
) - buf_len
, "/ieee80211");
291 while ((e
= readdir(d
)) != NULL
) {
294 snprintf(buf
, sizeof(buf
), "/sys/class/ieee80211/%s/index", e
->d_name
);
295 cur_idx
= nl80211_readint(buf
);
299 if (cur_idx
>= phy_idx
)
310 offset
= link
- path
+ strlen(link
);
311 snprintf(path
+ offset
, sizeof(path
) - offset
, "+%d", seq
);
316 static int nl80211_phy_idx_from_path(const char *path
)
320 const char *cur_path
;
329 path_len
= strlen(path
);
333 d
= opendir("/sys/class/ieee80211");
337 while ((e
= readdir(d
)) != NULL
) {
338 cur_path
= nl80211_phy_path_str(e
->d_name
);
342 cur_path_len
= strlen(cur_path
);
343 if (cur_path_len
< path_len
)
346 if (strcmp(cur_path
+ cur_path_len
- path_len
, path
) != 0)
349 snprintf(buf
, sizeof(buf
), "/sys/class/ieee80211/%s/index", e
->d_name
);
350 idx
= nl80211_readint(buf
);
361 static int nl80211_phy_idx_from_macaddr(const char *opt
)
370 snprintf(buf
, sizeof(buf
), "/sys/class/ieee80211/*");
371 if (glob(buf
, 0, NULL
, &gl
))
374 for (i
= 0; i
< gl
.gl_pathc
; i
++)
376 snprintf(buf
, sizeof(buf
), "%s/macaddress", gl
.gl_pathv
[i
]);
377 if (nl80211_readstr(buf
, buf
, sizeof(buf
)) <= 0)
380 if (fnmatch(opt
, buf
, FNM_CASEFOLD
))
383 snprintf(buf
, sizeof(buf
), "%s/index", gl
.gl_pathv
[i
]);
384 if ((idx
= nl80211_readint(buf
)) > -1)
393 static int nl80211_phy_idx_from_phy(const char *opt
)
400 snprintf(buf
, sizeof(buf
), "/sys/class/ieee80211/%s/index", opt
);
401 return nl80211_readint(buf
);
404 static int nl80211_phy_idx_from_uci(const char *name
)
406 struct uci_section
*s
;
410 s
= iwinfo_uci_get_radio(name
, "mac80211");
414 opt
= uci_lookup_option_string(uci_ctx
, s
, "path");
415 idx
= nl80211_phy_idx_from_path(opt
);
419 opt
= uci_lookup_option_string(uci_ctx
, s
, "macaddr");
420 idx
= nl80211_phy_idx_from_macaddr(opt
);
424 opt
= uci_lookup_option_string(uci_ctx
, s
, "phy");
425 idx
= nl80211_phy_idx_from_phy(opt
);
432 static bool nl80211_is_ifname(const char *name
)
435 char buffer
[PATH_MAX
];
437 snprintf(buffer
, sizeof(buffer
), "/sys/class/net/%s", name
);
438 return !lstat(buffer
, &st
);
441 static struct nl80211_msg_conveyor
* nl80211_msg(const char *ifname
,
444 unsigned int ifidx
= 0;
446 struct nl80211_msg_conveyor
*cv
;
451 if (nl80211_init() < 0)
454 if (!strncmp(ifname
, "mon.", 4))
455 ifidx
= if_nametoindex(&ifname
[4]);
456 else if (nl80211_is_ifname(ifname
))
457 ifidx
= if_nametoindex(ifname
);
460 phyidx
= nl80211_phy_idx_from_phy(ifname
);
462 phyidx
= nl80211_phy_idx_from_uci(ifname
);
465 /* Valid ifidx must be greater than 0 */
466 if ((ifidx
<= 0) && (phyidx
< 0))
469 cv
= nl80211_new(nls
->nl80211
, cmd
, flags
);
474 NLA_PUT_U32(cv
->msg
, NL80211_ATTR_IFINDEX
, ifidx
);
475 else if (phyidx
> -1)
476 NLA_PUT_U32(cv
->msg
, NL80211_ATTR_WIPHY
, phyidx
);
485 static int nl80211_send(struct nl80211_msg_conveyor
*cv
,
486 int (*cb_func
)(struct nl_msg
*, void *),
489 static struct nl80211_msg_conveyor rcv
;
493 nl_cb_set(cv
->cb
, NL_CB_VALID
, NL_CB_CUSTOM
, cb_func
, cb_arg
);
495 nl_cb_set(cv
->cb
, NL_CB_VALID
, NL_CB_CUSTOM
, nl80211_msg_response
, &rcv
);
497 err
= nl_send_auto_complete(nls
->nl_sock
, cv
->msg
);
504 nl_cb_err(cv
->cb
, NL_CB_CUSTOM
, nl80211_msg_error
, &err
);
505 nl_cb_set(cv
->cb
, NL_CB_FINISH
, NL_CB_CUSTOM
, nl80211_msg_finish
, &err
);
506 nl_cb_set(cv
->cb
, NL_CB_ACK
, NL_CB_CUSTOM
, nl80211_msg_ack
, &err
);
509 nl_recvmsgs(nls
->nl_sock
, cv
->cb
);
516 static int nl80211_request(const char *ifname
, int cmd
, int flags
,
517 int (*cb_func
)(struct nl_msg
*, void *),
520 struct nl80211_msg_conveyor
*cv
;
522 cv
= nl80211_msg(ifname
, cmd
, flags
);
527 return nl80211_send(cv
, cb_func
, cb_arg
);
530 static struct nlattr
** nl80211_parse(struct nl_msg
*msg
)
532 struct genlmsghdr
*gnlh
= nlmsg_data(nlmsg_hdr(msg
));
533 static struct nlattr
*attr
[NL80211_ATTR_MAX
+ 1];
535 nla_parse(attr
, NL80211_ATTR_MAX
, genlmsg_attrdata(gnlh
, 0),
536 genlmsg_attrlen(gnlh
, 0), NULL
);
541 static int nl80211_get_protocol_features_cb(struct nl_msg
*msg
, void *arg
)
543 uint32_t *features
= arg
;
544 struct nlattr
**attr
= nl80211_parse(msg
);
546 if (attr
[NL80211_ATTR_PROTOCOL_FEATURES
])
547 *features
= nla_get_u32(attr
[NL80211_ATTR_PROTOCOL_FEATURES
]);
552 static int nl80211_get_protocol_features(const char *ifname
)
554 struct nl80211_msg_conveyor
*req
;
555 uint32_t features
= 0;
557 req
= nl80211_msg(ifname
, NL80211_CMD_GET_PROTOCOL_FEATURES
, 0);
559 nl80211_send(req
, nl80211_get_protocol_features_cb
, &features
);
566 static int nl80211_subscribe_cb(struct nl_msg
*msg
, void *arg
)
568 struct nl80211_group_conveyor
*cv
= arg
;
570 struct nlattr
**attr
= nl80211_parse(msg
);
571 struct nlattr
*mgrpinfo
[CTRL_ATTR_MCAST_GRP_MAX
+ 1];
575 if (!attr
[CTRL_ATTR_MCAST_GROUPS
])
578 nla_for_each_nested(mgrp
, attr
[CTRL_ATTR_MCAST_GROUPS
], mgrpidx
)
580 nla_parse(mgrpinfo
, CTRL_ATTR_MCAST_GRP_MAX
,
581 nla_data(mgrp
), nla_len(mgrp
), NULL
);
583 if (mgrpinfo
[CTRL_ATTR_MCAST_GRP_ID
] &&
584 mgrpinfo
[CTRL_ATTR_MCAST_GRP_NAME
] &&
585 !strncmp(nla_data(mgrpinfo
[CTRL_ATTR_MCAST_GRP_NAME
]),
586 cv
->name
, nla_len(mgrpinfo
[CTRL_ATTR_MCAST_GRP_NAME
])))
588 cv
->id
= nla_get_u32(mgrpinfo
[CTRL_ATTR_MCAST_GRP_ID
]);
596 static int nl80211_subscribe(const char *family
, const char *group
)
598 struct nl80211_group_conveyor cv
= { .name
= group
, .id
= -ENOENT
};
599 struct nl80211_msg_conveyor
*req
;
602 req
= nl80211_ctl(CTRL_CMD_GETFAMILY
, 0);
605 NLA_PUT_STRING(req
->msg
, CTRL_ATTR_FAMILY_NAME
, family
);
606 err
= nl80211_send(req
, nl80211_subscribe_cb
, &cv
);
611 return nl_socket_add_membership(nls
->nl_sock
, cv
.id
);
621 static int nl80211_wait_cb(struct nl_msg
*msg
, void *arg
)
623 struct nl80211_event_conveyor
*cv
= arg
;
624 struct genlmsghdr
*gnlh
= nlmsg_data(nlmsg_hdr(msg
));
626 if (cv
->wait
[gnlh
->cmd
/ 32] & (1 << (gnlh
->cmd
% 32)))
627 cv
->recv
= gnlh
->cmd
;
632 static int nl80211_wait_seq_check(struct nl_msg
*msg
, void *arg
)
637 static int __nl80211_wait(const char *family
, const char *group
, ...)
639 struct nl80211_event_conveyor cv
= { };
645 if (nl80211_subscribe(family
, group
))
648 cb
= nl_cb_alloc(NL_CB_DEFAULT
);
653 nl_cb_err(cb
, NL_CB_CUSTOM
, nl80211_msg_error
, &err
);
654 nl_cb_set(cb
, NL_CB_SEQ_CHECK
, NL_CB_CUSTOM
, nl80211_wait_seq_check
, NULL
);
655 nl_cb_set(cb
, NL_CB_VALID
, NL_CB_CUSTOM
, nl80211_wait_cb
, &cv
);
659 for (cmd
= va_arg(ap
, int); cmd
!= 0; cmd
= va_arg(ap
, int))
660 cv
.wait
[cmd
/ 32] |= (1 << (cmd
% 32));
664 while (!cv
.recv
&& !err
)
665 nl_recvmsgs(nls
->nl_sock
, cb
);
672 #define nl80211_wait(family, group, ...) \
673 __nl80211_wait(family, group, __VA_ARGS__, 0)
675 /* This is linux's ieee80211_freq_khz_to_channel() which is:
676 * SPDX-License-Identifier: GPL-2.0
677 * Copyright 2007-2009 Johannes Berg <johannes@sipsolutions.net>
678 * Copyright 2013-2014 Intel Mobile Communications GmbH
679 * Copyright 2017 Intel Deutschland GmbH
680 * Copyright (C) 2018-2022 Intel Corporation
682 static int nl80211_freq2channel(int freq
)
686 else if (freq
< 2484)
687 return (freq
- 2407) / 5;
688 else if (freq
>= 4910 && freq
<= 4980)
689 return (freq
- 4000) / 5;
690 else if (freq
< 5925)
691 return (freq
- 5000) / 5;
692 else if (freq
== 5935)
694 else if (freq
<= 45000) /* DMG band lower limit */
695 /* see 802.11ax D6.1 27.3.22.2 */
696 return (freq
- 5950) / 5;
697 else if (freq
>= 58320 && freq
<= 70200)
698 return (freq
- 56160) / 2160;
703 /* This is linux's ieee80211_channel_to_freq_khz() which is:
704 * SPDX-License-Identifier: GPL-2.0
705 * Copyright 2007-2009 Johannes Berg <johannes@sipsolutions.net>
706 * Copyright 2013-2014 Intel Mobile Communications GmbH
707 * Copyright 2017 Intel Deutschland GmbH
708 * Copyright (C) 2018-2022 Intel Corporation
710 static int nl80211_channel2freq(int channel
, const char *band
, bool ax
)
715 if (!band
|| band
[0] != 'a')
719 else if (channel
< 14)
720 return (channel
* 5) + 2407;
722 else if (strcmp(band
, "ad") == 0)
725 return 56160 + 2160 * channel
;
732 return (channel
* 5) + 5950;
736 if (channel
>= 182 && channel
<= 196)
737 return (channel
* 5) + 4000;
739 return (channel
* 5) + 5000;
745 static uint8_t nl80211_freq2band(int freq
)
747 if (freq
>= 2412 && freq
<= 2484)
748 return IWINFO_BAND_24
;
749 else if (freq
>= 5160 && freq
<= 5885)
750 return IWINFO_BAND_5
;
751 else if (freq
>= 5925 && freq
<= 7125)
752 return IWINFO_BAND_6
;
753 else if (freq
>= 58320 && freq
<= 69120)
754 return IWINFO_BAND_60
;
759 static int nl80211_phyname_cb(struct nl_msg
*msg
, void *arg
)
762 struct nlattr
**attr
= nl80211_parse(msg
);
764 if (attr
[NL80211_ATTR_WIPHY_NAME
])
765 memcpy(buf
, nla_data(attr
[NL80211_ATTR_WIPHY_NAME
]),
766 nla_len(attr
[NL80211_ATTR_WIPHY_NAME
]));
773 static char * nl80211_ifname2phy(const char *ifname
)
775 static char phy
[32] = { 0 };
777 memset(phy
, 0, sizeof(phy
));
779 nl80211_request(ifname
, NL80211_CMD_GET_WIPHY
, 0,
780 nl80211_phyname_cb
, phy
);
782 return phy
[0] ? phy
: NULL
;
785 static char * nl80211_phyidx2name(unsigned int idx
)
787 struct nl80211_msg_conveyor
*cv
;
788 static char phy
[32] = { 0 };
790 if (nl80211_init() < 0)
793 cv
= nl80211_new(nls
->nl80211
, NL80211_CMD_GET_WIPHY
, 0);
797 NLA_PUT_U32(cv
->msg
, NL80211_ATTR_WIPHY
, idx
);
799 memset(phy
, 0, sizeof(phy
));
800 nl80211_send(cv
, nl80211_phyname_cb
, phy
);
802 return phy
[0] ? phy
: NULL
;
808 static char * nl80211_phy2ifname(const char *ifname
)
810 int ifidx
= -1, cifidx
, lmode
= 1, clmode
, phyidx
;
812 static char nif
[IFNAMSIZ
] = { 0 };
816 /* Only accept phy name in the form of phy%d or radio%d */
820 phyidx
= nl80211_phy_idx_from_phy(ifname
);
822 phyidx
= nl80211_phy_idx_from_uci(ifname
);;
826 memset(nif
, 0, sizeof(nif
));
828 if ((d
= opendir("/sys/class/net")) != NULL
)
830 while ((e
= readdir(d
)) != NULL
)
832 snprintf(buffer
, sizeof(buffer
),
833 "/sys/class/net/%s/phy80211/index", e
->d_name
);
834 if (nl80211_readint(buffer
) != phyidx
)
837 snprintf(buffer
, sizeof(buffer
),
838 "/sys/class/net/%s/ifindex", e
->d_name
);
839 cifidx
= nl80211_readint(buffer
);
844 snprintf(buffer
, sizeof(buffer
),
845 "/sys/class/net/%s/link_mode", e
->d_name
);
846 clmode
= nl80211_readint(buffer
);
848 /* prefer non-supplicant-based devices */
849 if ((ifidx
< 0) || (cifidx
< ifidx
) || ((lmode
== 1) && (clmode
!= 1)))
853 strncpy(nif
, e
->d_name
, sizeof(nif
) - 1);
860 return nif
[0] ? nif
: NULL
;
863 static int nl80211_get_mode_cb(struct nl_msg
*msg
, void *arg
)
866 struct nlattr
**tb
= nl80211_parse(msg
);
867 const int ifmodes
[NL80211_IFTYPE_MAX
+ 1] = {
868 IWINFO_OPMODE_UNKNOWN
, /* unspecified */
869 IWINFO_OPMODE_ADHOC
, /* IBSS */
870 IWINFO_OPMODE_CLIENT
, /* managed */
871 IWINFO_OPMODE_MASTER
, /* AP */
872 IWINFO_OPMODE_AP_VLAN
, /* AP/VLAN */
873 IWINFO_OPMODE_WDS
, /* WDS */
874 IWINFO_OPMODE_MONITOR
, /* monitor */
875 IWINFO_OPMODE_MESHPOINT
, /* mesh point */
876 IWINFO_OPMODE_P2P_CLIENT
, /* P2P-client */
877 IWINFO_OPMODE_P2P_GO
, /* P2P-GO */
880 if (tb
[NL80211_ATTR_IFTYPE
])
881 *mode
= ifmodes
[nla_get_u32(tb
[NL80211_ATTR_IFTYPE
])];
887 static int nl80211_get_mode(const char *ifname
, int *buf
)
891 *buf
= IWINFO_OPMODE_UNKNOWN
;
893 res
= nl80211_phy2ifname(ifname
);
895 nl80211_request(res
? res
: ifname
, NL80211_CMD_GET_INTERFACE
, 0,
896 nl80211_get_mode_cb
, buf
);
898 return (*buf
== IWINFO_OPMODE_UNKNOWN
) ? -1 : 0;
901 static int __nl80211_hostapd_query(const char *ifname
, ...)
904 char *phy
, *search
, *dest
, *key
, *val
, buf
[128];
905 int len
, mode
, found
= 0, match
= 1;
908 if (nl80211_get_mode(ifname
, &mode
))
911 if (mode
!= IWINFO_OPMODE_MASTER
&& mode
!= IWINFO_OPMODE_AP_VLAN
)
914 phy
= nl80211_ifname2phy(ifname
);
919 snprintf(buf
, sizeof(buf
), "/var/run/hostapd-%s.conf", phy
);
920 fp
= fopen(buf
, "r");
925 va_start(ap
, ifname
);
927 /* clear all destination buffers */
930 while ((search
= va_arg(ap_cur
, char *)) != NULL
)
932 dest
= va_arg(ap_cur
, char *);
933 len
= va_arg(ap_cur
, int);
935 memset(dest
, 0, len
);
940 /* iterate applicable lines and copy found values into dest buffers */
941 while (fgets(buf
, sizeof(buf
), fp
))
943 key
= strtok(buf
, " =\t\n");
944 val
= strtok(NULL
, "\n");
946 if (!key
|| !val
|| !*key
|| *key
== '#')
949 if (!strcmp(key
, "interface") || !strcmp(key
, "bss"))
950 match
= !strcmp(ifname
, val
);
957 while ((search
= va_arg(ap_cur
, char *)) != NULL
)
959 dest
= va_arg(ap_cur
, char *);
960 len
= va_arg(ap_cur
, int);
962 if (!strcmp(search
, key
))
964 strncpy(dest
, val
, len
- 1);
980 #define nl80211_hostapd_query(ifname, ...) \
981 __nl80211_hostapd_query(ifname, ##__VA_ARGS__, NULL)
984 static inline int nl80211_wpactl_recv(int sock
, char *buf
, int blen
)
987 struct timeval tv
= { 0, 256000 };
992 memset(buf
, 0, blen
);
994 if (select(sock
+ 1, &rfds
, NULL
, NULL
, &tv
) < 0)
997 if (!FD_ISSET(sock
, &rfds
))
1000 return recv(sock
, buf
, blen
- 1, 0);
1003 static int nl80211_wpactl_connect(const char *ifname
, struct sockaddr_un
*local
)
1005 struct sockaddr_un remote
= { 0 };
1006 size_t remote_length
, local_length
;
1008 int sock
= socket(PF_UNIX
, SOCK_DGRAM
, 0);
1012 remote
.sun_family
= AF_UNIX
;
1013 remote_length
= sizeof(remote
.sun_family
) +
1014 sprintf(remote
.sun_path
, "/var/run/wpa_supplicant/%s", ifname
);
1016 /* Set client socket file permissions so that bind() creates the client
1017 * socket with these permissions and there is no need to try to change
1018 * them with chmod() after bind() which would have potential issues with
1019 * race conditions. These permissions are needed to make sure the server
1020 * side (wpa_supplicant or hostapd) can reply to the control interface
1023 * The lchown() calls below after bind() are also part of the needed
1024 * operations to allow the response to go through. Those are using the
1025 * no-deference-symlinks version to avoid races. */
1026 fchmod(sock
, S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
);
1028 if (fcntl(sock
, F_SETFD
, fcntl(sock
, F_GETFD
) | FD_CLOEXEC
) < 0)
1034 if (connect(sock
, (struct sockaddr
*)&remote
, remote_length
))
1040 local
->sun_family
= AF_UNIX
;
1041 local_length
= sizeof(local
->sun_family
) +
1042 sprintf(local
->sun_path
, "/var/run/iwinfo-%s-%d", ifname
, getpid());
1044 if (bind(sock
, (struct sockaddr
*)local
, local_length
) < 0)
1050 /* Set group even if we do not have privileges to change owner */
1051 lchown(local
->sun_path
, -1, 101);
1052 lchown(local
->sun_path
, 101, 101);
1057 static int __nl80211_wpactl_query(const char *ifname
, ...)
1060 struct sockaddr_un local
= { 0 };
1061 int len
, mode
, found
= 0, sock
= -1;
1062 char *search
, *dest
, *key
, *val
, *line
, *pos
, buf
[512];
1064 if (nl80211_get_mode(ifname
, &mode
))
1067 if (mode
!= IWINFO_OPMODE_CLIENT
&&
1068 mode
!= IWINFO_OPMODE_ADHOC
&&
1069 mode
!= IWINFO_OPMODE_MESHPOINT
)
1072 sock
= nl80211_wpactl_connect(ifname
, &local
);
1077 va_start(ap
, ifname
);
1079 /* clear all destination buffers */
1080 va_copy(ap_cur
, ap
);
1082 while ((search
= va_arg(ap_cur
, char *)) != NULL
)
1084 dest
= va_arg(ap_cur
, char *);
1085 len
= va_arg(ap_cur
, int);
1087 memset(dest
, 0, len
);
1092 send(sock
, "STATUS", 6, 0);
1096 if (nl80211_wpactl_recv(sock
, buf
, sizeof(buf
)) <= 0)
1102 for (line
= strtok_r(buf
, "\n", &pos
);
1104 line
= strtok_r(NULL
, "\n", &pos
))
1106 key
= strtok(line
, "=");
1107 val
= strtok(NULL
, "\n");
1112 va_copy(ap_cur
, ap
);
1114 while ((search
= va_arg(ap_cur
, char *)) != NULL
)
1116 dest
= va_arg(ap_cur
, char *);
1117 len
= va_arg(ap_cur
, int);
1119 if (!strcmp(search
, key
))
1121 strncpy(dest
, val
, len
- 1);
1136 unlink(local
.sun_path
);
1141 #define nl80211_wpactl_query(ifname, ...) \
1142 __nl80211_wpactl_query(ifname, ##__VA_ARGS__, NULL)
1145 static char * nl80211_ifadd(const char *ifname
)
1147 char path
[PATH_MAX
];
1148 static char nif
[IFNAMSIZ
] = { 0 };
1149 struct nl80211_msg_conveyor
*req
;
1152 req
= nl80211_msg(ifname
, NL80211_CMD_NEW_INTERFACE
, 0);
1155 snprintf(nif
, sizeof(nif
), "tmp.%s", ifname
);
1157 NLA_PUT_STRING(req
->msg
, NL80211_ATTR_IFNAME
, nif
);
1158 NLA_PUT_U32(req
->msg
, NL80211_ATTR_IFTYPE
, NL80211_IFTYPE_STATION
);
1160 nl80211_send(req
, NULL
, NULL
);
1162 snprintf(path
, sizeof(path
) - 1,
1163 "/proc/sys/net/ipv6/conf/%s/disable_ipv6", nif
);
1165 if ((sysfs
= fopen(path
, "w")) != NULL
)
1167 fwrite("0\n", 1, 2, sysfs
);
1180 static void nl80211_ifdel(const char *ifname
)
1182 struct nl80211_msg_conveyor
*req
;
1184 req
= nl80211_msg(ifname
, NL80211_CMD_DEL_INTERFACE
, 0);
1187 NLA_PUT_STRING(req
->msg
, NL80211_ATTR_IFNAME
, ifname
);
1189 nl80211_send(req
, NULL
, NULL
);
1197 static void nl80211_hostapd_hup(const char *ifname
)
1201 char *phy
= nl80211_ifname2phy(ifname
);
1205 snprintf(buf
, sizeof(buf
), "/var/run/wifi-%s.pid", phy
);
1206 if ((fd
= open(buf
, O_RDONLY
)) >= 0)
1208 if (read(fd
, buf
, sizeof(buf
)) > 0)
1220 static int nl80211_probe(const char *ifname
)
1222 return !!nl80211_ifname2phy(ifname
);
1225 struct nl80211_ssid_bssid
{
1226 unsigned char *ssid
;
1227 unsigned char bssid
[7];
1230 static int nl80211_get_macaddr_cb(struct nl_msg
*msg
, void *arg
)
1232 struct nl80211_ssid_bssid
*sb
= arg
;
1233 struct nlattr
**tb
= nl80211_parse(msg
);
1235 if (tb
[NL80211_ATTR_MAC
]) {
1237 memcpy(sb
->bssid
+ 1, nla_data(tb
[NL80211_ATTR_MAC
]),
1238 sizeof(sb
->bssid
) - 1);
1244 static int nl80211_get_ssid_bssid_cb(struct nl_msg
*msg
, void *arg
)
1248 struct nl80211_ssid_bssid
*sb
= arg
;
1249 struct nlattr
**tb
= nl80211_parse(msg
);
1250 struct nlattr
*bss
[NL80211_BSS_MAX
+ 1];
1252 static const struct nla_policy bss_policy
[NL80211_BSS_MAX
+ 1] = {
1253 [NL80211_BSS_INFORMATION_ELEMENTS
] = { 0 },
1254 [NL80211_BSS_STATUS
] = { .type
= NLA_U32
},
1257 if (!tb
[NL80211_ATTR_BSS
] ||
1258 nla_parse_nested(bss
, NL80211_BSS_MAX
, tb
[NL80211_ATTR_BSS
],
1260 !bss
[NL80211_BSS_BSSID
] ||
1261 !bss
[NL80211_BSS_STATUS
] ||
1262 !bss
[NL80211_BSS_INFORMATION_ELEMENTS
])
1267 switch (nla_get_u32(bss
[NL80211_BSS_STATUS
]))
1269 case NL80211_BSS_STATUS_ASSOCIATED
:
1270 case NL80211_BSS_STATUS_AUTHENTICATED
:
1271 case NL80211_BSS_STATUS_IBSS_JOINED
:
1275 ie
= nla_data(bss
[NL80211_BSS_INFORMATION_ELEMENTS
]);
1276 ielen
= nla_len(bss
[NL80211_BSS_INFORMATION_ELEMENTS
]);
1278 while (ielen
>= 2 && ielen
>= ie
[1])
1282 memcpy(sb
->ssid
, ie
+ 2, min(ie
[1], IWINFO_ESSID_MAX_SIZE
));
1293 memcpy(sb
->bssid
+ 1, nla_data(bss
[NL80211_BSS_BSSID
]), 6);
1302 static int nl80211_get_ssid(const char *ifname
, char *buf
)
1305 struct nl80211_ssid_bssid sb
= { .ssid
= (unsigned char *)buf
};
1307 /* try to find ssid from scan dump results */
1308 res
= nl80211_phy2ifname(ifname
);
1311 nl80211_request(res
? res
: ifname
, NL80211_CMD_GET_SCAN
, NLM_F_DUMP
,
1312 nl80211_get_ssid_bssid_cb
, &sb
);
1314 /* failed, try to find from hostapd info */
1315 if (sb
.ssid
[0] == 0)
1316 nl80211_hostapd_query(ifname
, "ssid", sb
.ssid
,
1317 IWINFO_ESSID_MAX_SIZE
+ 1);
1319 /* failed, try to obtain Mesh ID */
1320 if (sb
.ssid
[0] == 0)
1321 iwinfo_ubus_query(res
? res
: ifname
, "mesh_id",
1322 buf
, IWINFO_ESSID_MAX_SIZE
+ 1);
1324 return (sb
.ssid
[0] == 0) ? -1 : 0;
1327 static int nl80211_get_bssid(const char *ifname
, char *buf
)
1329 char *res
, bssid
[sizeof("FF:FF:FF:FF:FF:FF\0")];
1330 struct nl80211_ssid_bssid sb
= { };
1332 res
= nl80211_phy2ifname(ifname
);
1334 /* try to obtain mac address via NL80211_CMD_GET_INTERFACE */
1335 nl80211_request(res
? res
: ifname
, NL80211_CMD_GET_INTERFACE
, 0,
1336 nl80211_get_macaddr_cb
, &sb
);
1338 /* failed, try to find bssid from scan dump results */
1339 if (sb
.bssid
[0] == 0)
1340 nl80211_request(res
? res
: ifname
,
1341 NL80211_CMD_GET_SCAN
, NLM_F_DUMP
,
1342 nl80211_get_ssid_bssid_cb
, &sb
);
1344 /* failed, try to find mac from hostapd info */
1345 if ((sb
.bssid
[0] == 0) &&
1346 nl80211_hostapd_query(ifname
, "bssid", bssid
, sizeof(bssid
)))
1349 sb
.bssid
[1] = strtol(&bssid
[0], NULL
, 16);
1350 sb
.bssid
[2] = strtol(&bssid
[3], NULL
, 16);
1351 sb
.bssid
[3] = strtol(&bssid
[6], NULL
, 16);
1352 sb
.bssid
[4] = strtol(&bssid
[9], NULL
, 16);
1353 sb
.bssid
[5] = strtol(&bssid
[12], NULL
, 16);
1354 sb
.bssid
[6] = strtol(&bssid
[15], NULL
, 16);
1359 sprintf(buf
, "%02X:%02X:%02X:%02X:%02X:%02X",
1360 sb
.bssid
[1], sb
.bssid
[2], sb
.bssid
[3],
1361 sb
.bssid
[4], sb
.bssid
[5], sb
.bssid
[6]);
1370 static int nl80211_get_frequency_scan_cb(struct nl_msg
*msg
, void *arg
)
1373 struct nlattr
**attr
= nl80211_parse(msg
);
1374 struct nlattr
*binfo
[NL80211_BSS_MAX
+ 1];
1376 static const struct nla_policy bss_policy
[NL80211_BSS_MAX
+ 1] = {
1377 [NL80211_BSS_FREQUENCY
] = { .type
= NLA_U32
},
1378 [NL80211_BSS_STATUS
] = { .type
= NLA_U32
},
1381 if (attr
[NL80211_ATTR_BSS
] &&
1382 !nla_parse_nested(binfo
, NL80211_BSS_MAX
,
1383 attr
[NL80211_ATTR_BSS
], bss_policy
))
1385 if (binfo
[NL80211_BSS_STATUS
] && binfo
[NL80211_BSS_FREQUENCY
])
1386 *freq
= nla_get_u32(binfo
[NL80211_BSS_FREQUENCY
]);
1392 static int nl80211_get_frequency_info_cb(struct nl_msg
*msg
, void *arg
)
1395 struct nlattr
**tb
= nl80211_parse(msg
);
1397 if (tb
[NL80211_ATTR_WIPHY_FREQ
])
1398 *freq
= nla_get_u32(tb
[NL80211_ATTR_WIPHY_FREQ
]);
1403 static int nl80211_get_frequency(const char *ifname
, int *buf
)
1405 char *res
, channel
[4] = { 0 }, hwmode
[3] = { 0 }, ax
[2] = { 0 };
1407 /* try to find frequency from interface info */
1408 res
= nl80211_phy2ifname(ifname
);
1411 nl80211_request(res
? res
: ifname
, NL80211_CMD_GET_INTERFACE
, 0,
1412 nl80211_get_frequency_info_cb
, buf
);
1414 /* failed, try to find frequency from hostapd info */
1416 nl80211_hostapd_query(ifname
, "hw_mode", hwmode
, sizeof(hwmode
),
1417 "channel", channel
, sizeof(channel
),
1418 "ieee80211ax", ax
, sizeof(ax
)) >= 2)
1420 *buf
= nl80211_channel2freq(atoi(channel
), hwmode
, ax
[0] == '1');
1423 /* failed, try to find frequency from scan results */
1426 res
= nl80211_phy2ifname(ifname
);
1428 nl80211_request(res
? res
: ifname
, NL80211_CMD_GET_SCAN
, NLM_F_DUMP
,
1429 nl80211_get_frequency_scan_cb
, buf
);
1432 return (*buf
== 0) ? -1 : 0;
1435 static int nl80211_get_center_freq1_cb(struct nl_msg
*msg
, void *arg
)
1438 struct nlattr
**tb
= nl80211_parse(msg
);
1440 if (tb
[NL80211_ATTR_CENTER_FREQ1
])
1441 *freq
= nla_get_u32(tb
[NL80211_ATTR_CENTER_FREQ1
]);
1446 static int nl80211_get_center_freq1(const char *ifname
, int *buf
)
1450 /* try to find frequency from interface info */
1451 res
= nl80211_phy2ifname(ifname
);
1454 nl80211_request(res
? res
: ifname
, NL80211_CMD_GET_INTERFACE
, 0,
1455 nl80211_get_center_freq1_cb
, buf
);
1457 return (*buf
== 0) ? -1 : 0;
1460 static int nl80211_get_center_freq2_cb(struct nl_msg
*msg
, void *arg
)
1463 struct nlattr
**tb
= nl80211_parse(msg
);
1465 if (tb
[NL80211_ATTR_CENTER_FREQ2
])
1466 *freq
= nla_get_u32(tb
[NL80211_ATTR_CENTER_FREQ2
]);
1471 static int nl80211_get_center_freq2(const char *ifname
, int *buf
)
1475 /* try to find frequency from interface info */
1476 res
= nl80211_phy2ifname(ifname
);
1479 nl80211_request(res
? res
: ifname
, NL80211_CMD_GET_INTERFACE
, 0,
1480 nl80211_get_center_freq2_cb
, buf
);
1482 return (*buf
== 0) ? -1 : 0;
1485 static int nl80211_get_channel(const char *ifname
, int *buf
)
1487 if (!nl80211_get_frequency(ifname
, buf
))
1489 *buf
= nl80211_freq2channel(*buf
);
1496 static int nl80211_get_center_chan1(const char *ifname
, int *buf
)
1498 if (!nl80211_get_center_freq1(ifname
, buf
))
1500 *buf
= nl80211_freq2channel(*buf
);
1507 static int nl80211_get_center_chan2(const char *ifname
, int *buf
)
1509 if (!nl80211_get_center_freq2(ifname
, buf
))
1511 *buf
= nl80211_freq2channel(*buf
);
1518 static int nl80211_get_txpower_cb(struct nl_msg
*msg
, void *arg
)
1521 struct nlattr
**tb
= nl80211_parse(msg
);
1523 if (tb
[NL80211_ATTR_WIPHY_TX_POWER_LEVEL
])
1524 *buf
= iwinfo_mbm2dbm(nla_get_u32(tb
[NL80211_ATTR_WIPHY_TX_POWER_LEVEL
]));
1529 static int nl80211_get_txpower(const char *ifname
, int *buf
)
1533 res
= nl80211_phy2ifname(ifname
);
1536 if (nl80211_request(res
? res
: ifname
, NL80211_CMD_GET_INTERFACE
, 0,
1537 nl80211_get_txpower_cb
, buf
))
1544 static int nl80211_fill_signal_cb(struct nl_msg
*msg
, void *arg
)
1548 struct nl80211_rssi_rate
*rr
= arg
;
1549 struct nlattr
**attr
= nl80211_parse(msg
);
1550 struct nlattr
*sinfo
[NL80211_STA_INFO_MAX
+ 1];
1551 struct nlattr
*rinfo
[NL80211_RATE_INFO_MAX
+ 1];
1553 static const struct nla_policy stats_policy
[NL80211_STA_INFO_MAX
+ 1] = {
1554 [NL80211_STA_INFO_INACTIVE_TIME
] = { .type
= NLA_U32
},
1555 [NL80211_STA_INFO_RX_BYTES
] = { .type
= NLA_U32
},
1556 [NL80211_STA_INFO_TX_BYTES
] = { .type
= NLA_U32
},
1557 [NL80211_STA_INFO_RX_BYTES64
] = { .type
= NLA_U64
},
1558 [NL80211_STA_INFO_TX_BYTES64
] = { .type
= NLA_U64
},
1559 [NL80211_STA_INFO_RX_PACKETS
] = { .type
= NLA_U32
},
1560 [NL80211_STA_INFO_TX_PACKETS
] = { .type
= NLA_U32
},
1561 [NL80211_STA_INFO_SIGNAL
] = { .type
= NLA_U8
},
1562 [NL80211_STA_INFO_TX_BITRATE
] = { .type
= NLA_NESTED
},
1563 [NL80211_STA_INFO_LLID
] = { .type
= NLA_U16
},
1564 [NL80211_STA_INFO_PLID
] = { .type
= NLA_U16
},
1565 [NL80211_STA_INFO_PLINK_STATE
] = { .type
= NLA_U8
},
1568 static const struct nla_policy rate_policy
[NL80211_RATE_INFO_MAX
+ 1] = {
1569 [NL80211_RATE_INFO_BITRATE
] = { .type
= NLA_U16
},
1570 [NL80211_RATE_INFO_MCS
] = { .type
= NLA_U8
},
1571 [NL80211_RATE_INFO_40_MHZ_WIDTH
] = { .type
= NLA_FLAG
},
1572 [NL80211_RATE_INFO_SHORT_GI
] = { .type
= NLA_FLAG
},
1575 if (attr
[NL80211_ATTR_STA_INFO
])
1577 if (!nla_parse_nested(sinfo
, NL80211_STA_INFO_MAX
,
1578 attr
[NL80211_ATTR_STA_INFO
], stats_policy
))
1580 if (sinfo
[NL80211_STA_INFO_SIGNAL
])
1582 dbm
= nla_get_u8(sinfo
[NL80211_STA_INFO_SIGNAL
]);
1583 rr
->rssi
= (rr
->rssi
* rr
->rssi_samples
+ dbm
) / (rr
->rssi_samples
+ 1);
1587 if (sinfo
[NL80211_STA_INFO_TX_BITRATE
])
1589 if (!nla_parse_nested(rinfo
, NL80211_RATE_INFO_MAX
,
1590 sinfo
[NL80211_STA_INFO_TX_BITRATE
],
1593 if (rinfo
[NL80211_RATE_INFO_BITRATE
])
1595 mbit
= nla_get_u16(rinfo
[NL80211_RATE_INFO_BITRATE
]);
1596 rr
->rate
= (rr
->rate
* rr
->rate_samples
+ mbit
) / (rr
->rate_samples
+ 1);
1607 static void nl80211_fill_signal(const char *ifname
, struct nl80211_rssi_rate
*r
)
1612 memset(r
, 0, sizeof(*r
));
1614 if ((d
= opendir("/sys/class/net")) != NULL
)
1616 while ((de
= readdir(d
)) != NULL
)
1618 if (!strncmp(de
->d_name
, ifname
, strlen(ifname
)) &&
1619 (!de
->d_name
[strlen(ifname
)] ||
1620 !strncmp(&de
->d_name
[strlen(ifname
)], ".sta", 4)))
1622 nl80211_request(de
->d_name
, NL80211_CMD_GET_STATION
,
1623 NLM_F_DUMP
, nl80211_fill_signal_cb
, r
);
1631 static int nl80211_get_bitrate(const char *ifname
, int *buf
)
1633 struct nl80211_rssi_rate rr
;
1635 nl80211_fill_signal(ifname
, &rr
);
1637 if (rr
.rate_samples
)
1639 *buf
= (rr
.rate
* 100);
1646 static int nl80211_get_signal(const char *ifname
, int *buf
)
1648 struct nl80211_rssi_rate rr
;
1650 nl80211_fill_signal(ifname
, &rr
);
1652 if (rr
.rssi_samples
)
1661 static int nl80211_get_noise_cb(struct nl_msg
*msg
, void *arg
)
1663 int8_t *noise
= arg
;
1664 struct nlattr
**tb
= nl80211_parse(msg
);
1665 struct nlattr
*si
[NL80211_SURVEY_INFO_MAX
+ 1];
1667 static const struct nla_policy sp
[NL80211_SURVEY_INFO_MAX
+ 1] = {
1668 [NL80211_SURVEY_INFO_FREQUENCY
] = { .type
= NLA_U32
},
1669 [NL80211_SURVEY_INFO_NOISE
] = { .type
= NLA_U8
},
1672 if (!tb
[NL80211_ATTR_SURVEY_INFO
])
1675 if (nla_parse_nested(si
, NL80211_SURVEY_INFO_MAX
,
1676 tb
[NL80211_ATTR_SURVEY_INFO
], sp
))
1679 if (!si
[NL80211_SURVEY_INFO_NOISE
])
1682 if (!*noise
|| si
[NL80211_SURVEY_INFO_IN_USE
])
1683 *noise
= (int8_t)nla_get_u8(si
[NL80211_SURVEY_INFO_NOISE
]);
1689 static int nl80211_get_noise(const char *ifname
, int *buf
)
1693 if (nl80211_request(ifname
, NL80211_CMD_GET_SURVEY
, NLM_F_DUMP
,
1694 nl80211_get_noise_cb
, &noise
))
1705 static int nl80211_get_quality(const char *ifname
, int *buf
)
1709 if (!nl80211_get_signal(ifname
, &signal
))
1711 /* A positive signal level is usually just a quality
1712 * value, pass through as-is */
1718 /* The cfg80211 wext compat layer assumes a signal range
1719 * of -110 dBm to -40 dBm, the quality value is derived
1720 * by adding 110 to the signal level */
1725 else if (signal
> -40)
1728 *buf
= (signal
+ 110);
1737 static int nl80211_get_quality_max(const char *ifname
, int *buf
)
1739 /* The cfg80211 wext compat layer assumes a maximum
1746 static int nl80211_check_wepkey(const char *key
)
1750 switch (strlen(key
))
1754 return IWINFO_CIPHER_WEP40
;
1758 return IWINFO_CIPHER_WEP104
;
1765 static const struct {
1769 } wpa_key_mgmt_strings
[] = {
1770 { "IEEE 802.1X/EAP", 0, IWINFO_KMGMT_8021x
},
1771 { "EAP-SUITE-B-192", 4, IWINFO_KMGMT_8021x
},
1772 { "EAP-SUITE-B", 4, IWINFO_KMGMT_8021x
},
1773 { "EAP-SHA384", 4, IWINFO_KMGMT_8021x
},
1774 { "EAP-SHA256", 0, IWINFO_KMGMT_8021x
},
1775 { "PSK-SHA256", 0, IWINFO_KMGMT_PSK
},
1776 { "NONE", 0, IWINFO_KMGMT_NONE
},
1777 { "None", 0, IWINFO_KMGMT_NONE
},
1778 { "PSK", 0, IWINFO_KMGMT_PSK
},
1779 { "EAP", 0, IWINFO_KMGMT_8021x
},
1780 { "SAE", 4, IWINFO_KMGMT_SAE
},
1781 { "OWE", 4, IWINFO_KMGMT_OWE
}
1784 static void parse_wpa_suites(const char *str
, int defversion
,
1785 uint8_t *versions
, uint8_t *suites
)
1789 const char *p
, *q
, *m
, *sep
= " \t\n,-+/";
1795 for (i
= 0; i
< ARRAY_SIZE(wpa_key_mgmt_strings
); i
++)
1797 m
= wpa_key_mgmt_strings
[i
].match
;
1800 if (!strncmp(q
, m
, l
) && (!q
[l
] || strchr(sep
, q
[l
])))
1802 if (wpa_key_mgmt_strings
[i
].version
!= 0)
1803 version
= wpa_key_mgmt_strings
[i
].version
;
1805 version
= defversion
;
1807 *versions
|= version
;
1808 *suites
|= wpa_key_mgmt_strings
[i
].suite
;
1816 q
+= strcspn(q
, sep
);
1818 p
= q
+ strspn(q
, sep
);
1822 static const struct {
1825 } wpa_cipher_strings
[] = {
1826 { "WEP-104", IWINFO_CIPHER_WEP104
},
1827 { "WEP-40", IWINFO_CIPHER_WEP40
},
1828 { "NONE", IWINFO_CIPHER_NONE
},
1829 { "TKIP", IWINFO_CIPHER_TKIP
},
1830 { "CCMP-256",IWINFO_CIPHER_CCMP256
},
1831 { "CCMP", IWINFO_CIPHER_CCMP
},
1832 { "GCMP-256",IWINFO_CIPHER_GCMP256
},
1833 { "GCMP", IWINFO_CIPHER_GCMP
}
1836 static void parse_wpa_ciphers(const char *str
, uint16_t *ciphers
)
1840 const char *m
, *p
, *q
, *sep
= " \t\n,-+/";
1846 for (i
= 0; i
< ARRAY_SIZE(wpa_cipher_strings
); i
++)
1848 m
= wpa_cipher_strings
[i
].match
;
1851 if (!strncmp(q
, m
, l
) && (!q
[l
] || strchr(sep
, q
[l
])))
1853 *ciphers
|= wpa_cipher_strings
[i
].cipher
;
1861 q
+= strcspn(q
, sep
);
1863 p
= q
+ strspn(q
, sep
);
1867 static int nl80211_get_encryption(const char *ifname
, char *buf
)
1871 uint8_t wpa_version
= 0;
1872 char wpa
[2], wpa_key_mgmt
[64], wpa_pairwise
[16], wpa_groupwise
[16];
1873 char auth_algs
[2], wep_key0
[27], wep_key1
[27], wep_key2
[27], wep_key3
[27];
1876 struct iwinfo_crypto_entry
*c
= (struct iwinfo_crypto_entry
*)buf
;
1878 /* WPA supplicant */
1879 if (nl80211_wpactl_query(ifname
,
1880 "pairwise_cipher", wpa_pairwise
, sizeof(wpa_pairwise
),
1881 "group_cipher", wpa_groupwise
, sizeof(wpa_groupwise
),
1882 "key_mgmt", wpa_key_mgmt
, sizeof(wpa_key_mgmt
),
1883 "mode", mode
, sizeof(mode
)))
1886 if (!strcmp(wpa_key_mgmt
, "NONE"))
1888 parse_wpa_ciphers(wpa_pairwise
, &c
->pair_ciphers
);
1889 parse_wpa_ciphers(wpa_groupwise
, &c
->group_ciphers
);
1891 if (c
->pair_ciphers
!= 0 && c
->pair_ciphers
!= IWINFO_CIPHER_NONE
) {
1893 c
->auth_suites
= IWINFO_KMGMT_NONE
;
1894 c
->auth_algs
= IWINFO_AUTH_OPEN
| IWINFO_AUTH_SHARED
;
1897 c
->pair_ciphers
= 0;
1898 c
->group_ciphers
= 0;
1903 else if (!strcmp(mode
, "mesh") && !strcmp(wpa_key_mgmt
, "UNKNOWN"))
1907 c
->auth_suites
= IWINFO_KMGMT_SAE
;
1908 c
->pair_ciphers
= IWINFO_CIPHER_CCMP
;
1909 c
->group_ciphers
= IWINFO_CIPHER_CCMP
;
1915 parse_wpa_ciphers(wpa_pairwise
, &c
->pair_ciphers
);
1916 parse_wpa_ciphers(wpa_groupwise
, &c
->group_ciphers
);
1920 if (!strncmp(p
, "WPA2-", 5) || !strncmp(p
, "WPA2/", 5))
1925 else if (!strncmp(p
, "WPA-", 4))
1931 parse_wpa_suites(p
, wpa_version
, &c
->wpa_version
, &c
->auth_suites
);
1933 c
->enabled
= !!(c
->wpa_version
&& c
->auth_suites
);
1940 else if (nl80211_hostapd_query(ifname
,
1941 "wpa", wpa
, sizeof(wpa
),
1942 "wpa_key_mgmt", wpa_key_mgmt
, sizeof(wpa_key_mgmt
),
1943 "wpa_pairwise", wpa_pairwise
, sizeof(wpa_pairwise
),
1944 "auth_algs", auth_algs
, sizeof(auth_algs
),
1945 "wep_key0", wep_key0
, sizeof(wep_key0
),
1946 "wep_key1", wep_key1
, sizeof(wep_key1
),
1947 "wep_key2", wep_key2
, sizeof(wep_key2
),
1948 "wep_key3", wep_key3
, sizeof(wep_key3
)))
1952 if (wpa_key_mgmt
[0])
1954 for (p
= strtok(wpa_key_mgmt
, " \t"); p
!= NULL
; p
= strtok(NULL
, " \t"))
1956 if (!strncmp(p
, "WPA-", 4))
1959 if (!strncmp(p
, "FT-", 3))
1962 parse_wpa_suites(p
, atoi(wpa
), &c
->wpa_version
, &c
->auth_suites
);
1965 c
->enabled
= c
->wpa_version
? 1 : 0;
1968 if (wpa_pairwise
[0])
1969 parse_wpa_ciphers(wpa_pairwise
, &c
->pair_ciphers
);
1973 switch (atoi(auth_algs
))
1976 c
->auth_algs
|= IWINFO_AUTH_OPEN
;
1980 c
->auth_algs
|= IWINFO_AUTH_SHARED
;
1984 c
->auth_algs
|= IWINFO_AUTH_OPEN
;
1985 c
->auth_algs
|= IWINFO_AUTH_SHARED
;
1989 c
->pair_ciphers
|= nl80211_check_wepkey(wep_key0
);
1990 c
->pair_ciphers
|= nl80211_check_wepkey(wep_key1
);
1991 c
->pair_ciphers
|= nl80211_check_wepkey(wep_key2
);
1992 c
->pair_ciphers
|= nl80211_check_wepkey(wep_key3
);
1994 c
->enabled
= (c
->auth_algs
&& c
->pair_ciphers
) ? 1 : 0;
1997 c
->group_ciphers
= c
->pair_ciphers
;
2002 /* Ad-Hoc or Mesh interfaces without wpa_supplicant are open */
2003 else if (!nl80211_get_mode(ifname
, &opmode
) &&
2004 (opmode
== IWINFO_OPMODE_ADHOC
||
2005 opmode
== IWINFO_OPMODE_MESHPOINT
))
2016 static int nl80211_get_phyname(const char *ifname
, char *buf
)
2020 name
= nl80211_ifname2phy(ifname
);
2027 else if ((name
= nl80211_phy2ifname(ifname
)) != NULL
)
2029 name
= nl80211_ifname2phy(name
);
2033 strcpy(buf
, ifname
);
2042 static void nl80211_parse_rateinfo(struct nlattr
**ri
,
2043 struct iwinfo_rate_entry
*re
)
2045 if (ri
[NL80211_RATE_INFO_BITRATE32
])
2046 re
->rate
= nla_get_u32(ri
[NL80211_RATE_INFO_BITRATE32
]) * 100;
2047 else if (ri
[NL80211_RATE_INFO_BITRATE
])
2048 re
->rate
= nla_get_u16(ri
[NL80211_RATE_INFO_BITRATE
]) * 100;
2050 if (ri
[NL80211_RATE_INFO_EHT_MCS
])
2053 re
->mcs
= nla_get_u8(ri
[NL80211_RATE_INFO_EHT_MCS
]);
2055 if (ri
[NL80211_RATE_INFO_EHT_NSS
])
2056 re
->nss
= nla_get_u8(ri
[NL80211_RATE_INFO_EHT_NSS
]);
2057 if (ri
[NL80211_RATE_INFO_EHT_GI
])
2058 re
->eht_gi
= nla_get_u8(ri
[NL80211_RATE_INFO_EHT_GI
]);
2060 else if (ri
[NL80211_RATE_INFO_HE_MCS
])
2063 re
->mcs
= nla_get_u8(ri
[NL80211_RATE_INFO_HE_MCS
]);
2065 if (ri
[NL80211_RATE_INFO_HE_NSS
])
2066 re
->nss
= nla_get_u8(ri
[NL80211_RATE_INFO_HE_NSS
]);
2067 if (ri
[NL80211_RATE_INFO_HE_GI
])
2068 re
->he_gi
= nla_get_u8(ri
[NL80211_RATE_INFO_HE_GI
]);
2069 if (ri
[NL80211_RATE_INFO_HE_DCM
])
2070 re
->he_dcm
= nla_get_u8(ri
[NL80211_RATE_INFO_HE_DCM
]);
2072 else if (ri
[NL80211_RATE_INFO_VHT_MCS
])
2075 re
->mcs
= nla_get_u8(ri
[NL80211_RATE_INFO_VHT_MCS
]);
2077 if (ri
[NL80211_RATE_INFO_VHT_NSS
])
2078 re
->nss
= nla_get_u8(ri
[NL80211_RATE_INFO_VHT_NSS
]);
2080 else if (ri
[NL80211_RATE_INFO_MCS
])
2083 re
->mcs
= nla_get_u8(ri
[NL80211_RATE_INFO_MCS
]);
2086 if (ri
[NL80211_RATE_INFO_5_MHZ_WIDTH
])
2088 else if (ri
[NL80211_RATE_INFO_10_MHZ_WIDTH
])
2090 else if (ri
[NL80211_RATE_INFO_40_MHZ_WIDTH
])
2092 else if (ri
[NL80211_RATE_INFO_80_MHZ_WIDTH
])
2094 else if (ri
[NL80211_RATE_INFO_80P80_MHZ_WIDTH
] ||
2095 ri
[NL80211_RATE_INFO_160_MHZ_WIDTH
])
2097 else if (ri
[NL80211_RATE_INFO_320_MHZ_WIDTH
])
2098 re
->mhz_hi
= 320 / 256, re
->mhz
= 320 % 256;
2102 if (ri
[NL80211_RATE_INFO_SHORT_GI
])
2103 re
->is_short_gi
= 1;
2105 re
->is_40mhz
= (re
->mhz
== 40);
2108 static int nl80211_get_survey_cb(struct nl_msg
*msg
, void *arg
)
2110 struct nl80211_array_buf
*arr
= arg
;
2111 struct iwinfo_survey_entry
*e
= arr
->buf
;
2112 struct nlattr
**attr
= nl80211_parse(msg
);
2113 struct nlattr
*sinfo
[NL80211_SURVEY_INFO_MAX
+ 1];
2116 static const struct nla_policy survey_policy
[NL80211_SURVEY_INFO_MAX
+ 1] = {
2117 [NL80211_SURVEY_INFO_FREQUENCY
] = { .type
= NLA_U32
},
2118 [NL80211_SURVEY_INFO_NOISE
] = { .type
= NLA_U8
},
2119 [NL80211_SURVEY_INFO_TIME
] = { .type
= NLA_U64
},
2120 [NL80211_SURVEY_INFO_TIME_BUSY
] = { .type
= NLA_U64
},
2121 [NL80211_SURVEY_INFO_TIME_EXT_BUSY
] = { .type
= NLA_U64
},
2122 [NL80211_SURVEY_INFO_TIME_RX
] = { .type
= NLA_U64
},
2123 [NL80211_SURVEY_INFO_TIME_TX
] = { .type
= NLA_U64
},
2126 rc
= nla_parse_nested(sinfo
, NL80211_SURVEY_INFO_MAX
,
2127 attr
[NL80211_ATTR_SURVEY_INFO
],
2132 /* advance to end of array */
2134 memset(e
, 0, sizeof(*e
));
2136 if (sinfo
[NL80211_SURVEY_INFO_FREQUENCY
])
2137 e
->mhz
= nla_get_u32(sinfo
[NL80211_SURVEY_INFO_FREQUENCY
]);
2139 if (sinfo
[NL80211_SURVEY_INFO_NOISE
])
2140 e
->noise
= nla_get_u8(sinfo
[NL80211_SURVEY_INFO_NOISE
]);
2142 if (sinfo
[NL80211_SURVEY_INFO_TIME
])
2143 e
->active_time
= nla_get_u64(sinfo
[NL80211_SURVEY_INFO_TIME
]);
2145 if (sinfo
[NL80211_SURVEY_INFO_TIME_BUSY
])
2146 e
->busy_time
= nla_get_u64(sinfo
[NL80211_SURVEY_INFO_TIME_BUSY
]);
2148 if (sinfo
[NL80211_SURVEY_INFO_TIME_EXT_BUSY
])
2149 e
->busy_time_ext
= nla_get_u64(sinfo
[NL80211_SURVEY_INFO_TIME_EXT_BUSY
]);
2151 if (sinfo
[NL80211_SURVEY_INFO_TIME_RX
])
2152 e
->rxtime
= nla_get_u64(sinfo
[NL80211_SURVEY_INFO_TIME_RX
]);
2154 if (sinfo
[NL80211_SURVEY_INFO_TIME_TX
])
2155 e
->txtime
= nla_get_u64(sinfo
[NL80211_SURVEY_INFO_TIME_TX
]);
2162 static void plink_state_to_str(char *dst
, unsigned state
)
2165 case NL80211_PLINK_LISTEN
:
2166 strcpy(dst
, "LISTEN");
2168 case NL80211_PLINK_OPN_SNT
:
2169 strcpy(dst
, "OPN_SNT");
2171 case NL80211_PLINK_OPN_RCVD
:
2172 strcpy(dst
, "OPN_RCVD");
2174 case NL80211_PLINK_CNF_RCVD
:
2175 strcpy(dst
, "CNF_RCVD");
2177 case NL80211_PLINK_ESTAB
:
2178 strcpy(dst
, "ESTAB");
2180 case NL80211_PLINK_HOLDING
:
2181 strcpy(dst
, "HOLDING");
2183 case NL80211_PLINK_BLOCKED
:
2184 strcpy(dst
, "BLOCKED");
2187 strcpy(dst
, "UNKNOWN");
2192 static void power_mode_to_str(char *dst
, struct nlattr
*a
)
2194 enum nl80211_mesh_power_mode pm
= nla_get_u32(a
);
2197 case NL80211_MESH_POWER_ACTIVE
:
2198 strcpy(dst
, "ACTIVE");
2200 case NL80211_MESH_POWER_LIGHT_SLEEP
:
2201 strcpy(dst
, "LIGHT SLEEP");
2203 case NL80211_MESH_POWER_DEEP_SLEEP
:
2204 strcpy(dst
, "DEEP SLEEP");
2207 strcpy(dst
, "UNKNOWN");
2212 static int nl80211_get_assoclist_cb(struct nl_msg
*msg
, void *arg
)
2214 struct nl80211_array_buf
*arr
= arg
;
2215 struct iwinfo_assoclist_entry
*e
= arr
->buf
;
2216 struct nlattr
**attr
= nl80211_parse(msg
);
2217 struct nlattr
*sinfo
[NL80211_STA_INFO_MAX
+ 1];
2218 struct nlattr
*rinfo
[NL80211_RATE_INFO_MAX
+ 1];
2219 struct nl80211_sta_flag_update
*sta_flags
;
2221 static const struct nla_policy stats_policy
[NL80211_STA_INFO_MAX
+ 1] = {
2222 [NL80211_STA_INFO_INACTIVE_TIME
] = { .type
= NLA_U32
},
2223 [NL80211_STA_INFO_RX_PACKETS
] = { .type
= NLA_U32
},
2224 [NL80211_STA_INFO_TX_PACKETS
] = { .type
= NLA_U32
},
2225 [NL80211_STA_INFO_RX_BITRATE
] = { .type
= NLA_NESTED
},
2226 [NL80211_STA_INFO_TX_BITRATE
] = { .type
= NLA_NESTED
},
2227 [NL80211_STA_INFO_SIGNAL
] = { .type
= NLA_U8
},
2228 [NL80211_STA_INFO_SIGNAL_AVG
] = { .type
= NLA_U8
},
2229 [NL80211_STA_INFO_RX_BYTES
] = { .type
= NLA_U32
},
2230 [NL80211_STA_INFO_TX_BYTES
] = { .type
= NLA_U32
},
2231 [NL80211_STA_INFO_RX_BYTES64
] = { .type
= NLA_U64
},
2232 [NL80211_STA_INFO_TX_BYTES64
] = { .type
= NLA_U64
},
2233 [NL80211_STA_INFO_TX_RETRIES
] = { .type
= NLA_U32
},
2234 [NL80211_STA_INFO_TX_FAILED
] = { .type
= NLA_U32
},
2235 [NL80211_STA_INFO_CONNECTED_TIME
]= { .type
= NLA_U32
},
2236 [NL80211_STA_INFO_RX_DROP_MISC
] = { .type
= NLA_U64
},
2237 [NL80211_STA_INFO_T_OFFSET
] = { .type
= NLA_U64
},
2238 [NL80211_STA_INFO_STA_FLAGS
] =
2239 { .minlen
= sizeof(struct nl80211_sta_flag_update
) },
2240 [NL80211_STA_INFO_EXPECTED_THROUGHPUT
] = { .type
= NLA_U32
},
2242 [NL80211_STA_INFO_LLID
] = { .type
= NLA_U16
},
2243 [NL80211_STA_INFO_PLID
] = { .type
= NLA_U16
},
2244 [NL80211_STA_INFO_PLINK_STATE
] = { .type
= NLA_U8
},
2245 [NL80211_STA_INFO_LOCAL_PM
] = { .type
= NLA_U32
},
2246 [NL80211_STA_INFO_PEER_PM
] = { .type
= NLA_U32
},
2247 [NL80211_STA_INFO_NONPEER_PM
] = { .type
= NLA_U32
},
2250 static const struct nla_policy rate_policy
[NL80211_RATE_INFO_MAX
+ 1] = {
2251 [NL80211_RATE_INFO_BITRATE
] = { .type
= NLA_U16
},
2252 [NL80211_RATE_INFO_MCS
] = { .type
= NLA_U8
},
2253 [NL80211_RATE_INFO_40_MHZ_WIDTH
] = { .type
= NLA_FLAG
},
2254 [NL80211_RATE_INFO_SHORT_GI
] = { .type
= NLA_FLAG
},
2257 /* advance to end of array */
2259 memset(e
, 0, sizeof(*e
));
2261 if (attr
[NL80211_ATTR_MAC
])
2262 memcpy(e
->mac
, nla_data(attr
[NL80211_ATTR_MAC
]), 6);
2264 if (attr
[NL80211_ATTR_STA_INFO
] &&
2265 !nla_parse_nested(sinfo
, NL80211_STA_INFO_MAX
,
2266 attr
[NL80211_ATTR_STA_INFO
], stats_policy
))
2268 if (sinfo
[NL80211_STA_INFO_SIGNAL
])
2269 e
->signal
= nla_get_u8(sinfo
[NL80211_STA_INFO_SIGNAL
]);
2271 if (sinfo
[NL80211_STA_INFO_SIGNAL_AVG
])
2272 e
->signal_avg
= nla_get_u8(sinfo
[NL80211_STA_INFO_SIGNAL_AVG
]);
2274 if (sinfo
[NL80211_STA_INFO_INACTIVE_TIME
])
2275 e
->inactive
= nla_get_u32(sinfo
[NL80211_STA_INFO_INACTIVE_TIME
]);
2277 if (sinfo
[NL80211_STA_INFO_CONNECTED_TIME
])
2278 e
->connected_time
= nla_get_u32(sinfo
[NL80211_STA_INFO_CONNECTED_TIME
]);
2280 if (sinfo
[NL80211_STA_INFO_RX_PACKETS
])
2281 e
->rx_packets
= nla_get_u32(sinfo
[NL80211_STA_INFO_RX_PACKETS
]);
2283 if (sinfo
[NL80211_STA_INFO_TX_PACKETS
])
2284 e
->tx_packets
= nla_get_u32(sinfo
[NL80211_STA_INFO_TX_PACKETS
]);
2286 if (sinfo
[NL80211_STA_INFO_RX_BITRATE
] &&
2287 !nla_parse_nested(rinfo
, NL80211_RATE_INFO_MAX
,
2288 sinfo
[NL80211_STA_INFO_RX_BITRATE
], rate_policy
))
2289 nl80211_parse_rateinfo(rinfo
, &e
->rx_rate
);
2291 if (sinfo
[NL80211_STA_INFO_TX_BITRATE
] &&
2292 !nla_parse_nested(rinfo
, NL80211_RATE_INFO_MAX
,
2293 sinfo
[NL80211_STA_INFO_TX_BITRATE
], rate_policy
))
2294 nl80211_parse_rateinfo(rinfo
, &e
->tx_rate
);
2296 if (sinfo
[NL80211_STA_INFO_RX_BYTES64
])
2297 e
->rx_bytes
= nla_get_u64(sinfo
[NL80211_STA_INFO_RX_BYTES64
]);
2298 else if (sinfo
[NL80211_STA_INFO_RX_BYTES
])
2299 e
->rx_bytes
= nla_get_u32(sinfo
[NL80211_STA_INFO_RX_BYTES
]);
2301 if (sinfo
[NL80211_STA_INFO_TX_BYTES64
])
2302 e
->tx_bytes
= nla_get_u64(sinfo
[NL80211_STA_INFO_TX_BYTES64
]);
2303 else if (sinfo
[NL80211_STA_INFO_TX_BYTES
])
2304 e
->tx_bytes
= nla_get_u32(sinfo
[NL80211_STA_INFO_TX_BYTES
]);
2306 if (sinfo
[NL80211_STA_INFO_TX_RETRIES
])
2307 e
->tx_retries
= nla_get_u32(sinfo
[NL80211_STA_INFO_TX_RETRIES
]);
2309 if (sinfo
[NL80211_STA_INFO_TX_FAILED
])
2310 e
->tx_failed
= nla_get_u32(sinfo
[NL80211_STA_INFO_TX_FAILED
]);
2312 if (sinfo
[NL80211_STA_INFO_T_OFFSET
])
2313 e
->t_offset
= nla_get_u64(sinfo
[NL80211_STA_INFO_T_OFFSET
]);
2315 if (sinfo
[NL80211_STA_INFO_RX_DROP_MISC
])
2316 e
->rx_drop_misc
= nla_get_u64(sinfo
[NL80211_STA_INFO_RX_DROP_MISC
]);
2318 if (sinfo
[NL80211_STA_INFO_EXPECTED_THROUGHPUT
])
2319 e
->thr
= nla_get_u32(sinfo
[NL80211_STA_INFO_EXPECTED_THROUGHPUT
]);
2322 if (sinfo
[NL80211_STA_INFO_LLID
])
2323 e
->llid
= nla_get_u16(sinfo
[NL80211_STA_INFO_LLID
]);
2325 if (sinfo
[NL80211_STA_INFO_PLID
])
2326 e
->plid
= nla_get_u16(sinfo
[NL80211_STA_INFO_PLID
]);
2328 if (sinfo
[NL80211_STA_INFO_PLINK_STATE
])
2329 plink_state_to_str(e
->plink_state
,
2330 nla_get_u8(sinfo
[NL80211_STA_INFO_PLINK_STATE
]));
2332 if (sinfo
[NL80211_STA_INFO_LOCAL_PM
])
2333 power_mode_to_str(e
->local_ps
, sinfo
[NL80211_STA_INFO_LOCAL_PM
]);
2334 if (sinfo
[NL80211_STA_INFO_PEER_PM
])
2335 power_mode_to_str(e
->peer_ps
, sinfo
[NL80211_STA_INFO_PEER_PM
]);
2336 if (sinfo
[NL80211_STA_INFO_NONPEER_PM
])
2337 power_mode_to_str(e
->nonpeer_ps
, sinfo
[NL80211_STA_INFO_NONPEER_PM
]);
2340 if (sinfo
[NL80211_STA_INFO_STA_FLAGS
])
2342 sta_flags
= (struct nl80211_sta_flag_update
*)
2343 nla_data(sinfo
[NL80211_STA_INFO_STA_FLAGS
]);
2345 if (sta_flags
->mask
& BIT(NL80211_STA_FLAG_AUTHORIZED
) &&
2346 sta_flags
->set
& BIT(NL80211_STA_FLAG_AUTHORIZED
))
2347 e
->is_authorized
= 1;
2349 if (sta_flags
->mask
& BIT(NL80211_STA_FLAG_AUTHENTICATED
) &&
2350 sta_flags
->set
& BIT(NL80211_STA_FLAG_AUTHENTICATED
))
2351 e
->is_authenticated
= 1;
2353 if (sta_flags
->mask
& BIT(NL80211_STA_FLAG_SHORT_PREAMBLE
) &&
2354 sta_flags
->set
& BIT(NL80211_STA_FLAG_SHORT_PREAMBLE
))
2355 e
->is_preamble_short
= 1;
2357 if (sta_flags
->mask
& BIT(NL80211_STA_FLAG_WME
) &&
2358 sta_flags
->set
& BIT(NL80211_STA_FLAG_WME
))
2361 if (sta_flags
->mask
& BIT(NL80211_STA_FLAG_MFP
) &&
2362 sta_flags
->set
& BIT(NL80211_STA_FLAG_MFP
))
2365 if (sta_flags
->mask
& BIT(NL80211_STA_FLAG_TDLS_PEER
) &&
2366 sta_flags
->set
& BIT(NL80211_STA_FLAG_TDLS_PEER
))
2371 e
->noise
= 0; /* filled in by caller */
2377 static int nl80211_get_survey(const char *ifname
, char *buf
, int *len
)
2379 struct nl80211_array_buf arr
= { .buf
= buf
, .count
= 0 };
2382 rc
= nl80211_request(ifname
, NL80211_CMD_GET_SURVEY
,
2383 NLM_F_DUMP
, nl80211_get_survey_cb
, &arr
);
2385 *len
= (arr
.count
* sizeof(struct iwinfo_survey_entry
));
2392 static int nl80211_get_assoclist(const char *ifname
, char *buf
, int *len
)
2397 struct nl80211_array_buf arr
= { .buf
= buf
, .count
= 0 };
2398 struct iwinfo_assoclist_entry
*e
;
2400 if ((d
= opendir("/sys/class/net")) != NULL
)
2402 while ((de
= readdir(d
)) != NULL
)
2404 if (!strncmp(de
->d_name
, ifname
, strlen(ifname
)) &&
2405 (!de
->d_name
[strlen(ifname
)] ||
2406 !strncmp(&de
->d_name
[strlen(ifname
)], ".sta", 4)))
2408 nl80211_request(de
->d_name
, NL80211_CMD_GET_STATION
,
2409 NLM_F_DUMP
, nl80211_get_assoclist_cb
, &arr
);
2415 if (!nl80211_get_noise(ifname
, &noise
))
2416 for (i
= 0, e
= arr
.buf
; i
< arr
.count
; i
++, e
++)
2419 *len
= (arr
.count
* sizeof(struct iwinfo_assoclist_entry
));
2426 static int nl80211_get_txpwrlist_cb(struct nl_msg
*msg
, void *arg
)
2429 int ch_cur
, ch_cmp
, bands_remain
, freqs_remain
;
2431 struct nlattr
**attr
= nl80211_parse(msg
);
2432 struct nlattr
*bands
[NL80211_BAND_ATTR_MAX
+ 1];
2433 struct nlattr
*freqs
[NL80211_FREQUENCY_ATTR_MAX
+ 1];
2434 struct nlattr
*band
, *freq
;
2436 static const struct nla_policy freq_policy
[NL80211_FREQUENCY_ATTR_MAX
+ 1] = {
2437 [NL80211_FREQUENCY_ATTR_FREQ
] = { .type
= NLA_U32
},
2438 [NL80211_FREQUENCY_ATTR_DISABLED
] = { .type
= NLA_FLAG
},
2439 [NL80211_FREQUENCY_ATTR_PASSIVE_SCAN
] = { .type
= NLA_FLAG
},
2440 [NL80211_FREQUENCY_ATTR_NO_IBSS
] = { .type
= NLA_FLAG
},
2441 [NL80211_FREQUENCY_ATTR_RADAR
] = { .type
= NLA_FLAG
},
2442 [NL80211_FREQUENCY_ATTR_MAX_TX_POWER
] = { .type
= NLA_U32
},
2445 ch_cur
= *dbm_max
; /* value int* is initialized with channel by caller */
2448 nla_for_each_nested(band
, attr
[NL80211_ATTR_WIPHY_BANDS
], bands_remain
)
2450 nla_parse(bands
, NL80211_BAND_ATTR_MAX
, nla_data(band
),
2451 nla_len(band
), NULL
);
2453 nla_for_each_nested(freq
, bands
[NL80211_BAND_ATTR_FREQS
], freqs_remain
)
2455 nla_parse(freqs
, NL80211_FREQUENCY_ATTR_MAX
,
2456 nla_data(freq
), nla_len(freq
), freq_policy
);
2458 ch_cmp
= nl80211_freq2channel(nla_get_u32(
2459 freqs
[NL80211_FREQUENCY_ATTR_FREQ
]));
2461 if ((!ch_cur
|| (ch_cmp
== ch_cur
)) &&
2462 freqs
[NL80211_FREQUENCY_ATTR_MAX_TX_POWER
])
2464 *dbm_max
= (int)(0.01 * nla_get_u32(
2465 freqs
[NL80211_FREQUENCY_ATTR_MAX_TX_POWER
]));
2475 static int nl80211_get_txpwrlist(const char *ifname
, char *buf
, int *len
)
2478 int dbm_max
= -1, dbm_cur
, dbm_cnt
;
2479 struct iwinfo_txpwrlist_entry entry
;
2481 if (nl80211_get_channel(ifname
, &ch_cur
))
2484 /* initialize the value pointer with channel for callback */
2487 err
= nl80211_request(ifname
, NL80211_CMD_GET_WIPHY
, 0,
2488 nl80211_get_txpwrlist_cb
, &dbm_max
);
2492 for (dbm_cur
= 0, dbm_cnt
= 0;
2494 dbm_cur
++, dbm_cnt
++)
2496 entry
.dbm
= dbm_cur
;
2497 entry
.mw
= iwinfo_dbm2mw(dbm_cur
);
2499 memcpy(&buf
[dbm_cnt
* sizeof(entry
)], &entry
, sizeof(entry
));
2502 entry
.dbm
= dbm_max
;
2503 entry
.mw
= iwinfo_dbm2mw(dbm_max
);
2505 memcpy(&buf
[dbm_cnt
* sizeof(entry
)], &entry
, sizeof(entry
));
2508 *len
= dbm_cnt
* sizeof(entry
);
2515 static void nl80211_get_scancrypto(char *spec
, struct iwinfo_crypto_entry
*c
)
2517 int wpa_version
= 0;
2518 char *p
, *q
, *proto
, *suites
;
2522 for (p
= strtok_r(spec
, "[]", &q
); p
; p
= strtok_r(NULL
, "[]", &q
)) {
2523 if (!strcmp(p
, "WEP")) {
2525 c
->auth_suites
= IWINFO_KMGMT_NONE
;
2526 c
->auth_algs
= IWINFO_AUTH_OPEN
| IWINFO_AUTH_SHARED
;
2527 c
->pair_ciphers
= IWINFO_CIPHER_WEP40
| IWINFO_CIPHER_WEP104
;
2531 proto
= strtok(p
, "-");
2532 suites
= strtok(NULL
, "]");
2534 if (!proto
|| !suites
)
2537 if (!strcmp(proto
, "WPA2") || !strcmp(proto
, "RSN"))
2539 else if (!strcmp(proto
, "WPA"))
2546 parse_wpa_suites(suites
, wpa_version
, &c
->wpa_version
, &c
->auth_suites
);
2547 parse_wpa_ciphers(suites
, &c
->pair_ciphers
);
2552 struct nl80211_scanlist
{
2553 struct iwinfo_scanlist_entry
*e
;
2558 static void nl80211_get_scanlist_ie(struct nlattr
**bss
,
2559 struct iwinfo_scanlist_entry
*e
)
2561 int ielen
= nla_len(bss
[NL80211_BSS_INFORMATION_ELEMENTS
]);
2562 unsigned char *ie
= nla_data(bss
[NL80211_BSS_INFORMATION_ELEMENTS
]);
2563 static unsigned char ms_oui
[3] = { 0x00, 0x50, 0xf2 };
2566 while (ielen
>= 2 && ielen
>= ie
[1])
2571 case 114: /* Mesh ID */
2572 if (e
->ssid
[0] == 0) {
2573 len
= min(ie
[1], IWINFO_ESSID_MAX_SIZE
);
2574 memcpy(e
->ssid
, ie
+ 2, len
);
2580 iwinfo_parse_rsn(&e
->crypto
, ie
+ 2, ie
[1],
2581 IWINFO_CIPHER_CCMP
, IWINFO_KMGMT_8021x
);
2584 case 221: /* Vendor */
2585 if (ie
[1] >= 4 && !memcmp(ie
+ 2, ms_oui
, 3) && ie
[5] == 1)
2586 iwinfo_parse_rsn(&e
->crypto
, ie
+ 6, ie
[1] - 4,
2587 IWINFO_CIPHER_TKIP
, IWINFO_KMGMT_PSK
);
2589 case 61: /* HT operation */
2591 e
->ht_chan_info
.primary_chan
= ie
[2];
2592 e
->ht_chan_info
.secondary_chan_off
= ie
[3] & 0x3;
2593 e
->ht_chan_info
.chan_width
= (ie
[4] & 0x4)>>2;
2596 case 192: /* VHT operation */
2598 e
->vht_chan_info
.chan_width
= ie
[2];
2599 e
->vht_chan_info
.center_chan_1
= ie
[3];
2600 e
->vht_chan_info
.center_chan_2
= ie
[4];
2610 static int nl80211_get_scanlist_cb(struct nl_msg
*msg
, void *arg
)
2615 struct nl80211_scanlist
*sl
= arg
;
2616 struct nlattr
**tb
= nl80211_parse(msg
);
2617 struct nlattr
*bss
[NL80211_BSS_MAX
+ 1];
2619 static const struct nla_policy bss_policy
[NL80211_BSS_MAX
+ 1] = {
2620 [NL80211_BSS_TSF
] = { .type
= NLA_U64
},
2621 [NL80211_BSS_FREQUENCY
] = { .type
= NLA_U32
},
2622 [NL80211_BSS_BSSID
] = { 0 },
2623 [NL80211_BSS_BEACON_INTERVAL
] = { .type
= NLA_U16
},
2624 [NL80211_BSS_CAPABILITY
] = { .type
= NLA_U16
},
2625 [NL80211_BSS_INFORMATION_ELEMENTS
] = { 0 },
2626 [NL80211_BSS_SIGNAL_MBM
] = { .type
= NLA_U32
},
2627 [NL80211_BSS_SIGNAL_UNSPEC
] = { .type
= NLA_U8
},
2628 [NL80211_BSS_STATUS
] = { .type
= NLA_U32
},
2629 [NL80211_BSS_SEEN_MS_AGO
] = { .type
= NLA_U32
},
2630 [NL80211_BSS_BEACON_IES
] = { 0 },
2633 if (!tb
[NL80211_ATTR_BSS
] ||
2634 nla_parse_nested(bss
, NL80211_BSS_MAX
, tb
[NL80211_ATTR_BSS
],
2636 !bss
[NL80211_BSS_BSSID
])
2641 if (bss
[NL80211_BSS_CAPABILITY
])
2642 caps
= nla_get_u16(bss
[NL80211_BSS_CAPABILITY
]);
2646 memset(sl
->e
, 0, sizeof(*sl
->e
));
2647 memcpy(sl
->e
->mac
, nla_data(bss
[NL80211_BSS_BSSID
]), 6);
2650 sl
->e
->mode
= IWINFO_OPMODE_ADHOC
;
2651 else if (caps
& (1<<0))
2652 sl
->e
->mode
= IWINFO_OPMODE_MASTER
;
2654 sl
->e
->mode
= IWINFO_OPMODE_MESHPOINT
;
2657 sl
->e
->crypto
.enabled
= 1;
2659 if (bss
[NL80211_BSS_FREQUENCY
])
2661 sl
->e
->mhz
= nla_get_u32(bss
[NL80211_BSS_FREQUENCY
]);
2662 sl
->e
->band
= nl80211_freq2band(sl
->e
->mhz
);
2663 sl
->e
->channel
= nl80211_freq2channel(sl
->e
->mhz
);
2666 if (bss
[NL80211_BSS_INFORMATION_ELEMENTS
])
2667 nl80211_get_scanlist_ie(bss
, sl
->e
);
2669 if (bss
[NL80211_BSS_SIGNAL_MBM
])
2672 (uint8_t)((int32_t)nla_get_u32(bss
[NL80211_BSS_SIGNAL_MBM
]) / 100);
2674 rssi
= sl
->e
->signal
- 0x100;
2678 else if (rssi
> -40)
2681 sl
->e
->quality
= (rssi
+ 110);
2682 sl
->e
->quality_max
= 70;
2685 if (sl
->e
->crypto
.enabled
&& !sl
->e
->crypto
.wpa_version
)
2687 sl
->e
->crypto
.auth_algs
= IWINFO_AUTH_OPEN
| IWINFO_AUTH_SHARED
;
2688 sl
->e
->crypto
.pair_ciphers
= IWINFO_CIPHER_WEP40
| IWINFO_CIPHER_WEP104
;
2697 static int nl80211_get_scanlist_nl(const char *ifname
, char *buf
, int *len
)
2699 struct nl80211_scanlist sl
= { .e
= (struct iwinfo_scanlist_entry
*)buf
};
2701 if (nl80211_request(ifname
, NL80211_CMD_TRIGGER_SCAN
, 0, NULL
, NULL
))
2704 if (nl80211_wait("nl80211", "scan",
2705 NL80211_CMD_NEW_SCAN_RESULTS
, NL80211_CMD_SCAN_ABORTED
))
2708 if (nl80211_request(ifname
, NL80211_CMD_GET_SCAN
, NLM_F_DUMP
,
2709 nl80211_get_scanlist_cb
, &sl
))
2712 *len
= sl
.len
* sizeof(struct iwinfo_scanlist_entry
);
2720 static int wpasupp_ssid_decode(const char *in
, char *out
, int outlen
)
2723 (((x) >= 'a') ? ((x) - 'a' + 10) : \
2724 (((x) >= 'A') ? ((x) - 'A' + 10) : ((x) - '0')))
2730 if (len
+ 1 >= outlen
)
2740 out
[len
++] = '\n'; in
++;
2744 out
[len
++] = '\r'; in
++;
2748 out
[len
++] = '\t'; in
++;
2752 out
[len
++] = '\033'; in
++;
2756 if (isxdigit(*(in
+1)) && isxdigit(*(in
+2)))
2757 out
[len
++] = hex(*(in
+1)) * 16 + hex(*(in
+2));
2779 static int nl80211_get_scanlist_wpactl(const char *ifname
, char *buf
, int *len
)
2781 int sock
, qmax
, rssi
, tries
, count
= -1, ready
= 0;
2782 char *pos
, *line
, *bssid
, *freq
, *signal
, *flags
, *ssid
, reply
[4096];
2783 struct sockaddr_un local
= { 0 };
2784 struct iwinfo_scanlist_entry
*e
= (struct iwinfo_scanlist_entry
*)buf
;
2786 sock
= nl80211_wpactl_connect(ifname
, &local
);
2791 send(sock
, "ATTACH", 6, 0);
2792 send(sock
, "SCAN", 4, 0);
2795 * wait for scan results:
2796 * nl80211_wpactl_recv() will use a timeout of 256ms and we need to scan
2797 * 72 channels at most. We'll also receive two "OK" messages acknowledging
2798 * the "ATTACH" and "SCAN" commands and the driver might need a bit extra
2799 * time to process the results, so try 72 + 2 + 1 times.
2801 for (tries
= 0; tries
< 75; tries
++)
2803 if (nl80211_wpactl_recv(sock
, reply
, sizeof(reply
)) <= 0)
2806 /* got an event notification */
2807 if (reply
[0] == '<')
2809 /* scan results are ready */
2810 if (strstr(reply
, "CTRL-EVENT-SCAN-RESULTS"))
2812 /* send "SCAN_RESULTS" command */
2813 ready
= (send(sock
, "SCAN_RESULTS", 12, 0) == 12);
2817 /* is another unrelated event, retry */
2821 /* scanning already in progress, keep awaiting results */
2822 else if (!strcmp(reply
, "FAIL-BUSY\n"))
2827 /* another failure, abort */
2828 else if (!strncmp(reply
, "FAIL-", 5))
2834 /* receive and parse scan results if the wait above didn't time out */
2835 while (ready
&& nl80211_wpactl_recv(sock
, reply
, sizeof(reply
)) > 0)
2837 /* received an event notification, receive again */
2838 if (reply
[0] == '<')
2841 nl80211_get_quality_max(ifname
, &qmax
);
2843 for (line
= strtok_r(reply
, "\n", &pos
);
2845 line
= strtok_r(NULL
, "\n", &pos
))
2847 /* skip header line */
2854 bssid
= strtok(line
, "\t");
2855 freq
= strtok(NULL
, "\t");
2856 signal
= strtok(NULL
, "\t");
2857 flags
= strtok(NULL
, "\t");
2858 ssid
= strtok(NULL
, "\n");
2860 if (!bssid
|| !freq
|| !signal
|| !flags
)
2864 e
->mac
[0] = strtol(&bssid
[0], NULL
, 16);
2865 e
->mac
[1] = strtol(&bssid
[3], NULL
, 16);
2866 e
->mac
[2] = strtol(&bssid
[6], NULL
, 16);
2867 e
->mac
[3] = strtol(&bssid
[9], NULL
, 16);
2868 e
->mac
[4] = strtol(&bssid
[12], NULL
, 16);
2869 e
->mac
[5] = strtol(&bssid
[15], NULL
, 16);
2873 wpasupp_ssid_decode(ssid
, e
->ssid
, sizeof(e
->ssid
));
2878 if (strstr(flags
, "[MESH]"))
2879 e
->mode
= IWINFO_OPMODE_MESHPOINT
;
2880 else if (strstr(flags
, "[IBSS]"))
2881 e
->mode
= IWINFO_OPMODE_ADHOC
;
2883 e
->mode
= IWINFO_OPMODE_MASTER
;
2886 e
->mhz
= atoi(freq
);
2887 e
->band
= nl80211_freq2band(e
->mhz
);
2888 e
->channel
= nl80211_freq2channel(e
->mhz
);
2891 rssi
= atoi(signal
);
2897 /* The cfg80211 wext compat layer assumes a signal range
2898 * of -110 dBm to -40 dBm, the quality value is derived
2899 * by adding 110 to the signal level */
2902 else if (rssi
> -40)
2905 e
->quality
= (rssi
+ 110);
2913 e
->quality_max
= qmax
;
2916 nl80211_get_scancrypto(flags
, &e
->crypto
);
2922 *len
= count
* sizeof(struct iwinfo_scanlist_entry
);
2927 unlink(local
.sun_path
);
2929 return (count
>= 0) ? 0 : -1;
2932 static int nl80211_get_scanlist(const char *ifname
, char *buf
, int *len
)
2939 /* Got a radioX pseudo interface, find some interface on it or create one */
2940 if (!strncmp(ifname
, "radio", 5))
2942 /* Reuse existing interface */
2943 if ((res
= nl80211_phy2ifname(ifname
)) != NULL
)
2945 return nl80211_get_scanlist(res
, buf
, len
);
2948 /* Need to spawn a temporary iface for scanning */
2949 else if ((res
= nl80211_ifadd(ifname
)) != NULL
)
2951 rv
= nl80211_get_scanlist(res
, buf
, len
);
2957 /* WPA supplicant */
2958 if (!nl80211_get_scanlist_wpactl(ifname
, buf
, len
))
2963 /* station / ad-hoc / monitor scan */
2964 else if (!nl80211_get_mode(ifname
, &mode
) &&
2965 (mode
== IWINFO_OPMODE_ADHOC
||
2966 mode
== IWINFO_OPMODE_MASTER
||
2967 mode
== IWINFO_OPMODE_CLIENT
||
2968 mode
== IWINFO_OPMODE_MONITOR
) &&
2969 iwinfo_ifup(ifname
))
2971 return nl80211_get_scanlist_nl(ifname
, buf
, len
);
2977 /* Got a temp interface, don't create yet another one */
2978 if (!strncmp(ifname
, "tmp.", 4))
2980 if (!iwinfo_ifup(ifname
))
2983 rv
= nl80211_get_scanlist_nl(ifname
, buf
, len
);
2984 iwinfo_ifdown(ifname
);
2988 /* Spawn a new scan interface */
2991 if (!(res
= nl80211_ifadd(ifname
)))
2996 /* if we can take the new interface up, the driver supports an
2997 * additional interface and there's no need to tear down the ap */
2998 if (iwinfo_ifup(res
))
3000 rv
= nl80211_get_scanlist_nl(res
, buf
, len
);
3004 /* driver cannot create secondary interface, take down ap
3006 else if (iwinfo_ifdown(ifname
) && iwinfo_ifup(res
))
3008 rv
= nl80211_get_scanlist_nl(res
, buf
, len
);
3010 iwinfo_ifup(ifname
);
3011 nl80211_hostapd_hup(ifname
);
3024 static int nl80211_get_freqlist_cb(struct nl_msg
*msg
, void *arg
)
3026 int bands_remain
, freqs_remain
;
3028 struct nl80211_array_buf
*arr
= arg
;
3029 struct iwinfo_freqlist_entry
*e
;
3031 struct nlattr
**attr
= nl80211_parse(msg
);
3032 struct nlattr
*bands
[NL80211_BAND_ATTR_MAX
+ 1];
3033 struct nlattr
*freqs
[NL80211_FREQUENCY_ATTR_MAX
+ 1];
3034 struct nlattr
*band
, *freq
;
3039 if (attr
[NL80211_ATTR_WIPHY_BANDS
]) {
3040 nla_for_each_nested(band
, attr
[NL80211_ATTR_WIPHY_BANDS
], bands_remain
)
3042 nla_parse(bands
, NL80211_BAND_ATTR_MAX
,
3043 nla_data(band
), nla_len(band
), NULL
);
3045 if (bands
[NL80211_BAND_ATTR_FREQS
]) {
3046 nla_for_each_nested(freq
, bands
[NL80211_BAND_ATTR_FREQS
], freqs_remain
)
3048 nla_parse(freqs
, NL80211_FREQUENCY_ATTR_MAX
,
3049 nla_data(freq
), nla_len(freq
), NULL
);
3051 if (!freqs
[NL80211_FREQUENCY_ATTR_FREQ
] ||
3052 freqs
[NL80211_FREQUENCY_ATTR_DISABLED
])
3055 e
->band
= nl80211_get_band(band
->nla_type
);
3056 e
->mhz
= nla_get_u32(freqs
[NL80211_FREQUENCY_ATTR_FREQ
]);
3057 e
->channel
= nl80211_freq2channel(e
->mhz
);
3059 if (freqs
[NL80211_FREQUENCY_ATTR_NO_HT40_MINUS
])
3060 e
->flags
|= IWINFO_FREQ_NO_HT40MINUS
;
3061 if (freqs
[NL80211_FREQUENCY_ATTR_NO_HT40_PLUS
])
3062 e
->flags
|= IWINFO_FREQ_NO_HT40PLUS
;
3063 if (freqs
[NL80211_FREQUENCY_ATTR_NO_80MHZ
])
3064 e
->flags
|= IWINFO_FREQ_NO_80MHZ
;
3065 if (freqs
[NL80211_FREQUENCY_ATTR_NO_160MHZ
])
3066 e
->flags
|= IWINFO_FREQ_NO_160MHZ
;
3067 if (freqs
[NL80211_FREQUENCY_ATTR_NO_20MHZ
])
3068 e
->flags
|= IWINFO_FREQ_NO_20MHZ
;
3069 if (freqs
[NL80211_FREQUENCY_ATTR_NO_10MHZ
])
3070 e
->flags
|= IWINFO_FREQ_NO_10MHZ
;
3071 if (freqs
[NL80211_FREQUENCY_ATTR_NO_HE
])
3072 e
->flags
|= IWINFO_FREQ_NO_HE
;
3073 if (freqs
[NL80211_FREQUENCY_ATTR_NO_IR
] &&
3074 !freqs
[NL80211_FREQUENCY_ATTR_RADAR
])
3075 e
->flags
|= IWINFO_FREQ_NO_IR
;
3076 if (freqs
[NL80211_FREQUENCY_ATTR_INDOOR_ONLY
])
3077 e
->flags
|= IWINFO_FREQ_INDOOR_ONLY
;
3079 /* keep backwards compatibility */
3080 e
->restricted
= (e
->flags
& IWINFO_FREQ_NO_IR
) ? 1 : 0;
3092 static int nl80211_get_freqlist(const char *ifname
, char *buf
, int *len
)
3094 struct nl80211_msg_conveyor
*cv
;
3095 struct nl80211_array_buf arr
= { .buf
= buf
, .count
= 0 };
3096 uint32_t features
= nl80211_get_protocol_features(ifname
);
3099 flags
= features
& NL80211_PROTOCOL_FEATURE_SPLIT_WIPHY_DUMP
? NLM_F_DUMP
: 0;
3100 cv
= nl80211_msg(ifname
, NL80211_CMD_GET_WIPHY
, flags
);
3104 NLA_PUT_FLAG(cv
->msg
, NL80211_ATTR_SPLIT_WIPHY_DUMP
);
3105 if (nl80211_send(cv
, nl80211_get_freqlist_cb
, &arr
))
3108 *len
= arr
.count
* sizeof(struct iwinfo_freqlist_entry
);
3118 static int nl80211_get_country_cb(struct nl_msg
*msg
, void *arg
)
3121 struct nlattr
**attr
= nl80211_parse(msg
);
3123 if (attr
[NL80211_ATTR_REG_ALPHA2
])
3124 memcpy(buf
, nla_data(attr
[NL80211_ATTR_REG_ALPHA2
]), 2);
3131 static int nl80211_get_country(const char *ifname
, char *buf
)
3133 if (nl80211_request(ifname
, NL80211_CMD_GET_REG
, 0,
3134 nl80211_get_country_cb
, buf
))
3140 static int nl80211_get_countrylist(const char *ifname
, char *buf
, int *len
)
3143 struct iwinfo_country_entry
*e
= (struct iwinfo_country_entry
*)buf
;
3144 const struct iwinfo_iso3166_label
*l
;
3146 for (l
= IWINFO_ISO3166_NAMES
, count
= 0; l
->iso3166
; l
++, e
++, count
++)
3148 e
->iso3166
= l
->iso3166
;
3149 e
->ccode
[0] = (l
->iso3166
/ 256);
3150 e
->ccode
[1] = (l
->iso3166
% 256);
3154 *len
= (count
* sizeof(struct iwinfo_country_entry
));
3159 struct nl80211_modes
3169 uint16_t he_phy_cap
[6];
3170 uint16_t eht_phy_cap
[9];
3173 static void nl80211_eval_modelist(struct nl80211_modes
*m
)
3175 /* Treat any nonzero capability as 11n */
3178 m
->hw
|= IWINFO_80211_N
;
3179 m
->ht
|= IWINFO_HTMODE_HT20
;
3181 if (m
->nl_ht
& (1 << 1))
3182 m
->ht
|= IWINFO_HTMODE_HT40
;
3185 if (m
->he_phy_cap
[0] != 0) {
3186 m
->hw
|= IWINFO_80211_AX
;
3187 m
->ht
|= IWINFO_HTMODE_HE20
;
3189 if (m
->he_phy_cap
[0] & BIT(9))
3190 m
->ht
|= IWINFO_HTMODE_HE40
;
3191 if (m
->he_phy_cap
[0] & BIT(10))
3192 m
->ht
|= IWINFO_HTMODE_HE40
| IWINFO_HTMODE_HE80
;
3193 if (m
->he_phy_cap
[0] & BIT(11))
3194 m
->ht
|= IWINFO_HTMODE_HE160
;
3195 if (m
->he_phy_cap
[0] & BIT(12))
3196 m
->ht
|= IWINFO_HTMODE_HE160
| IWINFO_HTMODE_HE80_80
;
3199 if (m
->eht_phy_cap
[0] != 0) {
3200 m
->hw
|= IWINFO_80211_BE
;
3201 m
->ht
|= IWINFO_HTMODE_EHT20
;
3203 if (m
->he_phy_cap
[0] & BIT(9))
3204 m
->ht
|= IWINFO_HTMODE_EHT40
;
3205 if (m
->he_phy_cap
[0] & BIT(10))
3206 m
->ht
|= IWINFO_HTMODE_EHT40
| IWINFO_HTMODE_EHT80
;
3207 if (m
->he_phy_cap
[0] & BIT(11))
3208 m
->ht
|= IWINFO_HTMODE_EHT160
;
3209 if (m
->he_phy_cap
[0] & BIT(12))
3210 m
->ht
|= IWINFO_HTMODE_EHT160
| IWINFO_HTMODE_EHT80_80
;
3211 if ((m
->eht_phy_cap
[0] & BIT(9)) && (m
->bands
& IWINFO_BAND_6
))
3212 m
->ht
|= IWINFO_HTMODE_EHT320
;
3215 if (m
->bands
& IWINFO_BAND_24
)
3217 m
->hw
|= IWINFO_80211_B
;
3218 m
->hw
|= IWINFO_80211_G
;
3221 if (m
->bands
& IWINFO_BAND_5
)
3223 /* Treat any nonzero capability as 11ac */
3226 m
->hw
|= IWINFO_80211_AC
;
3227 m
->ht
|= IWINFO_HTMODE_VHT20
| IWINFO_HTMODE_VHT40
| IWINFO_HTMODE_VHT80
;
3229 switch ((m
->nl_vht
>> 2) & 3)
3232 m
->ht
|= IWINFO_HTMODE_VHT80_80
;
3236 m
->ht
|= IWINFO_HTMODE_VHT160
;
3241 m
->hw
|= IWINFO_80211_A
;
3245 if (m
->bands
& IWINFO_BAND_60
)
3247 m
->hw
|= IWINFO_80211_AD
;
3252 static int nl80211_get_modelist_cb(struct nl_msg
*msg
, void *arg
)
3254 struct nl80211_modes
*m
= arg
;
3256 struct nlattr
**attr
= nl80211_parse(msg
);
3257 struct nlattr
*bands
[NL80211_BAND_ATTR_MAX
+ 1];
3258 struct nlattr
*band
;
3260 if (attr
[NL80211_ATTR_WIPHY_BANDS
])
3262 nla_for_each_nested(band
, attr
[NL80211_ATTR_WIPHY_BANDS
], bands_remain
)
3264 m
->bands
|= nl80211_get_band(band
->nla_type
);
3266 nla_parse(bands
, NL80211_BAND_ATTR_MAX
,
3267 nla_data(band
), nla_len(band
), NULL
);
3269 if (bands
[NL80211_BAND_ATTR_HT_CAPA
])
3270 m
->nl_ht
= nla_get_u16(bands
[NL80211_BAND_ATTR_HT_CAPA
]);
3272 if (bands
[NL80211_BAND_ATTR_VHT_CAPA
])
3273 m
->nl_vht
= nla_get_u32(bands
[NL80211_BAND_ATTR_VHT_CAPA
]);
3275 if (bands
[NL80211_BAND_ATTR_IFTYPE_DATA
]) {
3276 struct nlattr
*tb
[NL80211_BAND_IFTYPE_ATTR_MAX
+ 1];
3277 struct nlattr
*nl_iftype
;
3281 nla_for_each_nested(nl_iftype
, bands
[NL80211_BAND_ATTR_IFTYPE_DATA
], rem_band
) {
3282 nla_parse(tb
, NL80211_BAND_IFTYPE_ATTR_MAX
,
3283 nla_data(nl_iftype
), nla_len(nl_iftype
), NULL
);
3286 if (tb
[NL80211_BAND_IFTYPE_ATTR_HE_CAP_PHY
]) {
3287 len
= nla_len(tb
[NL80211_BAND_IFTYPE_ATTR_HE_CAP_PHY
]);
3289 if (len
> sizeof(m
->he_phy_cap
) - 1)
3290 len
= sizeof(m
->he_phy_cap
) - 1;
3291 memcpy(&((__u8
*)m
->he_phy_cap
)[1],
3292 nla_data(tb
[NL80211_BAND_IFTYPE_ATTR_HE_CAP_PHY
]),
3297 if (tb
[NL80211_BAND_IFTYPE_ATTR_EHT_CAP_PHY
]) {
3298 len
= nla_len(tb
[NL80211_BAND_IFTYPE_ATTR_EHT_CAP_PHY
]);
3300 if (len
> sizeof(m
->eht_phy_cap
) - 1)
3301 len
= sizeof(m
->eht_phy_cap
) - 1;
3302 memcpy(&((uint8_t *)m
->eht_phy_cap
)[1],
3303 nla_data(tb
[NL80211_BAND_IFTYPE_ATTR_EHT_CAP_PHY
]),
3316 static int nl80211_get_hwmodelist(const char *ifname
, int *buf
)
3318 struct nl80211_msg_conveyor
*cv
;
3319 struct nl80211_modes m
= {};
3320 uint32_t features
= nl80211_get_protocol_features(ifname
);
3323 flags
= features
& NL80211_PROTOCOL_FEATURE_SPLIT_WIPHY_DUMP
? NLM_F_DUMP
: 0;
3324 cv
= nl80211_msg(ifname
, NL80211_CMD_GET_WIPHY
, flags
);
3328 NLA_PUT_FLAG(cv
->msg
, NL80211_ATTR_SPLIT_WIPHY_DUMP
);
3329 if (nl80211_send(cv
, nl80211_get_modelist_cb
, &m
))
3330 goto nla_put_failure
;
3332 nl80211_eval_modelist(&m
);
3349 static int nl80211_get_htmode_cb(struct nl_msg
*msg
, void *arg
)
3351 struct nlattr
**tb
= nl80211_parse(msg
);
3353 struct chan_info
*chn
= arg
;
3355 if ((cur
= tb
[NL80211_ATTR_CHANNEL_WIDTH
]))
3356 chn
->width
= nla_get_u32(cur
);
3358 if ((cur
= tb
[NL80211_ATTR_BSS_HT_OPMODE
]))
3359 chn
->mode
= nla_get_u32(cur
);
3364 static int nl80211_get_htmode(const char *ifname
, int *buf
)
3366 struct chan_info chn
= { 0 };
3367 char *res
, b
[2] = { 0 };
3372 res
= nl80211_phy2ifname(ifname
);
3375 err
= nl80211_request(res
? res
: ifname
,
3376 NL80211_CMD_GET_INTERFACE
, 0,
3377 nl80211_get_htmode_cb
, &chn
);
3381 if (nl80211_hostapd_query(res
? res
: ifname
, "ieee80211be", b
, sizeof(b
)))
3384 if (nl80211_hostapd_query(res
? res
: ifname
, "ieee80211ax", b
, sizeof(b
)))
3386 else if (nl80211_wpactl_query(res
? res
: ifname
, "wifi_generation", b
, sizeof(b
))) {
3391 switch (chn
.width
) {
3392 case NL80211_CHAN_WIDTH_20
:
3394 *buf
= IWINFO_HTMODE_EHT20
;
3396 *buf
= IWINFO_HTMODE_HE20
;
3397 else if (chn
.mode
== -1)
3398 *buf
= IWINFO_HTMODE_VHT20
;
3400 *buf
= IWINFO_HTMODE_HT20
;
3402 case NL80211_CHAN_WIDTH_40
:
3404 *buf
= IWINFO_HTMODE_EHT40
;
3406 *buf
= IWINFO_HTMODE_HE40
;
3407 else if (chn
.mode
== -1)
3408 *buf
= IWINFO_HTMODE_VHT40
;
3410 *buf
= IWINFO_HTMODE_HT40
;
3412 case NL80211_CHAN_WIDTH_80
:
3414 *buf
= IWINFO_HTMODE_EHT80
;
3416 *buf
= IWINFO_HTMODE_HE80
;
3418 *buf
= IWINFO_HTMODE_VHT80
;
3420 case NL80211_CHAN_WIDTH_80P80
:
3422 *buf
= IWINFO_HTMODE_EHT80_80
;
3424 *buf
= IWINFO_HTMODE_HE80_80
;
3426 *buf
= IWINFO_HTMODE_VHT80_80
;
3428 case NL80211_CHAN_WIDTH_160
:
3430 *buf
= IWINFO_HTMODE_EHT160
;
3432 *buf
= IWINFO_HTMODE_HE160
;
3434 *buf
= IWINFO_HTMODE_VHT160
;
3436 case NL80211_CHAN_WIDTH_320
:
3437 *buf
= IWINFO_HTMODE_EHT320
;
3439 case NL80211_CHAN_WIDTH_5
:
3440 case NL80211_CHAN_WIDTH_10
:
3441 case NL80211_CHAN_WIDTH_20_NOHT
:
3442 *buf
= IWINFO_HTMODE_NOHT
;
3451 static int nl80211_get_htmodelist(const char *ifname
, int *buf
)
3453 struct nl80211_msg_conveyor
*cv
;
3454 struct nl80211_modes m
= {};
3455 uint32_t features
= nl80211_get_protocol_features(ifname
);
3458 flags
= features
& NL80211_PROTOCOL_FEATURE_SPLIT_WIPHY_DUMP
? NLM_F_DUMP
: 0;
3459 cv
= nl80211_msg(ifname
, NL80211_CMD_GET_WIPHY
, flags
);
3463 NLA_PUT_FLAG(cv
->msg
, NL80211_ATTR_SPLIT_WIPHY_DUMP
);
3464 if (nl80211_send(cv
, nl80211_get_modelist_cb
, &m
))
3465 goto nla_put_failure
;
3467 nl80211_eval_modelist(&m
);
3480 static int nl80211_get_ifcomb_cb(struct nl_msg
*msg
, void *arg
)
3482 struct nlattr
**attr
= nl80211_parse(msg
);
3483 struct nlattr
*comb
;
3485 int comb_rem
, limit_rem
, mode_rem
;
3488 if (!attr
[NL80211_ATTR_INTERFACE_COMBINATIONS
])
3491 nla_for_each_nested(comb
, attr
[NL80211_ATTR_INTERFACE_COMBINATIONS
], comb_rem
)
3493 static const struct nla_policy iface_combination_policy
[NUM_NL80211_IFACE_COMB
] = {
3494 [NL80211_IFACE_COMB_LIMITS
] = { .type
= NLA_NESTED
},
3495 [NL80211_IFACE_COMB_MAXNUM
] = { .type
= NLA_U32
},
3497 struct nlattr
*tb_comb
[NUM_NL80211_IFACE_COMB
+1];
3498 static const struct nla_policy iface_limit_policy
[NUM_NL80211_IFACE_LIMIT
] = {
3499 [NL80211_IFACE_LIMIT_TYPES
] = { .type
= NLA_NESTED
},
3500 [NL80211_IFACE_LIMIT_MAX
] = { .type
= NLA_U32
},
3502 struct nlattr
*tb_limit
[NUM_NL80211_IFACE_LIMIT
+1];
3503 struct nlattr
*limit
;
3505 nla_parse_nested(tb_comb
, NUM_NL80211_IFACE_COMB
, comb
, iface_combination_policy
);
3507 if (!tb_comb
[NL80211_IFACE_COMB_LIMITS
])
3510 nla_for_each_nested(limit
, tb_comb
[NL80211_IFACE_COMB_LIMITS
], limit_rem
)
3512 struct nlattr
*mode
;
3514 nla_parse_nested(tb_limit
, NUM_NL80211_IFACE_LIMIT
, limit
, iface_limit_policy
);
3516 if (!tb_limit
[NL80211_IFACE_LIMIT_TYPES
] ||
3517 !tb_limit
[NL80211_IFACE_LIMIT_MAX
])
3520 if (nla_get_u32(tb_limit
[NL80211_IFACE_LIMIT_MAX
]) < 2)
3523 nla_for_each_nested(mode
, tb_limit
[NL80211_IFACE_LIMIT_TYPES
], mode_rem
) {
3524 if (nla_type(mode
) == NL80211_IFTYPE_AP
)
3533 static int nl80211_get_mbssid_support(const char *ifname
, int *buf
)
3535 if (nl80211_request(ifname
, NL80211_CMD_GET_WIPHY
, 0,
3536 nl80211_get_ifcomb_cb
, buf
))
3542 static int nl80211_hardware_id_from_fdt(struct iwinfo_hardware_id
*id
, const char *ifname
)
3544 char *phy
, path
[PATH_MAX
];
3546 /* Try to determine the phy name from the given interface */
3547 phy
= nl80211_ifname2phy(ifname
);
3549 snprintf(path
, sizeof(path
), "/sys/class/%s/%s/device/of_node/compatible",
3550 phy
? "ieee80211" : "net", phy
? phy
: ifname
);
3552 if (nl80211_readstr(path
, id
->compatible
, sizeof(id
->compatible
)) <= 0)
3559 static int nl80211_get_hardware_id(const char *ifname
, char *buf
)
3561 struct iwinfo_hardware_id
*id
= (struct iwinfo_hardware_id
*)buf
;
3562 char *phy
, num
[8], path
[PATH_MAX
];
3565 struct { const char *path
; uint16_t *dest
; } lookup
[] = {
3566 { "vendor", &id
->vendor_id
},
3567 { "device", &id
->device_id
},
3568 { "subsystem_vendor", &id
->subsystem_vendor_id
},
3569 { "subsystem_device", &id
->subsystem_device_id
},
3570 { "../idVendor", &id
->subsystem_vendor_id
},
3571 { "../idProduct", &id
->subsystem_device_id
}
3574 memset(id
, 0, sizeof(*id
));
3576 /* Try to determine the phy name from the given interface */
3577 phy
= nl80211_ifname2phy(ifname
);
3579 for (i
= 0; i
< ARRAY_SIZE(lookup
); i
++)
3581 snprintf(path
, sizeof(path
), "/sys/class/%s/%s/device/%s",
3582 phy
? "ieee80211" : "net",
3583 phy
? phy
: ifname
, lookup
[i
].path
);
3585 if (nl80211_readstr(path
, num
, sizeof(num
)) > 0)
3586 *lookup
[i
].dest
= strtoul(num
, NULL
, 16);
3589 /* Failed to obtain hardware PCI/USB IDs... */
3590 if (id
->vendor_id
== 0 && id
->device_id
== 0 &&
3591 id
->subsystem_vendor_id
== 0 && id
->subsystem_device_id
== 0)
3592 /* ... first fallback to FDT ... */
3593 if (nl80211_hardware_id_from_fdt(id
, ifname
) == -1)
3594 /* ... then board config */
3595 return iwinfo_hardware_id_from_mtd(id
);
3600 static const struct iwinfo_hardware_entry
*
3601 nl80211_get_hardware_entry(const char *ifname
)
3603 struct iwinfo_hardware_id id
;
3605 if (nl80211_get_hardware_id(ifname
, (char *)&id
))
3608 return iwinfo_hardware(&id
);
3611 static int nl80211_get_hardware_name(const char *ifname
, char *buf
)
3613 const struct iwinfo_hardware_entry
*hw
;
3615 if (!(hw
= nl80211_get_hardware_entry(ifname
)))
3616 sprintf(buf
, "Generic MAC80211");
3618 sprintf(buf
, "%s %s", hw
->vendor_name
, hw
->device_name
);
3623 static int nl80211_get_txpower_offset(const char *ifname
, int *buf
)
3625 const struct iwinfo_hardware_entry
*hw
;
3627 if (!(hw
= nl80211_get_hardware_entry(ifname
)))
3630 *buf
= hw
->txpower_offset
;
3634 static int nl80211_get_frequency_offset(const char *ifname
, int *buf
)
3636 const struct iwinfo_hardware_entry
*hw
;
3638 if (!(hw
= nl80211_get_hardware_entry(ifname
)))
3641 *buf
= hw
->frequency_offset
;
3645 static int nl80211_lookup_phyname(const char *section
, char *buf
)
3650 if (!strncmp(section
, "path=", 5))
3651 idx
= nl80211_phy_idx_from_path(section
+ 5);
3652 else if (!strncmp(section
, "macaddr=", 8))
3653 idx
= nl80211_phy_idx_from_macaddr(section
+ 8);
3655 idx
= nl80211_phy_idx_from_uci(section
);
3660 name
= nl80211_phyidx2name(idx
);
3668 static int nl80211_phy_path(const char *phyname
, const char **path
)
3670 if (strchr(phyname
, '/'))
3673 *path
= nl80211_phy_path_str(phyname
);
3680 const struct iwinfo_ops nl80211_ops
= {
3682 .probe
= nl80211_probe
,
3683 .channel
= nl80211_get_channel
,
3684 .center_chan1
= nl80211_get_center_chan1
,
3685 .center_chan2
= nl80211_get_center_chan2
,
3686 .frequency
= nl80211_get_frequency
,
3687 .frequency_offset
= nl80211_get_frequency_offset
,
3688 .txpower
= nl80211_get_txpower
,
3689 .txpower_offset
= nl80211_get_txpower_offset
,
3690 .bitrate
= nl80211_get_bitrate
,
3691 .signal
= nl80211_get_signal
,
3692 .noise
= nl80211_get_noise
,
3693 .quality
= nl80211_get_quality
,
3694 .quality_max
= nl80211_get_quality_max
,
3695 .mbssid_support
= nl80211_get_mbssid_support
,
3696 .hwmodelist
= nl80211_get_hwmodelist
,
3697 .htmodelist
= nl80211_get_htmodelist
,
3698 .htmode
= nl80211_get_htmode
,
3699 .mode
= nl80211_get_mode
,
3700 .ssid
= nl80211_get_ssid
,
3701 .bssid
= nl80211_get_bssid
,
3702 .country
= nl80211_get_country
,
3703 .hardware_id
= nl80211_get_hardware_id
,
3704 .hardware_name
= nl80211_get_hardware_name
,
3705 .encryption
= nl80211_get_encryption
,
3706 .phyname
= nl80211_get_phyname
,
3707 .assoclist
= nl80211_get_assoclist
,
3708 .txpwrlist
= nl80211_get_txpwrlist
,
3709 .scanlist
= nl80211_get_scanlist
,
3710 .freqlist
= nl80211_get_freqlist
,
3711 .countrylist
= nl80211_get_countrylist
,
3712 .survey
= nl80211_get_survey
,
3713 .lookup_phy
= nl80211_lookup_phyname
,
3714 .phy_path
= nl80211_phy_path
,
3715 .close
= nl80211_close