1 #include <linux/ieee80211.h>
2 #include <net/cfg80211.h>
6 /* Default values, timeouts in ms */
8 #define MESH_DEFAULT_ELEMENT_TTL 31
9 #define MESH_MAX_RETR 3
10 #define MESH_RET_T 100
11 #define MESH_CONF_T 100
12 #define MESH_HOLD_T 100
14 #define MESH_PATH_TIMEOUT 5000
17 * Minimum interval between two consecutive PREQs originated by the same
20 #define MESH_PREQ_MIN_INT 10
21 #define MESH_DIAM_TRAVERSAL_TIME 50
24 * A path will be refreshed if it is used PATH_REFRESH_TIME milliseconds
25 * before timing out. This way it will remain ACTIVE and no data frames
26 * will be unnecessarily held in the pending queue.
28 #define MESH_PATH_REFRESH_TIME 1000
29 #define MESH_MIN_DISCOVERY_TIMEOUT (2 * MESH_DIAM_TRAVERSAL_TIME)
31 /* Default maximum number of established plinks per interface */
32 #define MESH_MAX_ESTAB_PLINKS 32
34 #define MESH_MAX_PREQ_RETRIES 4
37 const struct mesh_config default_mesh_config
= {
38 .dot11MeshRetryTimeout
= MESH_RET_T
,
39 .dot11MeshConfirmTimeout
= MESH_CONF_T
,
40 .dot11MeshHoldingTimeout
= MESH_HOLD_T
,
41 .dot11MeshMaxRetries
= MESH_MAX_RETR
,
42 .dot11MeshTTL
= MESH_TTL
,
43 .element_ttl
= MESH_DEFAULT_ELEMENT_TTL
,
44 .auto_open_plinks
= true,
45 .dot11MeshMaxPeerLinks
= MESH_MAX_ESTAB_PLINKS
,
46 .dot11MeshHWMPactivePathTimeout
= MESH_PATH_TIMEOUT
,
47 .dot11MeshHWMPpreqMinInterval
= MESH_PREQ_MIN_INT
,
48 .dot11MeshHWMPnetDiameterTraversalTime
= MESH_DIAM_TRAVERSAL_TIME
,
49 .dot11MeshHWMPmaxPREQretries
= MESH_MAX_PREQ_RETRIES
,
50 .path_refresh_time
= MESH_PATH_REFRESH_TIME
,
51 .min_discovery_timeout
= MESH_MIN_DISCOVERY_TIMEOUT
,
54 const struct mesh_setup default_mesh_setup
= {
55 .path_sel_proto
= IEEE80211_PATH_PROTOCOL_HWMP
,
56 .path_metric
= IEEE80211_PATH_METRIC_AIRTIME
,
62 int __cfg80211_join_mesh(struct cfg80211_registered_device
*rdev
,
63 struct net_device
*dev
,
64 const struct mesh_setup
*setup
,
65 const struct mesh_config
*conf
)
67 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
70 BUILD_BUG_ON(IEEE80211_MAX_SSID_LEN
!= IEEE80211_MAX_MESH_ID_LEN
);
72 ASSERT_WDEV_LOCK(wdev
);
74 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_MESH_POINT
)
77 if (!(rdev
->wiphy
.flags
& WIPHY_FLAG_MESH_AUTH
) &&
81 if (wdev
->mesh_id_len
)
84 if (!setup
->mesh_id_len
)
87 if (!rdev
->ops
->join_mesh
)
90 err
= rdev
->ops
->join_mesh(&rdev
->wiphy
, dev
, conf
, setup
);
92 memcpy(wdev
->ssid
, setup
->mesh_id
, setup
->mesh_id_len
);
93 wdev
->mesh_id_len
= setup
->mesh_id_len
;
99 int cfg80211_join_mesh(struct cfg80211_registered_device
*rdev
,
100 struct net_device
*dev
,
101 const struct mesh_setup
*setup
,
102 const struct mesh_config
*conf
)
104 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
108 err
= __cfg80211_join_mesh(rdev
, dev
, setup
, conf
);
114 void cfg80211_notify_new_peer_candidate(struct net_device
*dev
,
115 const u8
*macaddr
, const u8
* ie
, u8 ie_len
, gfp_t gfp
)
117 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
119 if (WARN_ON(wdev
->iftype
!= NL80211_IFTYPE_MESH_POINT
))
122 nl80211_send_new_peer_candidate(wiphy_to_dev(wdev
->wiphy
), dev
,
123 macaddr
, ie
, ie_len
, gfp
);
125 EXPORT_SYMBOL(cfg80211_notify_new_peer_candidate
);
127 static int __cfg80211_leave_mesh(struct cfg80211_registered_device
*rdev
,
128 struct net_device
*dev
)
130 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
133 ASSERT_WDEV_LOCK(wdev
);
135 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_MESH_POINT
)
138 if (!rdev
->ops
->leave_mesh
)
141 if (!wdev
->mesh_id_len
)
144 err
= rdev
->ops
->leave_mesh(&rdev
->wiphy
, dev
);
146 wdev
->mesh_id_len
= 0;
150 int cfg80211_leave_mesh(struct cfg80211_registered_device
*rdev
,
151 struct net_device
*dev
)
153 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
157 err
= __cfg80211_leave_mesh(rdev
, dev
);