2 * An interface between IEEE802.15.4 device and rest of the kernel.
4 * Copyright (C) 2007-2012 Siemens AG
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2
8 * as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 * Pavel Smolenskiy <pavel.smolenskiy@gmail.com>
21 * Maxim Gorbachyov <maxim.gorbachev@siemens.com>
22 * Maxim Osipov <maxim.osipov@siemens.com>
23 * Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
24 * Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
27 #ifndef IEEE802154_NETDEVICE_H
28 #define IEEE802154_NETDEVICE_H
30 #include <net/ieee802154.h>
31 #include <net/af_ieee802154.h>
32 #include <linux/netdevice.h>
33 #include <linux/skbuff.h>
35 struct ieee802154_sechdr
{
36 #if defined(__LITTLE_ENDIAN_BITFIELD)
40 #elif defined(__BIG_ENDIAN_BITFIELD)
45 #error "Please fix <asm/byteorder.h>"
55 struct ieee802154_addr
{
64 struct ieee802154_hdr_fc
{
65 #if defined(__LITTLE_ENDIAN_BITFIELD)
75 #elif defined(__BIG_ENDIAN_BITFIELD)
87 #error "Please fix <asm/byteorder.h>"
91 struct ieee802154_hdr
{
92 struct ieee802154_hdr_fc fc
;
94 struct ieee802154_addr source
;
95 struct ieee802154_addr dest
;
96 struct ieee802154_sechdr sec
;
99 /* pushes hdr onto the skb. fields of hdr->fc that can be calculated from
100 * the contents of hdr will be, and the actual value of those bits in
101 * hdr->fc will be ignored. this includes the INTRA_PAN bit and the frame
102 * version, if SECEN is set.
104 int ieee802154_hdr_push(struct sk_buff
*skb
, const struct ieee802154_hdr
*hdr
);
106 /* pulls the entire 802.15.4 header off of the skb, including the security
107 * header, and performs pan id decompression
109 int ieee802154_hdr_pull(struct sk_buff
*skb
, struct ieee802154_hdr
*hdr
);
111 /* parses the frame control, sequence number of address fields in a given skb
112 * and stores them into hdr, performing pan id decompression and length checks
113 * to be suitable for use in header_ops.parse
115 int ieee802154_hdr_peek_addrs(const struct sk_buff
*skb
,
116 struct ieee802154_hdr
*hdr
);
118 /* parses the full 802.15.4 header a given skb and stores them into hdr,
119 * performing pan id decompression and length checks to be suitable for use in
122 int ieee802154_hdr_peek(const struct sk_buff
*skb
, struct ieee802154_hdr
*hdr
);
124 int ieee802154_max_payload(const struct ieee802154_hdr
*hdr
);
127 ieee802154_sechdr_authtag_len(const struct ieee802154_sechdr
*sec
)
129 switch (sec
->level
) {
130 case IEEE802154_SCF_SECLEVEL_MIC32
:
131 case IEEE802154_SCF_SECLEVEL_ENC_MIC32
:
133 case IEEE802154_SCF_SECLEVEL_MIC64
:
134 case IEEE802154_SCF_SECLEVEL_ENC_MIC64
:
136 case IEEE802154_SCF_SECLEVEL_MIC128
:
137 case IEEE802154_SCF_SECLEVEL_ENC_MIC128
:
139 case IEEE802154_SCF_SECLEVEL_NONE
:
140 case IEEE802154_SCF_SECLEVEL_ENC
:
146 static inline int ieee802154_hdr_length(struct sk_buff
*skb
)
148 struct ieee802154_hdr hdr
;
149 int len
= ieee802154_hdr_pull(skb
, &hdr
);
157 static inline bool ieee802154_addr_equal(const struct ieee802154_addr
*a1
,
158 const struct ieee802154_addr
*a2
)
160 if (a1
->pan_id
!= a2
->pan_id
|| a1
->mode
!= a2
->mode
)
163 if ((a1
->mode
== IEEE802154_ADDR_LONG
&&
164 a1
->extended_addr
!= a2
->extended_addr
) ||
165 (a1
->mode
== IEEE802154_ADDR_SHORT
&&
166 a1
->short_addr
!= a2
->short_addr
))
172 static inline __le64
ieee802154_devaddr_from_raw(const void *raw
)
176 memcpy(&temp
, raw
, IEEE802154_ADDR_LEN
);
177 return (__force __le64
)swab64(temp
);
180 static inline void ieee802154_devaddr_to_raw(void *raw
, __le64 addr
)
182 u64 temp
= swab64((__force u64
)addr
);
184 memcpy(raw
, &temp
, IEEE802154_ADDR_LEN
);
187 static inline void ieee802154_addr_from_sa(struct ieee802154_addr
*a
,
188 const struct ieee802154_addr_sa
*sa
)
190 a
->mode
= sa
->addr_type
;
191 a
->pan_id
= cpu_to_le16(sa
->pan_id
);
194 case IEEE802154_ADDR_SHORT
:
195 a
->short_addr
= cpu_to_le16(sa
->short_addr
);
197 case IEEE802154_ADDR_LONG
:
198 a
->extended_addr
= ieee802154_devaddr_from_raw(sa
->hwaddr
);
203 static inline void ieee802154_addr_to_sa(struct ieee802154_addr_sa
*sa
,
204 const struct ieee802154_addr
*a
)
206 sa
->addr_type
= a
->mode
;
207 sa
->pan_id
= le16_to_cpu(a
->pan_id
);
210 case IEEE802154_ADDR_SHORT
:
211 sa
->short_addr
= le16_to_cpu(a
->short_addr
);
213 case IEEE802154_ADDR_LONG
:
214 ieee802154_devaddr_to_raw(sa
->hwaddr
, a
->extended_addr
);
220 * A control block of skb passed between the ARPHRD_IEEE802154 device
221 * and other stack parts.
223 struct ieee802154_mac_cb
{
230 bool seclevel_override
;
231 struct ieee802154_addr source
;
232 struct ieee802154_addr dest
;
235 static inline struct ieee802154_mac_cb
*mac_cb(struct sk_buff
*skb
)
237 return (struct ieee802154_mac_cb
*)skb
->cb
;
240 static inline struct ieee802154_mac_cb
*mac_cb_init(struct sk_buff
*skb
)
242 BUILD_BUG_ON(sizeof(struct ieee802154_mac_cb
) > sizeof(skb
->cb
));
244 memset(skb
->cb
, 0, sizeof(struct ieee802154_mac_cb
));
248 #define IEEE802154_LLSEC_KEY_SIZE 16
250 struct ieee802154_llsec_key_id
{
254 struct ieee802154_addr device_addr
;
256 __le64 extended_source
;
260 struct ieee802154_llsec_key
{
263 u8 key
[IEEE802154_LLSEC_KEY_SIZE
];
266 struct ieee802154_llsec_key_entry
{
267 struct list_head list
;
269 struct ieee802154_llsec_key_id id
;
270 struct ieee802154_llsec_key
*key
;
273 struct ieee802154_llsec_device_key
{
274 struct list_head list
;
276 struct ieee802154_llsec_key_id key_id
;
281 IEEE802154_LLSEC_DEVKEY_IGNORE
,
282 IEEE802154_LLSEC_DEVKEY_RESTRICT
,
283 IEEE802154_LLSEC_DEVKEY_RECORD
,
285 __IEEE802154_LLSEC_DEVKEY_MAX
,
288 struct ieee802154_llsec_device
{
289 struct list_head list
;
295 bool seclevel_exempt
;
298 struct list_head keys
;
301 struct ieee802154_llsec_seclevel
{
302 struct list_head list
;
306 bool device_override
;
310 struct ieee802154_llsec_params
{
313 __be32 frame_counter
;
315 struct ieee802154_llsec_key_id out_key
;
317 __le64 default_key_source
;
322 __le16 coord_shortaddr
;
325 struct ieee802154_llsec_table
{
326 struct list_head keys
;
327 struct list_head devices
;
328 struct list_head security_levels
;
331 #define IEEE802154_MAC_SCAN_ED 0
332 #define IEEE802154_MAC_SCAN_ACTIVE 1
333 #define IEEE802154_MAC_SCAN_PASSIVE 2
334 #define IEEE802154_MAC_SCAN_ORPHAN 3
336 struct ieee802154_mac_params
{
351 IEEE802154_LLSEC_PARAM_ENABLED
= 1 << 0,
352 IEEE802154_LLSEC_PARAM_FRAME_COUNTER
= 1 << 1,
353 IEEE802154_LLSEC_PARAM_OUT_LEVEL
= 1 << 2,
354 IEEE802154_LLSEC_PARAM_OUT_KEY
= 1 << 3,
355 IEEE802154_LLSEC_PARAM_KEY_SOURCE
= 1 << 4,
356 IEEE802154_LLSEC_PARAM_PAN_ID
= 1 << 5,
357 IEEE802154_LLSEC_PARAM_HWADDR
= 1 << 6,
358 IEEE802154_LLSEC_PARAM_COORD_HWADDR
= 1 << 7,
359 IEEE802154_LLSEC_PARAM_COORD_SHORTADDR
= 1 << 8,
362 struct ieee802154_llsec_ops
{
363 int (*get_params
)(struct net_device
*dev
,
364 struct ieee802154_llsec_params
*params
);
365 int (*set_params
)(struct net_device
*dev
,
366 const struct ieee802154_llsec_params
*params
,
369 int (*add_key
)(struct net_device
*dev
,
370 const struct ieee802154_llsec_key_id
*id
,
371 const struct ieee802154_llsec_key
*key
);
372 int (*del_key
)(struct net_device
*dev
,
373 const struct ieee802154_llsec_key_id
*id
);
375 int (*add_dev
)(struct net_device
*dev
,
376 const struct ieee802154_llsec_device
*llsec_dev
);
377 int (*del_dev
)(struct net_device
*dev
, __le64 dev_addr
);
379 int (*add_devkey
)(struct net_device
*dev
,
381 const struct ieee802154_llsec_device_key
*key
);
382 int (*del_devkey
)(struct net_device
*dev
,
384 const struct ieee802154_llsec_device_key
*key
);
386 int (*add_seclevel
)(struct net_device
*dev
,
387 const struct ieee802154_llsec_seclevel
*sl
);
388 int (*del_seclevel
)(struct net_device
*dev
,
389 const struct ieee802154_llsec_seclevel
*sl
);
391 void (*lock_table
)(struct net_device
*dev
);
392 void (*get_table
)(struct net_device
*dev
,
393 struct ieee802154_llsec_table
**t
);
394 void (*unlock_table
)(struct net_device
*dev
);
397 * This should be located at net_device->ml_priv
399 * get_phy should increment the reference counting on returned phy.
400 * Use wpan_wpy_put to put that reference.
402 struct ieee802154_mlme_ops
{
403 /* The following fields are optional (can be NULL). */
405 int (*assoc_req
)(struct net_device
*dev
,
406 struct ieee802154_addr
*addr
,
407 u8 channel
, u8 page
, u8 cap
);
408 int (*assoc_resp
)(struct net_device
*dev
,
409 struct ieee802154_addr
*addr
,
410 __le16 short_addr
, u8 status
);
411 int (*disassoc_req
)(struct net_device
*dev
,
412 struct ieee802154_addr
*addr
,
414 int (*start_req
)(struct net_device
*dev
,
415 struct ieee802154_addr
*addr
,
416 u8 channel
, u8 page
, u8 bcn_ord
, u8 sf_ord
,
417 u8 pan_coord
, u8 blx
, u8 coord_realign
);
418 int (*scan_req
)(struct net_device
*dev
,
419 u8 type
, u32 channels
, u8 page
, u8 duration
);
421 int (*set_mac_params
)(struct net_device
*dev
,
422 const struct ieee802154_mac_params
*params
);
423 void (*get_mac_params
)(struct net_device
*dev
,
424 struct ieee802154_mac_params
*params
);
426 struct ieee802154_llsec_ops
*llsec
;
428 /* The fields below are required. */
430 struct wpan_phy
*(*get_phy
)(const struct net_device
*dev
);
433 * FIXME: these should become the part of PIB/MIB interface.
434 * However we still don't have IB interface of any kind
436 __le16 (*get_pan_id
)(const struct net_device
*dev
);
437 __le16 (*get_short_addr
)(const struct net_device
*dev
);
438 u8 (*get_dsn
)(const struct net_device
*dev
);
441 /* The IEEE 802.15.4 standard defines 2 type of the devices:
442 * - FFD - full functionality device
443 * - RFD - reduce functionality device
445 * So 2 sets of mlme operations are needed
447 struct ieee802154_reduced_mlme_ops
{
448 struct wpan_phy
*(*get_phy
)(const struct net_device
*dev
);
451 static inline struct ieee802154_mlme_ops
*
452 ieee802154_mlme_ops(const struct net_device
*dev
)
457 static inline struct ieee802154_reduced_mlme_ops
*
458 ieee802154_reduced_mlme_ops(const struct net_device
*dev
)