2 * iwinfo - Wireless Information Library - NL80211 Backend
4 * Copyright (C) 2010 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.
25 #include "iwinfo/nl80211.h"
26 #include "iwinfo/wext.h"
28 #define min(x, y) ((x) < (y)) ? (x) : (y)
30 static struct nl80211_state
*nls
= NULL
;
32 static int nl80211_init(void)
38 nls
= malloc(sizeof(struct nl80211_state
));
44 nls
->nl_sock
= nl_socket_alloc();
50 if( genl_connect(nls
->nl_sock
)) {
55 fd
= nl_socket_get_fd(nls
->nl_sock
);
56 if (fcntl(fd
, F_SETFD
, fcntl(fd
, F_GETFD
) | FD_CLOEXEC
) < 0)
62 if( genl_ctrl_alloc_cache(nls
->nl_sock
, &nls
->nl_cache
)) {
67 nls
->nl80211
= genl_ctrl_search_by_name(nls
->nl_cache
, "nl80211");
83 static int nl80211_msg_error(struct sockaddr_nl
*nla
,
84 struct nlmsgerr
*err
, void *arg
)
91 static int nl80211_msg_finish(struct nl_msg
*msg
, void *arg
)
98 static int nl80211_msg_ack(struct nl_msg
*msg
, void *arg
)
105 static int nl80211_msg_response(struct nl_msg
*msg
, void *arg
)
110 static void nl80211_free(struct nl80211_msg_conveyor
*cv
)
125 static struct nl80211_msg_conveyor
* nl80211_msg(const char *ifname
, int cmd
, int flags
)
127 static struct nl80211_msg_conveyor cv
;
129 int ifidx
= -1, phyidx
= -1;
130 struct nl_msg
*req
= NULL
;
131 struct nl_cb
*cb
= NULL
;
133 if (nl80211_init() < 0)
136 if (!strncmp(ifname
, "phy", 3))
137 phyidx
= atoi(&ifname
[3]);
138 else if (!strncmp(ifname
, "radio", 5))
139 phyidx
= atoi(&ifname
[5]);
140 else if (!strncmp(ifname
, "mon.", 4))
141 ifidx
= if_nametoindex(&ifname
[4]);
143 ifidx
= if_nametoindex(ifname
);
145 if ((ifidx
< 0) && (phyidx
< 0))
152 cb
= nl_cb_alloc(NL_CB_DEFAULT
);
156 genlmsg_put(req
, 0, 0, genl_family_get_id(nls
->nl80211
), 0,
160 NLA_PUT_U32(req
, NL80211_ATTR_IFINDEX
, ifidx
);
163 NLA_PUT_U32(req
, NL80211_ATTR_WIPHY
, phyidx
);
181 static struct nl80211_msg_conveyor
* nl80211_send(
182 struct nl80211_msg_conveyor
*cv
,
183 int (*cb_func
)(struct nl_msg
*, void *), void *cb_arg
185 static struct nl80211_msg_conveyor rcv
;
189 nl_cb_set(cv
->cb
, NL_CB_VALID
, NL_CB_CUSTOM
, cb_func
, cb_arg
);
191 nl_cb_set(cv
->cb
, NL_CB_VALID
, NL_CB_CUSTOM
, nl80211_msg_response
, &rcv
);
193 if (nl_send_auto_complete(nls
->nl_sock
, cv
->msg
) < 0)
196 nl_cb_err(cv
->cb
, NL_CB_CUSTOM
, nl80211_msg_error
, &err
);
197 nl_cb_set(cv
->cb
, NL_CB_FINISH
, NL_CB_CUSTOM
, nl80211_msg_finish
, &err
);
198 nl_cb_set(cv
->cb
, NL_CB_ACK
, NL_CB_CUSTOM
, nl80211_msg_ack
, &err
);
201 nl_recvmsgs(nls
->nl_sock
, cv
->cb
);
212 static struct nlattr
** nl80211_parse(struct nl_msg
*msg
)
214 struct genlmsghdr
*gnlh
= nlmsg_data(nlmsg_hdr(msg
));
215 static struct nlattr
*attr
[NL80211_ATTR_MAX
+ 1];
217 nla_parse(attr
, NL80211_ATTR_MAX
, genlmsg_attrdata(gnlh
, 0),
218 genlmsg_attrlen(gnlh
, 0), NULL
);
223 static int nl80211_freq2channel(int freq
)
229 return (freq
- 2407) / 5;
231 return (freq
/ 5) - 1000;
234 static char * nl80211_getval(const char *ifname
, const char *buf
, const char *key
)
237 char lkey
[64] = { 0 };
238 const char *ln
= buf
;
239 static char lval
[256] = { 0 };
241 int matched_if
= ifname
? 0 : 1;
244 for( i
= 0, len
= strlen(buf
); i
< len
; i
++ )
246 if (!lkey
[0] && (buf
[i
] == ' ' || buf
[i
] == '\t'))
250 else if (!lkey
[0] && (buf
[i
] == '='))
252 if ((&buf
[i
] - ln
) > 0)
253 memcpy(lkey
, ln
, min(sizeof(lkey
) - 1, &buf
[i
] - ln
));
255 else if (buf
[i
] == '\n')
259 memcpy(lval
, ln
+ strlen(lkey
) + 1,
260 min(sizeof(lval
) - 1, &buf
[i
] - ln
- strlen(lkey
) - 1));
262 if ((ifname
!= NULL
) &&
263 (!strcmp(lkey
, "interface") || !strcmp(lkey
, "bss")) )
265 matched_if
= !strcmp(lval
, ifname
);
267 else if (matched_if
&& !strcmp(lkey
, key
))
274 memset(lkey
, 0, sizeof(lkey
));
275 memset(lval
, 0, sizeof(lval
));
282 static int nl80211_ifname2phy_cb(struct nl_msg
*msg
, void *arg
)
285 struct nlattr
**attr
= nl80211_parse(msg
);
287 if (attr
[NL80211_ATTR_WIPHY_NAME
])
288 sprintf(buf
, "%s", nla_data(attr
[NL80211_ATTR_WIPHY_NAME
]));
295 static char * nl80211_ifname2phy(const char *ifname
)
297 static char phy
[32] = { 0 };
298 struct nl80211_msg_conveyor
*req
;
300 memset(phy
, 0, sizeof(phy
));
302 req
= nl80211_msg(ifname
, NL80211_CMD_GET_WIPHY
, 0);
305 nl80211_send(req
, nl80211_ifname2phy_cb
, phy
);
309 return phy
[0] ? phy
: NULL
;
312 static char * nl80211_hostapd_info(const char *ifname
)
315 char path
[32] = { 0 };
316 static char buf
[4096] = { 0 };
319 if ((phy
= nl80211_ifname2phy(ifname
)) != NULL
)
321 snprintf(path
, sizeof(path
), "/var/run/hostapd-%s.conf", phy
);
323 if ((conf
= fopen(path
, "r")) != NULL
)
325 fread(buf
, sizeof(buf
) - 1, 1, conf
);
335 static inline int nl80211_wpactl_recv(int sock
, char *buf
, int blen
)
338 struct timeval tv
= { 2, 0 };
343 memset(buf
, 0, blen
);
346 if (select(sock
+ 1, &rfds
, NULL
, NULL
, &tv
) < 0)
349 if (!FD_ISSET(sock
, &rfds
))
352 return recv(sock
, buf
, blen
, 0);
355 static char * nl80211_wpactl_info(const char *ifname
, const char *cmd
,
361 size_t remote_length
, local_length
;
362 static char buffer
[10240] = { 0 };
364 struct sockaddr_un local
= { 0 };
365 struct sockaddr_un remote
= { 0 };
368 sock
= socket(PF_UNIX
, SOCK_DGRAM
, 0);
372 remote
.sun_family
= AF_UNIX
;
373 remote_length
= sizeof(remote
.sun_family
) + sprintf(remote
.sun_path
,
374 "/var/run/wpa_supplicant-%s/%s", ifname
, ifname
);
376 if (fcntl(sock
, F_SETFD
, fcntl(sock
, F_GETFD
) | FD_CLOEXEC
) < 0)
379 if (connect(sock
, (struct sockaddr
*) &remote
, remote_length
))
382 local
.sun_family
= AF_UNIX
;
383 local_length
= sizeof(local
.sun_family
) + sprintf(local
.sun_path
,
384 "/var/run/iwinfo-%s-%d", ifname
, getpid());
386 if (bind(sock
, (struct sockaddr
*) &local
, local_length
))
392 send(sock
, "ATTACH", 6, 0);
394 if (nl80211_wpactl_recv(sock
, buffer
, sizeof(buffer
)) <= 0)
399 send(sock
, cmd
, strlen(cmd
), 0);
401 while( numtry
++ < 5 )
403 if (nl80211_wpactl_recv(sock
, buffer
, sizeof(buffer
)) <= 0)
411 if ((!event
&& buffer
[0] != '<') || (event
&& strstr(buffer
, event
)))
420 if (local
.sun_family
)
421 unlink(local
.sun_path
);
426 static inline int nl80211_readint(const char *path
)
432 if ((fd
= open(path
, O_RDONLY
)) > -1)
434 if (read(fd
, buffer
, sizeof(buffer
)) > 0)
443 static char * nl80211_phy2ifname(const char *ifname
)
445 int fd
, ifidx
= -1, cifidx
= -1, phyidx
= -1;
447 static char nif
[IFNAMSIZ
] = { 0 };
454 else if (!strncmp(ifname
, "phy", 3))
455 phyidx
= atoi(&ifname
[3]);
456 else if (!strncmp(ifname
, "radio", 5))
457 phyidx
= atoi(&ifname
[5]);
459 memset(nif
, 0, sizeof(nif
));
463 if ((d
= opendir("/sys/class/net")) != NULL
)
465 while( (e
= readdir(d
)) != NULL
)
467 snprintf(buffer
, sizeof(buffer
),
468 "/sys/class/net/%s/phy80211/index", e
->d_name
);
470 if (nl80211_readint(buffer
) == phyidx
)
472 snprintf(buffer
, sizeof(buffer
),
473 "/sys/class/net/%s/ifindex", e
->d_name
);
475 if( (cifidx
= nl80211_readint(buffer
)) >= 0 &&
476 ((ifidx
< 0) || (cifidx
< ifidx
)) )
479 strncpy(nif
, e
->d_name
, sizeof(nif
));
488 return nif
[0] ? nif
: NULL
;
491 static char * nl80211_ifadd(const char *ifname
)
495 static char nif
[IFNAMSIZ
] = { 0 };
496 struct nl80211_msg_conveyor
*req
, *res
;
498 req
= nl80211_msg(ifname
, NL80211_CMD_NEW_INTERFACE
, 0);
501 snprintf(nif
, sizeof(nif
), "tmp.%s", ifname
);
503 NLA_PUT_STRING(req
->msg
, NL80211_ATTR_IFNAME
, nif
);
504 NLA_PUT_U32(req
->msg
, NL80211_ATTR_IFTYPE
, NL80211_IFTYPE_STATION
);
506 nl80211_send(req
, NULL
, NULL
);
517 static void nl80211_ifdel(const char *ifname
)
519 struct nl80211_msg_conveyor
*req
;
521 req
= nl80211_msg(ifname
, NL80211_CMD_DEL_INTERFACE
, 0);
524 NLA_PUT_STRING(req
->msg
, NL80211_ATTR_IFNAME
, ifname
);
526 nl80211_send(req
, NULL
, NULL
);
533 static void nl80211_hostapd_hup(const char *ifname
)
537 char *phy
= nl80211_ifname2phy(ifname
);
541 snprintf(buf
, sizeof(buf
), "/var/run/wifi-%s.pid", phy
);
542 if ((fd
= open(buf
, O_RDONLY
)) > 0)
544 if (read(fd
, buf
, sizeof(buf
)) > 0)
556 int nl80211_probe(const char *ifname
)
558 return !!nl80211_ifname2phy(ifname
);
561 void nl80211_close(void)
566 genl_family_put(nls
->nl80211
);
569 nl_socket_free(nls
->nl_sock
);
572 nl_cache_free(nls
->nl_cache
);
579 int nl80211_get_mode(const char *ifname
, char *buf
)
581 return wext_get_mode(ifname
, buf
);
584 int nl80211_get_ssid(const char *ifname
, char *buf
)
588 if (!wext_get_ssid(ifname
, buf
))
592 else if( (ssid
= nl80211_hostapd_info(ifname
)) &&
593 (ssid
= nl80211_getval(ifname
, ssid
, "ssid")) )
595 memcpy(buf
, ssid
, strlen(ssid
));
602 int nl80211_get_bssid(const char *ifname
, char *buf
)
605 unsigned char mac
[6];
607 if (!wext_get_bssid(ifname
, buf
))
611 else if((bssid
= nl80211_hostapd_info(ifname
)) &&
612 (bssid
= nl80211_getval(ifname
, bssid
, "bssid")))
614 mac
[0] = strtol(&bssid
[0], NULL
, 16);
615 mac
[1] = strtol(&bssid
[3], NULL
, 16);
616 mac
[2] = strtol(&bssid
[6], NULL
, 16);
617 mac
[3] = strtol(&bssid
[9], NULL
, 16);
618 mac
[4] = strtol(&bssid
[12], NULL
, 16);
619 mac
[5] = strtol(&bssid
[15], NULL
, 16);
621 sprintf(buf
, "%02X:%02X:%02X:%02X:%02X:%02X",
622 mac
[0], mac
[1], mac
[2], mac
[3], mac
[4], mac
[5]);
630 int nl80211_get_channel(const char *ifname
, int *buf
)
634 if (!wext_get_channel(ifname
, buf
))
637 else if ((first
= nl80211_phy2ifname(nl80211_ifname2phy(ifname
))) != NULL
)
638 return wext_get_channel(first
, buf
);
643 int nl80211_get_frequency(const char *ifname
, int *buf
)
647 if (!wext_get_frequency(ifname
, buf
))
650 else if ((first
= nl80211_phy2ifname(nl80211_ifname2phy(ifname
))) != NULL
)
651 return wext_get_frequency(first
, buf
);
656 int nl80211_get_txpower(const char *ifname
, int *buf
)
658 return wext_get_txpower(ifname
, buf
);
662 static int nl80211_fill_signal_cb(struct nl_msg
*msg
, void *arg
)
666 struct nl80211_rssi_rate
*rr
= arg
;
667 struct nlattr
**attr
= nl80211_parse(msg
);
668 struct nlattr
*sinfo
[NL80211_STA_INFO_MAX
+ 1];
669 struct nlattr
*rinfo
[NL80211_RATE_INFO_MAX
+ 1];
671 static struct nla_policy stats_policy
[NL80211_STA_INFO_MAX
+ 1] = {
672 [NL80211_STA_INFO_INACTIVE_TIME
] = { .type
= NLA_U32
},
673 [NL80211_STA_INFO_RX_BYTES
] = { .type
= NLA_U32
},
674 [NL80211_STA_INFO_TX_BYTES
] = { .type
= NLA_U32
},
675 [NL80211_STA_INFO_RX_PACKETS
] = { .type
= NLA_U32
},
676 [NL80211_STA_INFO_TX_PACKETS
] = { .type
= NLA_U32
},
677 [NL80211_STA_INFO_SIGNAL
] = { .type
= NLA_U8
},
678 [NL80211_STA_INFO_TX_BITRATE
] = { .type
= NLA_NESTED
},
679 [NL80211_STA_INFO_LLID
] = { .type
= NLA_U16
},
680 [NL80211_STA_INFO_PLID
] = { .type
= NLA_U16
},
681 [NL80211_STA_INFO_PLINK_STATE
] = { .type
= NLA_U8
},
684 static struct nla_policy rate_policy
[NL80211_RATE_INFO_MAX
+ 1] = {
685 [NL80211_RATE_INFO_BITRATE
] = { .type
= NLA_U16
},
686 [NL80211_RATE_INFO_MCS
] = { .type
= NLA_U8
},
687 [NL80211_RATE_INFO_40_MHZ_WIDTH
] = { .type
= NLA_FLAG
},
688 [NL80211_RATE_INFO_SHORT_GI
] = { .type
= NLA_FLAG
},
691 if (attr
[NL80211_ATTR_STA_INFO
])
693 if( !nla_parse_nested(sinfo
, NL80211_STA_INFO_MAX
,
694 attr
[NL80211_ATTR_STA_INFO
], stats_policy
) )
696 if (sinfo
[NL80211_STA_INFO_SIGNAL
])
698 dbm
= nla_get_u8(sinfo
[NL80211_STA_INFO_SIGNAL
]);
699 rr
->rssi
= rr
->rssi
? (int8_t)((rr
->rssi
+ dbm
) / 2) : dbm
;
702 if (sinfo
[NL80211_STA_INFO_TX_BITRATE
])
704 if( !nla_parse_nested(rinfo
, NL80211_RATE_INFO_MAX
,
705 sinfo
[NL80211_STA_INFO_TX_BITRATE
], rate_policy
) )
707 if (rinfo
[NL80211_RATE_INFO_BITRATE
])
709 mbit
= nla_get_u16(rinfo
[NL80211_RATE_INFO_BITRATE
]);
711 ? (int16_t)((rr
->rate
+ mbit
) / 2) : mbit
;
721 static void nl80211_fill_signal(const char *ifname
, struct nl80211_rssi_rate
*r
)
725 struct nl80211_msg_conveyor
*req
;
730 if ((d
= opendir("/sys/class/net")) != NULL
)
732 while ((de
= readdir(d
)) != NULL
)
734 if (!strncmp(de
->d_name
, ifname
, strlen(ifname
)) &&
735 (!de
->d_name
[strlen(ifname
)] ||
736 !strncmp(&de
->d_name
[strlen(ifname
)], ".sta", 4)))
738 req
= nl80211_msg(de
->d_name
, NL80211_CMD_GET_STATION
,
743 nl80211_send(req
, nl80211_fill_signal_cb
, r
);
753 int nl80211_get_bitrate(const char *ifname
, int *buf
)
755 struct nl80211_rssi_rate rr
;
757 if (!wext_get_bitrate(ifname
, buf
))
760 nl80211_fill_signal(ifname
, &rr
);
764 *buf
= (rr
.rate
* 100);
771 int nl80211_get_signal(const char *ifname
, int *buf
)
773 struct nl80211_rssi_rate rr
;
775 if (!wext_get_signal(ifname
, buf
))
778 nl80211_fill_signal(ifname
, &rr
);
789 static int nl80211_get_noise_cb(struct nl_msg
*msg
, void *arg
)
792 struct nlattr
**tb
= nl80211_parse(msg
);
793 struct nlattr
*si
[NL80211_SURVEY_INFO_MAX
+ 1];
795 static struct nla_policy sp
[NL80211_SURVEY_INFO_MAX
+ 1] = {
796 [NL80211_SURVEY_INFO_FREQUENCY
] = { .type
= NLA_U32
},
797 [NL80211_SURVEY_INFO_NOISE
] = { .type
= NLA_U8
},
800 if (!tb
[NL80211_ATTR_SURVEY_INFO
])
803 if (nla_parse_nested(si
, NL80211_SURVEY_INFO_MAX
,
804 tb
[NL80211_ATTR_SURVEY_INFO
], sp
))
807 if (!si
[NL80211_SURVEY_INFO_NOISE
])
810 if (!*noise
|| si
[NL80211_SURVEY_INFO_IN_USE
])
811 *noise
= (int8_t)nla_get_u8(si
[NL80211_SURVEY_INFO_NOISE
]);
817 int nl80211_get_noise(const char *ifname
, int *buf
)
820 struct nl80211_msg_conveyor
*req
;
822 req
= nl80211_msg(ifname
, NL80211_CMD_GET_SURVEY
, NLM_F_DUMP
);
827 nl80211_send(req
, nl80211_get_noise_cb
, &noise
);
840 int nl80211_get_quality(const char *ifname
, int *buf
)
844 if (wext_get_quality(ifname
, buf
))
848 if (!nl80211_get_signal(ifname
, &signal
))
850 /* A positive signal level is usually just a quality
851 * value, pass through as-is */
857 /* The cfg80211 wext compat layer assumes a signal range
858 * of -110 dBm to -40 dBm, the quality value is derived
859 * by adding 110 to the signal level */
864 else if (signal
> -40)
867 *buf
= (signal
+ 110);
875 int nl80211_get_quality_max(const char *ifname
, int *buf
)
877 if (wext_get_quality_max(ifname
, buf
))
878 /* The cfg80211 wext compat layer assumes a maximum
885 int nl80211_get_encryption(const char *ifname
, char *buf
)
890 struct iwinfo_crypto_entry
*c
= (struct iwinfo_crypto_entry
*)buf
;
893 if( (res
= nl80211_wpactl_info(ifname
, "STATUS", NULL
)) &&
894 (val
= nl80211_getval(NULL
, res
, "pairwise_cipher")) )
897 if (strstr(val
, "WEP"))
899 if (strstr(val
, "WEP-40"))
900 c
->pair_ciphers
|= IWINFO_CIPHER_WEP40
;
902 else if (strstr(val
, "WEP-104"))
903 c
->pair_ciphers
|= IWINFO_CIPHER_WEP104
;
906 c
->group_ciphers
= c
->pair_ciphers
;
908 c
->auth_suites
|= IWINFO_KMGMT_NONE
;
909 c
->auth_algs
|= IWINFO_AUTH_OPEN
; /* XXX: assumption */
915 if (strstr(val
, "TKIP"))
916 c
->pair_ciphers
|= IWINFO_CIPHER_TKIP
;
918 else if (strstr(val
, "CCMP"))
919 c
->pair_ciphers
|= IWINFO_CIPHER_CCMP
;
921 else if (strstr(val
, "NONE"))
922 c
->pair_ciphers
|= IWINFO_CIPHER_NONE
;
924 else if (strstr(val
, "WEP-40"))
925 c
->pair_ciphers
|= IWINFO_CIPHER_WEP40
;
927 else if (strstr(val
, "WEP-104"))
928 c
->pair_ciphers
|= IWINFO_CIPHER_WEP104
;
931 if ((val
= nl80211_getval(NULL
, res
, "group_cipher")))
933 if (strstr(val
, "TKIP"))
934 c
->group_ciphers
|= IWINFO_CIPHER_TKIP
;
936 else if (strstr(val
, "CCMP"))
937 c
->group_ciphers
|= IWINFO_CIPHER_CCMP
;
939 else if (strstr(val
, "NONE"))
940 c
->group_ciphers
|= IWINFO_CIPHER_NONE
;
942 else if (strstr(val
, "WEP-40"))
943 c
->group_ciphers
|= IWINFO_CIPHER_WEP40
;
945 else if (strstr(val
, "WEP-104"))
946 c
->group_ciphers
|= IWINFO_CIPHER_WEP104
;
950 if ((val
= nl80211_getval(NULL
, res
, "key_mgmt")))
952 if (strstr(val
, "WPA2"))
955 else if (strstr(val
, "WPA"))
959 if (strstr(val
, "PSK"))
960 c
->auth_suites
|= IWINFO_KMGMT_PSK
;
962 else if (strstr(val
, "EAP") || strstr(val
, "802.1X"))
963 c
->auth_suites
|= IWINFO_KMGMT_8021x
;
965 else if (strstr(val
, "NONE"))
966 c
->auth_suites
|= IWINFO_KMGMT_NONE
;
969 c
->enabled
= (c
->wpa_version
&& c
->auth_suites
) ? 1 : 0;
976 else if ((res
= nl80211_hostapd_info(ifname
)))
978 if ((val
= nl80211_getval(ifname
, res
, "wpa")) != NULL
)
979 c
->wpa_version
= atoi(val
);
981 val
= nl80211_getval(ifname
, res
, "wpa_key_mgmt");
983 if (!val
|| strstr(val
, "PSK"))
984 c
->auth_suites
|= IWINFO_KMGMT_PSK
;
986 if (val
&& strstr(val
, "EAP"))
987 c
->auth_suites
|= IWINFO_KMGMT_8021x
;
989 if (val
&& strstr(val
, "NONE"))
990 c
->auth_suites
|= IWINFO_KMGMT_NONE
;
992 if ((val
= nl80211_getval(ifname
, res
, "wpa_pairwise")) != NULL
)
994 if (strstr(val
, "TKIP"))
995 c
->pair_ciphers
|= IWINFO_CIPHER_TKIP
;
997 if (strstr(val
, "CCMP"))
998 c
->pair_ciphers
|= IWINFO_CIPHER_CCMP
;
1000 if (strstr(val
, "NONE"))
1001 c
->pair_ciphers
|= IWINFO_CIPHER_NONE
;
1004 if ((val
= nl80211_getval(ifname
, res
, "auth_algs")) != NULL
)
1008 c
->auth_algs
|= IWINFO_AUTH_OPEN
;
1012 c
->auth_algs
|= IWINFO_AUTH_SHARED
;
1016 c
->auth_algs
|= IWINFO_AUTH_OPEN
;
1017 c
->auth_algs
|= IWINFO_AUTH_SHARED
;
1024 for( i
= 0; i
< 4; i
++ )
1026 snprintf(k
, sizeof(k
), "wep_key%d", i
);
1028 if ((val
= nl80211_getval(ifname
, res
, k
)))
1030 if ((strlen(val
) == 5) || (strlen(val
) == 10))
1031 c
->pair_ciphers
|= IWINFO_CIPHER_WEP40
;
1033 else if ((strlen(val
) == 13) || (strlen(val
) == 26))
1034 c
->pair_ciphers
|= IWINFO_CIPHER_WEP104
;
1039 c
->group_ciphers
= c
->pair_ciphers
;
1040 c
->enabled
= (c
->wpa_version
|| c
->pair_ciphers
) ? 1 : 0;
1049 static int nl80211_get_assoclist_cb(struct nl_msg
*msg
, void *arg
)
1051 struct nl80211_array_buf
*arr
= arg
;
1052 struct iwinfo_assoclist_entry
*e
= arr
->buf
;
1053 struct nlattr
**attr
= nl80211_parse(msg
);
1054 struct nlattr
*sinfo
[NL80211_STA_INFO_MAX
+ 1];
1056 static struct nla_policy stats_policy
[NL80211_STA_INFO_MAX
+ 1] = {
1057 [NL80211_STA_INFO_INACTIVE_TIME
] = { .type
= NLA_U32
},
1058 [NL80211_STA_INFO_RX_BYTES
] = { .type
= NLA_U32
},
1059 [NL80211_STA_INFO_TX_BYTES
] = { .type
= NLA_U32
},
1060 [NL80211_STA_INFO_RX_PACKETS
] = { .type
= NLA_U32
},
1061 [NL80211_STA_INFO_TX_PACKETS
] = { .type
= NLA_U32
},
1062 [NL80211_STA_INFO_SIGNAL
] = { .type
= NLA_U8
},
1063 [NL80211_STA_INFO_TX_BITRATE
] = { .type
= NLA_NESTED
},
1064 [NL80211_STA_INFO_LLID
] = { .type
= NLA_U16
},
1065 [NL80211_STA_INFO_PLID
] = { .type
= NLA_U16
},
1066 [NL80211_STA_INFO_PLINK_STATE
] = { .type
= NLA_U8
},
1069 /* advance to end of array */
1072 if (attr
[NL80211_ATTR_MAC
])
1073 memcpy(e
->mac
, nla_data(attr
[NL80211_ATTR_MAC
]), 6);
1075 if (attr
[NL80211_ATTR_STA_INFO
])
1077 if (!nla_parse_nested(sinfo
, NL80211_STA_INFO_MAX
,
1078 attr
[NL80211_ATTR_STA_INFO
], stats_policy
))
1080 if (sinfo
[NL80211_STA_INFO_SIGNAL
])
1081 e
->signal
= nla_get_u8(sinfo
[NL80211_STA_INFO_SIGNAL
]);
1085 e
->noise
= 0; /* filled in by caller */
1091 int nl80211_get_assoclist(const char *ifname
, char *buf
, int *len
)
1096 struct nl80211_msg_conveyor
*req
;
1097 struct nl80211_array_buf arr
= { .buf
= buf
, .count
= 0 };
1098 struct iwinfo_assoclist_entry
*e
;
1100 if ((d
= opendir("/sys/class/net")) != NULL
)
1102 while ((de
= readdir(d
)) != NULL
)
1104 if (!strncmp(de
->d_name
, ifname
, strlen(ifname
)) &&
1105 (!de
->d_name
[strlen(ifname
)] ||
1106 !strncmp(&de
->d_name
[strlen(ifname
)], ".sta", 4)))
1108 req
= nl80211_msg(de
->d_name
, NL80211_CMD_GET_STATION
,
1113 nl80211_send(req
, nl80211_get_assoclist_cb
, &arr
);
1123 if (!nl80211_get_noise(ifname
, &noise
))
1124 for (i
= 0, e
= arr
.buf
; i
< arr
.count
; i
++, e
++)
1127 *len
= (arr
.count
* sizeof(struct iwinfo_assoclist_entry
));
1134 static int nl80211_get_txpwrlist_cb(struct nl_msg
*msg
, void *arg
)
1137 int ch_cur
, ch_cmp
, bands_remain
, freqs_remain
;
1139 struct nlattr
**attr
= nl80211_parse(msg
);
1140 struct nlattr
*bands
[NL80211_BAND_ATTR_MAX
+ 1];
1141 struct nlattr
*freqs
[NL80211_FREQUENCY_ATTR_MAX
+ 1];
1142 struct nlattr
*band
, *freq
;
1144 static struct nla_policy freq_policy
[NL80211_FREQUENCY_ATTR_MAX
+ 1] = {
1145 [NL80211_FREQUENCY_ATTR_FREQ
] = { .type
= NLA_U32
},
1146 [NL80211_FREQUENCY_ATTR_DISABLED
] = { .type
= NLA_FLAG
},
1147 [NL80211_FREQUENCY_ATTR_PASSIVE_SCAN
] = { .type
= NLA_FLAG
},
1148 [NL80211_FREQUENCY_ATTR_NO_IBSS
] = { .type
= NLA_FLAG
},
1149 [NL80211_FREQUENCY_ATTR_RADAR
] = { .type
= NLA_FLAG
},
1150 [NL80211_FREQUENCY_ATTR_MAX_TX_POWER
] = { .type
= NLA_U32
},
1153 ch_cur
= *dbm_max
; /* value int* is initialized with channel by caller */
1156 nla_for_each_nested(band
, attr
[NL80211_ATTR_WIPHY_BANDS
], bands_remain
)
1158 nla_parse(bands
, NL80211_BAND_ATTR_MAX
, nla_data(band
),
1159 nla_len(band
), NULL
);
1161 nla_for_each_nested(freq
,
1162 bands
[NL80211_BAND_ATTR_FREQS
], freqs_remain
)
1164 nla_parse(freqs
, NL80211_FREQUENCY_ATTR_MAX
,
1165 nla_data(freq
), nla_len(freq
), freq_policy
);
1167 ch_cmp
= nl80211_freq2channel(
1168 nla_get_u32(freqs
[NL80211_FREQUENCY_ATTR_FREQ
]));
1170 if( (!ch_cur
|| (ch_cmp
== ch_cur
)) &&
1171 freqs
[NL80211_FREQUENCY_ATTR_MAX_TX_POWER
] )
1173 *dbm_max
= (int)(0.01 * nla_get_u32(
1174 freqs
[NL80211_FREQUENCY_ATTR_MAX_TX_POWER
]));
1184 int nl80211_get_txpwrlist(const char *ifname
, char *buf
, int *len
)
1187 int dbm_max
= -1, dbm_cur
, dbm_cnt
;
1188 struct nl80211_msg_conveyor
*req
;
1189 struct iwinfo_txpwrlist_entry entry
;
1191 if (nl80211_get_channel(ifname
, &ch_cur
))
1194 req
= nl80211_msg(ifname
, NL80211_CMD_GET_WIPHY
, 0);
1197 /* initialize the value pointer with channel for callback */
1200 nl80211_send(req
, nl80211_get_txpwrlist_cb
, &dbm_max
);
1206 for (dbm_cur
= 0, dbm_cnt
= 0;
1208 dbm_cur
++, dbm_cnt
++)
1210 entry
.dbm
= dbm_cur
;
1211 entry
.mw
= iwinfo_dbm2mw(dbm_cur
);
1213 memcpy(&buf
[dbm_cnt
* sizeof(entry
)], &entry
, sizeof(entry
));
1216 entry
.dbm
= dbm_max
;
1217 entry
.mw
= iwinfo_dbm2mw(dbm_max
);
1219 memcpy(&buf
[dbm_cnt
* sizeof(entry
)], &entry
, sizeof(entry
));
1222 *len
= dbm_cnt
* sizeof(entry
);
1229 static void nl80211_get_scancrypto(const char *spec
,
1230 struct iwinfo_crypto_entry
*c
)
1232 if (strstr(spec
, "WPA") || strstr(spec
, "WEP"))
1236 if (strstr(spec
, "WPA2-") && strstr(spec
, "WPA-"))
1239 else if (strstr(spec
, "WPA2"))
1242 else if (strstr(spec
, "WPA"))
1245 else if (strstr(spec
, "WEP"))
1246 c
->auth_algs
= IWINFO_AUTH_OPEN
| IWINFO_AUTH_SHARED
;
1249 if (strstr(spec
, "PSK"))
1250 c
->auth_suites
|= IWINFO_KMGMT_PSK
;
1252 if (strstr(spec
, "802.1X") || strstr(spec
, "EAP"))
1253 c
->auth_suites
|= IWINFO_KMGMT_8021x
;
1255 if (strstr(spec
, "WPA-NONE"))
1256 c
->auth_suites
|= IWINFO_KMGMT_NONE
;
1259 if (strstr(spec
, "TKIP"))
1260 c
->pair_ciphers
|= IWINFO_CIPHER_TKIP
;
1262 if (strstr(spec
, "CCMP"))
1263 c
->pair_ciphers
|= IWINFO_CIPHER_CCMP
;
1265 if (strstr(spec
, "WEP-40"))
1266 c
->pair_ciphers
|= IWINFO_CIPHER_WEP40
;
1268 if (strstr(spec
, "WEP-104"))
1269 c
->pair_ciphers
|= IWINFO_CIPHER_WEP104
;
1271 c
->group_ciphers
= c
->pair_ciphers
;
1279 int nl80211_get_scanlist(const char *ifname
, char *buf
, int *len
)
1281 int freq
, rssi
, qmax
, count
;
1283 char ssid
[128] = { 0 };
1284 char bssid
[18] = { 0 };
1285 char cipher
[256] = { 0 };
1287 /* Got a radioX pseudo interface, find some interface on it or create one */
1288 if (!strncmp(ifname
, "radio", 5))
1290 /* Reuse existing interface */
1291 if ((res
= nl80211_phy2ifname(ifname
)) != NULL
)
1293 return nl80211_get_scanlist(res
, buf
, len
);
1296 /* Need to spawn a temporary iface for scanning */
1297 else if ((res
= nl80211_ifadd(ifname
)) != NULL
)
1299 count
= nl80211_get_scanlist(res
, buf
, len
);
1305 struct iwinfo_scanlist_entry
*e
= (struct iwinfo_scanlist_entry
*)buf
;
1307 /* WPA supplicant */
1308 if ((res
= nl80211_wpactl_info(ifname
, "SCAN", "CTRL-EVENT-SCAN-RESULTS")))
1310 if ((res
= nl80211_wpactl_info(ifname
, "SCAN_RESULTS", NULL
)))
1312 nl80211_get_quality_max(ifname
, &qmax
);
1314 /* skip header line */
1315 while( *res
++ != '\n' );
1319 while( sscanf(res
, "%17s %d %d %255s%*[ \t]%127[^\n]\n",
1320 bssid
, &freq
, &rssi
, cipher
, ssid
) > 0 )
1323 e
->mac
[0] = strtol(&bssid
[0], NULL
, 16);
1324 e
->mac
[1] = strtol(&bssid
[3], NULL
, 16);
1325 e
->mac
[2] = strtol(&bssid
[6], NULL
, 16);
1326 e
->mac
[3] = strtol(&bssid
[9], NULL
, 16);
1327 e
->mac
[4] = strtol(&bssid
[12], NULL
, 16);
1328 e
->mac
[5] = strtol(&bssid
[15], NULL
, 16);
1331 memcpy(e
->ssid
, ssid
,
1332 min(strlen(ssid
), sizeof(e
->ssid
) - 1));
1334 /* Mode (assume master) */
1335 sprintf((char *)e
->mode
, "Master");
1338 e
->channel
= nl80211_freq2channel(freq
);
1346 /* The cfg80211 wext compat layer assumes a signal range
1347 * of -110 dBm to -40 dBm, the quality value is derived
1348 * by adding 110 to the signal level */
1351 else if (rssi
> -40)
1354 e
->quality
= (rssi
+ 110);
1362 e
->quality_max
= qmax
;
1365 nl80211_get_scancrypto(cipher
, &e
->crypto
);
1367 /* advance to next line */
1368 while( *res
&& *res
++ != '\n' );
1373 memset(ssid
, 0, sizeof(ssid
));
1374 memset(bssid
, 0, sizeof(bssid
));
1375 memset(cipher
, 0, sizeof(cipher
));
1378 *len
= count
* sizeof(struct iwinfo_scanlist_entry
);
1386 /* Got a temp interface, don't create yet another one */
1387 if (!strncmp(ifname
, "tmp.", 4))
1389 if (!iwinfo_ifup(ifname
))
1392 wext_get_scanlist(ifname
, buf
, len
);
1393 iwinfo_ifdown(ifname
);
1397 /* Spawn a new scan interface */
1400 if (!(res
= nl80211_ifadd(ifname
)))
1403 if (!iwinfo_ifmac(res
))
1406 /* if we can take the new interface up, the driver supports an
1407 * additional interface and there's no need to tear down the ap */
1408 if (iwinfo_ifup(res
))
1410 wext_get_scanlist(res
, buf
, len
);
1414 /* driver cannot create secondary interface, take down ap
1416 else if (iwinfo_ifdown(ifname
) && iwinfo_ifup(res
))
1418 wext_get_scanlist(res
, buf
, len
);
1420 iwinfo_ifup(ifname
);
1421 nl80211_hostapd_hup(ifname
);
1433 static int nl80211_get_freqlist_cb(struct nl_msg
*msg
, void *arg
)
1435 int bands_remain
, freqs_remain
;
1437 struct nl80211_array_buf
*arr
= arg
;
1438 struct iwinfo_freqlist_entry
*e
= arr
->buf
;
1440 struct nlattr
**attr
= nl80211_parse(msg
);
1441 struct nlattr
*bands
[NL80211_BAND_ATTR_MAX
+ 1];
1442 struct nlattr
*freqs
[NL80211_FREQUENCY_ATTR_MAX
+ 1];
1443 struct nlattr
*band
, *freq
;
1445 static struct nla_policy freq_policy
[NL80211_FREQUENCY_ATTR_MAX
+ 1] = {
1446 [NL80211_FREQUENCY_ATTR_FREQ
] = { .type
= NLA_U32
},
1447 [NL80211_FREQUENCY_ATTR_DISABLED
] = { .type
= NLA_FLAG
},
1448 [NL80211_FREQUENCY_ATTR_PASSIVE_SCAN
] = { .type
= NLA_FLAG
},
1449 [NL80211_FREQUENCY_ATTR_NO_IBSS
] = { .type
= NLA_FLAG
},
1450 [NL80211_FREQUENCY_ATTR_RADAR
] = { .type
= NLA_FLAG
},
1451 [NL80211_FREQUENCY_ATTR_MAX_TX_POWER
] = { .type
= NLA_U32
},
1454 nla_for_each_nested(band
, attr
[NL80211_ATTR_WIPHY_BANDS
], bands_remain
)
1456 nla_parse(bands
, NL80211_BAND_ATTR_MAX
, nla_data(band
),
1457 nla_len(band
), NULL
);
1459 nla_for_each_nested(freq
,
1460 bands
[NL80211_BAND_ATTR_FREQS
], freqs_remain
)
1462 nla_parse(freqs
, NL80211_FREQUENCY_ATTR_MAX
,
1463 nla_data(freq
), nla_len(freq
), NULL
);
1465 if( !freqs
[NL80211_FREQUENCY_ATTR_FREQ
] ||
1466 freqs
[NL80211_FREQUENCY_ATTR_DISABLED
] )
1469 e
->mhz
= nla_get_u32(freqs
[NL80211_FREQUENCY_ATTR_FREQ
]);
1470 e
->channel
= nl80211_freq2channel(e
->mhz
);
1473 freqs
[NL80211_FREQUENCY_ATTR_PASSIVE_SCAN
] ||
1474 freqs
[NL80211_FREQUENCY_ATTR_NO_IBSS
] ||
1475 freqs
[NL80211_FREQUENCY_ATTR_RADAR
]
1486 int nl80211_get_freqlist(const char *ifname
, char *buf
, int *len
)
1488 struct nl80211_msg_conveyor
*req
;
1489 struct nl80211_array_buf arr
= { .buf
= buf
, .count
= 0 };
1491 req
= nl80211_msg(ifname
, NL80211_CMD_GET_WIPHY
, 0);
1494 nl80211_send(req
, nl80211_get_freqlist_cb
, &arr
);
1500 *len
= arr
.count
* sizeof(struct iwinfo_freqlist_entry
);
1507 static int nl80211_get_country_cb(struct nl_msg
*msg
, void *arg
)
1510 struct nlattr
**attr
= nl80211_parse(msg
);
1512 if (attr
[NL80211_ATTR_REG_ALPHA2
])
1513 memcpy(buf
, nla_data(attr
[NL80211_ATTR_REG_ALPHA2
]), 2);
1520 int nl80211_get_country(const char *ifname
, char *buf
)
1523 struct nl80211_msg_conveyor
*req
;
1525 req
= nl80211_msg(ifname
, NL80211_CMD_GET_REG
, 0);
1528 nl80211_send(req
, nl80211_get_country_cb
, buf
);
1538 int nl80211_get_countrylist(const char *ifname
, char *buf
, int *len
)
1541 struct iwinfo_country_entry
*e
= (struct iwinfo_country_entry
*)buf
;
1542 const struct iwinfo_iso3166_label
*l
;
1544 for( l
= IWINFO_ISO3166_NAMES
, count
= 0; l
->iso3166
; l
++, e
++, count
++ )
1546 e
->iso3166
= l
->iso3166
;
1547 e
->ccode
[0] = (l
->iso3166
/ 256);
1548 e
->ccode
[1] = (l
->iso3166
% 256);
1551 *len
= (count
* sizeof(struct iwinfo_country_entry
));
1555 static int nl80211_get_hwmodelist_cb(struct nl_msg
*msg
, void *arg
)
1558 int bands_remain
, freqs_remain
;
1560 struct nlattr
**attr
= nl80211_parse(msg
);
1561 struct nlattr
*bands
[NL80211_BAND_ATTR_MAX
+ 1];
1562 struct nlattr
*freqs
[NL80211_FREQUENCY_ATTR_MAX
+ 1];
1563 struct nlattr
*band
, *freq
;
1567 if (attr
[NL80211_ATTR_WIPHY_BANDS
])
1569 nla_for_each_nested(band
, attr
[NL80211_ATTR_WIPHY_BANDS
], bands_remain
)
1571 nla_parse(bands
, NL80211_BAND_ATTR_MAX
, nla_data(band
),
1572 nla_len(band
), NULL
);
1574 if (bands
[NL80211_BAND_ATTR_HT_CAPA
])
1575 caps
= nla_get_u16(bands
[NL80211_BAND_ATTR_HT_CAPA
]);
1577 /* Treat any nonzero capability as 11n */
1579 *modes
|= IWINFO_80211_N
;
1581 nla_for_each_nested(freq
,
1582 bands
[NL80211_BAND_ATTR_FREQS
], freqs_remain
)
1584 nla_parse(freqs
, NL80211_FREQUENCY_ATTR_MAX
,
1585 nla_data(freq
), nla_len(freq
), NULL
);
1587 if (!freqs
[NL80211_FREQUENCY_ATTR_FREQ
])
1590 if (nla_get_u32(freqs
[NL80211_FREQUENCY_ATTR_FREQ
]) < 2485)
1592 *modes
|= IWINFO_80211_B
;
1593 *modes
|= IWINFO_80211_G
;
1597 *modes
|= IWINFO_80211_A
;
1606 int nl80211_get_hwmodelist(const char *ifname
, int *buf
)
1608 struct nl80211_msg_conveyor
*req
;
1610 req
= nl80211_msg(ifname
, NL80211_CMD_GET_WIPHY
, 0);
1613 nl80211_send(req
, nl80211_get_hwmodelist_cb
, buf
);
1617 return *buf
? 0 : -1;
1620 int nl80211_get_mbssid_support(const char *ifname
, int *buf
)
1622 /* Test whether we can create another interface */
1623 char *nif
= nl80211_ifadd(ifname
);
1627 *buf
= (iwinfo_ifmac(nif
) && iwinfo_ifup(nif
));
1638 int nl80211_get_hardware_id(const char *ifname
, char *buf
)
1643 /* Got a radioX pseudo interface, find some interface on it or create one */
1644 if (!strncmp(ifname
, "radio", 5))
1646 /* Reuse existing interface */
1647 if ((res
= nl80211_phy2ifname(ifname
)) != NULL
)
1649 rv
= wext_get_hardware_id(res
, buf
);
1652 /* Need to spawn a temporary iface for finding IDs */
1653 else if ((res
= nl80211_ifadd(ifname
)) != NULL
)
1655 rv
= wext_get_hardware_id(res
, buf
);
1661 rv
= wext_get_hardware_id(ifname
, buf
);
1664 /* Failed to obtain hardware IDs, search board config */
1667 rv
= iwinfo_hardware_id_from_mtd(buf
);
1673 static const struct iwinfo_hardware_entry
*
1674 nl80211_get_hardware_entry(const char *ifname
)
1676 struct iwinfo_hardware_id id
;
1678 if (nl80211_get_hardware_id(ifname
, (char *)&id
))
1681 return iwinfo_hardware(&id
);
1684 int nl80211_get_hardware_name(const char *ifname
, char *buf
)
1686 const struct iwinfo_hardware_entry
*hw
;
1688 if (!(hw
= nl80211_get_hardware_entry(ifname
)))
1689 sprintf(buf
, "Generic MAC80211");
1691 sprintf(buf
, "%s %s", hw
->vendor_name
, hw
->device_name
);
1696 int nl80211_get_txpower_offset(const char *ifname
, int *buf
)
1698 const struct iwinfo_hardware_entry
*hw
;
1700 if (!(hw
= nl80211_get_hardware_entry(ifname
)))
1703 *buf
= hw
->txpower_offset
;
1707 int nl80211_get_frequency_offset(const char *ifname
, int *buf
)
1709 const struct iwinfo_hardware_entry
*hw
;
1711 if (!(hw
= nl80211_get_hardware_entry(ifname
)))
1714 *buf
= hw
->frequency_offset
;