Blame view

include/net/ieee802154_netdev.h 8.75 KB
1802d0bee   Thomas Gleixner   treewide: Replace...
1
  /* SPDX-License-Identifier: GPL-2.0-only */
9ec767160   Sergey Lapin   net: add IEEE 802...
2
3
4
  /*
   * An interface between IEEE802.15.4 device and rest of the kernel.
   *
74a02fcf7   alex.bluesman.smirnov@gmail.com   mac802154: declar...
5
   * Copyright (C) 2007-2012 Siemens AG
9ec767160   Sergey Lapin   net: add IEEE 802...
6
   *
9ec767160   Sergey Lapin   net: add IEEE 802...
7
8
9
10
11
   * Written by:
   * Pavel Smolenskiy <pavel.smolenskiy@gmail.com>
   * Maxim Gorbachyov <maxim.gorbachev@siemens.com>
   * Maxim Osipov <maxim.osipov@siemens.com>
   * Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
74a02fcf7   alex.bluesman.smirnov@gmail.com   mac802154: declar...
12
   * Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
9ec767160   Sergey Lapin   net: add IEEE 802...
13
14
15
16
   */
  
  #ifndef IEEE802154_NETDEVICE_H
  #define IEEE802154_NETDEVICE_H
1cd829c83   alex.bluesman.smirnov@gmail.com   mac802154: RX dat...
17
  #include <net/af_ieee802154.h>
94b4f6c21   Phoebe Buckheister   ieee802154: add h...
18
19
  #include <linux/netdevice.h>
  #include <linux/skbuff.h>
4ca24aca5   Alexander Aring   ieee802154: move ...
20
  #include <linux/ieee802154.h>
94b4f6c21   Phoebe Buckheister   ieee802154: add h...
21

7fe9a3882   Alexander Aring   ieee802154: rewor...
22
  #include <net/cfg802154.h>
94b4f6c21   Phoebe Buckheister   ieee802154: add h...
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
  struct ieee802154_sechdr {
  #if defined(__LITTLE_ENDIAN_BITFIELD)
  	u8 level:3,
  	   key_id_mode:2,
  	   reserved:3;
  #elif defined(__BIG_ENDIAN_BITFIELD)
  	u8 reserved:3,
  	   key_id_mode:2,
  	   level:3;
  #else
  #error	"Please fix <asm/byteorder.h>"
  #endif
  	u8 key_id;
  	__le32 frame_counter;
  	union {
  		__le32 short_src;
  		__le64 extended_src;
  	};
  };
1cd829c83   alex.bluesman.smirnov@gmail.com   mac802154: RX dat...
42

94b4f6c21   Phoebe Buckheister   ieee802154: add h...
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
  struct ieee802154_hdr_fc {
  #if defined(__LITTLE_ENDIAN_BITFIELD)
  	u16 type:3,
  	    security_enabled:1,
  	    frame_pending:1,
  	    ack_request:1,
  	    intra_pan:1,
  	    reserved:3,
  	    dest_addr_mode:2,
  	    version:2,
  	    source_addr_mode:2;
  #elif defined(__BIG_ENDIAN_BITFIELD)
  	u16 reserved:1,
  	    intra_pan:1,
  	    ack_request:1,
  	    frame_pending:1,
  	    security_enabled:1,
  	    type:3,
  	    source_addr_mode:2,
  	    version:2,
  	    dest_addr_mode:2,
  	    reserved2:2;
  #else
  #error	"Please fix <asm/byteorder.h>"
  #endif
  };
  
  struct ieee802154_hdr {
  	struct ieee802154_hdr_fc fc;
  	u8 seq;
  	struct ieee802154_addr source;
  	struct ieee802154_addr dest;
  	struct ieee802154_sechdr sec;
  };
  
  /* pushes hdr onto the skb. fields of hdr->fc that can be calculated from
   * the contents of hdr will be, and the actual value of those bits in
   * hdr->fc will be ignored. this includes the INTRA_PAN bit and the frame
   * version, if SECEN is set.
   */
a1da67b81   Alexander Aring   ieee802154: heade...
83
  int ieee802154_hdr_push(struct sk_buff *skb, struct ieee802154_hdr *hdr);
94b4f6c21   Phoebe Buckheister   ieee802154: add h...
84
85
86
87
88
89
90
91
92
93
94
95
  
  /* pulls the entire 802.15.4 header off of the skb, including the security
   * header, and performs pan id decompression
   */
  int ieee802154_hdr_pull(struct sk_buff *skb, struct ieee802154_hdr *hdr);
  
  /* parses the frame control, sequence number of address fields in a given skb
   * and stores them into hdr, performing pan id decompression and length checks
   * to be suitable for use in header_ops.parse
   */
  int ieee802154_hdr_peek_addrs(const struct sk_buff *skb,
  			      struct ieee802154_hdr *hdr);
