blob: d91f020a8491d49d965f835451f1e4fa58db9de5 [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
1243 ret = gro_cells_receive(&macsec->gro_cells, skb);
1244 if (ret == NET_RX_SUCCESS)
1245 count_rx(dev, skb->len);
1246 else
1247 macsec->secy.netdev->stats.rx_dropped++;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001248
1249 rcu_read_unlock();
1250
Paolo Abeni5491e7c2016-07-20 18:11:32 +02001251 *pskb = NULL;
1252 return RX_HANDLER_CONSUMED;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001253
1254drop:
1255 macsec_rxsa_put(rx_sa);
1256drop_nosa:
Sabrina Dubrocac78ebe12016-07-29 15:37:53 +02001257 macsec_rxsc_put(rx_sc);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001258 rcu_read_unlock();
1259drop_direct:
1260 kfree_skb(skb);
1261 *pskb = NULL;
1262 return RX_HANDLER_CONSUMED;
1263
1264nosci:
1265 /* 10.6.1 if the SC is not found */
1266 cbit = !!(hdr->tci_an & MACSEC_TCI_C);
1267 if (!cbit)
1268 macsec_finalize_skb(skb, DEFAULT_ICV_LEN,
1269 macsec_extra_len(macsec_skb_cb(skb)->has_sci));
1270
1271 list_for_each_entry_rcu(macsec, &rxd->secys, secys) {
1272 struct sk_buff *nskb;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001273
1274 secy_stats = this_cpu_ptr(macsec->stats);
1275
1276 /* If validateFrames is Strict or the C bit in the
1277 * SecTAG is set, discard
1278 */
1279 if (cbit ||
1280 macsec->secy.validate_frames == MACSEC_VALIDATE_STRICT) {
1281 u64_stats_update_begin(&secy_stats->syncp);
1282 secy_stats->stats.InPktsNoSCI++;
1283 u64_stats_update_end(&secy_stats->syncp);
1284 continue;
1285 }
1286
1287 /* not strict, the frame (with the SecTAG and ICV
1288 * removed) is delivered to the Controlled Port.
1289 */
1290 nskb = skb_clone(skb, GFP_ATOMIC);
1291 if (!nskb)
1292 break;
1293
1294 macsec_reset_skb(nskb, macsec->secy.netdev);
1295
1296 ret = netif_rx(nskb);
1297 if (ret == NET_RX_SUCCESS) {
1298 u64_stats_update_begin(&secy_stats->syncp);
1299 secy_stats->stats.InPktsUnknownSCI++;
1300 u64_stats_update_end(&secy_stats->syncp);
1301 } else {
1302 macsec->secy.netdev->stats.rx_dropped++;
1303 }
1304 }
1305
1306 rcu_read_unlock();
1307 *pskb = skb;
1308 return RX_HANDLER_PASS;
1309}
1310
1311static struct crypto_aead *macsec_alloc_tfm(char *key, int key_len, int icv_len)
1312{
1313 struct crypto_aead *tfm;
1314 int ret;
1315
Sabrina Dubroca6052f7f2016-06-14 15:25:16 +02001316 tfm = crypto_alloc_aead("gcm(aes)", 0, 0);
Davide Caratti34aedfe2016-07-22 15:07:57 +02001317
1318 if (IS_ERR(tfm))
1319 return tfm;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001320
1321 ret = crypto_aead_setkey(tfm, key, key_len);
Davide Caratti34aedfe2016-07-22 15:07:57 +02001322 if (ret < 0)
1323 goto fail;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001324
1325 ret = crypto_aead_setauthsize(tfm, icv_len);
Davide Caratti34aedfe2016-07-22 15:07:57 +02001326 if (ret < 0)
1327 goto fail;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001328
1329 return tfm;
Davide Caratti34aedfe2016-07-22 15:07:57 +02001330fail:
1331 crypto_free_aead(tfm);
1332 return ERR_PTR(ret);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001333}
1334
1335static int init_rx_sa(struct macsec_rx_sa *rx_sa, char *sak, int key_len,
1336 int icv_len)
1337{
1338 rx_sa->stats = alloc_percpu(struct macsec_rx_sa_stats);
1339 if (!rx_sa->stats)
Davide Caratti34aedfe2016-07-22 15:07:57 +02001340 return -ENOMEM;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001341
1342 rx_sa->key.tfm = macsec_alloc_tfm(sak, key_len, icv_len);
Davide Caratti34aedfe2016-07-22 15:07:57 +02001343 if (IS_ERR(rx_sa->key.tfm)) {
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001344 free_percpu(rx_sa->stats);
Davide Caratti34aedfe2016-07-22 15:07:57 +02001345 return PTR_ERR(rx_sa->key.tfm);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001346 }
1347
1348 rx_sa->active = false;
1349 rx_sa->next_pn = 1;
1350 atomic_set(&rx_sa->refcnt, 1);
1351 spin_lock_init(&rx_sa->lock);
1352
1353 return 0;
1354}
1355
1356static void clear_rx_sa(struct macsec_rx_sa *rx_sa)
1357{
1358 rx_sa->active = false;
1359
1360 macsec_rxsa_put(rx_sa);
1361}
1362
1363static void free_rx_sc(struct macsec_rx_sc *rx_sc)
1364{
1365 int i;
1366
1367 for (i = 0; i < MACSEC_NUM_AN; i++) {
1368 struct macsec_rx_sa *sa = rtnl_dereference(rx_sc->sa[i]);
1369
1370 RCU_INIT_POINTER(rx_sc->sa[i], NULL);
1371 if (sa)
1372 clear_rx_sa(sa);
1373 }
1374
1375 macsec_rxsc_put(rx_sc);
1376}
1377
1378static struct macsec_rx_sc *del_rx_sc(struct macsec_secy *secy, sci_t sci)
1379{
1380 struct macsec_rx_sc *rx_sc, __rcu **rx_scp;
1381
1382 for (rx_scp = &secy->rx_sc, rx_sc = rtnl_dereference(*rx_scp);
1383 rx_sc;
1384 rx_scp = &rx_sc->next, rx_sc = rtnl_dereference(*rx_scp)) {
1385 if (rx_sc->sci == sci) {
1386 if (rx_sc->active)
1387 secy->n_rx_sc--;
1388 rcu_assign_pointer(*rx_scp, rx_sc->next);
1389 return rx_sc;
1390 }
1391 }
1392
1393 return NULL;
1394}
1395
1396static struct macsec_rx_sc *create_rx_sc(struct net_device *dev, sci_t sci)
1397{
1398 struct macsec_rx_sc *rx_sc;
1399 struct macsec_dev *macsec;
1400 struct net_device *real_dev = macsec_priv(dev)->real_dev;
1401 struct macsec_rxh_data *rxd = macsec_data_rtnl(real_dev);
1402 struct macsec_secy *secy;
1403
1404 list_for_each_entry(macsec, &rxd->secys, secys) {
1405 if (find_rx_sc_rtnl(&macsec->secy, sci))
1406 return ERR_PTR(-EEXIST);
1407 }
1408
1409 rx_sc = kzalloc(sizeof(*rx_sc), GFP_KERNEL);
1410 if (!rx_sc)
1411 return ERR_PTR(-ENOMEM);
1412
1413 rx_sc->stats = netdev_alloc_pcpu_stats(struct pcpu_rx_sc_stats);
1414 if (!rx_sc->stats) {
1415 kfree(rx_sc);
1416 return ERR_PTR(-ENOMEM);
1417 }
1418
1419 rx_sc->sci = sci;
1420 rx_sc->active = true;
1421 atomic_set(&rx_sc->refcnt, 1);
1422
1423 secy = &macsec_priv(dev)->secy;
1424 rcu_assign_pointer(rx_sc->next, secy->rx_sc);
1425 rcu_assign_pointer(secy->rx_sc, rx_sc);
1426
1427 if (rx_sc->active)
1428 secy->n_rx_sc++;
1429
1430 return rx_sc;
1431}
1432
1433static int init_tx_sa(struct macsec_tx_sa *tx_sa, char *sak, int key_len,
1434 int icv_len)
1435{
1436 tx_sa->stats = alloc_percpu(struct macsec_tx_sa_stats);
1437 if (!tx_sa->stats)
Davide Caratti34aedfe2016-07-22 15:07:57 +02001438 return -ENOMEM;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001439
1440 tx_sa->key.tfm = macsec_alloc_tfm(sak, key_len, icv_len);
Davide Caratti34aedfe2016-07-22 15:07:57 +02001441 if (IS_ERR(tx_sa->key.tfm)) {
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001442 free_percpu(tx_sa->stats);
Davide Caratti34aedfe2016-07-22 15:07:57 +02001443 return PTR_ERR(tx_sa->key.tfm);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001444 }
1445
1446 tx_sa->active = false;
1447 atomic_set(&tx_sa->refcnt, 1);
1448 spin_lock_init(&tx_sa->lock);
1449
1450 return 0;
1451}
1452
1453static void clear_tx_sa(struct macsec_tx_sa *tx_sa)
1454{
1455 tx_sa->active = false;
1456
1457 macsec_txsa_put(tx_sa);
1458}
1459
1460static struct genl_family macsec_fam = {
1461 .id = GENL_ID_GENERATE,
1462 .name = MACSEC_GENL_NAME,
1463 .hdrsize = 0,
1464 .version = MACSEC_GENL_VERSION,
1465 .maxattr = MACSEC_ATTR_MAX,
1466 .netnsok = true,
1467};
1468
1469static struct net_device *get_dev_from_nl(struct net *net,
1470 struct nlattr **attrs)
1471{
1472 int ifindex = nla_get_u32(attrs[MACSEC_ATTR_IFINDEX]);
1473 struct net_device *dev;
1474
1475 dev = __dev_get_by_index(net, ifindex);
1476 if (!dev)
1477 return ERR_PTR(-ENODEV);
1478
1479 if (!netif_is_macsec(dev))
1480 return ERR_PTR(-ENODEV);
1481
1482 return dev;
1483}
1484
1485static sci_t nla_get_sci(const struct nlattr *nla)
1486{
1487 return (__force sci_t)nla_get_u64(nla);
1488}
1489
Nicolas Dichtelf60d94c2016-04-26 10:06:11 +02001490static int nla_put_sci(struct sk_buff *skb, int attrtype, sci_t value,
1491 int padattr)
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001492{
Nicolas Dichtelf60d94c2016-04-26 10:06:11 +02001493 return nla_put_u64_64bit(skb, attrtype, (__force u64)value, padattr);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001494}
1495
1496static struct macsec_tx_sa *get_txsa_from_nl(struct net *net,
1497 struct nlattr **attrs,
1498 struct nlattr **tb_sa,
1499 struct net_device **devp,
1500 struct macsec_secy **secyp,
1501 struct macsec_tx_sc **scp,
1502 u8 *assoc_num)
1503{
1504 struct net_device *dev;
1505 struct macsec_secy *secy;
1506 struct macsec_tx_sc *tx_sc;
1507 struct macsec_tx_sa *tx_sa;
1508
1509 if (!tb_sa[MACSEC_SA_ATTR_AN])
1510 return ERR_PTR(-EINVAL);
1511
1512 *assoc_num = nla_get_u8(tb_sa[MACSEC_SA_ATTR_AN]);
1513
1514 dev = get_dev_from_nl(net, attrs);
1515 if (IS_ERR(dev))
1516 return ERR_CAST(dev);
1517
1518 if (*assoc_num >= MACSEC_NUM_AN)
1519 return ERR_PTR(-EINVAL);
1520
1521 secy = &macsec_priv(dev)->secy;
1522 tx_sc = &secy->tx_sc;
1523
1524 tx_sa = rtnl_dereference(tx_sc->sa[*assoc_num]);
1525 if (!tx_sa)
1526 return ERR_PTR(-ENODEV);
1527
1528 *devp = dev;
1529 *scp = tx_sc;
1530 *secyp = secy;
1531 return tx_sa;
1532}
1533
1534static struct macsec_rx_sc *get_rxsc_from_nl(struct net *net,
1535 struct nlattr **attrs,
1536 struct nlattr **tb_rxsc,
1537 struct net_device **devp,
1538 struct macsec_secy **secyp)
1539{
1540 struct net_device *dev;
1541 struct macsec_secy *secy;
1542 struct macsec_rx_sc *rx_sc;
1543 sci_t sci;
1544
1545 dev = get_dev_from_nl(net, attrs);
1546 if (IS_ERR(dev))
1547 return ERR_CAST(dev);
1548
1549 secy = &macsec_priv(dev)->secy;
1550
1551 if (!tb_rxsc[MACSEC_RXSC_ATTR_SCI])
1552 return ERR_PTR(-EINVAL);
1553
1554 sci = nla_get_sci(tb_rxsc[MACSEC_RXSC_ATTR_SCI]);
1555 rx_sc = find_rx_sc_rtnl(secy, sci);
1556 if (!rx_sc)
1557 return ERR_PTR(-ENODEV);
1558
1559 *secyp = secy;
1560 *devp = dev;
1561
1562 return rx_sc;
1563}
1564
1565static struct macsec_rx_sa *get_rxsa_from_nl(struct net *net,
1566 struct nlattr **attrs,
1567 struct nlattr **tb_rxsc,
1568 struct nlattr **tb_sa,
1569 struct net_device **devp,
1570 struct macsec_secy **secyp,
1571 struct macsec_rx_sc **scp,
1572 u8 *assoc_num)
1573{
1574 struct macsec_rx_sc *rx_sc;
1575 struct macsec_rx_sa *rx_sa;
1576
1577 if (!tb_sa[MACSEC_SA_ATTR_AN])
1578 return ERR_PTR(-EINVAL);
1579
1580 *assoc_num = nla_get_u8(tb_sa[MACSEC_SA_ATTR_AN]);
1581 if (*assoc_num >= MACSEC_NUM_AN)
1582 return ERR_PTR(-EINVAL);
1583
1584 rx_sc = get_rxsc_from_nl(net, attrs, tb_rxsc, devp, secyp);
1585 if (IS_ERR(rx_sc))
1586 return ERR_CAST(rx_sc);
1587
1588 rx_sa = rtnl_dereference(rx_sc->sa[*assoc_num]);
1589 if (!rx_sa)
1590 return ERR_PTR(-ENODEV);
1591
1592 *scp = rx_sc;
1593 return rx_sa;
1594}
1595
1596
1597static const struct nla_policy macsec_genl_policy[NUM_MACSEC_ATTR] = {
1598 [MACSEC_ATTR_IFINDEX] = { .type = NLA_U32 },
1599 [MACSEC_ATTR_RXSC_CONFIG] = { .type = NLA_NESTED },
1600 [MACSEC_ATTR_SA_CONFIG] = { .type = NLA_NESTED },
1601};
1602
1603static const struct nla_policy macsec_genl_rxsc_policy[NUM_MACSEC_RXSC_ATTR] = {
1604 [MACSEC_RXSC_ATTR_SCI] = { .type = NLA_U64 },
1605 [MACSEC_RXSC_ATTR_ACTIVE] = { .type = NLA_U8 },
1606};
1607
1608static const struct nla_policy macsec_genl_sa_policy[NUM_MACSEC_SA_ATTR] = {
1609 [MACSEC_SA_ATTR_AN] = { .type = NLA_U8 },
1610 [MACSEC_SA_ATTR_ACTIVE] = { .type = NLA_U8 },
1611 [MACSEC_SA_ATTR_PN] = { .type = NLA_U32 },
Sabrina Dubroca8acca6a2016-05-07 20:19:29 +02001612 [MACSEC_SA_ATTR_KEYID] = { .type = NLA_BINARY,
1613 .len = MACSEC_KEYID_LEN, },
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001614 [MACSEC_SA_ATTR_KEY] = { .type = NLA_BINARY,
1615 .len = MACSEC_MAX_KEY_LEN, },
1616};
1617
1618static int parse_sa_config(struct nlattr **attrs, struct nlattr **tb_sa)
1619{
1620 if (!attrs[MACSEC_ATTR_SA_CONFIG])
1621 return -EINVAL;
1622
1623 if (nla_parse_nested(tb_sa, MACSEC_SA_ATTR_MAX, attrs[MACSEC_ATTR_SA_CONFIG],
1624 macsec_genl_sa_policy))
1625 return -EINVAL;
1626
1627 return 0;
1628}
1629
1630static int parse_rxsc_config(struct nlattr **attrs, struct nlattr **tb_rxsc)
1631{
1632 if (!attrs[MACSEC_ATTR_RXSC_CONFIG])
1633 return -EINVAL;
1634
1635 if (nla_parse_nested(tb_rxsc, MACSEC_RXSC_ATTR_MAX, attrs[MACSEC_ATTR_RXSC_CONFIG],
1636 macsec_genl_rxsc_policy))
1637 return -EINVAL;
1638
1639 return 0;
1640}
1641
1642static bool validate_add_rxsa(struct nlattr **attrs)
1643{
1644 if (!attrs[MACSEC_SA_ATTR_AN] ||
1645 !attrs[MACSEC_SA_ATTR_KEY] ||
1646 !attrs[MACSEC_SA_ATTR_KEYID])
1647 return false;
1648
1649 if (nla_get_u8(attrs[MACSEC_SA_ATTR_AN]) >= MACSEC_NUM_AN)
1650 return false;
1651
1652 if (attrs[MACSEC_SA_ATTR_PN] && nla_get_u32(attrs[MACSEC_SA_ATTR_PN]) == 0)
1653 return false;
1654
1655 if (attrs[MACSEC_SA_ATTR_ACTIVE]) {
1656 if (nla_get_u8(attrs[MACSEC_SA_ATTR_ACTIVE]) > 1)
1657 return false;
1658 }
1659
Sabrina Dubroca8acca6a2016-05-07 20:19:29 +02001660 if (nla_len(attrs[MACSEC_SA_ATTR_KEYID]) != MACSEC_KEYID_LEN)
1661 return false;
1662
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001663 return true;
1664}
1665
1666static int macsec_add_rxsa(struct sk_buff *skb, struct genl_info *info)
1667{
1668 struct net_device *dev;
1669 struct nlattr **attrs = info->attrs;
1670 struct macsec_secy *secy;
1671 struct macsec_rx_sc *rx_sc;
1672 struct macsec_rx_sa *rx_sa;
1673 unsigned char assoc_num;
1674 struct nlattr *tb_rxsc[MACSEC_RXSC_ATTR_MAX + 1];
1675 struct nlattr *tb_sa[MACSEC_SA_ATTR_MAX + 1];
Davide Caratti34aedfe2016-07-22 15:07:57 +02001676 int err;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001677
1678 if (!attrs[MACSEC_ATTR_IFINDEX])
1679 return -EINVAL;
1680
1681 if (parse_sa_config(attrs, tb_sa))
1682 return -EINVAL;
1683
1684 if (parse_rxsc_config(attrs, tb_rxsc))
1685 return -EINVAL;
1686
1687 if (!validate_add_rxsa(tb_sa))
1688 return -EINVAL;
1689
1690 rtnl_lock();
1691 rx_sc = get_rxsc_from_nl(genl_info_net(info), attrs, tb_rxsc, &dev, &secy);
Sabrina Dubroca36b232c2016-07-29 15:37:54 +02001692 if (IS_ERR(rx_sc)) {
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001693 rtnl_unlock();
1694 return PTR_ERR(rx_sc);
1695 }
1696
1697 assoc_num = nla_get_u8(tb_sa[MACSEC_SA_ATTR_AN]);
1698
1699 if (nla_len(tb_sa[MACSEC_SA_ATTR_KEY]) != secy->key_len) {
1700 pr_notice("macsec: nl: add_rxsa: bad key length: %d != %d\n",
1701 nla_len(tb_sa[MACSEC_SA_ATTR_KEY]), secy->key_len);
1702 rtnl_unlock();
1703 return -EINVAL;
1704 }
1705
1706 rx_sa = rtnl_dereference(rx_sc->sa[assoc_num]);
1707 if (rx_sa) {
1708 rtnl_unlock();
1709 return -EBUSY;
1710 }
1711
1712 rx_sa = kmalloc(sizeof(*rx_sa), GFP_KERNEL);
Davide Caratti34aedfe2016-07-22 15:07:57 +02001713 if (!rx_sa) {
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001714 rtnl_unlock();
1715 return -ENOMEM;
1716 }
1717
Davide Caratti34aedfe2016-07-22 15:07:57 +02001718 err = init_rx_sa(rx_sa, nla_data(tb_sa[MACSEC_SA_ATTR_KEY]),
1719 secy->key_len, secy->icv_len);
1720 if (err < 0) {
1721 kfree(rx_sa);
1722 rtnl_unlock();
1723 return err;
1724 }
1725
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001726 if (tb_sa[MACSEC_SA_ATTR_PN]) {
1727 spin_lock_bh(&rx_sa->lock);
1728 rx_sa->next_pn = nla_get_u32(tb_sa[MACSEC_SA_ATTR_PN]);
1729 spin_unlock_bh(&rx_sa->lock);
1730 }
1731
1732 if (tb_sa[MACSEC_SA_ATTR_ACTIVE])
1733 rx_sa->active = !!nla_get_u8(tb_sa[MACSEC_SA_ATTR_ACTIVE]);
1734
Sabrina Dubroca1968a0b2016-05-18 13:34:40 +02001735 nla_memcpy(rx_sa->key.id, tb_sa[MACSEC_SA_ATTR_KEYID], MACSEC_KEYID_LEN);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001736 rx_sa->sc = rx_sc;
1737 rcu_assign_pointer(rx_sc->sa[assoc_num], rx_sa);
1738
1739 rtnl_unlock();
1740
1741 return 0;
1742}
1743
1744static bool validate_add_rxsc(struct nlattr **attrs)
1745{
1746 if (!attrs[MACSEC_RXSC_ATTR_SCI])
1747 return false;
1748
1749 if (attrs[MACSEC_RXSC_ATTR_ACTIVE]) {
1750 if (nla_get_u8(attrs[MACSEC_RXSC_ATTR_ACTIVE]) > 1)
1751 return false;
1752 }
1753
1754 return true;
1755}
1756
1757static int macsec_add_rxsc(struct sk_buff *skb, struct genl_info *info)
1758{
1759 struct net_device *dev;
1760 sci_t sci = MACSEC_UNDEF_SCI;
1761 struct nlattr **attrs = info->attrs;
1762 struct macsec_rx_sc *rx_sc;
1763 struct nlattr *tb_rxsc[MACSEC_RXSC_ATTR_MAX + 1];
1764
1765 if (!attrs[MACSEC_ATTR_IFINDEX])
1766 return -EINVAL;
1767
1768 if (parse_rxsc_config(attrs, tb_rxsc))
1769 return -EINVAL;
1770
1771 if (!validate_add_rxsc(tb_rxsc))
1772 return -EINVAL;
1773
1774 rtnl_lock();
1775 dev = get_dev_from_nl(genl_info_net(info), attrs);
1776 if (IS_ERR(dev)) {
1777 rtnl_unlock();
1778 return PTR_ERR(dev);
1779 }
1780
1781 sci = nla_get_sci(tb_rxsc[MACSEC_RXSC_ATTR_SCI]);
1782
1783 rx_sc = create_rx_sc(dev, sci);
1784 if (IS_ERR(rx_sc)) {
1785 rtnl_unlock();
1786 return PTR_ERR(rx_sc);
1787 }
1788
1789 if (tb_rxsc[MACSEC_RXSC_ATTR_ACTIVE])
1790 rx_sc->active = !!nla_get_u8(tb_rxsc[MACSEC_RXSC_ATTR_ACTIVE]);
1791
1792 rtnl_unlock();
1793
1794 return 0;
1795}
1796
1797static bool validate_add_txsa(struct nlattr **attrs)
1798{
1799 if (!attrs[MACSEC_SA_ATTR_AN] ||
1800 !attrs[MACSEC_SA_ATTR_PN] ||
1801 !attrs[MACSEC_SA_ATTR_KEY] ||
1802 !attrs[MACSEC_SA_ATTR_KEYID])
1803 return false;
1804
1805 if (nla_get_u8(attrs[MACSEC_SA_ATTR_AN]) >= MACSEC_NUM_AN)
1806 return false;
1807
1808 if (nla_get_u32(attrs[MACSEC_SA_ATTR_PN]) == 0)
1809 return false;
1810
1811 if (attrs[MACSEC_SA_ATTR_ACTIVE]) {
1812 if (nla_get_u8(attrs[MACSEC_SA_ATTR_ACTIVE]) > 1)
1813 return false;
1814 }
1815
Sabrina Dubroca8acca6a2016-05-07 20:19:29 +02001816 if (nla_len(attrs[MACSEC_SA_ATTR_KEYID]) != MACSEC_KEYID_LEN)
1817 return false;
1818
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001819 return true;
1820}
1821
1822static int macsec_add_txsa(struct sk_buff *skb, struct genl_info *info)
1823{
1824 struct net_device *dev;
1825 struct nlattr **attrs = info->attrs;
1826 struct macsec_secy *secy;
1827 struct macsec_tx_sc *tx_sc;
1828 struct macsec_tx_sa *tx_sa;
1829 unsigned char assoc_num;
1830 struct nlattr *tb_sa[MACSEC_SA_ATTR_MAX + 1];
Davide Caratti34aedfe2016-07-22 15:07:57 +02001831 int err;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001832
1833 if (!attrs[MACSEC_ATTR_IFINDEX])
1834 return -EINVAL;
1835
1836 if (parse_sa_config(attrs, tb_sa))
1837 return -EINVAL;
1838
1839 if (!validate_add_txsa(tb_sa))
1840 return -EINVAL;
1841
1842 rtnl_lock();
1843 dev = get_dev_from_nl(genl_info_net(info), attrs);
1844 if (IS_ERR(dev)) {
1845 rtnl_unlock();
1846 return PTR_ERR(dev);
1847 }
1848
1849 secy = &macsec_priv(dev)->secy;
1850 tx_sc = &secy->tx_sc;
1851
1852 assoc_num = nla_get_u8(tb_sa[MACSEC_SA_ATTR_AN]);
1853
1854 if (nla_len(tb_sa[MACSEC_SA_ATTR_KEY]) != secy->key_len) {
1855 pr_notice("macsec: nl: add_txsa: bad key length: %d != %d\n",
1856 nla_len(tb_sa[MACSEC_SA_ATTR_KEY]), secy->key_len);
1857 rtnl_unlock();
1858 return -EINVAL;
1859 }
1860
1861 tx_sa = rtnl_dereference(tx_sc->sa[assoc_num]);
1862 if (tx_sa) {
1863 rtnl_unlock();
1864 return -EBUSY;
1865 }
1866
1867 tx_sa = kmalloc(sizeof(*tx_sa), GFP_KERNEL);
Davide Caratti34aedfe2016-07-22 15:07:57 +02001868 if (!tx_sa) {
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001869 rtnl_unlock();
1870 return -ENOMEM;
1871 }
1872
Davide Caratti34aedfe2016-07-22 15:07:57 +02001873 err = init_tx_sa(tx_sa, nla_data(tb_sa[MACSEC_SA_ATTR_KEY]),
1874 secy->key_len, secy->icv_len);
1875 if (err < 0) {
1876 kfree(tx_sa);
1877 rtnl_unlock();
1878 return err;
1879 }
1880
Sabrina Dubroca1968a0b2016-05-18 13:34:40 +02001881 nla_memcpy(tx_sa->key.id, tb_sa[MACSEC_SA_ATTR_KEYID], MACSEC_KEYID_LEN);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001882
1883 spin_lock_bh(&tx_sa->lock);
1884 tx_sa->next_pn = nla_get_u32(tb_sa[MACSEC_SA_ATTR_PN]);
1885 spin_unlock_bh(&tx_sa->lock);
1886
1887 if (tb_sa[MACSEC_SA_ATTR_ACTIVE])
1888 tx_sa->active = !!nla_get_u8(tb_sa[MACSEC_SA_ATTR_ACTIVE]);
1889
1890 if (assoc_num == tx_sc->encoding_sa && tx_sa->active)
1891 secy->operational = true;
1892
1893 rcu_assign_pointer(tx_sc->sa[assoc_num], tx_sa);
1894
1895 rtnl_unlock();
1896
1897 return 0;
1898}
1899
1900static int macsec_del_rxsa(struct sk_buff *skb, struct genl_info *info)
1901{
1902 struct nlattr **attrs = info->attrs;
1903 struct net_device *dev;
1904 struct macsec_secy *secy;
1905 struct macsec_rx_sc *rx_sc;
1906 struct macsec_rx_sa *rx_sa;
1907 u8 assoc_num;
1908 struct nlattr *tb_rxsc[MACSEC_RXSC_ATTR_MAX + 1];
1909 struct nlattr *tb_sa[MACSEC_SA_ATTR_MAX + 1];
1910
1911 if (!attrs[MACSEC_ATTR_IFINDEX])
1912 return -EINVAL;
1913
1914 if (parse_sa_config(attrs, tb_sa))
1915 return -EINVAL;
1916
1917 if (parse_rxsc_config(attrs, tb_rxsc))
1918 return -EINVAL;
1919
1920 rtnl_lock();
1921 rx_sa = get_rxsa_from_nl(genl_info_net(info), attrs, tb_rxsc, tb_sa,
1922 &dev, &secy, &rx_sc, &assoc_num);
1923 if (IS_ERR(rx_sa)) {
1924 rtnl_unlock();
1925 return PTR_ERR(rx_sa);
1926 }
1927
1928 if (rx_sa->active) {
1929 rtnl_unlock();
1930 return -EBUSY;
1931 }
1932
1933 RCU_INIT_POINTER(rx_sc->sa[assoc_num], NULL);
1934 clear_rx_sa(rx_sa);
1935
1936 rtnl_unlock();
1937
1938 return 0;
1939}
1940
1941static int macsec_del_rxsc(struct sk_buff *skb, struct genl_info *info)
1942{
1943 struct nlattr **attrs = info->attrs;
1944 struct net_device *dev;
1945 struct macsec_secy *secy;
1946 struct macsec_rx_sc *rx_sc;
1947 sci_t sci;
1948 struct nlattr *tb_rxsc[MACSEC_RXSC_ATTR_MAX + 1];
1949
1950 if (!attrs[MACSEC_ATTR_IFINDEX])
1951 return -EINVAL;
1952
1953 if (parse_rxsc_config(attrs, tb_rxsc))
1954 return -EINVAL;
1955
1956 if (!tb_rxsc[MACSEC_RXSC_ATTR_SCI])
1957 return -EINVAL;
1958
1959 rtnl_lock();
1960 dev = get_dev_from_nl(genl_info_net(info), info->attrs);
1961 if (IS_ERR(dev)) {
1962 rtnl_unlock();
1963 return PTR_ERR(dev);
1964 }
1965
1966 secy = &macsec_priv(dev)->secy;
1967 sci = nla_get_sci(tb_rxsc[MACSEC_RXSC_ATTR_SCI]);
1968
1969 rx_sc = del_rx_sc(secy, sci);
1970 if (!rx_sc) {
1971 rtnl_unlock();
1972 return -ENODEV;
1973 }
1974
1975 free_rx_sc(rx_sc);
1976 rtnl_unlock();
1977
1978 return 0;
1979}
1980
1981static int macsec_del_txsa(struct sk_buff *skb, struct genl_info *info)
1982{
1983 struct nlattr **attrs = info->attrs;
1984 struct net_device *dev;
1985 struct macsec_secy *secy;
1986 struct macsec_tx_sc *tx_sc;
1987 struct macsec_tx_sa *tx_sa;
1988 u8 assoc_num;
1989 struct nlattr *tb_sa[MACSEC_SA_ATTR_MAX + 1];
1990
1991 if (!attrs[MACSEC_ATTR_IFINDEX])
1992 return -EINVAL;
1993
1994 if (parse_sa_config(attrs, tb_sa))
1995 return -EINVAL;
1996
1997 rtnl_lock();
1998 tx_sa = get_txsa_from_nl(genl_info_net(info), attrs, tb_sa,
1999 &dev, &secy, &tx_sc, &assoc_num);
2000 if (IS_ERR(tx_sa)) {
2001 rtnl_unlock();
2002 return PTR_ERR(tx_sa);
2003 }
2004
2005 if (tx_sa->active) {
2006 rtnl_unlock();
2007 return -EBUSY;
2008 }
2009
2010 RCU_INIT_POINTER(tx_sc->sa[assoc_num], NULL);
2011 clear_tx_sa(tx_sa);
2012
2013 rtnl_unlock();
2014
2015 return 0;
2016}
2017
2018static bool validate_upd_sa(struct nlattr **attrs)
2019{
2020 if (!attrs[MACSEC_SA_ATTR_AN] ||
2021 attrs[MACSEC_SA_ATTR_KEY] ||
2022 attrs[MACSEC_SA_ATTR_KEYID])
2023 return false;
2024
2025 if (nla_get_u8(attrs[MACSEC_SA_ATTR_AN]) >= MACSEC_NUM_AN)
2026 return false;
2027
2028 if (attrs[MACSEC_SA_ATTR_PN] && nla_get_u32(attrs[MACSEC_SA_ATTR_PN]) == 0)
2029 return false;
2030
2031 if (attrs[MACSEC_SA_ATTR_ACTIVE]) {
2032 if (nla_get_u8(attrs[MACSEC_SA_ATTR_ACTIVE]) > 1)
2033 return false;
2034 }
2035
2036 return true;
2037}
2038
2039static int macsec_upd_txsa(struct sk_buff *skb, struct genl_info *info)
2040{
2041 struct nlattr **attrs = info->attrs;
2042 struct net_device *dev;
2043 struct macsec_secy *secy;
2044 struct macsec_tx_sc *tx_sc;
2045 struct macsec_tx_sa *tx_sa;
2046 u8 assoc_num;
2047 struct nlattr *tb_sa[MACSEC_SA_ATTR_MAX + 1];
2048
2049 if (!attrs[MACSEC_ATTR_IFINDEX])
2050 return -EINVAL;
2051
2052 if (parse_sa_config(attrs, tb_sa))
2053 return -EINVAL;
2054
2055 if (!validate_upd_sa(tb_sa))
2056 return -EINVAL;
2057
2058 rtnl_lock();
2059 tx_sa = get_txsa_from_nl(genl_info_net(info), attrs, tb_sa,
2060 &dev, &secy, &tx_sc, &assoc_num);
2061 if (IS_ERR(tx_sa)) {
2062 rtnl_unlock();
2063 return PTR_ERR(tx_sa);
2064 }
2065
2066 if (tb_sa[MACSEC_SA_ATTR_PN]) {
2067 spin_lock_bh(&tx_sa->lock);
2068 tx_sa->next_pn = nla_get_u32(tb_sa[MACSEC_SA_ATTR_PN]);
2069 spin_unlock_bh(&tx_sa->lock);
2070 }
2071
2072 if (tb_sa[MACSEC_SA_ATTR_ACTIVE])
2073 tx_sa->active = nla_get_u8(tb_sa[MACSEC_SA_ATTR_ACTIVE]);
2074
2075 if (assoc_num == tx_sc->encoding_sa)
2076 secy->operational = tx_sa->active;
2077
2078 rtnl_unlock();
2079
2080 return 0;
2081}
2082
2083static int macsec_upd_rxsa(struct sk_buff *skb, struct genl_info *info)
2084{
2085 struct nlattr **attrs = info->attrs;
2086 struct net_device *dev;
2087 struct macsec_secy *secy;
2088 struct macsec_rx_sc *rx_sc;
2089 struct macsec_rx_sa *rx_sa;
2090 u8 assoc_num;
2091 struct nlattr *tb_rxsc[MACSEC_RXSC_ATTR_MAX + 1];
2092 struct nlattr *tb_sa[MACSEC_SA_ATTR_MAX + 1];
2093
2094 if (!attrs[MACSEC_ATTR_IFINDEX])
2095 return -EINVAL;
2096
2097 if (parse_rxsc_config(attrs, tb_rxsc))
2098 return -EINVAL;
2099
2100 if (parse_sa_config(attrs, tb_sa))
2101 return -EINVAL;
2102
2103 if (!validate_upd_sa(tb_sa))
2104 return -EINVAL;
2105
2106 rtnl_lock();
2107 rx_sa = get_rxsa_from_nl(genl_info_net(info), attrs, tb_rxsc, tb_sa,
2108 &dev, &secy, &rx_sc, &assoc_num);
2109 if (IS_ERR(rx_sa)) {
2110 rtnl_unlock();
2111 return PTR_ERR(rx_sa);
2112 }
2113
2114 if (tb_sa[MACSEC_SA_ATTR_PN]) {
2115 spin_lock_bh(&rx_sa->lock);
2116 rx_sa->next_pn = nla_get_u32(tb_sa[MACSEC_SA_ATTR_PN]);
2117 spin_unlock_bh(&rx_sa->lock);
2118 }
2119
2120 if (tb_sa[MACSEC_SA_ATTR_ACTIVE])
2121 rx_sa->active = nla_get_u8(tb_sa[MACSEC_SA_ATTR_ACTIVE]);
2122
2123 rtnl_unlock();
2124 return 0;
2125}
2126
2127static int macsec_upd_rxsc(struct sk_buff *skb, struct genl_info *info)
2128{
2129 struct nlattr **attrs = info->attrs;
2130 struct net_device *dev;
2131 struct macsec_secy *secy;
2132 struct macsec_rx_sc *rx_sc;
2133 struct nlattr *tb_rxsc[MACSEC_RXSC_ATTR_MAX + 1];
2134
2135 if (!attrs[MACSEC_ATTR_IFINDEX])
2136 return -EINVAL;
2137
2138 if (parse_rxsc_config(attrs, tb_rxsc))
2139 return -EINVAL;
2140
2141 if (!validate_add_rxsc(tb_rxsc))
2142 return -EINVAL;
2143
2144 rtnl_lock();
2145 rx_sc = get_rxsc_from_nl(genl_info_net(info), attrs, tb_rxsc, &dev, &secy);
2146 if (IS_ERR(rx_sc)) {
2147 rtnl_unlock();
2148 return PTR_ERR(rx_sc);
2149 }
2150
2151 if (tb_rxsc[MACSEC_RXSC_ATTR_ACTIVE]) {
2152 bool new = !!nla_get_u8(tb_rxsc[MACSEC_RXSC_ATTR_ACTIVE]);
2153
2154 if (rx_sc->active != new)
2155 secy->n_rx_sc += new ? 1 : -1;
2156
2157 rx_sc->active = new;
2158 }
2159
2160 rtnl_unlock();
2161
2162 return 0;
2163}
2164
2165static int copy_tx_sa_stats(struct sk_buff *skb,
2166 struct macsec_tx_sa_stats __percpu *pstats)
2167{
2168 struct macsec_tx_sa_stats sum = {0, };
2169 int cpu;
2170
2171 for_each_possible_cpu(cpu) {
2172 const struct macsec_tx_sa_stats *stats = per_cpu_ptr(pstats, cpu);
2173
2174 sum.OutPktsProtected += stats->OutPktsProtected;
2175 sum.OutPktsEncrypted += stats->OutPktsEncrypted;
2176 }
2177
2178 if (nla_put_u32(skb, MACSEC_SA_STATS_ATTR_OUT_PKTS_PROTECTED, sum.OutPktsProtected) ||
2179 nla_put_u32(skb, MACSEC_SA_STATS_ATTR_OUT_PKTS_ENCRYPTED, sum.OutPktsEncrypted))
2180 return -EMSGSIZE;
2181
2182 return 0;
2183}
2184
2185static int copy_rx_sa_stats(struct sk_buff *skb,
2186 struct macsec_rx_sa_stats __percpu *pstats)
2187{
2188 struct macsec_rx_sa_stats sum = {0, };
2189 int cpu;
2190
2191 for_each_possible_cpu(cpu) {
2192 const struct macsec_rx_sa_stats *stats = per_cpu_ptr(pstats, cpu);
2193
2194 sum.InPktsOK += stats->InPktsOK;
2195 sum.InPktsInvalid += stats->InPktsInvalid;
2196 sum.InPktsNotValid += stats->InPktsNotValid;
2197 sum.InPktsNotUsingSA += stats->InPktsNotUsingSA;
2198 sum.InPktsUnusedSA += stats->InPktsUnusedSA;
2199 }
2200
2201 if (nla_put_u32(skb, MACSEC_SA_STATS_ATTR_IN_PKTS_OK, sum.InPktsOK) ||
2202 nla_put_u32(skb, MACSEC_SA_STATS_ATTR_IN_PKTS_INVALID, sum.InPktsInvalid) ||
2203 nla_put_u32(skb, MACSEC_SA_STATS_ATTR_IN_PKTS_NOT_VALID, sum.InPktsNotValid) ||
2204 nla_put_u32(skb, MACSEC_SA_STATS_ATTR_IN_PKTS_NOT_USING_SA, sum.InPktsNotUsingSA) ||
2205 nla_put_u32(skb, MACSEC_SA_STATS_ATTR_IN_PKTS_UNUSED_SA, sum.InPktsUnusedSA))
2206 return -EMSGSIZE;
2207
2208 return 0;
2209}
2210
2211static int copy_rx_sc_stats(struct sk_buff *skb,
2212 struct pcpu_rx_sc_stats __percpu *pstats)
2213{
2214 struct macsec_rx_sc_stats sum = {0, };
2215 int cpu;
2216
2217 for_each_possible_cpu(cpu) {
2218 const struct pcpu_rx_sc_stats *stats;
2219 struct macsec_rx_sc_stats tmp;
2220 unsigned int start;
2221
2222 stats = per_cpu_ptr(pstats, cpu);
2223 do {
2224 start = u64_stats_fetch_begin_irq(&stats->syncp);
2225 memcpy(&tmp, &stats->stats, sizeof(tmp));
2226 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
2227
2228 sum.InOctetsValidated += tmp.InOctetsValidated;
2229 sum.InOctetsDecrypted += tmp.InOctetsDecrypted;
2230 sum.InPktsUnchecked += tmp.InPktsUnchecked;
2231 sum.InPktsDelayed += tmp.InPktsDelayed;
2232 sum.InPktsOK += tmp.InPktsOK;
2233 sum.InPktsInvalid += tmp.InPktsInvalid;
2234 sum.InPktsLate += tmp.InPktsLate;
2235 sum.InPktsNotValid += tmp.InPktsNotValid;
2236 sum.InPktsNotUsingSA += tmp.InPktsNotUsingSA;
2237 sum.InPktsUnusedSA += tmp.InPktsUnusedSA;
2238 }
2239
Nicolas Dichtelf60d94c2016-04-26 10:06:11 +02002240 if (nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_OCTETS_VALIDATED,
2241 sum.InOctetsValidated,
2242 MACSEC_RXSC_STATS_ATTR_PAD) ||
2243 nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_OCTETS_DECRYPTED,
2244 sum.InOctetsDecrypted,
2245 MACSEC_RXSC_STATS_ATTR_PAD) ||
2246 nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_UNCHECKED,
2247 sum.InPktsUnchecked,
2248 MACSEC_RXSC_STATS_ATTR_PAD) ||
2249 nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_DELAYED,
2250 sum.InPktsDelayed,
2251 MACSEC_RXSC_STATS_ATTR_PAD) ||
2252 nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_OK,
2253 sum.InPktsOK,
2254 MACSEC_RXSC_STATS_ATTR_PAD) ||
2255 nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_INVALID,
2256 sum.InPktsInvalid,
2257 MACSEC_RXSC_STATS_ATTR_PAD) ||
2258 nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_LATE,
2259 sum.InPktsLate,
2260 MACSEC_RXSC_STATS_ATTR_PAD) ||
2261 nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_NOT_VALID,
2262 sum.InPktsNotValid,
2263 MACSEC_RXSC_STATS_ATTR_PAD) ||
2264 nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_NOT_USING_SA,
2265 sum.InPktsNotUsingSA,
2266 MACSEC_RXSC_STATS_ATTR_PAD) ||
2267 nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_UNUSED_SA,
2268 sum.InPktsUnusedSA,
2269 MACSEC_RXSC_STATS_ATTR_PAD))
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002270 return -EMSGSIZE;
2271
2272 return 0;
2273}
2274
2275static int copy_tx_sc_stats(struct sk_buff *skb,
2276 struct pcpu_tx_sc_stats __percpu *pstats)
2277{
2278 struct macsec_tx_sc_stats sum = {0, };
2279 int cpu;
2280
2281 for_each_possible_cpu(cpu) {
2282 const struct pcpu_tx_sc_stats *stats;
2283 struct macsec_tx_sc_stats tmp;
2284 unsigned int start;
2285
2286 stats = per_cpu_ptr(pstats, cpu);
2287 do {
2288 start = u64_stats_fetch_begin_irq(&stats->syncp);
2289 memcpy(&tmp, &stats->stats, sizeof(tmp));
2290 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
2291
2292 sum.OutPktsProtected += tmp.OutPktsProtected;
2293 sum.OutPktsEncrypted += tmp.OutPktsEncrypted;
2294 sum.OutOctetsProtected += tmp.OutOctetsProtected;
2295 sum.OutOctetsEncrypted += tmp.OutOctetsEncrypted;
2296 }
2297
Nicolas Dichtelf60d94c2016-04-26 10:06:11 +02002298 if (nla_put_u64_64bit(skb, MACSEC_TXSC_STATS_ATTR_OUT_PKTS_PROTECTED,
2299 sum.OutPktsProtected,
2300 MACSEC_TXSC_STATS_ATTR_PAD) ||
2301 nla_put_u64_64bit(skb, MACSEC_TXSC_STATS_ATTR_OUT_PKTS_ENCRYPTED,
2302 sum.OutPktsEncrypted,
2303 MACSEC_TXSC_STATS_ATTR_PAD) ||
2304 nla_put_u64_64bit(skb, MACSEC_TXSC_STATS_ATTR_OUT_OCTETS_PROTECTED,
2305 sum.OutOctetsProtected,
2306 MACSEC_TXSC_STATS_ATTR_PAD) ||
2307 nla_put_u64_64bit(skb, MACSEC_TXSC_STATS_ATTR_OUT_OCTETS_ENCRYPTED,
2308 sum.OutOctetsEncrypted,
2309 MACSEC_TXSC_STATS_ATTR_PAD))
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002310 return -EMSGSIZE;
2311
2312 return 0;
2313}
2314
2315static int copy_secy_stats(struct sk_buff *skb,
2316 struct pcpu_secy_stats __percpu *pstats)
2317{
2318 struct macsec_dev_stats sum = {0, };
2319 int cpu;
2320
2321 for_each_possible_cpu(cpu) {
2322 const struct pcpu_secy_stats *stats;
2323 struct macsec_dev_stats tmp;
2324 unsigned int start;
2325
2326 stats = per_cpu_ptr(pstats, cpu);
2327 do {
2328 start = u64_stats_fetch_begin_irq(&stats->syncp);
2329 memcpy(&tmp, &stats->stats, sizeof(tmp));
2330 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
2331
2332 sum.OutPktsUntagged += tmp.OutPktsUntagged;
2333 sum.InPktsUntagged += tmp.InPktsUntagged;
2334 sum.OutPktsTooLong += tmp.OutPktsTooLong;
2335 sum.InPktsNoTag += tmp.InPktsNoTag;
2336 sum.InPktsBadTag += tmp.InPktsBadTag;
2337 sum.InPktsUnknownSCI += tmp.InPktsUnknownSCI;
2338 sum.InPktsNoSCI += tmp.InPktsNoSCI;
2339 sum.InPktsOverrun += tmp.InPktsOverrun;
2340 }
2341
Nicolas Dichtelf60d94c2016-04-26 10:06:11 +02002342 if (nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_OUT_PKTS_UNTAGGED,
2343 sum.OutPktsUntagged,
2344 MACSEC_SECY_STATS_ATTR_PAD) ||
2345 nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_IN_PKTS_UNTAGGED,
2346 sum.InPktsUntagged,
2347 MACSEC_SECY_STATS_ATTR_PAD) ||
2348 nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_OUT_PKTS_TOO_LONG,
2349 sum.OutPktsTooLong,
2350 MACSEC_SECY_STATS_ATTR_PAD) ||
2351 nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_IN_PKTS_NO_TAG,
2352 sum.InPktsNoTag,
2353 MACSEC_SECY_STATS_ATTR_PAD) ||
2354 nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_IN_PKTS_BAD_TAG,
2355 sum.InPktsBadTag,
2356 MACSEC_SECY_STATS_ATTR_PAD) ||
2357 nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_IN_PKTS_UNKNOWN_SCI,
2358 sum.InPktsUnknownSCI,
2359 MACSEC_SECY_STATS_ATTR_PAD) ||
2360 nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_IN_PKTS_NO_SCI,
2361 sum.InPktsNoSCI,
2362 MACSEC_SECY_STATS_ATTR_PAD) ||
2363 nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_IN_PKTS_OVERRUN,
2364 sum.InPktsOverrun,
2365 MACSEC_SECY_STATS_ATTR_PAD))
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002366 return -EMSGSIZE;
2367
2368 return 0;
2369}
2370
2371static int nla_put_secy(struct macsec_secy *secy, struct sk_buff *skb)
2372{
2373 struct macsec_tx_sc *tx_sc = &secy->tx_sc;
2374 struct nlattr *secy_nest = nla_nest_start(skb, MACSEC_ATTR_SECY);
2375
2376 if (!secy_nest)
2377 return 1;
2378
Nicolas Dichtelf60d94c2016-04-26 10:06:11 +02002379 if (nla_put_sci(skb, MACSEC_SECY_ATTR_SCI, secy->sci,
2380 MACSEC_SECY_ATTR_PAD) ||
2381 nla_put_u64_64bit(skb, MACSEC_SECY_ATTR_CIPHER_SUITE,
David S. Millerc0cc5312016-04-27 15:43:10 -04002382 MACSEC_DEFAULT_CIPHER_ID,
Nicolas Dichtelf60d94c2016-04-26 10:06:11 +02002383 MACSEC_SECY_ATTR_PAD) ||
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002384 nla_put_u8(skb, MACSEC_SECY_ATTR_ICV_LEN, secy->icv_len) ||
2385 nla_put_u8(skb, MACSEC_SECY_ATTR_OPER, secy->operational) ||
2386 nla_put_u8(skb, MACSEC_SECY_ATTR_PROTECT, secy->protect_frames) ||
2387 nla_put_u8(skb, MACSEC_SECY_ATTR_REPLAY, secy->replay_protect) ||
2388 nla_put_u8(skb, MACSEC_SECY_ATTR_VALIDATE, secy->validate_frames) ||
2389 nla_put_u8(skb, MACSEC_SECY_ATTR_ENCRYPT, tx_sc->encrypt) ||
2390 nla_put_u8(skb, MACSEC_SECY_ATTR_INC_SCI, tx_sc->send_sci) ||
2391 nla_put_u8(skb, MACSEC_SECY_ATTR_ES, tx_sc->end_station) ||
2392 nla_put_u8(skb, MACSEC_SECY_ATTR_SCB, tx_sc->scb) ||
2393 nla_put_u8(skb, MACSEC_SECY_ATTR_ENCODING_SA, tx_sc->encoding_sa))
2394 goto cancel;
2395
2396 if (secy->replay_protect) {
2397 if (nla_put_u32(skb, MACSEC_SECY_ATTR_WINDOW, secy->replay_window))
2398 goto cancel;
2399 }
2400
2401 nla_nest_end(skb, secy_nest);
2402 return 0;
2403
2404cancel:
2405 nla_nest_cancel(skb, secy_nest);
2406 return 1;
2407}
2408
2409static int dump_secy(struct macsec_secy *secy, struct net_device *dev,
2410 struct sk_buff *skb, struct netlink_callback *cb)
2411{
2412 struct macsec_rx_sc *rx_sc;
2413 struct macsec_tx_sc *tx_sc = &secy->tx_sc;
2414 struct nlattr *txsa_list, *rxsc_list;
2415 int i, j;
2416 void *hdr;
2417 struct nlattr *attr;
2418
2419 hdr = genlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
2420 &macsec_fam, NLM_F_MULTI, MACSEC_CMD_GET_TXSC);
2421 if (!hdr)
2422 return -EMSGSIZE;
2423
Sabrina Dubroca96cfc502016-04-22 11:28:05 +02002424 genl_dump_check_consistent(cb, hdr, &macsec_fam);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002425
2426 if (nla_put_u32(skb, MACSEC_ATTR_IFINDEX, dev->ifindex))
2427 goto nla_put_failure;
2428
2429 if (nla_put_secy(secy, skb))
2430 goto nla_put_failure;
2431
2432 attr = nla_nest_start(skb, MACSEC_ATTR_TXSC_STATS);
2433 if (!attr)
2434 goto nla_put_failure;
2435 if (copy_tx_sc_stats(skb, tx_sc->stats)) {
2436 nla_nest_cancel(skb, attr);
2437 goto nla_put_failure;
2438 }
2439 nla_nest_end(skb, attr);
2440
2441 attr = nla_nest_start(skb, MACSEC_ATTR_SECY_STATS);
2442 if (!attr)
2443 goto nla_put_failure;
2444 if (copy_secy_stats(skb, macsec_priv(dev)->stats)) {
2445 nla_nest_cancel(skb, attr);
2446 goto nla_put_failure;
2447 }
2448 nla_nest_end(skb, attr);
2449
2450 txsa_list = nla_nest_start(skb, MACSEC_ATTR_TXSA_LIST);
2451 if (!txsa_list)
2452 goto nla_put_failure;
2453 for (i = 0, j = 1; i < MACSEC_NUM_AN; i++) {
2454 struct macsec_tx_sa *tx_sa = rtnl_dereference(tx_sc->sa[i]);
2455 struct nlattr *txsa_nest;
2456
2457 if (!tx_sa)
2458 continue;
2459
2460 txsa_nest = nla_nest_start(skb, j++);
2461 if (!txsa_nest) {
2462 nla_nest_cancel(skb, txsa_list);
2463 goto nla_put_failure;
2464 }
2465
2466 if (nla_put_u8(skb, MACSEC_SA_ATTR_AN, i) ||
2467 nla_put_u32(skb, MACSEC_SA_ATTR_PN, tx_sa->next_pn) ||
Sabrina Dubroca8acca6a2016-05-07 20:19:29 +02002468 nla_put(skb, MACSEC_SA_ATTR_KEYID, MACSEC_KEYID_LEN, tx_sa->key.id) ||
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002469 nla_put_u8(skb, MACSEC_SA_ATTR_ACTIVE, tx_sa->active)) {
2470 nla_nest_cancel(skb, txsa_nest);
2471 nla_nest_cancel(skb, txsa_list);
2472 goto nla_put_failure;
2473 }
2474
2475 attr = nla_nest_start(skb, MACSEC_SA_ATTR_STATS);
2476 if (!attr) {
2477 nla_nest_cancel(skb, txsa_nest);
2478 nla_nest_cancel(skb, txsa_list);
2479 goto nla_put_failure;
2480 }
2481 if (copy_tx_sa_stats(skb, tx_sa->stats)) {
2482 nla_nest_cancel(skb, attr);
2483 nla_nest_cancel(skb, txsa_nest);
2484 nla_nest_cancel(skb, txsa_list);
2485 goto nla_put_failure;
2486 }
2487 nla_nest_end(skb, attr);
2488
2489 nla_nest_end(skb, txsa_nest);
2490 }
2491 nla_nest_end(skb, txsa_list);
2492
2493 rxsc_list = nla_nest_start(skb, MACSEC_ATTR_RXSC_LIST);
2494 if (!rxsc_list)
2495 goto nla_put_failure;
2496
2497 j = 1;
2498 for_each_rxsc_rtnl(secy, rx_sc) {
2499 int k;
2500 struct nlattr *rxsa_list;
2501 struct nlattr *rxsc_nest = nla_nest_start(skb, j++);
2502
2503 if (!rxsc_nest) {
2504 nla_nest_cancel(skb, rxsc_list);
2505 goto nla_put_failure;
2506 }
2507
2508 if (nla_put_u8(skb, MACSEC_RXSC_ATTR_ACTIVE, rx_sc->active) ||
Nicolas Dichtelf60d94c2016-04-26 10:06:11 +02002509 nla_put_sci(skb, MACSEC_RXSC_ATTR_SCI, rx_sc->sci,
2510 MACSEC_RXSC_ATTR_PAD)) {
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002511 nla_nest_cancel(skb, rxsc_nest);
2512 nla_nest_cancel(skb, rxsc_list);
2513 goto nla_put_failure;
2514 }
2515
2516 attr = nla_nest_start(skb, MACSEC_RXSC_ATTR_STATS);
2517 if (!attr) {
2518 nla_nest_cancel(skb, rxsc_nest);
2519 nla_nest_cancel(skb, rxsc_list);
2520 goto nla_put_failure;
2521 }
2522 if (copy_rx_sc_stats(skb, rx_sc->stats)) {
2523 nla_nest_cancel(skb, attr);
2524 nla_nest_cancel(skb, rxsc_nest);
2525 nla_nest_cancel(skb, rxsc_list);
2526 goto nla_put_failure;
2527 }
2528 nla_nest_end(skb, attr);
2529
2530 rxsa_list = nla_nest_start(skb, MACSEC_RXSC_ATTR_SA_LIST);
2531 if (!rxsa_list) {
2532 nla_nest_cancel(skb, rxsc_nest);
2533 nla_nest_cancel(skb, rxsc_list);
2534 goto nla_put_failure;
2535 }
2536
2537 for (i = 0, k = 1; i < MACSEC_NUM_AN; i++) {
2538 struct macsec_rx_sa *rx_sa = rtnl_dereference(rx_sc->sa[i]);
2539 struct nlattr *rxsa_nest;
2540
2541 if (!rx_sa)
2542 continue;
2543
2544 rxsa_nest = nla_nest_start(skb, k++);
2545 if (!rxsa_nest) {
2546 nla_nest_cancel(skb, rxsa_list);
2547 nla_nest_cancel(skb, rxsc_nest);
2548 nla_nest_cancel(skb, rxsc_list);
2549 goto nla_put_failure;
2550 }
2551
2552 attr = nla_nest_start(skb, MACSEC_SA_ATTR_STATS);
2553 if (!attr) {
2554 nla_nest_cancel(skb, rxsa_list);
2555 nla_nest_cancel(skb, rxsc_nest);
2556 nla_nest_cancel(skb, rxsc_list);
2557 goto nla_put_failure;
2558 }
2559 if (copy_rx_sa_stats(skb, rx_sa->stats)) {
2560 nla_nest_cancel(skb, attr);
2561 nla_nest_cancel(skb, rxsa_list);
2562 nla_nest_cancel(skb, rxsc_nest);
2563 nla_nest_cancel(skb, rxsc_list);
2564 goto nla_put_failure;
2565 }
2566 nla_nest_end(skb, attr);
2567
2568 if (nla_put_u8(skb, MACSEC_SA_ATTR_AN, i) ||
2569 nla_put_u32(skb, MACSEC_SA_ATTR_PN, rx_sa->next_pn) ||
Sabrina Dubroca8acca6a2016-05-07 20:19:29 +02002570 nla_put(skb, MACSEC_SA_ATTR_KEYID, MACSEC_KEYID_LEN, rx_sa->key.id) ||
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002571 nla_put_u8(skb, MACSEC_SA_ATTR_ACTIVE, rx_sa->active)) {
2572 nla_nest_cancel(skb, rxsa_nest);
2573 nla_nest_cancel(skb, rxsc_nest);
2574 nla_nest_cancel(skb, rxsc_list);
2575 goto nla_put_failure;
2576 }
2577 nla_nest_end(skb, rxsa_nest);
2578 }
2579
2580 nla_nest_end(skb, rxsa_list);
2581 nla_nest_end(skb, rxsc_nest);
2582 }
2583
2584 nla_nest_end(skb, rxsc_list);
2585
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002586 genlmsg_end(skb, hdr);
2587
2588 return 0;
2589
2590nla_put_failure:
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002591 genlmsg_cancel(skb, hdr);
2592 return -EMSGSIZE;
2593}
2594
Sabrina Dubroca96cfc502016-04-22 11:28:05 +02002595static int macsec_generation = 1; /* protected by RTNL */
2596
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002597static int macsec_dump_txsc(struct sk_buff *skb, struct netlink_callback *cb)
2598{
2599 struct net *net = sock_net(skb->sk);
2600 struct net_device *dev;
2601 int dev_idx, d;
2602
2603 dev_idx = cb->args[0];
2604
2605 d = 0;
Sabrina Dubrocac10c63e2016-04-22 11:28:02 +02002606 rtnl_lock();
Sabrina Dubroca96cfc502016-04-22 11:28:05 +02002607
2608 cb->seq = macsec_generation;
2609
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002610 for_each_netdev(net, dev) {
2611 struct macsec_secy *secy;
2612
2613 if (d < dev_idx)
2614 goto next;
2615
2616 if (!netif_is_macsec(dev))
2617 goto next;
2618
2619 secy = &macsec_priv(dev)->secy;
2620 if (dump_secy(secy, dev, skb, cb) < 0)
2621 goto done;
2622next:
2623 d++;
2624 }
2625
2626done:
Sabrina Dubrocac10c63e2016-04-22 11:28:02 +02002627 rtnl_unlock();
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002628 cb->args[0] = d;
2629 return skb->len;
2630}
2631
2632static const struct genl_ops macsec_genl_ops[] = {
2633 {
2634 .cmd = MACSEC_CMD_GET_TXSC,
2635 .dumpit = macsec_dump_txsc,
2636 .policy = macsec_genl_policy,
2637 },
2638 {
2639 .cmd = MACSEC_CMD_ADD_RXSC,
2640 .doit = macsec_add_rxsc,
2641 .policy = macsec_genl_policy,
2642 .flags = GENL_ADMIN_PERM,
2643 },
2644 {
2645 .cmd = MACSEC_CMD_DEL_RXSC,
2646 .doit = macsec_del_rxsc,
2647 .policy = macsec_genl_policy,
2648 .flags = GENL_ADMIN_PERM,
2649 },
2650 {
2651 .cmd = MACSEC_CMD_UPD_RXSC,
2652 .doit = macsec_upd_rxsc,
2653 .policy = macsec_genl_policy,
2654 .flags = GENL_ADMIN_PERM,
2655 },
2656 {
2657 .cmd = MACSEC_CMD_ADD_TXSA,
2658 .doit = macsec_add_txsa,
2659 .policy = macsec_genl_policy,
2660 .flags = GENL_ADMIN_PERM,
2661 },
2662 {
2663 .cmd = MACSEC_CMD_DEL_TXSA,
2664 .doit = macsec_del_txsa,
2665 .policy = macsec_genl_policy,
2666 .flags = GENL_ADMIN_PERM,
2667 },
2668 {
2669 .cmd = MACSEC_CMD_UPD_TXSA,
2670 .doit = macsec_upd_txsa,
2671 .policy = macsec_genl_policy,
2672 .flags = GENL_ADMIN_PERM,
2673 },
2674 {
2675 .cmd = MACSEC_CMD_ADD_RXSA,
2676 .doit = macsec_add_rxsa,
2677 .policy = macsec_genl_policy,
2678 .flags = GENL_ADMIN_PERM,
2679 },
2680 {
2681 .cmd = MACSEC_CMD_DEL_RXSA,
2682 .doit = macsec_del_rxsa,
2683 .policy = macsec_genl_policy,
2684 .flags = GENL_ADMIN_PERM,
2685 },
2686 {
2687 .cmd = MACSEC_CMD_UPD_RXSA,
2688 .doit = macsec_upd_rxsa,
2689 .policy = macsec_genl_policy,
2690 .flags = GENL_ADMIN_PERM,
2691 },
2692};
2693
2694static netdev_tx_t macsec_start_xmit(struct sk_buff *skb,
2695 struct net_device *dev)
2696{
2697 struct macsec_dev *macsec = netdev_priv(dev);
2698 struct macsec_secy *secy = &macsec->secy;
2699 struct pcpu_secy_stats *secy_stats;
2700 int ret, len;
2701
2702 /* 10.5 */
2703 if (!secy->protect_frames) {
2704 secy_stats = this_cpu_ptr(macsec->stats);
2705 u64_stats_update_begin(&secy_stats->syncp);
2706 secy_stats->stats.OutPktsUntagged++;
2707 u64_stats_update_end(&secy_stats->syncp);
Daniel Borkmann79c62222016-07-01 00:00:54 +02002708 skb->dev = macsec->real_dev;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002709 len = skb->len;
2710 ret = dev_queue_xmit(skb);
2711 count_tx(dev, ret, len);
2712 return ret;
2713 }
2714
2715 if (!secy->operational) {
2716 kfree_skb(skb);
2717 dev->stats.tx_dropped++;
2718 return NETDEV_TX_OK;
2719 }
2720
2721 skb = macsec_encrypt(skb, dev);
2722 if (IS_ERR(skb)) {
2723 if (PTR_ERR(skb) != -EINPROGRESS)
2724 dev->stats.tx_dropped++;
2725 return NETDEV_TX_OK;
2726 }
2727
2728 macsec_count_tx(skb, &macsec->secy.tx_sc, macsec_skb_cb(skb)->tx_sa);
2729
2730 macsec_encrypt_finish(skb, dev);
2731 len = skb->len;
2732 ret = dev_queue_xmit(skb);
2733 count_tx(dev, ret, len);
2734 return ret;
2735}
2736
2737#define MACSEC_FEATURES \
Jason A. Donenfeld3b0129d2017-04-25 19:08:18 +02002738 (NETIF_F_SG | NETIF_F_HIGHDMA | NETIF_F_FRAGLIST)
Sabrina Dubrocae2003872016-08-12 16:10:32 +02002739static struct lock_class_key macsec_netdev_addr_lock_key;
2740
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002741static int macsec_dev_init(struct net_device *dev)
2742{
2743 struct macsec_dev *macsec = macsec_priv(dev);
2744 struct net_device *real_dev = macsec->real_dev;
Paolo Abeni5491e7c2016-07-20 18:11:32 +02002745 int err;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002746
2747 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
2748 if (!dev->tstats)
2749 return -ENOMEM;
2750
Paolo Abeni5491e7c2016-07-20 18:11:32 +02002751 err = gro_cells_init(&macsec->gro_cells, dev);
2752 if (err) {
2753 free_percpu(dev->tstats);
2754 return err;
2755 }
2756
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002757 dev->features = real_dev->features & MACSEC_FEATURES;
2758 dev->features |= NETIF_F_LLTX | NETIF_F_GSO_SOFTWARE;
2759
2760 dev->needed_headroom = real_dev->needed_headroom +
2761 MACSEC_NEEDED_HEADROOM;
2762 dev->needed_tailroom = real_dev->needed_tailroom +
2763 MACSEC_NEEDED_TAILROOM;
2764
2765 if (is_zero_ether_addr(dev->dev_addr))
2766 eth_hw_addr_inherit(dev, real_dev);
2767 if (is_zero_ether_addr(dev->broadcast))
2768 memcpy(dev->broadcast, real_dev->broadcast, dev->addr_len);
2769
2770 return 0;
2771}
2772
2773static void macsec_dev_uninit(struct net_device *dev)
2774{
Paolo Abeni5491e7c2016-07-20 18:11:32 +02002775 struct macsec_dev *macsec = macsec_priv(dev);
2776
2777 gro_cells_destroy(&macsec->gro_cells);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002778 free_percpu(dev->tstats);
2779}
2780
2781static netdev_features_t macsec_fix_features(struct net_device *dev,
2782 netdev_features_t features)
2783{
2784 struct macsec_dev *macsec = macsec_priv(dev);
2785 struct net_device *real_dev = macsec->real_dev;
2786
Paolo Abeni5491e7c2016-07-20 18:11:32 +02002787 features &= (real_dev->features & MACSEC_FEATURES) |
2788 NETIF_F_GSO_SOFTWARE | NETIF_F_SOFT_FEATURES;
2789 features |= NETIF_F_LLTX;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002790
2791 return features;
2792}
2793
2794static int macsec_dev_open(struct net_device *dev)
2795{
2796 struct macsec_dev *macsec = macsec_priv(dev);
2797 struct net_device *real_dev = macsec->real_dev;
2798 int err;
2799
2800 if (!(real_dev->flags & IFF_UP))
2801 return -ENETDOWN;
2802
2803 err = dev_uc_add(real_dev, dev->dev_addr);
2804 if (err < 0)
2805 return err;
2806
2807 if (dev->flags & IFF_ALLMULTI) {
2808 err = dev_set_allmulti(real_dev, 1);
2809 if (err < 0)
2810 goto del_unicast;
2811 }
2812
2813 if (dev->flags & IFF_PROMISC) {
2814 err = dev_set_promiscuity(real_dev, 1);
2815 if (err < 0)
2816 goto clear_allmulti;
2817 }
2818
2819 if (netif_carrier_ok(real_dev))
2820 netif_carrier_on(dev);
2821
2822 return 0;
2823clear_allmulti:
2824 if (dev->flags & IFF_ALLMULTI)
2825 dev_set_allmulti(real_dev, -1);
2826del_unicast:
2827 dev_uc_del(real_dev, dev->dev_addr);
2828 netif_carrier_off(dev);
2829 return err;
2830}
2831
2832static int macsec_dev_stop(struct net_device *dev)
2833{
2834 struct macsec_dev *macsec = macsec_priv(dev);
2835 struct net_device *real_dev = macsec->real_dev;
2836
2837 netif_carrier_off(dev);
2838
2839 dev_mc_unsync(real_dev, dev);
2840 dev_uc_unsync(real_dev, dev);
2841
2842 if (dev->flags & IFF_ALLMULTI)
2843 dev_set_allmulti(real_dev, -1);
2844
2845 if (dev->flags & IFF_PROMISC)
2846 dev_set_promiscuity(real_dev, -1);
2847
2848 dev_uc_del(real_dev, dev->dev_addr);
2849
2850 return 0;
2851}
2852
2853static void macsec_dev_change_rx_flags(struct net_device *dev, int change)
2854{
2855 struct net_device *real_dev = macsec_priv(dev)->real_dev;
2856
2857 if (!(dev->flags & IFF_UP))
2858 return;
2859
2860 if (change & IFF_ALLMULTI)
2861 dev_set_allmulti(real_dev, dev->flags & IFF_ALLMULTI ? 1 : -1);
2862
2863 if (change & IFF_PROMISC)
2864 dev_set_promiscuity(real_dev,
2865 dev->flags & IFF_PROMISC ? 1 : -1);
2866}
2867
2868static void macsec_dev_set_rx_mode(struct net_device *dev)
2869{
2870 struct net_device *real_dev = macsec_priv(dev)->real_dev;
2871
2872 dev_mc_sync(real_dev, dev);
2873 dev_uc_sync(real_dev, dev);
2874}
2875
2876static int macsec_set_mac_address(struct net_device *dev, void *p)
2877{
2878 struct macsec_dev *macsec = macsec_priv(dev);
2879 struct net_device *real_dev = macsec->real_dev;
2880 struct sockaddr *addr = p;
2881 int err;
2882
2883 if (!is_valid_ether_addr(addr->sa_data))
2884 return -EADDRNOTAVAIL;
2885
2886 if (!(dev->flags & IFF_UP))
2887 goto out;
2888
2889 err = dev_uc_add(real_dev, addr->sa_data);
2890 if (err < 0)
2891 return err;
2892
2893 dev_uc_del(real_dev, dev->dev_addr);
2894
2895out:
2896 ether_addr_copy(dev->dev_addr, addr->sa_data);
2897 return 0;
2898}
2899
2900static int macsec_change_mtu(struct net_device *dev, int new_mtu)
2901{
2902 struct macsec_dev *macsec = macsec_priv(dev);
2903 unsigned int extra = macsec->secy.icv_len + macsec_extra_len(true);
2904
2905 if (macsec->real_dev->mtu - extra < new_mtu)
2906 return -ERANGE;
2907
2908 dev->mtu = new_mtu;
2909
2910 return 0;
2911}
2912
2913static struct rtnl_link_stats64 *macsec_get_stats64(struct net_device *dev,
2914 struct rtnl_link_stats64 *s)
2915{
2916 int cpu;
2917
2918 if (!dev->tstats)
2919 return s;
2920
2921 for_each_possible_cpu(cpu) {
2922 struct pcpu_sw_netstats *stats;
2923 struct pcpu_sw_netstats tmp;
2924 int start;
2925
2926 stats = per_cpu_ptr(dev->tstats, cpu);
2927 do {
2928 start = u64_stats_fetch_begin_irq(&stats->syncp);
2929 tmp.rx_packets = stats->rx_packets;
2930 tmp.rx_bytes = stats->rx_bytes;
2931 tmp.tx_packets = stats->tx_packets;
2932 tmp.tx_bytes = stats->tx_bytes;
2933 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
2934
2935 s->rx_packets += tmp.rx_packets;
2936 s->rx_bytes += tmp.rx_bytes;
2937 s->tx_packets += tmp.tx_packets;
2938 s->tx_bytes += tmp.tx_bytes;
2939 }
2940
2941 s->rx_dropped = dev->stats.rx_dropped;
2942 s->tx_dropped = dev->stats.tx_dropped;
2943
2944 return s;
2945}
2946
2947static int macsec_get_iflink(const struct net_device *dev)
2948{
2949 return macsec_priv(dev)->real_dev->ifindex;
2950}
2951
Sabrina Dubrocae2003872016-08-12 16:10:32 +02002952
2953static int macsec_get_nest_level(struct net_device *dev)
2954{
2955 return macsec_priv(dev)->nest_level;
2956}
2957
2958
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002959static const struct net_device_ops macsec_netdev_ops = {
2960 .ndo_init = macsec_dev_init,
2961 .ndo_uninit = macsec_dev_uninit,
2962 .ndo_open = macsec_dev_open,
2963 .ndo_stop = macsec_dev_stop,
2964 .ndo_fix_features = macsec_fix_features,
2965 .ndo_change_mtu = macsec_change_mtu,
2966 .ndo_set_rx_mode = macsec_dev_set_rx_mode,
2967 .ndo_change_rx_flags = macsec_dev_change_rx_flags,
2968 .ndo_set_mac_address = macsec_set_mac_address,
2969 .ndo_start_xmit = macsec_start_xmit,
2970 .ndo_get_stats64 = macsec_get_stats64,
2971 .ndo_get_iflink = macsec_get_iflink,
Sabrina Dubrocae2003872016-08-12 16:10:32 +02002972 .ndo_get_lock_subclass = macsec_get_nest_level,
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002973};
2974
2975static const struct device_type macsec_type = {
2976 .name = "macsec",
2977};
2978
2979static const struct nla_policy macsec_rtnl_policy[IFLA_MACSEC_MAX + 1] = {
2980 [IFLA_MACSEC_SCI] = { .type = NLA_U64 },
2981 [IFLA_MACSEC_ICV_LEN] = { .type = NLA_U8 },
2982 [IFLA_MACSEC_CIPHER_SUITE] = { .type = NLA_U64 },
2983 [IFLA_MACSEC_WINDOW] = { .type = NLA_U32 },
2984 [IFLA_MACSEC_ENCODING_SA] = { .type = NLA_U8 },
2985 [IFLA_MACSEC_ENCRYPT] = { .type = NLA_U8 },
2986 [IFLA_MACSEC_PROTECT] = { .type = NLA_U8 },
2987 [IFLA_MACSEC_INC_SCI] = { .type = NLA_U8 },
2988 [IFLA_MACSEC_ES] = { .type = NLA_U8 },
2989 [IFLA_MACSEC_SCB] = { .type = NLA_U8 },
2990 [IFLA_MACSEC_REPLAY_PROTECT] = { .type = NLA_U8 },
2991 [IFLA_MACSEC_VALIDATION] = { .type = NLA_U8 },
2992};
2993
2994static void macsec_free_netdev(struct net_device *dev)
2995{
2996 struct macsec_dev *macsec = macsec_priv(dev);
2997 struct net_device *real_dev = macsec->real_dev;
2998
2999 free_percpu(macsec->stats);
3000 free_percpu(macsec->secy.tx_sc.stats);
3001
3002 dev_put(real_dev);
3003 free_netdev(dev);
3004}
3005
3006static void macsec_setup(struct net_device *dev)
3007{
3008 ether_setup(dev);
Phil Suttere4259742016-04-22 14:02:42 +02003009 dev->priv_flags |= IFF_NO_QUEUE;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003010 dev->netdev_ops = &macsec_netdev_ops;
3011 dev->destructor = macsec_free_netdev;
stephen hemmingerc24acf02016-09-07 14:07:32 -07003012 SET_NETDEV_DEVTYPE(dev, &macsec_type);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003013
3014 eth_zero_addr(dev->broadcast);
3015}
3016
3017static void macsec_changelink_common(struct net_device *dev,
3018 struct nlattr *data[])
3019{
3020 struct macsec_secy *secy;
3021 struct macsec_tx_sc *tx_sc;
3022
3023 secy = &macsec_priv(dev)->secy;
3024 tx_sc = &secy->tx_sc;
3025
3026 if (data[IFLA_MACSEC_ENCODING_SA]) {
3027 struct macsec_tx_sa *tx_sa;
3028
3029 tx_sc->encoding_sa = nla_get_u8(data[IFLA_MACSEC_ENCODING_SA]);
3030 tx_sa = rtnl_dereference(tx_sc->sa[tx_sc->encoding_sa]);
3031
3032 secy->operational = tx_sa && tx_sa->active;
3033 }
3034
3035 if (data[IFLA_MACSEC_WINDOW])
3036 secy->replay_window = nla_get_u32(data[IFLA_MACSEC_WINDOW]);
3037
3038 if (data[IFLA_MACSEC_ENCRYPT])
3039 tx_sc->encrypt = !!nla_get_u8(data[IFLA_MACSEC_ENCRYPT]);
3040
3041 if (data[IFLA_MACSEC_PROTECT])
3042 secy->protect_frames = !!nla_get_u8(data[IFLA_MACSEC_PROTECT]);
3043
3044 if (data[IFLA_MACSEC_INC_SCI])
3045 tx_sc->send_sci = !!nla_get_u8(data[IFLA_MACSEC_INC_SCI]);
3046
3047 if (data[IFLA_MACSEC_ES])
3048 tx_sc->end_station = !!nla_get_u8(data[IFLA_MACSEC_ES]);
3049
3050 if (data[IFLA_MACSEC_SCB])
3051 tx_sc->scb = !!nla_get_u8(data[IFLA_MACSEC_SCB]);
3052
3053 if (data[IFLA_MACSEC_REPLAY_PROTECT])
3054 secy->replay_protect = !!nla_get_u8(data[IFLA_MACSEC_REPLAY_PROTECT]);
3055
3056 if (data[IFLA_MACSEC_VALIDATION])
3057 secy->validate_frames = nla_get_u8(data[IFLA_MACSEC_VALIDATION]);
3058}
3059
3060static int macsec_changelink(struct net_device *dev, struct nlattr *tb[],
3061 struct nlattr *data[])
3062{
3063 if (!data)
3064 return 0;
3065
3066 if (data[IFLA_MACSEC_CIPHER_SUITE] ||
3067 data[IFLA_MACSEC_ICV_LEN] ||
3068 data[IFLA_MACSEC_SCI] ||
3069 data[IFLA_MACSEC_PORT])
3070 return -EINVAL;
3071
3072 macsec_changelink_common(dev, data);
3073
3074 return 0;
3075}
3076
3077static void macsec_del_dev(struct macsec_dev *macsec)
3078{
3079 int i;
3080
3081 while (macsec->secy.rx_sc) {
3082 struct macsec_rx_sc *rx_sc = rtnl_dereference(macsec->secy.rx_sc);
3083
3084 rcu_assign_pointer(macsec->secy.rx_sc, rx_sc->next);
3085 free_rx_sc(rx_sc);
3086 }
3087
3088 for (i = 0; i < MACSEC_NUM_AN; i++) {
3089 struct macsec_tx_sa *sa = rtnl_dereference(macsec->secy.tx_sc.sa[i]);
3090
3091 if (sa) {
3092 RCU_INIT_POINTER(macsec->secy.tx_sc.sa[i], NULL);
3093 clear_tx_sa(sa);
3094 }
3095 }
3096}
3097
Sabrina Dubrocabbe11fa2016-08-11 15:24:27 +02003098static void macsec_common_dellink(struct net_device *dev, struct list_head *head)
3099{
3100 struct macsec_dev *macsec = macsec_priv(dev);
Sabrina Dubrocae2003872016-08-12 16:10:32 +02003101 struct net_device *real_dev = macsec->real_dev;
Sabrina Dubrocabbe11fa2016-08-11 15:24:27 +02003102
3103 unregister_netdevice_queue(dev, head);
3104 list_del_rcu(&macsec->secys);
3105 macsec_del_dev(macsec);
Sabrina Dubrocae2003872016-08-12 16:10:32 +02003106 netdev_upper_dev_unlink(real_dev, dev);
Sabrina Dubrocabbe11fa2016-08-11 15:24:27 +02003107
3108 macsec_generation++;
3109}
3110
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003111static void macsec_dellink(struct net_device *dev, struct list_head *head)
3112{
3113 struct macsec_dev *macsec = macsec_priv(dev);
3114 struct net_device *real_dev = macsec->real_dev;
3115 struct macsec_rxh_data *rxd = macsec_data_rtnl(real_dev);
3116
Sabrina Dubrocabbe11fa2016-08-11 15:24:27 +02003117 macsec_common_dellink(dev, head);
Sabrina Dubroca96cfc502016-04-22 11:28:05 +02003118
Sabrina Dubroca960d5842016-04-22 11:28:06 +02003119 if (list_empty(&rxd->secys)) {
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003120 netdev_rx_handler_unregister(real_dev);
Sabrina Dubroca960d5842016-04-22 11:28:06 +02003121 kfree(rxd);
3122 }
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003123}
3124
3125static int register_macsec_dev(struct net_device *real_dev,
3126 struct net_device *dev)
3127{
3128 struct macsec_dev *macsec = macsec_priv(dev);
3129 struct macsec_rxh_data *rxd = macsec_data_rtnl(real_dev);
3130
3131 if (!rxd) {
3132 int err;
3133
3134 rxd = kmalloc(sizeof(*rxd), GFP_KERNEL);
3135 if (!rxd)
3136 return -ENOMEM;
3137
3138 INIT_LIST_HEAD(&rxd->secys);
3139
3140 err = netdev_rx_handler_register(real_dev, macsec_handle_frame,
3141 rxd);
Sabrina Dubroca960d5842016-04-22 11:28:06 +02003142 if (err < 0) {
3143 kfree(rxd);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003144 return err;
Sabrina Dubroca960d5842016-04-22 11:28:06 +02003145 }
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003146 }
3147
3148 list_add_tail_rcu(&macsec->secys, &rxd->secys);
3149 return 0;
3150}
3151
3152static bool sci_exists(struct net_device *dev, sci_t sci)
3153{
3154 struct macsec_rxh_data *rxd = macsec_data_rtnl(dev);
3155 struct macsec_dev *macsec;
3156
3157 list_for_each_entry(macsec, &rxd->secys, secys) {
3158 if (macsec->secy.sci == sci)
3159 return true;
3160 }
3161
3162 return false;
3163}
3164
3165static sci_t dev_to_sci(struct net_device *dev, __be16 port)
3166{
3167 return make_sci(dev->dev_addr, port);
3168}
3169
3170static int macsec_add_dev(struct net_device *dev, sci_t sci, u8 icv_len)
3171{
3172 struct macsec_dev *macsec = macsec_priv(dev);
3173 struct macsec_secy *secy = &macsec->secy;
3174
3175 macsec->stats = netdev_alloc_pcpu_stats(struct pcpu_secy_stats);
3176 if (!macsec->stats)
3177 return -ENOMEM;
3178
3179 secy->tx_sc.stats = netdev_alloc_pcpu_stats(struct pcpu_tx_sc_stats);
3180 if (!secy->tx_sc.stats) {
3181 free_percpu(macsec->stats);
3182 return -ENOMEM;
3183 }
3184
3185 if (sci == MACSEC_UNDEF_SCI)
3186 sci = dev_to_sci(dev, MACSEC_PORT_ES);
3187
3188 secy->netdev = dev;
3189 secy->operational = true;
3190 secy->key_len = DEFAULT_SAK_LEN;
3191 secy->icv_len = icv_len;
3192 secy->validate_frames = MACSEC_VALIDATE_DEFAULT;
3193 secy->protect_frames = true;
3194 secy->replay_protect = false;
3195
3196 secy->sci = sci;
3197 secy->tx_sc.active = true;
3198 secy->tx_sc.encoding_sa = DEFAULT_ENCODING_SA;
3199 secy->tx_sc.encrypt = DEFAULT_ENCRYPT;
3200 secy->tx_sc.send_sci = DEFAULT_SEND_SCI;
3201 secy->tx_sc.end_station = false;
3202 secy->tx_sc.scb = false;
3203
3204 return 0;
3205}
3206
3207static int macsec_newlink(struct net *net, struct net_device *dev,
3208 struct nlattr *tb[], struct nlattr *data[])
3209{
3210 struct macsec_dev *macsec = macsec_priv(dev);
3211 struct net_device *real_dev;
3212 int err;
3213 sci_t sci;
3214 u8 icv_len = DEFAULT_ICV_LEN;
3215 rx_handler_func_t *rx_handler;
3216
3217 if (!tb[IFLA_LINK])
3218 return -EINVAL;
3219 real_dev = __dev_get_by_index(net, nla_get_u32(tb[IFLA_LINK]));
3220 if (!real_dev)
3221 return -ENODEV;
3222
3223 dev->priv_flags |= IFF_MACSEC;
3224
3225 macsec->real_dev = real_dev;
3226
3227 if (data && data[IFLA_MACSEC_ICV_LEN])
3228 icv_len = nla_get_u8(data[IFLA_MACSEC_ICV_LEN]);
3229 dev->mtu = real_dev->mtu - icv_len - macsec_extra_len(true);
3230
3231 rx_handler = rtnl_dereference(real_dev->rx_handler);
3232 if (rx_handler && rx_handler != macsec_handle_frame)
3233 return -EBUSY;
3234
3235 err = register_netdevice(dev);
3236 if (err < 0)
3237 return err;
3238
Sabrina Dubroca0759e552016-07-29 15:37:55 +02003239 dev_hold(real_dev);
3240
Sabrina Dubroca952fcfd2016-08-12 16:10:33 +02003241 macsec->nest_level = dev_get_nest_level(real_dev) + 1;
Sabrina Dubrocae2003872016-08-12 16:10:32 +02003242 netdev_lockdep_set_classes(dev);
3243 lockdep_set_class_and_subclass(&dev->addr_list_lock,
3244 &macsec_netdev_addr_lock_key,
3245 macsec_get_nest_level(dev));
3246
3247 err = netdev_upper_dev_link(real_dev, dev);
3248 if (err < 0)
3249 goto unregister;
3250
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003251 /* need to be already registered so that ->init has run and
3252 * the MAC addr is set
3253 */
3254 if (data && data[IFLA_MACSEC_SCI])
3255 sci = nla_get_sci(data[IFLA_MACSEC_SCI]);
3256 else if (data && data[IFLA_MACSEC_PORT])
3257 sci = dev_to_sci(dev, nla_get_be16(data[IFLA_MACSEC_PORT]));
3258 else
3259 sci = dev_to_sci(dev, MACSEC_PORT_ES);
3260
3261 if (rx_handler && sci_exists(real_dev, sci)) {
3262 err = -EBUSY;
Sabrina Dubrocae2003872016-08-12 16:10:32 +02003263 goto unlink;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003264 }
3265
3266 err = macsec_add_dev(dev, sci, icv_len);
3267 if (err)
Sabrina Dubrocae2003872016-08-12 16:10:32 +02003268 goto unlink;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003269
3270 if (data)
3271 macsec_changelink_common(dev, data);
3272
3273 err = register_macsec_dev(real_dev, dev);
3274 if (err < 0)
3275 goto del_dev;
3276
Sabrina Dubroca96cfc502016-04-22 11:28:05 +02003277 macsec_generation++;
3278
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003279 return 0;
3280
3281del_dev:
3282 macsec_del_dev(macsec);
Sabrina Dubrocae2003872016-08-12 16:10:32 +02003283unlink:
3284 netdev_upper_dev_unlink(real_dev, dev);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003285unregister:
3286 unregister_netdevice(dev);
3287 return err;
3288}
3289
3290static int macsec_validate_attr(struct nlattr *tb[], struct nlattr *data[])
3291{
Sabrina Dubroca74816482016-04-22 11:28:08 +02003292 u64 csid = MACSEC_DEFAULT_CIPHER_ID;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003293 u8 icv_len = DEFAULT_ICV_LEN;
3294 int flag;
3295 bool es, scb, sci;
3296
3297 if (!data)
3298 return 0;
3299
3300 if (data[IFLA_MACSEC_CIPHER_SUITE])
3301 csid = nla_get_u64(data[IFLA_MACSEC_CIPHER_SUITE]);
3302
Davide Carattif04c3922016-07-22 15:07:58 +02003303 if (data[IFLA_MACSEC_ICV_LEN]) {
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003304 icv_len = nla_get_u8(data[IFLA_MACSEC_ICV_LEN]);
Davide Carattif04c3922016-07-22 15:07:58 +02003305 if (icv_len != DEFAULT_ICV_LEN) {
3306 char dummy_key[DEFAULT_SAK_LEN] = { 0 };
3307 struct crypto_aead *dummy_tfm;
3308
3309 dummy_tfm = macsec_alloc_tfm(dummy_key,
3310 DEFAULT_SAK_LEN,
3311 icv_len);
3312 if (IS_ERR(dummy_tfm))
3313 return PTR_ERR(dummy_tfm);
3314 crypto_free_aead(dummy_tfm);
3315 }
3316 }
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003317
3318 switch (csid) {
Sabrina Dubroca74816482016-04-22 11:28:08 +02003319 case MACSEC_DEFAULT_CIPHER_ID:
3320 case MACSEC_DEFAULT_CIPHER_ALT:
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003321 if (icv_len < MACSEC_MIN_ICV_LEN ||
Davide Caratti2ccbe2c2016-07-22 15:07:56 +02003322 icv_len > MACSEC_STD_ICV_LEN)
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003323 return -EINVAL;
3324 break;
3325 default:
3326 return -EINVAL;
3327 }
3328
3329 if (data[IFLA_MACSEC_ENCODING_SA]) {
3330 if (nla_get_u8(data[IFLA_MACSEC_ENCODING_SA]) >= MACSEC_NUM_AN)
3331 return -EINVAL;
3332 }
3333
3334 for (flag = IFLA_MACSEC_ENCODING_SA + 1;
3335 flag < IFLA_MACSEC_VALIDATION;
3336 flag++) {
3337 if (data[flag]) {
3338 if (nla_get_u8(data[flag]) > 1)
3339 return -EINVAL;
3340 }
3341 }
3342
3343 es = data[IFLA_MACSEC_ES] ? nla_get_u8(data[IFLA_MACSEC_ES]) : false;
3344 sci = data[IFLA_MACSEC_INC_SCI] ? nla_get_u8(data[IFLA_MACSEC_INC_SCI]) : false;
3345 scb = data[IFLA_MACSEC_SCB] ? nla_get_u8(data[IFLA_MACSEC_SCB]) : false;
3346
3347 if ((sci && (scb || es)) || (scb && es))
3348 return -EINVAL;
3349
3350 if (data[IFLA_MACSEC_VALIDATION] &&
3351 nla_get_u8(data[IFLA_MACSEC_VALIDATION]) > MACSEC_VALIDATE_MAX)
3352 return -EINVAL;
3353
Sabrina Dubroca4b1fb932016-04-22 11:28:09 +02003354 if ((data[IFLA_MACSEC_REPLAY_PROTECT] &&
3355 nla_get_u8(data[IFLA_MACSEC_REPLAY_PROTECT])) &&
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003356 !data[IFLA_MACSEC_WINDOW])
3357 return -EINVAL;
3358
3359 return 0;
3360}
3361
3362static struct net *macsec_get_link_net(const struct net_device *dev)
3363{
3364 return dev_net(macsec_priv(dev)->real_dev);
3365}
3366
3367static size_t macsec_get_size(const struct net_device *dev)
3368{
3369 return 0 +
Nicolas Dichtelf60d94c2016-04-26 10:06:11 +02003370 nla_total_size_64bit(8) + /* SCI */
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003371 nla_total_size(1) + /* ICV_LEN */
Nicolas Dichtelf60d94c2016-04-26 10:06:11 +02003372 nla_total_size_64bit(8) + /* CIPHER_SUITE */
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003373 nla_total_size(4) + /* WINDOW */
3374 nla_total_size(1) + /* ENCODING_SA */
3375 nla_total_size(1) + /* ENCRYPT */
3376 nla_total_size(1) + /* PROTECT */
3377 nla_total_size(1) + /* INC_SCI */
3378 nla_total_size(1) + /* ES */
3379 nla_total_size(1) + /* SCB */
3380 nla_total_size(1) + /* REPLAY_PROTECT */
3381 nla_total_size(1) + /* VALIDATION */
3382 0;
3383}
3384
3385static int macsec_fill_info(struct sk_buff *skb,
3386 const struct net_device *dev)
3387{
3388 struct macsec_secy *secy = &macsec_priv(dev)->secy;
3389 struct macsec_tx_sc *tx_sc = &secy->tx_sc;
3390
Nicolas Dichtelf60d94c2016-04-26 10:06:11 +02003391 if (nla_put_sci(skb, IFLA_MACSEC_SCI, secy->sci,
3392 IFLA_MACSEC_PAD) ||
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003393 nla_put_u8(skb, IFLA_MACSEC_ICV_LEN, secy->icv_len) ||
Nicolas Dichtelf60d94c2016-04-26 10:06:11 +02003394 nla_put_u64_64bit(skb, IFLA_MACSEC_CIPHER_SUITE,
David S. Millerc0cc5312016-04-27 15:43:10 -04003395 MACSEC_DEFAULT_CIPHER_ID, IFLA_MACSEC_PAD) ||
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003396 nla_put_u8(skb, IFLA_MACSEC_ENCODING_SA, tx_sc->encoding_sa) ||
3397 nla_put_u8(skb, IFLA_MACSEC_ENCRYPT, tx_sc->encrypt) ||
3398 nla_put_u8(skb, IFLA_MACSEC_PROTECT, secy->protect_frames) ||
3399 nla_put_u8(skb, IFLA_MACSEC_INC_SCI, tx_sc->send_sci) ||
3400 nla_put_u8(skb, IFLA_MACSEC_ES, tx_sc->end_station) ||
3401 nla_put_u8(skb, IFLA_MACSEC_SCB, tx_sc->scb) ||
3402 nla_put_u8(skb, IFLA_MACSEC_REPLAY_PROTECT, secy->replay_protect) ||
3403 nla_put_u8(skb, IFLA_MACSEC_VALIDATION, secy->validate_frames) ||
3404 0)
3405 goto nla_put_failure;
3406
3407 if (secy->replay_protect) {
3408 if (nla_put_u32(skb, IFLA_MACSEC_WINDOW, secy->replay_window))
3409 goto nla_put_failure;
3410 }
3411
3412 return 0;
3413
3414nla_put_failure:
3415 return -EMSGSIZE;
3416}
3417
3418static struct rtnl_link_ops macsec_link_ops __read_mostly = {
3419 .kind = "macsec",
3420 .priv_size = sizeof(struct macsec_dev),
3421 .maxtype = IFLA_MACSEC_MAX,
3422 .policy = macsec_rtnl_policy,
3423 .setup = macsec_setup,
3424 .validate = macsec_validate_attr,
3425 .newlink = macsec_newlink,
3426 .changelink = macsec_changelink,
3427 .dellink = macsec_dellink,
3428 .get_size = macsec_get_size,
3429 .fill_info = macsec_fill_info,
3430 .get_link_net = macsec_get_link_net,
3431};
3432
3433static bool is_macsec_master(struct net_device *dev)
3434{
3435 return rcu_access_pointer(dev->rx_handler) == macsec_handle_frame;
3436}
3437
3438static int macsec_notify(struct notifier_block *this, unsigned long event,
3439 void *ptr)
3440{
3441 struct net_device *real_dev = netdev_notifier_info_to_dev(ptr);
3442 LIST_HEAD(head);
3443
3444 if (!is_macsec_master(real_dev))
3445 return NOTIFY_DONE;
3446
3447 switch (event) {
3448 case NETDEV_UNREGISTER: {
3449 struct macsec_dev *m, *n;
3450 struct macsec_rxh_data *rxd;
3451
3452 rxd = macsec_data_rtnl(real_dev);
3453 list_for_each_entry_safe(m, n, &rxd->secys, secys) {
Sabrina Dubrocabbe11fa2016-08-11 15:24:27 +02003454 macsec_common_dellink(m->secy.netdev, &head);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003455 }
Sabrina Dubrocabbe11fa2016-08-11 15:24:27 +02003456
3457 netdev_rx_handler_unregister(real_dev);
3458 kfree(rxd);
3459
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003460 unregister_netdevice_many(&head);
3461 break;
3462 }
3463 case NETDEV_CHANGEMTU: {
3464 struct macsec_dev *m;
3465 struct macsec_rxh_data *rxd;
3466
3467 rxd = macsec_data_rtnl(real_dev);
3468 list_for_each_entry(m, &rxd->secys, secys) {
3469 struct net_device *dev = m->secy.netdev;
3470 unsigned int mtu = real_dev->mtu - (m->secy.icv_len +
3471 macsec_extra_len(true));
3472
3473 if (dev->mtu > mtu)
3474 dev_set_mtu(dev, mtu);
3475 }
3476 }
3477 }
3478
3479 return NOTIFY_OK;
3480}
3481
3482static struct notifier_block macsec_notifier = {
3483 .notifier_call = macsec_notify,
3484};
3485
3486static int __init macsec_init(void)
3487{
3488 int err;
3489
3490 pr_info("MACsec IEEE 802.1AE\n");
3491 err = register_netdevice_notifier(&macsec_notifier);
3492 if (err)
3493 return err;
3494
3495 err = rtnl_link_register(&macsec_link_ops);
3496 if (err)
3497 goto notifier;
3498
3499 err = genl_register_family_with_ops(&macsec_fam, macsec_genl_ops);
3500 if (err)
3501 goto rtnl;
3502
3503 return 0;
3504
3505rtnl:
3506 rtnl_link_unregister(&macsec_link_ops);
3507notifier:
3508 unregister_netdevice_notifier(&macsec_notifier);
3509 return err;
3510}
3511
3512static void __exit macsec_exit(void)
3513{
3514 genl_unregister_family(&macsec_fam);
3515 rtnl_link_unregister(&macsec_link_ops);
3516 unregister_netdevice_notifier(&macsec_notifier);
Sabrina Dubrocab196c22a2016-06-14 15:25:14 +02003517 rcu_barrier();
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003518}
3519
3520module_init(macsec_init);
3521module_exit(macsec_exit);
3522
3523MODULE_ALIAS_RTNL_LINK("macsec");
Sabrina Dubroca4b4a1942017-08-22 15:36:08 +02003524MODULE_ALIAS_GENL_FAMILY("macsec");
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003525
3526MODULE_DESCRIPTION("MACsec IEEE 802.1AE");
3527MODULE_LICENSE("GPL v2");