2 * WiMedia Logical Link Control Protocol (WLP)
3 * Message exchange infrastructure
5 * Copyright (C) 2007 Intel Corporation
6 * Reinette Chatre <reinette.chatre@intel.com>
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License version
10 * 2 as published by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
27 #include <linux/etherdevice.h>
28 #include <linux/wlp.h>
30 #include "wlp-internal.h"
33 * Direct incoming association msg to correct parsing routine
35 * We only expect D1, E1, C1, C3 messages as new. All other incoming
36 * association messages should form part of an established session that is
38 * The handling of these messages often require calling sleeping functions
39 * - this cannot be done in interrupt context. We use the kernel's
40 * workqueue to handle these messages.
43 void wlp_direct_assoc_frame(struct wlp
*wlp
, struct sk_buff
*skb
,
44 struct uwb_dev_addr
*src
)
46 struct device
*dev
= &wlp
->rc
->uwb_dev
.dev
;
47 struct wlp_frame_assoc
*assoc
= (void *) skb
->data
;
48 struct wlp_assoc_frame_ctx
*frame_ctx
;
50 frame_ctx
= kmalloc(sizeof(*frame_ctx
), GFP_ATOMIC
);
51 if (frame_ctx
== NULL
) {
52 dev_err(dev
, "WLP: Unable to allocate memory for association "
59 frame_ctx
->src
= *src
;
60 switch (assoc
->type
) {
62 INIT_WORK(&frame_ctx
->ws
, wlp_handle_d1_frame
);
63 schedule_work(&frame_ctx
->ws
);
66 kfree_skb(skb
); /* Temporary until we handle it */
67 kfree(frame_ctx
); /* Temporary until we handle it */
70 INIT_WORK(&frame_ctx
->ws
, wlp_handle_c1_frame
);
71 schedule_work(&frame_ctx
->ws
);
74 INIT_WORK(&frame_ctx
->ws
, wlp_handle_c3_frame
);
75 schedule_work(&frame_ctx
->ws
);
78 dev_err(dev
, "Received unexpected association frame. "
79 "Type = %d \n", assoc
->type
);
87 * Process incoming association frame
89 * Although it could be possible to deal with some incoming association
90 * messages without creating a new session we are keeping things simple. We
91 * do not accept new association messages if there is a session in progress
92 * and the messages do not belong to that session.
94 * If an association message arrives that causes the creation of a session
95 * (WLP_ASSOC_E1) while we are in the process of creating a session then we
96 * rely on the neighbor mutex to protect the data. That is, the new session
97 * will not be started until the previous is completed.
100 void wlp_receive_assoc_frame(struct wlp
*wlp
, struct sk_buff
*skb
,
101 struct uwb_dev_addr
*src
)
103 struct device
*dev
= &wlp
->rc
->uwb_dev
.dev
;
104 struct wlp_frame_assoc
*assoc
= (void *) skb
->data
;
105 struct wlp_session
*session
= wlp
->session
;
108 if (wlp_get_version(wlp
, &assoc
->version
, &version
,
109 sizeof(assoc
->version
)) < 0)
111 if (version
!= WLP_VERSION
) {
112 dev_err(dev
, "Unsupported WLP version in association "
116 if (session
!= NULL
) {
117 /* Function that created this session is still holding the
118 * &wlp->mutex to protect this session. */
119 if (assoc
->type
== session
->exp_message
||
120 assoc
->type
== WLP_ASSOC_F0
) {
121 if (!memcmp(&session
->neighbor_addr
, src
,
126 dev_err(dev
, "Received expected message from "
127 "unexpected source. Expected message "
128 "%d or F0 from %02x:%02x, but received "
129 "it from %02x:%02x. Dropping.\n",
130 session
->exp_message
,
131 session
->neighbor_addr
.data
[1],
132 session
->neighbor_addr
.data
[0],
133 src
->data
[1], src
->data
[0]);
137 dev_err(dev
, "Association already in progress. "
142 wlp_direct_assoc_frame(wlp
, skb
, src
);
150 * Verify incoming frame is from connected neighbor, prep to pass to WLP client
152 * Verification proceeds according to WLP 0.99 [7.3.1]. The source address
153 * is used to determine which neighbor is sending the frame and the WSS tag
154 * is used to know to which WSS the frame belongs (we only support one WSS
155 * so this test is straight forward).
156 * With the WSS found we need to ensure that we are connected before
157 * allowing the exchange of data frames.
160 int wlp_verify_prep_rx_frame(struct wlp
*wlp
, struct sk_buff
*skb
,
161 struct uwb_dev_addr
*src
)
163 struct device
*dev
= &wlp
->rc
->uwb_dev
.dev
;
164 int result
= -EINVAL
;
165 struct wlp_eda_node eda_entry
;
166 struct wlp_frame_std_abbrv_hdr
*hdr
= (void *) skb
->data
;
169 result
= wlp_copy_eda_node(&wlp
->eda
, src
, &eda_entry
);
171 if (printk_ratelimit())
172 dev_err(dev
, "WLP: Incoming frame is from unknown "
173 "neighbor %02x:%02x.\n", src
->data
[1],
177 if (hdr
->tag
!= eda_entry
.tag
) {
178 if (printk_ratelimit())
179 dev_err(dev
, "WLP: Tag of incoming frame from "
180 "%02x:%02x does not match expected tag. "
181 "Received 0x%02x, expected 0x%02x. \n",
182 src
->data
[1], src
->data
[0], hdr
->tag
,
187 if (eda_entry
.state
!= WLP_WSS_CONNECTED
) {
188 if (printk_ratelimit())
189 dev_err(dev
, "WLP: Incoming frame from "
190 "%02x:%02x does is not from connected WSS.\n",
191 src
->data
[1], src
->data
[0]);
196 skb_pull(skb
, sizeof(*hdr
));
202 * Receive a WLP frame from device
204 * @returns: 1 if calling function should free the skb
205 * 0 if it successfully handled skb and freed it
206 * 0 if error occured, will free skb in this case
208 int wlp_receive_frame(struct device
*dev
, struct wlp
*wlp
, struct sk_buff
*skb
,
209 struct uwb_dev_addr
*src
)
211 unsigned len
= skb
->len
;
212 void *ptr
= skb
->data
;
213 struct wlp_frame_hdr
*hdr
;
216 if (len
< sizeof(*hdr
)) {
217 dev_err(dev
, "Not enough data to parse WLP header.\n");
222 if (le16_to_cpu(hdr
->mux_hdr
) != WLP_PROTOCOL_ID
) {
223 dev_err(dev
, "Not a WLP frame type.\n");
228 case WLP_FRAME_STANDARD
:
229 if (len
< sizeof(struct wlp_frame_std_abbrv_hdr
)) {
230 dev_err(dev
, "Not enough data to parse Standard "
234 result
= wlp_verify_prep_rx_frame(wlp
, skb
, src
);
236 if (printk_ratelimit())
237 dev_err(dev
, "WLP: Verification of frame "
238 "from neighbor %02x:%02x failed.\n",
239 src
->data
[1], src
->data
[0]);
244 case WLP_FRAME_ABBREVIATED
:
245 dev_err(dev
, "Abbreviated frame received. FIXME?\n");
248 case WLP_FRAME_CONTROL
:
249 dev_err(dev
, "Control frame received. FIXME?\n");
252 case WLP_FRAME_ASSOCIATION
:
253 if (len
< sizeof(struct wlp_frame_assoc
)) {
254 dev_err(dev
, "Not enough data to parse Association "
258 wlp_receive_assoc_frame(wlp
, skb
, src
);
261 dev_err(dev
, "Invalid frame received.\n");
272 EXPORT_SYMBOL_GPL(wlp_receive_frame
);
276 * Verify frame from network stack, prepare for further transmission
278 * @skb: the socket buffer that needs to be prepared for transmission (it
279 * is in need of a WLP header). If this is a broadcast frame we take
280 * over the entire transmission.
281 * If it is a unicast the WSS connection should already be established
282 * and transmission will be done by the calling function.
283 * @dst: On return this will contain the device address to which the
285 * @returns: 0 on success no tx : WLP header sucessfully applied to skb buffer,
286 * calling function can proceed with tx
287 * 1 on success with tx : WLP will take over transmission of this
291 * The network stack (WLP client) is attempting to transmit a frame. We can
292 * only transmit data if a local WSS is at least active (connection will be
293 * done here if this is a broadcast frame and neighbor also has the WSS
296 * The frame can be either broadcast or unicast. Broadcast in a WSS is
297 * supported via multicast, but we don't support multicast yet (until
298 * devices start to support MAB IEs). If a broadcast frame needs to be
299 * transmitted it is treated as a unicast frame to each neighbor. In this
300 * case the WLP takes over transmission of the skb and returns 1
301 * to the caller to indicate so. Also, in this case, if a neighbor has the
302 * same WSS activated but is not connected then the WSS connection will be
303 * done at this time. The neighbor's virtual address will be learned at
306 * The destination address in a unicast frame is the virtual address of the
307 * neighbor. This address only becomes known when a WSS connection is
308 * established. We thus rely on a broadcast frame to trigger the setup of
309 * WSS connections to all neighbors before we are able to send unicast
310 * frames to them. This seems reasonable as IP would usually use ARP first
311 * before any unicast frames are sent.
313 * If we are already connected to the neighbor (neighbor's virtual address
314 * is known) we just prepare the WLP header and the caller will continue to
317 * A failure in this function usually indicates something that cannot be
318 * fixed automatically. So, if this function fails (@return < 0) the calling
319 * function should not retry to send the frame as it will very likely keep
323 int wlp_prepare_tx_frame(struct device
*dev
, struct wlp
*wlp
,
324 struct sk_buff
*skb
, struct uwb_dev_addr
*dst
)
326 int result
= -EINVAL
;
327 struct ethhdr
*eth_hdr
= (void *) skb
->data
;
329 if (is_multicast_ether_addr(eth_hdr
->h_dest
)) {
330 result
= wlp_eda_for_each(&wlp
->eda
, wlp_wss_send_copy
, skb
);
332 if (printk_ratelimit())
333 dev_err(dev
, "Unable to handle broadcast "
334 "frame from WLP client.\n");
337 dev_kfree_skb_irq(skb
);
339 /* Frame will be transmitted by WLP. */
341 result
= wlp_eda_for_virtual(&wlp
->eda
, eth_hdr
->h_dest
, dst
,
342 wlp_wss_prep_hdr
, skb
);
343 if (unlikely(result
< 0)) {
344 if (printk_ratelimit())
345 dev_err(dev
, "Unable to prepare "
346 "skb for transmission. \n");
353 EXPORT_SYMBOL_GPL(wlp_prepare_tx_frame
);