]> git.ipfire.org Git - thirdparty/iw.git/blame - ibss.c
update nl80211.h
[thirdparty/iw.git] / ibss.c
CommitLineData
edea4d14
JB
1#include <errno.h>
2
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>
8
9#include "nl80211.h"
10#include "iw.h"
11
4698bfc2
JB
12SECTION(ibss);
13
edea4d14
JB
14static int join_ibss(struct nl80211_state *state,
15 struct nl_cb *cb,
16 struct nl_msg *msg,
17 int argc, char **argv)
18{
95940df3 19 char *end;
edea4d14
JB
20 unsigned char abssid[6];
21
95940df3
JB
22 if (argc < 2)
23 return 1;
edea4d14 24
95940df3
JB
25 /* SSID */
26 NLA_PUT(msg, NL80211_ATTR_SSID, strlen(argv[0]), argv[0]);
edea4d14
JB
27 argv++;
28 argc--;
29
95940df3
JB
30 /* freq */
31 NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ,
32 strtoul(argv[0], &end, 10));
33 if (*end != '\0')
34 return 1;
35 argv++;
36 argc--;
edea4d14 37
95940df3
JB
38 if (argc && strcmp(argv[0], "fixed-freq") == 0) {
39 NLA_PUT_FLAG(msg, NL80211_ATTR_FREQ_FIXED);
40 argv++;
41 argc--;
edea4d14
JB
42 }
43
95940df3 44 if (argc) {
51e9bd80
JB
45 if (mac_addr_a2n(abssid, argv[0]) == 0) {
46 NLA_PUT(msg, NL80211_ATTR_MAC, 6, abssid);
47 argv++;
48 argc--;
49 }
edea4d14
JB
50 }
51
1e03690e
JB
52 if (!argc)
53 return 0;
edea4d14 54
1e03690e
JB
55 if (strcmp(*argv, "key") != 0 && strcmp(*argv, "keys") != 0)
56 return 1;
ded1f078 57
1e03690e
JB
58 argv++;
59 argc--;
51e9bd80 60
1e03690e 61 return parse_keys(msg, argv, argc);
edea4d14
JB
62 nla_put_failure:
63 return -ENOSPC;
64}
65
66static int leave_ibss(struct nl80211_state *state,
67 struct nl_cb *cb,
68 struct nl_msg *msg,
69 int argc, char **argv)
70{
71 return 0;
72}
73COMMAND(ibss, leave, NULL,
806bad30
JB
74 NL80211_CMD_LEAVE_IBSS, 0, CIB_NETDEV, leave_ibss,
75 "Leave the current IBSS cell.");
51e9bd80 76COMMAND(ibss, join, "<SSID> <freq in MHz> [fixed-freq] [<fixed bssid>] [key d:0:abcde]",
806bad30
JB
77 NL80211_CMD_JOIN_IBSS, 0, CIB_NETDEV, join_ibss,
78 "Join the IBSS cell with the given SSID, if it doesn't exist create\n"
79 "it on the given frequency. When fixed frequency is requested, don't\n"
80 "join/create a cell on a different frequency. When a fixed BSSID is\n"
81 "requested use that BSSID and do not adopt another cell's BSSID even\n"
82 "if it has higher TSF and the same SSID.");