blob: da10104be16cfa9596b4c48ecceabccd43664c73 [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 Dubrocae2003872016-08-12 16:10:32 +0200273 unsigned int nest_level;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100274};
275
276/**
277 * struct macsec_rxh_data - rx_handler private argument
278 * @secys: linked list of SecY's on this underlying device
279 */
280struct macsec_rxh_data {
281 struct list_head secys;
282};
283
284static struct macsec_dev *macsec_priv(const struct net_device *dev)
285{
286 return (struct macsec_dev *)netdev_priv(dev);
287}
288
289static struct macsec_rxh_data *macsec_data_rcu(const struct net_device *dev)
290{
291 return rcu_dereference_bh(dev->rx_handler_data);
292}
293
294static struct macsec_rxh_data *macsec_data_rtnl(const struct net_device *dev)
295{
296 return rtnl_dereference(dev->rx_handler_data);
297}
298
299struct macsec_cb {
300 struct aead_request *req;
301 union {
302 struct macsec_tx_sa *tx_sa;
303 struct macsec_rx_sa *rx_sa;
304 };
305 u8 assoc_num;
306 bool valid;
307 bool has_sci;
308};
309
310static struct macsec_rx_sa *macsec_rxsa_get(struct macsec_rx_sa __rcu *ptr)
311{
312 struct macsec_rx_sa *sa = rcu_dereference_bh(ptr);
313
314 if (!sa || !sa->active)
315 return NULL;
316
317 if (!atomic_inc_not_zero(&sa->refcnt))
318 return NULL;
319
320 return sa;
321}
322
323static void free_rx_sc_rcu(struct rcu_head *head)
324{
325 struct macsec_rx_sc *rx_sc = container_of(head, struct macsec_rx_sc, rcu_head);
326
327 free_percpu(rx_sc->stats);
328 kfree(rx_sc);
329}
330
331static struct macsec_rx_sc *macsec_rxsc_get(struct macsec_rx_sc *sc)
332{
333 return atomic_inc_not_zero(&sc->refcnt) ? sc : NULL;
334}
335
336static void macsec_rxsc_put(struct macsec_rx_sc *sc)
337{
338 if (atomic_dec_and_test(&sc->refcnt))
339 call_rcu(&sc->rcu_head, free_rx_sc_rcu);
340}
341
342static void free_rxsa(struct rcu_head *head)
343{
344 struct macsec_rx_sa *sa = container_of(head, struct macsec_rx_sa, rcu);
345
346 crypto_free_aead(sa->key.tfm);
347 free_percpu(sa->stats);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100348 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
Tobias Brunnere0f841f2016-10-24 15:44:26 +0200400static bool send_sci(const struct macsec_secy *secy)
401{
402 const struct macsec_tx_sc *tx_sc = &secy->tx_sc;
403
404 return tx_sc->send_sci ||
405 (secy->n_rx_sc > 1 && !tx_sc->end_station && !tx_sc->scb);
406}
407
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100408static sci_t make_sci(u8 *addr, __be16 port)
409{
410 sci_t sci;
411
412 memcpy(&sci, addr, ETH_ALEN);
413 memcpy(((char *)&sci) + ETH_ALEN, &port, sizeof(port));
414
415 return sci;
416}
417
418static sci_t macsec_frame_sci(struct macsec_eth_header *hdr, bool sci_present)
419{
420 sci_t sci;
421
422 if (sci_present)
423 memcpy(&sci, hdr->secure_channel_id,
424 sizeof(hdr->secure_channel_id));
425 else
426 sci = make_sci(hdr->eth.h_source, MACSEC_PORT_ES);
427
428 return sci;
429}
430
431static unsigned int macsec_sectag_len(bool sci_present)
432{
433 return MACSEC_TAG_LEN + (sci_present ? MACSEC_SCI_LEN : 0);
434}
435
436static unsigned int macsec_hdr_len(bool sci_present)
437{
438 return macsec_sectag_len(sci_present) + ETH_HLEN;
439}
440
441static unsigned int macsec_extra_len(bool sci_present)
442{
443 return macsec_sectag_len(sci_present) + sizeof(__be16);
444}
445
446/* Fill SecTAG according to IEEE 802.1AE-2006 10.5.3 */
447static void macsec_fill_sectag(struct macsec_eth_header *h,
Tobias Brunnere0f841f2016-10-24 15:44:26 +0200448 const struct macsec_secy *secy, u32 pn,
449 bool sci_present)
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100450{
451 const struct macsec_tx_sc *tx_sc = &secy->tx_sc;
452
Tobias Brunnere0f841f2016-10-24 15:44:26 +0200453 memset(&h->tci_an, 0, macsec_sectag_len(sci_present));
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100454 h->eth.h_proto = htons(ETH_P_MACSEC);
455
Tobias Brunnere0f841f2016-10-24 15:44:26 +0200456 if (sci_present) {
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100457 h->tci_an |= MACSEC_TCI_SC;
458 memcpy(&h->secure_channel_id, &secy->sci,
459 sizeof(h->secure_channel_id));
460 } else {
461 if (tx_sc->end_station)
462 h->tci_an |= MACSEC_TCI_ES;
463 if (tx_sc->scb)
464 h->tci_an |= MACSEC_TCI_SCB;
465 }
466
467 h->packet_number = htonl(pn);
468
469 /* with GCM, C/E clear for !encrypt, both set for encrypt */
470 if (tx_sc->encrypt)
471 h->tci_an |= MACSEC_TCI_CONFID;
472 else if (secy->icv_len != DEFAULT_ICV_LEN)
473 h->tci_an |= MACSEC_TCI_C;
474
475 h->tci_an |= tx_sc->encoding_sa;
476}
477
478static void macsec_set_shortlen(struct macsec_eth_header *h, size_t data_len)
479{
480 if (data_len < MIN_NON_SHORT_LEN)
481 h->short_length = data_len;
482}
483
484/* validate MACsec packet according to IEEE 802.1AE-2006 9.12 */
485static bool macsec_validate_skb(struct sk_buff *skb, u16 icv_len)
486{
487 struct macsec_eth_header *h = (struct macsec_eth_header *)skb->data;
488 int len = skb->len - 2 * ETH_ALEN;
489 int extra_len = macsec_extra_len(!!(h->tci_an & MACSEC_TCI_SC)) + icv_len;
490
491 /* a) It comprises at least 17 octets */
492 if (skb->len <= 16)
493 return false;
494
495 /* b) MACsec EtherType: already checked */
496
497 /* c) V bit is clear */
498 if (h->tci_an & MACSEC_TCI_VERSION)
499 return false;
500
501 /* d) ES or SCB => !SC */
502 if ((h->tci_an & MACSEC_TCI_ES || h->tci_an & MACSEC_TCI_SCB) &&
503 (h->tci_an & MACSEC_TCI_SC))
504 return false;
505
506 /* e) Bits 7 and 8 of octet 4 of the SecTAG are clear */
507 if (h->unused)
508 return false;
509
510 /* rx.pn != 0 (figure 10-5) */
511 if (!h->packet_number)
512 return false;
513
514 /* length check, f) g) h) i) */
515 if (h->short_length)
516 return len == extra_len + h->short_length;
517 return len >= extra_len + MIN_NON_SHORT_LEN;
518}
519
520#define MACSEC_NEEDED_HEADROOM (macsec_extra_len(true))
Davide Caratti2ccbe2c2016-07-22 15:07:56 +0200521#define MACSEC_NEEDED_TAILROOM MACSEC_STD_ICV_LEN
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100522
523static void macsec_fill_iv(unsigned char *iv, sci_t sci, u32 pn)
524{
525 struct gcm_iv *gcm_iv = (struct gcm_iv *)iv;
526
527 gcm_iv->sci = sci;
528 gcm_iv->pn = htonl(pn);
529}
530
531static struct macsec_eth_header *macsec_ethhdr(struct sk_buff *skb)
532{
533 return (struct macsec_eth_header *)skb_mac_header(skb);
534}
535
536static u32 tx_sa_update_pn(struct macsec_tx_sa *tx_sa, struct macsec_secy *secy)
537{
538 u32 pn;
539
540 spin_lock_bh(&tx_sa->lock);
541 pn = tx_sa->next_pn;
542
543 tx_sa->next_pn++;
544 if (tx_sa->next_pn == 0) {
545 pr_debug("PN wrapped, transitioning to !oper\n");
546 tx_sa->active = false;
547 if (secy->protect_frames)
548 secy->operational = false;
549 }
550 spin_unlock_bh(&tx_sa->lock);
551
552 return pn;
553}
554
555static void macsec_encrypt_finish(struct sk_buff *skb, struct net_device *dev)
556{
557 struct macsec_dev *macsec = netdev_priv(dev);
558
559 skb->dev = macsec->real_dev;
560 skb_reset_mac_header(skb);
561 skb->protocol = eth_hdr(skb)->h_proto;
562}
563
564static void macsec_count_tx(struct sk_buff *skb, struct macsec_tx_sc *tx_sc,
565 struct macsec_tx_sa *tx_sa)
566{
567 struct pcpu_tx_sc_stats *txsc_stats = this_cpu_ptr(tx_sc->stats);
568
569 u64_stats_update_begin(&txsc_stats->syncp);
570 if (tx_sc->encrypt) {
571 txsc_stats->stats.OutOctetsEncrypted += skb->len;
572 txsc_stats->stats.OutPktsEncrypted++;
573 this_cpu_inc(tx_sa->stats->OutPktsEncrypted);
574 } else {
575 txsc_stats->stats.OutOctetsProtected += skb->len;
576 txsc_stats->stats.OutPktsProtected++;
577 this_cpu_inc(tx_sa->stats->OutPktsProtected);
578 }
579 u64_stats_update_end(&txsc_stats->syncp);
580}
581
582static void count_tx(struct net_device *dev, int ret, int len)
583{
584 if (likely(ret == NET_XMIT_SUCCESS || ret == NET_XMIT_CN)) {
585 struct pcpu_sw_netstats *stats = this_cpu_ptr(dev->tstats);
586
587 u64_stats_update_begin(&stats->syncp);
588 stats->tx_packets++;
589 stats->tx_bytes += len;
590 u64_stats_update_end(&stats->syncp);
591 } else {
592 dev->stats.tx_dropped++;
593 }
594}
595
596static void macsec_encrypt_done(struct crypto_async_request *base, int err)
597{
598 struct sk_buff *skb = base->data;
599 struct net_device *dev = skb->dev;
600 struct macsec_dev *macsec = macsec_priv(dev);
601 struct macsec_tx_sa *sa = macsec_skb_cb(skb)->tx_sa;
602 int len, ret;
603
604 aead_request_free(macsec_skb_cb(skb)->req);
605
606 rcu_read_lock_bh();
607 macsec_encrypt_finish(skb, dev);
608 macsec_count_tx(skb, &macsec->secy.tx_sc, macsec_skb_cb(skb)->tx_sa);
609 len = skb->len;
610 ret = dev_queue_xmit(skb);
611 count_tx(dev, ret, len);
612 rcu_read_unlock_bh();
613
614 macsec_txsa_put(sa);
615 dev_put(dev);
616}
617
Sabrina Dubroca5d9649b2016-06-14 15:25:15 +0200618static struct aead_request *macsec_alloc_req(struct crypto_aead *tfm,
619 unsigned char **iv,
Jason A. Donenfeld3b0129d2017-04-25 19:08:18 +0200620 struct scatterlist **sg,
621 int num_frags)
Sabrina Dubroca5d9649b2016-06-14 15:25:15 +0200622{
623 size_t size, iv_offset, sg_offset;
624 struct aead_request *req;
625 void *tmp;
626
627 size = sizeof(struct aead_request) + crypto_aead_reqsize(tfm);
628 iv_offset = size;
629 size += GCM_AES_IV_LEN;
630
631 size = ALIGN(size, __alignof__(struct scatterlist));
632 sg_offset = size;
Jason A. Donenfeld3b0129d2017-04-25 19:08:18 +0200633 size += sizeof(struct scatterlist) * num_frags;
Sabrina Dubroca5d9649b2016-06-14 15:25:15 +0200634
635 tmp = kmalloc(size, GFP_ATOMIC);
636 if (!tmp)
637 return NULL;
638
639 *iv = (unsigned char *)(tmp + iv_offset);
640 *sg = (struct scatterlist *)(tmp + sg_offset);
641 req = tmp;
642
643 aead_request_set_tfm(req, tfm);
644
645 return req;
646}
647
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100648static struct sk_buff *macsec_encrypt(struct sk_buff *skb,
649 struct net_device *dev)
650{
651 int ret;
Sabrina Dubroca5d9649b2016-06-14 15:25:15 +0200652 struct scatterlist *sg;
Jason A. Donenfeld3b0129d2017-04-25 19:08:18 +0200653 struct sk_buff *trailer;
Sabrina Dubroca5d9649b2016-06-14 15:25:15 +0200654 unsigned char *iv;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100655 struct ethhdr *eth;
656 struct macsec_eth_header *hh;
657 size_t unprotected_len;
658 struct aead_request *req;
659 struct macsec_secy *secy;
660 struct macsec_tx_sc *tx_sc;
661 struct macsec_tx_sa *tx_sa;
662 struct macsec_dev *macsec = macsec_priv(dev);
Tobias Brunnere0f841f2016-10-24 15:44:26 +0200663 bool sci_present;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100664 u32 pn;
665
666 secy = &macsec->secy;
667 tx_sc = &secy->tx_sc;
668
669 /* 10.5.1 TX SA assignment */
670 tx_sa = macsec_txsa_get(tx_sc->sa[tx_sc->encoding_sa]);
671 if (!tx_sa) {
672 secy->operational = false;
673 kfree_skb(skb);
674 return ERR_PTR(-EINVAL);
675 }
676
677 if (unlikely(skb_headroom(skb) < MACSEC_NEEDED_HEADROOM ||
678 skb_tailroom(skb) < MACSEC_NEEDED_TAILROOM)) {
679 struct sk_buff *nskb = skb_copy_expand(skb,
680 MACSEC_NEEDED_HEADROOM,
681 MACSEC_NEEDED_TAILROOM,
682 GFP_ATOMIC);
683 if (likely(nskb)) {
684 consume_skb(skb);
685 skb = nskb;
686 } else {
687 macsec_txsa_put(tx_sa);
688 kfree_skb(skb);
689 return ERR_PTR(-ENOMEM);
690 }
691 } else {
692 skb = skb_unshare(skb, GFP_ATOMIC);
693 if (!skb) {
694 macsec_txsa_put(tx_sa);
695 return ERR_PTR(-ENOMEM);
696 }
697 }
698
699 unprotected_len = skb->len;
700 eth = eth_hdr(skb);
Tobias Brunnere0f841f2016-10-24 15:44:26 +0200701 sci_present = send_sci(secy);
702 hh = (struct macsec_eth_header *)skb_push(skb, macsec_extra_len(sci_present));
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100703 memmove(hh, eth, 2 * ETH_ALEN);
704
705 pn = tx_sa_update_pn(tx_sa, secy);
706 if (pn == 0) {
707 macsec_txsa_put(tx_sa);
708 kfree_skb(skb);
709 return ERR_PTR(-ENOLINK);
710 }
Tobias Brunnere0f841f2016-10-24 15:44:26 +0200711 macsec_fill_sectag(hh, secy, pn, sci_present);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100712 macsec_set_shortlen(hh, unprotected_len - 2 * ETH_ALEN);
713
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100714 skb_put(skb, secy->icv_len);
715
716 if (skb->len - ETH_HLEN > macsec_priv(dev)->real_dev->mtu) {
717 struct pcpu_secy_stats *secy_stats = this_cpu_ptr(macsec->stats);
718
719 u64_stats_update_begin(&secy_stats->syncp);
720 secy_stats->stats.OutPktsTooLong++;
721 u64_stats_update_end(&secy_stats->syncp);
722
723 macsec_txsa_put(tx_sa);
724 kfree_skb(skb);
725 return ERR_PTR(-EINVAL);
726 }
727
Jason A. Donenfeld3b0129d2017-04-25 19:08:18 +0200728 ret = skb_cow_data(skb, 0, &trailer);
729 if (unlikely(ret < 0)) {
730 macsec_txsa_put(tx_sa);
731 kfree_skb(skb);
732 return ERR_PTR(ret);
733 }
734
735 req = macsec_alloc_req(tx_sa->key.tfm, &iv, &sg, ret);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100736 if (!req) {
737 macsec_txsa_put(tx_sa);
738 kfree_skb(skb);
739 return ERR_PTR(-ENOMEM);
740 }
741
Sabrina Dubroca5d9649b2016-06-14 15:25:15 +0200742 macsec_fill_iv(iv, secy->sci, pn);
743
Jason A. Donenfeld3b0129d2017-04-25 19:08:18 +0200744 sg_init_table(sg, ret);
Jason A. Donenfeld6083f162017-06-04 04:16:25 +0200745 ret = skb_to_sgvec(skb, sg, 0, skb->len);
746 if (unlikely(ret < 0)) {
Sabrina Dubroca5f6590d2017-10-10 17:07:12 +0200747 aead_request_free(req);
Jason A. Donenfeld6083f162017-06-04 04:16:25 +0200748 macsec_txsa_put(tx_sa);
749 kfree_skb(skb);
750 return ERR_PTR(ret);
751 }
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100752
753 if (tx_sc->encrypt) {
Tobias Brunnere0f841f2016-10-24 15:44:26 +0200754 int len = skb->len - macsec_hdr_len(sci_present) -
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100755 secy->icv_len;
756 aead_request_set_crypt(req, sg, sg, len, iv);
Tobias Brunnere0f841f2016-10-24 15:44:26 +0200757 aead_request_set_ad(req, macsec_hdr_len(sci_present));
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100758 } else {
759 aead_request_set_crypt(req, sg, sg, 0, iv);
760 aead_request_set_ad(req, skb->len - secy->icv_len);
761 }
762
763 macsec_skb_cb(skb)->req = req;
764 macsec_skb_cb(skb)->tx_sa = tx_sa;
765 aead_request_set_callback(req, 0, macsec_encrypt_done, skb);
766
767 dev_hold(skb->dev);
768 ret = crypto_aead_encrypt(req);
769 if (ret == -EINPROGRESS) {
770 return ERR_PTR(ret);
771 } else if (ret != 0) {
772 dev_put(skb->dev);
773 kfree_skb(skb);
774 aead_request_free(req);
775 macsec_txsa_put(tx_sa);
776 return ERR_PTR(-EINVAL);
777 }
778
779 dev_put(skb->dev);
780 aead_request_free(req);
781 macsec_txsa_put(tx_sa);
782
783 return skb;
784}
785
786static bool macsec_post_decrypt(struct sk_buff *skb, struct macsec_secy *secy, u32 pn)
787{
788 struct macsec_rx_sa *rx_sa = macsec_skb_cb(skb)->rx_sa;
789 struct pcpu_rx_sc_stats *rxsc_stats = this_cpu_ptr(rx_sa->sc->stats);
790 struct macsec_eth_header *hdr = macsec_ethhdr(skb);
791 u32 lowest_pn = 0;
792
793 spin_lock(&rx_sa->lock);
794 if (rx_sa->next_pn >= secy->replay_window)
795 lowest_pn = rx_sa->next_pn - secy->replay_window;
796
797 /* Now perform replay protection check again
798 * (see IEEE 802.1AE-2006 figure 10-5)
799 */
800 if (secy->replay_protect && pn < lowest_pn) {
801 spin_unlock(&rx_sa->lock);
802 u64_stats_update_begin(&rxsc_stats->syncp);
803 rxsc_stats->stats.InPktsLate++;
804 u64_stats_update_end(&rxsc_stats->syncp);
805 return false;
806 }
807
808 if (secy->validate_frames != MACSEC_VALIDATE_DISABLED) {
809 u64_stats_update_begin(&rxsc_stats->syncp);
810 if (hdr->tci_an & MACSEC_TCI_E)
811 rxsc_stats->stats.InOctetsDecrypted += skb->len;
812 else
813 rxsc_stats->stats.InOctetsValidated += skb->len;
814 u64_stats_update_end(&rxsc_stats->syncp);
815 }
816
817 if (!macsec_skb_cb(skb)->valid) {
818 spin_unlock(&rx_sa->lock);
819
820 /* 10.6.5 */
821 if (hdr->tci_an & MACSEC_TCI_C ||
822 secy->validate_frames == MACSEC_VALIDATE_STRICT) {
823 u64_stats_update_begin(&rxsc_stats->syncp);
824 rxsc_stats->stats.InPktsNotValid++;
825 u64_stats_update_end(&rxsc_stats->syncp);
826 return false;
827 }
828
829 u64_stats_update_begin(&rxsc_stats->syncp);
830 if (secy->validate_frames == MACSEC_VALIDATE_CHECK) {
831 rxsc_stats->stats.InPktsInvalid++;
832 this_cpu_inc(rx_sa->stats->InPktsInvalid);
833 } else if (pn < lowest_pn) {
834 rxsc_stats->stats.InPktsDelayed++;
835 } else {
836 rxsc_stats->stats.InPktsUnchecked++;
837 }
838 u64_stats_update_end(&rxsc_stats->syncp);
839 } else {
840 u64_stats_update_begin(&rxsc_stats->syncp);
841 if (pn < lowest_pn) {
842 rxsc_stats->stats.InPktsDelayed++;
843 } else {
844 rxsc_stats->stats.InPktsOK++;
845 this_cpu_inc(rx_sa->stats->InPktsOK);
846 }
847 u64_stats_update_end(&rxsc_stats->syncp);
848
849 if (pn >= rx_sa->next_pn)
850 rx_sa->next_pn = pn + 1;
851 spin_unlock(&rx_sa->lock);
852 }
853
854 return true;
855}
856
857static void macsec_reset_skb(struct sk_buff *skb, struct net_device *dev)
858{
859 skb->pkt_type = PACKET_HOST;
860 skb->protocol = eth_type_trans(skb, dev);
861
862 skb_reset_network_header(skb);
863 if (!skb_transport_header_was_set(skb))
864 skb_reset_transport_header(skb);
865 skb_reset_mac_len(skb);
866}
867
868static void macsec_finalize_skb(struct sk_buff *skb, u8 icv_len, u8 hdr_len)
869{
Andreas Steinmetzbca7b792019-06-30 22:46:45 +0200870 skb->ip_summed = CHECKSUM_NONE;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100871 memmove(skb->data + hdr_len, skb->data, 2 * ETH_ALEN);
872 skb_pull(skb, hdr_len);
873 pskb_trim_unique(skb, skb->len - icv_len);
874}
875
876static void count_rx(struct net_device *dev, int len)
877{
878 struct pcpu_sw_netstats *stats = this_cpu_ptr(dev->tstats);
879
880 u64_stats_update_begin(&stats->syncp);
881 stats->rx_packets++;
882 stats->rx_bytes += len;
883 u64_stats_update_end(&stats->syncp);
884}
885
886static void macsec_decrypt_done(struct crypto_async_request *base, int err)
887{
888 struct sk_buff *skb = base->data;
889 struct net_device *dev = skb->dev;
890 struct macsec_dev *macsec = macsec_priv(dev);
891 struct macsec_rx_sa *rx_sa = macsec_skb_cb(skb)->rx_sa;
Sabrina Dubrocac78ebe12016-07-29 15:37:53 +0200892 struct macsec_rx_sc *rx_sc = rx_sa->sc;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100893 int len, ret;
894 u32 pn;
895
896 aead_request_free(macsec_skb_cb(skb)->req);
897
898 rcu_read_lock_bh();
899 pn = ntohl(macsec_ethhdr(skb)->packet_number);
900 if (!macsec_post_decrypt(skb, &macsec->secy, pn)) {
901 rcu_read_unlock_bh();
902 kfree_skb(skb);
903 goto out;
904 }
905
906 macsec_finalize_skb(skb, macsec->secy.icv_len,
907 macsec_extra_len(macsec_skb_cb(skb)->has_sci));
908 macsec_reset_skb(skb, macsec->secy.netdev);
909
910 len = skb->len;
Paolo Abeni5491e7c2016-07-20 18:11:32 +0200911 ret = gro_cells_receive(&macsec->gro_cells, skb);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100912 if (ret == NET_RX_SUCCESS)
913 count_rx(dev, len);
914 else
915 macsec->secy.netdev->stats.rx_dropped++;
916
917 rcu_read_unlock_bh();
918
919out:
920 macsec_rxsa_put(rx_sa);
Sabrina Dubrocac78ebe12016-07-29 15:37:53 +0200921 macsec_rxsc_put(rx_sc);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100922 dev_put(dev);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100923}
924
925static struct sk_buff *macsec_decrypt(struct sk_buff *skb,
926 struct net_device *dev,
927 struct macsec_rx_sa *rx_sa,
928 sci_t sci,
929 struct macsec_secy *secy)
930{
931 int ret;
Sabrina Dubroca5d9649b2016-06-14 15:25:15 +0200932 struct scatterlist *sg;
Jason A. Donenfeld3b0129d2017-04-25 19:08:18 +0200933 struct sk_buff *trailer;
Sabrina Dubroca5d9649b2016-06-14 15:25:15 +0200934 unsigned char *iv;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100935 struct aead_request *req;
936 struct macsec_eth_header *hdr;
937 u16 icv_len = secy->icv_len;
938
939 macsec_skb_cb(skb)->valid = false;
940 skb = skb_share_check(skb, GFP_ATOMIC);
941 if (!skb)
Sabrina Dubrocac3b7d0b2016-04-22 11:28:04 +0200942 return ERR_PTR(-ENOMEM);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100943
Jason A. Donenfeld3b0129d2017-04-25 19:08:18 +0200944 ret = skb_cow_data(skb, 0, &trailer);
945 if (unlikely(ret < 0)) {
946 kfree_skb(skb);
947 return ERR_PTR(ret);
948 }
949 req = macsec_alloc_req(rx_sa->key.tfm, &iv, &sg, ret);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100950 if (!req) {
951 kfree_skb(skb);
Sabrina Dubrocac3b7d0b2016-04-22 11:28:04 +0200952 return ERR_PTR(-ENOMEM);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100953 }
954
955 hdr = (struct macsec_eth_header *)skb->data;
956 macsec_fill_iv(iv, sci, ntohl(hdr->packet_number));
957
Jason A. Donenfeld3b0129d2017-04-25 19:08:18 +0200958 sg_init_table(sg, ret);
Jason A. Donenfeld6083f162017-06-04 04:16:25 +0200959 ret = skb_to_sgvec(skb, sg, 0, skb->len);
960 if (unlikely(ret < 0)) {
Sabrina Dubroca5f6590d2017-10-10 17:07:12 +0200961 aead_request_free(req);
Jason A. Donenfeld6083f162017-06-04 04:16:25 +0200962 kfree_skb(skb);
963 return ERR_PTR(ret);
964 }
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100965
966 if (hdr->tci_an & MACSEC_TCI_E) {
967 /* confidentiality: ethernet + macsec header
968 * authenticated, encrypted payload
969 */
970 int len = skb->len - macsec_hdr_len(macsec_skb_cb(skb)->has_sci);
971
972 aead_request_set_crypt(req, sg, sg, len, iv);
973 aead_request_set_ad(req, macsec_hdr_len(macsec_skb_cb(skb)->has_sci));
974 skb = skb_unshare(skb, GFP_ATOMIC);
975 if (!skb) {
976 aead_request_free(req);
Sabrina Dubrocac3b7d0b2016-04-22 11:28:04 +0200977 return ERR_PTR(-ENOMEM);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100978 }
979 } else {
980 /* integrity only: all headers + data authenticated */
981 aead_request_set_crypt(req, sg, sg, icv_len, iv);
982 aead_request_set_ad(req, skb->len - icv_len);
983 }
984
985 macsec_skb_cb(skb)->req = req;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100986 skb->dev = dev;
987 aead_request_set_callback(req, 0, macsec_decrypt_done, skb);
988
989 dev_hold(dev);
990 ret = crypto_aead_decrypt(req);
991 if (ret == -EINPROGRESS) {
Sabrina Dubrocac3b7d0b2016-04-22 11:28:04 +0200992 return ERR_PTR(ret);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100993 } else if (ret != 0) {
994 /* decryption/authentication failed
995 * 10.6 if validateFrames is disabled, deliver anyway
996 */
997 if (ret != -EBADMSG) {
998 kfree_skb(skb);
Sabrina Dubrocac3b7d0b2016-04-22 11:28:04 +0200999 skb = ERR_PTR(ret);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001000 }
1001 } else {
1002 macsec_skb_cb(skb)->valid = true;
1003 }
1004 dev_put(dev);
1005
1006 aead_request_free(req);
1007
1008 return skb;
1009}
1010
1011static struct macsec_rx_sc *find_rx_sc(struct macsec_secy *secy, sci_t sci)
1012{
1013 struct macsec_rx_sc *rx_sc;
1014
1015 for_each_rxsc(secy, rx_sc) {
1016 if (rx_sc->sci == sci)
1017 return rx_sc;
1018 }
1019
1020 return NULL;
1021}
1022
1023static struct macsec_rx_sc *find_rx_sc_rtnl(struct macsec_secy *secy, sci_t sci)
1024{
1025 struct macsec_rx_sc *rx_sc;
1026
1027 for_each_rxsc_rtnl(secy, rx_sc) {
1028 if (rx_sc->sci == sci)
1029 return rx_sc;
1030 }
1031
1032 return NULL;
1033}
1034
1035static void handle_not_macsec(struct sk_buff *skb)
1036{
1037 struct macsec_rxh_data *rxd;
1038 struct macsec_dev *macsec;
1039
1040 rcu_read_lock();
1041 rxd = macsec_data_rcu(skb->dev);
1042
1043 /* 10.6 If the management control validateFrames is not
1044 * Strict, frames without a SecTAG are received, counted, and
1045 * delivered to the Controlled Port
1046 */
1047 list_for_each_entry_rcu(macsec, &rxd->secys, secys) {
1048 struct sk_buff *nskb;
1049 int ret;
1050 struct pcpu_secy_stats *secy_stats = this_cpu_ptr(macsec->stats);
1051
1052 if (macsec->secy.validate_frames == MACSEC_VALIDATE_STRICT) {
1053 u64_stats_update_begin(&secy_stats->syncp);
1054 secy_stats->stats.InPktsNoTag++;
1055 u64_stats_update_end(&secy_stats->syncp);
1056 continue;
1057 }
1058
1059 /* deliver on this port */
1060 nskb = skb_clone(skb, GFP_ATOMIC);
1061 if (!nskb)
1062 break;
1063
1064 nskb->dev = macsec->secy.netdev;
1065
1066 ret = netif_rx(nskb);
1067 if (ret == NET_RX_SUCCESS) {
1068 u64_stats_update_begin(&secy_stats->syncp);
1069 secy_stats->stats.InPktsUntagged++;
1070 u64_stats_update_end(&secy_stats->syncp);
1071 } else {
1072 macsec->secy.netdev->stats.rx_dropped++;
1073 }
1074 }
1075
1076 rcu_read_unlock();
1077}
1078
1079static rx_handler_result_t macsec_handle_frame(struct sk_buff **pskb)
1080{
1081 struct sk_buff *skb = *pskb;
1082 struct net_device *dev = skb->dev;
1083 struct macsec_eth_header *hdr;
1084 struct macsec_secy *secy = NULL;
1085 struct macsec_rx_sc *rx_sc;
1086 struct macsec_rx_sa *rx_sa;
1087 struct macsec_rxh_data *rxd;
1088 struct macsec_dev *macsec;
1089 sci_t sci;
1090 u32 pn;
1091 bool cbit;
1092 struct pcpu_rx_sc_stats *rxsc_stats;
1093 struct pcpu_secy_stats *secy_stats;
1094 bool pulled_sci;
Paolo Abeni5491e7c2016-07-20 18:11:32 +02001095 int ret;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001096
1097 if (skb_headroom(skb) < ETH_HLEN)
1098 goto drop_direct;
1099
1100 hdr = macsec_ethhdr(skb);
1101 if (hdr->eth.h_proto != htons(ETH_P_MACSEC)) {
1102 handle_not_macsec(skb);
1103
1104 /* and deliver to the uncontrolled port */
1105 return RX_HANDLER_PASS;
1106 }
1107
1108 skb = skb_unshare(skb, GFP_ATOMIC);
Andreas Steinmetza76ca412019-06-30 22:46:42 +02001109 *pskb = skb;
1110 if (!skb)
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001111 return RX_HANDLER_CONSUMED;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001112
1113 pulled_sci = pskb_may_pull(skb, macsec_extra_len(true));
1114 if (!pulled_sci) {
1115 if (!pskb_may_pull(skb, macsec_extra_len(false)))
1116 goto drop_direct;
1117 }
1118
1119 hdr = macsec_ethhdr(skb);
1120
1121 /* Frames with a SecTAG that has the TCI E bit set but the C
1122 * bit clear are discarded, as this reserved encoding is used
1123 * to identify frames with a SecTAG that are not to be
1124 * delivered to the Controlled Port.
1125 */
1126 if ((hdr->tci_an & (MACSEC_TCI_C | MACSEC_TCI_E)) == MACSEC_TCI_E)
1127 return RX_HANDLER_PASS;
1128
1129 /* now, pull the extra length */
1130 if (hdr->tci_an & MACSEC_TCI_SC) {
1131 if (!pulled_sci)
1132 goto drop_direct;
1133 }
1134
1135 /* ethernet header is part of crypto processing */
1136 skb_push(skb, ETH_HLEN);
1137
1138 macsec_skb_cb(skb)->has_sci = !!(hdr->tci_an & MACSEC_TCI_SC);
1139 macsec_skb_cb(skb)->assoc_num = hdr->tci_an & MACSEC_AN_MASK;
1140 sci = macsec_frame_sci(hdr, macsec_skb_cb(skb)->has_sci);
1141
1142 rcu_read_lock();
1143 rxd = macsec_data_rcu(skb->dev);
1144
1145 list_for_each_entry_rcu(macsec, &rxd->secys, secys) {
1146 struct macsec_rx_sc *sc = find_rx_sc(&macsec->secy, sci);
Sabrina Dubrocac78ebe12016-07-29 15:37:53 +02001147 sc = sc ? macsec_rxsc_get(sc) : NULL;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001148
1149 if (sc) {
1150 secy = &macsec->secy;
1151 rx_sc = sc;
1152 break;
1153 }
1154 }
1155
1156 if (!secy)
1157 goto nosci;
1158
1159 dev = secy->netdev;
1160 macsec = macsec_priv(dev);
1161 secy_stats = this_cpu_ptr(macsec->stats);
1162 rxsc_stats = this_cpu_ptr(rx_sc->stats);
1163
1164 if (!macsec_validate_skb(skb, secy->icv_len)) {
1165 u64_stats_update_begin(&secy_stats->syncp);
1166 secy_stats->stats.InPktsBadTag++;
1167 u64_stats_update_end(&secy_stats->syncp);
1168 goto drop_nosa;
1169 }
1170
1171 rx_sa = macsec_rxsa_get(rx_sc->sa[macsec_skb_cb(skb)->assoc_num]);
1172 if (!rx_sa) {
1173 /* 10.6.1 if the SA is not in use */
1174
1175 /* If validateFrames is Strict or the C bit in the
1176 * SecTAG is set, discard
1177 */
1178 if (hdr->tci_an & MACSEC_TCI_C ||
1179 secy->validate_frames == MACSEC_VALIDATE_STRICT) {
1180 u64_stats_update_begin(&rxsc_stats->syncp);
1181 rxsc_stats->stats.InPktsNotUsingSA++;
1182 u64_stats_update_end(&rxsc_stats->syncp);
1183 goto drop_nosa;
1184 }
1185
1186 /* not Strict, the frame (with the SecTAG and ICV
1187 * removed) is delivered to the Controlled Port.
1188 */
1189 u64_stats_update_begin(&rxsc_stats->syncp);
1190 rxsc_stats->stats.InPktsUnusedSA++;
1191 u64_stats_update_end(&rxsc_stats->syncp);
1192 goto deliver;
1193 }
1194
1195 /* First, PN check to avoid decrypting obviously wrong packets */
1196 pn = ntohl(hdr->packet_number);
1197 if (secy->replay_protect) {
1198 bool late;
1199
1200 spin_lock(&rx_sa->lock);
1201 late = rx_sa->next_pn >= secy->replay_window &&
1202 pn < (rx_sa->next_pn - secy->replay_window);
1203 spin_unlock(&rx_sa->lock);
1204
1205 if (late) {
1206 u64_stats_update_begin(&rxsc_stats->syncp);
1207 rxsc_stats->stats.InPktsLate++;
1208 u64_stats_update_end(&rxsc_stats->syncp);
1209 goto drop;
1210 }
1211 }
1212
Beniamino Galvanie3a3b622016-07-26 12:24:53 +02001213 macsec_skb_cb(skb)->rx_sa = rx_sa;
1214
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001215 /* Disabled && !changed text => skip validation */
1216 if (hdr->tci_an & MACSEC_TCI_C ||
1217 secy->validate_frames != MACSEC_VALIDATE_DISABLED)
1218 skb = macsec_decrypt(skb, dev, rx_sa, sci, secy);
1219
Sabrina Dubrocac3b7d0b2016-04-22 11:28:04 +02001220 if (IS_ERR(skb)) {
1221 /* the decrypt callback needs the reference */
Sabrina Dubrocac78ebe12016-07-29 15:37:53 +02001222 if (PTR_ERR(skb) != -EINPROGRESS) {
Sabrina Dubrocac3b7d0b2016-04-22 11:28:04 +02001223 macsec_rxsa_put(rx_sa);
Sabrina Dubrocac78ebe12016-07-29 15:37:53 +02001224 macsec_rxsc_put(rx_sc);
1225 }
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001226 rcu_read_unlock();
1227 *pskb = NULL;
1228 return RX_HANDLER_CONSUMED;
1229 }
1230
1231 if (!macsec_post_decrypt(skb, secy, pn))
1232 goto drop;
1233
1234deliver:
1235 macsec_finalize_skb(skb, secy->icv_len,
1236 macsec_extra_len(macsec_skb_cb(skb)->has_sci));
1237 macsec_reset_skb(skb, secy->netdev);
1238
Sabrina Dubroca497f3582016-04-22 11:28:03 +02001239 if (rx_sa)
1240 macsec_rxsa_put(rx_sa);
Sabrina Dubrocac78ebe12016-07-29 15:37:53 +02001241 macsec_rxsc_put(rx_sc);
Paolo Abeni5491e7c2016-07-20 18:11:32 +02001242
Xin Long2ddbe6e2019-09-23 17:02:46 +08001243 skb_orphan(skb);
Paolo Abeni5491e7c2016-07-20 18:11:32 +02001244 ret = gro_cells_receive(&macsec->gro_cells, skb);
1245 if (ret == NET_RX_SUCCESS)
1246 count_rx(dev, skb->len);
1247 else
1248 macsec->secy.netdev->stats.rx_dropped++;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001249
1250 rcu_read_unlock();
1251
Paolo Abeni5491e7c2016-07-20 18:11:32 +02001252 *pskb = NULL;
1253 return RX_HANDLER_CONSUMED;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001254
1255drop:
1256 macsec_rxsa_put(rx_sa);
1257drop_nosa:
Sabrina Dubrocac78ebe12016-07-29 15:37:53 +02001258 macsec_rxsc_put(rx_sc);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001259 rcu_read_unlock();
1260drop_direct:
1261 kfree_skb(skb);
1262 *pskb = NULL;
1263 return RX_HANDLER_CONSUMED;
1264
1265nosci:
1266 /* 10.6.1 if the SC is not found */
1267 cbit = !!(hdr->tci_an & MACSEC_TCI_C);
1268 if (!cbit)
1269 macsec_finalize_skb(skb, DEFAULT_ICV_LEN,
1270 macsec_extra_len(macsec_skb_cb(skb)->has_sci));
1271
1272 list_for_each_entry_rcu(macsec, &rxd->secys, secys) {
1273 struct sk_buff *nskb;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001274
1275 secy_stats = this_cpu_ptr(macsec->stats);
1276
1277 /* If validateFrames is Strict or the C bit in the
1278 * SecTAG is set, discard
1279 */
1280 if (cbit ||
1281 macsec->secy.validate_frames == MACSEC_VALIDATE_STRICT) {
1282 u64_stats_update_begin(&secy_stats->syncp);
1283 secy_stats->stats.InPktsNoSCI++;
1284 u64_stats_update_end(&secy_stats->syncp);
1285 continue;
1286 }
1287
1288 /* not strict, the frame (with the SecTAG and ICV
1289 * removed) is delivered to the Controlled Port.
1290 */
1291 nskb = skb_clone(skb, GFP_ATOMIC);
1292 if (!nskb)
1293 break;
1294
1295 macsec_reset_skb(nskb, macsec->secy.netdev);
1296
1297 ret = netif_rx(nskb);
1298 if (ret == NET_RX_SUCCESS) {
1299 u64_stats_update_begin(&secy_stats->syncp);
1300 secy_stats->stats.InPktsUnknownSCI++;
1301 u64_stats_update_end(&secy_stats->syncp);
1302 } else {
1303 macsec->secy.netdev->stats.rx_dropped++;
1304 }
1305 }
1306
1307 rcu_read_unlock();
1308 *pskb = skb;
1309 return RX_HANDLER_PASS;
1310}
1311
1312static struct crypto_aead *macsec_alloc_tfm(char *key, int key_len, int icv_len)
1313{
1314 struct crypto_aead *tfm;
1315 int ret;
1316
Sabrina Dubroca6052f7f2016-06-14 15:25:16 +02001317 tfm = crypto_alloc_aead("gcm(aes)", 0, 0);
Davide Caratti34aedfe2016-07-22 15:07:57 +02001318
1319 if (IS_ERR(tfm))
1320 return tfm;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001321
1322 ret = crypto_aead_setkey(tfm, key, key_len);
Davide Caratti34aedfe2016-07-22 15:07:57 +02001323 if (ret < 0)
1324 goto fail;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001325
1326 ret = crypto_aead_setauthsize(tfm, icv_len);
Davide Caratti34aedfe2016-07-22 15:07:57 +02001327 if (ret < 0)
1328 goto fail;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001329
1330 return tfm;
Davide Caratti34aedfe2016-07-22 15:07:57 +02001331fail:
1332 crypto_free_aead(tfm);
1333 return ERR_PTR(ret);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001334}
1335
1336static int init_rx_sa(struct macsec_rx_sa *rx_sa, char *sak, int key_len,
1337 int icv_len)
1338{
1339 rx_sa->stats = alloc_percpu(struct macsec_rx_sa_stats);
1340 if (!rx_sa->stats)
Davide Caratti34aedfe2016-07-22 15:07:57 +02001341 return -ENOMEM;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001342
1343 rx_sa->key.tfm = macsec_alloc_tfm(sak, key_len, icv_len);
Davide Caratti34aedfe2016-07-22 15:07:57 +02001344 if (IS_ERR(rx_sa->key.tfm)) {
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001345 free_percpu(rx_sa->stats);
Davide Caratti34aedfe2016-07-22 15:07:57 +02001346 return PTR_ERR(rx_sa->key.tfm);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001347 }
1348
1349 rx_sa->active = false;
1350 rx_sa->next_pn = 1;
1351 atomic_set(&rx_sa->refcnt, 1);
1352 spin_lock_init(&rx_sa->lock);
1353
1354 return 0;
1355}
1356
1357static void clear_rx_sa(struct macsec_rx_sa *rx_sa)
1358{
1359 rx_sa->active = false;
1360
1361 macsec_rxsa_put(rx_sa);
1362}
1363
1364static void free_rx_sc(struct macsec_rx_sc *rx_sc)
1365{
1366 int i;
1367
1368 for (i = 0; i < MACSEC_NUM_AN; i++) {
1369 struct macsec_rx_sa *sa = rtnl_dereference(rx_sc->sa[i]);
1370
1371 RCU_INIT_POINTER(rx_sc->sa[i], NULL);
1372 if (sa)
1373 clear_rx_sa(sa);
1374 }
1375
1376 macsec_rxsc_put(rx_sc);
1377}
1378
1379static struct macsec_rx_sc *del_rx_sc(struct macsec_secy *secy, sci_t sci)
1380{
1381 struct macsec_rx_sc *rx_sc, __rcu **rx_scp;
1382
1383 for (rx_scp = &secy->rx_sc, rx_sc = rtnl_dereference(*rx_scp);
1384 rx_sc;
1385 rx_scp = &rx_sc->next, rx_sc = rtnl_dereference(*rx_scp)) {
1386 if (rx_sc->sci == sci) {
1387 if (rx_sc->active)
1388 secy->n_rx_sc--;
1389 rcu_assign_pointer(*rx_scp, rx_sc->next);
1390 return rx_sc;
1391 }
1392 }
1393
1394 return NULL;
1395}
1396
1397static struct macsec_rx_sc *create_rx_sc(struct net_device *dev, sci_t sci)
1398{
1399 struct macsec_rx_sc *rx_sc;
1400 struct macsec_dev *macsec;
1401 struct net_device *real_dev = macsec_priv(dev)->real_dev;
1402 struct macsec_rxh_data *rxd = macsec_data_rtnl(real_dev);
1403 struct macsec_secy *secy;
1404
1405 list_for_each_entry(macsec, &rxd->secys, secys) {
1406 if (find_rx_sc_rtnl(&macsec->secy, sci))
1407 return ERR_PTR(-EEXIST);
1408 }
1409
1410 rx_sc = kzalloc(sizeof(*rx_sc), GFP_KERNEL);
1411 if (!rx_sc)
1412 return ERR_PTR(-ENOMEM);
1413
1414 rx_sc->stats = netdev_alloc_pcpu_stats(struct pcpu_rx_sc_stats);
1415 if (!rx_sc->stats) {
1416 kfree(rx_sc);
1417 return ERR_PTR(-ENOMEM);
1418 }
1419
1420 rx_sc->sci = sci;
1421 rx_sc->active = true;
1422 atomic_set(&rx_sc->refcnt, 1);
1423
1424 secy = &macsec_priv(dev)->secy;
1425 rcu_assign_pointer(rx_sc->next, secy->rx_sc);
1426 rcu_assign_pointer(secy->rx_sc, rx_sc);
1427
1428 if (rx_sc->active)
1429 secy->n_rx_sc++;
1430
1431 return rx_sc;
1432}
1433
1434static int init_tx_sa(struct macsec_tx_sa *tx_sa, char *sak, int key_len,
1435 int icv_len)
1436{
1437 tx_sa->stats = alloc_percpu(struct macsec_tx_sa_stats);
1438 if (!tx_sa->stats)
Davide Caratti34aedfe2016-07-22 15:07:57 +02001439 return -ENOMEM;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001440
1441 tx_sa->key.tfm = macsec_alloc_tfm(sak, key_len, icv_len);
Davide Caratti34aedfe2016-07-22 15:07:57 +02001442 if (IS_ERR(tx_sa->key.tfm)) {
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001443 free_percpu(tx_sa->stats);
Davide Caratti34aedfe2016-07-22 15:07:57 +02001444 return PTR_ERR(tx_sa->key.tfm);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001445 }
1446
1447 tx_sa->active = false;
1448 atomic_set(&tx_sa->refcnt, 1);
1449 spin_lock_init(&tx_sa->lock);
1450
1451 return 0;
1452}
1453
1454static void clear_tx_sa(struct macsec_tx_sa *tx_sa)
1455{
1456 tx_sa->active = false;
1457
1458 macsec_txsa_put(tx_sa);
1459}
1460
1461static struct genl_family macsec_fam = {
1462 .id = GENL_ID_GENERATE,
1463 .name = MACSEC_GENL_NAME,
1464 .hdrsize = 0,
1465 .version = MACSEC_GENL_VERSION,
1466 .maxattr = MACSEC_ATTR_MAX,
1467 .netnsok = true,
1468};
1469
1470static struct net_device *get_dev_from_nl(struct net *net,
1471 struct nlattr **attrs)
1472{
1473 int ifindex = nla_get_u32(attrs[MACSEC_ATTR_IFINDEX]);
1474 struct net_device *dev;
1475
1476 dev = __dev_get_by_index(net, ifindex);
1477 if (!dev)
1478 return ERR_PTR(-ENODEV);
1479
1480 if (!netif_is_macsec(dev))
1481 return ERR_PTR(-ENODEV);
1482
1483 return dev;
1484}
1485
1486static sci_t nla_get_sci(const struct nlattr *nla)
1487{
1488 return (__force sci_t)nla_get_u64(nla);
1489}
1490
Nicolas Dichtelf60d94c2016-04-26 10:06:11 +02001491static int nla_put_sci(struct sk_buff *skb, int attrtype, sci_t value,
1492 int padattr)
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001493{
Nicolas Dichtelf60d94c2016-04-26 10:06:11 +02001494 return nla_put_u64_64bit(skb, attrtype, (__force u64)value, padattr);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001495}
1496
1497static struct macsec_tx_sa *get_txsa_from_nl(struct net *net,
1498 struct nlattr **attrs,
1499 struct nlattr **tb_sa,
1500 struct net_device **devp,
1501 struct macsec_secy **secyp,
1502 struct macsec_tx_sc **scp,
1503 u8 *assoc_num)
1504{
1505 struct net_device *dev;
1506 struct macsec_secy *secy;
1507 struct macsec_tx_sc *tx_sc;
1508 struct macsec_tx_sa *tx_sa;
1509
1510 if (!tb_sa[MACSEC_SA_ATTR_AN])
1511 return ERR_PTR(-EINVAL);
1512
1513 *assoc_num = nla_get_u8(tb_sa[MACSEC_SA_ATTR_AN]);
1514
1515 dev = get_dev_from_nl(net, attrs);
1516 if (IS_ERR(dev))
1517 return ERR_CAST(dev);
1518
1519 if (*assoc_num >= MACSEC_NUM_AN)
1520 return ERR_PTR(-EINVAL);
1521
1522 secy = &macsec_priv(dev)->secy;
1523 tx_sc = &secy->tx_sc;
1524
1525 tx_sa = rtnl_dereference(tx_sc->sa[*assoc_num]);
1526 if (!tx_sa)
1527 return ERR_PTR(-ENODEV);
1528
1529 *devp = dev;
1530 *scp = tx_sc;
1531 *secyp = secy;
1532 return tx_sa;
1533}
1534
1535static struct macsec_rx_sc *get_rxsc_from_nl(struct net *net,
1536 struct nlattr **attrs,
1537 struct nlattr **tb_rxsc,
1538 struct net_device **devp,
1539 struct macsec_secy **secyp)
1540{
1541 struct net_device *dev;
1542 struct macsec_secy *secy;
1543 struct macsec_rx_sc *rx_sc;
1544 sci_t sci;
1545
1546 dev = get_dev_from_nl(net, attrs);
1547 if (IS_ERR(dev))
1548 return ERR_CAST(dev);
1549
1550 secy = &macsec_priv(dev)->secy;
1551
1552 if (!tb_rxsc[MACSEC_RXSC_ATTR_SCI])
1553 return ERR_PTR(-EINVAL);
1554
1555 sci = nla_get_sci(tb_rxsc[MACSEC_RXSC_ATTR_SCI]);
1556 rx_sc = find_rx_sc_rtnl(secy, sci);
1557 if (!rx_sc)
1558 return ERR_PTR(-ENODEV);
1559
1560 *secyp = secy;
1561 *devp = dev;
1562
1563 return rx_sc;
1564}
1565
1566static struct macsec_rx_sa *get_rxsa_from_nl(struct net *net,
1567 struct nlattr **attrs,
1568 struct nlattr **tb_rxsc,
1569 struct nlattr **tb_sa,
1570 struct net_device **devp,
1571 struct macsec_secy **secyp,
1572 struct macsec_rx_sc **scp,
1573 u8 *assoc_num)
1574{
1575 struct macsec_rx_sc *rx_sc;
1576 struct macsec_rx_sa *rx_sa;
1577
1578 if (!tb_sa[MACSEC_SA_ATTR_AN])
1579 return ERR_PTR(-EINVAL);
1580
1581 *assoc_num = nla_get_u8(tb_sa[MACSEC_SA_ATTR_AN]);
1582 if (*assoc_num >= MACSEC_NUM_AN)
1583 return ERR_PTR(-EINVAL);
1584
1585 rx_sc = get_rxsc_from_nl(net, attrs, tb_rxsc, devp, secyp);
1586 if (IS_ERR(rx_sc))
1587 return ERR_CAST(rx_sc);
1588
1589 rx_sa = rtnl_dereference(rx_sc->sa[*assoc_num]);
1590 if (!rx_sa)
1591 return ERR_PTR(-ENODEV);
1592
1593 *scp = rx_sc;
1594 return rx_sa;
1595}
1596
1597
1598static const struct nla_policy macsec_genl_policy[NUM_MACSEC_ATTR] = {
1599 [MACSEC_ATTR_IFINDEX] = { .type = NLA_U32 },
1600 [MACSEC_ATTR_RXSC_CONFIG] = { .type = NLA_NESTED },
1601 [MACSEC_ATTR_SA_CONFIG] = { .type = NLA_NESTED },
1602};
1603
1604static const struct nla_policy macsec_genl_rxsc_policy[NUM_MACSEC_RXSC_ATTR] = {
1605 [MACSEC_RXSC_ATTR_SCI] = { .type = NLA_U64 },
1606 [MACSEC_RXSC_ATTR_ACTIVE] = { .type = NLA_U8 },
1607};
1608
1609static const struct nla_policy macsec_genl_sa_policy[NUM_MACSEC_SA_ATTR] = {
1610 [MACSEC_SA_ATTR_AN] = { .type = NLA_U8 },
1611 [MACSEC_SA_ATTR_ACTIVE] = { .type = NLA_U8 },
1612 [MACSEC_SA_ATTR_PN] = { .type = NLA_U32 },
Sabrina Dubroca8acca6a2016-05-07 20:19:29 +02001613 [MACSEC_SA_ATTR_KEYID] = { .type = NLA_BINARY,
1614 .len = MACSEC_KEYID_LEN, },
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001615 [MACSEC_SA_ATTR_KEY] = { .type = NLA_BINARY,
1616 .len = MACSEC_MAX_KEY_LEN, },
1617};
1618
1619static int parse_sa_config(struct nlattr **attrs, struct nlattr **tb_sa)
1620{
1621 if (!attrs[MACSEC_ATTR_SA_CONFIG])
1622 return -EINVAL;
1623
1624 if (nla_parse_nested(tb_sa, MACSEC_SA_ATTR_MAX, attrs[MACSEC_ATTR_SA_CONFIG],
1625 macsec_genl_sa_policy))
1626 return -EINVAL;
1627
1628 return 0;
1629}
1630
1631static int parse_rxsc_config(struct nlattr **attrs, struct nlattr **tb_rxsc)
1632{
1633 if (!attrs[MACSEC_ATTR_RXSC_CONFIG])
1634 return -EINVAL;
1635
1636 if (nla_parse_nested(tb_rxsc, MACSEC_RXSC_ATTR_MAX, attrs[MACSEC_ATTR_RXSC_CONFIG],
1637 macsec_genl_rxsc_policy))
1638 return -EINVAL;
1639
1640 return 0;
1641}
1642
1643static bool validate_add_rxsa(struct nlattr **attrs)
1644{
1645 if (!attrs[MACSEC_SA_ATTR_AN] ||
1646 !attrs[MACSEC_SA_ATTR_KEY] ||
1647 !attrs[MACSEC_SA_ATTR_KEYID])
1648 return false;
1649
1650 if (nla_get_u8(attrs[MACSEC_SA_ATTR_AN]) >= MACSEC_NUM_AN)
1651 return false;
1652
1653 if (attrs[MACSEC_SA_ATTR_PN] && nla_get_u32(attrs[MACSEC_SA_ATTR_PN]) == 0)
1654 return false;
1655
1656 if (attrs[MACSEC_SA_ATTR_ACTIVE]) {
1657 if (nla_get_u8(attrs[MACSEC_SA_ATTR_ACTIVE]) > 1)
1658 return false;
1659 }
1660
Sabrina Dubroca8acca6a2016-05-07 20:19:29 +02001661 if (nla_len(attrs[MACSEC_SA_ATTR_KEYID]) != MACSEC_KEYID_LEN)
1662 return false;
1663
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001664 return true;
1665}
1666
1667static int macsec_add_rxsa(struct sk_buff *skb, struct genl_info *info)
1668{
1669 struct net_device *dev;
1670 struct nlattr **attrs = info->attrs;
1671 struct macsec_secy *secy;
1672 struct macsec_rx_sc *rx_sc;
1673 struct macsec_rx_sa *rx_sa;
1674 unsigned char assoc_num;
1675 struct nlattr *tb_rxsc[MACSEC_RXSC_ATTR_MAX + 1];
1676 struct nlattr *tb_sa[MACSEC_SA_ATTR_MAX + 1];
Davide Caratti34aedfe2016-07-22 15:07:57 +02001677 int err;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001678
1679 if (!attrs[MACSEC_ATTR_IFINDEX])
1680 return -EINVAL;
1681
1682 if (parse_sa_config(attrs, tb_sa))
1683 return -EINVAL;
1684
1685 if (parse_rxsc_config(attrs, tb_rxsc))
1686 return -EINVAL;
1687
1688 if (!validate_add_rxsa(tb_sa))
1689 return -EINVAL;
1690
1691 rtnl_lock();
1692 rx_sc = get_rxsc_from_nl(genl_info_net(info), attrs, tb_rxsc, &dev, &secy);
Sabrina Dubroca36b232c2016-07-29 15:37:54 +02001693 if (IS_ERR(rx_sc)) {
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001694 rtnl_unlock();
1695 return PTR_ERR(rx_sc);
1696 }
1697
1698 assoc_num = nla_get_u8(tb_sa[MACSEC_SA_ATTR_AN]);
1699
1700 if (nla_len(tb_sa[MACSEC_SA_ATTR_KEY]) != secy->key_len) {
1701 pr_notice("macsec: nl: add_rxsa: bad key length: %d != %d\n",
1702 nla_len(tb_sa[MACSEC_SA_ATTR_KEY]), secy->key_len);
1703 rtnl_unlock();
1704 return -EINVAL;
1705 }
1706
1707 rx_sa = rtnl_dereference(rx_sc->sa[assoc_num]);
1708 if (rx_sa) {
1709 rtnl_unlock();
1710 return -EBUSY;
1711 }
1712
1713 rx_sa = kmalloc(sizeof(*rx_sa), GFP_KERNEL);
Davide Caratti34aedfe2016-07-22 15:07:57 +02001714 if (!rx_sa) {
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001715 rtnl_unlock();
1716 return -ENOMEM;
1717 }
1718
Davide Caratti34aedfe2016-07-22 15:07:57 +02001719 err = init_rx_sa(rx_sa, nla_data(tb_sa[MACSEC_SA_ATTR_KEY]),
1720 secy->key_len, secy->icv_len);
1721 if (err < 0) {
1722 kfree(rx_sa);
1723 rtnl_unlock();
1724 return err;
1725 }
1726
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001727 if (tb_sa[MACSEC_SA_ATTR_PN]) {
1728 spin_lock_bh(&rx_sa->lock);
1729 rx_sa->next_pn = nla_get_u32(tb_sa[MACSEC_SA_ATTR_PN]);
1730 spin_unlock_bh(&rx_sa->lock);
1731 }
1732
1733 if (tb_sa[MACSEC_SA_ATTR_ACTIVE])
1734 rx_sa->active = !!nla_get_u8(tb_sa[MACSEC_SA_ATTR_ACTIVE]);
1735
Sabrina Dubroca1968a0b2016-05-18 13:34:40 +02001736 nla_memcpy(rx_sa->key.id, tb_sa[MACSEC_SA_ATTR_KEYID], MACSEC_KEYID_LEN);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001737 rx_sa->sc = rx_sc;
1738 rcu_assign_pointer(rx_sc->sa[assoc_num], rx_sa);
1739
1740 rtnl_unlock();
1741
1742 return 0;
1743}
1744
1745static bool validate_add_rxsc(struct nlattr **attrs)
1746{
1747 if (!attrs[MACSEC_RXSC_ATTR_SCI])
1748 return false;
1749
1750 if (attrs[MACSEC_RXSC_ATTR_ACTIVE]) {
1751 if (nla_get_u8(attrs[MACSEC_RXSC_ATTR_ACTIVE]) > 1)
1752 return false;
1753 }
1754
1755 return true;
1756}
1757
1758static int macsec_add_rxsc(struct sk_buff *skb, struct genl_info *info)
1759{
1760 struct net_device *dev;
1761 sci_t sci = MACSEC_UNDEF_SCI;
1762 struct nlattr **attrs = info->attrs;
1763 struct macsec_rx_sc *rx_sc;
1764 struct nlattr *tb_rxsc[MACSEC_RXSC_ATTR_MAX + 1];
1765
1766 if (!attrs[MACSEC_ATTR_IFINDEX])
1767 return -EINVAL;
1768
1769 if (parse_rxsc_config(attrs, tb_rxsc))
1770 return -EINVAL;
1771
1772 if (!validate_add_rxsc(tb_rxsc))
1773 return -EINVAL;
1774
1775 rtnl_lock();
1776 dev = get_dev_from_nl(genl_info_net(info), attrs);
1777 if (IS_ERR(dev)) {
1778 rtnl_unlock();
1779 return PTR_ERR(dev);
1780 }
1781
1782 sci = nla_get_sci(tb_rxsc[MACSEC_RXSC_ATTR_SCI]);
1783
1784 rx_sc = create_rx_sc(dev, sci);
1785 if (IS_ERR(rx_sc)) {
1786 rtnl_unlock();
1787 return PTR_ERR(rx_sc);
1788 }
1789
1790 if (tb_rxsc[MACSEC_RXSC_ATTR_ACTIVE])
1791 rx_sc->active = !!nla_get_u8(tb_rxsc[MACSEC_RXSC_ATTR_ACTIVE]);
1792
1793 rtnl_unlock();
1794
1795 return 0;
1796}
1797
1798static bool validate_add_txsa(struct nlattr **attrs)
1799{
1800 if (!attrs[MACSEC_SA_ATTR_AN] ||
1801 !attrs[MACSEC_SA_ATTR_PN] ||
1802 !attrs[MACSEC_SA_ATTR_KEY] ||
1803 !attrs[MACSEC_SA_ATTR_KEYID])
1804 return false;
1805
1806 if (nla_get_u8(attrs[MACSEC_SA_ATTR_AN]) >= MACSEC_NUM_AN)
1807 return false;
1808
1809 if (nla_get_u32(attrs[MACSEC_SA_ATTR_PN]) == 0)
1810 return false;
1811
1812 if (attrs[MACSEC_SA_ATTR_ACTIVE]) {
1813 if (nla_get_u8(attrs[MACSEC_SA_ATTR_ACTIVE]) > 1)
1814 return false;
1815 }
1816
Sabrina Dubroca8acca6a2016-05-07 20:19:29 +02001817 if (nla_len(attrs[MACSEC_SA_ATTR_KEYID]) != MACSEC_KEYID_LEN)
1818 return false;
1819
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001820 return true;
1821}
1822
1823static int macsec_add_txsa(struct sk_buff *skb, struct genl_info *info)
1824{
1825 struct net_device *dev;
1826 struct nlattr **attrs = info->attrs;
1827 struct macsec_secy *secy;
1828 struct macsec_tx_sc *tx_sc;
1829 struct macsec_tx_sa *tx_sa;
1830 unsigned char assoc_num;
1831 struct nlattr *tb_sa[MACSEC_SA_ATTR_MAX + 1];
Davide Caratti34aedfe2016-07-22 15:07:57 +02001832 int err;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001833
1834 if (!attrs[MACSEC_ATTR_IFINDEX])
1835 return -EINVAL;
1836
1837 if (parse_sa_config(attrs, tb_sa))
1838 return -EINVAL;
1839
1840 if (!validate_add_txsa(tb_sa))
1841 return -EINVAL;
1842
1843 rtnl_lock();
1844 dev = get_dev_from_nl(genl_info_net(info), attrs);
1845 if (IS_ERR(dev)) {
1846 rtnl_unlock();
1847 return PTR_ERR(dev);
1848 }
1849
1850 secy = &macsec_priv(dev)->secy;
1851 tx_sc = &secy->tx_sc;
1852
1853 assoc_num = nla_get_u8(tb_sa[MACSEC_SA_ATTR_AN]);
1854
1855 if (nla_len(tb_sa[MACSEC_SA_ATTR_KEY]) != secy->key_len) {
1856 pr_notice("macsec: nl: add_txsa: bad key length: %d != %d\n",
1857 nla_len(tb_sa[MACSEC_SA_ATTR_KEY]), secy->key_len);
1858 rtnl_unlock();
1859 return -EINVAL;
1860 }
1861
1862 tx_sa = rtnl_dereference(tx_sc->sa[assoc_num]);
1863 if (tx_sa) {
1864 rtnl_unlock();
1865 return -EBUSY;
1866 }
1867
1868 tx_sa = kmalloc(sizeof(*tx_sa), GFP_KERNEL);
Davide Caratti34aedfe2016-07-22 15:07:57 +02001869 if (!tx_sa) {
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001870 rtnl_unlock();
1871 return -ENOMEM;
1872 }
1873
Davide Caratti34aedfe2016-07-22 15:07:57 +02001874 err = init_tx_sa(tx_sa, nla_data(tb_sa[MACSEC_SA_ATTR_KEY]),
1875 secy->key_len, secy->icv_len);
1876 if (err < 0) {
1877 kfree(tx_sa);
1878 rtnl_unlock();
1879 return err;
1880 }
1881
Sabrina Dubroca1968a0b2016-05-18 13:34:40 +02001882 nla_memcpy(tx_sa->key.id, tb_sa[MACSEC_SA_ATTR_KEYID], MACSEC_KEYID_LEN);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001883
1884 spin_lock_bh(&tx_sa->lock);
1885 tx_sa->next_pn = nla_get_u32(tb_sa[MACSEC_SA_ATTR_PN]);
1886 spin_unlock_bh(&tx_sa->lock);
1887
1888 if (tb_sa[MACSEC_SA_ATTR_ACTIVE])
1889 tx_sa->active = !!nla_get_u8(tb_sa[MACSEC_SA_ATTR_ACTIVE]);
1890
1891 if (assoc_num == tx_sc->encoding_sa && tx_sa->active)
1892 secy->operational = true;
1893
1894 rcu_assign_pointer(tx_sc->sa[assoc_num], tx_sa);
1895
1896 rtnl_unlock();
1897
1898 return 0;
1899}
1900
1901static int macsec_del_rxsa(struct sk_buff *skb, struct genl_info *info)
1902{
1903 struct nlattr **attrs = info->attrs;
1904 struct net_device *dev;
1905 struct macsec_secy *secy;
1906 struct macsec_rx_sc *rx_sc;
1907 struct macsec_rx_sa *rx_sa;
1908 u8 assoc_num;
1909 struct nlattr *tb_rxsc[MACSEC_RXSC_ATTR_MAX + 1];
1910 struct nlattr *tb_sa[MACSEC_SA_ATTR_MAX + 1];
1911
1912 if (!attrs[MACSEC_ATTR_IFINDEX])
1913 return -EINVAL;
1914
1915 if (parse_sa_config(attrs, tb_sa))
1916 return -EINVAL;
1917
1918 if (parse_rxsc_config(attrs, tb_rxsc))
1919 return -EINVAL;
1920
1921 rtnl_lock();
1922 rx_sa = get_rxsa_from_nl(genl_info_net(info), attrs, tb_rxsc, tb_sa,
1923 &dev, &secy, &rx_sc, &assoc_num);
1924 if (IS_ERR(rx_sa)) {
1925 rtnl_unlock();
1926 return PTR_ERR(rx_sa);
1927 }
1928
1929 if (rx_sa->active) {
1930 rtnl_unlock();
1931 return -EBUSY;
1932 }
1933
1934 RCU_INIT_POINTER(rx_sc->sa[assoc_num], NULL);
1935 clear_rx_sa(rx_sa);
1936
1937 rtnl_unlock();
1938
1939 return 0;
1940}
1941
1942static int macsec_del_rxsc(struct sk_buff *skb, struct genl_info *info)
1943{
1944 struct nlattr **attrs = info->attrs;
1945 struct net_device *dev;
1946 struct macsec_secy *secy;
1947 struct macsec_rx_sc *rx_sc;
1948 sci_t sci;
1949 struct nlattr *tb_rxsc[MACSEC_RXSC_ATTR_MAX + 1];
1950
1951 if (!attrs[MACSEC_ATTR_IFINDEX])
1952 return -EINVAL;
1953
1954 if (parse_rxsc_config(attrs, tb_rxsc))
1955 return -EINVAL;
1956
1957 if (!tb_rxsc[MACSEC_RXSC_ATTR_SCI])
1958 return -EINVAL;
1959
1960 rtnl_lock();
1961 dev = get_dev_from_nl(genl_info_net(info), info->attrs);
1962 if (IS_ERR(dev)) {
1963 rtnl_unlock();
1964 return PTR_ERR(dev);
1965 }
1966
1967 secy = &macsec_priv(dev)->secy;
1968 sci = nla_get_sci(tb_rxsc[MACSEC_RXSC_ATTR_SCI]);
1969
1970 rx_sc = del_rx_sc(secy, sci);
1971 if (!rx_sc) {
1972 rtnl_unlock();
1973 return -ENODEV;
1974 }
1975
1976 free_rx_sc(rx_sc);
1977 rtnl_unlock();
1978
1979 return 0;
1980}
1981
1982static int macsec_del_txsa(struct sk_buff *skb, struct genl_info *info)
1983{
1984 struct nlattr **attrs = info->attrs;
1985 struct net_device *dev;
1986 struct macsec_secy *secy;
1987 struct macsec_tx_sc *tx_sc;
1988 struct macsec_tx_sa *tx_sa;
1989 u8 assoc_num;
1990 struct nlattr *tb_sa[MACSEC_SA_ATTR_MAX + 1];
1991
1992 if (!attrs[MACSEC_ATTR_IFINDEX])
1993 return -EINVAL;
1994
1995 if (parse_sa_config(attrs, tb_sa))
1996 return -EINVAL;
1997
1998 rtnl_lock();
1999 tx_sa = get_txsa_from_nl(genl_info_net(info), attrs, tb_sa,
2000 &dev, &secy, &tx_sc, &assoc_num);
2001 if (IS_ERR(tx_sa)) {
2002 rtnl_unlock();
2003 return PTR_ERR(tx_sa);
2004 }
2005
2006 if (tx_sa->active) {
2007 rtnl_unlock();
2008 return -EBUSY;
2009 }
2010
2011 RCU_INIT_POINTER(tx_sc->sa[assoc_num], NULL);
2012 clear_tx_sa(tx_sa);
2013
2014 rtnl_unlock();
2015
2016 return 0;
2017}
2018
2019static bool validate_upd_sa(struct nlattr **attrs)
2020{
2021 if (!attrs[MACSEC_SA_ATTR_AN] ||
2022 attrs[MACSEC_SA_ATTR_KEY] ||
2023 attrs[MACSEC_SA_ATTR_KEYID])
2024 return false;
2025
2026 if (nla_get_u8(attrs[MACSEC_SA_ATTR_AN]) >= MACSEC_NUM_AN)
2027 return false;
2028
2029 if (attrs[MACSEC_SA_ATTR_PN] && nla_get_u32(attrs[MACSEC_SA_ATTR_PN]) == 0)
2030 return false;
2031
2032 if (attrs[MACSEC_SA_ATTR_ACTIVE]) {
2033 if (nla_get_u8(attrs[MACSEC_SA_ATTR_ACTIVE]) > 1)
2034 return false;
2035 }
2036
2037 return true;
2038}
2039
2040static int macsec_upd_txsa(struct sk_buff *skb, struct genl_info *info)
2041{
2042 struct nlattr **attrs = info->attrs;
2043 struct net_device *dev;
2044 struct macsec_secy *secy;
2045 struct macsec_tx_sc *tx_sc;
2046 struct macsec_tx_sa *tx_sa;
2047 u8 assoc_num;
2048 struct nlattr *tb_sa[MACSEC_SA_ATTR_MAX + 1];
2049
2050 if (!attrs[MACSEC_ATTR_IFINDEX])
2051 return -EINVAL;
2052
2053 if (parse_sa_config(attrs, tb_sa))
2054 return -EINVAL;
2055
2056 if (!validate_upd_sa(tb_sa))
2057 return -EINVAL;
2058
2059 rtnl_lock();
2060 tx_sa = get_txsa_from_nl(genl_info_net(info), attrs, tb_sa,
2061 &dev, &secy, &tx_sc, &assoc_num);
2062 if (IS_ERR(tx_sa)) {
2063 rtnl_unlock();
2064 return PTR_ERR(tx_sa);
2065 }
2066
2067 if (tb_sa[MACSEC_SA_ATTR_PN]) {
2068 spin_lock_bh(&tx_sa->lock);
2069 tx_sa->next_pn = nla_get_u32(tb_sa[MACSEC_SA_ATTR_PN]);
2070 spin_unlock_bh(&tx_sa->lock);
2071 }
2072
2073 if (tb_sa[MACSEC_SA_ATTR_ACTIVE])
2074 tx_sa->active = nla_get_u8(tb_sa[MACSEC_SA_ATTR_ACTIVE]);
2075
2076 if (assoc_num == tx_sc->encoding_sa)
2077 secy->operational = tx_sa->active;
2078
2079 rtnl_unlock();
2080
2081 return 0;
2082}
2083
2084static int macsec_upd_rxsa(struct sk_buff *skb, struct genl_info *info)
2085{
2086 struct nlattr **attrs = info->attrs;
2087 struct net_device *dev;
2088 struct macsec_secy *secy;
2089 struct macsec_rx_sc *rx_sc;
2090 struct macsec_rx_sa *rx_sa;
2091 u8 assoc_num;
2092 struct nlattr *tb_rxsc[MACSEC_RXSC_ATTR_MAX + 1];
2093 struct nlattr *tb_sa[MACSEC_SA_ATTR_MAX + 1];
2094
2095 if (!attrs[MACSEC_ATTR_IFINDEX])
2096 return -EINVAL;
2097
2098 if (parse_rxsc_config(attrs, tb_rxsc))
2099 return -EINVAL;
2100
2101 if (parse_sa_config(attrs, tb_sa))
2102 return -EINVAL;
2103
2104 if (!validate_upd_sa(tb_sa))
2105 return -EINVAL;
2106
2107 rtnl_lock();
2108 rx_sa = get_rxsa_from_nl(genl_info_net(info), attrs, tb_rxsc, tb_sa,
2109 &dev, &secy, &rx_sc, &assoc_num);
2110 if (IS_ERR(rx_sa)) {
2111 rtnl_unlock();
2112 return PTR_ERR(rx_sa);
2113 }
2114
2115 if (tb_sa[MACSEC_SA_ATTR_PN]) {
2116 spin_lock_bh(&rx_sa->lock);
2117 rx_sa->next_pn = nla_get_u32(tb_sa[MACSEC_SA_ATTR_PN]);
2118 spin_unlock_bh(&rx_sa->lock);
2119 }
2120
2121 if (tb_sa[MACSEC_SA_ATTR_ACTIVE])
2122 rx_sa->active = nla_get_u8(tb_sa[MACSEC_SA_ATTR_ACTIVE]);
2123
2124 rtnl_unlock();
2125 return 0;
2126}
2127
2128static int macsec_upd_rxsc(struct sk_buff *skb, struct genl_info *info)
2129{
2130 struct nlattr **attrs = info->attrs;
2131 struct net_device *dev;
2132 struct macsec_secy *secy;
2133 struct macsec_rx_sc *rx_sc;
2134 struct nlattr *tb_rxsc[MACSEC_RXSC_ATTR_MAX + 1];
2135
2136 if (!attrs[MACSEC_ATTR_IFINDEX])
2137 return -EINVAL;
2138
2139 if (parse_rxsc_config(attrs, tb_rxsc))
2140 return -EINVAL;
2141
2142 if (!validate_add_rxsc(tb_rxsc))
2143 return -EINVAL;
2144
2145 rtnl_lock();
2146 rx_sc = get_rxsc_from_nl(genl_info_net(info), attrs, tb_rxsc, &dev, &secy);
2147 if (IS_ERR(rx_sc)) {
2148 rtnl_unlock();
2149 return PTR_ERR(rx_sc);
2150 }
2151
2152 if (tb_rxsc[MACSEC_RXSC_ATTR_ACTIVE]) {
2153 bool new = !!nla_get_u8(tb_rxsc[MACSEC_RXSC_ATTR_ACTIVE]);
2154
2155 if (rx_sc->active != new)
2156 secy->n_rx_sc += new ? 1 : -1;
2157
2158 rx_sc->active = new;
2159 }
2160
2161 rtnl_unlock();
2162
2163 return 0;
2164}
2165
2166static int copy_tx_sa_stats(struct sk_buff *skb,
2167 struct macsec_tx_sa_stats __percpu *pstats)
2168{
2169 struct macsec_tx_sa_stats sum = {0, };
2170 int cpu;
2171
2172 for_each_possible_cpu(cpu) {
2173 const struct macsec_tx_sa_stats *stats = per_cpu_ptr(pstats, cpu);
2174
2175 sum.OutPktsProtected += stats->OutPktsProtected;
2176 sum.OutPktsEncrypted += stats->OutPktsEncrypted;
2177 }
2178
2179 if (nla_put_u32(skb, MACSEC_SA_STATS_ATTR_OUT_PKTS_PROTECTED, sum.OutPktsProtected) ||
2180 nla_put_u32(skb, MACSEC_SA_STATS_ATTR_OUT_PKTS_ENCRYPTED, sum.OutPktsEncrypted))
2181 return -EMSGSIZE;
2182
2183 return 0;
2184}
2185
2186static int copy_rx_sa_stats(struct sk_buff *skb,
2187 struct macsec_rx_sa_stats __percpu *pstats)
2188{
2189 struct macsec_rx_sa_stats sum = {0, };
2190 int cpu;
2191
2192 for_each_possible_cpu(cpu) {
2193 const struct macsec_rx_sa_stats *stats = per_cpu_ptr(pstats, cpu);
2194
2195 sum.InPktsOK += stats->InPktsOK;
2196 sum.InPktsInvalid += stats->InPktsInvalid;
2197 sum.InPktsNotValid += stats->InPktsNotValid;
2198 sum.InPktsNotUsingSA += stats->InPktsNotUsingSA;
2199 sum.InPktsUnusedSA += stats->InPktsUnusedSA;
2200 }
2201
2202 if (nla_put_u32(skb, MACSEC_SA_STATS_ATTR_IN_PKTS_OK, sum.InPktsOK) ||
2203 nla_put_u32(skb, MACSEC_SA_STATS_ATTR_IN_PKTS_INVALID, sum.InPktsInvalid) ||
2204 nla_put_u32(skb, MACSEC_SA_STATS_ATTR_IN_PKTS_NOT_VALID, sum.InPktsNotValid) ||
2205 nla_put_u32(skb, MACSEC_SA_STATS_ATTR_IN_PKTS_NOT_USING_SA, sum.InPktsNotUsingSA) ||
2206 nla_put_u32(skb, MACSEC_SA_STATS_ATTR_IN_PKTS_UNUSED_SA, sum.InPktsUnusedSA))
2207 return -EMSGSIZE;
2208
2209 return 0;
2210}
2211
2212static int copy_rx_sc_stats(struct sk_buff *skb,
2213 struct pcpu_rx_sc_stats __percpu *pstats)
2214{
2215 struct macsec_rx_sc_stats sum = {0, };
2216 int cpu;
2217
2218 for_each_possible_cpu(cpu) {
2219 const struct pcpu_rx_sc_stats *stats;
2220 struct macsec_rx_sc_stats tmp;
2221 unsigned int start;
2222
2223 stats = per_cpu_ptr(pstats, cpu);
2224 do {
2225 start = u64_stats_fetch_begin_irq(&stats->syncp);
2226 memcpy(&tmp, &stats->stats, sizeof(tmp));
2227 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
2228
2229 sum.InOctetsValidated += tmp.InOctetsValidated;
2230 sum.InOctetsDecrypted += tmp.InOctetsDecrypted;
2231 sum.InPktsUnchecked += tmp.InPktsUnchecked;
2232 sum.InPktsDelayed += tmp.InPktsDelayed;
2233 sum.InPktsOK += tmp.InPktsOK;
2234 sum.InPktsInvalid += tmp.InPktsInvalid;
2235 sum.InPktsLate += tmp.InPktsLate;
2236 sum.InPktsNotValid += tmp.InPktsNotValid;
2237 sum.InPktsNotUsingSA += tmp.InPktsNotUsingSA;
2238 sum.InPktsUnusedSA += tmp.InPktsUnusedSA;
2239 }
2240
Nicolas Dichtelf60d94c2016-04-26 10:06:11 +02002241 if (nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_OCTETS_VALIDATED,
2242 sum.InOctetsValidated,
2243 MACSEC_RXSC_STATS_ATTR_PAD) ||
2244 nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_OCTETS_DECRYPTED,
2245 sum.InOctetsDecrypted,
2246 MACSEC_RXSC_STATS_ATTR_PAD) ||
2247 nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_UNCHECKED,
2248 sum.InPktsUnchecked,
2249 MACSEC_RXSC_STATS_ATTR_PAD) ||
2250 nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_DELAYED,
2251 sum.InPktsDelayed,
2252 MACSEC_RXSC_STATS_ATTR_PAD) ||
2253 nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_OK,
2254 sum.InPktsOK,
2255 MACSEC_RXSC_STATS_ATTR_PAD) ||
2256 nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_INVALID,
2257 sum.InPktsInvalid,
2258 MACSEC_RXSC_STATS_ATTR_PAD) ||
2259 nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_LATE,
2260 sum.InPktsLate,
2261 MACSEC_RXSC_STATS_ATTR_PAD) ||
2262 nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_NOT_VALID,
2263 sum.InPktsNotValid,
2264 MACSEC_RXSC_STATS_ATTR_PAD) ||
2265 nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_NOT_USING_SA,
2266 sum.InPktsNotUsingSA,
2267 MACSEC_RXSC_STATS_ATTR_PAD) ||
2268 nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_UNUSED_SA,
2269 sum.InPktsUnusedSA,
2270 MACSEC_RXSC_STATS_ATTR_PAD))
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002271 return -EMSGSIZE;
2272
2273 return 0;
2274}
2275
2276static int copy_tx_sc_stats(struct sk_buff *skb,
2277 struct pcpu_tx_sc_stats __percpu *pstats)
2278{
2279 struct macsec_tx_sc_stats sum = {0, };
2280 int cpu;
2281
2282 for_each_possible_cpu(cpu) {
2283 const struct pcpu_tx_sc_stats *stats;
2284 struct macsec_tx_sc_stats tmp;
2285 unsigned int start;
2286
2287 stats = per_cpu_ptr(pstats, cpu);
2288 do {
2289 start = u64_stats_fetch_begin_irq(&stats->syncp);
2290 memcpy(&tmp, &stats->stats, sizeof(tmp));
2291 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
2292
2293 sum.OutPktsProtected += tmp.OutPktsProtected;
2294 sum.OutPktsEncrypted += tmp.OutPktsEncrypted;
2295 sum.OutOctetsProtected += tmp.OutOctetsProtected;
2296 sum.OutOctetsEncrypted += tmp.OutOctetsEncrypted;
2297 }
2298
Nicolas Dichtelf60d94c2016-04-26 10:06:11 +02002299 if (nla_put_u64_64bit(skb, MACSEC_TXSC_STATS_ATTR_OUT_PKTS_PROTECTED,
2300 sum.OutPktsProtected,
2301 MACSEC_TXSC_STATS_ATTR_PAD) ||
2302 nla_put_u64_64bit(skb, MACSEC_TXSC_STATS_ATTR_OUT_PKTS_ENCRYPTED,
2303 sum.OutPktsEncrypted,
2304 MACSEC_TXSC_STATS_ATTR_PAD) ||
2305 nla_put_u64_64bit(skb, MACSEC_TXSC_STATS_ATTR_OUT_OCTETS_PROTECTED,
2306 sum.OutOctetsProtected,
2307 MACSEC_TXSC_STATS_ATTR_PAD) ||
2308 nla_put_u64_64bit(skb, MACSEC_TXSC_STATS_ATTR_OUT_OCTETS_ENCRYPTED,
2309 sum.OutOctetsEncrypted,
2310 MACSEC_TXSC_STATS_ATTR_PAD))
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002311 return -EMSGSIZE;
2312
2313 return 0;
2314}
2315
2316static int copy_secy_stats(struct sk_buff *skb,
2317 struct pcpu_secy_stats __percpu *pstats)
2318{
2319 struct macsec_dev_stats sum = {0, };
2320 int cpu;
2321
2322 for_each_possible_cpu(cpu) {
2323 const struct pcpu_secy_stats *stats;
2324 struct macsec_dev_stats tmp;
2325 unsigned int start;
2326
2327 stats = per_cpu_ptr(pstats, cpu);
2328 do {
2329 start = u64_stats_fetch_begin_irq(&stats->syncp);
2330 memcpy(&tmp, &stats->stats, sizeof(tmp));
2331 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
2332
2333 sum.OutPktsUntagged += tmp.OutPktsUntagged;
2334 sum.InPktsUntagged += tmp.InPktsUntagged;
2335 sum.OutPktsTooLong += tmp.OutPktsTooLong;
2336 sum.InPktsNoTag += tmp.InPktsNoTag;
2337 sum.InPktsBadTag += tmp.InPktsBadTag;
2338 sum.InPktsUnknownSCI += tmp.InPktsUnknownSCI;
2339 sum.InPktsNoSCI += tmp.InPktsNoSCI;
2340 sum.InPktsOverrun += tmp.InPktsOverrun;
2341 }
2342
Nicolas Dichtelf60d94c2016-04-26 10:06:11 +02002343 if (nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_OUT_PKTS_UNTAGGED,
2344 sum.OutPktsUntagged,
2345 MACSEC_SECY_STATS_ATTR_PAD) ||
2346 nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_IN_PKTS_UNTAGGED,
2347 sum.InPktsUntagged,
2348 MACSEC_SECY_STATS_ATTR_PAD) ||
2349 nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_OUT_PKTS_TOO_LONG,
2350 sum.OutPktsTooLong,
2351 MACSEC_SECY_STATS_ATTR_PAD) ||
2352 nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_IN_PKTS_NO_TAG,
2353 sum.InPktsNoTag,
2354 MACSEC_SECY_STATS_ATTR_PAD) ||
2355 nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_IN_PKTS_BAD_TAG,
2356 sum.InPktsBadTag,
2357 MACSEC_SECY_STATS_ATTR_PAD) ||
2358 nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_IN_PKTS_UNKNOWN_SCI,
2359 sum.InPktsUnknownSCI,
2360 MACSEC_SECY_STATS_ATTR_PAD) ||
2361 nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_IN_PKTS_NO_SCI,
2362 sum.InPktsNoSCI,
2363 MACSEC_SECY_STATS_ATTR_PAD) ||
2364 nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_IN_PKTS_OVERRUN,
2365 sum.InPktsOverrun,
2366 MACSEC_SECY_STATS_ATTR_PAD))
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002367 return -EMSGSIZE;
2368
2369 return 0;
2370}
2371
2372static int nla_put_secy(struct macsec_secy *secy, struct sk_buff *skb)
2373{
2374 struct macsec_tx_sc *tx_sc = &secy->tx_sc;
2375 struct nlattr *secy_nest = nla_nest_start(skb, MACSEC_ATTR_SECY);
2376
2377 if (!secy_nest)
2378 return 1;
2379
Nicolas Dichtelf60d94c2016-04-26 10:06:11 +02002380 if (nla_put_sci(skb, MACSEC_SECY_ATTR_SCI, secy->sci,
2381 MACSEC_SECY_ATTR_PAD) ||
2382 nla_put_u64_64bit(skb, MACSEC_SECY_ATTR_CIPHER_SUITE,
David S. Millerc0cc5312016-04-27 15:43:10 -04002383 MACSEC_DEFAULT_CIPHER_ID,
Nicolas Dichtelf60d94c2016-04-26 10:06:11 +02002384 MACSEC_SECY_ATTR_PAD) ||
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002385 nla_put_u8(skb, MACSEC_SECY_ATTR_ICV_LEN, secy->icv_len) ||
2386 nla_put_u8(skb, MACSEC_SECY_ATTR_OPER, secy->operational) ||
2387 nla_put_u8(skb, MACSEC_SECY_ATTR_PROTECT, secy->protect_frames) ||
2388 nla_put_u8(skb, MACSEC_SECY_ATTR_REPLAY, secy->replay_protect) ||
2389 nla_put_u8(skb, MACSEC_SECY_ATTR_VALIDATE, secy->validate_frames) ||
2390 nla_put_u8(skb, MACSEC_SECY_ATTR_ENCRYPT, tx_sc->encrypt) ||
2391 nla_put_u8(skb, MACSEC_SECY_ATTR_INC_SCI, tx_sc->send_sci) ||
2392 nla_put_u8(skb, MACSEC_SECY_ATTR_ES, tx_sc->end_station) ||
2393 nla_put_u8(skb, MACSEC_SECY_ATTR_SCB, tx_sc->scb) ||
2394 nla_put_u8(skb, MACSEC_SECY_ATTR_ENCODING_SA, tx_sc->encoding_sa))
2395 goto cancel;
2396
2397 if (secy->replay_protect) {
2398 if (nla_put_u32(skb, MACSEC_SECY_ATTR_WINDOW, secy->replay_window))
2399 goto cancel;
2400 }
2401
2402 nla_nest_end(skb, secy_nest);
2403 return 0;
2404
2405cancel:
2406 nla_nest_cancel(skb, secy_nest);
2407 return 1;
2408}
2409
2410static int dump_secy(struct macsec_secy *secy, struct net_device *dev,
2411 struct sk_buff *skb, struct netlink_callback *cb)
2412{
2413 struct macsec_rx_sc *rx_sc;
2414 struct macsec_tx_sc *tx_sc = &secy->tx_sc;
2415 struct nlattr *txsa_list, *rxsc_list;
2416 int i, j;
2417 void *hdr;
2418 struct nlattr *attr;
2419
2420 hdr = genlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
2421 &macsec_fam, NLM_F_MULTI, MACSEC_CMD_GET_TXSC);
2422 if (!hdr)
2423 return -EMSGSIZE;
2424
Sabrina Dubroca96cfc502016-04-22 11:28:05 +02002425 genl_dump_check_consistent(cb, hdr, &macsec_fam);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002426
2427 if (nla_put_u32(skb, MACSEC_ATTR_IFINDEX, dev->ifindex))
2428 goto nla_put_failure;
2429
2430 if (nla_put_secy(secy, skb))
2431 goto nla_put_failure;
2432
2433 attr = nla_nest_start(skb, MACSEC_ATTR_TXSC_STATS);
2434 if (!attr)
2435 goto nla_put_failure;
2436 if (copy_tx_sc_stats(skb, tx_sc->stats)) {
2437 nla_nest_cancel(skb, attr);
2438 goto nla_put_failure;
2439 }
2440 nla_nest_end(skb, attr);
2441
2442 attr = nla_nest_start(skb, MACSEC_ATTR_SECY_STATS);
2443 if (!attr)
2444 goto nla_put_failure;
2445 if (copy_secy_stats(skb, macsec_priv(dev)->stats)) {
2446 nla_nest_cancel(skb, attr);
2447 goto nla_put_failure;
2448 }
2449 nla_nest_end(skb, attr);
2450
2451 txsa_list = nla_nest_start(skb, MACSEC_ATTR_TXSA_LIST);
2452 if (!txsa_list)
2453 goto nla_put_failure;
2454 for (i = 0, j = 1; i < MACSEC_NUM_AN; i++) {
2455 struct macsec_tx_sa *tx_sa = rtnl_dereference(tx_sc->sa[i]);
2456 struct nlattr *txsa_nest;
2457
2458 if (!tx_sa)
2459 continue;
2460
2461 txsa_nest = nla_nest_start(skb, j++);
2462 if (!txsa_nest) {
2463 nla_nest_cancel(skb, txsa_list);
2464 goto nla_put_failure;
2465 }
2466
2467 if (nla_put_u8(skb, MACSEC_SA_ATTR_AN, i) ||
2468 nla_put_u32(skb, MACSEC_SA_ATTR_PN, tx_sa->next_pn) ||
Sabrina Dubroca8acca6a2016-05-07 20:19:29 +02002469 nla_put(skb, MACSEC_SA_ATTR_KEYID, MACSEC_KEYID_LEN, tx_sa->key.id) ||
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002470 nla_put_u8(skb, MACSEC_SA_ATTR_ACTIVE, tx_sa->active)) {
2471 nla_nest_cancel(skb, txsa_nest);
2472 nla_nest_cancel(skb, txsa_list);
2473 goto nla_put_failure;
2474 }
2475
2476 attr = nla_nest_start(skb, MACSEC_SA_ATTR_STATS);
2477 if (!attr) {
2478 nla_nest_cancel(skb, txsa_nest);
2479 nla_nest_cancel(skb, txsa_list);
2480 goto nla_put_failure;
2481 }
2482 if (copy_tx_sa_stats(skb, tx_sa->stats)) {
2483 nla_nest_cancel(skb, attr);
2484 nla_nest_cancel(skb, txsa_nest);
2485 nla_nest_cancel(skb, txsa_list);
2486 goto nla_put_failure;
2487 }
2488 nla_nest_end(skb, attr);
2489
2490 nla_nest_end(skb, txsa_nest);
2491 }
2492 nla_nest_end(skb, txsa_list);
2493
2494 rxsc_list = nla_nest_start(skb, MACSEC_ATTR_RXSC_LIST);
2495 if (!rxsc_list)
2496 goto nla_put_failure;
2497
2498 j = 1;
2499 for_each_rxsc_rtnl(secy, rx_sc) {
2500 int k;
2501 struct nlattr *rxsa_list;
2502 struct nlattr *rxsc_nest = nla_nest_start(skb, j++);
2503
2504 if (!rxsc_nest) {
2505 nla_nest_cancel(skb, rxsc_list);
2506 goto nla_put_failure;
2507 }
2508
2509 if (nla_put_u8(skb, MACSEC_RXSC_ATTR_ACTIVE, rx_sc->active) ||
Nicolas Dichtelf60d94c2016-04-26 10:06:11 +02002510 nla_put_sci(skb, MACSEC_RXSC_ATTR_SCI, rx_sc->sci,
2511 MACSEC_RXSC_ATTR_PAD)) {
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002512 nla_nest_cancel(skb, rxsc_nest);
2513 nla_nest_cancel(skb, rxsc_list);
2514 goto nla_put_failure;
2515 }
2516
2517 attr = nla_nest_start(skb, MACSEC_RXSC_ATTR_STATS);
2518 if (!attr) {
2519 nla_nest_cancel(skb, rxsc_nest);
2520 nla_nest_cancel(skb, rxsc_list);
2521 goto nla_put_failure;
2522 }
2523 if (copy_rx_sc_stats(skb, rx_sc->stats)) {
2524 nla_nest_cancel(skb, attr);
2525 nla_nest_cancel(skb, rxsc_nest);
2526 nla_nest_cancel(skb, rxsc_list);
2527 goto nla_put_failure;
2528 }
2529 nla_nest_end(skb, attr);
2530
2531 rxsa_list = nla_nest_start(skb, MACSEC_RXSC_ATTR_SA_LIST);
2532 if (!rxsa_list) {
2533 nla_nest_cancel(skb, rxsc_nest);
2534 nla_nest_cancel(skb, rxsc_list);
2535 goto nla_put_failure;
2536 }
2537
2538 for (i = 0, k = 1; i < MACSEC_NUM_AN; i++) {
2539 struct macsec_rx_sa *rx_sa = rtnl_dereference(rx_sc->sa[i]);
2540 struct nlattr *rxsa_nest;
2541
2542 if (!rx_sa)
2543 continue;
2544
2545 rxsa_nest = nla_nest_start(skb, k++);
2546 if (!rxsa_nest) {
2547 nla_nest_cancel(skb, rxsa_list);
2548 nla_nest_cancel(skb, rxsc_nest);
2549 nla_nest_cancel(skb, rxsc_list);
2550 goto nla_put_failure;
2551 }
2552
2553 attr = nla_nest_start(skb, MACSEC_SA_ATTR_STATS);
2554 if (!attr) {
2555 nla_nest_cancel(skb, rxsa_list);
2556 nla_nest_cancel(skb, rxsc_nest);
2557 nla_nest_cancel(skb, rxsc_list);
2558 goto nla_put_failure;
2559 }
2560 if (copy_rx_sa_stats(skb, rx_sa->stats)) {
2561 nla_nest_cancel(skb, attr);
2562 nla_nest_cancel(skb, rxsa_list);
2563 nla_nest_cancel(skb, rxsc_nest);
2564 nla_nest_cancel(skb, rxsc_list);
2565 goto nla_put_failure;
2566 }
2567 nla_nest_end(skb, attr);
2568
2569 if (nla_put_u8(skb, MACSEC_SA_ATTR_AN, i) ||
2570 nla_put_u32(skb, MACSEC_SA_ATTR_PN, rx_sa->next_pn) ||
Sabrina Dubroca8acca6a2016-05-07 20:19:29 +02002571 nla_put(skb, MACSEC_SA_ATTR_KEYID, MACSEC_KEYID_LEN, rx_sa->key.id) ||
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002572 nla_put_u8(skb, MACSEC_SA_ATTR_ACTIVE, rx_sa->active)) {
2573 nla_nest_cancel(skb, rxsa_nest);
2574 nla_nest_cancel(skb, rxsc_nest);
2575 nla_nest_cancel(skb, rxsc_list);
2576 goto nla_put_failure;
2577 }
2578 nla_nest_end(skb, rxsa_nest);
2579 }
2580
2581 nla_nest_end(skb, rxsa_list);
2582 nla_nest_end(skb, rxsc_nest);
2583 }
2584
2585 nla_nest_end(skb, rxsc_list);
2586
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002587 genlmsg_end(skb, hdr);
2588
2589 return 0;
2590
2591nla_put_failure:
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002592 genlmsg_cancel(skb, hdr);
2593 return -EMSGSIZE;
2594}
2595
Sabrina Dubroca96cfc502016-04-22 11:28:05 +02002596static int macsec_generation = 1; /* protected by RTNL */
2597
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002598static int macsec_dump_txsc(struct sk_buff *skb, struct netlink_callback *cb)
2599{
2600 struct net *net = sock_net(skb->sk);
2601 struct net_device *dev;
2602 int dev_idx, d;
2603
2604 dev_idx = cb->args[0];
2605
2606 d = 0;
Sabrina Dubrocac10c63e2016-04-22 11:28:02 +02002607 rtnl_lock();
Sabrina Dubroca96cfc502016-04-22 11:28:05 +02002608
2609 cb->seq = macsec_generation;
2610
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002611 for_each_netdev(net, dev) {
2612 struct macsec_secy *secy;
2613
2614 if (d < dev_idx)
2615 goto next;
2616
2617 if (!netif_is_macsec(dev))
2618 goto next;
2619
2620 secy = &macsec_priv(dev)->secy;
2621 if (dump_secy(secy, dev, skb, cb) < 0)
2622 goto done;
2623next:
2624 d++;
2625 }
2626
2627done:
Sabrina Dubrocac10c63e2016-04-22 11:28:02 +02002628 rtnl_unlock();
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002629 cb->args[0] = d;
2630 return skb->len;
2631}
2632
2633static const struct genl_ops macsec_genl_ops[] = {
2634 {
2635 .cmd = MACSEC_CMD_GET_TXSC,
2636 .dumpit = macsec_dump_txsc,
2637 .policy = macsec_genl_policy,
2638 },
2639 {
2640 .cmd = MACSEC_CMD_ADD_RXSC,
2641 .doit = macsec_add_rxsc,
2642 .policy = macsec_genl_policy,
2643 .flags = GENL_ADMIN_PERM,
2644 },
2645 {
2646 .cmd = MACSEC_CMD_DEL_RXSC,
2647 .doit = macsec_del_rxsc,
2648 .policy = macsec_genl_policy,
2649 .flags = GENL_ADMIN_PERM,
2650 },
2651 {
2652 .cmd = MACSEC_CMD_UPD_RXSC,
2653 .doit = macsec_upd_rxsc,
2654 .policy = macsec_genl_policy,
2655 .flags = GENL_ADMIN_PERM,
2656 },
2657 {
2658 .cmd = MACSEC_CMD_ADD_TXSA,
2659 .doit = macsec_add_txsa,
2660 .policy = macsec_genl_policy,
2661 .flags = GENL_ADMIN_PERM,
2662 },
2663 {
2664 .cmd = MACSEC_CMD_DEL_TXSA,
2665 .doit = macsec_del_txsa,
2666 .policy = macsec_genl_policy,
2667 .flags = GENL_ADMIN_PERM,
2668 },
2669 {
2670 .cmd = MACSEC_CMD_UPD_TXSA,
2671 .doit = macsec_upd_txsa,
2672 .policy = macsec_genl_policy,
2673 .flags = GENL_ADMIN_PERM,
2674 },
2675 {
2676 .cmd = MACSEC_CMD_ADD_RXSA,
2677 .doit = macsec_add_rxsa,
2678 .policy = macsec_genl_policy,
2679 .flags = GENL_ADMIN_PERM,
2680 },
2681 {
2682 .cmd = MACSEC_CMD_DEL_RXSA,
2683 .doit = macsec_del_rxsa,
2684 .policy = macsec_genl_policy,
2685 .flags = GENL_ADMIN_PERM,
2686 },
2687 {
2688 .cmd = MACSEC_CMD_UPD_RXSA,
2689 .doit = macsec_upd_rxsa,
2690 .policy = macsec_genl_policy,
2691 .flags = GENL_ADMIN_PERM,
2692 },
2693};
2694
2695static netdev_tx_t macsec_start_xmit(struct sk_buff *skb,
2696 struct net_device *dev)
2697{
2698 struct macsec_dev *macsec = netdev_priv(dev);
2699 struct macsec_secy *secy = &macsec->secy;
2700 struct pcpu_secy_stats *secy_stats;
2701 int ret, len;
2702
2703 /* 10.5 */
2704 if (!secy->protect_frames) {
2705 secy_stats = this_cpu_ptr(macsec->stats);
2706 u64_stats_update_begin(&secy_stats->syncp);
2707 secy_stats->stats.OutPktsUntagged++;
2708 u64_stats_update_end(&secy_stats->syncp);
Daniel Borkmann79c62222016-07-01 00:00:54 +02002709 skb->dev = macsec->real_dev;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002710 len = skb->len;
2711 ret = dev_queue_xmit(skb);
2712 count_tx(dev, ret, len);
2713 return ret;
2714 }
2715
2716 if (!secy->operational) {
2717 kfree_skb(skb);
2718 dev->stats.tx_dropped++;
2719 return NETDEV_TX_OK;
2720 }
2721
2722 skb = macsec_encrypt(skb, dev);
2723 if (IS_ERR(skb)) {
2724 if (PTR_ERR(skb) != -EINPROGRESS)
2725 dev->stats.tx_dropped++;
2726 return NETDEV_TX_OK;
2727 }
2728
2729 macsec_count_tx(skb, &macsec->secy.tx_sc, macsec_skb_cb(skb)->tx_sa);
2730
2731 macsec_encrypt_finish(skb, dev);
2732 len = skb->len;
2733 ret = dev_queue_xmit(skb);
2734 count_tx(dev, ret, len);
2735 return ret;
2736}
2737
2738#define MACSEC_FEATURES \
Jason A. Donenfeld3b0129d2017-04-25 19:08:18 +02002739 (NETIF_F_SG | NETIF_F_HIGHDMA | NETIF_F_FRAGLIST)
Sabrina Dubrocae2003872016-08-12 16:10:32 +02002740static struct lock_class_key macsec_netdev_addr_lock_key;
2741
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002742static int macsec_dev_init(struct net_device *dev)
2743{
2744 struct macsec_dev *macsec = macsec_priv(dev);
2745 struct net_device *real_dev = macsec->real_dev;
Paolo Abeni5491e7c2016-07-20 18:11:32 +02002746 int err;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002747
2748 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
2749 if (!dev->tstats)
2750 return -ENOMEM;
2751
Paolo Abeni5491e7c2016-07-20 18:11:32 +02002752 err = gro_cells_init(&macsec->gro_cells, dev);
2753 if (err) {
2754 free_percpu(dev->tstats);
2755 return err;
2756 }
2757
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002758 dev->features = real_dev->features & MACSEC_FEATURES;
2759 dev->features |= NETIF_F_LLTX | NETIF_F_GSO_SOFTWARE;
2760
2761 dev->needed_headroom = real_dev->needed_headroom +
2762 MACSEC_NEEDED_HEADROOM;
2763 dev->needed_tailroom = real_dev->needed_tailroom +
2764 MACSEC_NEEDED_TAILROOM;
2765
2766 if (is_zero_ether_addr(dev->dev_addr))
2767 eth_hw_addr_inherit(dev, real_dev);
2768 if (is_zero_ether_addr(dev->broadcast))
2769 memcpy(dev->broadcast, real_dev->broadcast, dev->addr_len);
2770
2771 return 0;
2772}
2773
2774static void macsec_dev_uninit(struct net_device *dev)
2775{
Paolo Abeni5491e7c2016-07-20 18:11:32 +02002776 struct macsec_dev *macsec = macsec_priv(dev);
2777
2778 gro_cells_destroy(&macsec->gro_cells);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002779 free_percpu(dev->tstats);
2780}
2781
2782static netdev_features_t macsec_fix_features(struct net_device *dev,
2783 netdev_features_t features)
2784{
2785 struct macsec_dev *macsec = macsec_priv(dev);
2786 struct net_device *real_dev = macsec->real_dev;
2787
Paolo Abeni5491e7c2016-07-20 18:11:32 +02002788 features &= (real_dev->features & MACSEC_FEATURES) |
2789 NETIF_F_GSO_SOFTWARE | NETIF_F_SOFT_FEATURES;
2790 features |= NETIF_F_LLTX;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002791
2792 return features;
2793}
2794
2795static int macsec_dev_open(struct net_device *dev)
2796{
2797 struct macsec_dev *macsec = macsec_priv(dev);
2798 struct net_device *real_dev = macsec->real_dev;
2799 int err;
2800
2801 if (!(real_dev->flags & IFF_UP))
2802 return -ENETDOWN;
2803
2804 err = dev_uc_add(real_dev, dev->dev_addr);
2805 if (err < 0)
2806 return err;
2807
2808 if (dev->flags & IFF_ALLMULTI) {
2809 err = dev_set_allmulti(real_dev, 1);
2810 if (err < 0)
2811 goto del_unicast;
2812 }
2813
2814 if (dev->flags & IFF_PROMISC) {
2815 err = dev_set_promiscuity(real_dev, 1);
2816 if (err < 0)
2817 goto clear_allmulti;
2818 }
2819
2820 if (netif_carrier_ok(real_dev))
2821 netif_carrier_on(dev);
2822
2823 return 0;
2824clear_allmulti:
2825 if (dev->flags & IFF_ALLMULTI)
2826 dev_set_allmulti(real_dev, -1);
2827del_unicast:
2828 dev_uc_del(real_dev, dev->dev_addr);
2829 netif_carrier_off(dev);
2830 return err;
2831}
2832
2833static int macsec_dev_stop(struct net_device *dev)
2834{
2835 struct macsec_dev *macsec = macsec_priv(dev);
2836 struct net_device *real_dev = macsec->real_dev;
2837
2838 netif_carrier_off(dev);
2839
2840 dev_mc_unsync(real_dev, dev);
2841 dev_uc_unsync(real_dev, dev);
2842
2843 if (dev->flags & IFF_ALLMULTI)
2844 dev_set_allmulti(real_dev, -1);
2845
2846 if (dev->flags & IFF_PROMISC)
2847 dev_set_promiscuity(real_dev, -1);
2848
2849 dev_uc_del(real_dev, dev->dev_addr);
2850
2851 return 0;
2852}
2853
2854static void macsec_dev_change_rx_flags(struct net_device *dev, int change)
2855{
2856 struct net_device *real_dev = macsec_priv(dev)->real_dev;
2857
2858 if (!(dev->flags & IFF_UP))
2859 return;
2860
2861 if (change & IFF_ALLMULTI)
2862 dev_set_allmulti(real_dev, dev->flags & IFF_ALLMULTI ? 1 : -1);
2863
2864 if (change & IFF_PROMISC)
2865 dev_set_promiscuity(real_dev,
2866 dev->flags & IFF_PROMISC ? 1 : -1);
2867}
2868
2869static void macsec_dev_set_rx_mode(struct net_device *dev)
2870{
2871 struct net_device *real_dev = macsec_priv(dev)->real_dev;
2872
2873 dev_mc_sync(real_dev, dev);
2874 dev_uc_sync(real_dev, dev);
2875}
2876
2877static int macsec_set_mac_address(struct net_device *dev, void *p)
2878{
2879 struct macsec_dev *macsec = macsec_priv(dev);
2880 struct net_device *real_dev = macsec->real_dev;
2881 struct sockaddr *addr = p;
2882 int err;
2883
2884 if (!is_valid_ether_addr(addr->sa_data))
2885 return -EADDRNOTAVAIL;
2886
2887 if (!(dev->flags & IFF_UP))
2888 goto out;
2889
2890 err = dev_uc_add(real_dev, addr->sa_data);
2891 if (err < 0)
2892 return err;
2893
2894 dev_uc_del(real_dev, dev->dev_addr);
2895
2896out:
2897 ether_addr_copy(dev->dev_addr, addr->sa_data);
2898 return 0;
2899}
2900
2901static int macsec_change_mtu(struct net_device *dev, int new_mtu)
2902{
2903 struct macsec_dev *macsec = macsec_priv(dev);
2904 unsigned int extra = macsec->secy.icv_len + macsec_extra_len(true);
2905
2906 if (macsec->real_dev->mtu - extra < new_mtu)
2907 return -ERANGE;
2908
2909 dev->mtu = new_mtu;
2910
2911 return 0;
2912}
2913
2914static struct rtnl_link_stats64 *macsec_get_stats64(struct net_device *dev,
2915 struct rtnl_link_stats64 *s)
2916{
2917 int cpu;
2918
2919 if (!dev->tstats)
2920 return s;
2921
2922 for_each_possible_cpu(cpu) {
2923 struct pcpu_sw_netstats *stats;
2924 struct pcpu_sw_netstats tmp;
2925 int start;
2926
2927 stats = per_cpu_ptr(dev->tstats, cpu);
2928 do {
2929 start = u64_stats_fetch_begin_irq(&stats->syncp);
2930 tmp.rx_packets = stats->rx_packets;
2931 tmp.rx_bytes = stats->rx_bytes;
2932 tmp.tx_packets = stats->tx_packets;
2933 tmp.tx_bytes = stats->tx_bytes;
2934 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
2935
2936 s->rx_packets += tmp.rx_packets;
2937 s->rx_bytes += tmp.rx_bytes;
2938 s->tx_packets += tmp.tx_packets;
2939 s->tx_bytes += tmp.tx_bytes;
2940 }
2941
2942 s->rx_dropped = dev->stats.rx_dropped;
2943 s->tx_dropped = dev->stats.tx_dropped;
2944
2945 return s;
2946}
2947
2948static int macsec_get_iflink(const struct net_device *dev)
2949{
2950 return macsec_priv(dev)->real_dev->ifindex;
2951}
2952
Sabrina Dubrocae2003872016-08-12 16:10:32 +02002953
2954static int macsec_get_nest_level(struct net_device *dev)
2955{
2956 return macsec_priv(dev)->nest_level;
2957}
2958
2959
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002960static const struct net_device_ops macsec_netdev_ops = {
2961 .ndo_init = macsec_dev_init,
2962 .ndo_uninit = macsec_dev_uninit,
2963 .ndo_open = macsec_dev_open,
2964 .ndo_stop = macsec_dev_stop,
2965 .ndo_fix_features = macsec_fix_features,
2966 .ndo_change_mtu = macsec_change_mtu,
2967 .ndo_set_rx_mode = macsec_dev_set_rx_mode,
2968 .ndo_change_rx_flags = macsec_dev_change_rx_flags,
2969 .ndo_set_mac_address = macsec_set_mac_address,
2970 .ndo_start_xmit = macsec_start_xmit,
2971 .ndo_get_stats64 = macsec_get_stats64,
2972 .ndo_get_iflink = macsec_get_iflink,
Sabrina Dubrocae2003872016-08-12 16:10:32 +02002973 .ndo_get_lock_subclass = macsec_get_nest_level,
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002974};
2975
2976static const struct device_type macsec_type = {
2977 .name = "macsec",
2978};
2979
2980static const struct nla_policy macsec_rtnl_policy[IFLA_MACSEC_MAX + 1] = {
2981 [IFLA_MACSEC_SCI] = { .type = NLA_U64 },
2982 [IFLA_MACSEC_ICV_LEN] = { .type = NLA_U8 },
2983 [IFLA_MACSEC_CIPHER_SUITE] = { .type = NLA_U64 },
2984 [IFLA_MACSEC_WINDOW] = { .type = NLA_U32 },
2985 [IFLA_MACSEC_ENCODING_SA] = { .type = NLA_U8 },
2986 [IFLA_MACSEC_ENCRYPT] = { .type = NLA_U8 },
2987 [IFLA_MACSEC_PROTECT] = { .type = NLA_U8 },
2988 [IFLA_MACSEC_INC_SCI] = { .type = NLA_U8 },
2989 [IFLA_MACSEC_ES] = { .type = NLA_U8 },
2990 [IFLA_MACSEC_SCB] = { .type = NLA_U8 },
2991 [IFLA_MACSEC_REPLAY_PROTECT] = { .type = NLA_U8 },
2992 [IFLA_MACSEC_VALIDATION] = { .type = NLA_U8 },
2993};
2994
2995static void macsec_free_netdev(struct net_device *dev)
2996{
2997 struct macsec_dev *macsec = macsec_priv(dev);
2998 struct net_device *real_dev = macsec->real_dev;
2999
3000 free_percpu(macsec->stats);
3001 free_percpu(macsec->secy.tx_sc.stats);
3002
3003 dev_put(real_dev);
3004 free_netdev(dev);
3005}
3006
3007static void macsec_setup(struct net_device *dev)
3008{
3009 ether_setup(dev);
Phil Suttere4259742016-04-22 14:02:42 +02003010 dev->priv_flags |= IFF_NO_QUEUE;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003011 dev->netdev_ops = &macsec_netdev_ops;
3012 dev->destructor = macsec_free_netdev;
stephen hemmingerc24acf02016-09-07 14:07:32 -07003013 SET_NETDEV_DEVTYPE(dev, &macsec_type);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003014
3015 eth_zero_addr(dev->broadcast);
3016}
3017
3018static void macsec_changelink_common(struct net_device *dev,
3019 struct nlattr *data[])
3020{
3021 struct macsec_secy *secy;
3022 struct macsec_tx_sc *tx_sc;
3023
3024 secy = &macsec_priv(dev)->secy;
3025 tx_sc = &secy->tx_sc;
3026
3027 if (data[IFLA_MACSEC_ENCODING_SA]) {
3028 struct macsec_tx_sa *tx_sa;
3029
3030 tx_sc->encoding_sa = nla_get_u8(data[IFLA_MACSEC_ENCODING_SA]);
3031 tx_sa = rtnl_dereference(tx_sc->sa[tx_sc->encoding_sa]);
3032
3033 secy->operational = tx_sa && tx_sa->active;
3034 }
3035
3036 if (data[IFLA_MACSEC_WINDOW])
3037 secy->replay_window = nla_get_u32(data[IFLA_MACSEC_WINDOW]);
3038
3039 if (data[IFLA_MACSEC_ENCRYPT])
3040 tx_sc->encrypt = !!nla_get_u8(data[IFLA_MACSEC_ENCRYPT]);
3041
3042 if (data[IFLA_MACSEC_PROTECT])
3043 secy->protect_frames = !!nla_get_u8(data[IFLA_MACSEC_PROTECT]);
3044
3045 if (data[IFLA_MACSEC_INC_SCI])
3046 tx_sc->send_sci = !!nla_get_u8(data[IFLA_MACSEC_INC_SCI]);
3047
3048 if (data[IFLA_MACSEC_ES])
3049 tx_sc->end_station = !!nla_get_u8(data[IFLA_MACSEC_ES]);
3050
3051 if (data[IFLA_MACSEC_SCB])
3052 tx_sc->scb = !!nla_get_u8(data[IFLA_MACSEC_SCB]);
3053
3054 if (data[IFLA_MACSEC_REPLAY_PROTECT])
3055 secy->replay_protect = !!nla_get_u8(data[IFLA_MACSEC_REPLAY_PROTECT]);
3056
3057 if (data[IFLA_MACSEC_VALIDATION])
3058 secy->validate_frames = nla_get_u8(data[IFLA_MACSEC_VALIDATION]);
3059}
3060
3061static int macsec_changelink(struct net_device *dev, struct nlattr *tb[],
3062 struct nlattr *data[])
3063{
3064 if (!data)
3065 return 0;
3066
3067 if (data[IFLA_MACSEC_CIPHER_SUITE] ||
3068 data[IFLA_MACSEC_ICV_LEN] ||
3069 data[IFLA_MACSEC_SCI] ||
3070 data[IFLA_MACSEC_PORT])
3071 return -EINVAL;
3072
3073 macsec_changelink_common(dev, data);
3074
3075 return 0;
3076}
3077
3078static void macsec_del_dev(struct macsec_dev *macsec)
3079{
3080 int i;
3081
3082 while (macsec->secy.rx_sc) {
3083 struct macsec_rx_sc *rx_sc = rtnl_dereference(macsec->secy.rx_sc);
3084
3085 rcu_assign_pointer(macsec->secy.rx_sc, rx_sc->next);
3086 free_rx_sc(rx_sc);
3087 }
3088
3089 for (i = 0; i < MACSEC_NUM_AN; i++) {
3090 struct macsec_tx_sa *sa = rtnl_dereference(macsec->secy.tx_sc.sa[i]);
3091
3092 if (sa) {
3093 RCU_INIT_POINTER(macsec->secy.tx_sc.sa[i], NULL);
3094 clear_tx_sa(sa);
3095 }
3096 }
3097}
3098
Sabrina Dubrocabbe11fa2016-08-11 15:24:27 +02003099static void macsec_common_dellink(struct net_device *dev, struct list_head *head)
3100{
3101 struct macsec_dev *macsec = macsec_priv(dev);
Sabrina Dubrocae2003872016-08-12 16:10:32 +02003102 struct net_device *real_dev = macsec->real_dev;
Sabrina Dubrocabbe11fa2016-08-11 15:24:27 +02003103
3104 unregister_netdevice_queue(dev, head);
3105 list_del_rcu(&macsec->secys);
3106 macsec_del_dev(macsec);
Sabrina Dubrocae2003872016-08-12 16:10:32 +02003107 netdev_upper_dev_unlink(real_dev, dev);
Sabrina Dubrocabbe11fa2016-08-11 15:24:27 +02003108
3109 macsec_generation++;
3110}
3111
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003112static void macsec_dellink(struct net_device *dev, struct list_head *head)
3113{
3114 struct macsec_dev *macsec = macsec_priv(dev);
3115 struct net_device *real_dev = macsec->real_dev;
3116 struct macsec_rxh_data *rxd = macsec_data_rtnl(real_dev);
3117
Sabrina Dubrocabbe11fa2016-08-11 15:24:27 +02003118 macsec_common_dellink(dev, head);
Sabrina Dubroca96cfc502016-04-22 11:28:05 +02003119
Sabrina Dubroca960d5842016-04-22 11:28:06 +02003120 if (list_empty(&rxd->secys)) {
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003121 netdev_rx_handler_unregister(real_dev);
Sabrina Dubroca960d5842016-04-22 11:28:06 +02003122 kfree(rxd);
3123 }
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003124}
3125
3126static int register_macsec_dev(struct net_device *real_dev,
3127 struct net_device *dev)
3128{
3129 struct macsec_dev *macsec = macsec_priv(dev);
3130 struct macsec_rxh_data *rxd = macsec_data_rtnl(real_dev);
3131
3132 if (!rxd) {
3133 int err;
3134
3135 rxd = kmalloc(sizeof(*rxd), GFP_KERNEL);
3136 if (!rxd)
3137 return -ENOMEM;
3138
3139 INIT_LIST_HEAD(&rxd->secys);
3140
3141 err = netdev_rx_handler_register(real_dev, macsec_handle_frame,
3142 rxd);
Sabrina Dubroca960d5842016-04-22 11:28:06 +02003143 if (err < 0) {
3144 kfree(rxd);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003145 return err;
Sabrina Dubroca960d5842016-04-22 11:28:06 +02003146 }
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003147 }
3148
3149 list_add_tail_rcu(&macsec->secys, &rxd->secys);
3150 return 0;
3151}
3152
3153static bool sci_exists(struct net_device *dev, sci_t sci)
3154{
3155 struct macsec_rxh_data *rxd = macsec_data_rtnl(dev);
3156 struct macsec_dev *macsec;
3157
3158 list_for_each_entry(macsec, &rxd->secys, secys) {
3159 if (macsec->secy.sci == sci)
3160 return true;
3161 }
3162
3163 return false;
3164}
3165
3166static sci_t dev_to_sci(struct net_device *dev, __be16 port)
3167{
3168 return make_sci(dev->dev_addr, port);
3169}
3170
3171static int macsec_add_dev(struct net_device *dev, sci_t sci, u8 icv_len)
3172{
3173 struct macsec_dev *macsec = macsec_priv(dev);
3174 struct macsec_secy *secy = &macsec->secy;
3175
3176 macsec->stats = netdev_alloc_pcpu_stats(struct pcpu_secy_stats);
3177 if (!macsec->stats)
3178 return -ENOMEM;
3179
3180 secy->tx_sc.stats = netdev_alloc_pcpu_stats(struct pcpu_tx_sc_stats);
3181 if (!secy->tx_sc.stats) {
3182 free_percpu(macsec->stats);
3183 return -ENOMEM;
3184 }
3185
3186 if (sci == MACSEC_UNDEF_SCI)
3187 sci = dev_to_sci(dev, MACSEC_PORT_ES);
3188
3189 secy->netdev = dev;
3190 secy->operational = true;
3191 secy->key_len = DEFAULT_SAK_LEN;
3192 secy->icv_len = icv_len;
3193 secy->validate_frames = MACSEC_VALIDATE_DEFAULT;
3194 secy->protect_frames = true;
3195 secy->replay_protect = false;
3196
3197 secy->sci = sci;
3198 secy->tx_sc.active = true;
3199 secy->tx_sc.encoding_sa = DEFAULT_ENCODING_SA;
3200 secy->tx_sc.encrypt = DEFAULT_ENCRYPT;
3201 secy->tx_sc.send_sci = DEFAULT_SEND_SCI;
3202 secy->tx_sc.end_station = false;
3203 secy->tx_sc.scb = false;
3204
3205 return 0;
3206}
3207
3208static int macsec_newlink(struct net *net, struct net_device *dev,
3209 struct nlattr *tb[], struct nlattr *data[])
3210{
3211 struct macsec_dev *macsec = macsec_priv(dev);
3212 struct net_device *real_dev;
3213 int err;
3214 sci_t sci;
3215 u8 icv_len = DEFAULT_ICV_LEN;
3216 rx_handler_func_t *rx_handler;
3217
3218 if (!tb[IFLA_LINK])
3219 return -EINVAL;
3220 real_dev = __dev_get_by_index(net, nla_get_u32(tb[IFLA_LINK]));
3221 if (!real_dev)
3222 return -ENODEV;
3223
3224 dev->priv_flags |= IFF_MACSEC;
3225
3226 macsec->real_dev = real_dev;
3227
3228 if (data && data[IFLA_MACSEC_ICV_LEN])
3229 icv_len = nla_get_u8(data[IFLA_MACSEC_ICV_LEN]);
3230 dev->mtu = real_dev->mtu - icv_len - macsec_extra_len(true);
3231
3232 rx_handler = rtnl_dereference(real_dev->rx_handler);
3233 if (rx_handler && rx_handler != macsec_handle_frame)
3234 return -EBUSY;
3235
3236 err = register_netdevice(dev);
3237 if (err < 0)
3238 return err;
3239
Sabrina Dubroca0759e552016-07-29 15:37:55 +02003240 dev_hold(real_dev);
3241
Sabrina Dubroca952fcfd2016-08-12 16:10:33 +02003242 macsec->nest_level = dev_get_nest_level(real_dev) + 1;
Sabrina Dubrocae2003872016-08-12 16:10:32 +02003243 netdev_lockdep_set_classes(dev);
3244 lockdep_set_class_and_subclass(&dev->addr_list_lock,
3245 &macsec_netdev_addr_lock_key,
3246 macsec_get_nest_level(dev));
3247
3248 err = netdev_upper_dev_link(real_dev, dev);
3249 if (err < 0)
3250 goto unregister;
3251
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003252 /* need to be already registered so that ->init has run and
3253 * the MAC addr is set
3254 */
3255 if (data && data[IFLA_MACSEC_SCI])
3256 sci = nla_get_sci(data[IFLA_MACSEC_SCI]);
3257 else if (data && data[IFLA_MACSEC_PORT])
3258 sci = dev_to_sci(dev, nla_get_be16(data[IFLA_MACSEC_PORT]));
3259 else
3260 sci = dev_to_sci(dev, MACSEC_PORT_ES);
3261
3262 if (rx_handler && sci_exists(real_dev, sci)) {
3263 err = -EBUSY;
Sabrina Dubrocae2003872016-08-12 16:10:32 +02003264 goto unlink;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003265 }
3266
3267 err = macsec_add_dev(dev, sci, icv_len);
3268 if (err)
Sabrina Dubrocae2003872016-08-12 16:10:32 +02003269 goto unlink;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003270
3271 if (data)
3272 macsec_changelink_common(dev, data);
3273
3274 err = register_macsec_dev(real_dev, dev);
3275 if (err < 0)
3276 goto del_dev;
3277
Sabrina Dubroca96cfc502016-04-22 11:28:05 +02003278 macsec_generation++;
3279
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003280 return 0;
3281
3282del_dev:
3283 macsec_del_dev(macsec);
Sabrina Dubrocae2003872016-08-12 16:10:32 +02003284unlink:
3285 netdev_upper_dev_unlink(real_dev, dev);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003286unregister:
3287 unregister_netdevice(dev);
3288 return err;
3289}
3290
3291static int macsec_validate_attr(struct nlattr *tb[], struct nlattr *data[])
3292{
Sabrina Dubroca74816482016-04-22 11:28:08 +02003293 u64 csid = MACSEC_DEFAULT_CIPHER_ID;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003294 u8 icv_len = DEFAULT_ICV_LEN;
3295 int flag;
3296 bool es, scb, sci;
3297
3298 if (!data)
3299 return 0;
3300
3301 if (data[IFLA_MACSEC_CIPHER_SUITE])
3302 csid = nla_get_u64(data[IFLA_MACSEC_CIPHER_SUITE]);
3303
Davide Carattif04c3922016-07-22 15:07:58 +02003304 if (data[IFLA_MACSEC_ICV_LEN]) {
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003305 icv_len = nla_get_u8(data[IFLA_MACSEC_ICV_LEN]);
Davide Carattif04c3922016-07-22 15:07:58 +02003306 if (icv_len != DEFAULT_ICV_LEN) {
3307 char dummy_key[DEFAULT_SAK_LEN] = { 0 };
3308 struct crypto_aead *dummy_tfm;
3309
3310 dummy_tfm = macsec_alloc_tfm(dummy_key,
3311 DEFAULT_SAK_LEN,
3312 icv_len);
3313 if (IS_ERR(dummy_tfm))
3314 return PTR_ERR(dummy_tfm);
3315 crypto_free_aead(dummy_tfm);
3316 }
3317 }
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003318
3319 switch (csid) {
Sabrina Dubroca74816482016-04-22 11:28:08 +02003320 case MACSEC_DEFAULT_CIPHER_ID:
3321 case MACSEC_DEFAULT_CIPHER_ALT:
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003322 if (icv_len < MACSEC_MIN_ICV_LEN ||
Davide Caratti2ccbe2c2016-07-22 15:07:56 +02003323 icv_len > MACSEC_STD_ICV_LEN)
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003324 return -EINVAL;
3325 break;
3326 default:
3327 return -EINVAL;
3328 }
3329
3330 if (data[IFLA_MACSEC_ENCODING_SA]) {
3331 if (nla_get_u8(data[IFLA_MACSEC_ENCODING_SA]) >= MACSEC_NUM_AN)
3332 return -EINVAL;
3333 }
3334
3335 for (flag = IFLA_MACSEC_ENCODING_SA + 1;
3336 flag < IFLA_MACSEC_VALIDATION;
3337 flag++) {
3338 if (data[flag]) {
3339 if (nla_get_u8(data[flag]) > 1)
3340 return -EINVAL;
3341 }
3342 }
3343
3344 es = data[IFLA_MACSEC_ES] ? nla_get_u8(data[IFLA_MACSEC_ES]) : false;
3345 sci = data[IFLA_MACSEC_INC_SCI] ? nla_get_u8(data[IFLA_MACSEC_INC_SCI]) : false;
3346 scb = data[IFLA_MACSEC_SCB] ? nla_get_u8(data[IFLA_MACSEC_SCB]) : false;
3347
3348 if ((sci && (scb || es)) || (scb && es))
3349 return -EINVAL;
3350
3351 if (data[IFLA_MACSEC_VALIDATION] &&
3352 nla_get_u8(data[IFLA_MACSEC_VALIDATION]) > MACSEC_VALIDATE_MAX)
3353 return -EINVAL;
3354
Sabrina Dubroca4b1fb932016-04-22 11:28:09 +02003355 if ((data[IFLA_MACSEC_REPLAY_PROTECT] &&
3356 nla_get_u8(data[IFLA_MACSEC_REPLAY_PROTECT])) &&
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003357 !data[IFLA_MACSEC_WINDOW])
3358 return -EINVAL;
3359
3360 return 0;
3361}
3362
3363static struct net *macsec_get_link_net(const struct net_device *dev)
3364{
3365 return dev_net(macsec_priv(dev)->real_dev);
3366}
3367
3368static size_t macsec_get_size(const struct net_device *dev)
3369{
3370 return 0 +
Nicolas Dichtelf60d94c2016-04-26 10:06:11 +02003371 nla_total_size_64bit(8) + /* SCI */
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003372 nla_total_size(1) + /* ICV_LEN */
Nicolas Dichtelf60d94c2016-04-26 10:06:11 +02003373 nla_total_size_64bit(8) + /* CIPHER_SUITE */
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003374 nla_total_size(4) + /* WINDOW */
3375 nla_total_size(1) + /* ENCODING_SA */
3376 nla_total_size(1) + /* ENCRYPT */
3377 nla_total_size(1) + /* PROTECT */
3378 nla_total_size(1) + /* INC_SCI */
3379 nla_total_size(1) + /* ES */
3380 nla_total_size(1) + /* SCB */
3381 nla_total_size(1) + /* REPLAY_PROTECT */
3382 nla_total_size(1) + /* VALIDATION */
3383 0;
3384}
3385
3386static int macsec_fill_info(struct sk_buff *skb,
3387 const struct net_device *dev)
3388{
3389 struct macsec_secy *secy = &macsec_priv(dev)->secy;
3390 struct macsec_tx_sc *tx_sc = &secy->tx_sc;
3391
Nicolas Dichtelf60d94c2016-04-26 10:06:11 +02003392 if (nla_put_sci(skb, IFLA_MACSEC_SCI, secy->sci,
3393 IFLA_MACSEC_PAD) ||
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003394 nla_put_u8(skb, IFLA_MACSEC_ICV_LEN, secy->icv_len) ||
Nicolas Dichtelf60d94c2016-04-26 10:06:11 +02003395 nla_put_u64_64bit(skb, IFLA_MACSEC_CIPHER_SUITE,
David S. Millerc0cc5312016-04-27 15:43:10 -04003396 MACSEC_DEFAULT_CIPHER_ID, IFLA_MACSEC_PAD) ||
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003397 nla_put_u8(skb, IFLA_MACSEC_ENCODING_SA, tx_sc->encoding_sa) ||
3398 nla_put_u8(skb, IFLA_MACSEC_ENCRYPT, tx_sc->encrypt) ||
3399 nla_put_u8(skb, IFLA_MACSEC_PROTECT, secy->protect_frames) ||
3400 nla_put_u8(skb, IFLA_MACSEC_INC_SCI, tx_sc->send_sci) ||
3401 nla_put_u8(skb, IFLA_MACSEC_ES, tx_sc->end_station) ||
3402 nla_put_u8(skb, IFLA_MACSEC_SCB, tx_sc->scb) ||
3403 nla_put_u8(skb, IFLA_MACSEC_REPLAY_PROTECT, secy->replay_protect) ||
3404 nla_put_u8(skb, IFLA_MACSEC_VALIDATION, secy->validate_frames) ||
3405 0)
3406 goto nla_put_failure;
3407
3408 if (secy->replay_protect) {
3409 if (nla_put_u32(skb, IFLA_MACSEC_WINDOW, secy->replay_window))
3410 goto nla_put_failure;
3411 }
3412
3413 return 0;
3414
3415nla_put_failure:
3416 return -EMSGSIZE;
3417}
3418
3419static struct rtnl_link_ops macsec_link_ops __read_mostly = {
3420 .kind = "macsec",
3421 .priv_size = sizeof(struct macsec_dev),
3422 .maxtype = IFLA_MACSEC_MAX,
3423 .policy = macsec_rtnl_policy,
3424 .setup = macsec_setup,
3425 .validate = macsec_validate_attr,
3426 .newlink = macsec_newlink,
3427 .changelink = macsec_changelink,
3428 .dellink = macsec_dellink,
3429 .get_size = macsec_get_size,
3430 .fill_info = macsec_fill_info,
3431 .get_link_net = macsec_get_link_net,
3432};
3433
3434static bool is_macsec_master(struct net_device *dev)
3435{
3436 return rcu_access_pointer(dev->rx_handler) == macsec_handle_frame;
3437}
3438
3439static int macsec_notify(struct notifier_block *this, unsigned long event,
3440 void *ptr)
3441{
3442 struct net_device *real_dev = netdev_notifier_info_to_dev(ptr);
3443 LIST_HEAD(head);
3444
3445 if (!is_macsec_master(real_dev))
3446 return NOTIFY_DONE;
3447
3448 switch (event) {
3449 case NETDEV_UNREGISTER: {
3450 struct macsec_dev *m, *n;
3451 struct macsec_rxh_data *rxd;
3452
3453 rxd = macsec_data_rtnl(real_dev);
3454 list_for_each_entry_safe(m, n, &rxd->secys, secys) {
Sabrina Dubrocabbe11fa2016-08-11 15:24:27 +02003455 macsec_common_dellink(m->secy.netdev, &head);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003456 }
Sabrina Dubrocabbe11fa2016-08-11 15:24:27 +02003457
3458 netdev_rx_handler_unregister(real_dev);
3459 kfree(rxd);
3460
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003461 unregister_netdevice_many(&head);
3462 break;
3463 }
3464 case NETDEV_CHANGEMTU: {
3465 struct macsec_dev *m;
3466 struct macsec_rxh_data *rxd;
3467
3468 rxd = macsec_data_rtnl(real_dev);
3469 list_for_each_entry(m, &rxd->secys, secys) {
3470 struct net_device *dev = m->secy.netdev;
3471 unsigned int mtu = real_dev->mtu - (m->secy.icv_len +
3472 macsec_extra_len(true));
3473
3474 if (dev->mtu > mtu)
3475 dev_set_mtu(dev, mtu);
3476 }
3477 }
3478 }
3479
3480 return NOTIFY_OK;
3481}
3482
3483static struct notifier_block macsec_notifier = {
3484 .notifier_call = macsec_notify,
3485};
3486
3487static int __init macsec_init(void)
3488{
3489 int err;
3490
3491 pr_info("MACsec IEEE 802.1AE\n");
3492 err = register_netdevice_notifier(&macsec_notifier);
3493 if (err)
3494 return err;
3495
3496 err = rtnl_link_register(&macsec_link_ops);
3497 if (err)
3498 goto notifier;
3499
3500 err = genl_register_family_with_ops(&macsec_fam, macsec_genl_ops);
3501 if (err)
3502 goto rtnl;
3503
3504 return 0;
3505
3506rtnl:
3507 rtnl_link_unregister(&macsec_link_ops);
3508notifier:
3509 unregister_netdevice_notifier(&macsec_notifier);
3510 return err;
3511}
3512
3513static void __exit macsec_exit(void)
3514{
3515 genl_unregister_family(&macsec_fam);
3516 rtnl_link_unregister(&macsec_link_ops);
3517 unregister_netdevice_notifier(&macsec_notifier);
Sabrina Dubrocab196c22a2016-06-14 15:25:14 +02003518 rcu_barrier();
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003519}
3520
3521module_init(macsec_init);
3522module_exit(macsec_exit);
3523
3524MODULE_ALIAS_RTNL_LINK("macsec");
Sabrina Dubroca4b4a1942017-08-22 15:36:08 +02003525MODULE_ALIAS_GENL_FAMILY("macsec");
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003526
3527MODULE_DESCRIPTION("MACsec IEEE 802.1AE");
3528MODULE_LICENSE("GPL v2");