2 * Copyright (C) 2014 Fraunhofer ITWM
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2
6 * as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
14 * Phoebe Buckheister <phoebe.buckheister@itwm.fraunhofer.de>
17 #include <linux/err.h>
18 #include <linux/bug.h>
19 #include <linux/completion.h>
20 #include <linux/crypto.h>
21 #include <linux/ieee802154.h>
22 #include <crypto/aead.h>
24 #include "ieee802154_i.h"
27 static void llsec_key_put(struct mac802154_llsec_key
*key
);
28 static bool llsec_key_id_equal(const struct ieee802154_llsec_key_id
*a
,
29 const struct ieee802154_llsec_key_id
*b
);
31 static void llsec_dev_free(struct mac802154_llsec_device
*dev
);
33 void mac802154_llsec_init(struct mac802154_llsec
*sec
)
35 memset(sec
, 0, sizeof(*sec
));
37 memset(&sec
->params
.default_key_source
, 0xFF, IEEE802154_ADDR_LEN
);
39 INIT_LIST_HEAD(&sec
->table
.security_levels
);
40 INIT_LIST_HEAD(&sec
->table
.devices
);
41 INIT_LIST_HEAD(&sec
->table
.keys
);
42 hash_init(sec
->devices_short
);
43 hash_init(sec
->devices_hw
);
44 rwlock_init(&sec
->lock
);
47 void mac802154_llsec_destroy(struct mac802154_llsec
*sec
)
49 struct ieee802154_llsec_seclevel
*sl
, *sn
;
50 struct ieee802154_llsec_device
*dev
, *dn
;
51 struct ieee802154_llsec_key_entry
*key
, *kn
;
53 list_for_each_entry_safe(sl
, sn
, &sec
->table
.security_levels
, list
) {
54 struct mac802154_llsec_seclevel
*msl
;
56 msl
= container_of(sl
, struct mac802154_llsec_seclevel
, level
);
61 list_for_each_entry_safe(dev
, dn
, &sec
->table
.devices
, list
) {
62 struct mac802154_llsec_device
*mdev
;
64 mdev
= container_of(dev
, struct mac802154_llsec_device
, dev
);
69 list_for_each_entry_safe(key
, kn
, &sec
->table
.keys
, list
) {
70 struct mac802154_llsec_key
*mkey
;
72 mkey
= container_of(key
->key
, struct mac802154_llsec_key
, key
);
79 int mac802154_llsec_get_params(struct mac802154_llsec
*sec
,
80 struct ieee802154_llsec_params
*params
)
82 read_lock_bh(&sec
->lock
);
83 *params
= sec
->params
;
84 read_unlock_bh(&sec
->lock
);
89 int mac802154_llsec_set_params(struct mac802154_llsec
*sec
,
90 const struct ieee802154_llsec_params
*params
,
93 write_lock_bh(&sec
->lock
);
95 if (changed
& IEEE802154_LLSEC_PARAM_ENABLED
)
96 sec
->params
.enabled
= params
->enabled
;
97 if (changed
& IEEE802154_LLSEC_PARAM_FRAME_COUNTER
)
98 sec
->params
.frame_counter
= params
->frame_counter
;
99 if (changed
& IEEE802154_LLSEC_PARAM_OUT_LEVEL
)
100 sec
->params
.out_level
= params
->out_level
;
101 if (changed
& IEEE802154_LLSEC_PARAM_OUT_KEY
)
102 sec
->params
.out_key
= params
->out_key
;
103 if (changed
& IEEE802154_LLSEC_PARAM_KEY_SOURCE
)
104 sec
->params
.default_key_source
= params
->default_key_source
;
105 if (changed
& IEEE802154_LLSEC_PARAM_PAN_ID
)
106 sec
->params
.pan_id
= params
->pan_id
;
107 if (changed
& IEEE802154_LLSEC_PARAM_HWADDR
)
108 sec
->params
.hwaddr
= params
->hwaddr
;
109 if (changed
& IEEE802154_LLSEC_PARAM_COORD_HWADDR
)
110 sec
->params
.coord_hwaddr
= params
->coord_hwaddr
;
111 if (changed
& IEEE802154_LLSEC_PARAM_COORD_SHORTADDR
)
112 sec
->params
.coord_shortaddr
= params
->coord_shortaddr
;
114 write_unlock_bh(&sec
->lock
);
119 static struct mac802154_llsec_key
*
120 llsec_key_alloc(const struct ieee802154_llsec_key
*template)
122 const int authsizes
[3] = { 4, 8, 16 };
123 struct mac802154_llsec_key
*key
;
126 key
= kzalloc(sizeof(*key
), GFP_KERNEL
);
130 kref_init(&key
->ref
);
131 key
->key
= *template;
133 BUILD_BUG_ON(ARRAY_SIZE(authsizes
) != ARRAY_SIZE(key
->tfm
));
135 for (i
= 0; i
< ARRAY_SIZE(key
->tfm
); i
++) {
136 key
->tfm
[i
] = crypto_alloc_aead("ccm(aes)", 0,
138 if (IS_ERR(key
->tfm
[i
]))
140 if (crypto_aead_setkey(key
->tfm
[i
], template->key
,
141 IEEE802154_LLSEC_KEY_SIZE
))
143 if (crypto_aead_setauthsize(key
->tfm
[i
], authsizes
[i
]))
147 key
->tfm0
= crypto_alloc_blkcipher("ctr(aes)", 0, CRYPTO_ALG_ASYNC
);
148 if (IS_ERR(key
->tfm0
))
151 if (crypto_blkcipher_setkey(key
->tfm0
, template->key
,
152 IEEE802154_LLSEC_KEY_SIZE
))
158 crypto_free_blkcipher(key
->tfm0
);
160 for (i
= 0; i
< ARRAY_SIZE(key
->tfm
); i
++)
162 crypto_free_aead(key
->tfm
[i
]);
168 static void llsec_key_release(struct kref
*ref
)
170 struct mac802154_llsec_key
*key
;
173 key
= container_of(ref
, struct mac802154_llsec_key
, ref
);
175 for (i
= 0; i
< ARRAY_SIZE(key
->tfm
); i
++)
176 crypto_free_aead(key
->tfm
[i
]);
178 crypto_free_blkcipher(key
->tfm0
);
182 static struct mac802154_llsec_key
*
183 llsec_key_get(struct mac802154_llsec_key
*key
)
189 static void llsec_key_put(struct mac802154_llsec_key
*key
)
191 kref_put(&key
->ref
, llsec_key_release
);
194 static bool llsec_key_id_equal(const struct ieee802154_llsec_key_id
*a
,
195 const struct ieee802154_llsec_key_id
*b
)
197 if (a
->mode
!= b
->mode
)
200 if (a
->mode
== IEEE802154_SCF_KEY_IMPLICIT
)
201 return ieee802154_addr_equal(&a
->device_addr
, &b
->device_addr
);
207 case IEEE802154_SCF_KEY_INDEX
:
209 case IEEE802154_SCF_KEY_SHORT_INDEX
:
210 return a
->short_source
== b
->short_source
;
211 case IEEE802154_SCF_KEY_HW_INDEX
:
212 return a
->extended_source
== b
->extended_source
;
218 int mac802154_llsec_key_add(struct mac802154_llsec
*sec
,
219 const struct ieee802154_llsec_key_id
*id
,
220 const struct ieee802154_llsec_key
*key
)
222 struct mac802154_llsec_key
*mkey
= NULL
;
223 struct ieee802154_llsec_key_entry
*pos
, *new;
225 if (!(key
->frame_types
& (1 << IEEE802154_FC_TYPE_MAC_CMD
)) &&
229 list_for_each_entry(pos
, &sec
->table
.keys
, list
) {
230 if (llsec_key_id_equal(&pos
->id
, id
))
233 if (memcmp(pos
->key
->key
, key
->key
,
234 IEEE802154_LLSEC_KEY_SIZE
))
237 mkey
= container_of(pos
->key
, struct mac802154_llsec_key
, key
);
239 /* Don't allow multiple instances of the same AES key to have
240 * different allowed frame types/command frame ids, as this is
241 * not possible in the 802.15.4 PIB.
243 if (pos
->key
->frame_types
!= key
->frame_types
||
244 pos
->key
->cmd_frame_ids
!= key
->cmd_frame_ids
)
250 new = kzalloc(sizeof(*new), GFP_KERNEL
);
255 mkey
= llsec_key_alloc(key
);
257 mkey
= llsec_key_get(mkey
);
263 new->key
= &mkey
->key
;
265 list_add_rcu(&new->list
, &sec
->table
.keys
);
274 int mac802154_llsec_key_del(struct mac802154_llsec
*sec
,
275 const struct ieee802154_llsec_key_id
*key
)
277 struct ieee802154_llsec_key_entry
*pos
;
279 list_for_each_entry(pos
, &sec
->table
.keys
, list
) {
280 struct mac802154_llsec_key
*mkey
;
282 mkey
= container_of(pos
->key
, struct mac802154_llsec_key
, key
);
284 if (llsec_key_id_equal(&pos
->id
, key
)) {
285 list_del_rcu(&pos
->list
);
294 static bool llsec_dev_use_shortaddr(__le16 short_addr
)
296 return short_addr
!= cpu_to_le16(IEEE802154_ADDR_UNDEF
) &&
297 short_addr
!= cpu_to_le16(0xffff);
300 static u32
llsec_dev_hash_short(__le16 short_addr
, __le16 pan_id
)
302 return ((__force u16
)short_addr
) << 16 | (__force u16
)pan_id
;
305 static u64
llsec_dev_hash_long(__le64 hwaddr
)
307 return (__force u64
)hwaddr
;
310 static struct mac802154_llsec_device
*
311 llsec_dev_find_short(struct mac802154_llsec
*sec
, __le16 short_addr
,
314 struct mac802154_llsec_device
*dev
;
315 u32 key
= llsec_dev_hash_short(short_addr
, pan_id
);
317 hash_for_each_possible_rcu(sec
->devices_short
, dev
, bucket_s
, key
) {
318 if (dev
->dev
.short_addr
== short_addr
&&
319 dev
->dev
.pan_id
== pan_id
)
326 static struct mac802154_llsec_device
*
327 llsec_dev_find_long(struct mac802154_llsec
*sec
, __le64 hwaddr
)
329 struct mac802154_llsec_device
*dev
;
330 u64 key
= llsec_dev_hash_long(hwaddr
);
332 hash_for_each_possible_rcu(sec
->devices_hw
, dev
, bucket_hw
, key
) {
333 if (dev
->dev
.hwaddr
== hwaddr
)
340 static void llsec_dev_free(struct mac802154_llsec_device
*dev
)
342 struct ieee802154_llsec_device_key
*pos
, *pn
;
343 struct mac802154_llsec_device_key
*devkey
;
345 list_for_each_entry_safe(pos
, pn
, &dev
->dev
.keys
, list
) {
346 devkey
= container_of(pos
, struct mac802154_llsec_device_key
,
349 list_del(&pos
->list
);
356 int mac802154_llsec_dev_add(struct mac802154_llsec
*sec
,
357 const struct ieee802154_llsec_device
*dev
)
359 struct mac802154_llsec_device
*entry
;
360 u32 skey
= llsec_dev_hash_short(dev
->short_addr
, dev
->pan_id
);
361 u64 hwkey
= llsec_dev_hash_long(dev
->hwaddr
);
363 BUILD_BUG_ON(sizeof(hwkey
) != IEEE802154_ADDR_LEN
);
365 if ((llsec_dev_use_shortaddr(dev
->short_addr
) &&
366 llsec_dev_find_short(sec
, dev
->short_addr
, dev
->pan_id
)) ||
367 llsec_dev_find_long(sec
, dev
->hwaddr
))
370 entry
= kmalloc(sizeof(*entry
), GFP_KERNEL
);
375 spin_lock_init(&entry
->lock
);
376 INIT_LIST_HEAD(&entry
->dev
.keys
);
378 if (llsec_dev_use_shortaddr(dev
->short_addr
))
379 hash_add_rcu(sec
->devices_short
, &entry
->bucket_s
, skey
);
381 INIT_HLIST_NODE(&entry
->bucket_s
);
383 hash_add_rcu(sec
->devices_hw
, &entry
->bucket_hw
, hwkey
);
384 list_add_tail_rcu(&entry
->dev
.list
, &sec
->table
.devices
);
389 static void llsec_dev_free_rcu(struct rcu_head
*rcu
)
391 llsec_dev_free(container_of(rcu
, struct mac802154_llsec_device
, rcu
));
394 int mac802154_llsec_dev_del(struct mac802154_llsec
*sec
, __le64 device_addr
)
396 struct mac802154_llsec_device
*pos
;
398 pos
= llsec_dev_find_long(sec
, device_addr
);
402 hash_del_rcu(&pos
->bucket_s
);
403 hash_del_rcu(&pos
->bucket_hw
);
404 list_del_rcu(&pos
->dev
.list
);
405 call_rcu(&pos
->rcu
, llsec_dev_free_rcu
);
410 static struct mac802154_llsec_device_key
*
411 llsec_devkey_find(struct mac802154_llsec_device
*dev
,
412 const struct ieee802154_llsec_key_id
*key
)
414 struct ieee802154_llsec_device_key
*devkey
;
416 list_for_each_entry_rcu(devkey
, &dev
->dev
.keys
, list
) {
417 if (!llsec_key_id_equal(key
, &devkey
->key_id
))
420 return container_of(devkey
, struct mac802154_llsec_device_key
,
427 int mac802154_llsec_devkey_add(struct mac802154_llsec
*sec
,
429 const struct ieee802154_llsec_device_key
*key
)
431 struct mac802154_llsec_device
*dev
;
432 struct mac802154_llsec_device_key
*devkey
;
434 dev
= llsec_dev_find_long(sec
, dev_addr
);
439 if (llsec_devkey_find(dev
, &key
->key_id
))
442 devkey
= kmalloc(sizeof(*devkey
), GFP_KERNEL
);
446 devkey
->devkey
= *key
;
447 list_add_tail_rcu(&devkey
->devkey
.list
, &dev
->dev
.keys
);
451 int mac802154_llsec_devkey_del(struct mac802154_llsec
*sec
,
453 const struct ieee802154_llsec_device_key
*key
)
455 struct mac802154_llsec_device
*dev
;
456 struct mac802154_llsec_device_key
*devkey
;
458 dev
= llsec_dev_find_long(sec
, dev_addr
);
463 devkey
= llsec_devkey_find(dev
, &key
->key_id
);
467 list_del_rcu(&devkey
->devkey
.list
);
468 kfree_rcu(devkey
, rcu
);
472 static struct mac802154_llsec_seclevel
*
473 llsec_find_seclevel(const struct mac802154_llsec
*sec
,
474 const struct ieee802154_llsec_seclevel
*sl
)
476 struct ieee802154_llsec_seclevel
*pos
;
478 list_for_each_entry(pos
, &sec
->table
.security_levels
, list
) {
479 if (pos
->frame_type
!= sl
->frame_type
||
480 (pos
->frame_type
== IEEE802154_FC_TYPE_MAC_CMD
&&
481 pos
->cmd_frame_id
!= sl
->cmd_frame_id
) ||
482 pos
->device_override
!= sl
->device_override
||
483 pos
->sec_levels
!= sl
->sec_levels
)
486 return container_of(pos
, struct mac802154_llsec_seclevel
,
493 int mac802154_llsec_seclevel_add(struct mac802154_llsec
*sec
,
494 const struct ieee802154_llsec_seclevel
*sl
)
496 struct mac802154_llsec_seclevel
*entry
;
498 if (llsec_find_seclevel(sec
, sl
))
501 entry
= kmalloc(sizeof(*entry
), GFP_KERNEL
);
507 list_add_tail_rcu(&entry
->level
.list
, &sec
->table
.security_levels
);
512 int mac802154_llsec_seclevel_del(struct mac802154_llsec
*sec
,
513 const struct ieee802154_llsec_seclevel
*sl
)
515 struct mac802154_llsec_seclevel
*pos
;
517 pos
= llsec_find_seclevel(sec
, sl
);
521 list_del_rcu(&pos
->level
.list
);
527 static int llsec_recover_addr(struct mac802154_llsec
*sec
,
528 struct ieee802154_addr
*addr
)
530 __le16 caddr
= sec
->params
.coord_shortaddr
;
532 addr
->pan_id
= sec
->params
.pan_id
;
534 if (caddr
== cpu_to_le16(IEEE802154_ADDR_BROADCAST
)) {
536 } else if (caddr
== cpu_to_le16(IEEE802154_ADDR_UNDEF
)) {
537 addr
->extended_addr
= sec
->params
.coord_hwaddr
;
538 addr
->mode
= IEEE802154_ADDR_LONG
;
540 addr
->short_addr
= sec
->params
.coord_shortaddr
;
541 addr
->mode
= IEEE802154_ADDR_SHORT
;
547 static struct mac802154_llsec_key
*
548 llsec_lookup_key(struct mac802154_llsec
*sec
,
549 const struct ieee802154_hdr
*hdr
,
550 const struct ieee802154_addr
*addr
,
551 struct ieee802154_llsec_key_id
*key_id
)
553 struct ieee802154_addr devaddr
= *addr
;
554 u8 key_id_mode
= hdr
->sec
.key_id_mode
;
555 struct ieee802154_llsec_key_entry
*key_entry
;
556 struct mac802154_llsec_key
*key
;
558 if (key_id_mode
== IEEE802154_SCF_KEY_IMPLICIT
&&
559 devaddr
.mode
== IEEE802154_ADDR_NONE
) {
560 if (hdr
->fc
.type
== IEEE802154_FC_TYPE_BEACON
) {
561 devaddr
.extended_addr
= sec
->params
.coord_hwaddr
;
562 devaddr
.mode
= IEEE802154_ADDR_LONG
;
563 } else if (llsec_recover_addr(sec
, &devaddr
) < 0) {
568 list_for_each_entry_rcu(key_entry
, &sec
->table
.keys
, list
) {
569 const struct ieee802154_llsec_key_id
*id
= &key_entry
->id
;
571 if (!(key_entry
->key
->frame_types
& BIT(hdr
->fc
.type
)))
574 if (id
->mode
!= key_id_mode
)
577 if (key_id_mode
== IEEE802154_SCF_KEY_IMPLICIT
) {
578 if (ieee802154_addr_equal(&devaddr
, &id
->device_addr
))
581 if (id
->id
!= hdr
->sec
.key_id
)
584 if ((key_id_mode
== IEEE802154_SCF_KEY_INDEX
) ||
585 (key_id_mode
== IEEE802154_SCF_KEY_SHORT_INDEX
&&
586 id
->short_source
== hdr
->sec
.short_src
) ||
587 (key_id_mode
== IEEE802154_SCF_KEY_HW_INDEX
&&
588 id
->extended_source
== hdr
->sec
.extended_src
))
596 key
= container_of(key_entry
->key
, struct mac802154_llsec_key
, key
);
598 *key_id
= key_entry
->id
;
599 return llsec_key_get(key
);
602 static void llsec_geniv(u8 iv
[16], __le64 addr
,
603 const struct ieee802154_sechdr
*sec
)
605 __be64 addr_bytes
= (__force __be64
) swab64((__force u64
) addr
);
606 __be32 frame_counter
= (__force __be32
) swab32((__force u32
) sec
->frame_counter
);
608 iv
[0] = 1; /* L' = L - 1 = 1 */
609 memcpy(iv
+ 1, &addr_bytes
, sizeof(addr_bytes
));
610 memcpy(iv
+ 9, &frame_counter
, sizeof(frame_counter
));
617 llsec_do_encrypt_unauth(struct sk_buff
*skb
, const struct mac802154_llsec
*sec
,
618 const struct ieee802154_hdr
*hdr
,
619 struct mac802154_llsec_key
*key
)
622 struct scatterlist src
;
623 struct blkcipher_desc req
= {
629 llsec_geniv(iv
, sec
->params
.hwaddr
, &hdr
->sec
);
630 sg_init_one(&src
, skb
->data
, skb
->len
);
631 return crypto_blkcipher_encrypt_iv(&req
, &src
, &src
, skb
->len
);
634 static struct crypto_aead
*
635 llsec_tfm_by_len(struct mac802154_llsec_key
*key
, int authlen
)
639 for (i
= 0; i
< ARRAY_SIZE(key
->tfm
); i
++)
640 if (crypto_aead_authsize(key
->tfm
[i
]) == authlen
)
647 llsec_do_encrypt_auth(struct sk_buff
*skb
, const struct mac802154_llsec
*sec
,
648 const struct ieee802154_hdr
*hdr
,
649 struct mac802154_llsec_key
*key
)
653 int authlen
, assoclen
, datalen
, rc
;
654 struct scatterlist sg
;
655 struct aead_request
*req
;
657 authlen
= ieee802154_sechdr_authtag_len(&hdr
->sec
);
658 llsec_geniv(iv
, sec
->params
.hwaddr
, &hdr
->sec
);
660 req
= aead_request_alloc(llsec_tfm_by_len(key
, authlen
), GFP_ATOMIC
);
664 assoclen
= skb
->mac_len
;
666 data
= skb_mac_header(skb
) + skb
->mac_len
;
667 datalen
= skb_tail_pointer(skb
) - data
;
669 skb_put(skb
, authlen
);
671 sg_init_one(&sg
, skb_mac_header(skb
), assoclen
+ datalen
+ authlen
);
673 if (!(hdr
->sec
.level
& IEEE802154_SCF_SECLEVEL_ENC
)) {
678 aead_request_set_callback(req
, 0, NULL
, NULL
);
679 aead_request_set_crypt(req
, &sg
, &sg
, datalen
, iv
);
680 aead_request_set_ad(req
, assoclen
);
682 rc
= crypto_aead_encrypt(req
);
689 static int llsec_do_encrypt(struct sk_buff
*skb
,
690 const struct mac802154_llsec
*sec
,
691 const struct ieee802154_hdr
*hdr
,
692 struct mac802154_llsec_key
*key
)
694 if (hdr
->sec
.level
== IEEE802154_SCF_SECLEVEL_ENC
)
695 return llsec_do_encrypt_unauth(skb
, sec
, hdr
, key
);
697 return llsec_do_encrypt_auth(skb
, sec
, hdr
, key
);
700 int mac802154_llsec_encrypt(struct mac802154_llsec
*sec
, struct sk_buff
*skb
)
702 struct ieee802154_hdr hdr
;
703 int rc
, authlen
, hlen
;
704 struct mac802154_llsec_key
*key
;
707 hlen
= ieee802154_hdr_pull(skb
, &hdr
);
709 if (hlen
< 0 || hdr
.fc
.type
!= IEEE802154_FC_TYPE_DATA
)
712 if (!hdr
.fc
.security_enabled
|| hdr
.sec
.level
== 0) {
717 authlen
= ieee802154_sechdr_authtag_len(&hdr
.sec
);
719 if (skb
->len
+ hlen
+ authlen
+ IEEE802154_MFR_SIZE
> IEEE802154_MTU
)
724 read_lock_bh(&sec
->lock
);
726 if (!sec
->params
.enabled
) {
731 key
= llsec_lookup_key(sec
, &hdr
, &hdr
.dest
, NULL
);
737 read_unlock_bh(&sec
->lock
);
739 write_lock_bh(&sec
->lock
);
741 frame_ctr
= be32_to_cpu(sec
->params
.frame_counter
);
742 hdr
.sec
.frame_counter
= cpu_to_le32(frame_ctr
);
743 if (frame_ctr
== 0xFFFFFFFF) {
744 write_unlock_bh(&sec
->lock
);
750 sec
->params
.frame_counter
= cpu_to_be32(frame_ctr
+ 1);
752 write_unlock_bh(&sec
->lock
);
756 skb
->mac_len
= ieee802154_hdr_push(skb
, &hdr
);
757 skb_reset_mac_header(skb
);
759 rc
= llsec_do_encrypt(skb
, sec
, &hdr
, key
);
765 read_unlock_bh(&sec
->lock
);
771 static struct mac802154_llsec_device
*
772 llsec_lookup_dev(struct mac802154_llsec
*sec
,
773 const struct ieee802154_addr
*addr
)
775 struct ieee802154_addr devaddr
= *addr
;
776 struct mac802154_llsec_device
*dev
= NULL
;
778 if (devaddr
.mode
== IEEE802154_ADDR_NONE
&&
779 llsec_recover_addr(sec
, &devaddr
) < 0)
782 if (devaddr
.mode
== IEEE802154_ADDR_SHORT
) {
783 u32 key
= llsec_dev_hash_short(devaddr
.short_addr
,
786 hash_for_each_possible_rcu(sec
->devices_short
, dev
,
788 if (dev
->dev
.pan_id
== devaddr
.pan_id
&&
789 dev
->dev
.short_addr
== devaddr
.short_addr
)
793 u64 key
= llsec_dev_hash_long(devaddr
.extended_addr
);
795 hash_for_each_possible_rcu(sec
->devices_hw
, dev
,
797 if (dev
->dev
.hwaddr
== devaddr
.extended_addr
)
806 llsec_lookup_seclevel(const struct mac802154_llsec
*sec
,
807 u8 frame_type
, u8 cmd_frame_id
,
808 struct ieee802154_llsec_seclevel
*rlevel
)
810 struct ieee802154_llsec_seclevel
*level
;
812 list_for_each_entry_rcu(level
, &sec
->table
.security_levels
, list
) {
813 if (level
->frame_type
== frame_type
&&
814 (frame_type
!= IEEE802154_FC_TYPE_MAC_CMD
||
815 level
->cmd_frame_id
== cmd_frame_id
)) {
825 llsec_do_decrypt_unauth(struct sk_buff
*skb
, const struct mac802154_llsec
*sec
,
826 const struct ieee802154_hdr
*hdr
,
827 struct mac802154_llsec_key
*key
, __le64 dev_addr
)
832 struct scatterlist src
;
833 struct blkcipher_desc req
= {
839 llsec_geniv(iv
, dev_addr
, &hdr
->sec
);
840 data
= skb_mac_header(skb
) + skb
->mac_len
;
841 datalen
= skb_tail_pointer(skb
) - data
;
843 sg_init_one(&src
, data
, datalen
);
845 return crypto_blkcipher_decrypt_iv(&req
, &src
, &src
, datalen
);
849 llsec_do_decrypt_auth(struct sk_buff
*skb
, const struct mac802154_llsec
*sec
,
850 const struct ieee802154_hdr
*hdr
,
851 struct mac802154_llsec_key
*key
, __le64 dev_addr
)
855 int authlen
, datalen
, assoclen
, rc
;
856 struct scatterlist sg
;
857 struct aead_request
*req
;
859 authlen
= ieee802154_sechdr_authtag_len(&hdr
->sec
);
860 llsec_geniv(iv
, dev_addr
, &hdr
->sec
);
862 req
= aead_request_alloc(llsec_tfm_by_len(key
, authlen
), GFP_ATOMIC
);
866 assoclen
= skb
->mac_len
;
868 data
= skb_mac_header(skb
) + skb
->mac_len
;
869 datalen
= skb_tail_pointer(skb
) - data
;
871 sg_init_one(&sg
, skb_mac_header(skb
), assoclen
+ datalen
);
873 if (!(hdr
->sec
.level
& IEEE802154_SCF_SECLEVEL_ENC
)) {
874 assoclen
+= datalen
- authlen
;
878 aead_request_set_callback(req
, 0, NULL
, NULL
);
879 aead_request_set_crypt(req
, &sg
, &sg
, datalen
, iv
);
880 aead_request_set_ad(req
, assoclen
);
882 rc
= crypto_aead_decrypt(req
);
885 skb_trim(skb
, skb
->len
- authlen
);
891 llsec_do_decrypt(struct sk_buff
*skb
, const struct mac802154_llsec
*sec
,
892 const struct ieee802154_hdr
*hdr
,
893 struct mac802154_llsec_key
*key
, __le64 dev_addr
)
895 if (hdr
->sec
.level
== IEEE802154_SCF_SECLEVEL_ENC
)
896 return llsec_do_decrypt_unauth(skb
, sec
, hdr
, key
, dev_addr
);
898 return llsec_do_decrypt_auth(skb
, sec
, hdr
, key
, dev_addr
);
902 llsec_update_devkey_record(struct mac802154_llsec_device
*dev
,
903 const struct ieee802154_llsec_key_id
*in_key
)
905 struct mac802154_llsec_device_key
*devkey
;
907 devkey
= llsec_devkey_find(dev
, in_key
);
910 struct mac802154_llsec_device_key
*next
;
912 next
= kzalloc(sizeof(*devkey
), GFP_ATOMIC
);
916 next
->devkey
.key_id
= *in_key
;
918 spin_lock_bh(&dev
->lock
);
920 devkey
= llsec_devkey_find(dev
, in_key
);
922 list_add_rcu(&next
->devkey
.list
, &dev
->dev
.keys
);
926 spin_unlock_bh(&dev
->lock
);
933 llsec_update_devkey_info(struct mac802154_llsec_device
*dev
,
934 const struct ieee802154_llsec_key_id
*in_key
,
937 struct mac802154_llsec_device_key
*devkey
= NULL
;
939 if (dev
->dev
.key_mode
== IEEE802154_LLSEC_DEVKEY_RESTRICT
) {
940 devkey
= llsec_devkey_find(dev
, in_key
);
945 if (dev
->dev
.key_mode
== IEEE802154_LLSEC_DEVKEY_RECORD
) {
946 int rc
= llsec_update_devkey_record(dev
, in_key
);
952 spin_lock_bh(&dev
->lock
);
954 if ((!devkey
&& frame_counter
< dev
->dev
.frame_counter
) ||
955 (devkey
&& frame_counter
< devkey
->devkey
.frame_counter
)) {
956 spin_unlock_bh(&dev
->lock
);
961 devkey
->devkey
.frame_counter
= frame_counter
+ 1;
963 dev
->dev
.frame_counter
= frame_counter
+ 1;
965 spin_unlock_bh(&dev
->lock
);
970 int mac802154_llsec_decrypt(struct mac802154_llsec
*sec
, struct sk_buff
*skb
)
972 struct ieee802154_hdr hdr
;
973 struct mac802154_llsec_key
*key
;
974 struct ieee802154_llsec_key_id key_id
;
975 struct mac802154_llsec_device
*dev
;
976 struct ieee802154_llsec_seclevel seclevel
;
981 if (ieee802154_hdr_peek(skb
, &hdr
) < 0)
983 if (!hdr
.fc
.security_enabled
)
985 if (hdr
.fc
.version
== 0)
988 read_lock_bh(&sec
->lock
);
989 if (!sec
->params
.enabled
) {
990 read_unlock_bh(&sec
->lock
);
993 read_unlock_bh(&sec
->lock
);
997 key
= llsec_lookup_key(sec
, &hdr
, &hdr
.source
, &key_id
);
1003 dev
= llsec_lookup_dev(sec
, &hdr
.source
);
1009 if (llsec_lookup_seclevel(sec
, hdr
.fc
.type
, 0, &seclevel
) < 0) {
1014 if (!(seclevel
.sec_levels
& BIT(hdr
.sec
.level
)) &&
1015 (hdr
.sec
.level
== 0 && seclevel
.device_override
&&
1016 !dev
->dev
.seclevel_exempt
)) {
1021 frame_ctr
= le32_to_cpu(hdr
.sec
.frame_counter
);
1023 if (frame_ctr
== 0xffffffff) {
1028 err
= llsec_update_devkey_info(dev
, &key_id
, frame_ctr
);
1032 dev_addr
= dev
->dev
.hwaddr
;
1036 err
= llsec_do_decrypt(skb
, sec
, &hdr
, key
, dev_addr
);