3 #include <netlink/genl/genl.h>
4 #include <netlink/genl/family.h>
5 #include <netlink/genl/ctrl.h>
6 #include <netlink/msg.h>
7 #include <netlink/attr.h>
12 static int iw_conn(struct nl80211_state
*state
,
13 struct nl_msg
*msg
, int argc
, char **argv
,
17 unsigned char bssid
[6];
24 NLA_PUT(msg
, NL80211_ATTR_SSID
, strlen(argv
[0]), argv
[0]);
30 freq
= strtoul(argv
[0], &end
, 10);
32 NLA_PUT_U32(msg
, NL80211_ATTR_WIPHY_FREQ
, freq
);
40 if (mac_addr_a2n(bssid
, argv
[0]) == 0) {
41 NLA_PUT(msg
, NL80211_ATTR_MAC
, 6, bssid
);
50 if (strcmp(*argv
, "key") != 0 && strcmp(*argv
, "keys") != 0)
56 return parse_keys(msg
, argv
, argc
);
61 static int disconnect(struct nl80211_state
*state
,
63 int argc
, char **argv
,
68 TOPLEVEL(disconnect
, NULL
,
69 NL80211_CMD_DISCONNECT
, 0, CIB_NETDEV
, disconnect
,
70 "Disconnect from the current network.");
72 static int iw_connect(struct nl80211_state
*state
,
73 struct nl_msg
*msg
, int argc
, char **argv
,
76 char **conn_argv
, *dev
= argv
[0];
77 static const __u32 cmds
[] = {
80 struct print_event_args printargs
= { };
85 /* strip "wlan0 connect" */
90 if (argc
&& strcmp(argv
[0], "-w") == 0) {
96 err
= __prepare_listen_events(state
);
100 conn_argc
= 3 + argc
;
101 conn_argv
= calloc(conn_argc
, sizeof(*conn_argv
));
106 conn_argv
[1] = "connect";
107 conn_argv
[2] = "establish";
108 for (i
= 0; i
< argc
; i
++)
109 conn_argv
[i
+ 3] = argv
[i
];
110 err
= handle_cmd(state
, id
, conn_argc
, conn_argv
);
119 * WARNING: DO NOT COPY THIS CODE INTO YOUR APPLICATION
121 * This code has a bug:
123 * It is possible for a connect result message from another
124 * connect attempt to be processed here first, because we
125 * start listening to the multicast group before starting
126 * our own connect request, which may succeed but we get a
127 * fail message from a previous attempt that raced with us,
130 * The only proper way to fix this would be to listen to events
131 * before sending the command, and for the kernel to send the
132 * connect request or a cookie along with the event, so that you
133 * can match up whether the connect _you_ requested was finished
136 * Alas, the kernel doesn't do that (yet).
139 __do_listen_events(state
, ARRAY_SIZE(cmds
), cmds
, &printargs
);
142 TOPLEVEL(connect
, "[-w] <SSID> [<freq in MHz>] [<bssid>] [key 0:abcde d:1:6162636465]",
143 0, 0, CIB_NETDEV
, iw_connect
,
144 "Join the network with the given SSID (and frequency, BSSID).\n"
145 "With -w, wait for the connect to finish or fail.");
146 HIDDEN(connect
, establish
, "", NL80211_CMD_CONNECT
, 0, CIB_NETDEV
, iw_conn
);
148 static int iw_auth(struct nl80211_state
*state
,
149 struct nl_msg
*msg
, int argc
, char **argv
,
153 unsigned char bssid
[6];
155 bool need_key
= false;
161 NLA_PUT(msg
, NL80211_ATTR_SSID
, strlen(argv
[0]), argv
[0]);
166 if (mac_addr_a2n(bssid
, argv
[0]) == 0) {
167 NLA_PUT(msg
, NL80211_ATTR_MAC
, 6, bssid
);
175 if (strcmp(argv
[0], "open") == 0) {
176 NLA_PUT_U32(msg
, NL80211_ATTR_AUTH_TYPE
,
177 NL80211_AUTHTYPE_OPEN_SYSTEM
);
178 } else if (strcmp(argv
[0], "shared") == 0) {
179 NLA_PUT_U32(msg
, NL80211_ATTR_AUTH_TYPE
,
180 NL80211_AUTHTYPE_SHARED_KEY
);
188 freq
= strtoul(argv
[0], &end
, 10);
190 NLA_PUT_U32(msg
, NL80211_ATTR_WIPHY_FREQ
, freq
);
197 if (!argc
&& need_key
)
199 if (argc
&& !need_key
)
204 if (strcmp(*argv
, "key") != 0 && strcmp(*argv
, "keys") != 0)
210 return parse_keys(msg
, argv
, argc
);
215 TOPLEVEL(auth
, "<SSID> <bssid> <type:open|shared> <freq in MHz> [key 0:abcde d:1:6162636465]",
216 NL80211_CMD_AUTHENTICATE
, 0, CIB_NETDEV
, iw_auth
,
217 "Authenticate with the given network.\n");