mac80211: Allow nonHT/HT peering in mesh
[linux-2.6-block.git] / net / wireless / mesh.c
CommitLineData
29cbe68c 1#include <linux/ieee80211.h>
bc3b2d7f 2#include <linux/export.h>
29cbe68c 3#include <net/cfg80211.h>
c93b5e71 4#include "nl80211.h"
29cbe68c
JB
5#include "core.h"
6
7/* Default values, timeouts in ms */
8#define MESH_TTL 31
9#define MESH_DEFAULT_ELEMENT_TTL 31
10#define MESH_MAX_RETR 3
11#define MESH_RET_T 100
12#define MESH_CONF_T 100
13#define MESH_HOLD_T 100
14
15#define MESH_PATH_TIMEOUT 5000
0507e159 16#define MESH_RANN_INTERVAL 5000
29cbe68c
JB
17
18/*
19 * Minimum interval between two consecutive PREQs originated by the same
20 * interface
21 */
22#define MESH_PREQ_MIN_INT 10
dca7e943 23#define MESH_PERR_MIN_INT 100
29cbe68c
JB
24#define MESH_DIAM_TRAVERSAL_TIME 50
25
55335137
AN
26#define MESH_RSSI_THRESHOLD 0
27
29cbe68c
JB
28/*
29 * A path will be refreshed if it is used PATH_REFRESH_TIME milliseconds
30 * before timing out. This way it will remain ACTIVE and no data frames
31 * will be unnecessarily held in the pending queue.
32 */
33#define MESH_PATH_REFRESH_TIME 1000
34#define MESH_MIN_DISCOVERY_TIMEOUT (2 * MESH_DIAM_TRAVERSAL_TIME)
35
36/* Default maximum number of established plinks per interface */
37#define MESH_MAX_ESTAB_PLINKS 32
38
39#define MESH_MAX_PREQ_RETRIES 4
40
d299a1f2 41#define MESH_SYNC_NEIGHBOR_OFFSET_MAX 50
29cbe68c
JB
42
43const struct mesh_config default_mesh_config = {
44 .dot11MeshRetryTimeout = MESH_RET_T,
45 .dot11MeshConfirmTimeout = MESH_CONF_T,
46 .dot11MeshHoldingTimeout = MESH_HOLD_T,
47 .dot11MeshMaxRetries = MESH_MAX_RETR,
48 .dot11MeshTTL = MESH_TTL,
49 .element_ttl = MESH_DEFAULT_ELEMENT_TTL,
50 .auto_open_plinks = true,
51 .dot11MeshMaxPeerLinks = MESH_MAX_ESTAB_PLINKS,
d299a1f2 52 .dot11MeshNbrOffsetMaxNeighbor = MESH_SYNC_NEIGHBOR_OFFSET_MAX,
29cbe68c
JB
53 .dot11MeshHWMPactivePathTimeout = MESH_PATH_TIMEOUT,
54 .dot11MeshHWMPpreqMinInterval = MESH_PREQ_MIN_INT,
dca7e943 55 .dot11MeshHWMPperrMinInterval = MESH_PERR_MIN_INT,
29cbe68c
JB
56 .dot11MeshHWMPnetDiameterTraversalTime = MESH_DIAM_TRAVERSAL_TIME,
57 .dot11MeshHWMPmaxPREQretries = MESH_MAX_PREQ_RETRIES,
58 .path_refresh_time = MESH_PATH_REFRESH_TIME,
59 .min_discovery_timeout = MESH_MIN_DISCOVERY_TIMEOUT,
0507e159 60 .dot11MeshHWMPRannInterval = MESH_RANN_INTERVAL,
16dd7267 61 .dot11MeshGateAnnouncementProtocol = false,
94f90656 62 .dot11MeshForwarding = true,
55335137 63 .rssi_threshold = MESH_RSSI_THRESHOLD,
29cbe68c
JB
64};
65
c80d545d 66const struct mesh_setup default_mesh_setup = {
d299a1f2 67 .sync_method = IEEE80211_SYNC_METHOD_NEIGHBOR_OFFSET,
c80d545d
JC
68 .path_sel_proto = IEEE80211_PATH_PROTOCOL_HWMP,
69 .path_metric = IEEE80211_PATH_METRIC_AIRTIME,
581a8b0f
JC
70 .ie = NULL,
71 .ie_len = 0,
5cff5e01 72 .is_secure = false,
c80d545d 73};
29cbe68c
JB
74
75int __cfg80211_join_mesh(struct cfg80211_registered_device *rdev,
76 struct net_device *dev,
c80d545d 77 const struct mesh_setup *setup,
29cbe68c
JB
78 const struct mesh_config *conf)
79{
80 struct wireless_dev *wdev = dev->ieee80211_ptr;
29cbe68c
JB
81 int err;
82
83 BUILD_BUG_ON(IEEE80211_MAX_SSID_LEN != IEEE80211_MAX_MESH_ID_LEN);
84
85 ASSERT_WDEV_LOCK(wdev);
86
87 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT)
88 return -EOPNOTSUPP;
89
15d5dda6
JC
90 if (!(rdev->wiphy.flags & WIPHY_FLAG_MESH_AUTH) &&
91 setup->is_secure)
92 return -EOPNOTSUPP;
93
29cbe68c
JB
94 if (wdev->mesh_id_len)
95 return -EALREADY;
96
c80d545d 97 if (!setup->mesh_id_len)
29cbe68c
JB
98 return -EINVAL;
99
100 if (!rdev->ops->join_mesh)
101 return -EOPNOTSUPP;
102
c80d545d 103 err = rdev->ops->join_mesh(&rdev->wiphy, dev, conf, setup);
29cbe68c 104 if (!err) {
c80d545d
JC
105 memcpy(wdev->ssid, setup->mesh_id, setup->mesh_id_len);
106 wdev->mesh_id_len = setup->mesh_id_len;
29cbe68c
JB
107 }
108
109 return err;
110}
111
112int cfg80211_join_mesh(struct cfg80211_registered_device *rdev,
113 struct net_device *dev,
c80d545d 114 const struct mesh_setup *setup,
29cbe68c
JB
115 const struct mesh_config *conf)
116{
117 struct wireless_dev *wdev = dev->ieee80211_ptr;
118 int err;
119
120 wdev_lock(wdev);
c80d545d 121 err = __cfg80211_join_mesh(rdev, dev, setup, conf);
29cbe68c
JB
122 wdev_unlock(wdev);
123
124 return err;
125}
126
c93b5e71
JC
127void cfg80211_notify_new_peer_candidate(struct net_device *dev,
128 const u8 *macaddr, const u8* ie, u8 ie_len, gfp_t gfp)
129{
130 struct wireless_dev *wdev = dev->ieee80211_ptr;
131
132 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_MESH_POINT))
133 return;
134
135 nl80211_send_new_peer_candidate(wiphy_to_dev(wdev->wiphy), dev,
136 macaddr, ie, ie_len, gfp);
137}
138EXPORT_SYMBOL(cfg80211_notify_new_peer_candidate);
139
29cbe68c
JB
140static int __cfg80211_leave_mesh(struct cfg80211_registered_device *rdev,
141 struct net_device *dev)
142{
143 struct wireless_dev *wdev = dev->ieee80211_ptr;
144 int err;
145
146 ASSERT_WDEV_LOCK(wdev);
147
148 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT)
149 return -EOPNOTSUPP;
150
151 if (!rdev->ops->leave_mesh)
152 return -EOPNOTSUPP;
153
154 if (!wdev->mesh_id_len)
155 return -ENOTCONN;
156
157 err = rdev->ops->leave_mesh(&rdev->wiphy, dev);
158 if (!err)
159 wdev->mesh_id_len = 0;
160 return err;
161}
162
163int cfg80211_leave_mesh(struct cfg80211_registered_device *rdev,
164 struct net_device *dev)
165{
166 struct wireless_dev *wdev = dev->ieee80211_ptr;
167 int err;
168
169 wdev_lock(wdev);
170 err = __cfg80211_leave_mesh(rdev, dev);
171 wdev_unlock(wdev);
172
173 return err;
174}