c3a6114f3   Phoebe Buckheister   ieee802154: add d...
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
  /* parses the full 802.15.4 header a given skb and stores them into hdr,
   * performing pan id decompression and length checks to be suitable for use in
   * header_ops.parse
   */
  int ieee802154_hdr_peek(const struct sk_buff *skb, struct ieee802154_hdr *hdr);
  
  int ieee802154_max_payload(const struct ieee802154_hdr *hdr);
  
  static inline int
  ieee802154_sechdr_authtag_len(const struct ieee802154_sechdr *sec)
  {
  	switch (sec->level) {
  	case IEEE802154_SCF_SECLEVEL_MIC32:
  	case IEEE802154_SCF_SECLEVEL_ENC_MIC32:
  		return 4;
  	case IEEE802154_SCF_SECLEVEL_MIC64:
  	case IEEE802154_SCF_SECLEVEL_ENC_MIC64:
  		return 8;
  	case IEEE802154_SCF_SECLEVEL_MIC128:
  	case IEEE802154_SCF_SECLEVEL_ENC_MIC128:
  		return 16;
  	case IEEE802154_SCF_SECLEVEL_NONE:
  	case IEEE802154_SCF_SECLEVEL_ENC:
  	default:
  		return 0;
  	}
  }
94b4f6c21   Phoebe Buckheister   ieee802154: add h...
123
124
125
126
127
128
129
130
131
132
  static inline int ieee802154_hdr_length(struct sk_buff *skb)
  {
  	struct ieee802154_hdr hdr;
  	int len = ieee802154_hdr_pull(skb, &hdr);
  
  	if (len > 0)
  		skb_push(skb, len);
  
  	return len;
  }
46ef0eb3e   Phoebe Buckheister   ieee802154: add a...
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
  static inline bool ieee802154_addr_equal(const struct ieee802154_addr *a1,
  					 const struct ieee802154_addr *a2)
  {
  	if (a1->pan_id != a2->pan_id || a1->mode != a2->mode)
  		return false;
  
  	if ((a1->mode == IEEE802154_ADDR_LONG &&
  	     a1->extended_addr != a2->extended_addr) ||
  	    (a1->mode == IEEE802154_ADDR_SHORT &&
  	     a1->short_addr != a2->short_addr))
  		return false;
  
  	return true;
  }
  
  static inline __le64 ieee802154_devaddr_from_raw(const void *raw)
  {
  	u64 temp;
  
  	memcpy(&temp, raw, IEEE802154_ADDR_LEN);
  	return (__force __le64)swab64(temp);
  }
  
  static inline void ieee802154_devaddr_to_raw(void *raw, __le64 addr)
  {
  	u64 temp = swab64((__force u64)addr);
  
  	memcpy(raw, &temp, IEEE802154_ADDR_LEN);
  }
  
  static inline void ieee802154_addr_from_sa(struct ieee802154_addr *a,
  					   const struct ieee802154_addr_sa *sa)
  {
  	a->mode = sa->addr_type;
  	a->pan_id = cpu_to_le16(sa->pan_id);
  
  	switch (a->mode) {
  	case IEEE802154_ADDR_SHORT:
  		a->short_addr = cpu_to_le16(sa->short_addr);
  		break;
  	case IEEE802154_ADDR_LONG:
  		a->extended_addr = ieee802154_devaddr_from_raw(sa->hwaddr);
  		break;
  	}
  }
  
  static inline void ieee802154_addr_to_sa(struct ieee802154_addr_sa *sa,
  					 const struct ieee802154_addr *a)
  {
  	sa->addr_type = a->mode;
  	sa->pan_id = le16_to_cpu(a->pan_id);
  
  	switch (a->mode) {
  	case IEEE802154_ADDR_SHORT:
  		sa->short_addr = le16_to_cpu(a->short_addr);
  		break;
  	case IEEE802154_ADDR_LONG:
  		ieee802154_devaddr_to_raw(sa->hwaddr, a->extended_addr);
  		break;
  	}
  }
