1 #include <linux/ieee80211.h>
2 #include <linux/export.h>
3 #include <net/cfg80211.h>
7 /* Default values, timeouts in ms */
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
15 #define MESH_PATH_TIMEOUT 5000
16 #define MESH_RANN_INTERVAL 5000
19 * Minimum interval between two consecutive PREQs originated by the same
22 #define MESH_PREQ_MIN_INT 10
23 #define MESH_DIAM_TRAVERSAL_TIME 50
26 * A path will be refreshed if it is used PATH_REFRESH_TIME milliseconds
27 * before timing out. This way it will remain ACTIVE and no data frames
28 * will be unnecessarily held in the pending queue.
30 #define MESH_PATH_REFRESH_TIME 1000
31 #define MESH_MIN_DISCOVERY_TIMEOUT (2 * MESH_DIAM_TRAVERSAL_TIME)
33 /* Default maximum number of established plinks per interface */
34 #define MESH_MAX_ESTAB_PLINKS 32
36 #define MESH_MAX_PREQ_RETRIES 4
39 const struct mesh_config default_mesh_config
= {
40 .dot11MeshRetryTimeout
= MESH_RET_T
,
41 .dot11MeshConfirmTimeout
= MESH_CONF_T
,
42 .dot11MeshHoldingTimeout
= MESH_HOLD_T
,
43 .dot11MeshMaxRetries
= MESH_MAX_RETR
,
44 .dot11MeshTTL
= MESH_TTL
,
45 .element_ttl
= MESH_DEFAULT_ELEMENT_TTL
,
46 .auto_open_plinks
= true,
47 .dot11MeshMaxPeerLinks
= MESH_MAX_ESTAB_PLINKS
,
48 .dot11MeshHWMPactivePathTimeout
= MESH_PATH_TIMEOUT
,
49 .dot11MeshHWMPpreqMinInterval
= MESH_PREQ_MIN_INT
,
50 .dot11MeshHWMPnetDiameterTraversalTime
= MESH_DIAM_TRAVERSAL_TIME
,
51 .dot11MeshHWMPmaxPREQretries
= MESH_MAX_PREQ_RETRIES
,
52 .path_refresh_time
= MESH_PATH_REFRESH_TIME
,
53 .min_discovery_timeout
= MESH_MIN_DISCOVERY_TIMEOUT
,
54 .dot11MeshHWMPRannInterval
= MESH_RANN_INTERVAL
,
55 .dot11MeshGateAnnouncementProtocol
= false,
58 const struct mesh_setup default_mesh_setup
= {
59 .path_sel_proto
= IEEE80211_PATH_PROTOCOL_HWMP
,
60 .path_metric
= IEEE80211_PATH_METRIC_AIRTIME
,
66 int __cfg80211_join_mesh(struct cfg80211_registered_device
*rdev
,
67 struct net_device
*dev
,
68 const struct mesh_setup
*setup
,
69 const struct mesh_config
*conf
)
71 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
74 BUILD_BUG_ON(IEEE80211_MAX_SSID_LEN
!= IEEE80211_MAX_MESH_ID_LEN
);
76 ASSERT_WDEV_LOCK(wdev
);
78 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_MESH_POINT
)
81 if (!(rdev
->wiphy
.flags
& WIPHY_FLAG_MESH_AUTH
) &&
85 if (wdev
->mesh_id_len
)
88 if (!setup
->mesh_id_len
)
91 if (!rdev
->ops
->join_mesh
)
94 err
= rdev
->ops
->join_mesh(&rdev
->wiphy
, dev
, conf
, setup
);
96 memcpy(wdev
->ssid
, setup
->mesh_id
, setup
->mesh_id_len
);
97 wdev
->mesh_id_len
= setup
->mesh_id_len
;
103 int cfg80211_join_mesh(struct cfg80211_registered_device
*rdev
,
104 struct net_device
*dev
,
105 const struct mesh_setup
*setup
,
106 const struct mesh_config
*conf
)
108 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
112 err
= __cfg80211_join_mesh(rdev
, dev
, setup
, conf
);
118 void cfg80211_notify_new_peer_candidate(struct net_device
*dev
,
119 const u8
*macaddr
, const u8
* ie
, u8 ie_len
, gfp_t gfp
)
121 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
123 if (WARN_ON(wdev
->iftype
!= NL80211_IFTYPE_MESH_POINT
))
126 nl80211_send_new_peer_candidate(wiphy_to_dev(wdev
->wiphy
), dev
,
127 macaddr
, ie
, ie_len
, gfp
);
129 EXPORT_SYMBOL(cfg80211_notify_new_peer_candidate
);
131 static int __cfg80211_leave_mesh(struct cfg80211_registered_device
*rdev
,
132 struct net_device
*dev
)
134 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
137 ASSERT_WDEV_LOCK(wdev
);
139 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_MESH_POINT
)
142 if (!rdev
->ops
->leave_mesh
)
145 if (!wdev
->mesh_id_len
)
148 err
= rdev
->ops
->leave_mesh(&rdev
->wiphy
, dev
);
150 wdev
->mesh_id_len
= 0;
154 int cfg80211_leave_mesh(struct cfg80211_registered_device
*rdev
,
155 struct net_device
*dev
)
157 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
161 err
= __cfg80211_leave_mesh(rdev
, dev
);