Skip to content

Commit

Permalink
mac80211: ignore peers if security is enabled for this mesh
Browse files Browse the repository at this point in the history
Signed-off-by: Javier Cardona <javier@cozybit.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
  • Loading branch information
Javier Cardona authored and John W. Linville committed Apr 12, 2011
1 parent 15d5dda commit 5cff5e0
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions net/mac80211/cfg.c
Original file line number Diff line number Diff line change
Expand Up @@ -1053,6 +1053,7 @@ static int copy_mesh_setup(struct ieee80211_if_mesh *ifmsh,
memcpy(ifmsh->mesh_id, setup->mesh_id, ifmsh->mesh_id_len);
ifmsh->mesh_pp_id = setup->path_sel_proto;
ifmsh->mesh_pm_id = setup->path_metric;
ifmsh->is_secure = setup->is_secure;

return 0;
}
Expand Down
1 change: 1 addition & 0 deletions net/mac80211/ieee80211_i.h
Original file line number Diff line number Diff line change
Expand Up @@ -490,6 +490,7 @@ struct ieee80211_if_mesh {
bool accepting_plinks;
const u8 *ie;
u8 ie_len;
bool is_secure;
};

#ifdef CONFIG_MAC80211_MESH
Expand Down
4 changes: 4 additions & 0 deletions net/mac80211/mesh.c
Original file line number Diff line number Diff line change
Expand Up @@ -573,6 +573,10 @@ static void ieee80211_mesh_rx_bcn_presp(struct ieee80211_sub_if_data *sdata,
ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
&elems);

/* ignore beacons from secure mesh peers if our security is off */
if (elems.rsn_len && !sdata->u.mesh.is_secure)
return;

if (elems.ds_params && elems.ds_params_len == 1)
freq = ieee80211_channel_to_frequency(elems.ds_params[0], band);
else
Expand Down
4 changes: 4 additions & 0 deletions net/mac80211/mesh_plink.c
Original file line number Diff line number Diff line change
Expand Up @@ -449,6 +449,10 @@ void mesh_rx_plink_frame(struct ieee80211_sub_if_data *sdata, struct ieee80211_m
mpl_dbg("Mesh plink: missing necessary peer link ie\n");
return;
}
if (elems.rsn_len && !sdata->u.mesh.is_secure) {
mpl_dbg("Mesh plink: can't establish link with secure peer\n");
return;
}

ftype = mgmt->u.action.u.plink_action.action_code;
ie_len = elems.peer_link_len;
Expand Down
1 change: 1 addition & 0 deletions net/wireless/mesh.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ const struct mesh_setup default_mesh_setup = {
.path_metric = IEEE80211_PATH_METRIC_AIRTIME,
.ie = NULL,
.ie_len = 0,
.is_secure = false,
};

int __cfg80211_join_mesh(struct cfg80211_registered_device *rdev,
Expand Down

0 comments on commit 5cff5e0

Please sign in to comment.