9ec767160   Sergey Lapin   net: add IEEE 802...
194
195
196
197
198
199
  /*
   * A control block of skb passed between the ARPHRD_IEEE802154 device
   * and other stack parts.
   */
  struct ieee802154_mac_cb {
  	u8 lqi;
32edc40ae   Phoebe Buckheister   ieee802154: chang...
200
201
202
  	u8 type;
  	bool ackreq;
  	bool secen;
f30be4d53   Phoebe Buckheister   mac802154: integr...
203
204
205
  	bool secen_override;
  	u8 seclevel;
  	bool seclevel_override;
ae531b947   Phoebe Buckheister   ieee802154: use i...
206
207
  	struct ieee802154_addr source;
  	struct ieee802154_addr dest;
9ec767160   Sergey Lapin   net: add IEEE 802...
208
209
210
211
212
213
  };
  
  static inline struct ieee802154_mac_cb *mac_cb(struct sk_buff *skb)
  {
  	return (struct ieee802154_mac_cb *)skb->cb;
  }
32edc40ae   Phoebe Buckheister   ieee802154: chang...
214
  static inline struct ieee802154_mac_cb *mac_cb_init(struct sk_buff *skb)
9ec767160   Sergey Lapin   net: add IEEE 802...
215
  {
32edc40ae   Phoebe Buckheister   ieee802154: chang...
216
  	BUILD_BUG_ON(sizeof(struct ieee802154_mac_cb) > sizeof(skb->cb));
9ec767160   Sergey Lapin   net: add IEEE 802...
217

32edc40ae   Phoebe Buckheister   ieee802154: chang...
218
219
  	memset(skb->cb, 0, sizeof(struct ieee802154_mac_cb));
  	return mac_cb(skb);
9ec767160   Sergey Lapin   net: add IEEE 802...
220
  }
dc20759f2   Phoebe Buckheister   ieee802154: add t...
221
222
223
  enum {
  	IEEE802154_LLSEC_DEVKEY_IGNORE,
  	IEEE802154_LLSEC_DEVKEY_RESTRICT,
f0f77dc6b   Phoebe Buckheister   ieee802154, mac80...
224
  	IEEE802154_LLSEC_DEVKEY_RECORD,
dc20759f2   Phoebe Buckheister   ieee802154: add t...
225
226
227
  
  	__IEEE802154_LLSEC_DEVKEY_MAX,
  };
9ec767160   Sergey Lapin   net: add IEEE 802...
228
229
230
231
  #define IEEE802154_MAC_SCAN_ED		0
  #define IEEE802154_MAC_SCAN_ACTIVE	1
  #define IEEE802154_MAC_SCAN_PASSIVE	2
  #define IEEE802154_MAC_SCAN_ORPHAN	3
e462ded69   Phoebe Buckheister   mac802154: make c...
232
233
234
235
236
237
238
239
  struct ieee802154_mac_params {
  	s8 transmit_power;
  	u8 min_be;
  	u8 max_be;
  	u8 csma_retries;
  	s8 frame_retries;
  
  	bool lbt;
7fe9a3882   Alexander Aring   ieee802154: rewor...
240
  	struct wpan_phy_cca cca;
e462ded69   Phoebe Buckheister   mac802154: make c...
241
242
  	s32 cca_ed_level;
  };
42723448b   Dmitry Eremin-Solenikov   ieee802154: add a...
243
  struct wpan_phy;
dc20759f2   Phoebe Buckheister   ieee802154: add t...
244
245
  
  enum {
fe89e6905   Varka Bhadram   mac802154: cleanu...
246
247
248
249
250
251
252
253
254
  	IEEE802154_LLSEC_PARAM_ENABLED		= BIT(0),
  	IEEE802154_LLSEC_PARAM_FRAME_COUNTER	= BIT(1),
  	IEEE802154_LLSEC_PARAM_OUT_LEVEL	= BIT(2),
  	IEEE802154_LLSEC_PARAM_OUT_KEY		= BIT(3),
  	IEEE802154_LLSEC_PARAM_KEY_SOURCE	= BIT(4),
  	IEEE802154_LLSEC_PARAM_PAN_ID		= BIT(5),
  	IEEE802154_LLSEC_PARAM_HWADDR		= BIT(6),
  	IEEE802154_LLSEC_PARAM_COORD_HWADDR	= BIT(7),
  	IEEE802154_LLSEC_PARAM_COORD_SHORTADDR	= BIT(8),
dc20759f2   Phoebe Buckheister   ieee802154: add t...
255
  };
