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