blob: ddb890174a0e92e8d897bc61cc51e11cbd276067 [file] [log] [blame]
Sergey Lapin9ec76712009-06-08 12:18:48 +00001/*
2 * IEEE802.15.4-2003 specification
3 *
4 * Copyright (C) 2007, 2008 Siemens AG
5 *
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.
9 *
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.
14 *
Sergey Lapin9ec76712009-06-08 12:18:48 +000015 * Written by:
16 * Pavel Smolenskiy <pavel.smolenskiy@gmail.com>
17 * Maxim Gorbachyov <maxim.gorbachev@siemens.com>
18 * Maxim Osipov <maxim.osipov@siemens.com>
19 * Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
alex.bluesman.smirnov@gmail.com719269a2011-11-10 07:38:38 +000020 * Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Sergey Lapin9ec76712009-06-08 12:18:48 +000021 */
22
Alexander Aring4ca24ac2014-10-25 09:41:04 +020023#ifndef LINUX_IEEE802154_H
24#define LINUX_IEEE802154_H
Sergey Lapin9ec76712009-06-08 12:18:48 +000025
Alexander Aringfa491002014-10-27 17:13:40 +010026#include <linux/types.h>
Alexander Aring35d5a372014-11-05 20:51:22 +010027#include <linux/random.h>
Alexander Aringfa491002014-10-27 17:13:40 +010028
alex.bluesman.smirnov@gmail.com719269a2011-11-10 07:38:38 +000029#define IEEE802154_MTU 127
Alexander Aring306f7aa2015-02-11 14:39:15 +010030#define IEEE802154_ACK_PSDU_LEN 5
31#define IEEE802154_MIN_PSDU_LEN 9
Alexander Aring3f3c4bb2015-03-04 21:19:59 +010032#define IEEE802154_FCS_LEN 2
Alexander Aring87a93e42015-09-18 11:30:43 +020033#define IEEE802154_MAX_AUTH_TAG_LEN 16
Alexander Aring9cc577d2016-07-06 23:32:24 +020034#define IEEE802154_FC_LEN 2
35#define IEEE802154_SEQ_LEN 1
Alexander Aring87a93e42015-09-18 11:30:43 +020036
37/* General MAC frame format:
38 * 2 bytes: Frame Control
39 * 1 byte: Sequence Number
40 * 20 bytes: Addressing fields
41 * 14 bytes: Auxiliary Security Header
42 */
43#define IEEE802154_MAX_HEADER_LEN (2 + 1 + 20 + 14)
44#define IEEE802154_MIN_HEADER_LEN (IEEE802154_ACK_PSDU_LEN - \
45 IEEE802154_FCS_LEN)
alex.bluesman.smirnov@gmail.com719269a2011-11-10 07:38:38 +000046
Alexander Aring702bf372014-11-12 03:36:57 +010047#define IEEE802154_PAN_ID_BROADCAST 0xffff
Alexander Aring9830c622014-11-12 03:36:58 +010048#define IEEE802154_ADDR_SHORT_BROADCAST 0xffff
49#define IEEE802154_ADDR_SHORT_UNSPEC 0xfffe
Alexander Aring702bf372014-11-12 03:36:57 +010050
Alexander Aring1906bbb2014-11-05 20:51:21 +010051#define IEEE802154_EXTENDED_ADDR_LEN 8
Alexander Aring118a5cf2016-04-11 11:04:15 +020052#define IEEE802154_SHORT_ADDR_LEN 2
Alexander Aring19580cc2016-07-06 23:32:25 +020053#define IEEE802154_PAN_ID_LEN 2
Alexander Aring1906bbb2014-11-05 20:51:21 +010054
Alexander Aring61f2dcb2014-11-12 19:51:56 +010055#define IEEE802154_LIFS_PERIOD 40
56#define IEEE802154_SIFS_PERIOD 12
Alexander Aring3f3c4bb2015-03-04 21:19:59 +010057#define IEEE802154_MAX_SIFS_FRAME_SIZE 18
Alexander Aring61f2dcb2014-11-12 19:51:56 +010058
Alexander Aringcb41c8d2014-11-17 08:20:54 +010059#define IEEE802154_MAX_CHANNEL 26
60#define IEEE802154_MAX_PAGE 31
61
Sergey Lapin9ec76712009-06-08 12:18:48 +000062#define IEEE802154_FC_TYPE_BEACON 0x0 /* Frame is beacon */
63#define IEEE802154_FC_TYPE_DATA 0x1 /* Frame is data */
64#define IEEE802154_FC_TYPE_ACK 0x2 /* Frame is acknowledgment */
65#define IEEE802154_FC_TYPE_MAC_CMD 0x3 /* Frame is MAC command */
66
67#define IEEE802154_FC_TYPE_SHIFT 0
68#define IEEE802154_FC_TYPE_MASK ((1 << 3) - 1)
69#define IEEE802154_FC_TYPE(x) ((x & IEEE802154_FC_TYPE_MASK) >> IEEE802154_FC_TYPE_SHIFT)
70#define IEEE802154_FC_SET_TYPE(v, x) do { \
71 v = (((v) & ~IEEE802154_FC_TYPE_MASK) | \
72 (((x) << IEEE802154_FC_TYPE_SHIFT) & IEEE802154_FC_TYPE_MASK)); \
73 } while (0)
74
Phoebe Buckheister94b4f6c2014-03-14 21:24:00 +010075#define IEEE802154_FC_SECEN_SHIFT 3
76#define IEEE802154_FC_SECEN (1 << IEEE802154_FC_SECEN_SHIFT)
77#define IEEE802154_FC_FRPEND_SHIFT 4
78#define IEEE802154_FC_FRPEND (1 << IEEE802154_FC_FRPEND_SHIFT)
79#define IEEE802154_FC_ACK_REQ_SHIFT 5
80#define IEEE802154_FC_ACK_REQ (1 << IEEE802154_FC_ACK_REQ_SHIFT)
81#define IEEE802154_FC_INTRA_PAN_SHIFT 6
82#define IEEE802154_FC_INTRA_PAN (1 << IEEE802154_FC_INTRA_PAN_SHIFT)
Sergey Lapin9ec76712009-06-08 12:18:48 +000083
84#define IEEE802154_FC_SAMODE_SHIFT 14
85#define IEEE802154_FC_SAMODE_MASK (3 << IEEE802154_FC_SAMODE_SHIFT)
86#define IEEE802154_FC_DAMODE_SHIFT 10
87#define IEEE802154_FC_DAMODE_MASK (3 << IEEE802154_FC_DAMODE_SHIFT)
88
Phoebe Buckheister94b4f6c2014-03-14 21:24:00 +010089#define IEEE802154_FC_VERSION_SHIFT 12
90#define IEEE802154_FC_VERSION_MASK (3 << IEEE802154_FC_VERSION_SHIFT)
91#define IEEE802154_FC_VERSION(x) ((x & IEEE802154_FC_VERSION_MASK) >> IEEE802154_FC_VERSION_SHIFT)
92
Sergey Lapin9ec76712009-06-08 12:18:48 +000093#define IEEE802154_FC_SAMODE(x) \
94 (((x) & IEEE802154_FC_SAMODE_MASK) >> IEEE802154_FC_SAMODE_SHIFT)
95
96#define IEEE802154_FC_DAMODE(x) \
97 (((x) & IEEE802154_FC_DAMODE_MASK) >> IEEE802154_FC_DAMODE_SHIFT)
98
Phoebe Buckheister94b4f6c2014-03-14 21:24:00 +010099#define IEEE802154_SCF_SECLEVEL_MASK 7
100#define IEEE802154_SCF_SECLEVEL_SHIFT 0
101#define IEEE802154_SCF_SECLEVEL(x) (x & IEEE802154_SCF_SECLEVEL_MASK)
102#define IEEE802154_SCF_KEY_ID_MODE_SHIFT 3
103#define IEEE802154_SCF_KEY_ID_MODE_MASK (3 << IEEE802154_SCF_KEY_ID_MODE_SHIFT)
104#define IEEE802154_SCF_KEY_ID_MODE(x) \
105 ((x & IEEE802154_SCF_KEY_ID_MODE_MASK) >> IEEE802154_SCF_KEY_ID_MODE_SHIFT)
106
107#define IEEE802154_SCF_KEY_IMPLICIT 0
108#define IEEE802154_SCF_KEY_INDEX 1
109#define IEEE802154_SCF_KEY_SHORT_INDEX 2
110#define IEEE802154_SCF_KEY_HW_INDEX 3
Sergey Lapin9ec76712009-06-08 12:18:48 +0000111
Phoebe Buckheisterc3a61142014-05-14 17:43:06 +0200112#define IEEE802154_SCF_SECLEVEL_NONE 0
113#define IEEE802154_SCF_SECLEVEL_MIC32 1
114#define IEEE802154_SCF_SECLEVEL_MIC64 2
115#define IEEE802154_SCF_SECLEVEL_MIC128 3
116#define IEEE802154_SCF_SECLEVEL_ENC 4
117#define IEEE802154_SCF_SECLEVEL_ENC_MIC32 5
118#define IEEE802154_SCF_SECLEVEL_ENC_MIC64 6
119#define IEEE802154_SCF_SECLEVEL_ENC_MIC128 7
120
alex.bluesman.smirnov@gmail.com719269a2011-11-10 07:38:38 +0000121/* MAC footer size */
122#define IEEE802154_MFR_SIZE 2 /* 2 octets */
123
Sergey Lapin9ec76712009-06-08 12:18:48 +0000124/* MAC's Command Frames Identifiers */
125#define IEEE802154_CMD_ASSOCIATION_REQ 0x01
126#define IEEE802154_CMD_ASSOCIATION_RESP 0x02
127#define IEEE802154_CMD_DISASSOCIATION_NOTIFY 0x03
128#define IEEE802154_CMD_DATA_REQ 0x04
129#define IEEE802154_CMD_PANID_CONFLICT_NOTIFY 0x05
130#define IEEE802154_CMD_ORPHAN_NOTIFY 0x06
131#define IEEE802154_CMD_BEACON_REQ 0x07
132#define IEEE802154_CMD_COORD_REALIGN_NOTIFY 0x08
133#define IEEE802154_CMD_GTS_REQ 0x09
134
135/*
136 * The return values of MAC operations
137 */
138enum {
139 /*
140 * The requested operation was completed successfully.
141 * For a transmission request, this value indicates
142 * a successful transmission.
143 */
144 IEEE802154_SUCCESS = 0x0,
145
146 /* The beacon was lost following a synchronization request. */
147 IEEE802154_BEACON_LOSS = 0xe0,
148 /*
149 * A transmission could not take place due to activity on the
150 * channel, i.e., the CSMA-CA mechanism has failed.
151 */
152 IEEE802154_CHNL_ACCESS_FAIL = 0xe1,
153 /* The GTS request has been denied by the PAN coordinator. */
154 IEEE802154_DENINED = 0xe2,
155 /* The attempt to disable the transceiver has failed. */
156 IEEE802154_DISABLE_TRX_FAIL = 0xe3,
157 /*
158 * The received frame induces a failed security check according to
159 * the security suite.
160 */
161 IEEE802154_FAILED_SECURITY_CHECK = 0xe4,
162 /*
163 * The frame resulting from secure processing has a length that is
164 * greater than aMACMaxFrameSize.
165 */
166 IEEE802154_FRAME_TOO_LONG = 0xe5,
167 /*
168 * The requested GTS transmission failed because the specified GTS
169 * either did not have a transmit GTS direction or was not defined.
170 */
171 IEEE802154_INVALID_GTS = 0xe6,
172 /*
173 * A request to purge an MSDU from the transaction queue was made using
174 * an MSDU handle that was not found in the transaction table.
175 */
176 IEEE802154_INVALID_HANDLE = 0xe7,
177 /* A parameter in the primitive is out of the valid range.*/
178 IEEE802154_INVALID_PARAMETER = 0xe8,
179 /* No acknowledgment was received after aMaxFrameRetries. */
180 IEEE802154_NO_ACK = 0xe9,
181 /* A scan operation failed to find any network beacons.*/
182 IEEE802154_NO_BEACON = 0xea,
183 /* No response data were available following a request. */
184 IEEE802154_NO_DATA = 0xeb,
185 /* The operation failed because a short address was not allocated. */
186 IEEE802154_NO_SHORT_ADDRESS = 0xec,
187 /*
188 * A receiver enable request was unsuccessful because it could not be
189 * completed within the CAP.
190 */
191 IEEE802154_OUT_OF_CAP = 0xed,
192 /*
193 * A PAN identifier conflict has been detected and communicated to the
194 * PAN coordinator.
195 */
196 IEEE802154_PANID_CONFLICT = 0xee,
197 /* A coordinator realignment command has been received. */
198 IEEE802154_REALIGMENT = 0xef,
199 /* The transaction has expired and its information discarded. */
200 IEEE802154_TRANSACTION_EXPIRED = 0xf0,
201 /* There is no capacity to store the transaction. */
202 IEEE802154_TRANSACTION_OVERFLOW = 0xf1,
203 /*
204 * The transceiver was in the transmitter enabled state when the
205 * receiver was requested to be enabled.
206 */
207 IEEE802154_TX_ACTIVE = 0xf2,
208 /* The appropriate key is not available in the ACL. */
209 IEEE802154_UNAVAILABLE_KEY = 0xf3,
210 /*
211 * A SET/GET request was issued with the identifier of a PIB attribute
212 * that is not supported.
213 */
214 IEEE802154_UNSUPPORTED_ATTR = 0xf4,
215 /*
216 * A request to perform a scan operation failed because the MLME was
217 * in the process of performing a previously initiated scan operation.
218 */
219 IEEE802154_SCAN_IN_PROGRESS = 0xfc,
220};
221
Alexander Aring54552d02015-09-02 14:21:29 +0200222/* frame control handling */
223#define IEEE802154_FCTL_FTYPE 0x0003
Alexander Aring79750ac2015-09-21 11:24:33 +0200224#define IEEE802154_FCTL_ACKREQ 0x0020
Alexandre Macabiesbc405cd2016-04-12 18:53:00 +0200225#define IEEE802154_FCTL_SECEN 0x0004
Alexander Aring54552d02015-09-02 14:21:29 +0200226#define IEEE802154_FCTL_INTRA_PAN 0x0040
Alexander Aring9cc577d2016-07-06 23:32:24 +0200227#define IEEE802154_FCTL_DADDR 0x0c00
Alexander Aring19580cc2016-07-06 23:32:25 +0200228#define IEEE802154_FCTL_SADDR 0xc000
Alexander Aring54552d02015-09-02 14:21:29 +0200229
230#define IEEE802154_FTYPE_DATA 0x0001
231
Alexander Aring9cc577d2016-07-06 23:32:24 +0200232#define IEEE802154_FCTL_ADDR_NONE 0x0000
233#define IEEE802154_FCTL_DADDR_SHORT 0x0800
234#define IEEE802154_FCTL_DADDR_EXTENDED 0x0c00
Alexander Aring19580cc2016-07-06 23:32:25 +0200235#define IEEE802154_FCTL_SADDR_SHORT 0x8000
236#define IEEE802154_FCTL_SADDR_EXTENDED 0xc000
Alexander Aring9cc577d2016-07-06 23:32:24 +0200237
Alexander Aring54552d02015-09-02 14:21:29 +0200238/*
239 * ieee802154_is_data - check if type is IEEE802154_FTYPE_DATA
240 * @fc: frame control bytes in little-endian byteorder
241 */
242static inline int ieee802154_is_data(__le16 fc)
243{
244 return (fc & cpu_to_le16(IEEE802154_FCTL_FTYPE)) ==
245 cpu_to_le16(IEEE802154_FTYPE_DATA);
246}
247
248/**
Alexandre Macabiesbc405cd2016-04-12 18:53:00 +0200249 * ieee802154_is_secen - check if Security bit is set
250 * @fc: frame control bytes in little-endian byteorder
251 */
252static inline bool ieee802154_is_secen(__le16 fc)
253{
254 return fc & cpu_to_le16(IEEE802154_FCTL_SECEN);
255}
256
257/**
Alexander Aring79750ac2015-09-21 11:24:33 +0200258 * ieee802154_is_ackreq - check if acknowledgment request bit is set
259 * @fc: frame control bytes in little-endian byteorder
260 */
261static inline bool ieee802154_is_ackreq(__le16 fc)
262{
263 return fc & cpu_to_le16(IEEE802154_FCTL_ACKREQ);
264}
265
266/**
Alexander Aring54552d02015-09-02 14:21:29 +0200267 * ieee802154_is_intra_pan - check if intra pan id communication
268 * @fc: frame control bytes in little-endian byteorder
269 */
270static inline bool ieee802154_is_intra_pan(__le16 fc)
271{
272 return fc & cpu_to_le16(IEEE802154_FCTL_INTRA_PAN);
273}
274
Alexander Aring9cc577d2016-07-06 23:32:24 +0200275/*
276 * ieee802154_daddr_mode - get daddr mode from fc
277 * @fc: frame control bytes in little-endian byteorder
278 */
279static inline __le16 ieee802154_daddr_mode(__le16 fc)
280{
281 return fc & cpu_to_le16(IEEE802154_FCTL_DADDR);
282}
283
Alexander Aring19580cc2016-07-06 23:32:25 +0200284/*
285 * ieee802154_saddr_mode - get saddr mode from fc
286 * @fc: frame control bytes in little-endian byteorder
287 */
288static inline __le16 ieee802154_saddr_mode(__le16 fc)
289{
290 return fc & cpu_to_le16(IEEE802154_FCTL_SADDR);
291}
292
Alexander Aringfa491002014-10-27 17:13:40 +0100293/**
294 * ieee802154_is_valid_psdu_len - check if psdu len is valid
Alexander Aring306f7aa2015-02-11 14:39:15 +0100295 * available lengths:
296 * 0-4 Reserved
297 * 5 MPDU (Acknowledgment)
298 * 6-8 Reserved
299 * 9-127 MPDU
300 *
Alexander Aringfa491002014-10-27 17:13:40 +0100301 * @len: psdu len with (MHR + payload + MFR)
302 */
Alexander Aringb7594142016-04-11 11:04:14 +0200303static inline bool ieee802154_is_valid_psdu_len(u8 len)
Alexander Aringfa491002014-10-27 17:13:40 +0100304{
Alexander Aring306f7aa2015-02-11 14:39:15 +0100305 return (len == IEEE802154_ACK_PSDU_LEN ||
306 (len >= IEEE802154_MIN_PSDU_LEN && len <= IEEE802154_MTU));
Alexander Aringfa491002014-10-27 17:13:40 +0100307}
Sergey Lapin9ec76712009-06-08 12:18:48 +0000308
Alexander Aringcb904b02014-11-02 04:18:45 +0100309/**
Alexander Aringb7594142016-04-11 11:04:14 +0200310 * ieee802154_is_valid_extended_unicast_addr - check if extended addr is valid
Alexander Aringcb904b02014-11-02 04:18:45 +0100311 * @addr: extended addr to check
312 */
Alexander Aringb7594142016-04-11 11:04:14 +0200313static inline bool ieee802154_is_valid_extended_unicast_addr(__le64 addr)
Alexander Aringcb904b02014-11-02 04:18:45 +0100314{
Lennert Buytenhekdaf4e2c2015-05-28 15:38:43 +0300315 /* Bail out if the address is all zero, or if the group
316 * address bit is set.
Alexander Aringcb904b02014-11-02 04:18:45 +0100317 */
Dan Carpenter0d8a52f2014-11-04 11:55:09 +0300318 return ((addr != cpu_to_le64(0x0000000000000000ULL)) &&
Lennert Buytenhekdaf4e2c2015-05-28 15:38:43 +0300319 !(addr & cpu_to_le64(0x0100000000000000ULL)));
Alexander Aringcb904b02014-11-02 04:18:45 +0100320}
321
Alexander Aring35d5a372014-11-05 20:51:22 +0100322/**
Alexander Aring118a5cf2016-04-11 11:04:15 +0200323 * ieee802154_is_broadcast_short_addr - check if short addr is broadcast
324 * @addr: short addr to check
325 */
326static inline bool ieee802154_is_broadcast_short_addr(__le16 addr)
327{
328 return (addr == cpu_to_le16(IEEE802154_ADDR_SHORT_BROADCAST));
329}
330
331/**
332 * ieee802154_is_unspec_short_addr - check if short addr is unspecified
333 * @addr: short addr to check
334 */
335static inline bool ieee802154_is_unspec_short_addr(__le16 addr)
336{
337 return (addr == cpu_to_le16(IEEE802154_ADDR_SHORT_UNSPEC));
338}
339
340/**
341 * ieee802154_is_valid_src_short_addr - check if source short address is valid
342 * @addr: short addr to check
343 */
344static inline bool ieee802154_is_valid_src_short_addr(__le16 addr)
345{
346 return !(ieee802154_is_broadcast_short_addr(addr) ||
347 ieee802154_is_unspec_short_addr(addr));
348}
349
350/**
Alexander Aring35d5a372014-11-05 20:51:22 +0100351 * ieee802154_random_extended_addr - generates a random extended address
352 * @addr: extended addr pointer to place the random address
353 */
354static inline void ieee802154_random_extended_addr(__le64 *addr)
355{
356 get_random_bytes(addr, IEEE802154_EXTENDED_ADDR_LEN);
357
Lennert Buytenhek3b369bd2015-05-28 15:38:32 +0300358 /* clear the group bit, and set the locally administered bit */
359 ((u8 *)addr)[IEEE802154_EXTENDED_ADDR_LEN - 1] &= ~0x01;
360 ((u8 *)addr)[IEEE802154_EXTENDED_ADDR_LEN - 1] |= 0x02;
Alexander Aring35d5a372014-11-05 20:51:22 +0100361}
362
Alexander Aring4ca24ac2014-10-25 09:41:04 +0200363#endif /* LINUX_IEEE802154_H */