29e023746   Phoebe Buckheister   mac802154: add ll...
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
  struct ieee802154_llsec_ops {
  	int (*get_params)(struct net_device *dev,
  			  struct ieee802154_llsec_params *params);
  	int (*set_params)(struct net_device *dev,
  			  const struct ieee802154_llsec_params *params,
  			  int changed);
  
  	int (*add_key)(struct net_device *dev,
  		       const struct ieee802154_llsec_key_id *id,
  		       const struct ieee802154_llsec_key *key);
  	int (*del_key)(struct net_device *dev,
  		       const struct ieee802154_llsec_key_id *id);
  
  	int (*add_dev)(struct net_device *dev,
  		       const struct ieee802154_llsec_device *llsec_dev);
  	int (*del_dev)(struct net_device *dev, __le64 dev_addr);
  
  	int (*add_devkey)(struct net_device *dev,
  			  __le64 device_addr,
  			  const struct ieee802154_llsec_device_key *key);
  	int (*del_devkey)(struct net_device *dev,
  			  __le64 device_addr,
  			  const struct ieee802154_llsec_device_key *key);
  
  	int (*add_seclevel)(struct net_device *dev,
  			    const struct ieee802154_llsec_seclevel *sl);
  	int (*del_seclevel)(struct net_device *dev,
  			    const struct ieee802154_llsec_seclevel *sl);
  
  	void (*lock_table)(struct net_device *dev);
  	void (*get_table)(struct net_device *dev,
  			  struct ieee802154_llsec_table **t);
  	void (*unlock_table)(struct net_device *dev);
  };
9ec767160   Sergey Lapin   net: add IEEE 802...
290
291
  /*
   * This should be located at net_device->ml_priv
42723448b   Dmitry Eremin-Solenikov   ieee802154: add a...
292
293
294
   *
   * get_phy should increment the reference counting on returned phy.
   * Use wpan_wpy_put to put that reference.
9ec767160   Sergey Lapin   net: add IEEE 802...
295
296
   */
  struct ieee802154_mlme_ops {
56aa091d6   Werner Almesberger   ieee802154/nl-mac...
297
  	/* The following fields are optional (can be NULL). */
9ec767160   Sergey Lapin   net: add IEEE 802...
298
  	int (*assoc_req)(struct net_device *dev,
ae531b947   Phoebe Buckheister   ieee802154: use i...
299
  			struct ieee802154_addr *addr,
16eea493d   Dmitry Eremin-Solenikov   ieee802154: add s...
300
  			u8 channel, u8 page, u8 cap);
9ec767160   Sergey Lapin   net: add IEEE 802...
301
  	int (*assoc_resp)(struct net_device *dev,
ae531b947   Phoebe Buckheister   ieee802154: use i...
302
  			struct ieee802154_addr *addr,
b70ab2e87   Phoebe Buckheister   ieee802154: enfor...
303
  			__le16 short_addr, u8 status);
9ec767160   Sergey Lapin   net: add IEEE 802...
304
  	int (*disassoc_req)(struct net_device *dev,
ae531b947   Phoebe Buckheister   ieee802154: use i...
305
  			struct ieee802154_addr *addr,
9ec767160   Sergey Lapin   net: add IEEE 802...
306
307
  			u8 reason);
  	int (*start_req)(struct net_device *dev,
ae531b947   Phoebe Buckheister   ieee802154: use i...
308
  			struct ieee802154_addr *addr,
16eea493d   Dmitry Eremin-Solenikov   ieee802154: add s...
309
  			u8 channel, u8 page, u8 bcn_ord, u8 sf_ord,
9ec767160   Sergey Lapin   net: add IEEE 802...
310
311
  			u8 pan_coord, u8 blx, u8 coord_realign);
  	int (*scan_req)(struct net_device *dev,
16eea493d   Dmitry Eremin-Solenikov   ieee802154: add s...
312
  			u8 type, u32 channels, u8 page, u8 duration);
9ec767160   Sergey Lapin   net: add IEEE 802...
313

e462ded69   Phoebe Buckheister   mac802154: make c...
314
315
316
317
  	int (*set_mac_params)(struct net_device *dev,
  			      const struct ieee802154_mac_params *params);
  	void (*get_mac_params)(struct net_device *dev,
  			       struct ieee802154_mac_params *params);
29663b0cc   Julia Lawall   mac802154: consti...
318
  	const struct ieee802154_llsec_ops *llsec;
9ec767160   Sergey Lapin   net: add IEEE 802...
319
  };
74a02fcf7   alex.bluesman.smirnov@gmail.com   mac802154: declar...
320
321
  static inline struct ieee802154_mlme_ops *
  ieee802154_mlme_ops(const struct net_device *dev)
9ec767160   Sergey Lapin   net: add IEEE 802...
322
323
324
  {
  	return dev->ml_priv;
  }
74a02fcf7   alex.bluesman.smirnov@gmail.com   mac802154: declar...
325
  #endif