2 * drivers/net/macsec.c - MACsec device
4 * Copyright (c) 2015 Sabrina Dubroca <sd@queasysnail.net>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
12 #include <linux/types.h>
13 #include <linux/skbuff.h>
14 #include <linux/socket.h>
15 #include <linux/module.h>
16 #include <crypto/aead.h>
17 #include <linux/etherdevice.h>
18 #include <linux/rtnetlink.h>
19 #include <net/genetlink.h>
22 #include <uapi/linux/if_macsec.h>
24 typedef u64 __bitwise sci_t
;
26 #define MACSEC_SCI_LEN 8
28 /* SecTAG length = macsec_eth_header without the optional SCI */
29 #define MACSEC_TAG_LEN 6
31 struct macsec_eth_header
{
35 #if defined(__LITTLE_ENDIAN_BITFIELD)
38 #elif defined(__BIG_ENDIAN_BITFIELD)
42 #error "Please fix <asm/byteorder.h>"
45 u8 secure_channel_id
[8]; /* optional */
48 #define MACSEC_TCI_VERSION 0x80
49 #define MACSEC_TCI_ES 0x40 /* end station */
50 #define MACSEC_TCI_SC 0x20 /* SCI present */
51 #define MACSEC_TCI_SCB 0x10 /* epon */
52 #define MACSEC_TCI_E 0x08 /* encryption */
53 #define MACSEC_TCI_C 0x04 /* changed text */
54 #define MACSEC_AN_MASK 0x03 /* association number */
55 #define MACSEC_TCI_CONFID (MACSEC_TCI_E | MACSEC_TCI_C)
57 /* minimum secure data length deemed "not short", see IEEE 802.1AE-2006 9.7 */
58 #define MIN_NON_SHORT_LEN 48
60 #define GCM_AES_IV_LEN 12
61 #define DEFAULT_ICV_LEN 16
63 #define MACSEC_NUM_AN 4 /* 2 bits for the association number */
65 #define for_each_rxsc(secy, sc) \
66 for (sc = rcu_dereference_bh(secy->rx_sc); \
68 sc = rcu_dereference_bh(sc->next))
69 #define for_each_rxsc_rtnl(secy, sc) \
70 for (sc = rtnl_dereference(secy->rx_sc); \
72 sc = rtnl_dereference(sc->next))
76 u8 secure_channel_id
[8];
83 * struct macsec_key - SA key
84 * @id: user-provided key identifier
85 * @tfm: crypto struct, key storage
88 u8 id
[MACSEC_KEYID_LEN
];
89 struct crypto_aead
*tfm
;
92 struct macsec_rx_sc_stats
{
93 __u64 InOctetsValidated
;
94 __u64 InOctetsDecrypted
;
95 __u64 InPktsUnchecked
;
100 __u64 InPktsNotValid
;
101 __u64 InPktsNotUsingSA
;
102 __u64 InPktsUnusedSA
;
105 struct macsec_rx_sa_stats
{
108 __u32 InPktsNotValid
;
109 __u32 InPktsNotUsingSA
;
110 __u32 InPktsUnusedSA
;
113 struct macsec_tx_sa_stats
{
114 __u32 OutPktsProtected
;
115 __u32 OutPktsEncrypted
;
118 struct macsec_tx_sc_stats
{
119 __u64 OutPktsProtected
;
120 __u64 OutPktsEncrypted
;
121 __u64 OutOctetsProtected
;
122 __u64 OutOctetsEncrypted
;
125 struct macsec_dev_stats
{
126 __u64 OutPktsUntagged
;
127 __u64 InPktsUntagged
;
128 __u64 OutPktsTooLong
;
131 __u64 InPktsUnknownSCI
;
137 * struct macsec_rx_sa - receive secure association
139 * @next_pn: packet number expected for the next packet
140 * @lock: protects next_pn manipulations
141 * @key: key structure
142 * @stats: per-SA stats
144 struct macsec_rx_sa
{
145 struct macsec_key key
;
150 struct macsec_rx_sa_stats __percpu
*stats
;
151 struct macsec_rx_sc
*sc
;
155 struct pcpu_rx_sc_stats
{
156 struct macsec_rx_sc_stats stats
;
157 struct u64_stats_sync syncp
;
161 * struct macsec_rx_sc - receive secure channel
162 * @sci: secure channel identifier for this SC
163 * @active: channel is active
164 * @sa: array of secure associations
165 * @stats: per-SC stats
167 struct macsec_rx_sc
{
168 struct macsec_rx_sc __rcu
*next
;
171 struct macsec_rx_sa __rcu
*sa
[MACSEC_NUM_AN
];
172 struct pcpu_rx_sc_stats __percpu
*stats
;
174 struct rcu_head rcu_head
;
178 * struct macsec_tx_sa - transmit secure association
180 * @next_pn: packet number to use for the next packet
181 * @lock: protects next_pn manipulations
182 * @key: key structure
183 * @stats: per-SA stats
185 struct macsec_tx_sa
{
186 struct macsec_key key
;
191 struct macsec_tx_sa_stats __percpu
*stats
;
195 struct pcpu_tx_sc_stats
{
196 struct macsec_tx_sc_stats stats
;
197 struct u64_stats_sync syncp
;
201 * struct macsec_tx_sc - transmit secure channel
203 * @encoding_sa: association number of the SA currently in use
204 * @encrypt: encrypt packets on transmit, or authenticate only
205 * @send_sci: always include the SCI in the SecTAG
207 * @scb: single copy broadcast flag
208 * @sa: array of secure associations
209 * @stats: stats for this TXSC
211 struct macsec_tx_sc
{
218 struct macsec_tx_sa __rcu
*sa
[MACSEC_NUM_AN
];
219 struct pcpu_tx_sc_stats __percpu
*stats
;
222 #define MACSEC_VALIDATE_DEFAULT MACSEC_VALIDATE_STRICT
225 * struct macsec_secy - MACsec Security Entity
226 * @netdev: netdevice for this SecY
227 * @n_rx_sc: number of receive secure channels configured on this SecY
228 * @sci: secure channel identifier used for tx
229 * @key_len: length of keys used by the cipher suite
230 * @icv_len: length of ICV used by the cipher suite
231 * @validate_frames: validation mode
232 * @operational: MAC_Operational flag
233 * @protect_frames: enable protection for this SecY
234 * @replay_protect: enable packet number checks on receive
235 * @replay_window: size of the replay window
236 * @tx_sc: transmit secure channel
237 * @rx_sc: linked list of receive secure channels
240 struct net_device
*netdev
;
241 unsigned int n_rx_sc
;
245 enum macsec_validation_type validate_frames
;
250 struct macsec_tx_sc tx_sc
;
251 struct macsec_rx_sc __rcu
*rx_sc
;
254 struct pcpu_secy_stats
{
255 struct macsec_dev_stats stats
;
256 struct u64_stats_sync syncp
;
260 * struct macsec_dev - private data
262 * @real_dev: pointer to underlying netdevice
263 * @stats: MACsec device stats
264 * @secys: linked list of SecY's on the underlying device
267 struct macsec_secy secy
;
268 struct net_device
*real_dev
;
269 struct pcpu_secy_stats __percpu
*stats
;
270 struct list_head secys
;
274 * struct macsec_rxh_data - rx_handler private argument
275 * @secys: linked list of SecY's on this underlying device
277 struct macsec_rxh_data
{
278 struct list_head secys
;
281 static struct macsec_dev
*macsec_priv(const struct net_device
*dev
)
283 return (struct macsec_dev
*)netdev_priv(dev
);
286 static struct macsec_rxh_data
*macsec_data_rcu(const struct net_device
*dev
)
288 return rcu_dereference_bh(dev
->rx_handler_data
);
291 static struct macsec_rxh_data
*macsec_data_rtnl(const struct net_device
*dev
)
293 return rtnl_dereference(dev
->rx_handler_data
);
297 struct aead_request
*req
;
299 struct macsec_tx_sa
*tx_sa
;
300 struct macsec_rx_sa
*rx_sa
;
307 static struct macsec_rx_sa
*macsec_rxsa_get(struct macsec_rx_sa __rcu
*ptr
)
309 struct macsec_rx_sa
*sa
= rcu_dereference_bh(ptr
);
311 if (!sa
|| !sa
->active
)
314 if (!atomic_inc_not_zero(&sa
->refcnt
))
320 static void free_rx_sc_rcu(struct rcu_head
*head
)
322 struct macsec_rx_sc
*rx_sc
= container_of(head
, struct macsec_rx_sc
, rcu_head
);
324 free_percpu(rx_sc
->stats
);
328 static struct macsec_rx_sc
*macsec_rxsc_get(struct macsec_rx_sc
*sc
)
330 return atomic_inc_not_zero(&sc
->refcnt
) ? sc
: NULL
;
333 static void macsec_rxsc_put(struct macsec_rx_sc
*sc
)
335 if (atomic_dec_and_test(&sc
->refcnt
))
336 call_rcu(&sc
->rcu_head
, free_rx_sc_rcu
);
339 static void free_rxsa(struct rcu_head
*head
)
341 struct macsec_rx_sa
*sa
= container_of(head
, struct macsec_rx_sa
, rcu
);
343 crypto_free_aead(sa
->key
.tfm
);
344 free_percpu(sa
->stats
);
345 macsec_rxsc_put(sa
->sc
);
349 static void macsec_rxsa_put(struct macsec_rx_sa
*sa
)
351 if (atomic_dec_and_test(&sa
->refcnt
))
352 call_rcu(&sa
->rcu
, free_rxsa
);
355 static struct macsec_tx_sa
*macsec_txsa_get(struct macsec_tx_sa __rcu
*ptr
)
357 struct macsec_tx_sa
*sa
= rcu_dereference_bh(ptr
);
359 if (!sa
|| !sa
->active
)
362 if (!atomic_inc_not_zero(&sa
->refcnt
))
368 static void free_txsa(struct rcu_head
*head
)
370 struct macsec_tx_sa
*sa
= container_of(head
, struct macsec_tx_sa
, rcu
);
372 crypto_free_aead(sa
->key
.tfm
);
373 free_percpu(sa
->stats
);
377 static void macsec_txsa_put(struct macsec_tx_sa
*sa
)
379 if (atomic_dec_and_test(&sa
->refcnt
))
380 call_rcu(&sa
->rcu
, free_txsa
);
383 static struct macsec_cb
*macsec_skb_cb(struct sk_buff
*skb
)
385 BUILD_BUG_ON(sizeof(struct macsec_cb
) > sizeof(skb
->cb
));
386 return (struct macsec_cb
*)skb
->cb
;
389 #define MACSEC_PORT_ES (htons(0x0001))
390 #define MACSEC_PORT_SCB (0x0000)
391 #define MACSEC_UNDEF_SCI ((__force sci_t)0xffffffffffffffffULL)
393 #define DEFAULT_SAK_LEN 16
394 #define DEFAULT_SEND_SCI true
395 #define DEFAULT_ENCRYPT false
396 #define DEFAULT_ENCODING_SA 0
398 static sci_t
make_sci(u8
*addr
, __be16 port
)
402 memcpy(&sci
, addr
, ETH_ALEN
);
403 memcpy(((char *)&sci
) + ETH_ALEN
, &port
, sizeof(port
));
408 static sci_t
macsec_frame_sci(struct macsec_eth_header
*hdr
, bool sci_present
)
413 memcpy(&sci
, hdr
->secure_channel_id
,
414 sizeof(hdr
->secure_channel_id
));
416 sci
= make_sci(hdr
->eth
.h_source
, MACSEC_PORT_ES
);
421 static unsigned int macsec_sectag_len(bool sci_present
)
423 return MACSEC_TAG_LEN
+ (sci_present
? MACSEC_SCI_LEN
: 0);
426 static unsigned int macsec_hdr_len(bool sci_present
)
428 return macsec_sectag_len(sci_present
) + ETH_HLEN
;
431 static unsigned int macsec_extra_len(bool sci_present
)
433 return macsec_sectag_len(sci_present
) + sizeof(__be16
);
436 /* Fill SecTAG according to IEEE 802.1AE-2006 10.5.3 */
437 static void macsec_fill_sectag(struct macsec_eth_header
*h
,
438 const struct macsec_secy
*secy
, u32 pn
)
440 const struct macsec_tx_sc
*tx_sc
= &secy
->tx_sc
;
442 memset(&h
->tci_an
, 0, macsec_sectag_len(tx_sc
->send_sci
));
443 h
->eth
.h_proto
= htons(ETH_P_MACSEC
);
445 if (tx_sc
->send_sci
||
446 (secy
->n_rx_sc
> 1 && !tx_sc
->end_station
&& !tx_sc
->scb
)) {
447 h
->tci_an
|= MACSEC_TCI_SC
;
448 memcpy(&h
->secure_channel_id
, &secy
->sci
,
449 sizeof(h
->secure_channel_id
));
451 if (tx_sc
->end_station
)
452 h
->tci_an
|= MACSEC_TCI_ES
;
454 h
->tci_an
|= MACSEC_TCI_SCB
;
457 h
->packet_number
= htonl(pn
);
459 /* with GCM, C/E clear for !encrypt, both set for encrypt */
461 h
->tci_an
|= MACSEC_TCI_CONFID
;
462 else if (secy
->icv_len
!= DEFAULT_ICV_LEN
)
463 h
->tci_an
|= MACSEC_TCI_C
;
465 h
->tci_an
|= tx_sc
->encoding_sa
;
468 static void macsec_set_shortlen(struct macsec_eth_header
*h
, size_t data_len
)
470 if (data_len
< MIN_NON_SHORT_LEN
)
471 h
->short_length
= data_len
;
474 /* validate MACsec packet according to IEEE 802.1AE-2006 9.12 */
475 static bool macsec_validate_skb(struct sk_buff
*skb
, u16 icv_len
)
477 struct macsec_eth_header
*h
= (struct macsec_eth_header
*)skb
->data
;
478 int len
= skb
->len
- 2 * ETH_ALEN
;
479 int extra_len
= macsec_extra_len(!!(h
->tci_an
& MACSEC_TCI_SC
)) + icv_len
;
481 /* a) It comprises at least 17 octets */
485 /* b) MACsec EtherType: already checked */
487 /* c) V bit is clear */
488 if (h
->tci_an
& MACSEC_TCI_VERSION
)
491 /* d) ES or SCB => !SC */
492 if ((h
->tci_an
& MACSEC_TCI_ES
|| h
->tci_an
& MACSEC_TCI_SCB
) &&
493 (h
->tci_an
& MACSEC_TCI_SC
))
496 /* e) Bits 7 and 8 of octet 4 of the SecTAG are clear */
500 /* rx.pn != 0 (figure 10-5) */
501 if (!h
->packet_number
)
504 /* length check, f) g) h) i) */
506 return len
== extra_len
+ h
->short_length
;
507 return len
>= extra_len
+ MIN_NON_SHORT_LEN
;
510 #define MACSEC_NEEDED_HEADROOM (macsec_extra_len(true))
511 #define MACSEC_NEEDED_TAILROOM MACSEC_MAX_ICV_LEN
513 static void macsec_fill_iv(unsigned char *iv
, sci_t sci
, u32 pn
)
515 struct gcm_iv
*gcm_iv
= (struct gcm_iv
*)iv
;
518 gcm_iv
->pn
= htonl(pn
);
521 static struct macsec_eth_header
*macsec_ethhdr(struct sk_buff
*skb
)
523 return (struct macsec_eth_header
*)skb_mac_header(skb
);
526 static u32
tx_sa_update_pn(struct macsec_tx_sa
*tx_sa
, struct macsec_secy
*secy
)
530 spin_lock_bh(&tx_sa
->lock
);
534 if (tx_sa
->next_pn
== 0) {
535 pr_debug("PN wrapped, transitioning to !oper\n");
536 tx_sa
->active
= false;
537 if (secy
->protect_frames
)
538 secy
->operational
= false;
540 spin_unlock_bh(&tx_sa
->lock
);
545 static void macsec_encrypt_finish(struct sk_buff
*skb
, struct net_device
*dev
)
547 struct macsec_dev
*macsec
= netdev_priv(dev
);
549 skb
->dev
= macsec
->real_dev
;
550 skb_reset_mac_header(skb
);
551 skb
->protocol
= eth_hdr(skb
)->h_proto
;
554 static void macsec_count_tx(struct sk_buff
*skb
, struct macsec_tx_sc
*tx_sc
,
555 struct macsec_tx_sa
*tx_sa
)
557 struct pcpu_tx_sc_stats
*txsc_stats
= this_cpu_ptr(tx_sc
->stats
);
559 u64_stats_update_begin(&txsc_stats
->syncp
);
560 if (tx_sc
->encrypt
) {
561 txsc_stats
->stats
.OutOctetsEncrypted
+= skb
->len
;
562 txsc_stats
->stats
.OutPktsEncrypted
++;
563 this_cpu_inc(tx_sa
->stats
->OutPktsEncrypted
);
565 txsc_stats
->stats
.OutOctetsProtected
+= skb
->len
;
566 txsc_stats
->stats
.OutPktsProtected
++;
567 this_cpu_inc(tx_sa
->stats
->OutPktsProtected
);
569 u64_stats_update_end(&txsc_stats
->syncp
);
572 static void count_tx(struct net_device
*dev
, int ret
, int len
)
574 if (likely(ret
== NET_XMIT_SUCCESS
|| ret
== NET_XMIT_CN
)) {
575 struct pcpu_sw_netstats
*stats
= this_cpu_ptr(dev
->tstats
);
577 u64_stats_update_begin(&stats
->syncp
);
579 stats
->tx_bytes
+= len
;
580 u64_stats_update_end(&stats
->syncp
);
582 dev
->stats
.tx_dropped
++;
586 static void macsec_encrypt_done(struct crypto_async_request
*base
, int err
)
588 struct sk_buff
*skb
= base
->data
;
589 struct net_device
*dev
= skb
->dev
;
590 struct macsec_dev
*macsec
= macsec_priv(dev
);
591 struct macsec_tx_sa
*sa
= macsec_skb_cb(skb
)->tx_sa
;
594 aead_request_free(macsec_skb_cb(skb
)->req
);
597 macsec_encrypt_finish(skb
, dev
);
598 macsec_count_tx(skb
, &macsec
->secy
.tx_sc
, macsec_skb_cb(skb
)->tx_sa
);
600 ret
= dev_queue_xmit(skb
);
601 count_tx(dev
, ret
, len
);
602 rcu_read_unlock_bh();
608 static struct aead_request
*macsec_alloc_req(struct crypto_aead
*tfm
,
610 struct scatterlist
**sg
)
612 size_t size
, iv_offset
, sg_offset
;
613 struct aead_request
*req
;
616 size
= sizeof(struct aead_request
) + crypto_aead_reqsize(tfm
);
618 size
+= GCM_AES_IV_LEN
;
620 size
= ALIGN(size
, __alignof__(struct scatterlist
));
622 size
+= sizeof(struct scatterlist
) * (MAX_SKB_FRAGS
+ 1);
624 tmp
= kmalloc(size
, GFP_ATOMIC
);
628 *iv
= (unsigned char *)(tmp
+ iv_offset
);
629 *sg
= (struct scatterlist
*)(tmp
+ sg_offset
);
632 aead_request_set_tfm(req
, tfm
);
637 static struct sk_buff
*macsec_encrypt(struct sk_buff
*skb
,
638 struct net_device
*dev
)
641 struct scatterlist
*sg
;
644 struct macsec_eth_header
*hh
;
645 size_t unprotected_len
;
646 struct aead_request
*req
;
647 struct macsec_secy
*secy
;
648 struct macsec_tx_sc
*tx_sc
;
649 struct macsec_tx_sa
*tx_sa
;
650 struct macsec_dev
*macsec
= macsec_priv(dev
);
653 secy
= &macsec
->secy
;
654 tx_sc
= &secy
->tx_sc
;
656 /* 10.5.1 TX SA assignment */
657 tx_sa
= macsec_txsa_get(tx_sc
->sa
[tx_sc
->encoding_sa
]);
659 secy
->operational
= false;
661 return ERR_PTR(-EINVAL
);
664 if (unlikely(skb_headroom(skb
) < MACSEC_NEEDED_HEADROOM
||
665 skb_tailroom(skb
) < MACSEC_NEEDED_TAILROOM
)) {
666 struct sk_buff
*nskb
= skb_copy_expand(skb
,
667 MACSEC_NEEDED_HEADROOM
,
668 MACSEC_NEEDED_TAILROOM
,
674 macsec_txsa_put(tx_sa
);
676 return ERR_PTR(-ENOMEM
);
679 skb
= skb_unshare(skb
, GFP_ATOMIC
);
681 macsec_txsa_put(tx_sa
);
682 return ERR_PTR(-ENOMEM
);
686 unprotected_len
= skb
->len
;
688 hh
= (struct macsec_eth_header
*)skb_push(skb
, macsec_extra_len(tx_sc
->send_sci
));
689 memmove(hh
, eth
, 2 * ETH_ALEN
);
691 pn
= tx_sa_update_pn(tx_sa
, secy
);
693 macsec_txsa_put(tx_sa
);
695 return ERR_PTR(-ENOLINK
);
697 macsec_fill_sectag(hh
, secy
, pn
);
698 macsec_set_shortlen(hh
, unprotected_len
- 2 * ETH_ALEN
);
700 skb_put(skb
, secy
->icv_len
);
702 if (skb
->len
- ETH_HLEN
> macsec_priv(dev
)->real_dev
->mtu
) {
703 struct pcpu_secy_stats
*secy_stats
= this_cpu_ptr(macsec
->stats
);
705 u64_stats_update_begin(&secy_stats
->syncp
);
706 secy_stats
->stats
.OutPktsTooLong
++;
707 u64_stats_update_end(&secy_stats
->syncp
);
709 macsec_txsa_put(tx_sa
);
711 return ERR_PTR(-EINVAL
);
714 req
= macsec_alloc_req(tx_sa
->key
.tfm
, &iv
, &sg
);
716 macsec_txsa_put(tx_sa
);
718 return ERR_PTR(-ENOMEM
);
721 macsec_fill_iv(iv
, secy
->sci
, pn
);
723 sg_init_table(sg
, MAX_SKB_FRAGS
+ 1);
724 skb_to_sgvec(skb
, sg
, 0, skb
->len
);
726 if (tx_sc
->encrypt
) {
727 int len
= skb
->len
- macsec_hdr_len(tx_sc
->send_sci
) -
729 aead_request_set_crypt(req
, sg
, sg
, len
, iv
);
730 aead_request_set_ad(req
, macsec_hdr_len(tx_sc
->send_sci
));
732 aead_request_set_crypt(req
, sg
, sg
, 0, iv
);
733 aead_request_set_ad(req
, skb
->len
- secy
->icv_len
);
736 macsec_skb_cb(skb
)->req
= req
;
737 macsec_skb_cb(skb
)->tx_sa
= tx_sa
;
738 aead_request_set_callback(req
, 0, macsec_encrypt_done
, skb
);
741 ret
= crypto_aead_encrypt(req
);
742 if (ret
== -EINPROGRESS
) {
744 } else if (ret
!= 0) {
747 aead_request_free(req
);
748 macsec_txsa_put(tx_sa
);
749 return ERR_PTR(-EINVAL
);
753 aead_request_free(req
);
754 macsec_txsa_put(tx_sa
);
759 static bool macsec_post_decrypt(struct sk_buff
*skb
, struct macsec_secy
*secy
, u32 pn
)
761 struct macsec_rx_sa
*rx_sa
= macsec_skb_cb(skb
)->rx_sa
;
762 struct pcpu_rx_sc_stats
*rxsc_stats
= this_cpu_ptr(rx_sa
->sc
->stats
);
763 struct macsec_eth_header
*hdr
= macsec_ethhdr(skb
);
766 spin_lock(&rx_sa
->lock
);
767 if (rx_sa
->next_pn
>= secy
->replay_window
)
768 lowest_pn
= rx_sa
->next_pn
- secy
->replay_window
;
770 /* Now perform replay protection check again
771 * (see IEEE 802.1AE-2006 figure 10-5)
773 if (secy
->replay_protect
&& pn
< lowest_pn
) {
774 spin_unlock(&rx_sa
->lock
);
775 u64_stats_update_begin(&rxsc_stats
->syncp
);
776 rxsc_stats
->stats
.InPktsLate
++;
777 u64_stats_update_end(&rxsc_stats
->syncp
);
781 if (secy
->validate_frames
!= MACSEC_VALIDATE_DISABLED
) {
782 u64_stats_update_begin(&rxsc_stats
->syncp
);
783 if (hdr
->tci_an
& MACSEC_TCI_E
)
784 rxsc_stats
->stats
.InOctetsDecrypted
+= skb
->len
;
786 rxsc_stats
->stats
.InOctetsValidated
+= skb
->len
;
787 u64_stats_update_end(&rxsc_stats
->syncp
);
790 if (!macsec_skb_cb(skb
)->valid
) {
791 spin_unlock(&rx_sa
->lock
);
794 if (hdr
->tci_an
& MACSEC_TCI_C
||
795 secy
->validate_frames
== MACSEC_VALIDATE_STRICT
) {
796 u64_stats_update_begin(&rxsc_stats
->syncp
);
797 rxsc_stats
->stats
.InPktsNotValid
++;
798 u64_stats_update_end(&rxsc_stats
->syncp
);
802 u64_stats_update_begin(&rxsc_stats
->syncp
);
803 if (secy
->validate_frames
== MACSEC_VALIDATE_CHECK
) {
804 rxsc_stats
->stats
.InPktsInvalid
++;
805 this_cpu_inc(rx_sa
->stats
->InPktsInvalid
);
806 } else if (pn
< lowest_pn
) {
807 rxsc_stats
->stats
.InPktsDelayed
++;
809 rxsc_stats
->stats
.InPktsUnchecked
++;
811 u64_stats_update_end(&rxsc_stats
->syncp
);
813 u64_stats_update_begin(&rxsc_stats
->syncp
);
814 if (pn
< lowest_pn
) {
815 rxsc_stats
->stats
.InPktsDelayed
++;
817 rxsc_stats
->stats
.InPktsOK
++;
818 this_cpu_inc(rx_sa
->stats
->InPktsOK
);
820 u64_stats_update_end(&rxsc_stats
->syncp
);
822 if (pn
>= rx_sa
->next_pn
)
823 rx_sa
->next_pn
= pn
+ 1;
824 spin_unlock(&rx_sa
->lock
);
830 static void macsec_reset_skb(struct sk_buff
*skb
, struct net_device
*dev
)
832 skb
->pkt_type
= PACKET_HOST
;
833 skb
->protocol
= eth_type_trans(skb
, dev
);
835 skb_reset_network_header(skb
);
836 if (!skb_transport_header_was_set(skb
))
837 skb_reset_transport_header(skb
);
838 skb_reset_mac_len(skb
);
841 static void macsec_finalize_skb(struct sk_buff
*skb
, u8 icv_len
, u8 hdr_len
)
843 memmove(skb
->data
+ hdr_len
, skb
->data
, 2 * ETH_ALEN
);
844 skb_pull(skb
, hdr_len
);
845 pskb_trim_unique(skb
, skb
->len
- icv_len
);
848 static void count_rx(struct net_device
*dev
, int len
)
850 struct pcpu_sw_netstats
*stats
= this_cpu_ptr(dev
->tstats
);
852 u64_stats_update_begin(&stats
->syncp
);
854 stats
->rx_bytes
+= len
;
855 u64_stats_update_end(&stats
->syncp
);
858 static void macsec_decrypt_done(struct crypto_async_request
*base
, int err
)
860 struct sk_buff
*skb
= base
->data
;
861 struct net_device
*dev
= skb
->dev
;
862 struct macsec_dev
*macsec
= macsec_priv(dev
);
863 struct macsec_rx_sa
*rx_sa
= macsec_skb_cb(skb
)->rx_sa
;
867 aead_request_free(macsec_skb_cb(skb
)->req
);
870 pn
= ntohl(macsec_ethhdr(skb
)->packet_number
);
871 if (!macsec_post_decrypt(skb
, &macsec
->secy
, pn
)) {
872 rcu_read_unlock_bh();
877 macsec_finalize_skb(skb
, macsec
->secy
.icv_len
,
878 macsec_extra_len(macsec_skb_cb(skb
)->has_sci
));
879 macsec_reset_skb(skb
, macsec
->secy
.netdev
);
883 if (ret
== NET_RX_SUCCESS
)
886 macsec
->secy
.netdev
->stats
.rx_dropped
++;
888 rcu_read_unlock_bh();
891 macsec_rxsa_put(rx_sa
);
895 static struct sk_buff
*macsec_decrypt(struct sk_buff
*skb
,
896 struct net_device
*dev
,
897 struct macsec_rx_sa
*rx_sa
,
899 struct macsec_secy
*secy
)
902 struct scatterlist
*sg
;
904 struct aead_request
*req
;
905 struct macsec_eth_header
*hdr
;
906 u16 icv_len
= secy
->icv_len
;
908 macsec_skb_cb(skb
)->valid
= false;
909 skb
= skb_share_check(skb
, GFP_ATOMIC
);
911 return ERR_PTR(-ENOMEM
);
913 req
= macsec_alloc_req(rx_sa
->key
.tfm
, &iv
, &sg
);
916 return ERR_PTR(-ENOMEM
);
919 hdr
= (struct macsec_eth_header
*)skb
->data
;
920 macsec_fill_iv(iv
, sci
, ntohl(hdr
->packet_number
));
922 sg_init_table(sg
, MAX_SKB_FRAGS
+ 1);
923 skb_to_sgvec(skb
, sg
, 0, skb
->len
);
925 if (hdr
->tci_an
& MACSEC_TCI_E
) {
926 /* confidentiality: ethernet + macsec header
927 * authenticated, encrypted payload
929 int len
= skb
->len
- macsec_hdr_len(macsec_skb_cb(skb
)->has_sci
);
931 aead_request_set_crypt(req
, sg
, sg
, len
, iv
);
932 aead_request_set_ad(req
, macsec_hdr_len(macsec_skb_cb(skb
)->has_sci
));
933 skb
= skb_unshare(skb
, GFP_ATOMIC
);
935 aead_request_free(req
);
936 return ERR_PTR(-ENOMEM
);
939 /* integrity only: all headers + data authenticated */
940 aead_request_set_crypt(req
, sg
, sg
, icv_len
, iv
);
941 aead_request_set_ad(req
, skb
->len
- icv_len
);
944 macsec_skb_cb(skb
)->req
= req
;
945 macsec_skb_cb(skb
)->rx_sa
= rx_sa
;
947 aead_request_set_callback(req
, 0, macsec_decrypt_done
, skb
);
950 ret
= crypto_aead_decrypt(req
);
951 if (ret
== -EINPROGRESS
) {
953 } else if (ret
!= 0) {
954 /* decryption/authentication failed
955 * 10.6 if validateFrames is disabled, deliver anyway
957 if (ret
!= -EBADMSG
) {
962 macsec_skb_cb(skb
)->valid
= true;
966 aead_request_free(req
);
971 static struct macsec_rx_sc
*find_rx_sc(struct macsec_secy
*secy
, sci_t sci
)
973 struct macsec_rx_sc
*rx_sc
;
975 for_each_rxsc(secy
, rx_sc
) {
976 if (rx_sc
->sci
== sci
)
983 static struct macsec_rx_sc
*find_rx_sc_rtnl(struct macsec_secy
*secy
, sci_t sci
)
985 struct macsec_rx_sc
*rx_sc
;
987 for_each_rxsc_rtnl(secy
, rx_sc
) {
988 if (rx_sc
->sci
== sci
)
995 static void handle_not_macsec(struct sk_buff
*skb
)
997 struct macsec_rxh_data
*rxd
;
998 struct macsec_dev
*macsec
;
1001 rxd
= macsec_data_rcu(skb
->dev
);
1003 /* 10.6 If the management control validateFrames is not
1004 * Strict, frames without a SecTAG are received, counted, and
1005 * delivered to the Controlled Port
1007 list_for_each_entry_rcu(macsec
, &rxd
->secys
, secys
) {
1008 struct sk_buff
*nskb
;
1010 struct pcpu_secy_stats
*secy_stats
= this_cpu_ptr(macsec
->stats
);
1012 if (macsec
->secy
.validate_frames
== MACSEC_VALIDATE_STRICT
) {
1013 u64_stats_update_begin(&secy_stats
->syncp
);
1014 secy_stats
->stats
.InPktsNoTag
++;
1015 u64_stats_update_end(&secy_stats
->syncp
);
1019 /* deliver on this port */
1020 nskb
= skb_clone(skb
, GFP_ATOMIC
);
1024 nskb
->dev
= macsec
->secy
.netdev
;
1026 ret
= netif_rx(nskb
);
1027 if (ret
== NET_RX_SUCCESS
) {
1028 u64_stats_update_begin(&secy_stats
->syncp
);
1029 secy_stats
->stats
.InPktsUntagged
++;
1030 u64_stats_update_end(&secy_stats
->syncp
);
1032 macsec
->secy
.netdev
->stats
.rx_dropped
++;
1039 static rx_handler_result_t
macsec_handle_frame(struct sk_buff
**pskb
)
1041 struct sk_buff
*skb
= *pskb
;
1042 struct net_device
*dev
= skb
->dev
;
1043 struct macsec_eth_header
*hdr
;
1044 struct macsec_secy
*secy
= NULL
;
1045 struct macsec_rx_sc
*rx_sc
;
1046 struct macsec_rx_sa
*rx_sa
;
1047 struct macsec_rxh_data
*rxd
;
1048 struct macsec_dev
*macsec
;
1052 struct pcpu_rx_sc_stats
*rxsc_stats
;
1053 struct pcpu_secy_stats
*secy_stats
;
1056 if (skb_headroom(skb
) < ETH_HLEN
)
1059 hdr
= macsec_ethhdr(skb
);
1060 if (hdr
->eth
.h_proto
!= htons(ETH_P_MACSEC
)) {
1061 handle_not_macsec(skb
);
1063 /* and deliver to the uncontrolled port */
1064 return RX_HANDLER_PASS
;
1067 skb
= skb_unshare(skb
, GFP_ATOMIC
);
1070 return RX_HANDLER_CONSUMED
;
1073 pulled_sci
= pskb_may_pull(skb
, macsec_extra_len(true));
1075 if (!pskb_may_pull(skb
, macsec_extra_len(false)))
1079 hdr
= macsec_ethhdr(skb
);
1081 /* Frames with a SecTAG that has the TCI E bit set but the C
1082 * bit clear are discarded, as this reserved encoding is used
1083 * to identify frames with a SecTAG that are not to be
1084 * delivered to the Controlled Port.
1086 if ((hdr
->tci_an
& (MACSEC_TCI_C
| MACSEC_TCI_E
)) == MACSEC_TCI_E
)
1087 return RX_HANDLER_PASS
;
1089 /* now, pull the extra length */
1090 if (hdr
->tci_an
& MACSEC_TCI_SC
) {
1095 /* ethernet header is part of crypto processing */
1096 skb_push(skb
, ETH_HLEN
);
1098 macsec_skb_cb(skb
)->has_sci
= !!(hdr
->tci_an
& MACSEC_TCI_SC
);
1099 macsec_skb_cb(skb
)->assoc_num
= hdr
->tci_an
& MACSEC_AN_MASK
;
1100 sci
= macsec_frame_sci(hdr
, macsec_skb_cb(skb
)->has_sci
);
1103 rxd
= macsec_data_rcu(skb
->dev
);
1105 list_for_each_entry_rcu(macsec
, &rxd
->secys
, secys
) {
1106 struct macsec_rx_sc
*sc
= find_rx_sc(&macsec
->secy
, sci
);
1109 secy
= &macsec
->secy
;
1119 macsec
= macsec_priv(dev
);
1120 secy_stats
= this_cpu_ptr(macsec
->stats
);
1121 rxsc_stats
= this_cpu_ptr(rx_sc
->stats
);
1123 if (!macsec_validate_skb(skb
, secy
->icv_len
)) {
1124 u64_stats_update_begin(&secy_stats
->syncp
);
1125 secy_stats
->stats
.InPktsBadTag
++;
1126 u64_stats_update_end(&secy_stats
->syncp
);
1130 rx_sa
= macsec_rxsa_get(rx_sc
->sa
[macsec_skb_cb(skb
)->assoc_num
]);
1132 /* 10.6.1 if the SA is not in use */
1134 /* If validateFrames is Strict or the C bit in the
1135 * SecTAG is set, discard
1137 if (hdr
->tci_an
& MACSEC_TCI_C
||
1138 secy
->validate_frames
== MACSEC_VALIDATE_STRICT
) {
1139 u64_stats_update_begin(&rxsc_stats
->syncp
);
1140 rxsc_stats
->stats
.InPktsNotUsingSA
++;
1141 u64_stats_update_end(&rxsc_stats
->syncp
);
1145 /* not Strict, the frame (with the SecTAG and ICV
1146 * removed) is delivered to the Controlled Port.
1148 u64_stats_update_begin(&rxsc_stats
->syncp
);
1149 rxsc_stats
->stats
.InPktsUnusedSA
++;
1150 u64_stats_update_end(&rxsc_stats
->syncp
);
1154 /* First, PN check to avoid decrypting obviously wrong packets */
1155 pn
= ntohl(hdr
->packet_number
);
1156 if (secy
->replay_protect
) {
1159 spin_lock(&rx_sa
->lock
);
1160 late
= rx_sa
->next_pn
>= secy
->replay_window
&&
1161 pn
< (rx_sa
->next_pn
- secy
->replay_window
);
1162 spin_unlock(&rx_sa
->lock
);
1165 u64_stats_update_begin(&rxsc_stats
->syncp
);
1166 rxsc_stats
->stats
.InPktsLate
++;
1167 u64_stats_update_end(&rxsc_stats
->syncp
);
1172 /* Disabled && !changed text => skip validation */
1173 if (hdr
->tci_an
& MACSEC_TCI_C
||
1174 secy
->validate_frames
!= MACSEC_VALIDATE_DISABLED
)
1175 skb
= macsec_decrypt(skb
, dev
, rx_sa
, sci
, secy
);
1178 /* the decrypt callback needs the reference */
1179 if (PTR_ERR(skb
) != -EINPROGRESS
)
1180 macsec_rxsa_put(rx_sa
);
1183 return RX_HANDLER_CONSUMED
;
1186 if (!macsec_post_decrypt(skb
, secy
, pn
))
1190 macsec_finalize_skb(skb
, secy
->icv_len
,
1191 macsec_extra_len(macsec_skb_cb(skb
)->has_sci
));
1192 macsec_reset_skb(skb
, secy
->netdev
);
1195 macsec_rxsa_put(rx_sa
);
1196 count_rx(dev
, skb
->len
);
1201 return RX_HANDLER_ANOTHER
;
1204 macsec_rxsa_put(rx_sa
);
1210 return RX_HANDLER_CONSUMED
;
1213 /* 10.6.1 if the SC is not found */
1214 cbit
= !!(hdr
->tci_an
& MACSEC_TCI_C
);
1216 macsec_finalize_skb(skb
, DEFAULT_ICV_LEN
,
1217 macsec_extra_len(macsec_skb_cb(skb
)->has_sci
));
1219 list_for_each_entry_rcu(macsec
, &rxd
->secys
, secys
) {
1220 struct sk_buff
*nskb
;
1223 secy_stats
= this_cpu_ptr(macsec
->stats
);
1225 /* If validateFrames is Strict or the C bit in the
1226 * SecTAG is set, discard
1229 macsec
->secy
.validate_frames
== MACSEC_VALIDATE_STRICT
) {
1230 u64_stats_update_begin(&secy_stats
->syncp
);
1231 secy_stats
->stats
.InPktsNoSCI
++;
1232 u64_stats_update_end(&secy_stats
->syncp
);
1236 /* not strict, the frame (with the SecTAG and ICV
1237 * removed) is delivered to the Controlled Port.
1239 nskb
= skb_clone(skb
, GFP_ATOMIC
);
1243 macsec_reset_skb(nskb
, macsec
->secy
.netdev
);
1245 ret
= netif_rx(nskb
);
1246 if (ret
== NET_RX_SUCCESS
) {
1247 u64_stats_update_begin(&secy_stats
->syncp
);
1248 secy_stats
->stats
.InPktsUnknownSCI
++;
1249 u64_stats_update_end(&secy_stats
->syncp
);
1251 macsec
->secy
.netdev
->stats
.rx_dropped
++;
1257 return RX_HANDLER_PASS
;
1260 static struct crypto_aead
*macsec_alloc_tfm(char *key
, int key_len
, int icv_len
)
1262 struct crypto_aead
*tfm
;
1265 tfm
= crypto_alloc_aead("gcm(aes)", 0, 0);
1266 if (!tfm
|| IS_ERR(tfm
))
1269 ret
= crypto_aead_setkey(tfm
, key
, key_len
);
1271 crypto_free_aead(tfm
);
1275 ret
= crypto_aead_setauthsize(tfm
, icv_len
);
1277 crypto_free_aead(tfm
);
1284 static int init_rx_sa(struct macsec_rx_sa
*rx_sa
, char *sak
, int key_len
,
1287 rx_sa
->stats
= alloc_percpu(struct macsec_rx_sa_stats
);
1291 rx_sa
->key
.tfm
= macsec_alloc_tfm(sak
, key_len
, icv_len
);
1292 if (!rx_sa
->key
.tfm
) {
1293 free_percpu(rx_sa
->stats
);
1297 rx_sa
->active
= false;
1299 atomic_set(&rx_sa
->refcnt
, 1);
1300 spin_lock_init(&rx_sa
->lock
);
1305 static void clear_rx_sa(struct macsec_rx_sa
*rx_sa
)
1307 rx_sa
->active
= false;
1309 macsec_rxsa_put(rx_sa
);
1312 static void free_rx_sc(struct macsec_rx_sc
*rx_sc
)
1316 for (i
= 0; i
< MACSEC_NUM_AN
; i
++) {
1317 struct macsec_rx_sa
*sa
= rtnl_dereference(rx_sc
->sa
[i
]);
1319 RCU_INIT_POINTER(rx_sc
->sa
[i
], NULL
);
1324 macsec_rxsc_put(rx_sc
);
1327 static struct macsec_rx_sc
*del_rx_sc(struct macsec_secy
*secy
, sci_t sci
)
1329 struct macsec_rx_sc
*rx_sc
, __rcu
**rx_scp
;
1331 for (rx_scp
= &secy
->rx_sc
, rx_sc
= rtnl_dereference(*rx_scp
);
1333 rx_scp
= &rx_sc
->next
, rx_sc
= rtnl_dereference(*rx_scp
)) {
1334 if (rx_sc
->sci
== sci
) {
1337 rcu_assign_pointer(*rx_scp
, rx_sc
->next
);
1345 static struct macsec_rx_sc
*create_rx_sc(struct net_device
*dev
, sci_t sci
)
1347 struct macsec_rx_sc
*rx_sc
;
1348 struct macsec_dev
*macsec
;
1349 struct net_device
*real_dev
= macsec_priv(dev
)->real_dev
;
1350 struct macsec_rxh_data
*rxd
= macsec_data_rtnl(real_dev
);
1351 struct macsec_secy
*secy
;
1353 list_for_each_entry(macsec
, &rxd
->secys
, secys
) {
1354 if (find_rx_sc_rtnl(&macsec
->secy
, sci
))
1355 return ERR_PTR(-EEXIST
);
1358 rx_sc
= kzalloc(sizeof(*rx_sc
), GFP_KERNEL
);
1360 return ERR_PTR(-ENOMEM
);
1362 rx_sc
->stats
= netdev_alloc_pcpu_stats(struct pcpu_rx_sc_stats
);
1363 if (!rx_sc
->stats
) {
1365 return ERR_PTR(-ENOMEM
);
1369 rx_sc
->active
= true;
1370 atomic_set(&rx_sc
->refcnt
, 1);
1372 secy
= &macsec_priv(dev
)->secy
;
1373 rcu_assign_pointer(rx_sc
->next
, secy
->rx_sc
);
1374 rcu_assign_pointer(secy
->rx_sc
, rx_sc
);
1382 static int init_tx_sa(struct macsec_tx_sa
*tx_sa
, char *sak
, int key_len
,
1385 tx_sa
->stats
= alloc_percpu(struct macsec_tx_sa_stats
);
1389 tx_sa
->key
.tfm
= macsec_alloc_tfm(sak
, key_len
, icv_len
);
1390 if (!tx_sa
->key
.tfm
) {
1391 free_percpu(tx_sa
->stats
);
1395 tx_sa
->active
= false;
1396 atomic_set(&tx_sa
->refcnt
, 1);
1397 spin_lock_init(&tx_sa
->lock
);
1402 static void clear_tx_sa(struct macsec_tx_sa
*tx_sa
)
1404 tx_sa
->active
= false;
1406 macsec_txsa_put(tx_sa
);
1409 static struct genl_family macsec_fam
= {
1410 .id
= GENL_ID_GENERATE
,
1411 .name
= MACSEC_GENL_NAME
,
1413 .version
= MACSEC_GENL_VERSION
,
1414 .maxattr
= MACSEC_ATTR_MAX
,
1418 static struct net_device
*get_dev_from_nl(struct net
*net
,
1419 struct nlattr
**attrs
)
1421 int ifindex
= nla_get_u32(attrs
[MACSEC_ATTR_IFINDEX
]);
1422 struct net_device
*dev
;
1424 dev
= __dev_get_by_index(net
, ifindex
);
1426 return ERR_PTR(-ENODEV
);
1428 if (!netif_is_macsec(dev
))
1429 return ERR_PTR(-ENODEV
);
1434 static sci_t
nla_get_sci(const struct nlattr
*nla
)
1436 return (__force sci_t
)nla_get_u64(nla
);
1439 static int nla_put_sci(struct sk_buff
*skb
, int attrtype
, sci_t value
,
1442 return nla_put_u64_64bit(skb
, attrtype
, (__force u64
)value
, padattr
);
1445 static struct macsec_tx_sa
*get_txsa_from_nl(struct net
*net
,
1446 struct nlattr
**attrs
,
1447 struct nlattr
**tb_sa
,
1448 struct net_device
**devp
,
1449 struct macsec_secy
**secyp
,
1450 struct macsec_tx_sc
**scp
,
1453 struct net_device
*dev
;
1454 struct macsec_secy
*secy
;
1455 struct macsec_tx_sc
*tx_sc
;
1456 struct macsec_tx_sa
*tx_sa
;
1458 if (!tb_sa
[MACSEC_SA_ATTR_AN
])
1459 return ERR_PTR(-EINVAL
);
1461 *assoc_num
= nla_get_u8(tb_sa
[MACSEC_SA_ATTR_AN
]);
1463 dev
= get_dev_from_nl(net
, attrs
);
1465 return ERR_CAST(dev
);
1467 if (*assoc_num
>= MACSEC_NUM_AN
)
1468 return ERR_PTR(-EINVAL
);
1470 secy
= &macsec_priv(dev
)->secy
;
1471 tx_sc
= &secy
->tx_sc
;
1473 tx_sa
= rtnl_dereference(tx_sc
->sa
[*assoc_num
]);
1475 return ERR_PTR(-ENODEV
);
1483 static struct macsec_rx_sc
*get_rxsc_from_nl(struct net
*net
,
1484 struct nlattr
**attrs
,
1485 struct nlattr
**tb_rxsc
,
1486 struct net_device
**devp
,
1487 struct macsec_secy
**secyp
)
1489 struct net_device
*dev
;
1490 struct macsec_secy
*secy
;
1491 struct macsec_rx_sc
*rx_sc
;
1494 dev
= get_dev_from_nl(net
, attrs
);
1496 return ERR_CAST(dev
);
1498 secy
= &macsec_priv(dev
)->secy
;
1500 if (!tb_rxsc
[MACSEC_RXSC_ATTR_SCI
])
1501 return ERR_PTR(-EINVAL
);
1503 sci
= nla_get_sci(tb_rxsc
[MACSEC_RXSC_ATTR_SCI
]);
1504 rx_sc
= find_rx_sc_rtnl(secy
, sci
);
1506 return ERR_PTR(-ENODEV
);
1514 static struct macsec_rx_sa
*get_rxsa_from_nl(struct net
*net
,
1515 struct nlattr
**attrs
,
1516 struct nlattr
**tb_rxsc
,
1517 struct nlattr
**tb_sa
,
1518 struct net_device
**devp
,
1519 struct macsec_secy
**secyp
,
1520 struct macsec_rx_sc
**scp
,
1523 struct macsec_rx_sc
*rx_sc
;
1524 struct macsec_rx_sa
*rx_sa
;
1526 if (!tb_sa
[MACSEC_SA_ATTR_AN
])
1527 return ERR_PTR(-EINVAL
);
1529 *assoc_num
= nla_get_u8(tb_sa
[MACSEC_SA_ATTR_AN
]);
1530 if (*assoc_num
>= MACSEC_NUM_AN
)
1531 return ERR_PTR(-EINVAL
);
1533 rx_sc
= get_rxsc_from_nl(net
, attrs
, tb_rxsc
, devp
, secyp
);
1535 return ERR_CAST(rx_sc
);
1537 rx_sa
= rtnl_dereference(rx_sc
->sa
[*assoc_num
]);
1539 return ERR_PTR(-ENODEV
);
1546 static const struct nla_policy macsec_genl_policy
[NUM_MACSEC_ATTR
] = {
1547 [MACSEC_ATTR_IFINDEX
] = { .type
= NLA_U32
},
1548 [MACSEC_ATTR_RXSC_CONFIG
] = { .type
= NLA_NESTED
},
1549 [MACSEC_ATTR_SA_CONFIG
] = { .type
= NLA_NESTED
},
1552 static const struct nla_policy macsec_genl_rxsc_policy
[NUM_MACSEC_RXSC_ATTR
] = {
1553 [MACSEC_RXSC_ATTR_SCI
] = { .type
= NLA_U64
},
1554 [MACSEC_RXSC_ATTR_ACTIVE
] = { .type
= NLA_U8
},
1557 static const struct nla_policy macsec_genl_sa_policy
[NUM_MACSEC_SA_ATTR
] = {
1558 [MACSEC_SA_ATTR_AN
] = { .type
= NLA_U8
},
1559 [MACSEC_SA_ATTR_ACTIVE
] = { .type
= NLA_U8
},
1560 [MACSEC_SA_ATTR_PN
] = { .type
= NLA_U32
},
1561 [MACSEC_SA_ATTR_KEYID
] = { .type
= NLA_BINARY
,
1562 .len
= MACSEC_KEYID_LEN
, },
1563 [MACSEC_SA_ATTR_KEY
] = { .type
= NLA_BINARY
,
1564 .len
= MACSEC_MAX_KEY_LEN
, },
1567 static int parse_sa_config(struct nlattr
**attrs
, struct nlattr
**tb_sa
)
1569 if (!attrs
[MACSEC_ATTR_SA_CONFIG
])
1572 if (nla_parse_nested(tb_sa
, MACSEC_SA_ATTR_MAX
, attrs
[MACSEC_ATTR_SA_CONFIG
],
1573 macsec_genl_sa_policy
))
1579 static int parse_rxsc_config(struct nlattr
**attrs
, struct nlattr
**tb_rxsc
)
1581 if (!attrs
[MACSEC_ATTR_RXSC_CONFIG
])
1584 if (nla_parse_nested(tb_rxsc
, MACSEC_RXSC_ATTR_MAX
, attrs
[MACSEC_ATTR_RXSC_CONFIG
],
1585 macsec_genl_rxsc_policy
))
1591 static bool validate_add_rxsa(struct nlattr
**attrs
)
1593 if (!attrs
[MACSEC_SA_ATTR_AN
] ||
1594 !attrs
[MACSEC_SA_ATTR_KEY
] ||
1595 !attrs
[MACSEC_SA_ATTR_KEYID
])
1598 if (nla_get_u8(attrs
[MACSEC_SA_ATTR_AN
]) >= MACSEC_NUM_AN
)
1601 if (attrs
[MACSEC_SA_ATTR_PN
] && nla_get_u32(attrs
[MACSEC_SA_ATTR_PN
]) == 0)
1604 if (attrs
[MACSEC_SA_ATTR_ACTIVE
]) {
1605 if (nla_get_u8(attrs
[MACSEC_SA_ATTR_ACTIVE
]) > 1)
1609 if (nla_len(attrs
[MACSEC_SA_ATTR_KEYID
]) != MACSEC_KEYID_LEN
)
1615 static int macsec_add_rxsa(struct sk_buff
*skb
, struct genl_info
*info
)
1617 struct net_device
*dev
;
1618 struct nlattr
**attrs
= info
->attrs
;
1619 struct macsec_secy
*secy
;
1620 struct macsec_rx_sc
*rx_sc
;
1621 struct macsec_rx_sa
*rx_sa
;
1622 unsigned char assoc_num
;
1623 struct nlattr
*tb_rxsc
[MACSEC_RXSC_ATTR_MAX
+ 1];
1624 struct nlattr
*tb_sa
[MACSEC_SA_ATTR_MAX
+ 1];
1626 if (!attrs
[MACSEC_ATTR_IFINDEX
])
1629 if (parse_sa_config(attrs
, tb_sa
))
1632 if (parse_rxsc_config(attrs
, tb_rxsc
))
1635 if (!validate_add_rxsa(tb_sa
))
1639 rx_sc
= get_rxsc_from_nl(genl_info_net(info
), attrs
, tb_rxsc
, &dev
, &secy
);
1640 if (IS_ERR(rx_sc
) || !macsec_rxsc_get(rx_sc
)) {
1642 return PTR_ERR(rx_sc
);
1645 assoc_num
= nla_get_u8(tb_sa
[MACSEC_SA_ATTR_AN
]);
1647 if (nla_len(tb_sa
[MACSEC_SA_ATTR_KEY
]) != secy
->key_len
) {
1648 pr_notice("macsec: nl: add_rxsa: bad key length: %d != %d\n",
1649 nla_len(tb_sa
[MACSEC_SA_ATTR_KEY
]), secy
->key_len
);
1654 rx_sa
= rtnl_dereference(rx_sc
->sa
[assoc_num
]);
1660 rx_sa
= kmalloc(sizeof(*rx_sa
), GFP_KERNEL
);
1661 if (!rx_sa
|| init_rx_sa(rx_sa
, nla_data(tb_sa
[MACSEC_SA_ATTR_KEY
]),
1662 secy
->key_len
, secy
->icv_len
)) {
1668 if (tb_sa
[MACSEC_SA_ATTR_PN
]) {
1669 spin_lock_bh(&rx_sa
->lock
);
1670 rx_sa
->next_pn
= nla_get_u32(tb_sa
[MACSEC_SA_ATTR_PN
]);
1671 spin_unlock_bh(&rx_sa
->lock
);
1674 if (tb_sa
[MACSEC_SA_ATTR_ACTIVE
])
1675 rx_sa
->active
= !!nla_get_u8(tb_sa
[MACSEC_SA_ATTR_ACTIVE
]);
1677 nla_memcpy(rx_sa
->key
.id
, tb_sa
[MACSEC_SA_ATTR_KEYID
], MACSEC_KEYID_LEN
);
1679 rcu_assign_pointer(rx_sc
->sa
[assoc_num
], rx_sa
);
1686 static bool validate_add_rxsc(struct nlattr
**attrs
)
1688 if (!attrs
[MACSEC_RXSC_ATTR_SCI
])
1691 if (attrs
[MACSEC_RXSC_ATTR_ACTIVE
]) {
1692 if (nla_get_u8(attrs
[MACSEC_RXSC_ATTR_ACTIVE
]) > 1)
1699 static int macsec_add_rxsc(struct sk_buff
*skb
, struct genl_info
*info
)
1701 struct net_device
*dev
;
1702 sci_t sci
= MACSEC_UNDEF_SCI
;
1703 struct nlattr
**attrs
= info
->attrs
;
1704 struct macsec_rx_sc
*rx_sc
;
1705 struct nlattr
*tb_rxsc
[MACSEC_RXSC_ATTR_MAX
+ 1];
1707 if (!attrs
[MACSEC_ATTR_IFINDEX
])
1710 if (parse_rxsc_config(attrs
, tb_rxsc
))
1713 if (!validate_add_rxsc(tb_rxsc
))
1717 dev
= get_dev_from_nl(genl_info_net(info
), attrs
);
1720 return PTR_ERR(dev
);
1723 sci
= nla_get_sci(tb_rxsc
[MACSEC_RXSC_ATTR_SCI
]);
1725 rx_sc
= create_rx_sc(dev
, sci
);
1726 if (IS_ERR(rx_sc
)) {
1728 return PTR_ERR(rx_sc
);
1731 if (tb_rxsc
[MACSEC_RXSC_ATTR_ACTIVE
])
1732 rx_sc
->active
= !!nla_get_u8(tb_rxsc
[MACSEC_RXSC_ATTR_ACTIVE
]);
1739 static bool validate_add_txsa(struct nlattr
**attrs
)
1741 if (!attrs
[MACSEC_SA_ATTR_AN
] ||
1742 !attrs
[MACSEC_SA_ATTR_PN
] ||
1743 !attrs
[MACSEC_SA_ATTR_KEY
] ||
1744 !attrs
[MACSEC_SA_ATTR_KEYID
])
1747 if (nla_get_u8(attrs
[MACSEC_SA_ATTR_AN
]) >= MACSEC_NUM_AN
)
1750 if (nla_get_u32(attrs
[MACSEC_SA_ATTR_PN
]) == 0)
1753 if (attrs
[MACSEC_SA_ATTR_ACTIVE
]) {
1754 if (nla_get_u8(attrs
[MACSEC_SA_ATTR_ACTIVE
]) > 1)
1758 if (nla_len(attrs
[MACSEC_SA_ATTR_KEYID
]) != MACSEC_KEYID_LEN
)
1764 static int macsec_add_txsa(struct sk_buff
*skb
, struct genl_info
*info
)
1766 struct net_device
*dev
;
1767 struct nlattr
**attrs
= info
->attrs
;
1768 struct macsec_secy
*secy
;
1769 struct macsec_tx_sc
*tx_sc
;
1770 struct macsec_tx_sa
*tx_sa
;
1771 unsigned char assoc_num
;
1772 struct nlattr
*tb_sa
[MACSEC_SA_ATTR_MAX
+ 1];
1774 if (!attrs
[MACSEC_ATTR_IFINDEX
])
1777 if (parse_sa_config(attrs
, tb_sa
))
1780 if (!validate_add_txsa(tb_sa
))
1784 dev
= get_dev_from_nl(genl_info_net(info
), attrs
);
1787 return PTR_ERR(dev
);
1790 secy
= &macsec_priv(dev
)->secy
;
1791 tx_sc
= &secy
->tx_sc
;
1793 assoc_num
= nla_get_u8(tb_sa
[MACSEC_SA_ATTR_AN
]);
1795 if (nla_len(tb_sa
[MACSEC_SA_ATTR_KEY
]) != secy
->key_len
) {
1796 pr_notice("macsec: nl: add_txsa: bad key length: %d != %d\n",
1797 nla_len(tb_sa
[MACSEC_SA_ATTR_KEY
]), secy
->key_len
);
1802 tx_sa
= rtnl_dereference(tx_sc
->sa
[assoc_num
]);
1808 tx_sa
= kmalloc(sizeof(*tx_sa
), GFP_KERNEL
);
1809 if (!tx_sa
|| init_tx_sa(tx_sa
, nla_data(tb_sa
[MACSEC_SA_ATTR_KEY
]),
1810 secy
->key_len
, secy
->icv_len
)) {
1816 nla_memcpy(tx_sa
->key
.id
, tb_sa
[MACSEC_SA_ATTR_KEYID
], MACSEC_KEYID_LEN
);
1818 spin_lock_bh(&tx_sa
->lock
);
1819 tx_sa
->next_pn
= nla_get_u32(tb_sa
[MACSEC_SA_ATTR_PN
]);
1820 spin_unlock_bh(&tx_sa
->lock
);
1822 if (tb_sa
[MACSEC_SA_ATTR_ACTIVE
])
1823 tx_sa
->active
= !!nla_get_u8(tb_sa
[MACSEC_SA_ATTR_ACTIVE
]);
1825 if (assoc_num
== tx_sc
->encoding_sa
&& tx_sa
->active
)
1826 secy
->operational
= true;
1828 rcu_assign_pointer(tx_sc
->sa
[assoc_num
], tx_sa
);
1835 static int macsec_del_rxsa(struct sk_buff
*skb
, struct genl_info
*info
)
1837 struct nlattr
**attrs
= info
->attrs
;
1838 struct net_device
*dev
;
1839 struct macsec_secy
*secy
;
1840 struct macsec_rx_sc
*rx_sc
;
1841 struct macsec_rx_sa
*rx_sa
;
1843 struct nlattr
*tb_rxsc
[MACSEC_RXSC_ATTR_MAX
+ 1];
1844 struct nlattr
*tb_sa
[MACSEC_SA_ATTR_MAX
+ 1];
1846 if (!attrs
[MACSEC_ATTR_IFINDEX
])
1849 if (parse_sa_config(attrs
, tb_sa
))
1852 if (parse_rxsc_config(attrs
, tb_rxsc
))
1856 rx_sa
= get_rxsa_from_nl(genl_info_net(info
), attrs
, tb_rxsc
, tb_sa
,
1857 &dev
, &secy
, &rx_sc
, &assoc_num
);
1858 if (IS_ERR(rx_sa
)) {
1860 return PTR_ERR(rx_sa
);
1863 if (rx_sa
->active
) {
1868 RCU_INIT_POINTER(rx_sc
->sa
[assoc_num
], NULL
);
1876 static int macsec_del_rxsc(struct sk_buff
*skb
, struct genl_info
*info
)
1878 struct nlattr
**attrs
= info
->attrs
;
1879 struct net_device
*dev
;
1880 struct macsec_secy
*secy
;
1881 struct macsec_rx_sc
*rx_sc
;
1883 struct nlattr
*tb_rxsc
[MACSEC_RXSC_ATTR_MAX
+ 1];
1885 if (!attrs
[MACSEC_ATTR_IFINDEX
])
1888 if (parse_rxsc_config(attrs
, tb_rxsc
))
1891 if (!tb_rxsc
[MACSEC_RXSC_ATTR_SCI
])
1895 dev
= get_dev_from_nl(genl_info_net(info
), info
->attrs
);
1898 return PTR_ERR(dev
);
1901 secy
= &macsec_priv(dev
)->secy
;
1902 sci
= nla_get_sci(tb_rxsc
[MACSEC_RXSC_ATTR_SCI
]);
1904 rx_sc
= del_rx_sc(secy
, sci
);
1916 static int macsec_del_txsa(struct sk_buff
*skb
, struct genl_info
*info
)
1918 struct nlattr
**attrs
= info
->attrs
;
1919 struct net_device
*dev
;
1920 struct macsec_secy
*secy
;
1921 struct macsec_tx_sc
*tx_sc
;
1922 struct macsec_tx_sa
*tx_sa
;
1924 struct nlattr
*tb_sa
[MACSEC_SA_ATTR_MAX
+ 1];
1926 if (!attrs
[MACSEC_ATTR_IFINDEX
])
1929 if (parse_sa_config(attrs
, tb_sa
))
1933 tx_sa
= get_txsa_from_nl(genl_info_net(info
), attrs
, tb_sa
,
1934 &dev
, &secy
, &tx_sc
, &assoc_num
);
1935 if (IS_ERR(tx_sa
)) {
1937 return PTR_ERR(tx_sa
);
1940 if (tx_sa
->active
) {
1945 RCU_INIT_POINTER(tx_sc
->sa
[assoc_num
], NULL
);
1953 static bool validate_upd_sa(struct nlattr
**attrs
)
1955 if (!attrs
[MACSEC_SA_ATTR_AN
] ||
1956 attrs
[MACSEC_SA_ATTR_KEY
] ||
1957 attrs
[MACSEC_SA_ATTR_KEYID
])
1960 if (nla_get_u8(attrs
[MACSEC_SA_ATTR_AN
]) >= MACSEC_NUM_AN
)
1963 if (attrs
[MACSEC_SA_ATTR_PN
] && nla_get_u32(attrs
[MACSEC_SA_ATTR_PN
]) == 0)
1966 if (attrs
[MACSEC_SA_ATTR_ACTIVE
]) {
1967 if (nla_get_u8(attrs
[MACSEC_SA_ATTR_ACTIVE
]) > 1)
1974 static int macsec_upd_txsa(struct sk_buff
*skb
, struct genl_info
*info
)
1976 struct nlattr
**attrs
= info
->attrs
;
1977 struct net_device
*dev
;
1978 struct macsec_secy
*secy
;
1979 struct macsec_tx_sc
*tx_sc
;
1980 struct macsec_tx_sa
*tx_sa
;
1982 struct nlattr
*tb_sa
[MACSEC_SA_ATTR_MAX
+ 1];
1984 if (!attrs
[MACSEC_ATTR_IFINDEX
])
1987 if (parse_sa_config(attrs
, tb_sa
))
1990 if (!validate_upd_sa(tb_sa
))
1994 tx_sa
= get_txsa_from_nl(genl_info_net(info
), attrs
, tb_sa
,
1995 &dev
, &secy
, &tx_sc
, &assoc_num
);
1996 if (IS_ERR(tx_sa
)) {
1998 return PTR_ERR(tx_sa
);
2001 if (tb_sa
[MACSEC_SA_ATTR_PN
]) {
2002 spin_lock_bh(&tx_sa
->lock
);
2003 tx_sa
->next_pn
= nla_get_u32(tb_sa
[MACSEC_SA_ATTR_PN
]);
2004 spin_unlock_bh(&tx_sa
->lock
);
2007 if (tb_sa
[MACSEC_SA_ATTR_ACTIVE
])
2008 tx_sa
->active
= nla_get_u8(tb_sa
[MACSEC_SA_ATTR_ACTIVE
]);
2010 if (assoc_num
== tx_sc
->encoding_sa
)
2011 secy
->operational
= tx_sa
->active
;
2018 static int macsec_upd_rxsa(struct sk_buff
*skb
, struct genl_info
*info
)
2020 struct nlattr
**attrs
= info
->attrs
;
2021 struct net_device
*dev
;
2022 struct macsec_secy
*secy
;
2023 struct macsec_rx_sc
*rx_sc
;
2024 struct macsec_rx_sa
*rx_sa
;
2026 struct nlattr
*tb_rxsc
[MACSEC_RXSC_ATTR_MAX
+ 1];
2027 struct nlattr
*tb_sa
[MACSEC_SA_ATTR_MAX
+ 1];
2029 if (!attrs
[MACSEC_ATTR_IFINDEX
])
2032 if (parse_rxsc_config(attrs
, tb_rxsc
))
2035 if (parse_sa_config(attrs
, tb_sa
))
2038 if (!validate_upd_sa(tb_sa
))
2042 rx_sa
= get_rxsa_from_nl(genl_info_net(info
), attrs
, tb_rxsc
, tb_sa
,
2043 &dev
, &secy
, &rx_sc
, &assoc_num
);
2044 if (IS_ERR(rx_sa
)) {
2046 return PTR_ERR(rx_sa
);
2049 if (tb_sa
[MACSEC_SA_ATTR_PN
]) {
2050 spin_lock_bh(&rx_sa
->lock
);
2051 rx_sa
->next_pn
= nla_get_u32(tb_sa
[MACSEC_SA_ATTR_PN
]);
2052 spin_unlock_bh(&rx_sa
->lock
);
2055 if (tb_sa
[MACSEC_SA_ATTR_ACTIVE
])
2056 rx_sa
->active
= nla_get_u8(tb_sa
[MACSEC_SA_ATTR_ACTIVE
]);
2062 static int macsec_upd_rxsc(struct sk_buff
*skb
, struct genl_info
*info
)
2064 struct nlattr
**attrs
= info
->attrs
;
2065 struct net_device
*dev
;
2066 struct macsec_secy
*secy
;
2067 struct macsec_rx_sc
*rx_sc
;
2068 struct nlattr
*tb_rxsc
[MACSEC_RXSC_ATTR_MAX
+ 1];
2070 if (!attrs
[MACSEC_ATTR_IFINDEX
])
2073 if (parse_rxsc_config(attrs
, tb_rxsc
))
2076 if (!validate_add_rxsc(tb_rxsc
))
2080 rx_sc
= get_rxsc_from_nl(genl_info_net(info
), attrs
, tb_rxsc
, &dev
, &secy
);
2081 if (IS_ERR(rx_sc
)) {
2083 return PTR_ERR(rx_sc
);
2086 if (tb_rxsc
[MACSEC_RXSC_ATTR_ACTIVE
]) {
2087 bool new = !!nla_get_u8(tb_rxsc
[MACSEC_RXSC_ATTR_ACTIVE
]);
2089 if (rx_sc
->active
!= new)
2090 secy
->n_rx_sc
+= new ? 1 : -1;
2092 rx_sc
->active
= new;
2100 static int copy_tx_sa_stats(struct sk_buff
*skb
,
2101 struct macsec_tx_sa_stats __percpu
*pstats
)
2103 struct macsec_tx_sa_stats sum
= {0, };
2106 for_each_possible_cpu(cpu
) {
2107 const struct macsec_tx_sa_stats
*stats
= per_cpu_ptr(pstats
, cpu
);
2109 sum
.OutPktsProtected
+= stats
->OutPktsProtected
;
2110 sum
.OutPktsEncrypted
+= stats
->OutPktsEncrypted
;
2113 if (nla_put_u32(skb
, MACSEC_SA_STATS_ATTR_OUT_PKTS_PROTECTED
, sum
.OutPktsProtected
) ||
2114 nla_put_u32(skb
, MACSEC_SA_STATS_ATTR_OUT_PKTS_ENCRYPTED
, sum
.OutPktsEncrypted
))
2120 static int copy_rx_sa_stats(struct sk_buff
*skb
,
2121 struct macsec_rx_sa_stats __percpu
*pstats
)
2123 struct macsec_rx_sa_stats sum
= {0, };
2126 for_each_possible_cpu(cpu
) {
2127 const struct macsec_rx_sa_stats
*stats
= per_cpu_ptr(pstats
, cpu
);
2129 sum
.InPktsOK
+= stats
->InPktsOK
;
2130 sum
.InPktsInvalid
+= stats
->InPktsInvalid
;
2131 sum
.InPktsNotValid
+= stats
->InPktsNotValid
;
2132 sum
.InPktsNotUsingSA
+= stats
->InPktsNotUsingSA
;
2133 sum
.InPktsUnusedSA
+= stats
->InPktsUnusedSA
;
2136 if (nla_put_u32(skb
, MACSEC_SA_STATS_ATTR_IN_PKTS_OK
, sum
.InPktsOK
) ||
2137 nla_put_u32(skb
, MACSEC_SA_STATS_ATTR_IN_PKTS_INVALID
, sum
.InPktsInvalid
) ||
2138 nla_put_u32(skb
, MACSEC_SA_STATS_ATTR_IN_PKTS_NOT_VALID
, sum
.InPktsNotValid
) ||
2139 nla_put_u32(skb
, MACSEC_SA_STATS_ATTR_IN_PKTS_NOT_USING_SA
, sum
.InPktsNotUsingSA
) ||
2140 nla_put_u32(skb
, MACSEC_SA_STATS_ATTR_IN_PKTS_UNUSED_SA
, sum
.InPktsUnusedSA
))
2146 static int copy_rx_sc_stats(struct sk_buff
*skb
,
2147 struct pcpu_rx_sc_stats __percpu
*pstats
)
2149 struct macsec_rx_sc_stats sum
= {0, };
2152 for_each_possible_cpu(cpu
) {
2153 const struct pcpu_rx_sc_stats
*stats
;
2154 struct macsec_rx_sc_stats tmp
;
2157 stats
= per_cpu_ptr(pstats
, cpu
);
2159 start
= u64_stats_fetch_begin_irq(&stats
->syncp
);
2160 memcpy(&tmp
, &stats
->stats
, sizeof(tmp
));
2161 } while (u64_stats_fetch_retry_irq(&stats
->syncp
, start
));
2163 sum
.InOctetsValidated
+= tmp
.InOctetsValidated
;
2164 sum
.InOctetsDecrypted
+= tmp
.InOctetsDecrypted
;
2165 sum
.InPktsUnchecked
+= tmp
.InPktsUnchecked
;
2166 sum
.InPktsDelayed
+= tmp
.InPktsDelayed
;
2167 sum
.InPktsOK
+= tmp
.InPktsOK
;
2168 sum
.InPktsInvalid
+= tmp
.InPktsInvalid
;
2169 sum
.InPktsLate
+= tmp
.InPktsLate
;
2170 sum
.InPktsNotValid
+= tmp
.InPktsNotValid
;
2171 sum
.InPktsNotUsingSA
+= tmp
.InPktsNotUsingSA
;
2172 sum
.InPktsUnusedSA
+= tmp
.InPktsUnusedSA
;
2175 if (nla_put_u64_64bit(skb
, MACSEC_RXSC_STATS_ATTR_IN_OCTETS_VALIDATED
,
2176 sum
.InOctetsValidated
,
2177 MACSEC_RXSC_STATS_ATTR_PAD
) ||
2178 nla_put_u64_64bit(skb
, MACSEC_RXSC_STATS_ATTR_IN_OCTETS_DECRYPTED
,
2179 sum
.InOctetsDecrypted
,
2180 MACSEC_RXSC_STATS_ATTR_PAD
) ||
2181 nla_put_u64_64bit(skb
, MACSEC_RXSC_STATS_ATTR_IN_PKTS_UNCHECKED
,
2182 sum
.InPktsUnchecked
,
2183 MACSEC_RXSC_STATS_ATTR_PAD
) ||
2184 nla_put_u64_64bit(skb
, MACSEC_RXSC_STATS_ATTR_IN_PKTS_DELAYED
,
2186 MACSEC_RXSC_STATS_ATTR_PAD
) ||
2187 nla_put_u64_64bit(skb
, MACSEC_RXSC_STATS_ATTR_IN_PKTS_OK
,
2189 MACSEC_RXSC_STATS_ATTR_PAD
) ||
2190 nla_put_u64_64bit(skb
, MACSEC_RXSC_STATS_ATTR_IN_PKTS_INVALID
,
2192 MACSEC_RXSC_STATS_ATTR_PAD
) ||
2193 nla_put_u64_64bit(skb
, MACSEC_RXSC_STATS_ATTR_IN_PKTS_LATE
,
2195 MACSEC_RXSC_STATS_ATTR_PAD
) ||
2196 nla_put_u64_64bit(skb
, MACSEC_RXSC_STATS_ATTR_IN_PKTS_NOT_VALID
,
2198 MACSEC_RXSC_STATS_ATTR_PAD
) ||
2199 nla_put_u64_64bit(skb
, MACSEC_RXSC_STATS_ATTR_IN_PKTS_NOT_USING_SA
,
2200 sum
.InPktsNotUsingSA
,
2201 MACSEC_RXSC_STATS_ATTR_PAD
) ||
2202 nla_put_u64_64bit(skb
, MACSEC_RXSC_STATS_ATTR_IN_PKTS_UNUSED_SA
,
2204 MACSEC_RXSC_STATS_ATTR_PAD
))
2210 static int copy_tx_sc_stats(struct sk_buff
*skb
,
2211 struct pcpu_tx_sc_stats __percpu
*pstats
)
2213 struct macsec_tx_sc_stats sum
= {0, };
2216 for_each_possible_cpu(cpu
) {
2217 const struct pcpu_tx_sc_stats
*stats
;
2218 struct macsec_tx_sc_stats tmp
;
2221 stats
= per_cpu_ptr(pstats
, cpu
);
2223 start
= u64_stats_fetch_begin_irq(&stats
->syncp
);
2224 memcpy(&tmp
, &stats
->stats
, sizeof(tmp
));
2225 } while (u64_stats_fetch_retry_irq(&stats
->syncp
, start
));
2227 sum
.OutPktsProtected
+= tmp
.OutPktsProtected
;
2228 sum
.OutPktsEncrypted
+= tmp
.OutPktsEncrypted
;
2229 sum
.OutOctetsProtected
+= tmp
.OutOctetsProtected
;
2230 sum
.OutOctetsEncrypted
+= tmp
.OutOctetsEncrypted
;
2233 if (nla_put_u64_64bit(skb
, MACSEC_TXSC_STATS_ATTR_OUT_PKTS_PROTECTED
,
2234 sum
.OutPktsProtected
,
2235 MACSEC_TXSC_STATS_ATTR_PAD
) ||
2236 nla_put_u64_64bit(skb
, MACSEC_TXSC_STATS_ATTR_OUT_PKTS_ENCRYPTED
,
2237 sum
.OutPktsEncrypted
,
2238 MACSEC_TXSC_STATS_ATTR_PAD
) ||
2239 nla_put_u64_64bit(skb
, MACSEC_TXSC_STATS_ATTR_OUT_OCTETS_PROTECTED
,
2240 sum
.OutOctetsProtected
,
2241 MACSEC_TXSC_STATS_ATTR_PAD
) ||
2242 nla_put_u64_64bit(skb
, MACSEC_TXSC_STATS_ATTR_OUT_OCTETS_ENCRYPTED
,
2243 sum
.OutOctetsEncrypted
,
2244 MACSEC_TXSC_STATS_ATTR_PAD
))
2250 static int copy_secy_stats(struct sk_buff
*skb
,
2251 struct pcpu_secy_stats __percpu
*pstats
)
2253 struct macsec_dev_stats sum
= {0, };
2256 for_each_possible_cpu(cpu
) {
2257 const struct pcpu_secy_stats
*stats
;
2258 struct macsec_dev_stats tmp
;
2261 stats
= per_cpu_ptr(pstats
, cpu
);
2263 start
= u64_stats_fetch_begin_irq(&stats
->syncp
);
2264 memcpy(&tmp
, &stats
->stats
, sizeof(tmp
));
2265 } while (u64_stats_fetch_retry_irq(&stats
->syncp
, start
));
2267 sum
.OutPktsUntagged
+= tmp
.OutPktsUntagged
;
2268 sum
.InPktsUntagged
+= tmp
.InPktsUntagged
;
2269 sum
.OutPktsTooLong
+= tmp
.OutPktsTooLong
;
2270 sum
.InPktsNoTag
+= tmp
.InPktsNoTag
;
2271 sum
.InPktsBadTag
+= tmp
.InPktsBadTag
;
2272 sum
.InPktsUnknownSCI
+= tmp
.InPktsUnknownSCI
;
2273 sum
.InPktsNoSCI
+= tmp
.InPktsNoSCI
;
2274 sum
.InPktsOverrun
+= tmp
.InPktsOverrun
;
2277 if (nla_put_u64_64bit(skb
, MACSEC_SECY_STATS_ATTR_OUT_PKTS_UNTAGGED
,
2278 sum
.OutPktsUntagged
,
2279 MACSEC_SECY_STATS_ATTR_PAD
) ||
2280 nla_put_u64_64bit(skb
, MACSEC_SECY_STATS_ATTR_IN_PKTS_UNTAGGED
,
2282 MACSEC_SECY_STATS_ATTR_PAD
) ||
2283 nla_put_u64_64bit(skb
, MACSEC_SECY_STATS_ATTR_OUT_PKTS_TOO_LONG
,
2285 MACSEC_SECY_STATS_ATTR_PAD
) ||
2286 nla_put_u64_64bit(skb
, MACSEC_SECY_STATS_ATTR_IN_PKTS_NO_TAG
,
2288 MACSEC_SECY_STATS_ATTR_PAD
) ||
2289 nla_put_u64_64bit(skb
, MACSEC_SECY_STATS_ATTR_IN_PKTS_BAD_TAG
,
2291 MACSEC_SECY_STATS_ATTR_PAD
) ||
2292 nla_put_u64_64bit(skb
, MACSEC_SECY_STATS_ATTR_IN_PKTS_UNKNOWN_SCI
,
2293 sum
.InPktsUnknownSCI
,
2294 MACSEC_SECY_STATS_ATTR_PAD
) ||
2295 nla_put_u64_64bit(skb
, MACSEC_SECY_STATS_ATTR_IN_PKTS_NO_SCI
,
2297 MACSEC_SECY_STATS_ATTR_PAD
) ||
2298 nla_put_u64_64bit(skb
, MACSEC_SECY_STATS_ATTR_IN_PKTS_OVERRUN
,
2300 MACSEC_SECY_STATS_ATTR_PAD
))
2306 static int nla_put_secy(struct macsec_secy
*secy
, struct sk_buff
*skb
)
2308 struct macsec_tx_sc
*tx_sc
= &secy
->tx_sc
;
2309 struct nlattr
*secy_nest
= nla_nest_start(skb
, MACSEC_ATTR_SECY
);
2314 if (nla_put_sci(skb
, MACSEC_SECY_ATTR_SCI
, secy
->sci
,
2315 MACSEC_SECY_ATTR_PAD
) ||
2316 nla_put_u64_64bit(skb
, MACSEC_SECY_ATTR_CIPHER_SUITE
,
2317 MACSEC_DEFAULT_CIPHER_ID
,
2318 MACSEC_SECY_ATTR_PAD
) ||
2319 nla_put_u8(skb
, MACSEC_SECY_ATTR_ICV_LEN
, secy
->icv_len
) ||
2320 nla_put_u8(skb
, MACSEC_SECY_ATTR_OPER
, secy
->operational
) ||
2321 nla_put_u8(skb
, MACSEC_SECY_ATTR_PROTECT
, secy
->protect_frames
) ||
2322 nla_put_u8(skb
, MACSEC_SECY_ATTR_REPLAY
, secy
->replay_protect
) ||
2323 nla_put_u8(skb
, MACSEC_SECY_ATTR_VALIDATE
, secy
->validate_frames
) ||
2324 nla_put_u8(skb
, MACSEC_SECY_ATTR_ENCRYPT
, tx_sc
->encrypt
) ||
2325 nla_put_u8(skb
, MACSEC_SECY_ATTR_INC_SCI
, tx_sc
->send_sci
) ||
2326 nla_put_u8(skb
, MACSEC_SECY_ATTR_ES
, tx_sc
->end_station
) ||
2327 nla_put_u8(skb
, MACSEC_SECY_ATTR_SCB
, tx_sc
->scb
) ||
2328 nla_put_u8(skb
, MACSEC_SECY_ATTR_ENCODING_SA
, tx_sc
->encoding_sa
))
2331 if (secy
->replay_protect
) {
2332 if (nla_put_u32(skb
, MACSEC_SECY_ATTR_WINDOW
, secy
->replay_window
))
2336 nla_nest_end(skb
, secy_nest
);
2340 nla_nest_cancel(skb
, secy_nest
);
2344 static int dump_secy(struct macsec_secy
*secy
, struct net_device
*dev
,
2345 struct sk_buff
*skb
, struct netlink_callback
*cb
)
2347 struct macsec_rx_sc
*rx_sc
;
2348 struct macsec_tx_sc
*tx_sc
= &secy
->tx_sc
;
2349 struct nlattr
*txsa_list
, *rxsc_list
;
2352 struct nlattr
*attr
;
2354 hdr
= genlmsg_put(skb
, NETLINK_CB(cb
->skb
).portid
, cb
->nlh
->nlmsg_seq
,
2355 &macsec_fam
, NLM_F_MULTI
, MACSEC_CMD_GET_TXSC
);
2359 genl_dump_check_consistent(cb
, hdr
, &macsec_fam
);
2361 if (nla_put_u32(skb
, MACSEC_ATTR_IFINDEX
, dev
->ifindex
))
2362 goto nla_put_failure
;
2364 if (nla_put_secy(secy
, skb
))
2365 goto nla_put_failure
;
2367 attr
= nla_nest_start(skb
, MACSEC_ATTR_TXSC_STATS
);
2369 goto nla_put_failure
;
2370 if (copy_tx_sc_stats(skb
, tx_sc
->stats
)) {
2371 nla_nest_cancel(skb
, attr
);
2372 goto nla_put_failure
;
2374 nla_nest_end(skb
, attr
);
2376 attr
= nla_nest_start(skb
, MACSEC_ATTR_SECY_STATS
);
2378 goto nla_put_failure
;
2379 if (copy_secy_stats(skb
, macsec_priv(dev
)->stats
)) {
2380 nla_nest_cancel(skb
, attr
);
2381 goto nla_put_failure
;
2383 nla_nest_end(skb
, attr
);
2385 txsa_list
= nla_nest_start(skb
, MACSEC_ATTR_TXSA_LIST
);
2387 goto nla_put_failure
;
2388 for (i
= 0, j
= 1; i
< MACSEC_NUM_AN
; i
++) {
2389 struct macsec_tx_sa
*tx_sa
= rtnl_dereference(tx_sc
->sa
[i
]);
2390 struct nlattr
*txsa_nest
;
2395 txsa_nest
= nla_nest_start(skb
, j
++);
2397 nla_nest_cancel(skb
, txsa_list
);
2398 goto nla_put_failure
;
2401 if (nla_put_u8(skb
, MACSEC_SA_ATTR_AN
, i
) ||
2402 nla_put_u32(skb
, MACSEC_SA_ATTR_PN
, tx_sa
->next_pn
) ||
2403 nla_put(skb
, MACSEC_SA_ATTR_KEYID
, MACSEC_KEYID_LEN
, tx_sa
->key
.id
) ||
2404 nla_put_u8(skb
, MACSEC_SA_ATTR_ACTIVE
, tx_sa
->active
)) {
2405 nla_nest_cancel(skb
, txsa_nest
);
2406 nla_nest_cancel(skb
, txsa_list
);
2407 goto nla_put_failure
;
2410 attr
= nla_nest_start(skb
, MACSEC_SA_ATTR_STATS
);
2412 nla_nest_cancel(skb
, txsa_nest
);
2413 nla_nest_cancel(skb
, txsa_list
);
2414 goto nla_put_failure
;
2416 if (copy_tx_sa_stats(skb
, tx_sa
->stats
)) {
2417 nla_nest_cancel(skb
, attr
);
2418 nla_nest_cancel(skb
, txsa_nest
);
2419 nla_nest_cancel(skb
, txsa_list
);
2420 goto nla_put_failure
;
2422 nla_nest_end(skb
, attr
);
2424 nla_nest_end(skb
, txsa_nest
);
2426 nla_nest_end(skb
, txsa_list
);
2428 rxsc_list
= nla_nest_start(skb
, MACSEC_ATTR_RXSC_LIST
);
2430 goto nla_put_failure
;
2433 for_each_rxsc_rtnl(secy
, rx_sc
) {
2435 struct nlattr
*rxsa_list
;
2436 struct nlattr
*rxsc_nest
= nla_nest_start(skb
, j
++);
2439 nla_nest_cancel(skb
, rxsc_list
);
2440 goto nla_put_failure
;
2443 if (nla_put_u8(skb
, MACSEC_RXSC_ATTR_ACTIVE
, rx_sc
->active
) ||
2444 nla_put_sci(skb
, MACSEC_RXSC_ATTR_SCI
, rx_sc
->sci
,
2445 MACSEC_RXSC_ATTR_PAD
)) {
2446 nla_nest_cancel(skb
, rxsc_nest
);
2447 nla_nest_cancel(skb
, rxsc_list
);
2448 goto nla_put_failure
;
2451 attr
= nla_nest_start(skb
, MACSEC_RXSC_ATTR_STATS
);
2453 nla_nest_cancel(skb
, rxsc_nest
);
2454 nla_nest_cancel(skb
, rxsc_list
);
2455 goto nla_put_failure
;
2457 if (copy_rx_sc_stats(skb
, rx_sc
->stats
)) {
2458 nla_nest_cancel(skb
, attr
);
2459 nla_nest_cancel(skb
, rxsc_nest
);
2460 nla_nest_cancel(skb
, rxsc_list
);
2461 goto nla_put_failure
;
2463 nla_nest_end(skb
, attr
);
2465 rxsa_list
= nla_nest_start(skb
, MACSEC_RXSC_ATTR_SA_LIST
);
2467 nla_nest_cancel(skb
, rxsc_nest
);
2468 nla_nest_cancel(skb
, rxsc_list
);
2469 goto nla_put_failure
;
2472 for (i
= 0, k
= 1; i
< MACSEC_NUM_AN
; i
++) {
2473 struct macsec_rx_sa
*rx_sa
= rtnl_dereference(rx_sc
->sa
[i
]);
2474 struct nlattr
*rxsa_nest
;
2479 rxsa_nest
= nla_nest_start(skb
, k
++);
2481 nla_nest_cancel(skb
, rxsa_list
);
2482 nla_nest_cancel(skb
, rxsc_nest
);
2483 nla_nest_cancel(skb
, rxsc_list
);
2484 goto nla_put_failure
;
2487 attr
= nla_nest_start(skb
, MACSEC_SA_ATTR_STATS
);
2489 nla_nest_cancel(skb
, rxsa_list
);
2490 nla_nest_cancel(skb
, rxsc_nest
);
2491 nla_nest_cancel(skb
, rxsc_list
);
2492 goto nla_put_failure
;
2494 if (copy_rx_sa_stats(skb
, rx_sa
->stats
)) {
2495 nla_nest_cancel(skb
, attr
);
2496 nla_nest_cancel(skb
, rxsa_list
);
2497 nla_nest_cancel(skb
, rxsc_nest
);
2498 nla_nest_cancel(skb
, rxsc_list
);
2499 goto nla_put_failure
;
2501 nla_nest_end(skb
, attr
);
2503 if (nla_put_u8(skb
, MACSEC_SA_ATTR_AN
, i
) ||
2504 nla_put_u32(skb
, MACSEC_SA_ATTR_PN
, rx_sa
->next_pn
) ||
2505 nla_put(skb
, MACSEC_SA_ATTR_KEYID
, MACSEC_KEYID_LEN
, rx_sa
->key
.id
) ||
2506 nla_put_u8(skb
, MACSEC_SA_ATTR_ACTIVE
, rx_sa
->active
)) {
2507 nla_nest_cancel(skb
, rxsa_nest
);
2508 nla_nest_cancel(skb
, rxsc_nest
);
2509 nla_nest_cancel(skb
, rxsc_list
);
2510 goto nla_put_failure
;
2512 nla_nest_end(skb
, rxsa_nest
);
2515 nla_nest_end(skb
, rxsa_list
);
2516 nla_nest_end(skb
, rxsc_nest
);
2519 nla_nest_end(skb
, rxsc_list
);
2521 genlmsg_end(skb
, hdr
);
2526 genlmsg_cancel(skb
, hdr
);
2530 static int macsec_generation
= 1; /* protected by RTNL */
2532 static int macsec_dump_txsc(struct sk_buff
*skb
, struct netlink_callback
*cb
)
2534 struct net
*net
= sock_net(skb
->sk
);
2535 struct net_device
*dev
;
2538 dev_idx
= cb
->args
[0];
2543 cb
->seq
= macsec_generation
;
2545 for_each_netdev(net
, dev
) {
2546 struct macsec_secy
*secy
;
2551 if (!netif_is_macsec(dev
))
2554 secy
= &macsec_priv(dev
)->secy
;
2555 if (dump_secy(secy
, dev
, skb
, cb
) < 0)
2567 static const struct genl_ops macsec_genl_ops
[] = {
2569 .cmd
= MACSEC_CMD_GET_TXSC
,
2570 .dumpit
= macsec_dump_txsc
,
2571 .policy
= macsec_genl_policy
,
2574 .cmd
= MACSEC_CMD_ADD_RXSC
,
2575 .doit
= macsec_add_rxsc
,
2576 .policy
= macsec_genl_policy
,
2577 .flags
= GENL_ADMIN_PERM
,
2580 .cmd
= MACSEC_CMD_DEL_RXSC
,
2581 .doit
= macsec_del_rxsc
,
2582 .policy
= macsec_genl_policy
,
2583 .flags
= GENL_ADMIN_PERM
,
2586 .cmd
= MACSEC_CMD_UPD_RXSC
,
2587 .doit
= macsec_upd_rxsc
,
2588 .policy
= macsec_genl_policy
,
2589 .flags
= GENL_ADMIN_PERM
,
2592 .cmd
= MACSEC_CMD_ADD_TXSA
,
2593 .doit
= macsec_add_txsa
,
2594 .policy
= macsec_genl_policy
,
2595 .flags
= GENL_ADMIN_PERM
,
2598 .cmd
= MACSEC_CMD_DEL_TXSA
,
2599 .doit
= macsec_del_txsa
,
2600 .policy
= macsec_genl_policy
,
2601 .flags
= GENL_ADMIN_PERM
,
2604 .cmd
= MACSEC_CMD_UPD_TXSA
,
2605 .doit
= macsec_upd_txsa
,
2606 .policy
= macsec_genl_policy
,
2607 .flags
= GENL_ADMIN_PERM
,
2610 .cmd
= MACSEC_CMD_ADD_RXSA
,
2611 .doit
= macsec_add_rxsa
,
2612 .policy
= macsec_genl_policy
,
2613 .flags
= GENL_ADMIN_PERM
,
2616 .cmd
= MACSEC_CMD_DEL_RXSA
,
2617 .doit
= macsec_del_rxsa
,
2618 .policy
= macsec_genl_policy
,
2619 .flags
= GENL_ADMIN_PERM
,
2622 .cmd
= MACSEC_CMD_UPD_RXSA
,
2623 .doit
= macsec_upd_rxsa
,
2624 .policy
= macsec_genl_policy
,
2625 .flags
= GENL_ADMIN_PERM
,
2629 static netdev_tx_t
macsec_start_xmit(struct sk_buff
*skb
,
2630 struct net_device
*dev
)
2632 struct macsec_dev
*macsec
= netdev_priv(dev
);
2633 struct macsec_secy
*secy
= &macsec
->secy
;
2634 struct pcpu_secy_stats
*secy_stats
;
2638 if (!secy
->protect_frames
) {
2639 secy_stats
= this_cpu_ptr(macsec
->stats
);
2640 u64_stats_update_begin(&secy_stats
->syncp
);
2641 secy_stats
->stats
.OutPktsUntagged
++;
2642 u64_stats_update_end(&secy_stats
->syncp
);
2643 skb
->dev
= macsec
->real_dev
;
2645 ret
= dev_queue_xmit(skb
);
2646 count_tx(dev
, ret
, len
);
2650 if (!secy
->operational
) {
2652 dev
->stats
.tx_dropped
++;
2653 return NETDEV_TX_OK
;
2656 skb
= macsec_encrypt(skb
, dev
);
2658 if (PTR_ERR(skb
) != -EINPROGRESS
)
2659 dev
->stats
.tx_dropped
++;
2660 return NETDEV_TX_OK
;
2663 macsec_count_tx(skb
, &macsec
->secy
.tx_sc
, macsec_skb_cb(skb
)->tx_sa
);
2665 macsec_encrypt_finish(skb
, dev
);
2667 ret
= dev_queue_xmit(skb
);
2668 count_tx(dev
, ret
, len
);
2672 #define MACSEC_FEATURES \
2673 (NETIF_F_SG | NETIF_F_HIGHDMA | NETIF_F_FRAGLIST)
2674 static int macsec_dev_init(struct net_device
*dev
)
2676 struct macsec_dev
*macsec
= macsec_priv(dev
);
2677 struct net_device
*real_dev
= macsec
->real_dev
;
2679 dev
->tstats
= netdev_alloc_pcpu_stats(struct pcpu_sw_netstats
);
2683 dev
->features
= real_dev
->features
& MACSEC_FEATURES
;
2684 dev
->features
|= NETIF_F_LLTX
| NETIF_F_GSO_SOFTWARE
;
2686 dev
->needed_headroom
= real_dev
->needed_headroom
+
2687 MACSEC_NEEDED_HEADROOM
;
2688 dev
->needed_tailroom
= real_dev
->needed_tailroom
+
2689 MACSEC_NEEDED_TAILROOM
;
2691 if (is_zero_ether_addr(dev
->dev_addr
))
2692 eth_hw_addr_inherit(dev
, real_dev
);
2693 if (is_zero_ether_addr(dev
->broadcast
))
2694 memcpy(dev
->broadcast
, real_dev
->broadcast
, dev
->addr_len
);
2699 static void macsec_dev_uninit(struct net_device
*dev
)
2701 free_percpu(dev
->tstats
);
2704 static netdev_features_t
macsec_fix_features(struct net_device
*dev
,
2705 netdev_features_t features
)
2707 struct macsec_dev
*macsec
= macsec_priv(dev
);
2708 struct net_device
*real_dev
= macsec
->real_dev
;
2710 features
&= real_dev
->features
& MACSEC_FEATURES
;
2711 features
|= NETIF_F_LLTX
| NETIF_F_GSO_SOFTWARE
;
2716 static int macsec_dev_open(struct net_device
*dev
)
2718 struct macsec_dev
*macsec
= macsec_priv(dev
);
2719 struct net_device
*real_dev
= macsec
->real_dev
;
2722 if (!(real_dev
->flags
& IFF_UP
))
2725 err
= dev_uc_add(real_dev
, dev
->dev_addr
);
2729 if (dev
->flags
& IFF_ALLMULTI
) {
2730 err
= dev_set_allmulti(real_dev
, 1);
2735 if (dev
->flags
& IFF_PROMISC
) {
2736 err
= dev_set_promiscuity(real_dev
, 1);
2738 goto clear_allmulti
;
2741 if (netif_carrier_ok(real_dev
))
2742 netif_carrier_on(dev
);
2746 if (dev
->flags
& IFF_ALLMULTI
)
2747 dev_set_allmulti(real_dev
, -1);
2749 dev_uc_del(real_dev
, dev
->dev_addr
);
2750 netif_carrier_off(dev
);
2754 static int macsec_dev_stop(struct net_device
*dev
)
2756 struct macsec_dev
*macsec
= macsec_priv(dev
);
2757 struct net_device
*real_dev
= macsec
->real_dev
;
2759 netif_carrier_off(dev
);
2761 dev_mc_unsync(real_dev
, dev
);
2762 dev_uc_unsync(real_dev
, dev
);
2764 if (dev
->flags
& IFF_ALLMULTI
)
2765 dev_set_allmulti(real_dev
, -1);
2767 if (dev
->flags
& IFF_PROMISC
)
2768 dev_set_promiscuity(real_dev
, -1);
2770 dev_uc_del(real_dev
, dev
->dev_addr
);
2775 static void macsec_dev_change_rx_flags(struct net_device
*dev
, int change
)
2777 struct net_device
*real_dev
= macsec_priv(dev
)->real_dev
;
2779 if (!(dev
->flags
& IFF_UP
))
2782 if (change
& IFF_ALLMULTI
)
2783 dev_set_allmulti(real_dev
, dev
->flags
& IFF_ALLMULTI
? 1 : -1);
2785 if (change
& IFF_PROMISC
)
2786 dev_set_promiscuity(real_dev
,
2787 dev
->flags
& IFF_PROMISC
? 1 : -1);
2790 static void macsec_dev_set_rx_mode(struct net_device
*dev
)
2792 struct net_device
*real_dev
= macsec_priv(dev
)->real_dev
;
2794 dev_mc_sync(real_dev
, dev
);
2795 dev_uc_sync(real_dev
, dev
);
2798 static int macsec_set_mac_address(struct net_device
*dev
, void *p
)
2800 struct macsec_dev
*macsec
= macsec_priv(dev
);
2801 struct net_device
*real_dev
= macsec
->real_dev
;
2802 struct sockaddr
*addr
= p
;
2805 if (!is_valid_ether_addr(addr
->sa_data
))
2806 return -EADDRNOTAVAIL
;
2808 if (!(dev
->flags
& IFF_UP
))
2811 err
= dev_uc_add(real_dev
, addr
->sa_data
);
2815 dev_uc_del(real_dev
, dev
->dev_addr
);
2818 ether_addr_copy(dev
->dev_addr
, addr
->sa_data
);
2822 static int macsec_change_mtu(struct net_device
*dev
, int new_mtu
)
2824 struct macsec_dev
*macsec
= macsec_priv(dev
);
2825 unsigned int extra
= macsec
->secy
.icv_len
+ macsec_extra_len(true);
2827 if (macsec
->real_dev
->mtu
- extra
< new_mtu
)
2835 static struct rtnl_link_stats64
*macsec_get_stats64(struct net_device
*dev
,
2836 struct rtnl_link_stats64
*s
)
2843 for_each_possible_cpu(cpu
) {
2844 struct pcpu_sw_netstats
*stats
;
2845 struct pcpu_sw_netstats tmp
;
2848 stats
= per_cpu_ptr(dev
->tstats
, cpu
);
2850 start
= u64_stats_fetch_begin_irq(&stats
->syncp
);
2851 tmp
.rx_packets
= stats
->rx_packets
;
2852 tmp
.rx_bytes
= stats
->rx_bytes
;
2853 tmp
.tx_packets
= stats
->tx_packets
;
2854 tmp
.tx_bytes
= stats
->tx_bytes
;
2855 } while (u64_stats_fetch_retry_irq(&stats
->syncp
, start
));
2857 s
->rx_packets
+= tmp
.rx_packets
;
2858 s
->rx_bytes
+= tmp
.rx_bytes
;
2859 s
->tx_packets
+= tmp
.tx_packets
;
2860 s
->tx_bytes
+= tmp
.tx_bytes
;
2863 s
->rx_dropped
= dev
->stats
.rx_dropped
;
2864 s
->tx_dropped
= dev
->stats
.tx_dropped
;
2869 static int macsec_get_iflink(const struct net_device
*dev
)
2871 return macsec_priv(dev
)->real_dev
->ifindex
;
2874 static const struct net_device_ops macsec_netdev_ops
= {
2875 .ndo_init
= macsec_dev_init
,
2876 .ndo_uninit
= macsec_dev_uninit
,
2877 .ndo_open
= macsec_dev_open
,
2878 .ndo_stop
= macsec_dev_stop
,
2879 .ndo_fix_features
= macsec_fix_features
,
2880 .ndo_change_mtu
= macsec_change_mtu
,
2881 .ndo_set_rx_mode
= macsec_dev_set_rx_mode
,
2882 .ndo_change_rx_flags
= macsec_dev_change_rx_flags
,
2883 .ndo_set_mac_address
= macsec_set_mac_address
,
2884 .ndo_start_xmit
= macsec_start_xmit
,
2885 .ndo_get_stats64
= macsec_get_stats64
,
2886 .ndo_get_iflink
= macsec_get_iflink
,
2889 static const struct device_type macsec_type
= {
2893 static const struct nla_policy macsec_rtnl_policy
[IFLA_MACSEC_MAX
+ 1] = {
2894 [IFLA_MACSEC_SCI
] = { .type
= NLA_U64
},
2895 [IFLA_MACSEC_ICV_LEN
] = { .type
= NLA_U8
},
2896 [IFLA_MACSEC_CIPHER_SUITE
] = { .type
= NLA_U64
},
2897 [IFLA_MACSEC_WINDOW
] = { .type
= NLA_U32
},
2898 [IFLA_MACSEC_ENCODING_SA
] = { .type
= NLA_U8
},
2899 [IFLA_MACSEC_ENCRYPT
] = { .type
= NLA_U8
},
2900 [IFLA_MACSEC_PROTECT
] = { .type
= NLA_U8
},
2901 [IFLA_MACSEC_INC_SCI
] = { .type
= NLA_U8
},
2902 [IFLA_MACSEC_ES
] = { .type
= NLA_U8
},
2903 [IFLA_MACSEC_SCB
] = { .type
= NLA_U8
},
2904 [IFLA_MACSEC_REPLAY_PROTECT
] = { .type
= NLA_U8
},
2905 [IFLA_MACSEC_VALIDATION
] = { .type
= NLA_U8
},
2908 static void macsec_free_netdev(struct net_device
*dev
)
2910 struct macsec_dev
*macsec
= macsec_priv(dev
);
2911 struct net_device
*real_dev
= macsec
->real_dev
;
2913 free_percpu(macsec
->stats
);
2914 free_percpu(macsec
->secy
.tx_sc
.stats
);
2920 static void macsec_setup(struct net_device
*dev
)
2923 dev
->priv_flags
|= IFF_NO_QUEUE
;
2924 dev
->netdev_ops
= &macsec_netdev_ops
;
2925 dev
->destructor
= macsec_free_netdev
;
2927 eth_zero_addr(dev
->broadcast
);
2930 static void macsec_changelink_common(struct net_device
*dev
,
2931 struct nlattr
*data
[])
2933 struct macsec_secy
*secy
;
2934 struct macsec_tx_sc
*tx_sc
;
2936 secy
= &macsec_priv(dev
)->secy
;
2937 tx_sc
= &secy
->tx_sc
;
2939 if (data
[IFLA_MACSEC_ENCODING_SA
]) {
2940 struct macsec_tx_sa
*tx_sa
;
2942 tx_sc
->encoding_sa
= nla_get_u8(data
[IFLA_MACSEC_ENCODING_SA
]);
2943 tx_sa
= rtnl_dereference(tx_sc
->sa
[tx_sc
->encoding_sa
]);
2945 secy
->operational
= tx_sa
&& tx_sa
->active
;
2948 if (data
[IFLA_MACSEC_WINDOW
])
2949 secy
->replay_window
= nla_get_u32(data
[IFLA_MACSEC_WINDOW
]);
2951 if (data
[IFLA_MACSEC_ENCRYPT
])
2952 tx_sc
->encrypt
= !!nla_get_u8(data
[IFLA_MACSEC_ENCRYPT
]);
2954 if (data
[IFLA_MACSEC_PROTECT
])
2955 secy
->protect_frames
= !!nla_get_u8(data
[IFLA_MACSEC_PROTECT
]);
2957 if (data
[IFLA_MACSEC_INC_SCI
])
2958 tx_sc
->send_sci
= !!nla_get_u8(data
[IFLA_MACSEC_INC_SCI
]);
2960 if (data
[IFLA_MACSEC_ES
])
2961 tx_sc
->end_station
= !!nla_get_u8(data
[IFLA_MACSEC_ES
]);
2963 if (data
[IFLA_MACSEC_SCB
])
2964 tx_sc
->scb
= !!nla_get_u8(data
[IFLA_MACSEC_SCB
]);
2966 if (data
[IFLA_MACSEC_REPLAY_PROTECT
])
2967 secy
->replay_protect
= !!nla_get_u8(data
[IFLA_MACSEC_REPLAY_PROTECT
]);
2969 if (data
[IFLA_MACSEC_VALIDATION
])
2970 secy
->validate_frames
= nla_get_u8(data
[IFLA_MACSEC_VALIDATION
]);
2973 static int macsec_changelink(struct net_device
*dev
, struct nlattr
*tb
[],
2974 struct nlattr
*data
[])
2979 if (data
[IFLA_MACSEC_CIPHER_SUITE
] ||
2980 data
[IFLA_MACSEC_ICV_LEN
] ||
2981 data
[IFLA_MACSEC_SCI
] ||
2982 data
[IFLA_MACSEC_PORT
])
2985 macsec_changelink_common(dev
, data
);
2990 static void macsec_del_dev(struct macsec_dev
*macsec
)
2994 while (macsec
->secy
.rx_sc
) {
2995 struct macsec_rx_sc
*rx_sc
= rtnl_dereference(macsec
->secy
.rx_sc
);
2997 rcu_assign_pointer(macsec
->secy
.rx_sc
, rx_sc
->next
);
3001 for (i
= 0; i
< MACSEC_NUM_AN
; i
++) {
3002 struct macsec_tx_sa
*sa
= rtnl_dereference(macsec
->secy
.tx_sc
.sa
[i
]);
3005 RCU_INIT_POINTER(macsec
->secy
.tx_sc
.sa
[i
], NULL
);
3011 static void macsec_dellink(struct net_device
*dev
, struct list_head
*head
)
3013 struct macsec_dev
*macsec
= macsec_priv(dev
);
3014 struct net_device
*real_dev
= macsec
->real_dev
;
3015 struct macsec_rxh_data
*rxd
= macsec_data_rtnl(real_dev
);
3017 macsec_generation
++;
3019 unregister_netdevice_queue(dev
, head
);
3020 list_del_rcu(&macsec
->secys
);
3021 if (list_empty(&rxd
->secys
)) {
3022 netdev_rx_handler_unregister(real_dev
);
3026 macsec_del_dev(macsec
);
3029 static int register_macsec_dev(struct net_device
*real_dev
,
3030 struct net_device
*dev
)
3032 struct macsec_dev
*macsec
= macsec_priv(dev
);
3033 struct macsec_rxh_data
*rxd
= macsec_data_rtnl(real_dev
);
3038 rxd
= kmalloc(sizeof(*rxd
), GFP_KERNEL
);
3042 INIT_LIST_HEAD(&rxd
->secys
);
3044 err
= netdev_rx_handler_register(real_dev
, macsec_handle_frame
,
3052 list_add_tail_rcu(&macsec
->secys
, &rxd
->secys
);
3056 static bool sci_exists(struct net_device
*dev
, sci_t sci
)
3058 struct macsec_rxh_data
*rxd
= macsec_data_rtnl(dev
);
3059 struct macsec_dev
*macsec
;
3061 list_for_each_entry(macsec
, &rxd
->secys
, secys
) {
3062 if (macsec
->secy
.sci
== sci
)
3069 static sci_t
dev_to_sci(struct net_device
*dev
, __be16 port
)
3071 return make_sci(dev
->dev_addr
, port
);
3074 static int macsec_add_dev(struct net_device
*dev
, sci_t sci
, u8 icv_len
)
3076 struct macsec_dev
*macsec
= macsec_priv(dev
);
3077 struct macsec_secy
*secy
= &macsec
->secy
;
3079 macsec
->stats
= netdev_alloc_pcpu_stats(struct pcpu_secy_stats
);
3083 secy
->tx_sc
.stats
= netdev_alloc_pcpu_stats(struct pcpu_tx_sc_stats
);
3084 if (!secy
->tx_sc
.stats
) {
3085 free_percpu(macsec
->stats
);
3089 if (sci
== MACSEC_UNDEF_SCI
)
3090 sci
= dev_to_sci(dev
, MACSEC_PORT_ES
);
3093 secy
->operational
= true;
3094 secy
->key_len
= DEFAULT_SAK_LEN
;
3095 secy
->icv_len
= icv_len
;
3096 secy
->validate_frames
= MACSEC_VALIDATE_DEFAULT
;
3097 secy
->protect_frames
= true;
3098 secy
->replay_protect
= false;
3101 secy
->tx_sc
.active
= true;
3102 secy
->tx_sc
.encoding_sa
= DEFAULT_ENCODING_SA
;
3103 secy
->tx_sc
.encrypt
= DEFAULT_ENCRYPT
;
3104 secy
->tx_sc
.send_sci
= DEFAULT_SEND_SCI
;
3105 secy
->tx_sc
.end_station
= false;
3106 secy
->tx_sc
.scb
= false;
3111 static int macsec_newlink(struct net
*net
, struct net_device
*dev
,
3112 struct nlattr
*tb
[], struct nlattr
*data
[])
3114 struct macsec_dev
*macsec
= macsec_priv(dev
);
3115 struct net_device
*real_dev
;
3118 u8 icv_len
= DEFAULT_ICV_LEN
;
3119 rx_handler_func_t
*rx_handler
;
3123 real_dev
= __dev_get_by_index(net
, nla_get_u32(tb
[IFLA_LINK
]));
3127 dev
->priv_flags
|= IFF_MACSEC
;
3129 macsec
->real_dev
= real_dev
;
3131 if (data
&& data
[IFLA_MACSEC_ICV_LEN
])
3132 icv_len
= nla_get_u8(data
[IFLA_MACSEC_ICV_LEN
]);
3133 dev
->mtu
= real_dev
->mtu
- icv_len
- macsec_extra_len(true);
3135 rx_handler
= rtnl_dereference(real_dev
->rx_handler
);
3136 if (rx_handler
&& rx_handler
!= macsec_handle_frame
)
3139 err
= register_netdevice(dev
);
3143 /* need to be already registered so that ->init has run and
3144 * the MAC addr is set
3146 if (data
&& data
[IFLA_MACSEC_SCI
])
3147 sci
= nla_get_sci(data
[IFLA_MACSEC_SCI
]);
3148 else if (data
&& data
[IFLA_MACSEC_PORT
])
3149 sci
= dev_to_sci(dev
, nla_get_be16(data
[IFLA_MACSEC_PORT
]));
3151 sci
= dev_to_sci(dev
, MACSEC_PORT_ES
);
3153 if (rx_handler
&& sci_exists(real_dev
, sci
)) {
3158 err
= macsec_add_dev(dev
, sci
, icv_len
);
3163 macsec_changelink_common(dev
, data
);
3165 err
= register_macsec_dev(real_dev
, dev
);
3169 macsec_generation
++;
3176 macsec_del_dev(macsec
);
3178 unregister_netdevice(dev
);
3182 static int macsec_validate_attr(struct nlattr
*tb
[], struct nlattr
*data
[])
3184 u64 csid
= MACSEC_DEFAULT_CIPHER_ID
;
3185 u8 icv_len
= DEFAULT_ICV_LEN
;
3192 if (data
[IFLA_MACSEC_CIPHER_SUITE
])
3193 csid
= nla_get_u64(data
[IFLA_MACSEC_CIPHER_SUITE
]);
3195 if (data
[IFLA_MACSEC_ICV_LEN
])
3196 icv_len
= nla_get_u8(data
[IFLA_MACSEC_ICV_LEN
]);
3199 case MACSEC_DEFAULT_CIPHER_ID
:
3200 case MACSEC_DEFAULT_CIPHER_ALT
:
3201 if (icv_len
< MACSEC_MIN_ICV_LEN
||
3202 icv_len
> MACSEC_MAX_ICV_LEN
)
3209 if (data
[IFLA_MACSEC_ENCODING_SA
]) {
3210 if (nla_get_u8(data
[IFLA_MACSEC_ENCODING_SA
]) >= MACSEC_NUM_AN
)
3214 for (flag
= IFLA_MACSEC_ENCODING_SA
+ 1;
3215 flag
< IFLA_MACSEC_VALIDATION
;
3218 if (nla_get_u8(data
[flag
]) > 1)
3223 es
= data
[IFLA_MACSEC_ES
] ? nla_get_u8(data
[IFLA_MACSEC_ES
]) : false;
3224 sci
= data
[IFLA_MACSEC_INC_SCI
] ? nla_get_u8(data
[IFLA_MACSEC_INC_SCI
]) : false;
3225 scb
= data
[IFLA_MACSEC_SCB
] ? nla_get_u8(data
[IFLA_MACSEC_SCB
]) : false;
3227 if ((sci
&& (scb
|| es
)) || (scb
&& es
))
3230 if (data
[IFLA_MACSEC_VALIDATION
] &&
3231 nla_get_u8(data
[IFLA_MACSEC_VALIDATION
]) > MACSEC_VALIDATE_MAX
)
3234 if ((data
[IFLA_MACSEC_REPLAY_PROTECT
] &&
3235 nla_get_u8(data
[IFLA_MACSEC_REPLAY_PROTECT
])) &&
3236 !data
[IFLA_MACSEC_WINDOW
])
3242 static struct net
*macsec_get_link_net(const struct net_device
*dev
)
3244 return dev_net(macsec_priv(dev
)->real_dev
);
3247 static size_t macsec_get_size(const struct net_device
*dev
)
3250 nla_total_size_64bit(8) + /* SCI */
3251 nla_total_size(1) + /* ICV_LEN */
3252 nla_total_size_64bit(8) + /* CIPHER_SUITE */
3253 nla_total_size(4) + /* WINDOW */
3254 nla_total_size(1) + /* ENCODING_SA */
3255 nla_total_size(1) + /* ENCRYPT */
3256 nla_total_size(1) + /* PROTECT */
3257 nla_total_size(1) + /* INC_SCI */
3258 nla_total_size(1) + /* ES */
3259 nla_total_size(1) + /* SCB */
3260 nla_total_size(1) + /* REPLAY_PROTECT */
3261 nla_total_size(1) + /* VALIDATION */
3265 static int macsec_fill_info(struct sk_buff
*skb
,
3266 const struct net_device
*dev
)
3268 struct macsec_secy
*secy
= &macsec_priv(dev
)->secy
;
3269 struct macsec_tx_sc
*tx_sc
= &secy
->tx_sc
;
3271 if (nla_put_sci(skb
, IFLA_MACSEC_SCI
, secy
->sci
,
3273 nla_put_u8(skb
, IFLA_MACSEC_ICV_LEN
, secy
->icv_len
) ||
3274 nla_put_u64_64bit(skb
, IFLA_MACSEC_CIPHER_SUITE
,
3275 MACSEC_DEFAULT_CIPHER_ID
, IFLA_MACSEC_PAD
) ||
3276 nla_put_u8(skb
, IFLA_MACSEC_ENCODING_SA
, tx_sc
->encoding_sa
) ||
3277 nla_put_u8(skb
, IFLA_MACSEC_ENCRYPT
, tx_sc
->encrypt
) ||
3278 nla_put_u8(skb
, IFLA_MACSEC_PROTECT
, secy
->protect_frames
) ||
3279 nla_put_u8(skb
, IFLA_MACSEC_INC_SCI
, tx_sc
->send_sci
) ||
3280 nla_put_u8(skb
, IFLA_MACSEC_ES
, tx_sc
->end_station
) ||
3281 nla_put_u8(skb
, IFLA_MACSEC_SCB
, tx_sc
->scb
) ||
3282 nla_put_u8(skb
, IFLA_MACSEC_REPLAY_PROTECT
, secy
->replay_protect
) ||
3283 nla_put_u8(skb
, IFLA_MACSEC_VALIDATION
, secy
->validate_frames
) ||
3285 goto nla_put_failure
;
3287 if (secy
->replay_protect
) {
3288 if (nla_put_u32(skb
, IFLA_MACSEC_WINDOW
, secy
->replay_window
))
3289 goto nla_put_failure
;
3298 static struct rtnl_link_ops macsec_link_ops __read_mostly
= {
3300 .priv_size
= sizeof(struct macsec_dev
),
3301 .maxtype
= IFLA_MACSEC_MAX
,
3302 .policy
= macsec_rtnl_policy
,
3303 .setup
= macsec_setup
,
3304 .validate
= macsec_validate_attr
,
3305 .newlink
= macsec_newlink
,
3306 .changelink
= macsec_changelink
,
3307 .dellink
= macsec_dellink
,
3308 .get_size
= macsec_get_size
,
3309 .fill_info
= macsec_fill_info
,
3310 .get_link_net
= macsec_get_link_net
,
3313 static bool is_macsec_master(struct net_device
*dev
)
3315 return rcu_access_pointer(dev
->rx_handler
) == macsec_handle_frame
;
3318 static int macsec_notify(struct notifier_block
*this, unsigned long event
,
3321 struct net_device
*real_dev
= netdev_notifier_info_to_dev(ptr
);
3324 if (!is_macsec_master(real_dev
))
3328 case NETDEV_UNREGISTER
: {
3329 struct macsec_dev
*m
, *n
;
3330 struct macsec_rxh_data
*rxd
;
3332 rxd
= macsec_data_rtnl(real_dev
);
3333 list_for_each_entry_safe(m
, n
, &rxd
->secys
, secys
) {
3334 macsec_dellink(m
->secy
.netdev
, &head
);
3336 unregister_netdevice_many(&head
);
3339 case NETDEV_CHANGEMTU
: {
3340 struct macsec_dev
*m
;
3341 struct macsec_rxh_data
*rxd
;
3343 rxd
= macsec_data_rtnl(real_dev
);
3344 list_for_each_entry(m
, &rxd
->secys
, secys
) {
3345 struct net_device
*dev
= m
->secy
.netdev
;
3346 unsigned int mtu
= real_dev
->mtu
- (m
->secy
.icv_len
+
3347 macsec_extra_len(true));
3350 dev_set_mtu(dev
, mtu
);
3358 static struct notifier_block macsec_notifier
= {
3359 .notifier_call
= macsec_notify
,
3362 static int __init
macsec_init(void)
3366 pr_info("MACsec IEEE 802.1AE\n");
3367 err
= register_netdevice_notifier(&macsec_notifier
);
3371 err
= rtnl_link_register(&macsec_link_ops
);
3375 err
= genl_register_family_with_ops(&macsec_fam
, macsec_genl_ops
);
3382 rtnl_link_unregister(&macsec_link_ops
);
3384 unregister_netdevice_notifier(&macsec_notifier
);
3388 static void __exit
macsec_exit(void)
3390 genl_unregister_family(&macsec_fam
);
3391 rtnl_link_unregister(&macsec_link_ops
);
3392 unregister_netdevice_notifier(&macsec_notifier
);
3396 module_init(macsec_init
);
3397 module_exit(macsec_exit
);
3399 MODULE_ALIAS_RTNL_LINK("macsec");
3401 MODULE_DESCRIPTION("MACsec IEEE 802.1AE");
3402 MODULE_LICENSE("GPL v2");