GNU Linux-libre 4.14.294-gnu1
[releases.git] / drivers / net / macsec.c
1 /*
2  * drivers/net/macsec.c - MACsec device
3  *
4  * Copyright (c) 2015 Sabrina Dubroca <sd@queasysnail.net>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  */
11
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>
20 #include <net/sock.h>
21 #include <net/gro_cells.h>
22 #include <linux/if_arp.h>
23
24 #include <uapi/linux/if_macsec.h>
25
26 typedef u64 __bitwise sci_t;
27
28 #define MACSEC_SCI_LEN 8
29
30 /* SecTAG length = macsec_eth_header without the optional SCI */
31 #define MACSEC_TAG_LEN 6
32
33 struct macsec_eth_header {
34         struct ethhdr eth;
35         /* SecTAG */
36         u8  tci_an;
37 #if defined(__LITTLE_ENDIAN_BITFIELD)
38         u8  short_length:6,
39                   unused:2;
40 #elif defined(__BIG_ENDIAN_BITFIELD)
41         u8        unused:2,
42             short_length:6;
43 #else
44 #error  "Please fix <asm/byteorder.h>"
45 #endif
46         __be32 packet_number;
47         u8 secure_channel_id[8]; /* optional */
48 } __packed;
49
50 #define MACSEC_TCI_VERSION 0x80
51 #define MACSEC_TCI_ES      0x40 /* end station */
52 #define MACSEC_TCI_SC      0x20 /* SCI present */
53 #define MACSEC_TCI_SCB     0x10 /* epon */
54 #define MACSEC_TCI_E       0x08 /* encryption */
55 #define MACSEC_TCI_C       0x04 /* changed text */
56 #define MACSEC_AN_MASK     0x03 /* association number */
57 #define MACSEC_TCI_CONFID  (MACSEC_TCI_E | MACSEC_TCI_C)
58
59 /* minimum secure data length deemed "not short", see IEEE 802.1AE-2006 9.7 */
60 #define MIN_NON_SHORT_LEN 48
61
62 #define GCM_AES_IV_LEN 12
63 #define DEFAULT_ICV_LEN 16
64
65 #define MACSEC_NUM_AN 4 /* 2 bits for the association number */
66
67 #define for_each_rxsc(secy, sc)                 \
68         for (sc = rcu_dereference_bh(secy->rx_sc);      \
69              sc;                                \
70              sc = rcu_dereference_bh(sc->next))
71 #define for_each_rxsc_rtnl(secy, sc)                    \
72         for (sc = rtnl_dereference(secy->rx_sc);        \
73              sc;                                        \
74              sc = rtnl_dereference(sc->next))
75
76 struct gcm_iv {
77         union {
78                 u8 secure_channel_id[8];
79                 sci_t sci;
80         };
81         __be32 pn;
82 };
83
84 /**
85  * struct macsec_key - SA key
86  * @id: user-provided key identifier
87  * @tfm: crypto struct, key storage
88  */
89 struct macsec_key {
90         u8 id[MACSEC_KEYID_LEN];
91         struct crypto_aead *tfm;
92 };
93
94 struct macsec_rx_sc_stats {
95         __u64 InOctetsValidated;
96         __u64 InOctetsDecrypted;
97         __u64 InPktsUnchecked;
98         __u64 InPktsDelayed;
99         __u64 InPktsOK;
100         __u64 InPktsInvalid;
101         __u64 InPktsLate;
102         __u64 InPktsNotValid;
103         __u64 InPktsNotUsingSA;
104         __u64 InPktsUnusedSA;
105 };
106
107 struct macsec_rx_sa_stats {
108         __u32 InPktsOK;
109         __u32 InPktsInvalid;
110         __u32 InPktsNotValid;
111         __u32 InPktsNotUsingSA;
112         __u32 InPktsUnusedSA;
113 };
114
115 struct macsec_tx_sa_stats {
116         __u32 OutPktsProtected;
117         __u32 OutPktsEncrypted;
118 };
119
120 struct macsec_tx_sc_stats {
121         __u64 OutPktsProtected;
122         __u64 OutPktsEncrypted;
123         __u64 OutOctetsProtected;
124         __u64 OutOctetsEncrypted;
125 };
126
127 struct macsec_dev_stats {
128         __u64 OutPktsUntagged;
129         __u64 InPktsUntagged;
130         __u64 OutPktsTooLong;
131         __u64 InPktsNoTag;
132         __u64 InPktsBadTag;
133         __u64 InPktsUnknownSCI;
134         __u64 InPktsNoSCI;
135         __u64 InPktsOverrun;
136 };
137
138 /**
139  * struct macsec_rx_sa - receive secure association
140  * @active:
141  * @next_pn: packet number expected for the next packet
142  * @lock: protects next_pn manipulations
143  * @key: key structure
144  * @stats: per-SA stats
145  */
146 struct macsec_rx_sa {
147         struct macsec_key key;
148         spinlock_t lock;
149         u32 next_pn;
150         atomic_t refcnt;
151         bool active;
152         struct macsec_rx_sa_stats __percpu *stats;
153         struct macsec_rx_sc *sc;
154         struct rcu_head rcu;
155 };
156
157 struct pcpu_rx_sc_stats {
158         struct macsec_rx_sc_stats stats;
159         struct u64_stats_sync syncp;
160 };
161
162 /**
163  * struct macsec_rx_sc - receive secure channel
164  * @sci: secure channel identifier for this SC
165  * @active: channel is active
166  * @sa: array of secure associations
167  * @stats: per-SC stats
168  */
169 struct macsec_rx_sc {
170         struct macsec_rx_sc __rcu *next;
171         sci_t sci;
172         bool active;
173         struct macsec_rx_sa __rcu *sa[MACSEC_NUM_AN];
174         struct pcpu_rx_sc_stats __percpu *stats;
175         atomic_t refcnt;
176         struct rcu_head rcu_head;
177 };
178
179 /**
180  * struct macsec_tx_sa - transmit secure association
181  * @active:
182  * @next_pn: packet number to use for the next packet
183  * @lock: protects next_pn manipulations
184  * @key: key structure
185  * @stats: per-SA stats
186  */
187 struct macsec_tx_sa {
188         struct macsec_key key;
189         spinlock_t lock;
190         u32 next_pn;
191         atomic_t refcnt;
192         bool active;
193         struct macsec_tx_sa_stats __percpu *stats;
194         struct rcu_head rcu;
195 };
196
197 struct pcpu_tx_sc_stats {
198         struct macsec_tx_sc_stats stats;
199         struct u64_stats_sync syncp;
200 };
201
202 /**
203  * struct macsec_tx_sc - transmit secure channel
204  * @active:
205  * @encoding_sa: association number of the SA currently in use
206  * @encrypt: encrypt packets on transmit, or authenticate only
207  * @send_sci: always include the SCI in the SecTAG
208  * @end_station:
209  * @scb: single copy broadcast flag
210  * @sa: array of secure associations
211  * @stats: stats for this TXSC
212  */
213 struct macsec_tx_sc {
214         bool active;
215         u8 encoding_sa;
216         bool encrypt;
217         bool send_sci;
218         bool end_station;
219         bool scb;
220         struct macsec_tx_sa __rcu *sa[MACSEC_NUM_AN];
221         struct pcpu_tx_sc_stats __percpu *stats;
222 };
223
224 #define MACSEC_VALIDATE_DEFAULT MACSEC_VALIDATE_STRICT
225
226 /**
227  * struct macsec_secy - MACsec Security Entity
228  * @netdev: netdevice for this SecY
229  * @n_rx_sc: number of receive secure channels configured on this SecY
230  * @sci: secure channel identifier used for tx
231  * @key_len: length of keys used by the cipher suite
232  * @icv_len: length of ICV used by the cipher suite
233  * @validate_frames: validation mode
234  * @operational: MAC_Operational flag
235  * @protect_frames: enable protection for this SecY
236  * @replay_protect: enable packet number checks on receive
237  * @replay_window: size of the replay window
238  * @tx_sc: transmit secure channel
239  * @rx_sc: linked list of receive secure channels
240  */
241 struct macsec_secy {
242         struct net_device *netdev;
243         unsigned int n_rx_sc;
244         sci_t sci;
245         u16 key_len;
246         u16 icv_len;
247         enum macsec_validation_type validate_frames;
248         bool operational;
249         bool protect_frames;
250         bool replay_protect;
251         u32 replay_window;
252         struct macsec_tx_sc tx_sc;
253         struct macsec_rx_sc __rcu *rx_sc;
254 };
255
256 struct pcpu_secy_stats {
257         struct macsec_dev_stats stats;
258         struct u64_stats_sync syncp;
259 };
260
261 /**
262  * struct macsec_dev - private data
263  * @secy: SecY config
264  * @real_dev: pointer to underlying netdevice
265  * @stats: MACsec device stats
266  * @secys: linked list of SecY's on the underlying device
267  */
268 struct macsec_dev {
269         struct macsec_secy secy;
270         struct net_device *real_dev;
271         struct pcpu_secy_stats __percpu *stats;
272         struct list_head secys;
273         struct gro_cells gro_cells;
274         unsigned int nest_level;
275 };
276
277 /**
278  * struct macsec_rxh_data - rx_handler private argument
279  * @secys: linked list of SecY's on this underlying device
280  */
281 struct macsec_rxh_data {
282         struct list_head secys;
283 };
284
285 static struct macsec_dev *macsec_priv(const struct net_device *dev)
286 {
287         return (struct macsec_dev *)netdev_priv(dev);
288 }
289
290 static struct macsec_rxh_data *macsec_data_rcu(const struct net_device *dev)
291 {
292         return rcu_dereference_bh(dev->rx_handler_data);
293 }
294
295 static struct macsec_rxh_data *macsec_data_rtnl(const struct net_device *dev)
296 {
297         return rtnl_dereference(dev->rx_handler_data);
298 }
299
300 struct macsec_cb {
301         struct aead_request *req;
302         union {
303                 struct macsec_tx_sa *tx_sa;
304                 struct macsec_rx_sa *rx_sa;
305         };
306         u8 assoc_num;
307         bool valid;
308         bool has_sci;
309 };
310
311 static struct macsec_rx_sa *macsec_rxsa_get(struct macsec_rx_sa __rcu *ptr)
312 {
313         struct macsec_rx_sa *sa = rcu_dereference_bh(ptr);
314
315         if (!sa || !sa->active)
316                 return NULL;
317
318         if (!atomic_inc_not_zero(&sa->refcnt))
319                 return NULL;
320
321         return sa;
322 }
323
324 static void free_rx_sc_rcu(struct rcu_head *head)
325 {
326         struct macsec_rx_sc *rx_sc = container_of(head, struct macsec_rx_sc, rcu_head);
327
328         free_percpu(rx_sc->stats);
329         kfree(rx_sc);
330 }
331
332 static struct macsec_rx_sc *macsec_rxsc_get(struct macsec_rx_sc *sc)
333 {
334         return atomic_inc_not_zero(&sc->refcnt) ? sc : NULL;
335 }
336
337 static void macsec_rxsc_put(struct macsec_rx_sc *sc)
338 {
339         if (atomic_dec_and_test(&sc->refcnt))
340                 call_rcu(&sc->rcu_head, free_rx_sc_rcu);
341 }
342
343 static void free_rxsa(struct rcu_head *head)
344 {
345         struct macsec_rx_sa *sa = container_of(head, struct macsec_rx_sa, rcu);
346
347         crypto_free_aead(sa->key.tfm);
348         free_percpu(sa->stats);
349         kfree(sa);
350 }
351
352 static void macsec_rxsa_put(struct macsec_rx_sa *sa)
353 {
354         if (atomic_dec_and_test(&sa->refcnt))
355                 call_rcu(&sa->rcu, free_rxsa);
356 }
357
358 static struct macsec_tx_sa *macsec_txsa_get(struct macsec_tx_sa __rcu *ptr)
359 {
360         struct macsec_tx_sa *sa = rcu_dereference_bh(ptr);
361
362         if (!sa || !sa->active)
363                 return NULL;
364
365         if (!atomic_inc_not_zero(&sa->refcnt))
366                 return NULL;
367
368         return sa;
369 }
370
371 static void free_txsa(struct rcu_head *head)
372 {
373         struct macsec_tx_sa *sa = container_of(head, struct macsec_tx_sa, rcu);
374
375         crypto_free_aead(sa->key.tfm);
376         free_percpu(sa->stats);
377         kfree(sa);
378 }
379
380 static void macsec_txsa_put(struct macsec_tx_sa *sa)
381 {
382         if (atomic_dec_and_test(&sa->refcnt))
383                 call_rcu(&sa->rcu, free_txsa);
384 }
385
386 static struct macsec_cb *macsec_skb_cb(struct sk_buff *skb)
387 {
388         BUILD_BUG_ON(sizeof(struct macsec_cb) > sizeof(skb->cb));
389         return (struct macsec_cb *)skb->cb;
390 }
391
392 #define MACSEC_PORT_ES (htons(0x0001))
393 #define MACSEC_PORT_SCB (0x0000)
394 #define MACSEC_UNDEF_SCI ((__force sci_t)0xffffffffffffffffULL)
395
396 #define DEFAULT_SAK_LEN 16
397 #define DEFAULT_SEND_SCI true
398 #define DEFAULT_ENCRYPT false
399 #define DEFAULT_ENCODING_SA 0
400
401 static bool send_sci(const struct macsec_secy *secy)
402 {
403         const struct macsec_tx_sc *tx_sc = &secy->tx_sc;
404
405         return tx_sc->send_sci ||
406                 (secy->n_rx_sc > 1 && !tx_sc->end_station && !tx_sc->scb);
407 }
408
409 static sci_t make_sci(u8 *addr, __be16 port)
410 {
411         sci_t sci;
412
413         memcpy(&sci, addr, ETH_ALEN);
414         memcpy(((char *)&sci) + ETH_ALEN, &port, sizeof(port));
415
416         return sci;
417 }
418
419 static sci_t macsec_frame_sci(struct macsec_eth_header *hdr, bool sci_present)
420 {
421         sci_t sci;
422
423         if (sci_present)
424                 memcpy(&sci, hdr->secure_channel_id,
425                        sizeof(hdr->secure_channel_id));
426         else
427                 sci = make_sci(hdr->eth.h_source, MACSEC_PORT_ES);
428
429         return sci;
430 }
431
432 static unsigned int macsec_sectag_len(bool sci_present)
433 {
434         return MACSEC_TAG_LEN + (sci_present ? MACSEC_SCI_LEN : 0);
435 }
436
437 static unsigned int macsec_hdr_len(bool sci_present)
438 {
439         return macsec_sectag_len(sci_present) + ETH_HLEN;
440 }
441
442 static unsigned int macsec_extra_len(bool sci_present)
443 {
444         return macsec_sectag_len(sci_present) + sizeof(__be16);
445 }
446
447 /* Fill SecTAG according to IEEE 802.1AE-2006 10.5.3 */
448 static void macsec_fill_sectag(struct macsec_eth_header *h,
449                                const struct macsec_secy *secy, u32 pn,
450                                bool sci_present)
451 {
452         const struct macsec_tx_sc *tx_sc = &secy->tx_sc;
453
454         memset(&h->tci_an, 0, macsec_sectag_len(sci_present));
455         h->eth.h_proto = htons(ETH_P_MACSEC);
456
457         if (sci_present) {
458                 h->tci_an |= MACSEC_TCI_SC;
459                 memcpy(&h->secure_channel_id, &secy->sci,
460                        sizeof(h->secure_channel_id));
461         } else {
462                 if (tx_sc->end_station)
463                         h->tci_an |= MACSEC_TCI_ES;
464                 if (tx_sc->scb)
465                         h->tci_an |= MACSEC_TCI_SCB;
466         }
467
468         h->packet_number = htonl(pn);
469
470         /* with GCM, C/E clear for !encrypt, both set for encrypt */
471         if (tx_sc->encrypt)
472                 h->tci_an |= MACSEC_TCI_CONFID;
473         else if (secy->icv_len != DEFAULT_ICV_LEN)
474                 h->tci_an |= MACSEC_TCI_C;
475
476         h->tci_an |= tx_sc->encoding_sa;
477 }
478
479 static void macsec_set_shortlen(struct macsec_eth_header *h, size_t data_len)
480 {
481         if (data_len < MIN_NON_SHORT_LEN)
482                 h->short_length = data_len;
483 }
484
485 /* validate MACsec packet according to IEEE 802.1AE-2006 9.12 */
486 static bool macsec_validate_skb(struct sk_buff *skb, u16 icv_len)
487 {
488         struct macsec_eth_header *h = (struct macsec_eth_header *)skb->data;
489         int len = skb->len - 2 * ETH_ALEN;
490         int extra_len = macsec_extra_len(!!(h->tci_an & MACSEC_TCI_SC)) + icv_len;
491
492         /* a) It comprises at least 17 octets */
493         if (skb->len <= 16)
494                 return false;
495
496         /* b) MACsec EtherType: already checked */
497
498         /* c) V bit is clear */
499         if (h->tci_an & MACSEC_TCI_VERSION)
500                 return false;
501
502         /* d) ES or SCB => !SC */
503         if ((h->tci_an & MACSEC_TCI_ES || h->tci_an & MACSEC_TCI_SCB) &&
504             (h->tci_an & MACSEC_TCI_SC))
505                 return false;
506
507         /* e) Bits 7 and 8 of octet 4 of the SecTAG are clear */
508         if (h->unused)
509                 return false;
510
511         /* rx.pn != 0 (figure 10-5) */
512         if (!h->packet_number)
513                 return false;
514
515         /* length check, f) g) h) i) */
516         if (h->short_length)
517                 return len == extra_len + h->short_length;
518         return len >= extra_len + MIN_NON_SHORT_LEN;
519 }
520
521 #define MACSEC_NEEDED_HEADROOM (macsec_extra_len(true))
522 #define MACSEC_NEEDED_TAILROOM MACSEC_STD_ICV_LEN
523
524 static void macsec_fill_iv(unsigned char *iv, sci_t sci, u32 pn)
525 {
526         struct gcm_iv *gcm_iv = (struct gcm_iv *)iv;
527
528         gcm_iv->sci = sci;
529         gcm_iv->pn = htonl(pn);
530 }
531
532 static struct macsec_eth_header *macsec_ethhdr(struct sk_buff *skb)
533 {
534         return (struct macsec_eth_header *)skb_mac_header(skb);
535 }
536
537 static u32 tx_sa_update_pn(struct macsec_tx_sa *tx_sa, struct macsec_secy *secy)
538 {
539         u32 pn;
540
541         spin_lock_bh(&tx_sa->lock);
542         pn = tx_sa->next_pn;
543
544         tx_sa->next_pn++;
545         if (tx_sa->next_pn == 0) {
546                 pr_debug("PN wrapped, transitioning to !oper\n");
547                 tx_sa->active = false;
548                 if (secy->protect_frames)
549                         secy->operational = false;
550         }
551         spin_unlock_bh(&tx_sa->lock);
552
553         return pn;
554 }
555
556 static void macsec_encrypt_finish(struct sk_buff *skb, struct net_device *dev)
557 {
558         struct macsec_dev *macsec = netdev_priv(dev);
559
560         skb->dev = macsec->real_dev;
561         skb_reset_mac_header(skb);
562         skb->protocol = eth_hdr(skb)->h_proto;
563 }
564
565 static void macsec_count_tx(struct sk_buff *skb, struct macsec_tx_sc *tx_sc,
566                             struct macsec_tx_sa *tx_sa)
567 {
568         struct pcpu_tx_sc_stats *txsc_stats = this_cpu_ptr(tx_sc->stats);
569
570         u64_stats_update_begin(&txsc_stats->syncp);
571         if (tx_sc->encrypt) {
572                 txsc_stats->stats.OutOctetsEncrypted += skb->len;
573                 txsc_stats->stats.OutPktsEncrypted++;
574                 this_cpu_inc(tx_sa->stats->OutPktsEncrypted);
575         } else {
576                 txsc_stats->stats.OutOctetsProtected += skb->len;
577                 txsc_stats->stats.OutPktsProtected++;
578                 this_cpu_inc(tx_sa->stats->OutPktsProtected);
579         }
580         u64_stats_update_end(&txsc_stats->syncp);
581 }
582
583 static void count_tx(struct net_device *dev, int ret, int len)
584 {
585         if (likely(ret == NET_XMIT_SUCCESS || ret == NET_XMIT_CN)) {
586                 struct pcpu_sw_netstats *stats = this_cpu_ptr(dev->tstats);
587
588                 u64_stats_update_begin(&stats->syncp);
589                 stats->tx_packets++;
590                 stats->tx_bytes += len;
591                 u64_stats_update_end(&stats->syncp);
592         }
593 }
594
595 static void macsec_encrypt_done(struct crypto_async_request *base, int err)
596 {
597         struct sk_buff *skb = base->data;
598         struct net_device *dev = skb->dev;
599         struct macsec_dev *macsec = macsec_priv(dev);
600         struct macsec_tx_sa *sa = macsec_skb_cb(skb)->tx_sa;
601         int len, ret;
602
603         aead_request_free(macsec_skb_cb(skb)->req);
604
605         rcu_read_lock_bh();
606         macsec_encrypt_finish(skb, dev);
607         macsec_count_tx(skb, &macsec->secy.tx_sc, macsec_skb_cb(skb)->tx_sa);
608         len = skb->len;
609         ret = dev_queue_xmit(skb);
610         count_tx(dev, ret, len);
611         rcu_read_unlock_bh();
612
613         macsec_txsa_put(sa);
614         dev_put(dev);
615 }
616
617 static struct aead_request *macsec_alloc_req(struct crypto_aead *tfm,
618                                              unsigned char **iv,
619                                              struct scatterlist **sg,
620                                              int num_frags)
621 {
622         size_t size, iv_offset, sg_offset;
623         struct aead_request *req;
624         void *tmp;
625
626         size = sizeof(struct aead_request) + crypto_aead_reqsize(tfm);
627         iv_offset = size;
628         size += GCM_AES_IV_LEN;
629
630         size = ALIGN(size, __alignof__(struct scatterlist));
631         sg_offset = size;
632         size += sizeof(struct scatterlist) * num_frags;
633
634         tmp = kmalloc(size, GFP_ATOMIC);
635         if (!tmp)
636                 return NULL;
637
638         *iv = (unsigned char *)(tmp + iv_offset);
639         *sg = (struct scatterlist *)(tmp + sg_offset);
640         req = tmp;
641
642         aead_request_set_tfm(req, tfm);
643
644         return req;
645 }
646
647 static struct sk_buff *macsec_encrypt(struct sk_buff *skb,
648                                       struct net_device *dev)
649 {
650         int ret;
651         struct scatterlist *sg;
652         struct sk_buff *trailer;
653         unsigned char *iv;
654         struct ethhdr *eth;
655         struct macsec_eth_header *hh;
656         size_t unprotected_len;
657         struct aead_request *req;
658         struct macsec_secy *secy;
659         struct macsec_tx_sc *tx_sc;
660         struct macsec_tx_sa *tx_sa;
661         struct macsec_dev *macsec = macsec_priv(dev);
662         bool sci_present;
663         u32 pn;
664
665         secy = &macsec->secy;
666         tx_sc = &secy->tx_sc;
667
668         /* 10.5.1 TX SA assignment */
669         tx_sa = macsec_txsa_get(tx_sc->sa[tx_sc->encoding_sa]);
670         if (!tx_sa) {
671                 secy->operational = false;
672                 kfree_skb(skb);
673                 return ERR_PTR(-EINVAL);
674         }
675
676         if (unlikely(skb_headroom(skb) < MACSEC_NEEDED_HEADROOM ||
677                      skb_tailroom(skb) < MACSEC_NEEDED_TAILROOM)) {
678                 struct sk_buff *nskb = skb_copy_expand(skb,
679                                                        MACSEC_NEEDED_HEADROOM,
680                                                        MACSEC_NEEDED_TAILROOM,
681                                                        GFP_ATOMIC);
682                 if (likely(nskb)) {
683                         consume_skb(skb);
684                         skb = nskb;
685                 } else {
686                         macsec_txsa_put(tx_sa);
687                         kfree_skb(skb);
688                         return ERR_PTR(-ENOMEM);
689                 }
690         } else {
691                 skb = skb_unshare(skb, GFP_ATOMIC);
692                 if (!skb) {
693                         macsec_txsa_put(tx_sa);
694                         return ERR_PTR(-ENOMEM);
695                 }
696         }
697
698         unprotected_len = skb->len;
699         eth = eth_hdr(skb);
700         sci_present = send_sci(secy);
701         hh = skb_push(skb, macsec_extra_len(sci_present));
702         memmove(hh, eth, 2 * ETH_ALEN);
703
704         pn = tx_sa_update_pn(tx_sa, secy);
705         if (pn == 0) {
706                 macsec_txsa_put(tx_sa);
707                 kfree_skb(skb);
708                 return ERR_PTR(-ENOLINK);
709         }
710         macsec_fill_sectag(hh, secy, pn, sci_present);
711         macsec_set_shortlen(hh, unprotected_len - 2 * ETH_ALEN);
712
713         skb_put(skb, secy->icv_len);
714
715         if (skb->len - ETH_HLEN > macsec_priv(dev)->real_dev->mtu) {
716                 struct pcpu_secy_stats *secy_stats = this_cpu_ptr(macsec->stats);
717
718                 u64_stats_update_begin(&secy_stats->syncp);
719                 secy_stats->stats.OutPktsTooLong++;
720                 u64_stats_update_end(&secy_stats->syncp);
721
722                 macsec_txsa_put(tx_sa);
723                 kfree_skb(skb);
724                 return ERR_PTR(-EINVAL);
725         }
726
727         ret = skb_cow_data(skb, 0, &trailer);
728         if (unlikely(ret < 0)) {
729                 macsec_txsa_put(tx_sa);
730                 kfree_skb(skb);
731                 return ERR_PTR(ret);
732         }
733
734         req = macsec_alloc_req(tx_sa->key.tfm, &iv, &sg, ret);
735         if (!req) {
736                 macsec_txsa_put(tx_sa);
737                 kfree_skb(skb);
738                 return ERR_PTR(-ENOMEM);
739         }
740
741         macsec_fill_iv(iv, secy->sci, pn);
742
743         sg_init_table(sg, ret);
744         ret = skb_to_sgvec(skb, sg, 0, skb->len);
745         if (unlikely(ret < 0)) {
746                 aead_request_free(req);
747                 macsec_txsa_put(tx_sa);
748                 kfree_skb(skb);
749                 return ERR_PTR(ret);
750         }
751
752         if (tx_sc->encrypt) {
753                 int len = skb->len - macsec_hdr_len(sci_present) -
754                           secy->icv_len;
755                 aead_request_set_crypt(req, sg, sg, len, iv);
756                 aead_request_set_ad(req, macsec_hdr_len(sci_present));
757         } else {
758                 aead_request_set_crypt(req, sg, sg, 0, iv);
759                 aead_request_set_ad(req, skb->len - secy->icv_len);
760         }
761
762         macsec_skb_cb(skb)->req = req;
763         macsec_skb_cb(skb)->tx_sa = tx_sa;
764         aead_request_set_callback(req, 0, macsec_encrypt_done, skb);
765
766         dev_hold(skb->dev);
767         ret = crypto_aead_encrypt(req);
768         if (ret == -EINPROGRESS) {
769                 return ERR_PTR(ret);
770         } else if (ret != 0) {
771                 dev_put(skb->dev);
772                 kfree_skb(skb);
773                 aead_request_free(req);
774                 macsec_txsa_put(tx_sa);
775                 return ERR_PTR(-EINVAL);
776         }
777
778         dev_put(skb->dev);
779         aead_request_free(req);
780         macsec_txsa_put(tx_sa);
781
782         return skb;
783 }
784
785 static bool macsec_post_decrypt(struct sk_buff *skb, struct macsec_secy *secy, u32 pn)
786 {
787         struct macsec_rx_sa *rx_sa = macsec_skb_cb(skb)->rx_sa;
788         struct pcpu_rx_sc_stats *rxsc_stats = this_cpu_ptr(rx_sa->sc->stats);
789         struct macsec_eth_header *hdr = macsec_ethhdr(skb);
790         u32 lowest_pn = 0;
791
792         spin_lock(&rx_sa->lock);
793         if (rx_sa->next_pn >= secy->replay_window)
794                 lowest_pn = rx_sa->next_pn - secy->replay_window;
795
796         /* Now perform replay protection check again
797          * (see IEEE 802.1AE-2006 figure 10-5)
798          */
799         if (secy->replay_protect && pn < lowest_pn) {
800                 spin_unlock(&rx_sa->lock);
801                 u64_stats_update_begin(&rxsc_stats->syncp);
802                 rxsc_stats->stats.InPktsLate++;
803                 u64_stats_update_end(&rxsc_stats->syncp);
804                 return false;
805         }
806
807         if (secy->validate_frames != MACSEC_VALIDATE_DISABLED) {
808                 u64_stats_update_begin(&rxsc_stats->syncp);
809                 if (hdr->tci_an & MACSEC_TCI_E)
810                         rxsc_stats->stats.InOctetsDecrypted += skb->len;
811                 else
812                         rxsc_stats->stats.InOctetsValidated += skb->len;
813                 u64_stats_update_end(&rxsc_stats->syncp);
814         }
815
816         if (!macsec_skb_cb(skb)->valid) {
817                 spin_unlock(&rx_sa->lock);
818
819                 /* 10.6.5 */
820                 if (hdr->tci_an & MACSEC_TCI_C ||
821                     secy->validate_frames == MACSEC_VALIDATE_STRICT) {
822                         u64_stats_update_begin(&rxsc_stats->syncp);
823                         rxsc_stats->stats.InPktsNotValid++;
824                         u64_stats_update_end(&rxsc_stats->syncp);
825                         return false;
826                 }
827
828                 u64_stats_update_begin(&rxsc_stats->syncp);
829                 if (secy->validate_frames == MACSEC_VALIDATE_CHECK) {
830                         rxsc_stats->stats.InPktsInvalid++;
831                         this_cpu_inc(rx_sa->stats->InPktsInvalid);
832                 } else if (pn < lowest_pn) {
833                         rxsc_stats->stats.InPktsDelayed++;
834                 } else {
835                         rxsc_stats->stats.InPktsUnchecked++;
836                 }
837                 u64_stats_update_end(&rxsc_stats->syncp);
838         } else {
839                 u64_stats_update_begin(&rxsc_stats->syncp);
840                 if (pn < lowest_pn) {
841                         rxsc_stats->stats.InPktsDelayed++;
842                 } else {
843                         rxsc_stats->stats.InPktsOK++;
844                         this_cpu_inc(rx_sa->stats->InPktsOK);
845                 }
846                 u64_stats_update_end(&rxsc_stats->syncp);
847
848                 if (pn >= rx_sa->next_pn)
849                         rx_sa->next_pn = pn + 1;
850                 spin_unlock(&rx_sa->lock);
851         }
852
853         return true;
854 }
855
856 static void macsec_reset_skb(struct sk_buff *skb, struct net_device *dev)
857 {
858         skb->pkt_type = PACKET_HOST;
859         skb->protocol = eth_type_trans(skb, dev);
860
861         skb_reset_network_header(skb);
862         if (!skb_transport_header_was_set(skb))
863                 skb_reset_transport_header(skb);
864         skb_reset_mac_len(skb);
865 }
866
867 static void macsec_finalize_skb(struct sk_buff *skb, u8 icv_len, u8 hdr_len)
868 {
869         skb->ip_summed = CHECKSUM_NONE;
870         memmove(skb->data + hdr_len, skb->data, 2 * ETH_ALEN);
871         skb_pull(skb, hdr_len);
872         pskb_trim_unique(skb, skb->len - icv_len);
873 }
874
875 static void count_rx(struct net_device *dev, int len)
876 {
877         struct pcpu_sw_netstats *stats = this_cpu_ptr(dev->tstats);
878
879         u64_stats_update_begin(&stats->syncp);
880         stats->rx_packets++;
881         stats->rx_bytes += len;
882         u64_stats_update_end(&stats->syncp);
883 }
884
885 static void macsec_decrypt_done(struct crypto_async_request *base, int err)
886 {
887         struct sk_buff *skb = base->data;
888         struct net_device *dev = skb->dev;
889         struct macsec_dev *macsec = macsec_priv(dev);
890         struct macsec_rx_sa *rx_sa = macsec_skb_cb(skb)->rx_sa;
891         struct macsec_rx_sc *rx_sc = rx_sa->sc;
892         int len;
893         u32 pn;
894
895         aead_request_free(macsec_skb_cb(skb)->req);
896
897         if (!err)
898                 macsec_skb_cb(skb)->valid = true;
899
900         rcu_read_lock_bh();
901         pn = ntohl(macsec_ethhdr(skb)->packet_number);
902         if (!macsec_post_decrypt(skb, &macsec->secy, pn)) {
903                 rcu_read_unlock_bh();
904                 kfree_skb(skb);
905                 goto out;
906         }
907
908         macsec_finalize_skb(skb, macsec->secy.icv_len,
909                             macsec_extra_len(macsec_skb_cb(skb)->has_sci));
910         macsec_reset_skb(skb, macsec->secy.netdev);
911
912         len = skb->len;
913         if (gro_cells_receive(&macsec->gro_cells, skb) == NET_RX_SUCCESS)
914                 count_rx(dev, len);
915
916         rcu_read_unlock_bh();
917
918 out:
919         macsec_rxsa_put(rx_sa);
920         macsec_rxsc_put(rx_sc);
921         dev_put(dev);
922 }
923
924 static struct sk_buff *macsec_decrypt(struct sk_buff *skb,
925                                       struct net_device *dev,
926                                       struct macsec_rx_sa *rx_sa,
927                                       sci_t sci,
928                                       struct macsec_secy *secy)
929 {
930         int ret;
931         struct scatterlist *sg;
932         struct sk_buff *trailer;
933         unsigned char *iv;
934         struct aead_request *req;
935         struct macsec_eth_header *hdr;
936         u16 icv_len = secy->icv_len;
937
938         macsec_skb_cb(skb)->valid = false;
939         skb = skb_share_check(skb, GFP_ATOMIC);
940         if (!skb)
941                 return ERR_PTR(-ENOMEM);
942
943         ret = skb_cow_data(skb, 0, &trailer);
944         if (unlikely(ret < 0)) {
945                 kfree_skb(skb);
946                 return ERR_PTR(ret);
947         }
948         req = macsec_alloc_req(rx_sa->key.tfm, &iv, &sg, ret);
949         if (!req) {
950                 kfree_skb(skb);
951                 return ERR_PTR(-ENOMEM);
952         }
953
954         hdr = (struct macsec_eth_header *)skb->data;
955         macsec_fill_iv(iv, sci, ntohl(hdr->packet_number));
956
957         sg_init_table(sg, ret);
958         ret = skb_to_sgvec(skb, sg, 0, skb->len);
959         if (unlikely(ret < 0)) {
960                 aead_request_free(req);
961                 kfree_skb(skb);
962                 return ERR_PTR(ret);
963         }
964
965         if (hdr->tci_an & MACSEC_TCI_E) {
966                 /* confidentiality: ethernet + macsec header
967                  * authenticated, encrypted payload
968                  */
969                 int len = skb->len - macsec_hdr_len(macsec_skb_cb(skb)->has_sci);
970
971                 aead_request_set_crypt(req, sg, sg, len, iv);
972                 aead_request_set_ad(req, macsec_hdr_len(macsec_skb_cb(skb)->has_sci));
973                 skb = skb_unshare(skb, GFP_ATOMIC);
974                 if (!skb) {
975                         aead_request_free(req);
976                         return ERR_PTR(-ENOMEM);
977                 }
978         } else {
979                 /* integrity only: all headers + data authenticated */
980                 aead_request_set_crypt(req, sg, sg, icv_len, iv);
981                 aead_request_set_ad(req, skb->len - icv_len);
982         }
983
984         macsec_skb_cb(skb)->req = req;
985         skb->dev = dev;
986         aead_request_set_callback(req, 0, macsec_decrypt_done, skb);
987
988         dev_hold(dev);
989         ret = crypto_aead_decrypt(req);
990         if (ret == -EINPROGRESS) {
991                 return ERR_PTR(ret);
992         } else if (ret != 0) {
993                 /* decryption/authentication failed
994                  * 10.6 if validateFrames is disabled, deliver anyway
995                  */
996                 if (ret != -EBADMSG) {
997                         kfree_skb(skb);
998                         skb = ERR_PTR(ret);
999                 }
1000         } else {
1001                 macsec_skb_cb(skb)->valid = true;
1002         }
1003         dev_put(dev);
1004
1005         aead_request_free(req);
1006
1007         return skb;
1008 }
1009
1010 static struct macsec_rx_sc *find_rx_sc(struct macsec_secy *secy, sci_t sci)
1011 {
1012         struct macsec_rx_sc *rx_sc;
1013
1014         for_each_rxsc(secy, rx_sc) {
1015                 if (rx_sc->sci == sci)
1016                         return rx_sc;
1017         }
1018
1019         return NULL;
1020 }
1021
1022 static struct macsec_rx_sc *find_rx_sc_rtnl(struct macsec_secy *secy, sci_t sci)
1023 {
1024         struct macsec_rx_sc *rx_sc;
1025
1026         for_each_rxsc_rtnl(secy, rx_sc) {
1027                 if (rx_sc->sci == sci)
1028                         return rx_sc;
1029         }
1030
1031         return NULL;
1032 }
1033
1034 static void handle_not_macsec(struct sk_buff *skb)
1035 {
1036         struct macsec_rxh_data *rxd;
1037         struct macsec_dev *macsec;
1038
1039         rcu_read_lock();
1040         rxd = macsec_data_rcu(skb->dev);
1041
1042         /* 10.6 If the management control validateFrames is not
1043          * Strict, frames without a SecTAG are received, counted, and
1044          * delivered to the Controlled Port
1045          */
1046         list_for_each_entry_rcu(macsec, &rxd->secys, secys) {
1047                 struct sk_buff *nskb;
1048                 struct pcpu_secy_stats *secy_stats = this_cpu_ptr(macsec->stats);
1049
1050                 if (macsec->secy.validate_frames == MACSEC_VALIDATE_STRICT) {
1051                         u64_stats_update_begin(&secy_stats->syncp);
1052                         secy_stats->stats.InPktsNoTag++;
1053                         u64_stats_update_end(&secy_stats->syncp);
1054                         continue;
1055                 }
1056
1057                 /* deliver on this port */
1058                 nskb = skb_clone(skb, GFP_ATOMIC);
1059                 if (!nskb)
1060                         break;
1061
1062                 nskb->dev = macsec->secy.netdev;
1063
1064                 if (netif_rx(nskb) == NET_RX_SUCCESS) {
1065                         u64_stats_update_begin(&secy_stats->syncp);
1066                         secy_stats->stats.InPktsUntagged++;
1067                         u64_stats_update_end(&secy_stats->syncp);
1068                 }
1069         }
1070
1071         rcu_read_unlock();
1072 }
1073
1074 static rx_handler_result_t macsec_handle_frame(struct sk_buff **pskb)
1075 {
1076         struct sk_buff *skb = *pskb;
1077         struct net_device *dev = skb->dev;
1078         struct macsec_eth_header *hdr;
1079         struct macsec_secy *secy = NULL;
1080         struct macsec_rx_sc *rx_sc;
1081         struct macsec_rx_sa *rx_sa;
1082         struct macsec_rxh_data *rxd;
1083         struct macsec_dev *macsec;
1084         unsigned int len;
1085         sci_t sci;
1086         u32 pn;
1087         bool cbit;
1088         struct pcpu_rx_sc_stats *rxsc_stats;
1089         struct pcpu_secy_stats *secy_stats;
1090         bool pulled_sci;
1091         int ret;
1092
1093         if (skb_headroom(skb) < ETH_HLEN)
1094                 goto drop_direct;
1095
1096         hdr = macsec_ethhdr(skb);
1097         if (hdr->eth.h_proto != htons(ETH_P_MACSEC)) {
1098                 handle_not_macsec(skb);
1099
1100                 /* and deliver to the uncontrolled port */
1101                 return RX_HANDLER_PASS;
1102         }
1103
1104         skb = skb_unshare(skb, GFP_ATOMIC);
1105         *pskb = skb;
1106         if (!skb)
1107                 return RX_HANDLER_CONSUMED;
1108
1109         pulled_sci = pskb_may_pull(skb, macsec_extra_len(true));
1110         if (!pulled_sci) {
1111                 if (!pskb_may_pull(skb, macsec_extra_len(false)))
1112                         goto drop_direct;
1113         }
1114
1115         hdr = macsec_ethhdr(skb);
1116
1117         /* Frames with a SecTAG that has the TCI E bit set but the C
1118          * bit clear are discarded, as this reserved encoding is used
1119          * to identify frames with a SecTAG that are not to be
1120          * delivered to the Controlled Port.
1121          */
1122         if ((hdr->tci_an & (MACSEC_TCI_C | MACSEC_TCI_E)) == MACSEC_TCI_E)
1123                 return RX_HANDLER_PASS;
1124
1125         /* now, pull the extra length */
1126         if (hdr->tci_an & MACSEC_TCI_SC) {
1127                 if (!pulled_sci)
1128                         goto drop_direct;
1129         }
1130
1131         /* ethernet header is part of crypto processing */
1132         skb_push(skb, ETH_HLEN);
1133
1134         macsec_skb_cb(skb)->has_sci = !!(hdr->tci_an & MACSEC_TCI_SC);
1135         macsec_skb_cb(skb)->assoc_num = hdr->tci_an & MACSEC_AN_MASK;
1136         sci = macsec_frame_sci(hdr, macsec_skb_cb(skb)->has_sci);
1137
1138         rcu_read_lock();
1139         rxd = macsec_data_rcu(skb->dev);
1140
1141         list_for_each_entry_rcu(macsec, &rxd->secys, secys) {
1142                 struct macsec_rx_sc *sc = find_rx_sc(&macsec->secy, sci);
1143                 sc = sc ? macsec_rxsc_get(sc) : NULL;
1144
1145                 if (sc) {
1146                         secy = &macsec->secy;
1147                         rx_sc = sc;
1148                         break;
1149                 }
1150         }
1151
1152         if (!secy)
1153                 goto nosci;
1154
1155         dev = secy->netdev;
1156         macsec = macsec_priv(dev);
1157         secy_stats = this_cpu_ptr(macsec->stats);
1158         rxsc_stats = this_cpu_ptr(rx_sc->stats);
1159
1160         if (!macsec_validate_skb(skb, secy->icv_len)) {
1161                 u64_stats_update_begin(&secy_stats->syncp);
1162                 secy_stats->stats.InPktsBadTag++;
1163                 u64_stats_update_end(&secy_stats->syncp);
1164                 goto drop_nosa;
1165         }
1166
1167         rx_sa = macsec_rxsa_get(rx_sc->sa[macsec_skb_cb(skb)->assoc_num]);
1168         if (!rx_sa) {
1169                 /* 10.6.1 if the SA is not in use */
1170
1171                 /* If validateFrames is Strict or the C bit in the
1172                  * SecTAG is set, discard
1173                  */
1174                 if (hdr->tci_an & MACSEC_TCI_C ||
1175                     secy->validate_frames == MACSEC_VALIDATE_STRICT) {
1176                         u64_stats_update_begin(&rxsc_stats->syncp);
1177                         rxsc_stats->stats.InPktsNotUsingSA++;
1178                         u64_stats_update_end(&rxsc_stats->syncp);
1179                         goto drop_nosa;
1180                 }
1181
1182                 /* not Strict, the frame (with the SecTAG and ICV
1183                  * removed) is delivered to the Controlled Port.
1184                  */
1185                 u64_stats_update_begin(&rxsc_stats->syncp);
1186                 rxsc_stats->stats.InPktsUnusedSA++;
1187                 u64_stats_update_end(&rxsc_stats->syncp);
1188                 goto deliver;
1189         }
1190
1191         /* First, PN check to avoid decrypting obviously wrong packets */
1192         pn = ntohl(hdr->packet_number);
1193         if (secy->replay_protect) {
1194                 bool late;
1195
1196                 spin_lock(&rx_sa->lock);
1197                 late = rx_sa->next_pn >= secy->replay_window &&
1198                        pn < (rx_sa->next_pn - secy->replay_window);
1199                 spin_unlock(&rx_sa->lock);
1200
1201                 if (late) {
1202                         u64_stats_update_begin(&rxsc_stats->syncp);
1203                         rxsc_stats->stats.InPktsLate++;
1204                         u64_stats_update_end(&rxsc_stats->syncp);
1205                         goto drop;
1206                 }
1207         }
1208
1209         macsec_skb_cb(skb)->rx_sa = rx_sa;
1210
1211         /* Disabled && !changed text => skip validation */
1212         if (hdr->tci_an & MACSEC_TCI_C ||
1213             secy->validate_frames != MACSEC_VALIDATE_DISABLED)
1214                 skb = macsec_decrypt(skb, dev, rx_sa, sci, secy);
1215
1216         if (IS_ERR(skb)) {
1217                 /* the decrypt callback needs the reference */
1218                 if (PTR_ERR(skb) != -EINPROGRESS) {
1219                         macsec_rxsa_put(rx_sa);
1220                         macsec_rxsc_put(rx_sc);
1221                 }
1222                 rcu_read_unlock();
1223                 *pskb = NULL;
1224                 return RX_HANDLER_CONSUMED;
1225         }
1226
1227         if (!macsec_post_decrypt(skb, secy, pn))
1228                 goto drop;
1229
1230 deliver:
1231         macsec_finalize_skb(skb, secy->icv_len,
1232                             macsec_extra_len(macsec_skb_cb(skb)->has_sci));
1233         macsec_reset_skb(skb, secy->netdev);
1234
1235         if (rx_sa)
1236                 macsec_rxsa_put(rx_sa);
1237         macsec_rxsc_put(rx_sc);
1238
1239         skb_orphan(skb);
1240         len = skb->len;
1241         ret = gro_cells_receive(&macsec->gro_cells, skb);
1242         if (ret == NET_RX_SUCCESS)
1243                 count_rx(dev, len);
1244         else
1245                 macsec->secy.netdev->stats.rx_dropped++;
1246
1247         rcu_read_unlock();
1248
1249         *pskb = NULL;
1250         return RX_HANDLER_CONSUMED;
1251
1252 drop:
1253         macsec_rxsa_put(rx_sa);
1254 drop_nosa:
1255         macsec_rxsc_put(rx_sc);
1256         rcu_read_unlock();
1257 drop_direct:
1258         kfree_skb(skb);
1259         *pskb = NULL;
1260         return RX_HANDLER_CONSUMED;
1261
1262 nosci:
1263         /* 10.6.1 if the SC is not found */
1264         cbit = !!(hdr->tci_an & MACSEC_TCI_C);
1265         if (!cbit)
1266                 macsec_finalize_skb(skb, DEFAULT_ICV_LEN,
1267                                     macsec_extra_len(macsec_skb_cb(skb)->has_sci));
1268
1269         list_for_each_entry_rcu(macsec, &rxd->secys, secys) {
1270                 struct sk_buff *nskb;
1271
1272                 secy_stats = this_cpu_ptr(macsec->stats);
1273
1274                 /* If validateFrames is Strict or the C bit in the
1275                  * SecTAG is set, discard
1276                  */
1277                 if (cbit ||
1278                     macsec->secy.validate_frames == MACSEC_VALIDATE_STRICT) {
1279                         u64_stats_update_begin(&secy_stats->syncp);
1280                         secy_stats->stats.InPktsNoSCI++;
1281                         u64_stats_update_end(&secy_stats->syncp);
1282                         continue;
1283                 }
1284
1285                 /* not strict, the frame (with the SecTAG and ICV
1286                  * removed) is delivered to the Controlled Port.
1287                  */
1288                 nskb = skb_clone(skb, GFP_ATOMIC);
1289                 if (!nskb)
1290                         break;
1291
1292                 macsec_reset_skb(nskb, macsec->secy.netdev);
1293
1294                 ret = netif_rx(nskb);
1295                 if (ret == NET_RX_SUCCESS) {
1296                         u64_stats_update_begin(&secy_stats->syncp);
1297                         secy_stats->stats.InPktsUnknownSCI++;
1298                         u64_stats_update_end(&secy_stats->syncp);
1299                 } else {
1300                         macsec->secy.netdev->stats.rx_dropped++;
1301                 }
1302         }
1303
1304         rcu_read_unlock();
1305         *pskb = skb;
1306         return RX_HANDLER_PASS;
1307 }
1308
1309 static struct crypto_aead *macsec_alloc_tfm(char *key, int key_len, int icv_len)
1310 {
1311         struct crypto_aead *tfm;
1312         int ret;
1313
1314         /* Pick a sync gcm(aes) cipher to ensure order is preserved. */
1315         tfm = crypto_alloc_aead("gcm(aes)", 0, CRYPTO_ALG_ASYNC);
1316
1317         if (IS_ERR(tfm))
1318                 return tfm;
1319
1320         ret = crypto_aead_setkey(tfm, key, key_len);
1321         if (ret < 0)
1322                 goto fail;
1323
1324         ret = crypto_aead_setauthsize(tfm, icv_len);
1325         if (ret < 0)
1326                 goto fail;
1327
1328         return tfm;
1329 fail:
1330         crypto_free_aead(tfm);
1331         return ERR_PTR(ret);
1332 }
1333
1334 static int init_rx_sa(struct macsec_rx_sa *rx_sa, char *sak, int key_len,
1335                       int icv_len)
1336 {
1337         rx_sa->stats = alloc_percpu(struct macsec_rx_sa_stats);
1338         if (!rx_sa->stats)
1339                 return -ENOMEM;
1340
1341         rx_sa->key.tfm = macsec_alloc_tfm(sak, key_len, icv_len);
1342         if (IS_ERR(rx_sa->key.tfm)) {
1343                 free_percpu(rx_sa->stats);
1344                 return PTR_ERR(rx_sa->key.tfm);
1345         }
1346
1347         rx_sa->active = false;
1348         rx_sa->next_pn = 1;
1349         atomic_set(&rx_sa->refcnt, 1);
1350         spin_lock_init(&rx_sa->lock);
1351
1352         return 0;
1353 }
1354
1355 static void clear_rx_sa(struct macsec_rx_sa *rx_sa)
1356 {
1357         rx_sa->active = false;
1358
1359         macsec_rxsa_put(rx_sa);
1360 }
1361
1362 static void free_rx_sc(struct macsec_rx_sc *rx_sc)
1363 {
1364         int i;
1365
1366         for (i = 0; i < MACSEC_NUM_AN; i++) {
1367                 struct macsec_rx_sa *sa = rtnl_dereference(rx_sc->sa[i]);
1368
1369                 RCU_INIT_POINTER(rx_sc->sa[i], NULL);
1370                 if (sa)
1371                         clear_rx_sa(sa);
1372         }
1373
1374         macsec_rxsc_put(rx_sc);
1375 }
1376
1377 static struct macsec_rx_sc *del_rx_sc(struct macsec_secy *secy, sci_t sci)
1378 {
1379         struct macsec_rx_sc *rx_sc, __rcu **rx_scp;
1380
1381         for (rx_scp = &secy->rx_sc, rx_sc = rtnl_dereference(*rx_scp);
1382              rx_sc;
1383              rx_scp = &rx_sc->next, rx_sc = rtnl_dereference(*rx_scp)) {
1384                 if (rx_sc->sci == sci) {
1385                         if (rx_sc->active)
1386                                 secy->n_rx_sc--;
1387                         rcu_assign_pointer(*rx_scp, rx_sc->next);
1388                         return rx_sc;
1389                 }
1390         }
1391
1392         return NULL;
1393 }
1394
1395 static struct macsec_rx_sc *create_rx_sc(struct net_device *dev, sci_t sci)
1396 {
1397         struct macsec_rx_sc *rx_sc;
1398         struct macsec_dev *macsec;
1399         struct net_device *real_dev = macsec_priv(dev)->real_dev;
1400         struct macsec_rxh_data *rxd = macsec_data_rtnl(real_dev);
1401         struct macsec_secy *secy;
1402
1403         list_for_each_entry(macsec, &rxd->secys, secys) {
1404                 if (find_rx_sc_rtnl(&macsec->secy, sci))
1405                         return ERR_PTR(-EEXIST);
1406         }
1407
1408         rx_sc = kzalloc(sizeof(*rx_sc), GFP_KERNEL);
1409         if (!rx_sc)
1410                 return ERR_PTR(-ENOMEM);
1411
1412         rx_sc->stats = netdev_alloc_pcpu_stats(struct pcpu_rx_sc_stats);
1413         if (!rx_sc->stats) {
1414                 kfree(rx_sc);
1415                 return ERR_PTR(-ENOMEM);
1416         }
1417
1418         rx_sc->sci = sci;
1419         rx_sc->active = true;
1420         atomic_set(&rx_sc->refcnt, 1);
1421
1422         secy = &macsec_priv(dev)->secy;
1423         rcu_assign_pointer(rx_sc->next, secy->rx_sc);
1424         rcu_assign_pointer(secy->rx_sc, rx_sc);
1425
1426         if (rx_sc->active)
1427                 secy->n_rx_sc++;
1428
1429         return rx_sc;
1430 }
1431
1432 static int init_tx_sa(struct macsec_tx_sa *tx_sa, char *sak, int key_len,
1433                       int icv_len)
1434 {
1435         tx_sa->stats = alloc_percpu(struct macsec_tx_sa_stats);
1436         if (!tx_sa->stats)
1437                 return -ENOMEM;
1438
1439         tx_sa->key.tfm = macsec_alloc_tfm(sak, key_len, icv_len);
1440         if (IS_ERR(tx_sa->key.tfm)) {
1441                 free_percpu(tx_sa->stats);
1442                 return PTR_ERR(tx_sa->key.tfm);
1443         }
1444
1445         tx_sa->active = false;
1446         atomic_set(&tx_sa->refcnt, 1);
1447         spin_lock_init(&tx_sa->lock);
1448
1449         return 0;
1450 }
1451
1452 static void clear_tx_sa(struct macsec_tx_sa *tx_sa)
1453 {
1454         tx_sa->active = false;
1455
1456         macsec_txsa_put(tx_sa);
1457 }
1458
1459 static struct genl_family macsec_fam;
1460
1461 static struct net_device *get_dev_from_nl(struct net *net,
1462                                           struct nlattr **attrs)
1463 {
1464         int ifindex = nla_get_u32(attrs[MACSEC_ATTR_IFINDEX]);
1465         struct net_device *dev;
1466
1467         dev = __dev_get_by_index(net, ifindex);
1468         if (!dev)
1469                 return ERR_PTR(-ENODEV);
1470
1471         if (!netif_is_macsec(dev))
1472                 return ERR_PTR(-ENODEV);
1473
1474         return dev;
1475 }
1476
1477 static sci_t nla_get_sci(const struct nlattr *nla)
1478 {
1479         return (__force sci_t)nla_get_u64(nla);
1480 }
1481
1482 static int nla_put_sci(struct sk_buff *skb, int attrtype, sci_t value,
1483                        int padattr)
1484 {
1485         return nla_put_u64_64bit(skb, attrtype, (__force u64)value, padattr);
1486 }
1487
1488 static struct macsec_tx_sa *get_txsa_from_nl(struct net *net,
1489                                              struct nlattr **attrs,
1490                                              struct nlattr **tb_sa,
1491                                              struct net_device **devp,
1492                                              struct macsec_secy **secyp,
1493                                              struct macsec_tx_sc **scp,
1494                                              u8 *assoc_num)
1495 {
1496         struct net_device *dev;
1497         struct macsec_secy *secy;
1498         struct macsec_tx_sc *tx_sc;
1499         struct macsec_tx_sa *tx_sa;
1500
1501         if (!tb_sa[MACSEC_SA_ATTR_AN])
1502                 return ERR_PTR(-EINVAL);
1503
1504         *assoc_num = nla_get_u8(tb_sa[MACSEC_SA_ATTR_AN]);
1505
1506         dev = get_dev_from_nl(net, attrs);
1507         if (IS_ERR(dev))
1508                 return ERR_CAST(dev);
1509
1510         if (*assoc_num >= MACSEC_NUM_AN)
1511                 return ERR_PTR(-EINVAL);
1512
1513         secy = &macsec_priv(dev)->secy;
1514         tx_sc = &secy->tx_sc;
1515
1516         tx_sa = rtnl_dereference(tx_sc->sa[*assoc_num]);
1517         if (!tx_sa)
1518                 return ERR_PTR(-ENODEV);
1519
1520         *devp = dev;
1521         *scp = tx_sc;
1522         *secyp = secy;
1523         return tx_sa;
1524 }
1525
1526 static struct macsec_rx_sc *get_rxsc_from_nl(struct net *net,
1527                                              struct nlattr **attrs,
1528                                              struct nlattr **tb_rxsc,
1529                                              struct net_device **devp,
1530                                              struct macsec_secy **secyp)
1531 {
1532         struct net_device *dev;
1533         struct macsec_secy *secy;
1534         struct macsec_rx_sc *rx_sc;
1535         sci_t sci;
1536
1537         dev = get_dev_from_nl(net, attrs);
1538         if (IS_ERR(dev))
1539                 return ERR_CAST(dev);
1540
1541         secy = &macsec_priv(dev)->secy;
1542
1543         if (!tb_rxsc[MACSEC_RXSC_ATTR_SCI])
1544                 return ERR_PTR(-EINVAL);
1545
1546         sci = nla_get_sci(tb_rxsc[MACSEC_RXSC_ATTR_SCI]);
1547         rx_sc = find_rx_sc_rtnl(secy, sci);
1548         if (!rx_sc)
1549                 return ERR_PTR(-ENODEV);
1550
1551         *secyp = secy;
1552         *devp = dev;
1553
1554         return rx_sc;
1555 }
1556
1557 static struct macsec_rx_sa *get_rxsa_from_nl(struct net *net,
1558                                              struct nlattr **attrs,
1559                                              struct nlattr **tb_rxsc,
1560                                              struct nlattr **tb_sa,
1561                                              struct net_device **devp,
1562                                              struct macsec_secy **secyp,
1563                                              struct macsec_rx_sc **scp,
1564                                              u8 *assoc_num)
1565 {
1566         struct macsec_rx_sc *rx_sc;
1567         struct macsec_rx_sa *rx_sa;
1568
1569         if (!tb_sa[MACSEC_SA_ATTR_AN])
1570                 return ERR_PTR(-EINVAL);
1571
1572         *assoc_num = nla_get_u8(tb_sa[MACSEC_SA_ATTR_AN]);
1573         if (*assoc_num >= MACSEC_NUM_AN)
1574                 return ERR_PTR(-EINVAL);
1575
1576         rx_sc = get_rxsc_from_nl(net, attrs, tb_rxsc, devp, secyp);
1577         if (IS_ERR(rx_sc))
1578                 return ERR_CAST(rx_sc);
1579
1580         rx_sa = rtnl_dereference(rx_sc->sa[*assoc_num]);
1581         if (!rx_sa)
1582                 return ERR_PTR(-ENODEV);
1583
1584         *scp = rx_sc;
1585         return rx_sa;
1586 }
1587
1588
1589 static const struct nla_policy macsec_genl_policy[NUM_MACSEC_ATTR] = {
1590         [MACSEC_ATTR_IFINDEX] = { .type = NLA_U32 },
1591         [MACSEC_ATTR_RXSC_CONFIG] = { .type = NLA_NESTED },
1592         [MACSEC_ATTR_SA_CONFIG] = { .type = NLA_NESTED },
1593 };
1594
1595 static const struct nla_policy macsec_genl_rxsc_policy[NUM_MACSEC_RXSC_ATTR] = {
1596         [MACSEC_RXSC_ATTR_SCI] = { .type = NLA_U64 },
1597         [MACSEC_RXSC_ATTR_ACTIVE] = { .type = NLA_U8 },
1598 };
1599
1600 static const struct nla_policy macsec_genl_sa_policy[NUM_MACSEC_SA_ATTR] = {
1601         [MACSEC_SA_ATTR_AN] = { .type = NLA_U8 },
1602         [MACSEC_SA_ATTR_ACTIVE] = { .type = NLA_U8 },
1603         [MACSEC_SA_ATTR_PN] = { .type = NLA_U32 },
1604         [MACSEC_SA_ATTR_KEYID] = { .type = NLA_BINARY,
1605                                    .len = MACSEC_KEYID_LEN, },
1606         [MACSEC_SA_ATTR_KEY] = { .type = NLA_BINARY,
1607                                  .len = MACSEC_MAX_KEY_LEN, },
1608 };
1609
1610 static int parse_sa_config(struct nlattr **attrs, struct nlattr **tb_sa)
1611 {
1612         if (!attrs[MACSEC_ATTR_SA_CONFIG])
1613                 return -EINVAL;
1614
1615         if (nla_parse_nested(tb_sa, MACSEC_SA_ATTR_MAX,
1616                              attrs[MACSEC_ATTR_SA_CONFIG],
1617                              macsec_genl_sa_policy, NULL))
1618                 return -EINVAL;
1619
1620         return 0;
1621 }
1622
1623 static int parse_rxsc_config(struct nlattr **attrs, struct nlattr **tb_rxsc)
1624 {
1625         if (!attrs[MACSEC_ATTR_RXSC_CONFIG])
1626                 return -EINVAL;
1627
1628         if (nla_parse_nested(tb_rxsc, MACSEC_RXSC_ATTR_MAX,
1629                              attrs[MACSEC_ATTR_RXSC_CONFIG],
1630                              macsec_genl_rxsc_policy, NULL))
1631                 return -EINVAL;
1632
1633         return 0;
1634 }
1635
1636 static bool validate_add_rxsa(struct nlattr **attrs)
1637 {
1638         if (!attrs[MACSEC_SA_ATTR_AN] ||
1639             !attrs[MACSEC_SA_ATTR_KEY] ||
1640             !attrs[MACSEC_SA_ATTR_KEYID])
1641                 return false;
1642
1643         if (nla_get_u8(attrs[MACSEC_SA_ATTR_AN]) >= MACSEC_NUM_AN)
1644                 return false;
1645
1646         if (attrs[MACSEC_SA_ATTR_PN] && nla_get_u32(attrs[MACSEC_SA_ATTR_PN]) == 0)
1647                 return false;
1648
1649         if (attrs[MACSEC_SA_ATTR_ACTIVE]) {
1650                 if (nla_get_u8(attrs[MACSEC_SA_ATTR_ACTIVE]) > 1)
1651                         return false;
1652         }
1653
1654         if (nla_len(attrs[MACSEC_SA_ATTR_KEYID]) != MACSEC_KEYID_LEN)
1655                 return false;
1656
1657         return true;
1658 }
1659
1660 static int macsec_add_rxsa(struct sk_buff *skb, struct genl_info *info)
1661 {
1662         struct net_device *dev;
1663         struct nlattr **attrs = info->attrs;
1664         struct macsec_secy *secy;
1665         struct macsec_rx_sc *rx_sc;
1666         struct macsec_rx_sa *rx_sa;
1667         unsigned char assoc_num;
1668         struct nlattr *tb_rxsc[MACSEC_RXSC_ATTR_MAX + 1];
1669         struct nlattr *tb_sa[MACSEC_SA_ATTR_MAX + 1];
1670         int err;
1671
1672         if (!attrs[MACSEC_ATTR_IFINDEX])
1673                 return -EINVAL;
1674
1675         if (parse_sa_config(attrs, tb_sa))
1676                 return -EINVAL;
1677
1678         if (parse_rxsc_config(attrs, tb_rxsc))
1679                 return -EINVAL;
1680
1681         if (!validate_add_rxsa(tb_sa))
1682                 return -EINVAL;
1683
1684         rtnl_lock();
1685         rx_sc = get_rxsc_from_nl(genl_info_net(info), attrs, tb_rxsc, &dev, &secy);
1686         if (IS_ERR(rx_sc)) {
1687                 rtnl_unlock();
1688                 return PTR_ERR(rx_sc);
1689         }
1690
1691         assoc_num = nla_get_u8(tb_sa[MACSEC_SA_ATTR_AN]);
1692
1693         if (nla_len(tb_sa[MACSEC_SA_ATTR_KEY]) != secy->key_len) {
1694                 pr_notice("macsec: nl: add_rxsa: bad key length: %d != %d\n",
1695                           nla_len(tb_sa[MACSEC_SA_ATTR_KEY]), secy->key_len);
1696                 rtnl_unlock();
1697                 return -EINVAL;
1698         }
1699
1700         rx_sa = rtnl_dereference(rx_sc->sa[assoc_num]);
1701         if (rx_sa) {
1702                 rtnl_unlock();
1703                 return -EBUSY;
1704         }
1705
1706         rx_sa = kmalloc(sizeof(*rx_sa), GFP_KERNEL);
1707         if (!rx_sa) {
1708                 rtnl_unlock();
1709                 return -ENOMEM;
1710         }
1711
1712         err = init_rx_sa(rx_sa, nla_data(tb_sa[MACSEC_SA_ATTR_KEY]),
1713                          secy->key_len, secy->icv_len);
1714         if (err < 0) {
1715                 kfree(rx_sa);
1716                 rtnl_unlock();
1717                 return err;
1718         }
1719
1720         if (tb_sa[MACSEC_SA_ATTR_PN]) {
1721                 spin_lock_bh(&rx_sa->lock);
1722                 rx_sa->next_pn = nla_get_u32(tb_sa[MACSEC_SA_ATTR_PN]);
1723                 spin_unlock_bh(&rx_sa->lock);
1724         }
1725
1726         if (tb_sa[MACSEC_SA_ATTR_ACTIVE])
1727                 rx_sa->active = !!nla_get_u8(tb_sa[MACSEC_SA_ATTR_ACTIVE]);
1728
1729         nla_memcpy(rx_sa->key.id, tb_sa[MACSEC_SA_ATTR_KEYID], MACSEC_KEYID_LEN);
1730         rx_sa->sc = rx_sc;
1731         rcu_assign_pointer(rx_sc->sa[assoc_num], rx_sa);
1732
1733         rtnl_unlock();
1734
1735         return 0;
1736 }
1737
1738 static bool validate_add_rxsc(struct nlattr **attrs)
1739 {
1740         if (!attrs[MACSEC_RXSC_ATTR_SCI])
1741                 return false;
1742
1743         if (attrs[MACSEC_RXSC_ATTR_ACTIVE]) {
1744                 if (nla_get_u8(attrs[MACSEC_RXSC_ATTR_ACTIVE]) > 1)
1745                         return false;
1746         }
1747
1748         return true;
1749 }
1750
1751 static int macsec_add_rxsc(struct sk_buff *skb, struct genl_info *info)
1752 {
1753         struct net_device *dev;
1754         sci_t sci = MACSEC_UNDEF_SCI;
1755         struct nlattr **attrs = info->attrs;
1756         struct macsec_rx_sc *rx_sc;
1757         struct nlattr *tb_rxsc[MACSEC_RXSC_ATTR_MAX + 1];
1758
1759         if (!attrs[MACSEC_ATTR_IFINDEX])
1760                 return -EINVAL;
1761
1762         if (parse_rxsc_config(attrs, tb_rxsc))
1763                 return -EINVAL;
1764
1765         if (!validate_add_rxsc(tb_rxsc))
1766                 return -EINVAL;
1767
1768         rtnl_lock();
1769         dev = get_dev_from_nl(genl_info_net(info), attrs);
1770         if (IS_ERR(dev)) {
1771                 rtnl_unlock();
1772                 return PTR_ERR(dev);
1773         }
1774
1775         sci = nla_get_sci(tb_rxsc[MACSEC_RXSC_ATTR_SCI]);
1776
1777         rx_sc = create_rx_sc(dev, sci);
1778         if (IS_ERR(rx_sc)) {
1779                 rtnl_unlock();
1780                 return PTR_ERR(rx_sc);
1781         }
1782
1783         if (tb_rxsc[MACSEC_RXSC_ATTR_ACTIVE])
1784                 rx_sc->active = !!nla_get_u8(tb_rxsc[MACSEC_RXSC_ATTR_ACTIVE]);
1785
1786         rtnl_unlock();
1787
1788         return 0;
1789 }
1790
1791 static bool validate_add_txsa(struct nlattr **attrs)
1792 {
1793         if (!attrs[MACSEC_SA_ATTR_AN] ||
1794             !attrs[MACSEC_SA_ATTR_PN] ||
1795             !attrs[MACSEC_SA_ATTR_KEY] ||
1796             !attrs[MACSEC_SA_ATTR_KEYID])
1797                 return false;
1798
1799         if (nla_get_u8(attrs[MACSEC_SA_ATTR_AN]) >= MACSEC_NUM_AN)
1800                 return false;
1801
1802         if (nla_get_u32(attrs[MACSEC_SA_ATTR_PN]) == 0)
1803                 return false;
1804
1805         if (attrs[MACSEC_SA_ATTR_ACTIVE]) {
1806                 if (nla_get_u8(attrs[MACSEC_SA_ATTR_ACTIVE]) > 1)
1807                         return false;
1808         }
1809
1810         if (nla_len(attrs[MACSEC_SA_ATTR_KEYID]) != MACSEC_KEYID_LEN)
1811                 return false;
1812
1813         return true;
1814 }
1815
1816 static int macsec_add_txsa(struct sk_buff *skb, struct genl_info *info)
1817 {
1818         struct net_device *dev;
1819         struct nlattr **attrs = info->attrs;
1820         struct macsec_secy *secy;
1821         struct macsec_tx_sc *tx_sc;
1822         struct macsec_tx_sa *tx_sa;
1823         unsigned char assoc_num;
1824         struct nlattr *tb_sa[MACSEC_SA_ATTR_MAX + 1];
1825         int err;
1826
1827         if (!attrs[MACSEC_ATTR_IFINDEX])
1828                 return -EINVAL;
1829
1830         if (parse_sa_config(attrs, tb_sa))
1831                 return -EINVAL;
1832
1833         if (!validate_add_txsa(tb_sa))
1834                 return -EINVAL;
1835
1836         rtnl_lock();
1837         dev = get_dev_from_nl(genl_info_net(info), attrs);
1838         if (IS_ERR(dev)) {
1839                 rtnl_unlock();
1840                 return PTR_ERR(dev);
1841         }
1842
1843         secy = &macsec_priv(dev)->secy;
1844         tx_sc = &secy->tx_sc;
1845
1846         assoc_num = nla_get_u8(tb_sa[MACSEC_SA_ATTR_AN]);
1847
1848         if (nla_len(tb_sa[MACSEC_SA_ATTR_KEY]) != secy->key_len) {
1849                 pr_notice("macsec: nl: add_txsa: bad key length: %d != %d\n",
1850                           nla_len(tb_sa[MACSEC_SA_ATTR_KEY]), secy->key_len);
1851                 rtnl_unlock();
1852                 return -EINVAL;
1853         }
1854
1855         tx_sa = rtnl_dereference(tx_sc->sa[assoc_num]);
1856         if (tx_sa) {
1857                 rtnl_unlock();
1858                 return -EBUSY;
1859         }
1860
1861         tx_sa = kmalloc(sizeof(*tx_sa), GFP_KERNEL);
1862         if (!tx_sa) {
1863                 rtnl_unlock();
1864                 return -ENOMEM;
1865         }
1866
1867         err = init_tx_sa(tx_sa, nla_data(tb_sa[MACSEC_SA_ATTR_KEY]),
1868                          secy->key_len, secy->icv_len);
1869         if (err < 0) {
1870                 kfree(tx_sa);
1871                 rtnl_unlock();
1872                 return err;
1873         }
1874
1875         nla_memcpy(tx_sa->key.id, tb_sa[MACSEC_SA_ATTR_KEYID], MACSEC_KEYID_LEN);
1876
1877         spin_lock_bh(&tx_sa->lock);
1878         tx_sa->next_pn = nla_get_u32(tb_sa[MACSEC_SA_ATTR_PN]);
1879         spin_unlock_bh(&tx_sa->lock);
1880
1881         if (tb_sa[MACSEC_SA_ATTR_ACTIVE])
1882                 tx_sa->active = !!nla_get_u8(tb_sa[MACSEC_SA_ATTR_ACTIVE]);
1883
1884         if (assoc_num == tx_sc->encoding_sa && tx_sa->active)
1885                 secy->operational = true;
1886
1887         rcu_assign_pointer(tx_sc->sa[assoc_num], tx_sa);
1888
1889         rtnl_unlock();
1890
1891         return 0;
1892 }
1893
1894 static int macsec_del_rxsa(struct sk_buff *skb, struct genl_info *info)
1895 {
1896         struct nlattr **attrs = info->attrs;
1897         struct net_device *dev;
1898         struct macsec_secy *secy;
1899         struct macsec_rx_sc *rx_sc;
1900         struct macsec_rx_sa *rx_sa;
1901         u8 assoc_num;
1902         struct nlattr *tb_rxsc[MACSEC_RXSC_ATTR_MAX + 1];
1903         struct nlattr *tb_sa[MACSEC_SA_ATTR_MAX + 1];
1904
1905         if (!attrs[MACSEC_ATTR_IFINDEX])
1906                 return -EINVAL;
1907
1908         if (parse_sa_config(attrs, tb_sa))
1909                 return -EINVAL;
1910
1911         if (parse_rxsc_config(attrs, tb_rxsc))
1912                 return -EINVAL;
1913
1914         rtnl_lock();
1915         rx_sa = get_rxsa_from_nl(genl_info_net(info), attrs, tb_rxsc, tb_sa,
1916                                  &dev, &secy, &rx_sc, &assoc_num);
1917         if (IS_ERR(rx_sa)) {
1918                 rtnl_unlock();
1919                 return PTR_ERR(rx_sa);
1920         }
1921
1922         if (rx_sa->active) {
1923                 rtnl_unlock();
1924                 return -EBUSY;
1925         }
1926
1927         RCU_INIT_POINTER(rx_sc->sa[assoc_num], NULL);
1928         clear_rx_sa(rx_sa);
1929
1930         rtnl_unlock();
1931
1932         return 0;
1933 }
1934
1935 static int macsec_del_rxsc(struct sk_buff *skb, struct genl_info *info)
1936 {
1937         struct nlattr **attrs = info->attrs;
1938         struct net_device *dev;
1939         struct macsec_secy *secy;
1940         struct macsec_rx_sc *rx_sc;
1941         sci_t sci;
1942         struct nlattr *tb_rxsc[MACSEC_RXSC_ATTR_MAX + 1];
1943
1944         if (!attrs[MACSEC_ATTR_IFINDEX])
1945                 return -EINVAL;
1946
1947         if (parse_rxsc_config(attrs, tb_rxsc))
1948                 return -EINVAL;
1949
1950         if (!tb_rxsc[MACSEC_RXSC_ATTR_SCI])
1951                 return -EINVAL;
1952
1953         rtnl_lock();
1954         dev = get_dev_from_nl(genl_info_net(info), info->attrs);
1955         if (IS_ERR(dev)) {
1956                 rtnl_unlock();
1957                 return PTR_ERR(dev);
1958         }
1959
1960         secy = &macsec_priv(dev)->secy;
1961         sci = nla_get_sci(tb_rxsc[MACSEC_RXSC_ATTR_SCI]);
1962
1963         rx_sc = del_rx_sc(secy, sci);
1964         if (!rx_sc) {
1965                 rtnl_unlock();
1966                 return -ENODEV;
1967         }
1968
1969         free_rx_sc(rx_sc);
1970         rtnl_unlock();
1971
1972         return 0;
1973 }
1974
1975 static int macsec_del_txsa(struct sk_buff *skb, struct genl_info *info)
1976 {
1977         struct nlattr **attrs = info->attrs;
1978         struct net_device *dev;
1979         struct macsec_secy *secy;
1980         struct macsec_tx_sc *tx_sc;
1981         struct macsec_tx_sa *tx_sa;
1982         u8 assoc_num;
1983         struct nlattr *tb_sa[MACSEC_SA_ATTR_MAX + 1];
1984
1985         if (!attrs[MACSEC_ATTR_IFINDEX])
1986                 return -EINVAL;
1987
1988         if (parse_sa_config(attrs, tb_sa))
1989                 return -EINVAL;
1990
1991         rtnl_lock();
1992         tx_sa = get_txsa_from_nl(genl_info_net(info), attrs, tb_sa,
1993                                  &dev, &secy, &tx_sc, &assoc_num);
1994         if (IS_ERR(tx_sa)) {
1995                 rtnl_unlock();
1996                 return PTR_ERR(tx_sa);
1997         }
1998
1999         if (tx_sa->active) {
2000                 rtnl_unlock();
2001                 return -EBUSY;
2002         }
2003
2004         RCU_INIT_POINTER(tx_sc->sa[assoc_num], NULL);
2005         clear_tx_sa(tx_sa);
2006
2007         rtnl_unlock();
2008
2009         return 0;
2010 }
2011
2012 static bool validate_upd_sa(struct nlattr **attrs)
2013 {
2014         if (!attrs[MACSEC_SA_ATTR_AN] ||
2015             attrs[MACSEC_SA_ATTR_KEY] ||
2016             attrs[MACSEC_SA_ATTR_KEYID])
2017                 return false;
2018
2019         if (nla_get_u8(attrs[MACSEC_SA_ATTR_AN]) >= MACSEC_NUM_AN)
2020                 return false;
2021
2022         if (attrs[MACSEC_SA_ATTR_PN] && nla_get_u32(attrs[MACSEC_SA_ATTR_PN]) == 0)
2023                 return false;
2024
2025         if (attrs[MACSEC_SA_ATTR_ACTIVE]) {
2026                 if (nla_get_u8(attrs[MACSEC_SA_ATTR_ACTIVE]) > 1)
2027                         return false;
2028         }
2029
2030         return true;
2031 }
2032
2033 static int macsec_upd_txsa(struct sk_buff *skb, struct genl_info *info)
2034 {
2035         struct nlattr **attrs = info->attrs;
2036         struct net_device *dev;
2037         struct macsec_secy *secy;
2038         struct macsec_tx_sc *tx_sc;
2039         struct macsec_tx_sa *tx_sa;
2040         u8 assoc_num;
2041         struct nlattr *tb_sa[MACSEC_SA_ATTR_MAX + 1];
2042
2043         if (!attrs[MACSEC_ATTR_IFINDEX])
2044                 return -EINVAL;
2045
2046         if (parse_sa_config(attrs, tb_sa))
2047                 return -EINVAL;
2048
2049         if (!validate_upd_sa(tb_sa))
2050                 return -EINVAL;
2051
2052         rtnl_lock();
2053         tx_sa = get_txsa_from_nl(genl_info_net(info), attrs, tb_sa,
2054                                  &dev, &secy, &tx_sc, &assoc_num);
2055         if (IS_ERR(tx_sa)) {
2056                 rtnl_unlock();
2057                 return PTR_ERR(tx_sa);
2058         }
2059
2060         if (tb_sa[MACSEC_SA_ATTR_PN]) {
2061                 spin_lock_bh(&tx_sa->lock);
2062                 tx_sa->next_pn = nla_get_u32(tb_sa[MACSEC_SA_ATTR_PN]);
2063                 spin_unlock_bh(&tx_sa->lock);
2064         }
2065
2066         if (tb_sa[MACSEC_SA_ATTR_ACTIVE])
2067                 tx_sa->active = nla_get_u8(tb_sa[MACSEC_SA_ATTR_ACTIVE]);
2068
2069         if (assoc_num == tx_sc->encoding_sa)
2070                 secy->operational = tx_sa->active;
2071
2072         rtnl_unlock();
2073
2074         return 0;
2075 }
2076
2077 static int macsec_upd_rxsa(struct sk_buff *skb, struct genl_info *info)
2078 {
2079         struct nlattr **attrs = info->attrs;
2080         struct net_device *dev;
2081         struct macsec_secy *secy;
2082         struct macsec_rx_sc *rx_sc;
2083         struct macsec_rx_sa *rx_sa;
2084         u8 assoc_num;
2085         struct nlattr *tb_rxsc[MACSEC_RXSC_ATTR_MAX + 1];
2086         struct nlattr *tb_sa[MACSEC_SA_ATTR_MAX + 1];
2087
2088         if (!attrs[MACSEC_ATTR_IFINDEX])
2089                 return -EINVAL;
2090
2091         if (parse_rxsc_config(attrs, tb_rxsc))
2092                 return -EINVAL;
2093
2094         if (parse_sa_config(attrs, tb_sa))
2095                 return -EINVAL;
2096
2097         if (!validate_upd_sa(tb_sa))
2098                 return -EINVAL;
2099
2100         rtnl_lock();
2101         rx_sa = get_rxsa_from_nl(genl_info_net(info), attrs, tb_rxsc, tb_sa,
2102                                  &dev, &secy, &rx_sc, &assoc_num);
2103         if (IS_ERR(rx_sa)) {
2104                 rtnl_unlock();
2105                 return PTR_ERR(rx_sa);
2106         }
2107
2108         if (tb_sa[MACSEC_SA_ATTR_PN]) {
2109                 spin_lock_bh(&rx_sa->lock);
2110                 rx_sa->next_pn = nla_get_u32(tb_sa[MACSEC_SA_ATTR_PN]);
2111                 spin_unlock_bh(&rx_sa->lock);
2112         }
2113
2114         if (tb_sa[MACSEC_SA_ATTR_ACTIVE])
2115                 rx_sa->active = nla_get_u8(tb_sa[MACSEC_SA_ATTR_ACTIVE]);
2116
2117         rtnl_unlock();
2118         return 0;
2119 }
2120
2121 static int macsec_upd_rxsc(struct sk_buff *skb, struct genl_info *info)
2122 {
2123         struct nlattr **attrs = info->attrs;
2124         struct net_device *dev;
2125         struct macsec_secy *secy;
2126         struct macsec_rx_sc *rx_sc;
2127         struct nlattr *tb_rxsc[MACSEC_RXSC_ATTR_MAX + 1];
2128
2129         if (!attrs[MACSEC_ATTR_IFINDEX])
2130                 return -EINVAL;
2131
2132         if (parse_rxsc_config(attrs, tb_rxsc))
2133                 return -EINVAL;
2134
2135         if (!validate_add_rxsc(tb_rxsc))
2136                 return -EINVAL;
2137
2138         rtnl_lock();
2139         rx_sc = get_rxsc_from_nl(genl_info_net(info), attrs, tb_rxsc, &dev, &secy);
2140         if (IS_ERR(rx_sc)) {
2141                 rtnl_unlock();
2142                 return PTR_ERR(rx_sc);
2143         }
2144
2145         if (tb_rxsc[MACSEC_RXSC_ATTR_ACTIVE]) {
2146                 bool new = !!nla_get_u8(tb_rxsc[MACSEC_RXSC_ATTR_ACTIVE]);
2147
2148                 if (rx_sc->active != new)
2149                         secy->n_rx_sc += new ? 1 : -1;
2150
2151                 rx_sc->active = new;
2152         }
2153
2154         rtnl_unlock();
2155
2156         return 0;
2157 }
2158
2159 static int copy_tx_sa_stats(struct sk_buff *skb,
2160                              struct macsec_tx_sa_stats __percpu *pstats)
2161 {
2162         struct macsec_tx_sa_stats sum = {0, };
2163         int cpu;
2164
2165         for_each_possible_cpu(cpu) {
2166                 const struct macsec_tx_sa_stats *stats = per_cpu_ptr(pstats, cpu);
2167
2168                 sum.OutPktsProtected += stats->OutPktsProtected;
2169                 sum.OutPktsEncrypted += stats->OutPktsEncrypted;
2170         }
2171
2172         if (nla_put_u32(skb, MACSEC_SA_STATS_ATTR_OUT_PKTS_PROTECTED, sum.OutPktsProtected) ||
2173             nla_put_u32(skb, MACSEC_SA_STATS_ATTR_OUT_PKTS_ENCRYPTED, sum.OutPktsEncrypted))
2174                 return -EMSGSIZE;
2175
2176         return 0;
2177 }
2178
2179 static int copy_rx_sa_stats(struct sk_buff *skb,
2180                              struct macsec_rx_sa_stats __percpu *pstats)
2181 {
2182         struct macsec_rx_sa_stats sum = {0, };
2183         int cpu;
2184
2185         for_each_possible_cpu(cpu) {
2186                 const struct macsec_rx_sa_stats *stats = per_cpu_ptr(pstats, cpu);
2187
2188                 sum.InPktsOK         += stats->InPktsOK;
2189                 sum.InPktsInvalid    += stats->InPktsInvalid;
2190                 sum.InPktsNotValid   += stats->InPktsNotValid;
2191                 sum.InPktsNotUsingSA += stats->InPktsNotUsingSA;
2192                 sum.InPktsUnusedSA   += stats->InPktsUnusedSA;
2193         }
2194
2195         if (nla_put_u32(skb, MACSEC_SA_STATS_ATTR_IN_PKTS_OK, sum.InPktsOK) ||
2196             nla_put_u32(skb, MACSEC_SA_STATS_ATTR_IN_PKTS_INVALID, sum.InPktsInvalid) ||
2197             nla_put_u32(skb, MACSEC_SA_STATS_ATTR_IN_PKTS_NOT_VALID, sum.InPktsNotValid) ||
2198             nla_put_u32(skb, MACSEC_SA_STATS_ATTR_IN_PKTS_NOT_USING_SA, sum.InPktsNotUsingSA) ||
2199             nla_put_u32(skb, MACSEC_SA_STATS_ATTR_IN_PKTS_UNUSED_SA, sum.InPktsUnusedSA))
2200                 return -EMSGSIZE;
2201
2202         return 0;
2203 }
2204
2205 static int copy_rx_sc_stats(struct sk_buff *skb,
2206                              struct pcpu_rx_sc_stats __percpu *pstats)
2207 {
2208         struct macsec_rx_sc_stats sum = {0, };
2209         int cpu;
2210
2211         for_each_possible_cpu(cpu) {
2212                 const struct pcpu_rx_sc_stats *stats;
2213                 struct macsec_rx_sc_stats tmp;
2214                 unsigned int start;
2215
2216                 stats = per_cpu_ptr(pstats, cpu);
2217                 do {
2218                         start = u64_stats_fetch_begin_irq(&stats->syncp);
2219                         memcpy(&tmp, &stats->stats, sizeof(tmp));
2220                 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
2221
2222                 sum.InOctetsValidated += tmp.InOctetsValidated;
2223                 sum.InOctetsDecrypted += tmp.InOctetsDecrypted;
2224                 sum.InPktsUnchecked   += tmp.InPktsUnchecked;
2225                 sum.InPktsDelayed     += tmp.InPktsDelayed;
2226                 sum.InPktsOK          += tmp.InPktsOK;
2227                 sum.InPktsInvalid     += tmp.InPktsInvalid;
2228                 sum.InPktsLate        += tmp.InPktsLate;
2229                 sum.InPktsNotValid    += tmp.InPktsNotValid;
2230                 sum.InPktsNotUsingSA  += tmp.InPktsNotUsingSA;
2231                 sum.InPktsUnusedSA    += tmp.InPktsUnusedSA;
2232         }
2233
2234         if (nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_OCTETS_VALIDATED,
2235                               sum.InOctetsValidated,
2236                               MACSEC_RXSC_STATS_ATTR_PAD) ||
2237             nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_OCTETS_DECRYPTED,
2238                               sum.InOctetsDecrypted,
2239                               MACSEC_RXSC_STATS_ATTR_PAD) ||
2240             nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_UNCHECKED,
2241                               sum.InPktsUnchecked,
2242                               MACSEC_RXSC_STATS_ATTR_PAD) ||
2243             nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_DELAYED,
2244                               sum.InPktsDelayed,
2245                               MACSEC_RXSC_STATS_ATTR_PAD) ||
2246             nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_OK,
2247                               sum.InPktsOK,
2248                               MACSEC_RXSC_STATS_ATTR_PAD) ||
2249             nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_INVALID,
2250                               sum.InPktsInvalid,
2251                               MACSEC_RXSC_STATS_ATTR_PAD) ||
2252             nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_LATE,
2253                               sum.InPktsLate,
2254                               MACSEC_RXSC_STATS_ATTR_PAD) ||
2255             nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_NOT_VALID,
2256                               sum.InPktsNotValid,
2257                               MACSEC_RXSC_STATS_ATTR_PAD) ||
2258             nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_NOT_USING_SA,
2259                               sum.InPktsNotUsingSA,
2260                               MACSEC_RXSC_STATS_ATTR_PAD) ||
2261             nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_UNUSED_SA,
2262                               sum.InPktsUnusedSA,
2263                               MACSEC_RXSC_STATS_ATTR_PAD))
2264                 return -EMSGSIZE;
2265
2266         return 0;
2267 }
2268
2269 static int copy_tx_sc_stats(struct sk_buff *skb,
2270                              struct pcpu_tx_sc_stats __percpu *pstats)
2271 {
2272         struct macsec_tx_sc_stats sum = {0, };
2273         int cpu;
2274
2275         for_each_possible_cpu(cpu) {
2276                 const struct pcpu_tx_sc_stats *stats;
2277                 struct macsec_tx_sc_stats tmp;
2278                 unsigned int start;
2279
2280                 stats = per_cpu_ptr(pstats, cpu);
2281                 do {
2282                         start = u64_stats_fetch_begin_irq(&stats->syncp);
2283                         memcpy(&tmp, &stats->stats, sizeof(tmp));
2284                 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
2285
2286                 sum.OutPktsProtected   += tmp.OutPktsProtected;
2287                 sum.OutPktsEncrypted   += tmp.OutPktsEncrypted;
2288                 sum.OutOctetsProtected += tmp.OutOctetsProtected;
2289                 sum.OutOctetsEncrypted += tmp.OutOctetsEncrypted;
2290         }
2291
2292         if (nla_put_u64_64bit(skb, MACSEC_TXSC_STATS_ATTR_OUT_PKTS_PROTECTED,
2293                               sum.OutPktsProtected,
2294                               MACSEC_TXSC_STATS_ATTR_PAD) ||
2295             nla_put_u64_64bit(skb, MACSEC_TXSC_STATS_ATTR_OUT_PKTS_ENCRYPTED,
2296                               sum.OutPktsEncrypted,
2297                               MACSEC_TXSC_STATS_ATTR_PAD) ||
2298             nla_put_u64_64bit(skb, MACSEC_TXSC_STATS_ATTR_OUT_OCTETS_PROTECTED,
2299                               sum.OutOctetsProtected,
2300                               MACSEC_TXSC_STATS_ATTR_PAD) ||
2301             nla_put_u64_64bit(skb, MACSEC_TXSC_STATS_ATTR_OUT_OCTETS_ENCRYPTED,
2302                               sum.OutOctetsEncrypted,
2303                               MACSEC_TXSC_STATS_ATTR_PAD))
2304                 return -EMSGSIZE;
2305
2306         return 0;
2307 }
2308
2309 static int copy_secy_stats(struct sk_buff *skb,
2310                             struct pcpu_secy_stats __percpu *pstats)
2311 {
2312         struct macsec_dev_stats sum = {0, };
2313         int cpu;
2314
2315         for_each_possible_cpu(cpu) {
2316                 const struct pcpu_secy_stats *stats;
2317                 struct macsec_dev_stats tmp;
2318                 unsigned int start;
2319
2320                 stats = per_cpu_ptr(pstats, cpu);
2321                 do {
2322                         start = u64_stats_fetch_begin_irq(&stats->syncp);
2323                         memcpy(&tmp, &stats->stats, sizeof(tmp));
2324                 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
2325
2326                 sum.OutPktsUntagged  += tmp.OutPktsUntagged;
2327                 sum.InPktsUntagged   += tmp.InPktsUntagged;
2328                 sum.OutPktsTooLong   += tmp.OutPktsTooLong;
2329                 sum.InPktsNoTag      += tmp.InPktsNoTag;
2330                 sum.InPktsBadTag     += tmp.InPktsBadTag;
2331                 sum.InPktsUnknownSCI += tmp.InPktsUnknownSCI;
2332                 sum.InPktsNoSCI      += tmp.InPktsNoSCI;
2333                 sum.InPktsOverrun    += tmp.InPktsOverrun;
2334         }
2335
2336         if (nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_OUT_PKTS_UNTAGGED,
2337                               sum.OutPktsUntagged,
2338                               MACSEC_SECY_STATS_ATTR_PAD) ||
2339             nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_IN_PKTS_UNTAGGED,
2340                               sum.InPktsUntagged,
2341                               MACSEC_SECY_STATS_ATTR_PAD) ||
2342             nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_OUT_PKTS_TOO_LONG,
2343                               sum.OutPktsTooLong,
2344                               MACSEC_SECY_STATS_ATTR_PAD) ||
2345             nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_IN_PKTS_NO_TAG,
2346                               sum.InPktsNoTag,
2347                               MACSEC_SECY_STATS_ATTR_PAD) ||
2348             nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_IN_PKTS_BAD_TAG,
2349                               sum.InPktsBadTag,
2350                               MACSEC_SECY_STATS_ATTR_PAD) ||
2351             nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_IN_PKTS_UNKNOWN_SCI,
2352                               sum.InPktsUnknownSCI,
2353                               MACSEC_SECY_STATS_ATTR_PAD) ||
2354             nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_IN_PKTS_NO_SCI,
2355                               sum.InPktsNoSCI,
2356                               MACSEC_SECY_STATS_ATTR_PAD) ||
2357             nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_IN_PKTS_OVERRUN,
2358                               sum.InPktsOverrun,
2359                               MACSEC_SECY_STATS_ATTR_PAD))
2360                 return -EMSGSIZE;
2361
2362         return 0;
2363 }
2364
2365 static int nla_put_secy(struct macsec_secy *secy, struct sk_buff *skb)
2366 {
2367         struct macsec_tx_sc *tx_sc = &secy->tx_sc;
2368         struct nlattr *secy_nest = nla_nest_start(skb, MACSEC_ATTR_SECY);
2369
2370         if (!secy_nest)
2371                 return 1;
2372
2373         if (nla_put_sci(skb, MACSEC_SECY_ATTR_SCI, secy->sci,
2374                         MACSEC_SECY_ATTR_PAD) ||
2375             nla_put_u64_64bit(skb, MACSEC_SECY_ATTR_CIPHER_SUITE,
2376                               MACSEC_DEFAULT_CIPHER_ID,
2377                               MACSEC_SECY_ATTR_PAD) ||
2378             nla_put_u8(skb, MACSEC_SECY_ATTR_ICV_LEN, secy->icv_len) ||
2379             nla_put_u8(skb, MACSEC_SECY_ATTR_OPER, secy->operational) ||
2380             nla_put_u8(skb, MACSEC_SECY_ATTR_PROTECT, secy->protect_frames) ||
2381             nla_put_u8(skb, MACSEC_SECY_ATTR_REPLAY, secy->replay_protect) ||
2382             nla_put_u8(skb, MACSEC_SECY_ATTR_VALIDATE, secy->validate_frames) ||
2383             nla_put_u8(skb, MACSEC_SECY_ATTR_ENCRYPT, tx_sc->encrypt) ||
2384             nla_put_u8(skb, MACSEC_SECY_ATTR_INC_SCI, tx_sc->send_sci) ||
2385             nla_put_u8(skb, MACSEC_SECY_ATTR_ES, tx_sc->end_station) ||
2386             nla_put_u8(skb, MACSEC_SECY_ATTR_SCB, tx_sc->scb) ||
2387             nla_put_u8(skb, MACSEC_SECY_ATTR_ENCODING_SA, tx_sc->encoding_sa))
2388                 goto cancel;
2389
2390         if (secy->replay_protect) {
2391                 if (nla_put_u32(skb, MACSEC_SECY_ATTR_WINDOW, secy->replay_window))
2392                         goto cancel;
2393         }
2394
2395         nla_nest_end(skb, secy_nest);
2396         return 0;
2397
2398 cancel:
2399         nla_nest_cancel(skb, secy_nest);
2400         return 1;
2401 }
2402
2403 static int dump_secy(struct macsec_secy *secy, struct net_device *dev,
2404                      struct sk_buff *skb, struct netlink_callback *cb)
2405 {
2406         struct macsec_rx_sc *rx_sc;
2407         struct macsec_tx_sc *tx_sc = &secy->tx_sc;
2408         struct nlattr *txsa_list, *rxsc_list;
2409         int i, j;
2410         void *hdr;
2411         struct nlattr *attr;
2412
2413         hdr = genlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
2414                           &macsec_fam, NLM_F_MULTI, MACSEC_CMD_GET_TXSC);
2415         if (!hdr)
2416                 return -EMSGSIZE;
2417
2418         genl_dump_check_consistent(cb, hdr, &macsec_fam);
2419
2420         if (nla_put_u32(skb, MACSEC_ATTR_IFINDEX, dev->ifindex))
2421                 goto nla_put_failure;
2422
2423         if (nla_put_secy(secy, skb))
2424                 goto nla_put_failure;
2425
2426         attr = nla_nest_start(skb, MACSEC_ATTR_TXSC_STATS);
2427         if (!attr)
2428                 goto nla_put_failure;
2429         if (copy_tx_sc_stats(skb, tx_sc->stats)) {
2430                 nla_nest_cancel(skb, attr);
2431                 goto nla_put_failure;
2432         }
2433         nla_nest_end(skb, attr);
2434
2435         attr = nla_nest_start(skb, MACSEC_ATTR_SECY_STATS);
2436         if (!attr)
2437                 goto nla_put_failure;
2438         if (copy_secy_stats(skb, macsec_priv(dev)->stats)) {
2439                 nla_nest_cancel(skb, attr);
2440                 goto nla_put_failure;
2441         }
2442         nla_nest_end(skb, attr);
2443
2444         txsa_list = nla_nest_start(skb, MACSEC_ATTR_TXSA_LIST);
2445         if (!txsa_list)
2446                 goto nla_put_failure;
2447         for (i = 0, j = 1; i < MACSEC_NUM_AN; i++) {
2448                 struct macsec_tx_sa *tx_sa = rtnl_dereference(tx_sc->sa[i]);
2449                 struct nlattr *txsa_nest;
2450
2451                 if (!tx_sa)
2452                         continue;
2453
2454                 txsa_nest = nla_nest_start(skb, j++);
2455                 if (!txsa_nest) {
2456                         nla_nest_cancel(skb, txsa_list);
2457                         goto nla_put_failure;
2458                 }
2459
2460                 if (nla_put_u8(skb, MACSEC_SA_ATTR_AN, i) ||
2461                     nla_put_u32(skb, MACSEC_SA_ATTR_PN, tx_sa->next_pn) ||
2462                     nla_put(skb, MACSEC_SA_ATTR_KEYID, MACSEC_KEYID_LEN, tx_sa->key.id) ||
2463                     nla_put_u8(skb, MACSEC_SA_ATTR_ACTIVE, tx_sa->active)) {
2464                         nla_nest_cancel(skb, txsa_nest);
2465                         nla_nest_cancel(skb, txsa_list);
2466                         goto nla_put_failure;
2467                 }
2468
2469                 attr = nla_nest_start(skb, MACSEC_SA_ATTR_STATS);
2470                 if (!attr) {
2471                         nla_nest_cancel(skb, txsa_nest);
2472                         nla_nest_cancel(skb, txsa_list);
2473                         goto nla_put_failure;
2474                 }
2475                 if (copy_tx_sa_stats(skb, tx_sa->stats)) {
2476                         nla_nest_cancel(skb, attr);
2477                         nla_nest_cancel(skb, txsa_nest);
2478                         nla_nest_cancel(skb, txsa_list);
2479                         goto nla_put_failure;
2480                 }
2481                 nla_nest_end(skb, attr);
2482
2483                 nla_nest_end(skb, txsa_nest);
2484         }
2485         nla_nest_end(skb, txsa_list);
2486
2487         rxsc_list = nla_nest_start(skb, MACSEC_ATTR_RXSC_LIST);
2488         if (!rxsc_list)
2489                 goto nla_put_failure;
2490
2491         j = 1;
2492         for_each_rxsc_rtnl(secy, rx_sc) {
2493                 int k;
2494                 struct nlattr *rxsa_list;
2495                 struct nlattr *rxsc_nest = nla_nest_start(skb, j++);
2496
2497                 if (!rxsc_nest) {
2498                         nla_nest_cancel(skb, rxsc_list);
2499                         goto nla_put_failure;
2500                 }
2501
2502                 if (nla_put_u8(skb, MACSEC_RXSC_ATTR_ACTIVE, rx_sc->active) ||
2503                     nla_put_sci(skb, MACSEC_RXSC_ATTR_SCI, rx_sc->sci,
2504                                 MACSEC_RXSC_ATTR_PAD)) {
2505                         nla_nest_cancel(skb, rxsc_nest);
2506                         nla_nest_cancel(skb, rxsc_list);
2507                         goto nla_put_failure;
2508                 }
2509
2510                 attr = nla_nest_start(skb, MACSEC_RXSC_ATTR_STATS);
2511                 if (!attr) {
2512                         nla_nest_cancel(skb, rxsc_nest);
2513                         nla_nest_cancel(skb, rxsc_list);
2514                         goto nla_put_failure;
2515                 }
2516                 if (copy_rx_sc_stats(skb, rx_sc->stats)) {
2517                         nla_nest_cancel(skb, attr);
2518                         nla_nest_cancel(skb, rxsc_nest);
2519                         nla_nest_cancel(skb, rxsc_list);
2520                         goto nla_put_failure;
2521                 }
2522                 nla_nest_end(skb, attr);
2523
2524                 rxsa_list = nla_nest_start(skb, MACSEC_RXSC_ATTR_SA_LIST);
2525                 if (!rxsa_list) {
2526                         nla_nest_cancel(skb, rxsc_nest);
2527                         nla_nest_cancel(skb, rxsc_list);
2528                         goto nla_put_failure;
2529                 }
2530
2531                 for (i = 0, k = 1; i < MACSEC_NUM_AN; i++) {
2532                         struct macsec_rx_sa *rx_sa = rtnl_dereference(rx_sc->sa[i]);
2533                         struct nlattr *rxsa_nest;
2534
2535                         if (!rx_sa)
2536                                 continue;
2537
2538                         rxsa_nest = nla_nest_start(skb, k++);
2539                         if (!rxsa_nest) {
2540                                 nla_nest_cancel(skb, rxsa_list);
2541                                 nla_nest_cancel(skb, rxsc_nest);
2542                                 nla_nest_cancel(skb, rxsc_list);
2543                                 goto nla_put_failure;
2544                         }
2545
2546                         attr = nla_nest_start(skb, MACSEC_SA_ATTR_STATS);
2547                         if (!attr) {
2548                                 nla_nest_cancel(skb, rxsa_list);
2549                                 nla_nest_cancel(skb, rxsc_nest);
2550                                 nla_nest_cancel(skb, rxsc_list);
2551                                 goto nla_put_failure;
2552                         }
2553                         if (copy_rx_sa_stats(skb, rx_sa->stats)) {
2554                                 nla_nest_cancel(skb, attr);
2555                                 nla_nest_cancel(skb, rxsa_list);
2556                                 nla_nest_cancel(skb, rxsc_nest);
2557                                 nla_nest_cancel(skb, rxsc_list);
2558                                 goto nla_put_failure;
2559                         }
2560                         nla_nest_end(skb, attr);
2561
2562                         if (nla_put_u8(skb, MACSEC_SA_ATTR_AN, i) ||
2563                             nla_put_u32(skb, MACSEC_SA_ATTR_PN, rx_sa->next_pn) ||
2564                             nla_put(skb, MACSEC_SA_ATTR_KEYID, MACSEC_KEYID_LEN, rx_sa->key.id) ||
2565                             nla_put_u8(skb, MACSEC_SA_ATTR_ACTIVE, rx_sa->active)) {
2566                                 nla_nest_cancel(skb, rxsa_nest);
2567                                 nla_nest_cancel(skb, rxsc_nest);
2568                                 nla_nest_cancel(skb, rxsc_list);
2569                                 goto nla_put_failure;
2570                         }
2571                         nla_nest_end(skb, rxsa_nest);
2572                 }
2573
2574                 nla_nest_end(skb, rxsa_list);
2575                 nla_nest_end(skb, rxsc_nest);
2576         }
2577
2578         nla_nest_end(skb, rxsc_list);
2579
2580         genlmsg_end(skb, hdr);
2581
2582         return 0;
2583
2584 nla_put_failure:
2585         genlmsg_cancel(skb, hdr);
2586         return -EMSGSIZE;
2587 }
2588
2589 static int macsec_generation = 1; /* protected by RTNL */
2590
2591 static int macsec_dump_txsc(struct sk_buff *skb, struct netlink_callback *cb)
2592 {
2593         struct net *net = sock_net(skb->sk);
2594         struct net_device *dev;
2595         int dev_idx, d;
2596
2597         dev_idx = cb->args[0];
2598
2599         d = 0;
2600         rtnl_lock();
2601
2602         cb->seq = macsec_generation;
2603
2604         for_each_netdev(net, dev) {
2605                 struct macsec_secy *secy;
2606
2607                 if (d < dev_idx)
2608                         goto next;
2609
2610                 if (!netif_is_macsec(dev))
2611                         goto next;
2612
2613                 secy = &macsec_priv(dev)->secy;
2614                 if (dump_secy(secy, dev, skb, cb) < 0)
2615                         goto done;
2616 next:
2617                 d++;
2618         }
2619
2620 done:
2621         rtnl_unlock();
2622         cb->args[0] = d;
2623         return skb->len;
2624 }
2625
2626 static const struct genl_ops macsec_genl_ops[] = {
2627         {
2628                 .cmd = MACSEC_CMD_GET_TXSC,
2629                 .dumpit = macsec_dump_txsc,
2630                 .policy = macsec_genl_policy,
2631         },
2632         {
2633                 .cmd = MACSEC_CMD_ADD_RXSC,
2634                 .doit = macsec_add_rxsc,
2635                 .policy = macsec_genl_policy,
2636                 .flags = GENL_ADMIN_PERM,
2637         },
2638         {
2639                 .cmd = MACSEC_CMD_DEL_RXSC,
2640                 .doit = macsec_del_rxsc,
2641                 .policy = macsec_genl_policy,
2642                 .flags = GENL_ADMIN_PERM,
2643         },
2644         {
2645                 .cmd = MACSEC_CMD_UPD_RXSC,
2646                 .doit = macsec_upd_rxsc,
2647                 .policy = macsec_genl_policy,
2648                 .flags = GENL_ADMIN_PERM,
2649         },
2650         {
2651                 .cmd = MACSEC_CMD_ADD_TXSA,
2652                 .doit = macsec_add_txsa,
2653                 .policy = macsec_genl_policy,
2654                 .flags = GENL_ADMIN_PERM,
2655         },
2656         {
2657                 .cmd = MACSEC_CMD_DEL_TXSA,
2658                 .doit = macsec_del_txsa,
2659                 .policy = macsec_genl_policy,
2660                 .flags = GENL_ADMIN_PERM,
2661         },
2662         {
2663                 .cmd = MACSEC_CMD_UPD_TXSA,
2664                 .doit = macsec_upd_txsa,
2665                 .policy = macsec_genl_policy,
2666                 .flags = GENL_ADMIN_PERM,
2667         },
2668         {
2669                 .cmd = MACSEC_CMD_ADD_RXSA,
2670                 .doit = macsec_add_rxsa,
2671                 .policy = macsec_genl_policy,
2672                 .flags = GENL_ADMIN_PERM,
2673         },
2674         {
2675                 .cmd = MACSEC_CMD_DEL_RXSA,
2676                 .doit = macsec_del_rxsa,
2677                 .policy = macsec_genl_policy,
2678                 .flags = GENL_ADMIN_PERM,
2679         },
2680         {
2681                 .cmd = MACSEC_CMD_UPD_RXSA,
2682                 .doit = macsec_upd_rxsa,
2683                 .policy = macsec_genl_policy,
2684                 .flags = GENL_ADMIN_PERM,
2685         },
2686 };
2687
2688 static struct genl_family macsec_fam __ro_after_init = {
2689         .name           = MACSEC_GENL_NAME,
2690         .hdrsize        = 0,
2691         .version        = MACSEC_GENL_VERSION,
2692         .maxattr        = MACSEC_ATTR_MAX,
2693         .netnsok        = true,
2694         .module         = THIS_MODULE,
2695         .ops            = macsec_genl_ops,
2696         .n_ops          = ARRAY_SIZE(macsec_genl_ops),
2697 };
2698
2699 static netdev_tx_t macsec_start_xmit(struct sk_buff *skb,
2700                                      struct net_device *dev)
2701 {
2702         struct macsec_dev *macsec = netdev_priv(dev);
2703         struct macsec_secy *secy = &macsec->secy;
2704         struct pcpu_secy_stats *secy_stats;
2705         int ret, len;
2706
2707         /* 10.5 */
2708         if (!secy->protect_frames) {
2709                 secy_stats = this_cpu_ptr(macsec->stats);
2710                 u64_stats_update_begin(&secy_stats->syncp);
2711                 secy_stats->stats.OutPktsUntagged++;
2712                 u64_stats_update_end(&secy_stats->syncp);
2713                 skb->dev = macsec->real_dev;
2714                 len = skb->len;
2715                 ret = dev_queue_xmit(skb);
2716                 count_tx(dev, ret, len);
2717                 return ret;
2718         }
2719
2720         if (!secy->operational) {
2721                 kfree_skb(skb);
2722                 dev->stats.tx_dropped++;
2723                 return NETDEV_TX_OK;
2724         }
2725
2726         skb = macsec_encrypt(skb, dev);
2727         if (IS_ERR(skb)) {
2728                 if (PTR_ERR(skb) != -EINPROGRESS)
2729                         dev->stats.tx_dropped++;
2730                 return NETDEV_TX_OK;
2731         }
2732
2733         macsec_count_tx(skb, &macsec->secy.tx_sc, macsec_skb_cb(skb)->tx_sa);
2734
2735         macsec_encrypt_finish(skb, dev);
2736         len = skb->len;
2737         ret = dev_queue_xmit(skb);
2738         count_tx(dev, ret, len);
2739         return ret;
2740 }
2741
2742 #define MACSEC_FEATURES \
2743         (NETIF_F_SG | NETIF_F_HIGHDMA | NETIF_F_FRAGLIST)
2744 static struct lock_class_key macsec_netdev_addr_lock_key;
2745
2746 static int macsec_dev_init(struct net_device *dev)
2747 {
2748         struct macsec_dev *macsec = macsec_priv(dev);
2749         struct net_device *real_dev = macsec->real_dev;
2750         int err;
2751
2752         dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
2753         if (!dev->tstats)
2754                 return -ENOMEM;
2755
2756         err = gro_cells_init(&macsec->gro_cells, dev);
2757         if (err) {
2758                 free_percpu(dev->tstats);
2759                 return err;
2760         }
2761
2762         dev->features = real_dev->features & MACSEC_FEATURES;
2763         dev->features |= NETIF_F_LLTX | NETIF_F_GSO_SOFTWARE;
2764
2765         dev->needed_headroom = real_dev->needed_headroom +
2766                                MACSEC_NEEDED_HEADROOM;
2767         dev->needed_tailroom = real_dev->needed_tailroom +
2768                                MACSEC_NEEDED_TAILROOM;
2769
2770         if (is_zero_ether_addr(dev->dev_addr))
2771                 eth_hw_addr_inherit(dev, real_dev);
2772         if (is_zero_ether_addr(dev->broadcast))
2773                 memcpy(dev->broadcast, real_dev->broadcast, dev->addr_len);
2774
2775         return 0;
2776 }
2777
2778 static void macsec_dev_uninit(struct net_device *dev)
2779 {
2780         struct macsec_dev *macsec = macsec_priv(dev);
2781
2782         gro_cells_destroy(&macsec->gro_cells);
2783         free_percpu(dev->tstats);
2784 }
2785
2786 static netdev_features_t macsec_fix_features(struct net_device *dev,
2787                                              netdev_features_t features)
2788 {
2789         struct macsec_dev *macsec = macsec_priv(dev);
2790         struct net_device *real_dev = macsec->real_dev;
2791
2792         features &= (real_dev->features & MACSEC_FEATURES) |
2793                     NETIF_F_GSO_SOFTWARE | NETIF_F_SOFT_FEATURES;
2794         features |= NETIF_F_LLTX;
2795
2796         return features;
2797 }
2798
2799 static int macsec_dev_open(struct net_device *dev)
2800 {
2801         struct macsec_dev *macsec = macsec_priv(dev);
2802         struct net_device *real_dev = macsec->real_dev;
2803         int err;
2804
2805         err = dev_uc_add(real_dev, dev->dev_addr);
2806         if (err < 0)
2807                 return err;
2808
2809         if (dev->flags & IFF_ALLMULTI) {
2810                 err = dev_set_allmulti(real_dev, 1);
2811                 if (err < 0)
2812                         goto del_unicast;
2813         }
2814
2815         if (dev->flags & IFF_PROMISC) {
2816                 err = dev_set_promiscuity(real_dev, 1);
2817                 if (err < 0)
2818                         goto clear_allmulti;
2819         }
2820
2821         if (netif_carrier_ok(real_dev))
2822                 netif_carrier_on(dev);
2823
2824         return 0;
2825 clear_allmulti:
2826         if (dev->flags & IFF_ALLMULTI)
2827                 dev_set_allmulti(real_dev, -1);
2828 del_unicast:
2829         dev_uc_del(real_dev, dev->dev_addr);
2830         netif_carrier_off(dev);
2831         return err;
2832 }
2833
2834 static int macsec_dev_stop(struct net_device *dev)
2835 {
2836         struct macsec_dev *macsec = macsec_priv(dev);
2837         struct net_device *real_dev = macsec->real_dev;
2838
2839         netif_carrier_off(dev);
2840
2841         dev_mc_unsync(real_dev, dev);
2842         dev_uc_unsync(real_dev, dev);
2843
2844         if (dev->flags & IFF_ALLMULTI)
2845                 dev_set_allmulti(real_dev, -1);
2846
2847         if (dev->flags & IFF_PROMISC)
2848                 dev_set_promiscuity(real_dev, -1);
2849
2850         dev_uc_del(real_dev, dev->dev_addr);
2851
2852         return 0;
2853 }
2854
2855 static void macsec_dev_change_rx_flags(struct net_device *dev, int change)
2856 {
2857         struct net_device *real_dev = macsec_priv(dev)->real_dev;
2858
2859         if (!(dev->flags & IFF_UP))
2860                 return;
2861
2862         if (change & IFF_ALLMULTI)
2863                 dev_set_allmulti(real_dev, dev->flags & IFF_ALLMULTI ? 1 : -1);
2864
2865         if (change & IFF_PROMISC)
2866                 dev_set_promiscuity(real_dev,
2867                                     dev->flags & IFF_PROMISC ? 1 : -1);
2868 }
2869
2870 static void macsec_dev_set_rx_mode(struct net_device *dev)
2871 {
2872         struct net_device *real_dev = macsec_priv(dev)->real_dev;
2873
2874         dev_mc_sync(real_dev, dev);
2875         dev_uc_sync(real_dev, dev);
2876 }
2877
2878 static sci_t dev_to_sci(struct net_device *dev, __be16 port)
2879 {
2880         return make_sci(dev->dev_addr, port);
2881 }
2882
2883 static int macsec_set_mac_address(struct net_device *dev, void *p)
2884 {
2885         struct macsec_dev *macsec = macsec_priv(dev);
2886         struct net_device *real_dev = macsec->real_dev;
2887         struct sockaddr *addr = p;
2888         int err;
2889
2890         if (!is_valid_ether_addr(addr->sa_data))
2891                 return -EADDRNOTAVAIL;
2892
2893         if (!(dev->flags & IFF_UP))
2894                 goto out;
2895
2896         err = dev_uc_add(real_dev, addr->sa_data);
2897         if (err < 0)
2898                 return err;
2899
2900         dev_uc_del(real_dev, dev->dev_addr);
2901
2902 out:
2903         ether_addr_copy(dev->dev_addr, addr->sa_data);
2904         macsec->secy.sci = dev_to_sci(dev, MACSEC_PORT_ES);
2905         return 0;
2906 }
2907
2908 static int macsec_change_mtu(struct net_device *dev, int new_mtu)
2909 {
2910         struct macsec_dev *macsec = macsec_priv(dev);
2911         unsigned int extra = macsec->secy.icv_len + macsec_extra_len(true);
2912
2913         if (macsec->real_dev->mtu - extra < new_mtu)
2914                 return -ERANGE;
2915
2916         dev->mtu = new_mtu;
2917
2918         return 0;
2919 }
2920
2921 static void macsec_get_stats64(struct net_device *dev,
2922                                struct rtnl_link_stats64 *s)
2923 {
2924         int cpu;
2925
2926         if (!dev->tstats)
2927                 return;
2928
2929         for_each_possible_cpu(cpu) {
2930                 struct pcpu_sw_netstats *stats;
2931                 struct pcpu_sw_netstats tmp;
2932                 int start;
2933
2934                 stats = per_cpu_ptr(dev->tstats, cpu);
2935                 do {
2936                         start = u64_stats_fetch_begin_irq(&stats->syncp);
2937                         tmp.rx_packets = stats->rx_packets;
2938                         tmp.rx_bytes   = stats->rx_bytes;
2939                         tmp.tx_packets = stats->tx_packets;
2940                         tmp.tx_bytes   = stats->tx_bytes;
2941                 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
2942
2943                 s->rx_packets += tmp.rx_packets;
2944                 s->rx_bytes   += tmp.rx_bytes;
2945                 s->tx_packets += tmp.tx_packets;
2946                 s->tx_bytes   += tmp.tx_bytes;
2947         }
2948
2949         s->rx_dropped = dev->stats.rx_dropped;
2950         s->tx_dropped = dev->stats.tx_dropped;
2951 }
2952
2953 static int macsec_get_iflink(const struct net_device *dev)
2954 {
2955         return macsec_priv(dev)->real_dev->ifindex;
2956 }
2957
2958
2959 static int macsec_get_nest_level(struct net_device *dev)
2960 {
2961         return macsec_priv(dev)->nest_level;
2962 }
2963
2964
2965 static const struct net_device_ops macsec_netdev_ops = {
2966         .ndo_init               = macsec_dev_init,
2967         .ndo_uninit             = macsec_dev_uninit,
2968         .ndo_open               = macsec_dev_open,
2969         .ndo_stop               = macsec_dev_stop,
2970         .ndo_fix_features       = macsec_fix_features,
2971         .ndo_change_mtu         = macsec_change_mtu,
2972         .ndo_set_rx_mode        = macsec_dev_set_rx_mode,
2973         .ndo_change_rx_flags    = macsec_dev_change_rx_flags,
2974         .ndo_set_mac_address    = macsec_set_mac_address,
2975         .ndo_start_xmit         = macsec_start_xmit,
2976         .ndo_get_stats64        = macsec_get_stats64,
2977         .ndo_get_iflink         = macsec_get_iflink,
2978         .ndo_get_lock_subclass  = macsec_get_nest_level,
2979 };
2980
2981 static const struct device_type macsec_type = {
2982         .name = "macsec",
2983 };
2984
2985 static const struct nla_policy macsec_rtnl_policy[IFLA_MACSEC_MAX + 1] = {
2986         [IFLA_MACSEC_SCI] = { .type = NLA_U64 },
2987         [IFLA_MACSEC_PORT] = { .type = NLA_U16 },
2988         [IFLA_MACSEC_ICV_LEN] = { .type = NLA_U8 },
2989         [IFLA_MACSEC_CIPHER_SUITE] = { .type = NLA_U64 },
2990         [IFLA_MACSEC_WINDOW] = { .type = NLA_U32 },
2991         [IFLA_MACSEC_ENCODING_SA] = { .type = NLA_U8 },
2992         [IFLA_MACSEC_ENCRYPT] = { .type = NLA_U8 },
2993         [IFLA_MACSEC_PROTECT] = { .type = NLA_U8 },
2994         [IFLA_MACSEC_INC_SCI] = { .type = NLA_U8 },
2995         [IFLA_MACSEC_ES] = { .type = NLA_U8 },
2996         [IFLA_MACSEC_SCB] = { .type = NLA_U8 },
2997         [IFLA_MACSEC_REPLAY_PROTECT] = { .type = NLA_U8 },
2998         [IFLA_MACSEC_VALIDATION] = { .type = NLA_U8 },
2999 };
3000
3001 static void macsec_free_netdev(struct net_device *dev)
3002 {
3003         struct macsec_dev *macsec = macsec_priv(dev);
3004
3005         free_percpu(macsec->stats);
3006         free_percpu(macsec->secy.tx_sc.stats);
3007
3008 }
3009
3010 static void macsec_setup(struct net_device *dev)
3011 {
3012         ether_setup(dev);
3013         dev->min_mtu = 0;
3014         dev->max_mtu = ETH_MAX_MTU;
3015         dev->priv_flags |= IFF_NO_QUEUE;
3016         dev->netdev_ops = &macsec_netdev_ops;
3017         dev->needs_free_netdev = true;
3018         dev->priv_destructor = macsec_free_netdev;
3019         SET_NETDEV_DEVTYPE(dev, &macsec_type);
3020
3021         eth_zero_addr(dev->broadcast);
3022 }
3023
3024 static void macsec_changelink_common(struct net_device *dev,
3025                                      struct nlattr *data[])
3026 {
3027         struct macsec_secy *secy;
3028         struct macsec_tx_sc *tx_sc;
3029
3030         secy = &macsec_priv(dev)->secy;
3031         tx_sc = &secy->tx_sc;
3032
3033         if (data[IFLA_MACSEC_ENCODING_SA]) {
3034                 struct macsec_tx_sa *tx_sa;
3035
3036                 tx_sc->encoding_sa = nla_get_u8(data[IFLA_MACSEC_ENCODING_SA]);
3037                 tx_sa = rtnl_dereference(tx_sc->sa[tx_sc->encoding_sa]);
3038
3039                 secy->operational = tx_sa && tx_sa->active;
3040         }
3041
3042         if (data[IFLA_MACSEC_WINDOW])
3043                 secy->replay_window = nla_get_u32(data[IFLA_MACSEC_WINDOW]);
3044
3045         if (data[IFLA_MACSEC_ENCRYPT])
3046                 tx_sc->encrypt = !!nla_get_u8(data[IFLA_MACSEC_ENCRYPT]);
3047
3048         if (data[IFLA_MACSEC_PROTECT])
3049                 secy->protect_frames = !!nla_get_u8(data[IFLA_MACSEC_PROTECT]);
3050
3051         if (data[IFLA_MACSEC_INC_SCI])
3052                 tx_sc->send_sci = !!nla_get_u8(data[IFLA_MACSEC_INC_SCI]);
3053
3054         if (data[IFLA_MACSEC_ES])
3055                 tx_sc->end_station = !!nla_get_u8(data[IFLA_MACSEC_ES]);
3056
3057         if (data[IFLA_MACSEC_SCB])
3058                 tx_sc->scb = !!nla_get_u8(data[IFLA_MACSEC_SCB]);
3059
3060         if (data[IFLA_MACSEC_REPLAY_PROTECT])
3061                 secy->replay_protect = !!nla_get_u8(data[IFLA_MACSEC_REPLAY_PROTECT]);
3062
3063         if (data[IFLA_MACSEC_VALIDATION])
3064                 secy->validate_frames = nla_get_u8(data[IFLA_MACSEC_VALIDATION]);
3065 }
3066
3067 static int macsec_changelink(struct net_device *dev, struct nlattr *tb[],
3068                              struct nlattr *data[],
3069                              struct netlink_ext_ack *extack)
3070 {
3071         if (!data)
3072                 return 0;
3073
3074         if (data[IFLA_MACSEC_CIPHER_SUITE] ||
3075             data[IFLA_MACSEC_ICV_LEN] ||
3076             data[IFLA_MACSEC_SCI] ||
3077             data[IFLA_MACSEC_PORT])
3078                 return -EINVAL;
3079
3080         macsec_changelink_common(dev, data);
3081
3082         return 0;
3083 }
3084
3085 static void macsec_del_dev(struct macsec_dev *macsec)
3086 {
3087         int i;
3088
3089         while (macsec->secy.rx_sc) {
3090                 struct macsec_rx_sc *rx_sc = rtnl_dereference(macsec->secy.rx_sc);
3091
3092                 rcu_assign_pointer(macsec->secy.rx_sc, rx_sc->next);
3093                 free_rx_sc(rx_sc);
3094         }
3095
3096         for (i = 0; i < MACSEC_NUM_AN; i++) {
3097                 struct macsec_tx_sa *sa = rtnl_dereference(macsec->secy.tx_sc.sa[i]);
3098
3099                 if (sa) {
3100                         RCU_INIT_POINTER(macsec->secy.tx_sc.sa[i], NULL);
3101                         clear_tx_sa(sa);
3102                 }
3103         }
3104 }
3105
3106 static void macsec_common_dellink(struct net_device *dev, struct list_head *head)
3107 {
3108         struct macsec_dev *macsec = macsec_priv(dev);
3109         struct net_device *real_dev = macsec->real_dev;
3110
3111         unregister_netdevice_queue(dev, head);
3112         list_del_rcu(&macsec->secys);
3113         macsec_del_dev(macsec);
3114         netdev_upper_dev_unlink(real_dev, dev);
3115
3116         macsec_generation++;
3117 }
3118
3119 static void macsec_dellink(struct net_device *dev, struct list_head *head)
3120 {
3121         struct macsec_dev *macsec = macsec_priv(dev);
3122         struct net_device *real_dev = macsec->real_dev;
3123         struct macsec_rxh_data *rxd = macsec_data_rtnl(real_dev);
3124
3125         macsec_common_dellink(dev, head);
3126
3127         if (list_empty(&rxd->secys)) {
3128                 netdev_rx_handler_unregister(real_dev);
3129                 kfree(rxd);
3130         }
3131 }
3132
3133 static int register_macsec_dev(struct net_device *real_dev,
3134                                struct net_device *dev)
3135 {
3136         struct macsec_dev *macsec = macsec_priv(dev);
3137         struct macsec_rxh_data *rxd = macsec_data_rtnl(real_dev);
3138
3139         if (!rxd) {
3140                 int err;
3141
3142                 rxd = kmalloc(sizeof(*rxd), GFP_KERNEL);
3143                 if (!rxd)
3144                         return -ENOMEM;
3145
3146                 INIT_LIST_HEAD(&rxd->secys);
3147
3148                 err = netdev_rx_handler_register(real_dev, macsec_handle_frame,
3149                                                  rxd);
3150                 if (err < 0) {
3151                         kfree(rxd);
3152                         return err;
3153                 }
3154         }
3155
3156         list_add_tail_rcu(&macsec->secys, &rxd->secys);
3157         return 0;
3158 }
3159
3160 static bool sci_exists(struct net_device *dev, sci_t sci)
3161 {
3162         struct macsec_rxh_data *rxd = macsec_data_rtnl(dev);
3163         struct macsec_dev *macsec;
3164
3165         list_for_each_entry(macsec, &rxd->secys, secys) {
3166                 if (macsec->secy.sci == sci)
3167                         return true;
3168         }
3169
3170         return false;
3171 }
3172
3173 static int macsec_add_dev(struct net_device *dev, sci_t sci, u8 icv_len)
3174 {
3175         struct macsec_dev *macsec = macsec_priv(dev);
3176         struct macsec_secy *secy = &macsec->secy;
3177
3178         macsec->stats = netdev_alloc_pcpu_stats(struct pcpu_secy_stats);
3179         if (!macsec->stats)
3180                 return -ENOMEM;
3181
3182         secy->tx_sc.stats = netdev_alloc_pcpu_stats(struct pcpu_tx_sc_stats);
3183         if (!secy->tx_sc.stats) {
3184                 free_percpu(macsec->stats);
3185                 return -ENOMEM;
3186         }
3187
3188         if (sci == MACSEC_UNDEF_SCI)
3189                 sci = dev_to_sci(dev, MACSEC_PORT_ES);
3190
3191         secy->netdev = dev;
3192         secy->operational = true;
3193         secy->key_len = DEFAULT_SAK_LEN;
3194         secy->icv_len = icv_len;
3195         secy->validate_frames = MACSEC_VALIDATE_DEFAULT;
3196         secy->protect_frames = true;
3197         secy->replay_protect = false;
3198
3199         secy->sci = sci;
3200         secy->tx_sc.active = true;
3201         secy->tx_sc.encoding_sa = DEFAULT_ENCODING_SA;
3202         secy->tx_sc.encrypt = DEFAULT_ENCRYPT;
3203         secy->tx_sc.send_sci = DEFAULT_SEND_SCI;
3204         secy->tx_sc.end_station = false;
3205         secy->tx_sc.scb = false;
3206
3207         return 0;
3208 }
3209
3210 static int macsec_newlink(struct net *net, struct net_device *dev,
3211                           struct nlattr *tb[], struct nlattr *data[],
3212                           struct netlink_ext_ack *extack)
3213 {
3214         struct macsec_dev *macsec = macsec_priv(dev);
3215         rx_handler_func_t *rx_handler;
3216         u8 icv_len = DEFAULT_ICV_LEN;
3217         struct net_device *real_dev;
3218         int err, mtu;
3219         sci_t sci;
3220
3221         if (!tb[IFLA_LINK])
3222                 return -EINVAL;
3223         real_dev = __dev_get_by_index(net, nla_get_u32(tb[IFLA_LINK]));
3224         if (!real_dev)
3225                 return -ENODEV;
3226         if (real_dev->type != ARPHRD_ETHER)
3227                 return -EINVAL;
3228
3229         dev->priv_flags |= IFF_MACSEC;
3230
3231         macsec->real_dev = real_dev;
3232
3233         /* send_sci must be set to true when transmit sci explicitly is set */
3234         if ((data && data[IFLA_MACSEC_SCI]) &&
3235             (data && data[IFLA_MACSEC_INC_SCI])) {
3236                 u8 send_sci = !!nla_get_u8(data[IFLA_MACSEC_INC_SCI]);
3237
3238                 if (!send_sci)
3239                         return -EINVAL;
3240         }
3241
3242         if (data && data[IFLA_MACSEC_ICV_LEN])
3243                 icv_len = nla_get_u8(data[IFLA_MACSEC_ICV_LEN]);
3244         mtu = real_dev->mtu - icv_len - macsec_extra_len(true);
3245         if (mtu < 0)
3246                 dev->mtu = 0;
3247         else
3248                 dev->mtu = mtu;
3249
3250         rx_handler = rtnl_dereference(real_dev->rx_handler);
3251         if (rx_handler && rx_handler != macsec_handle_frame)
3252                 return -EBUSY;
3253
3254         err = register_netdevice(dev);
3255         if (err < 0)
3256                 return err;
3257
3258         macsec->nest_level = dev_get_nest_level(real_dev) + 1;
3259         netdev_lockdep_set_classes(dev);
3260         lockdep_set_class_and_subclass(&dev->addr_list_lock,
3261                                        &macsec_netdev_addr_lock_key,
3262                                        macsec_get_nest_level(dev));
3263
3264         err = netdev_upper_dev_link(real_dev, dev);
3265         if (err < 0)
3266                 goto unregister;
3267
3268         /* need to be already registered so that ->init has run and
3269          * the MAC addr is set
3270          */
3271         if (data && data[IFLA_MACSEC_SCI])
3272                 sci = nla_get_sci(data[IFLA_MACSEC_SCI]);
3273         else if (data && data[IFLA_MACSEC_PORT])
3274                 sci = dev_to_sci(dev, nla_get_be16(data[IFLA_MACSEC_PORT]));
3275         else
3276                 sci = dev_to_sci(dev, MACSEC_PORT_ES);
3277
3278         if (rx_handler && sci_exists(real_dev, sci)) {
3279                 err = -EBUSY;
3280                 goto unlink;
3281         }
3282
3283         err = macsec_add_dev(dev, sci, icv_len);
3284         if (err)
3285                 goto unlink;
3286
3287         if (data)
3288                 macsec_changelink_common(dev, data);
3289
3290         err = register_macsec_dev(real_dev, dev);
3291         if (err < 0)
3292                 goto del_dev;
3293
3294         netif_stacked_transfer_operstate(real_dev, dev);
3295         linkwatch_fire_event(dev);
3296
3297         macsec_generation++;
3298
3299         return 0;
3300
3301 del_dev:
3302         macsec_del_dev(macsec);
3303 unlink:
3304         netdev_upper_dev_unlink(real_dev, dev);
3305 unregister:
3306         unregister_netdevice(dev);
3307         return err;
3308 }
3309
3310 static int macsec_validate_attr(struct nlattr *tb[], struct nlattr *data[],
3311                                 struct netlink_ext_ack *extack)
3312 {
3313         u64 csid = MACSEC_DEFAULT_CIPHER_ID;
3314         u8 icv_len = DEFAULT_ICV_LEN;
3315         int flag;
3316         bool es, scb, sci;
3317
3318         if (!data)
3319                 return 0;
3320
3321         if (data[IFLA_MACSEC_CIPHER_SUITE])
3322                 csid = nla_get_u64(data[IFLA_MACSEC_CIPHER_SUITE]);
3323
3324         if (data[IFLA_MACSEC_ICV_LEN]) {
3325                 icv_len = nla_get_u8(data[IFLA_MACSEC_ICV_LEN]);
3326                 if (icv_len != DEFAULT_ICV_LEN) {
3327                         char dummy_key[DEFAULT_SAK_LEN] = { 0 };
3328                         struct crypto_aead *dummy_tfm;
3329
3330                         dummy_tfm = macsec_alloc_tfm(dummy_key,
3331                                                      DEFAULT_SAK_LEN,
3332                                                      icv_len);
3333                         if (IS_ERR(dummy_tfm))
3334                                 return PTR_ERR(dummy_tfm);
3335                         crypto_free_aead(dummy_tfm);
3336                 }
3337         }
3338
3339         switch (csid) {
3340         case MACSEC_DEFAULT_CIPHER_ID:
3341         case MACSEC_DEFAULT_CIPHER_ALT:
3342                 if (icv_len < MACSEC_MIN_ICV_LEN ||
3343                     icv_len > MACSEC_STD_ICV_LEN)
3344                         return -EINVAL;
3345                 break;
3346         default:
3347                 return -EINVAL;
3348         }
3349
3350         if (data[IFLA_MACSEC_ENCODING_SA]) {
3351                 if (nla_get_u8(data[IFLA_MACSEC_ENCODING_SA]) >= MACSEC_NUM_AN)
3352                         return -EINVAL;
3353         }
3354
3355         for (flag = IFLA_MACSEC_ENCODING_SA + 1;
3356              flag < IFLA_MACSEC_VALIDATION;
3357              flag++) {
3358                 if (data[flag]) {
3359                         if (nla_get_u8(data[flag]) > 1)
3360                                 return -EINVAL;
3361                 }
3362         }
3363
3364         es  = data[IFLA_MACSEC_ES] ? nla_get_u8(data[IFLA_MACSEC_ES]) : false;
3365         sci = data[IFLA_MACSEC_INC_SCI] ? nla_get_u8(data[IFLA_MACSEC_INC_SCI]) : false;
3366         scb = data[IFLA_MACSEC_SCB] ? nla_get_u8(data[IFLA_MACSEC_SCB]) : false;
3367
3368         if ((sci && (scb || es)) || (scb && es))
3369                 return -EINVAL;
3370
3371         if (data[IFLA_MACSEC_VALIDATION] &&
3372             nla_get_u8(data[IFLA_MACSEC_VALIDATION]) > MACSEC_VALIDATE_MAX)
3373                 return -EINVAL;
3374
3375         if ((data[IFLA_MACSEC_REPLAY_PROTECT] &&
3376              nla_get_u8(data[IFLA_MACSEC_REPLAY_PROTECT])) &&
3377             !data[IFLA_MACSEC_WINDOW])
3378                 return -EINVAL;
3379
3380         return 0;
3381 }
3382
3383 static struct net *macsec_get_link_net(const struct net_device *dev)
3384 {
3385         return dev_net(macsec_priv(dev)->real_dev);
3386 }
3387
3388 static size_t macsec_get_size(const struct net_device *dev)
3389 {
3390         return  nla_total_size_64bit(8) + /* IFLA_MACSEC_SCI */
3391                 nla_total_size(1) + /* IFLA_MACSEC_ICV_LEN */
3392                 nla_total_size_64bit(8) + /* IFLA_MACSEC_CIPHER_SUITE */
3393                 nla_total_size(4) + /* IFLA_MACSEC_WINDOW */
3394                 nla_total_size(1) + /* IFLA_MACSEC_ENCODING_SA */
3395                 nla_total_size(1) + /* IFLA_MACSEC_ENCRYPT */
3396                 nla_total_size(1) + /* IFLA_MACSEC_PROTECT */
3397                 nla_total_size(1) + /* IFLA_MACSEC_INC_SCI */
3398                 nla_total_size(1) + /* IFLA_MACSEC_ES */
3399                 nla_total_size(1) + /* IFLA_MACSEC_SCB */
3400                 nla_total_size(1) + /* IFLA_MACSEC_REPLAY_PROTECT */
3401                 nla_total_size(1) + /* IFLA_MACSEC_VALIDATION */
3402                 0;
3403 }
3404
3405 static int macsec_fill_info(struct sk_buff *skb,
3406                             const struct net_device *dev)
3407 {
3408         struct macsec_secy *secy = &macsec_priv(dev)->secy;
3409         struct macsec_tx_sc *tx_sc = &secy->tx_sc;
3410
3411         if (nla_put_sci(skb, IFLA_MACSEC_SCI, secy->sci,
3412                         IFLA_MACSEC_PAD) ||
3413             nla_put_u8(skb, IFLA_MACSEC_ICV_LEN, secy->icv_len) ||
3414             nla_put_u64_64bit(skb, IFLA_MACSEC_CIPHER_SUITE,
3415                               MACSEC_DEFAULT_CIPHER_ID, IFLA_MACSEC_PAD) ||
3416             nla_put_u8(skb, IFLA_MACSEC_ENCODING_SA, tx_sc->encoding_sa) ||
3417             nla_put_u8(skb, IFLA_MACSEC_ENCRYPT, tx_sc->encrypt) ||
3418             nla_put_u8(skb, IFLA_MACSEC_PROTECT, secy->protect_frames) ||
3419             nla_put_u8(skb, IFLA_MACSEC_INC_SCI, tx_sc->send_sci) ||
3420             nla_put_u8(skb, IFLA_MACSEC_ES, tx_sc->end_station) ||
3421             nla_put_u8(skb, IFLA_MACSEC_SCB, tx_sc->scb) ||
3422             nla_put_u8(skb, IFLA_MACSEC_REPLAY_PROTECT, secy->replay_protect) ||
3423             nla_put_u8(skb, IFLA_MACSEC_VALIDATION, secy->validate_frames) ||
3424             0)
3425                 goto nla_put_failure;
3426
3427         if (secy->replay_protect) {
3428                 if (nla_put_u32(skb, IFLA_MACSEC_WINDOW, secy->replay_window))
3429                         goto nla_put_failure;
3430         }
3431
3432         return 0;
3433
3434 nla_put_failure:
3435         return -EMSGSIZE;
3436 }
3437
3438 static struct rtnl_link_ops macsec_link_ops __read_mostly = {
3439         .kind           = "macsec",
3440         .priv_size      = sizeof(struct macsec_dev),
3441         .maxtype        = IFLA_MACSEC_MAX,
3442         .policy         = macsec_rtnl_policy,
3443         .setup          = macsec_setup,
3444         .validate       = macsec_validate_attr,
3445         .newlink        = macsec_newlink,
3446         .changelink     = macsec_changelink,
3447         .dellink        = macsec_dellink,
3448         .get_size       = macsec_get_size,
3449         .fill_info      = macsec_fill_info,
3450         .get_link_net   = macsec_get_link_net,
3451 };
3452
3453 static bool is_macsec_master(struct net_device *dev)
3454 {
3455         return rcu_access_pointer(dev->rx_handler) == macsec_handle_frame;
3456 }
3457
3458 static int macsec_notify(struct notifier_block *this, unsigned long event,
3459                          void *ptr)
3460 {
3461         struct net_device *real_dev = netdev_notifier_info_to_dev(ptr);
3462         LIST_HEAD(head);
3463
3464         if (!is_macsec_master(real_dev))
3465                 return NOTIFY_DONE;
3466
3467         switch (event) {
3468         case NETDEV_DOWN:
3469         case NETDEV_UP:
3470         case NETDEV_CHANGE: {
3471                 struct macsec_dev *m, *n;
3472                 struct macsec_rxh_data *rxd;
3473
3474                 rxd = macsec_data_rtnl(real_dev);
3475                 list_for_each_entry_safe(m, n, &rxd->secys, secys) {
3476                         struct net_device *dev = m->secy.netdev;
3477
3478                         netif_stacked_transfer_operstate(real_dev, dev);
3479                 }
3480                 break;
3481         }
3482         case NETDEV_UNREGISTER: {
3483                 struct macsec_dev *m, *n;
3484                 struct macsec_rxh_data *rxd;
3485
3486                 rxd = macsec_data_rtnl(real_dev);
3487                 list_for_each_entry_safe(m, n, &rxd->secys, secys) {
3488                         macsec_common_dellink(m->secy.netdev, &head);
3489                 }
3490
3491                 netdev_rx_handler_unregister(real_dev);
3492                 kfree(rxd);
3493
3494                 unregister_netdevice_many(&head);
3495                 break;
3496         }
3497         case NETDEV_CHANGEMTU: {
3498                 struct macsec_dev *m;
3499                 struct macsec_rxh_data *rxd;
3500
3501                 rxd = macsec_data_rtnl(real_dev);
3502                 list_for_each_entry(m, &rxd->secys, secys) {
3503                         struct net_device *dev = m->secy.netdev;
3504                         unsigned int mtu = real_dev->mtu - (m->secy.icv_len +
3505                                                             macsec_extra_len(true));
3506
3507                         if (dev->mtu > mtu)
3508                                 dev_set_mtu(dev, mtu);
3509                 }
3510         }
3511         }
3512
3513         return NOTIFY_OK;
3514 }
3515
3516 static struct notifier_block macsec_notifier = {
3517         .notifier_call = macsec_notify,
3518 };
3519
3520 static int __init macsec_init(void)
3521 {
3522         int err;
3523
3524         pr_info("MACsec IEEE 802.1AE\n");
3525         err = register_netdevice_notifier(&macsec_notifier);
3526         if (err)
3527                 return err;
3528
3529         err = rtnl_link_register(&macsec_link_ops);
3530         if (err)
3531                 goto notifier;
3532
3533         err = genl_register_family(&macsec_fam);
3534         if (err)
3535                 goto rtnl;
3536
3537         return 0;
3538
3539 rtnl:
3540         rtnl_link_unregister(&macsec_link_ops);
3541 notifier:
3542         unregister_netdevice_notifier(&macsec_notifier);
3543         return err;
3544 }
3545
3546 static void __exit macsec_exit(void)
3547 {
3548         genl_unregister_family(&macsec_fam);
3549         rtnl_link_unregister(&macsec_link_ops);
3550         unregister_netdevice_notifier(&macsec_notifier);
3551         rcu_barrier();
3552 }
3553
3554 module_init(macsec_init);
3555 module_exit(macsec_exit);
3556
3557 MODULE_ALIAS_RTNL_LINK("macsec");
3558 MODULE_ALIAS_GENL_FAMILY("macsec");
3559
3560 MODULE_DESCRIPTION("MACsec IEEE 802.1AE");
3561 MODULE_LICENSE("GPL v2");