blob: 2caac0c37059de5f146595f9f672910105744532 [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);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100745 skb_to_sgvec(skb, sg, 0, skb->len);
746
747 if (tx_sc->encrypt) {
Tobias Brunnere0f841f2016-10-24 15:44:26 +0200748 int len = skb->len - macsec_hdr_len(sci_present) -
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100749 secy->icv_len;
750 aead_request_set_crypt(req, sg, sg, len, iv);
Tobias Brunnere0f841f2016-10-24 15:44:26 +0200751 aead_request_set_ad(req, macsec_hdr_len(sci_present));
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100752 } else {
753 aead_request_set_crypt(req, sg, sg, 0, iv);
754 aead_request_set_ad(req, skb->len - secy->icv_len);
755 }
756
757 macsec_skb_cb(skb)->req = req;
758 macsec_skb_cb(skb)->tx_sa = tx_sa;
759 aead_request_set_callback(req, 0, macsec_encrypt_done, skb);
760
761 dev_hold(skb->dev);
762 ret = crypto_aead_encrypt(req);
763 if (ret == -EINPROGRESS) {
764 return ERR_PTR(ret);
765 } else if (ret != 0) {
766 dev_put(skb->dev);
767 kfree_skb(skb);
768 aead_request_free(req);
769 macsec_txsa_put(tx_sa);
770 return ERR_PTR(-EINVAL);
771 }
772
773 dev_put(skb->dev);
774 aead_request_free(req);
775 macsec_txsa_put(tx_sa);
776
777 return skb;
778}
779
780static bool macsec_post_decrypt(struct sk_buff *skb, struct macsec_secy *secy, u32 pn)
781{
782 struct macsec_rx_sa *rx_sa = macsec_skb_cb(skb)->rx_sa;
783 struct pcpu_rx_sc_stats *rxsc_stats = this_cpu_ptr(rx_sa->sc->stats);
784 struct macsec_eth_header *hdr = macsec_ethhdr(skb);
785 u32 lowest_pn = 0;
786
787 spin_lock(&rx_sa->lock);
788 if (rx_sa->next_pn >= secy->replay_window)
789 lowest_pn = rx_sa->next_pn - secy->replay_window;
790
791 /* Now perform replay protection check again
792 * (see IEEE 802.1AE-2006 figure 10-5)
793 */
794 if (secy->replay_protect && pn < lowest_pn) {
795 spin_unlock(&rx_sa->lock);
796 u64_stats_update_begin(&rxsc_stats->syncp);
797 rxsc_stats->stats.InPktsLate++;
798 u64_stats_update_end(&rxsc_stats->syncp);
799 return false;
800 }
801
802 if (secy->validate_frames != MACSEC_VALIDATE_DISABLED) {
803 u64_stats_update_begin(&rxsc_stats->syncp);
804 if (hdr->tci_an & MACSEC_TCI_E)
805 rxsc_stats->stats.InOctetsDecrypted += skb->len;
806 else
807 rxsc_stats->stats.InOctetsValidated += skb->len;
808 u64_stats_update_end(&rxsc_stats->syncp);
809 }
810
811 if (!macsec_skb_cb(skb)->valid) {
812 spin_unlock(&rx_sa->lock);
813
814 /* 10.6.5 */
815 if (hdr->tci_an & MACSEC_TCI_C ||
816 secy->validate_frames == MACSEC_VALIDATE_STRICT) {
817 u64_stats_update_begin(&rxsc_stats->syncp);
818 rxsc_stats->stats.InPktsNotValid++;
819 u64_stats_update_end(&rxsc_stats->syncp);
820 return false;
821 }
822
823 u64_stats_update_begin(&rxsc_stats->syncp);
824 if (secy->validate_frames == MACSEC_VALIDATE_CHECK) {
825 rxsc_stats->stats.InPktsInvalid++;
826 this_cpu_inc(rx_sa->stats->InPktsInvalid);
827 } else if (pn < lowest_pn) {
828 rxsc_stats->stats.InPktsDelayed++;
829 } else {
830 rxsc_stats->stats.InPktsUnchecked++;
831 }
832 u64_stats_update_end(&rxsc_stats->syncp);
833 } else {
834 u64_stats_update_begin(&rxsc_stats->syncp);
835 if (pn < lowest_pn) {
836 rxsc_stats->stats.InPktsDelayed++;
837 } else {
838 rxsc_stats->stats.InPktsOK++;
839 this_cpu_inc(rx_sa->stats->InPktsOK);
840 }
841 u64_stats_update_end(&rxsc_stats->syncp);
842
843 if (pn >= rx_sa->next_pn)
844 rx_sa->next_pn = pn + 1;
845 spin_unlock(&rx_sa->lock);
846 }
847
848 return true;
849}
850
851static void macsec_reset_skb(struct sk_buff *skb, struct net_device *dev)
852{
853 skb->pkt_type = PACKET_HOST;
854 skb->protocol = eth_type_trans(skb, dev);
855
856 skb_reset_network_header(skb);
857 if (!skb_transport_header_was_set(skb))
858 skb_reset_transport_header(skb);
859 skb_reset_mac_len(skb);
860}
861
862static void macsec_finalize_skb(struct sk_buff *skb, u8 icv_len, u8 hdr_len)
863{
864 memmove(skb->data + hdr_len, skb->data, 2 * ETH_ALEN);
865 skb_pull(skb, hdr_len);
866 pskb_trim_unique(skb, skb->len - icv_len);
867}
868
869static void count_rx(struct net_device *dev, int len)
870{
871 struct pcpu_sw_netstats *stats = this_cpu_ptr(dev->tstats);
872
873 u64_stats_update_begin(&stats->syncp);
874 stats->rx_packets++;
875 stats->rx_bytes += len;
876 u64_stats_update_end(&stats->syncp);
877}
878
879static void macsec_decrypt_done(struct crypto_async_request *base, int err)
880{
881 struct sk_buff *skb = base->data;
882 struct net_device *dev = skb->dev;
883 struct macsec_dev *macsec = macsec_priv(dev);
884 struct macsec_rx_sa *rx_sa = macsec_skb_cb(skb)->rx_sa;
Sabrina Dubrocac78ebe12016-07-29 15:37:53 +0200885 struct macsec_rx_sc *rx_sc = rx_sa->sc;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100886 int len, ret;
887 u32 pn;
888
889 aead_request_free(macsec_skb_cb(skb)->req);
890
891 rcu_read_lock_bh();
892 pn = ntohl(macsec_ethhdr(skb)->packet_number);
893 if (!macsec_post_decrypt(skb, &macsec->secy, pn)) {
894 rcu_read_unlock_bh();
895 kfree_skb(skb);
896 goto out;
897 }
898
899 macsec_finalize_skb(skb, macsec->secy.icv_len,
900 macsec_extra_len(macsec_skb_cb(skb)->has_sci));
901 macsec_reset_skb(skb, macsec->secy.netdev);
902
903 len = skb->len;
Paolo Abeni5491e7c2016-07-20 18:11:32 +0200904 ret = gro_cells_receive(&macsec->gro_cells, skb);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100905 if (ret == NET_RX_SUCCESS)
906 count_rx(dev, len);
907 else
908 macsec->secy.netdev->stats.rx_dropped++;
909
910 rcu_read_unlock_bh();
911
912out:
913 macsec_rxsa_put(rx_sa);
Sabrina Dubrocac78ebe12016-07-29 15:37:53 +0200914 macsec_rxsc_put(rx_sc);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100915 dev_put(dev);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100916}
917
918static struct sk_buff *macsec_decrypt(struct sk_buff *skb,
919 struct net_device *dev,
920 struct macsec_rx_sa *rx_sa,
921 sci_t sci,
922 struct macsec_secy *secy)
923{
924 int ret;
Sabrina Dubroca5d9649b2016-06-14 15:25:15 +0200925 struct scatterlist *sg;
Jason A. Donenfeld3b0129d2017-04-25 19:08:18 +0200926 struct sk_buff *trailer;
Sabrina Dubroca5d9649b2016-06-14 15:25:15 +0200927 unsigned char *iv;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100928 struct aead_request *req;
929 struct macsec_eth_header *hdr;
930 u16 icv_len = secy->icv_len;
931
932 macsec_skb_cb(skb)->valid = false;
933 skb = skb_share_check(skb, GFP_ATOMIC);
934 if (!skb)
Sabrina Dubrocac3b7d0b2016-04-22 11:28:04 +0200935 return ERR_PTR(-ENOMEM);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100936
Jason A. Donenfeld3b0129d2017-04-25 19:08:18 +0200937 ret = skb_cow_data(skb, 0, &trailer);
938 if (unlikely(ret < 0)) {
939 kfree_skb(skb);
940 return ERR_PTR(ret);
941 }
942 req = macsec_alloc_req(rx_sa->key.tfm, &iv, &sg, ret);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100943 if (!req) {
944 kfree_skb(skb);
Sabrina Dubrocac3b7d0b2016-04-22 11:28:04 +0200945 return ERR_PTR(-ENOMEM);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100946 }
947
948 hdr = (struct macsec_eth_header *)skb->data;
949 macsec_fill_iv(iv, sci, ntohl(hdr->packet_number));
950
Jason A. Donenfeld3b0129d2017-04-25 19:08:18 +0200951 sg_init_table(sg, ret);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100952 skb_to_sgvec(skb, sg, 0, skb->len);
953
954 if (hdr->tci_an & MACSEC_TCI_E) {
955 /* confidentiality: ethernet + macsec header
956 * authenticated, encrypted payload
957 */
958 int len = skb->len - macsec_hdr_len(macsec_skb_cb(skb)->has_sci);
959
960 aead_request_set_crypt(req, sg, sg, len, iv);
961 aead_request_set_ad(req, macsec_hdr_len(macsec_skb_cb(skb)->has_sci));
962 skb = skb_unshare(skb, GFP_ATOMIC);
963 if (!skb) {
964 aead_request_free(req);
Sabrina Dubrocac3b7d0b2016-04-22 11:28:04 +0200965 return ERR_PTR(-ENOMEM);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100966 }
967 } else {
968 /* integrity only: all headers + data authenticated */
969 aead_request_set_crypt(req, sg, sg, icv_len, iv);
970 aead_request_set_ad(req, skb->len - icv_len);
971 }
972
973 macsec_skb_cb(skb)->req = req;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100974 skb->dev = dev;
975 aead_request_set_callback(req, 0, macsec_decrypt_done, skb);
976
977 dev_hold(dev);
978 ret = crypto_aead_decrypt(req);
979 if (ret == -EINPROGRESS) {
Sabrina Dubrocac3b7d0b2016-04-22 11:28:04 +0200980 return ERR_PTR(ret);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100981 } else if (ret != 0) {
982 /* decryption/authentication failed
983 * 10.6 if validateFrames is disabled, deliver anyway
984 */
985 if (ret != -EBADMSG) {
986 kfree_skb(skb);
Sabrina Dubrocac3b7d0b2016-04-22 11:28:04 +0200987 skb = ERR_PTR(ret);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +0100988 }
989 } else {
990 macsec_skb_cb(skb)->valid = true;
991 }
992 dev_put(dev);
993
994 aead_request_free(req);
995
996 return skb;
997}
998
999static struct macsec_rx_sc *find_rx_sc(struct macsec_secy *secy, sci_t sci)
1000{
1001 struct macsec_rx_sc *rx_sc;
1002
1003 for_each_rxsc(secy, rx_sc) {
1004 if (rx_sc->sci == sci)
1005 return rx_sc;
1006 }
1007
1008 return NULL;
1009}
1010
1011static struct macsec_rx_sc *find_rx_sc_rtnl(struct macsec_secy *secy, sci_t sci)
1012{
1013 struct macsec_rx_sc *rx_sc;
1014
1015 for_each_rxsc_rtnl(secy, rx_sc) {
1016 if (rx_sc->sci == sci)
1017 return rx_sc;
1018 }
1019
1020 return NULL;
1021}
1022
1023static void handle_not_macsec(struct sk_buff *skb)
1024{
1025 struct macsec_rxh_data *rxd;
1026 struct macsec_dev *macsec;
1027
1028 rcu_read_lock();
1029 rxd = macsec_data_rcu(skb->dev);
1030
1031 /* 10.6 If the management control validateFrames is not
1032 * Strict, frames without a SecTAG are received, counted, and
1033 * delivered to the Controlled Port
1034 */
1035 list_for_each_entry_rcu(macsec, &rxd->secys, secys) {
1036 struct sk_buff *nskb;
1037 int ret;
1038 struct pcpu_secy_stats *secy_stats = this_cpu_ptr(macsec->stats);
1039
1040 if (macsec->secy.validate_frames == MACSEC_VALIDATE_STRICT) {
1041 u64_stats_update_begin(&secy_stats->syncp);
1042 secy_stats->stats.InPktsNoTag++;
1043 u64_stats_update_end(&secy_stats->syncp);
1044 continue;
1045 }
1046
1047 /* deliver on this port */
1048 nskb = skb_clone(skb, GFP_ATOMIC);
1049 if (!nskb)
1050 break;
1051
1052 nskb->dev = macsec->secy.netdev;
1053
1054 ret = netif_rx(nskb);
1055 if (ret == NET_RX_SUCCESS) {
1056 u64_stats_update_begin(&secy_stats->syncp);
1057 secy_stats->stats.InPktsUntagged++;
1058 u64_stats_update_end(&secy_stats->syncp);
1059 } else {
1060 macsec->secy.netdev->stats.rx_dropped++;
1061 }
1062 }
1063
1064 rcu_read_unlock();
1065}
1066
1067static rx_handler_result_t macsec_handle_frame(struct sk_buff **pskb)
1068{
1069 struct sk_buff *skb = *pskb;
1070 struct net_device *dev = skb->dev;
1071 struct macsec_eth_header *hdr;
1072 struct macsec_secy *secy = NULL;
1073 struct macsec_rx_sc *rx_sc;
1074 struct macsec_rx_sa *rx_sa;
1075 struct macsec_rxh_data *rxd;
1076 struct macsec_dev *macsec;
1077 sci_t sci;
1078 u32 pn;
1079 bool cbit;
1080 struct pcpu_rx_sc_stats *rxsc_stats;
1081 struct pcpu_secy_stats *secy_stats;
1082 bool pulled_sci;
Paolo Abeni5491e7c2016-07-20 18:11:32 +02001083 int ret;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001084
1085 if (skb_headroom(skb) < ETH_HLEN)
1086 goto drop_direct;
1087
1088 hdr = macsec_ethhdr(skb);
1089 if (hdr->eth.h_proto != htons(ETH_P_MACSEC)) {
1090 handle_not_macsec(skb);
1091
1092 /* and deliver to the uncontrolled port */
1093 return RX_HANDLER_PASS;
1094 }
1095
1096 skb = skb_unshare(skb, GFP_ATOMIC);
1097 if (!skb) {
1098 *pskb = NULL;
1099 return RX_HANDLER_CONSUMED;
1100 }
1101
1102 pulled_sci = pskb_may_pull(skb, macsec_extra_len(true));
1103 if (!pulled_sci) {
1104 if (!pskb_may_pull(skb, macsec_extra_len(false)))
1105 goto drop_direct;
1106 }
1107
1108 hdr = macsec_ethhdr(skb);
1109
1110 /* Frames with a SecTAG that has the TCI E bit set but the C
1111 * bit clear are discarded, as this reserved encoding is used
1112 * to identify frames with a SecTAG that are not to be
1113 * delivered to the Controlled Port.
1114 */
1115 if ((hdr->tci_an & (MACSEC_TCI_C | MACSEC_TCI_E)) == MACSEC_TCI_E)
1116 return RX_HANDLER_PASS;
1117
1118 /* now, pull the extra length */
1119 if (hdr->tci_an & MACSEC_TCI_SC) {
1120 if (!pulled_sci)
1121 goto drop_direct;
1122 }
1123
1124 /* ethernet header is part of crypto processing */
1125 skb_push(skb, ETH_HLEN);
1126
1127 macsec_skb_cb(skb)->has_sci = !!(hdr->tci_an & MACSEC_TCI_SC);
1128 macsec_skb_cb(skb)->assoc_num = hdr->tci_an & MACSEC_AN_MASK;
1129 sci = macsec_frame_sci(hdr, macsec_skb_cb(skb)->has_sci);
1130
1131 rcu_read_lock();
1132 rxd = macsec_data_rcu(skb->dev);
1133
1134 list_for_each_entry_rcu(macsec, &rxd->secys, secys) {
1135 struct macsec_rx_sc *sc = find_rx_sc(&macsec->secy, sci);
Sabrina Dubrocac78ebe12016-07-29 15:37:53 +02001136 sc = sc ? macsec_rxsc_get(sc) : NULL;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001137
1138 if (sc) {
1139 secy = &macsec->secy;
1140 rx_sc = sc;
1141 break;
1142 }
1143 }
1144
1145 if (!secy)
1146 goto nosci;
1147
1148 dev = secy->netdev;
1149 macsec = macsec_priv(dev);
1150 secy_stats = this_cpu_ptr(macsec->stats);
1151 rxsc_stats = this_cpu_ptr(rx_sc->stats);
1152
1153 if (!macsec_validate_skb(skb, secy->icv_len)) {
1154 u64_stats_update_begin(&secy_stats->syncp);
1155 secy_stats->stats.InPktsBadTag++;
1156 u64_stats_update_end(&secy_stats->syncp);
1157 goto drop_nosa;
1158 }
1159
1160 rx_sa = macsec_rxsa_get(rx_sc->sa[macsec_skb_cb(skb)->assoc_num]);
1161 if (!rx_sa) {
1162 /* 10.6.1 if the SA is not in use */
1163
1164 /* If validateFrames is Strict or the C bit in the
1165 * SecTAG is set, discard
1166 */
1167 if (hdr->tci_an & MACSEC_TCI_C ||
1168 secy->validate_frames == MACSEC_VALIDATE_STRICT) {
1169 u64_stats_update_begin(&rxsc_stats->syncp);
1170 rxsc_stats->stats.InPktsNotUsingSA++;
1171 u64_stats_update_end(&rxsc_stats->syncp);
1172 goto drop_nosa;
1173 }
1174
1175 /* not Strict, the frame (with the SecTAG and ICV
1176 * removed) is delivered to the Controlled Port.
1177 */
1178 u64_stats_update_begin(&rxsc_stats->syncp);
1179 rxsc_stats->stats.InPktsUnusedSA++;
1180 u64_stats_update_end(&rxsc_stats->syncp);
1181 goto deliver;
1182 }
1183
1184 /* First, PN check to avoid decrypting obviously wrong packets */
1185 pn = ntohl(hdr->packet_number);
1186 if (secy->replay_protect) {
1187 bool late;
1188
1189 spin_lock(&rx_sa->lock);
1190 late = rx_sa->next_pn >= secy->replay_window &&
1191 pn < (rx_sa->next_pn - secy->replay_window);
1192 spin_unlock(&rx_sa->lock);
1193
1194 if (late) {
1195 u64_stats_update_begin(&rxsc_stats->syncp);
1196 rxsc_stats->stats.InPktsLate++;
1197 u64_stats_update_end(&rxsc_stats->syncp);
1198 goto drop;
1199 }
1200 }
1201
Beniamino Galvanie3a3b622016-07-26 12:24:53 +02001202 macsec_skb_cb(skb)->rx_sa = rx_sa;
1203
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001204 /* Disabled && !changed text => skip validation */
1205 if (hdr->tci_an & MACSEC_TCI_C ||
1206 secy->validate_frames != MACSEC_VALIDATE_DISABLED)
1207 skb = macsec_decrypt(skb, dev, rx_sa, sci, secy);
1208
Sabrina Dubrocac3b7d0b2016-04-22 11:28:04 +02001209 if (IS_ERR(skb)) {
1210 /* the decrypt callback needs the reference */
Sabrina Dubrocac78ebe12016-07-29 15:37:53 +02001211 if (PTR_ERR(skb) != -EINPROGRESS) {
Sabrina Dubrocac3b7d0b2016-04-22 11:28:04 +02001212 macsec_rxsa_put(rx_sa);
Sabrina Dubrocac78ebe12016-07-29 15:37:53 +02001213 macsec_rxsc_put(rx_sc);
1214 }
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001215 rcu_read_unlock();
1216 *pskb = NULL;
1217 return RX_HANDLER_CONSUMED;
1218 }
1219
1220 if (!macsec_post_decrypt(skb, secy, pn))
1221 goto drop;
1222
1223deliver:
1224 macsec_finalize_skb(skb, secy->icv_len,
1225 macsec_extra_len(macsec_skb_cb(skb)->has_sci));
1226 macsec_reset_skb(skb, secy->netdev);
1227
Sabrina Dubroca497f3582016-04-22 11:28:03 +02001228 if (rx_sa)
1229 macsec_rxsa_put(rx_sa);
Sabrina Dubrocac78ebe12016-07-29 15:37:53 +02001230 macsec_rxsc_put(rx_sc);
Paolo Abeni5491e7c2016-07-20 18:11:32 +02001231
1232 ret = gro_cells_receive(&macsec->gro_cells, skb);
1233 if (ret == NET_RX_SUCCESS)
1234 count_rx(dev, skb->len);
1235 else
1236 macsec->secy.netdev->stats.rx_dropped++;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001237
1238 rcu_read_unlock();
1239
Paolo Abeni5491e7c2016-07-20 18:11:32 +02001240 *pskb = NULL;
1241 return RX_HANDLER_CONSUMED;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001242
1243drop:
1244 macsec_rxsa_put(rx_sa);
1245drop_nosa:
Sabrina Dubrocac78ebe12016-07-29 15:37:53 +02001246 macsec_rxsc_put(rx_sc);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001247 rcu_read_unlock();
1248drop_direct:
1249 kfree_skb(skb);
1250 *pskb = NULL;
1251 return RX_HANDLER_CONSUMED;
1252
1253nosci:
1254 /* 10.6.1 if the SC is not found */
1255 cbit = !!(hdr->tci_an & MACSEC_TCI_C);
1256 if (!cbit)
1257 macsec_finalize_skb(skb, DEFAULT_ICV_LEN,
1258 macsec_extra_len(macsec_skb_cb(skb)->has_sci));
1259
1260 list_for_each_entry_rcu(macsec, &rxd->secys, secys) {
1261 struct sk_buff *nskb;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001262
1263 secy_stats = this_cpu_ptr(macsec->stats);
1264
1265 /* If validateFrames is Strict or the C bit in the
1266 * SecTAG is set, discard
1267 */
1268 if (cbit ||
1269 macsec->secy.validate_frames == MACSEC_VALIDATE_STRICT) {
1270 u64_stats_update_begin(&secy_stats->syncp);
1271 secy_stats->stats.InPktsNoSCI++;
1272 u64_stats_update_end(&secy_stats->syncp);
1273 continue;
1274 }
1275
1276 /* not strict, the frame (with the SecTAG and ICV
1277 * removed) is delivered to the Controlled Port.
1278 */
1279 nskb = skb_clone(skb, GFP_ATOMIC);
1280 if (!nskb)
1281 break;
1282
1283 macsec_reset_skb(nskb, macsec->secy.netdev);
1284
1285 ret = netif_rx(nskb);
1286 if (ret == NET_RX_SUCCESS) {
1287 u64_stats_update_begin(&secy_stats->syncp);
1288 secy_stats->stats.InPktsUnknownSCI++;
1289 u64_stats_update_end(&secy_stats->syncp);
1290 } else {
1291 macsec->secy.netdev->stats.rx_dropped++;
1292 }
1293 }
1294
1295 rcu_read_unlock();
1296 *pskb = skb;
1297 return RX_HANDLER_PASS;
1298}
1299
1300static struct crypto_aead *macsec_alloc_tfm(char *key, int key_len, int icv_len)
1301{
1302 struct crypto_aead *tfm;
1303 int ret;
1304
Sabrina Dubroca6052f7f2016-06-14 15:25:16 +02001305 tfm = crypto_alloc_aead("gcm(aes)", 0, 0);
Davide Caratti34aedfe2016-07-22 15:07:57 +02001306
1307 if (IS_ERR(tfm))
1308 return tfm;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001309
1310 ret = crypto_aead_setkey(tfm, key, key_len);
Davide Caratti34aedfe2016-07-22 15:07:57 +02001311 if (ret < 0)
1312 goto fail;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001313
1314 ret = crypto_aead_setauthsize(tfm, icv_len);
Davide Caratti34aedfe2016-07-22 15:07:57 +02001315 if (ret < 0)
1316 goto fail;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001317
1318 return tfm;
Davide Caratti34aedfe2016-07-22 15:07:57 +02001319fail:
1320 crypto_free_aead(tfm);
1321 return ERR_PTR(ret);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001322}
1323
1324static int init_rx_sa(struct macsec_rx_sa *rx_sa, char *sak, int key_len,
1325 int icv_len)
1326{
1327 rx_sa->stats = alloc_percpu(struct macsec_rx_sa_stats);
1328 if (!rx_sa->stats)
Davide Caratti34aedfe2016-07-22 15:07:57 +02001329 return -ENOMEM;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001330
1331 rx_sa->key.tfm = macsec_alloc_tfm(sak, key_len, icv_len);
Davide Caratti34aedfe2016-07-22 15:07:57 +02001332 if (IS_ERR(rx_sa->key.tfm)) {
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001333 free_percpu(rx_sa->stats);
Davide Caratti34aedfe2016-07-22 15:07:57 +02001334 return PTR_ERR(rx_sa->key.tfm);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001335 }
1336
1337 rx_sa->active = false;
1338 rx_sa->next_pn = 1;
1339 atomic_set(&rx_sa->refcnt, 1);
1340 spin_lock_init(&rx_sa->lock);
1341
1342 return 0;
1343}
1344
1345static void clear_rx_sa(struct macsec_rx_sa *rx_sa)
1346{
1347 rx_sa->active = false;
1348
1349 macsec_rxsa_put(rx_sa);
1350}
1351
1352static void free_rx_sc(struct macsec_rx_sc *rx_sc)
1353{
1354 int i;
1355
1356 for (i = 0; i < MACSEC_NUM_AN; i++) {
1357 struct macsec_rx_sa *sa = rtnl_dereference(rx_sc->sa[i]);
1358
1359 RCU_INIT_POINTER(rx_sc->sa[i], NULL);
1360 if (sa)
1361 clear_rx_sa(sa);
1362 }
1363
1364 macsec_rxsc_put(rx_sc);
1365}
1366
1367static struct macsec_rx_sc *del_rx_sc(struct macsec_secy *secy, sci_t sci)
1368{
1369 struct macsec_rx_sc *rx_sc, __rcu **rx_scp;
1370
1371 for (rx_scp = &secy->rx_sc, rx_sc = rtnl_dereference(*rx_scp);
1372 rx_sc;
1373 rx_scp = &rx_sc->next, rx_sc = rtnl_dereference(*rx_scp)) {
1374 if (rx_sc->sci == sci) {
1375 if (rx_sc->active)
1376 secy->n_rx_sc--;
1377 rcu_assign_pointer(*rx_scp, rx_sc->next);
1378 return rx_sc;
1379 }
1380 }
1381
1382 return NULL;
1383}
1384
1385static struct macsec_rx_sc *create_rx_sc(struct net_device *dev, sci_t sci)
1386{
1387 struct macsec_rx_sc *rx_sc;
1388 struct macsec_dev *macsec;
1389 struct net_device *real_dev = macsec_priv(dev)->real_dev;
1390 struct macsec_rxh_data *rxd = macsec_data_rtnl(real_dev);
1391 struct macsec_secy *secy;
1392
1393 list_for_each_entry(macsec, &rxd->secys, secys) {
1394 if (find_rx_sc_rtnl(&macsec->secy, sci))
1395 return ERR_PTR(-EEXIST);
1396 }
1397
1398 rx_sc = kzalloc(sizeof(*rx_sc), GFP_KERNEL);
1399 if (!rx_sc)
1400 return ERR_PTR(-ENOMEM);
1401
1402 rx_sc->stats = netdev_alloc_pcpu_stats(struct pcpu_rx_sc_stats);
1403 if (!rx_sc->stats) {
1404 kfree(rx_sc);
1405 return ERR_PTR(-ENOMEM);
1406 }
1407
1408 rx_sc->sci = sci;
1409 rx_sc->active = true;
1410 atomic_set(&rx_sc->refcnt, 1);
1411
1412 secy = &macsec_priv(dev)->secy;
1413 rcu_assign_pointer(rx_sc->next, secy->rx_sc);
1414 rcu_assign_pointer(secy->rx_sc, rx_sc);
1415
1416 if (rx_sc->active)
1417 secy->n_rx_sc++;
1418
1419 return rx_sc;
1420}
1421
1422static int init_tx_sa(struct macsec_tx_sa *tx_sa, char *sak, int key_len,
1423 int icv_len)
1424{
1425 tx_sa->stats = alloc_percpu(struct macsec_tx_sa_stats);
1426 if (!tx_sa->stats)
Davide Caratti34aedfe2016-07-22 15:07:57 +02001427 return -ENOMEM;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001428
1429 tx_sa->key.tfm = macsec_alloc_tfm(sak, key_len, icv_len);
Davide Caratti34aedfe2016-07-22 15:07:57 +02001430 if (IS_ERR(tx_sa->key.tfm)) {
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001431 free_percpu(tx_sa->stats);
Davide Caratti34aedfe2016-07-22 15:07:57 +02001432 return PTR_ERR(tx_sa->key.tfm);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001433 }
1434
1435 tx_sa->active = false;
1436 atomic_set(&tx_sa->refcnt, 1);
1437 spin_lock_init(&tx_sa->lock);
1438
1439 return 0;
1440}
1441
1442static void clear_tx_sa(struct macsec_tx_sa *tx_sa)
1443{
1444 tx_sa->active = false;
1445
1446 macsec_txsa_put(tx_sa);
1447}
1448
1449static struct genl_family macsec_fam = {
1450 .id = GENL_ID_GENERATE,
1451 .name = MACSEC_GENL_NAME,
1452 .hdrsize = 0,
1453 .version = MACSEC_GENL_VERSION,
1454 .maxattr = MACSEC_ATTR_MAX,
1455 .netnsok = true,
1456};
1457
1458static struct net_device *get_dev_from_nl(struct net *net,
1459 struct nlattr **attrs)
1460{
1461 int ifindex = nla_get_u32(attrs[MACSEC_ATTR_IFINDEX]);
1462 struct net_device *dev;
1463
1464 dev = __dev_get_by_index(net, ifindex);
1465 if (!dev)
1466 return ERR_PTR(-ENODEV);
1467
1468 if (!netif_is_macsec(dev))
1469 return ERR_PTR(-ENODEV);
1470
1471 return dev;
1472}
1473
1474static sci_t nla_get_sci(const struct nlattr *nla)
1475{
1476 return (__force sci_t)nla_get_u64(nla);
1477}
1478
Nicolas Dichtelf60d94c2016-04-26 10:06:11 +02001479static int nla_put_sci(struct sk_buff *skb, int attrtype, sci_t value,
1480 int padattr)
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001481{
Nicolas Dichtelf60d94c2016-04-26 10:06:11 +02001482 return nla_put_u64_64bit(skb, attrtype, (__force u64)value, padattr);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001483}
1484
1485static struct macsec_tx_sa *get_txsa_from_nl(struct net *net,
1486 struct nlattr **attrs,
1487 struct nlattr **tb_sa,
1488 struct net_device **devp,
1489 struct macsec_secy **secyp,
1490 struct macsec_tx_sc **scp,
1491 u8 *assoc_num)
1492{
1493 struct net_device *dev;
1494 struct macsec_secy *secy;
1495 struct macsec_tx_sc *tx_sc;
1496 struct macsec_tx_sa *tx_sa;
1497
1498 if (!tb_sa[MACSEC_SA_ATTR_AN])
1499 return ERR_PTR(-EINVAL);
1500
1501 *assoc_num = nla_get_u8(tb_sa[MACSEC_SA_ATTR_AN]);
1502
1503 dev = get_dev_from_nl(net, attrs);
1504 if (IS_ERR(dev))
1505 return ERR_CAST(dev);
1506
1507 if (*assoc_num >= MACSEC_NUM_AN)
1508 return ERR_PTR(-EINVAL);
1509
1510 secy = &macsec_priv(dev)->secy;
1511 tx_sc = &secy->tx_sc;
1512
1513 tx_sa = rtnl_dereference(tx_sc->sa[*assoc_num]);
1514 if (!tx_sa)
1515 return ERR_PTR(-ENODEV);
1516
1517 *devp = dev;
1518 *scp = tx_sc;
1519 *secyp = secy;
1520 return tx_sa;
1521}
1522
1523static struct macsec_rx_sc *get_rxsc_from_nl(struct net *net,
1524 struct nlattr **attrs,
1525 struct nlattr **tb_rxsc,
1526 struct net_device **devp,
1527 struct macsec_secy **secyp)
1528{
1529 struct net_device *dev;
1530 struct macsec_secy *secy;
1531 struct macsec_rx_sc *rx_sc;
1532 sci_t sci;
1533
1534 dev = get_dev_from_nl(net, attrs);
1535 if (IS_ERR(dev))
1536 return ERR_CAST(dev);
1537
1538 secy = &macsec_priv(dev)->secy;
1539
1540 if (!tb_rxsc[MACSEC_RXSC_ATTR_SCI])
1541 return ERR_PTR(-EINVAL);
1542
1543 sci = nla_get_sci(tb_rxsc[MACSEC_RXSC_ATTR_SCI]);
1544 rx_sc = find_rx_sc_rtnl(secy, sci);
1545 if (!rx_sc)
1546 return ERR_PTR(-ENODEV);
1547
1548 *secyp = secy;
1549 *devp = dev;
1550
1551 return rx_sc;
1552}
1553
1554static struct macsec_rx_sa *get_rxsa_from_nl(struct net *net,
1555 struct nlattr **attrs,
1556 struct nlattr **tb_rxsc,
1557 struct nlattr **tb_sa,
1558 struct net_device **devp,
1559 struct macsec_secy **secyp,
1560 struct macsec_rx_sc **scp,
1561 u8 *assoc_num)
1562{
1563 struct macsec_rx_sc *rx_sc;
1564 struct macsec_rx_sa *rx_sa;
1565
1566 if (!tb_sa[MACSEC_SA_ATTR_AN])
1567 return ERR_PTR(-EINVAL);
1568
1569 *assoc_num = nla_get_u8(tb_sa[MACSEC_SA_ATTR_AN]);
1570 if (*assoc_num >= MACSEC_NUM_AN)
1571 return ERR_PTR(-EINVAL);
1572
1573 rx_sc = get_rxsc_from_nl(net, attrs, tb_rxsc, devp, secyp);
1574 if (IS_ERR(rx_sc))
1575 return ERR_CAST(rx_sc);
1576
1577 rx_sa = rtnl_dereference(rx_sc->sa[*assoc_num]);
1578 if (!rx_sa)
1579 return ERR_PTR(-ENODEV);
1580
1581 *scp = rx_sc;
1582 return rx_sa;
1583}
1584
1585
1586static const struct nla_policy macsec_genl_policy[NUM_MACSEC_ATTR] = {
1587 [MACSEC_ATTR_IFINDEX] = { .type = NLA_U32 },
1588 [MACSEC_ATTR_RXSC_CONFIG] = { .type = NLA_NESTED },
1589 [MACSEC_ATTR_SA_CONFIG] = { .type = NLA_NESTED },
1590};
1591
1592static const struct nla_policy macsec_genl_rxsc_policy[NUM_MACSEC_RXSC_ATTR] = {
1593 [MACSEC_RXSC_ATTR_SCI] = { .type = NLA_U64 },
1594 [MACSEC_RXSC_ATTR_ACTIVE] = { .type = NLA_U8 },
1595};
1596
1597static const struct nla_policy macsec_genl_sa_policy[NUM_MACSEC_SA_ATTR] = {
1598 [MACSEC_SA_ATTR_AN] = { .type = NLA_U8 },
1599 [MACSEC_SA_ATTR_ACTIVE] = { .type = NLA_U8 },
1600 [MACSEC_SA_ATTR_PN] = { .type = NLA_U32 },
Sabrina Dubroca8acca6a2016-05-07 20:19:29 +02001601 [MACSEC_SA_ATTR_KEYID] = { .type = NLA_BINARY,
1602 .len = MACSEC_KEYID_LEN, },
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001603 [MACSEC_SA_ATTR_KEY] = { .type = NLA_BINARY,
1604 .len = MACSEC_MAX_KEY_LEN, },
1605};
1606
1607static int parse_sa_config(struct nlattr **attrs, struct nlattr **tb_sa)
1608{
1609 if (!attrs[MACSEC_ATTR_SA_CONFIG])
1610 return -EINVAL;
1611
1612 if (nla_parse_nested(tb_sa, MACSEC_SA_ATTR_MAX, attrs[MACSEC_ATTR_SA_CONFIG],
1613 macsec_genl_sa_policy))
1614 return -EINVAL;
1615
1616 return 0;
1617}
1618
1619static int parse_rxsc_config(struct nlattr **attrs, struct nlattr **tb_rxsc)
1620{
1621 if (!attrs[MACSEC_ATTR_RXSC_CONFIG])
1622 return -EINVAL;
1623
1624 if (nla_parse_nested(tb_rxsc, MACSEC_RXSC_ATTR_MAX, attrs[MACSEC_ATTR_RXSC_CONFIG],
1625 macsec_genl_rxsc_policy))
1626 return -EINVAL;
1627
1628 return 0;
1629}
1630
1631static bool validate_add_rxsa(struct nlattr **attrs)
1632{
1633 if (!attrs[MACSEC_SA_ATTR_AN] ||
1634 !attrs[MACSEC_SA_ATTR_KEY] ||
1635 !attrs[MACSEC_SA_ATTR_KEYID])
1636 return false;
1637
1638 if (nla_get_u8(attrs[MACSEC_SA_ATTR_AN]) >= MACSEC_NUM_AN)
1639 return false;
1640
1641 if (attrs[MACSEC_SA_ATTR_PN] && nla_get_u32(attrs[MACSEC_SA_ATTR_PN]) == 0)
1642 return false;
1643
1644 if (attrs[MACSEC_SA_ATTR_ACTIVE]) {
1645 if (nla_get_u8(attrs[MACSEC_SA_ATTR_ACTIVE]) > 1)
1646 return false;
1647 }
1648
Sabrina Dubroca8acca6a2016-05-07 20:19:29 +02001649 if (nla_len(attrs[MACSEC_SA_ATTR_KEYID]) != MACSEC_KEYID_LEN)
1650 return false;
1651
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001652 return true;
1653}
1654
1655static int macsec_add_rxsa(struct sk_buff *skb, struct genl_info *info)
1656{
1657 struct net_device *dev;
1658 struct nlattr **attrs = info->attrs;
1659 struct macsec_secy *secy;
1660 struct macsec_rx_sc *rx_sc;
1661 struct macsec_rx_sa *rx_sa;
1662 unsigned char assoc_num;
1663 struct nlattr *tb_rxsc[MACSEC_RXSC_ATTR_MAX + 1];
1664 struct nlattr *tb_sa[MACSEC_SA_ATTR_MAX + 1];
Davide Caratti34aedfe2016-07-22 15:07:57 +02001665 int err;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001666
1667 if (!attrs[MACSEC_ATTR_IFINDEX])
1668 return -EINVAL;
1669
1670 if (parse_sa_config(attrs, tb_sa))
1671 return -EINVAL;
1672
1673 if (parse_rxsc_config(attrs, tb_rxsc))
1674 return -EINVAL;
1675
1676 if (!validate_add_rxsa(tb_sa))
1677 return -EINVAL;
1678
1679 rtnl_lock();
1680 rx_sc = get_rxsc_from_nl(genl_info_net(info), attrs, tb_rxsc, &dev, &secy);
Sabrina Dubroca36b232c2016-07-29 15:37:54 +02001681 if (IS_ERR(rx_sc)) {
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001682 rtnl_unlock();
1683 return PTR_ERR(rx_sc);
1684 }
1685
1686 assoc_num = nla_get_u8(tb_sa[MACSEC_SA_ATTR_AN]);
1687
1688 if (nla_len(tb_sa[MACSEC_SA_ATTR_KEY]) != secy->key_len) {
1689 pr_notice("macsec: nl: add_rxsa: bad key length: %d != %d\n",
1690 nla_len(tb_sa[MACSEC_SA_ATTR_KEY]), secy->key_len);
1691 rtnl_unlock();
1692 return -EINVAL;
1693 }
1694
1695 rx_sa = rtnl_dereference(rx_sc->sa[assoc_num]);
1696 if (rx_sa) {
1697 rtnl_unlock();
1698 return -EBUSY;
1699 }
1700
1701 rx_sa = kmalloc(sizeof(*rx_sa), GFP_KERNEL);
Davide Caratti34aedfe2016-07-22 15:07:57 +02001702 if (!rx_sa) {
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001703 rtnl_unlock();
1704 return -ENOMEM;
1705 }
1706
Davide Caratti34aedfe2016-07-22 15:07:57 +02001707 err = init_rx_sa(rx_sa, nla_data(tb_sa[MACSEC_SA_ATTR_KEY]),
1708 secy->key_len, secy->icv_len);
1709 if (err < 0) {
1710 kfree(rx_sa);
1711 rtnl_unlock();
1712 return err;
1713 }
1714
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001715 if (tb_sa[MACSEC_SA_ATTR_PN]) {
1716 spin_lock_bh(&rx_sa->lock);
1717 rx_sa->next_pn = nla_get_u32(tb_sa[MACSEC_SA_ATTR_PN]);
1718 spin_unlock_bh(&rx_sa->lock);
1719 }
1720
1721 if (tb_sa[MACSEC_SA_ATTR_ACTIVE])
1722 rx_sa->active = !!nla_get_u8(tb_sa[MACSEC_SA_ATTR_ACTIVE]);
1723
Sabrina Dubroca1968a0b2016-05-18 13:34:40 +02001724 nla_memcpy(rx_sa->key.id, tb_sa[MACSEC_SA_ATTR_KEYID], MACSEC_KEYID_LEN);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001725 rx_sa->sc = rx_sc;
1726 rcu_assign_pointer(rx_sc->sa[assoc_num], rx_sa);
1727
1728 rtnl_unlock();
1729
1730 return 0;
1731}
1732
1733static bool validate_add_rxsc(struct nlattr **attrs)
1734{
1735 if (!attrs[MACSEC_RXSC_ATTR_SCI])
1736 return false;
1737
1738 if (attrs[MACSEC_RXSC_ATTR_ACTIVE]) {
1739 if (nla_get_u8(attrs[MACSEC_RXSC_ATTR_ACTIVE]) > 1)
1740 return false;
1741 }
1742
1743 return true;
1744}
1745
1746static int macsec_add_rxsc(struct sk_buff *skb, struct genl_info *info)
1747{
1748 struct net_device *dev;
1749 sci_t sci = MACSEC_UNDEF_SCI;
1750 struct nlattr **attrs = info->attrs;
1751 struct macsec_rx_sc *rx_sc;
1752 struct nlattr *tb_rxsc[MACSEC_RXSC_ATTR_MAX + 1];
1753
1754 if (!attrs[MACSEC_ATTR_IFINDEX])
1755 return -EINVAL;
1756
1757 if (parse_rxsc_config(attrs, tb_rxsc))
1758 return -EINVAL;
1759
1760 if (!validate_add_rxsc(tb_rxsc))
1761 return -EINVAL;
1762
1763 rtnl_lock();
1764 dev = get_dev_from_nl(genl_info_net(info), attrs);
1765 if (IS_ERR(dev)) {
1766 rtnl_unlock();
1767 return PTR_ERR(dev);
1768 }
1769
1770 sci = nla_get_sci(tb_rxsc[MACSEC_RXSC_ATTR_SCI]);
1771
1772 rx_sc = create_rx_sc(dev, sci);
1773 if (IS_ERR(rx_sc)) {
1774 rtnl_unlock();
1775 return PTR_ERR(rx_sc);
1776 }
1777
1778 if (tb_rxsc[MACSEC_RXSC_ATTR_ACTIVE])
1779 rx_sc->active = !!nla_get_u8(tb_rxsc[MACSEC_RXSC_ATTR_ACTIVE]);
1780
1781 rtnl_unlock();
1782
1783 return 0;
1784}
1785
1786static bool validate_add_txsa(struct nlattr **attrs)
1787{
1788 if (!attrs[MACSEC_SA_ATTR_AN] ||
1789 !attrs[MACSEC_SA_ATTR_PN] ||
1790 !attrs[MACSEC_SA_ATTR_KEY] ||
1791 !attrs[MACSEC_SA_ATTR_KEYID])
1792 return false;
1793
1794 if (nla_get_u8(attrs[MACSEC_SA_ATTR_AN]) >= MACSEC_NUM_AN)
1795 return false;
1796
1797 if (nla_get_u32(attrs[MACSEC_SA_ATTR_PN]) == 0)
1798 return false;
1799
1800 if (attrs[MACSEC_SA_ATTR_ACTIVE]) {
1801 if (nla_get_u8(attrs[MACSEC_SA_ATTR_ACTIVE]) > 1)
1802 return false;
1803 }
1804
Sabrina Dubroca8acca6a2016-05-07 20:19:29 +02001805 if (nla_len(attrs[MACSEC_SA_ATTR_KEYID]) != MACSEC_KEYID_LEN)
1806 return false;
1807
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001808 return true;
1809}
1810
1811static int macsec_add_txsa(struct sk_buff *skb, struct genl_info *info)
1812{
1813 struct net_device *dev;
1814 struct nlattr **attrs = info->attrs;
1815 struct macsec_secy *secy;
1816 struct macsec_tx_sc *tx_sc;
1817 struct macsec_tx_sa *tx_sa;
1818 unsigned char assoc_num;
1819 struct nlattr *tb_sa[MACSEC_SA_ATTR_MAX + 1];
Davide Caratti34aedfe2016-07-22 15:07:57 +02001820 int err;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001821
1822 if (!attrs[MACSEC_ATTR_IFINDEX])
1823 return -EINVAL;
1824
1825 if (parse_sa_config(attrs, tb_sa))
1826 return -EINVAL;
1827
1828 if (!validate_add_txsa(tb_sa))
1829 return -EINVAL;
1830
1831 rtnl_lock();
1832 dev = get_dev_from_nl(genl_info_net(info), attrs);
1833 if (IS_ERR(dev)) {
1834 rtnl_unlock();
1835 return PTR_ERR(dev);
1836 }
1837
1838 secy = &macsec_priv(dev)->secy;
1839 tx_sc = &secy->tx_sc;
1840
1841 assoc_num = nla_get_u8(tb_sa[MACSEC_SA_ATTR_AN]);
1842
1843 if (nla_len(tb_sa[MACSEC_SA_ATTR_KEY]) != secy->key_len) {
1844 pr_notice("macsec: nl: add_txsa: bad key length: %d != %d\n",
1845 nla_len(tb_sa[MACSEC_SA_ATTR_KEY]), secy->key_len);
1846 rtnl_unlock();
1847 return -EINVAL;
1848 }
1849
1850 tx_sa = rtnl_dereference(tx_sc->sa[assoc_num]);
1851 if (tx_sa) {
1852 rtnl_unlock();
1853 return -EBUSY;
1854 }
1855
1856 tx_sa = kmalloc(sizeof(*tx_sa), GFP_KERNEL);
Davide Caratti34aedfe2016-07-22 15:07:57 +02001857 if (!tx_sa) {
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001858 rtnl_unlock();
1859 return -ENOMEM;
1860 }
1861
Davide Caratti34aedfe2016-07-22 15:07:57 +02001862 err = init_tx_sa(tx_sa, nla_data(tb_sa[MACSEC_SA_ATTR_KEY]),
1863 secy->key_len, secy->icv_len);
1864 if (err < 0) {
1865 kfree(tx_sa);
1866 rtnl_unlock();
1867 return err;
1868 }
1869
Sabrina Dubroca1968a0b2016-05-18 13:34:40 +02001870 nla_memcpy(tx_sa->key.id, tb_sa[MACSEC_SA_ATTR_KEYID], MACSEC_KEYID_LEN);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01001871
1872 spin_lock_bh(&tx_sa->lock);
1873 tx_sa->next_pn = nla_get_u32(tb_sa[MACSEC_SA_ATTR_PN]);
1874 spin_unlock_bh(&tx_sa->lock);
1875
1876 if (tb_sa[MACSEC_SA_ATTR_ACTIVE])
1877 tx_sa->active = !!nla_get_u8(tb_sa[MACSEC_SA_ATTR_ACTIVE]);
1878
1879 if (assoc_num == tx_sc->encoding_sa && tx_sa->active)
1880 secy->operational = true;
1881
1882 rcu_assign_pointer(tx_sc->sa[assoc_num], tx_sa);
1883
1884 rtnl_unlock();
1885
1886 return 0;
1887}
1888
1889static int macsec_del_rxsa(struct sk_buff *skb, struct genl_info *info)
1890{
1891 struct nlattr **attrs = info->attrs;
1892 struct net_device *dev;
1893 struct macsec_secy *secy;
1894 struct macsec_rx_sc *rx_sc;
1895 struct macsec_rx_sa *rx_sa;
1896 u8 assoc_num;
1897 struct nlattr *tb_rxsc[MACSEC_RXSC_ATTR_MAX + 1];
1898 struct nlattr *tb_sa[MACSEC_SA_ATTR_MAX + 1];
1899
1900 if (!attrs[MACSEC_ATTR_IFINDEX])
1901 return -EINVAL;
1902
1903 if (parse_sa_config(attrs, tb_sa))
1904 return -EINVAL;
1905
1906 if (parse_rxsc_config(attrs, tb_rxsc))
1907 return -EINVAL;
1908
1909 rtnl_lock();
1910 rx_sa = get_rxsa_from_nl(genl_info_net(info), attrs, tb_rxsc, tb_sa,
1911 &dev, &secy, &rx_sc, &assoc_num);
1912 if (IS_ERR(rx_sa)) {
1913 rtnl_unlock();
1914 return PTR_ERR(rx_sa);
1915 }
1916
1917 if (rx_sa->active) {
1918 rtnl_unlock();
1919 return -EBUSY;
1920 }
1921
1922 RCU_INIT_POINTER(rx_sc->sa[assoc_num], NULL);
1923 clear_rx_sa(rx_sa);
1924
1925 rtnl_unlock();
1926
1927 return 0;
1928}
1929
1930static int macsec_del_rxsc(struct sk_buff *skb, struct genl_info *info)
1931{
1932 struct nlattr **attrs = info->attrs;
1933 struct net_device *dev;
1934 struct macsec_secy *secy;
1935 struct macsec_rx_sc *rx_sc;
1936 sci_t sci;
1937 struct nlattr *tb_rxsc[MACSEC_RXSC_ATTR_MAX + 1];
1938
1939 if (!attrs[MACSEC_ATTR_IFINDEX])
1940 return -EINVAL;
1941
1942 if (parse_rxsc_config(attrs, tb_rxsc))
1943 return -EINVAL;
1944
1945 if (!tb_rxsc[MACSEC_RXSC_ATTR_SCI])
1946 return -EINVAL;
1947
1948 rtnl_lock();
1949 dev = get_dev_from_nl(genl_info_net(info), info->attrs);
1950 if (IS_ERR(dev)) {
1951 rtnl_unlock();
1952 return PTR_ERR(dev);
1953 }
1954
1955 secy = &macsec_priv(dev)->secy;
1956 sci = nla_get_sci(tb_rxsc[MACSEC_RXSC_ATTR_SCI]);
1957
1958 rx_sc = del_rx_sc(secy, sci);
1959 if (!rx_sc) {
1960 rtnl_unlock();
1961 return -ENODEV;
1962 }
1963
1964 free_rx_sc(rx_sc);
1965 rtnl_unlock();
1966
1967 return 0;
1968}
1969
1970static int macsec_del_txsa(struct sk_buff *skb, struct genl_info *info)
1971{
1972 struct nlattr **attrs = info->attrs;
1973 struct net_device *dev;
1974 struct macsec_secy *secy;
1975 struct macsec_tx_sc *tx_sc;
1976 struct macsec_tx_sa *tx_sa;
1977 u8 assoc_num;
1978 struct nlattr *tb_sa[MACSEC_SA_ATTR_MAX + 1];
1979
1980 if (!attrs[MACSEC_ATTR_IFINDEX])
1981 return -EINVAL;
1982
1983 if (parse_sa_config(attrs, tb_sa))
1984 return -EINVAL;
1985
1986 rtnl_lock();
1987 tx_sa = get_txsa_from_nl(genl_info_net(info), attrs, tb_sa,
1988 &dev, &secy, &tx_sc, &assoc_num);
1989 if (IS_ERR(tx_sa)) {
1990 rtnl_unlock();
1991 return PTR_ERR(tx_sa);
1992 }
1993
1994 if (tx_sa->active) {
1995 rtnl_unlock();
1996 return -EBUSY;
1997 }
1998
1999 RCU_INIT_POINTER(tx_sc->sa[assoc_num], NULL);
2000 clear_tx_sa(tx_sa);
2001
2002 rtnl_unlock();
2003
2004 return 0;
2005}
2006
2007static bool validate_upd_sa(struct nlattr **attrs)
2008{
2009 if (!attrs[MACSEC_SA_ATTR_AN] ||
2010 attrs[MACSEC_SA_ATTR_KEY] ||
2011 attrs[MACSEC_SA_ATTR_KEYID])
2012 return false;
2013
2014 if (nla_get_u8(attrs[MACSEC_SA_ATTR_AN]) >= MACSEC_NUM_AN)
2015 return false;
2016
2017 if (attrs[MACSEC_SA_ATTR_PN] && nla_get_u32(attrs[MACSEC_SA_ATTR_PN]) == 0)
2018 return false;
2019
2020 if (attrs[MACSEC_SA_ATTR_ACTIVE]) {
2021 if (nla_get_u8(attrs[MACSEC_SA_ATTR_ACTIVE]) > 1)
2022 return false;
2023 }
2024
2025 return true;
2026}
2027
2028static int macsec_upd_txsa(struct sk_buff *skb, struct genl_info *info)
2029{
2030 struct nlattr **attrs = info->attrs;
2031 struct net_device *dev;
2032 struct macsec_secy *secy;
2033 struct macsec_tx_sc *tx_sc;
2034 struct macsec_tx_sa *tx_sa;
2035 u8 assoc_num;
2036 struct nlattr *tb_sa[MACSEC_SA_ATTR_MAX + 1];
2037
2038 if (!attrs[MACSEC_ATTR_IFINDEX])
2039 return -EINVAL;
2040
2041 if (parse_sa_config(attrs, tb_sa))
2042 return -EINVAL;
2043
2044 if (!validate_upd_sa(tb_sa))
2045 return -EINVAL;
2046
2047 rtnl_lock();
2048 tx_sa = get_txsa_from_nl(genl_info_net(info), attrs, tb_sa,
2049 &dev, &secy, &tx_sc, &assoc_num);
2050 if (IS_ERR(tx_sa)) {
2051 rtnl_unlock();
2052 return PTR_ERR(tx_sa);
2053 }
2054
2055 if (tb_sa[MACSEC_SA_ATTR_PN]) {
2056 spin_lock_bh(&tx_sa->lock);
2057 tx_sa->next_pn = nla_get_u32(tb_sa[MACSEC_SA_ATTR_PN]);
2058 spin_unlock_bh(&tx_sa->lock);
2059 }
2060
2061 if (tb_sa[MACSEC_SA_ATTR_ACTIVE])
2062 tx_sa->active = nla_get_u8(tb_sa[MACSEC_SA_ATTR_ACTIVE]);
2063
2064 if (assoc_num == tx_sc->encoding_sa)
2065 secy->operational = tx_sa->active;
2066
2067 rtnl_unlock();
2068
2069 return 0;
2070}
2071
2072static int macsec_upd_rxsa(struct sk_buff *skb, struct genl_info *info)
2073{
2074 struct nlattr **attrs = info->attrs;
2075 struct net_device *dev;
2076 struct macsec_secy *secy;
2077 struct macsec_rx_sc *rx_sc;
2078 struct macsec_rx_sa *rx_sa;
2079 u8 assoc_num;
2080 struct nlattr *tb_rxsc[MACSEC_RXSC_ATTR_MAX + 1];
2081 struct nlattr *tb_sa[MACSEC_SA_ATTR_MAX + 1];
2082
2083 if (!attrs[MACSEC_ATTR_IFINDEX])
2084 return -EINVAL;
2085
2086 if (parse_rxsc_config(attrs, tb_rxsc))
2087 return -EINVAL;
2088
2089 if (parse_sa_config(attrs, tb_sa))
2090 return -EINVAL;
2091
2092 if (!validate_upd_sa(tb_sa))
2093 return -EINVAL;
2094
2095 rtnl_lock();
2096 rx_sa = get_rxsa_from_nl(genl_info_net(info), attrs, tb_rxsc, tb_sa,
2097 &dev, &secy, &rx_sc, &assoc_num);
2098 if (IS_ERR(rx_sa)) {
2099 rtnl_unlock();
2100 return PTR_ERR(rx_sa);
2101 }
2102
2103 if (tb_sa[MACSEC_SA_ATTR_PN]) {
2104 spin_lock_bh(&rx_sa->lock);
2105 rx_sa->next_pn = nla_get_u32(tb_sa[MACSEC_SA_ATTR_PN]);
2106 spin_unlock_bh(&rx_sa->lock);
2107 }
2108
2109 if (tb_sa[MACSEC_SA_ATTR_ACTIVE])
2110 rx_sa->active = nla_get_u8(tb_sa[MACSEC_SA_ATTR_ACTIVE]);
2111
2112 rtnl_unlock();
2113 return 0;
2114}
2115
2116static int macsec_upd_rxsc(struct sk_buff *skb, struct genl_info *info)
2117{
2118 struct nlattr **attrs = info->attrs;
2119 struct net_device *dev;
2120 struct macsec_secy *secy;
2121 struct macsec_rx_sc *rx_sc;
2122 struct nlattr *tb_rxsc[MACSEC_RXSC_ATTR_MAX + 1];
2123
2124 if (!attrs[MACSEC_ATTR_IFINDEX])
2125 return -EINVAL;
2126
2127 if (parse_rxsc_config(attrs, tb_rxsc))
2128 return -EINVAL;
2129
2130 if (!validate_add_rxsc(tb_rxsc))
2131 return -EINVAL;
2132
2133 rtnl_lock();
2134 rx_sc = get_rxsc_from_nl(genl_info_net(info), attrs, tb_rxsc, &dev, &secy);
2135 if (IS_ERR(rx_sc)) {
2136 rtnl_unlock();
2137 return PTR_ERR(rx_sc);
2138 }
2139
2140 if (tb_rxsc[MACSEC_RXSC_ATTR_ACTIVE]) {
2141 bool new = !!nla_get_u8(tb_rxsc[MACSEC_RXSC_ATTR_ACTIVE]);
2142
2143 if (rx_sc->active != new)
2144 secy->n_rx_sc += new ? 1 : -1;
2145
2146 rx_sc->active = new;
2147 }
2148
2149 rtnl_unlock();
2150
2151 return 0;
2152}
2153
2154static int copy_tx_sa_stats(struct sk_buff *skb,
2155 struct macsec_tx_sa_stats __percpu *pstats)
2156{
2157 struct macsec_tx_sa_stats sum = {0, };
2158 int cpu;
2159
2160 for_each_possible_cpu(cpu) {
2161 const struct macsec_tx_sa_stats *stats = per_cpu_ptr(pstats, cpu);
2162
2163 sum.OutPktsProtected += stats->OutPktsProtected;
2164 sum.OutPktsEncrypted += stats->OutPktsEncrypted;
2165 }
2166
2167 if (nla_put_u32(skb, MACSEC_SA_STATS_ATTR_OUT_PKTS_PROTECTED, sum.OutPktsProtected) ||
2168 nla_put_u32(skb, MACSEC_SA_STATS_ATTR_OUT_PKTS_ENCRYPTED, sum.OutPktsEncrypted))
2169 return -EMSGSIZE;
2170
2171 return 0;
2172}
2173
2174static int copy_rx_sa_stats(struct sk_buff *skb,
2175 struct macsec_rx_sa_stats __percpu *pstats)
2176{
2177 struct macsec_rx_sa_stats sum = {0, };
2178 int cpu;
2179
2180 for_each_possible_cpu(cpu) {
2181 const struct macsec_rx_sa_stats *stats = per_cpu_ptr(pstats, cpu);
2182
2183 sum.InPktsOK += stats->InPktsOK;
2184 sum.InPktsInvalid += stats->InPktsInvalid;
2185 sum.InPktsNotValid += stats->InPktsNotValid;
2186 sum.InPktsNotUsingSA += stats->InPktsNotUsingSA;
2187 sum.InPktsUnusedSA += stats->InPktsUnusedSA;
2188 }
2189
2190 if (nla_put_u32(skb, MACSEC_SA_STATS_ATTR_IN_PKTS_OK, sum.InPktsOK) ||
2191 nla_put_u32(skb, MACSEC_SA_STATS_ATTR_IN_PKTS_INVALID, sum.InPktsInvalid) ||
2192 nla_put_u32(skb, MACSEC_SA_STATS_ATTR_IN_PKTS_NOT_VALID, sum.InPktsNotValid) ||
2193 nla_put_u32(skb, MACSEC_SA_STATS_ATTR_IN_PKTS_NOT_USING_SA, sum.InPktsNotUsingSA) ||
2194 nla_put_u32(skb, MACSEC_SA_STATS_ATTR_IN_PKTS_UNUSED_SA, sum.InPktsUnusedSA))
2195 return -EMSGSIZE;
2196
2197 return 0;
2198}
2199
2200static int copy_rx_sc_stats(struct sk_buff *skb,
2201 struct pcpu_rx_sc_stats __percpu *pstats)
2202{
2203 struct macsec_rx_sc_stats sum = {0, };
2204 int cpu;
2205
2206 for_each_possible_cpu(cpu) {
2207 const struct pcpu_rx_sc_stats *stats;
2208 struct macsec_rx_sc_stats tmp;
2209 unsigned int start;
2210
2211 stats = per_cpu_ptr(pstats, cpu);
2212 do {
2213 start = u64_stats_fetch_begin_irq(&stats->syncp);
2214 memcpy(&tmp, &stats->stats, sizeof(tmp));
2215 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
2216
2217 sum.InOctetsValidated += tmp.InOctetsValidated;
2218 sum.InOctetsDecrypted += tmp.InOctetsDecrypted;
2219 sum.InPktsUnchecked += tmp.InPktsUnchecked;
2220 sum.InPktsDelayed += tmp.InPktsDelayed;
2221 sum.InPktsOK += tmp.InPktsOK;
2222 sum.InPktsInvalid += tmp.InPktsInvalid;
2223 sum.InPktsLate += tmp.InPktsLate;
2224 sum.InPktsNotValid += tmp.InPktsNotValid;
2225 sum.InPktsNotUsingSA += tmp.InPktsNotUsingSA;
2226 sum.InPktsUnusedSA += tmp.InPktsUnusedSA;
2227 }
2228
Nicolas Dichtelf60d94c2016-04-26 10:06:11 +02002229 if (nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_OCTETS_VALIDATED,
2230 sum.InOctetsValidated,
2231 MACSEC_RXSC_STATS_ATTR_PAD) ||
2232 nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_OCTETS_DECRYPTED,
2233 sum.InOctetsDecrypted,
2234 MACSEC_RXSC_STATS_ATTR_PAD) ||
2235 nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_UNCHECKED,
2236 sum.InPktsUnchecked,
2237 MACSEC_RXSC_STATS_ATTR_PAD) ||
2238 nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_DELAYED,
2239 sum.InPktsDelayed,
2240 MACSEC_RXSC_STATS_ATTR_PAD) ||
2241 nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_OK,
2242 sum.InPktsOK,
2243 MACSEC_RXSC_STATS_ATTR_PAD) ||
2244 nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_INVALID,
2245 sum.InPktsInvalid,
2246 MACSEC_RXSC_STATS_ATTR_PAD) ||
2247 nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_LATE,
2248 sum.InPktsLate,
2249 MACSEC_RXSC_STATS_ATTR_PAD) ||
2250 nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_NOT_VALID,
2251 sum.InPktsNotValid,
2252 MACSEC_RXSC_STATS_ATTR_PAD) ||
2253 nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_NOT_USING_SA,
2254 sum.InPktsNotUsingSA,
2255 MACSEC_RXSC_STATS_ATTR_PAD) ||
2256 nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_UNUSED_SA,
2257 sum.InPktsUnusedSA,
2258 MACSEC_RXSC_STATS_ATTR_PAD))
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002259 return -EMSGSIZE;
2260
2261 return 0;
2262}
2263
2264static int copy_tx_sc_stats(struct sk_buff *skb,
2265 struct pcpu_tx_sc_stats __percpu *pstats)
2266{
2267 struct macsec_tx_sc_stats sum = {0, };
2268 int cpu;
2269
2270 for_each_possible_cpu(cpu) {
2271 const struct pcpu_tx_sc_stats *stats;
2272 struct macsec_tx_sc_stats tmp;
2273 unsigned int start;
2274
2275 stats = per_cpu_ptr(pstats, cpu);
2276 do {
2277 start = u64_stats_fetch_begin_irq(&stats->syncp);
2278 memcpy(&tmp, &stats->stats, sizeof(tmp));
2279 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
2280
2281 sum.OutPktsProtected += tmp.OutPktsProtected;
2282 sum.OutPktsEncrypted += tmp.OutPktsEncrypted;
2283 sum.OutOctetsProtected += tmp.OutOctetsProtected;
2284 sum.OutOctetsEncrypted += tmp.OutOctetsEncrypted;
2285 }
2286
Nicolas Dichtelf60d94c2016-04-26 10:06:11 +02002287 if (nla_put_u64_64bit(skb, MACSEC_TXSC_STATS_ATTR_OUT_PKTS_PROTECTED,
2288 sum.OutPktsProtected,
2289 MACSEC_TXSC_STATS_ATTR_PAD) ||
2290 nla_put_u64_64bit(skb, MACSEC_TXSC_STATS_ATTR_OUT_PKTS_ENCRYPTED,
2291 sum.OutPktsEncrypted,
2292 MACSEC_TXSC_STATS_ATTR_PAD) ||
2293 nla_put_u64_64bit(skb, MACSEC_TXSC_STATS_ATTR_OUT_OCTETS_PROTECTED,
2294 sum.OutOctetsProtected,
2295 MACSEC_TXSC_STATS_ATTR_PAD) ||
2296 nla_put_u64_64bit(skb, MACSEC_TXSC_STATS_ATTR_OUT_OCTETS_ENCRYPTED,
2297 sum.OutOctetsEncrypted,
2298 MACSEC_TXSC_STATS_ATTR_PAD))
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002299 return -EMSGSIZE;
2300
2301 return 0;
2302}
2303
2304static int copy_secy_stats(struct sk_buff *skb,
2305 struct pcpu_secy_stats __percpu *pstats)
2306{
2307 struct macsec_dev_stats sum = {0, };
2308 int cpu;
2309
2310 for_each_possible_cpu(cpu) {
2311 const struct pcpu_secy_stats *stats;
2312 struct macsec_dev_stats tmp;
2313 unsigned int start;
2314
2315 stats = per_cpu_ptr(pstats, cpu);
2316 do {
2317 start = u64_stats_fetch_begin_irq(&stats->syncp);
2318 memcpy(&tmp, &stats->stats, sizeof(tmp));
2319 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
2320
2321 sum.OutPktsUntagged += tmp.OutPktsUntagged;
2322 sum.InPktsUntagged += tmp.InPktsUntagged;
2323 sum.OutPktsTooLong += tmp.OutPktsTooLong;
2324 sum.InPktsNoTag += tmp.InPktsNoTag;
2325 sum.InPktsBadTag += tmp.InPktsBadTag;
2326 sum.InPktsUnknownSCI += tmp.InPktsUnknownSCI;
2327 sum.InPktsNoSCI += tmp.InPktsNoSCI;
2328 sum.InPktsOverrun += tmp.InPktsOverrun;
2329 }
2330
Nicolas Dichtelf60d94c2016-04-26 10:06:11 +02002331 if (nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_OUT_PKTS_UNTAGGED,
2332 sum.OutPktsUntagged,
2333 MACSEC_SECY_STATS_ATTR_PAD) ||
2334 nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_IN_PKTS_UNTAGGED,
2335 sum.InPktsUntagged,
2336 MACSEC_SECY_STATS_ATTR_PAD) ||
2337 nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_OUT_PKTS_TOO_LONG,
2338 sum.OutPktsTooLong,
2339 MACSEC_SECY_STATS_ATTR_PAD) ||
2340 nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_IN_PKTS_NO_TAG,
2341 sum.InPktsNoTag,
2342 MACSEC_SECY_STATS_ATTR_PAD) ||
2343 nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_IN_PKTS_BAD_TAG,
2344 sum.InPktsBadTag,
2345 MACSEC_SECY_STATS_ATTR_PAD) ||
2346 nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_IN_PKTS_UNKNOWN_SCI,
2347 sum.InPktsUnknownSCI,
2348 MACSEC_SECY_STATS_ATTR_PAD) ||
2349 nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_IN_PKTS_NO_SCI,
2350 sum.InPktsNoSCI,
2351 MACSEC_SECY_STATS_ATTR_PAD) ||
2352 nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_IN_PKTS_OVERRUN,
2353 sum.InPktsOverrun,
2354 MACSEC_SECY_STATS_ATTR_PAD))
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002355 return -EMSGSIZE;
2356
2357 return 0;
2358}
2359
2360static int nla_put_secy(struct macsec_secy *secy, struct sk_buff *skb)
2361{
2362 struct macsec_tx_sc *tx_sc = &secy->tx_sc;
2363 struct nlattr *secy_nest = nla_nest_start(skb, MACSEC_ATTR_SECY);
2364
2365 if (!secy_nest)
2366 return 1;
2367
Nicolas Dichtelf60d94c2016-04-26 10:06:11 +02002368 if (nla_put_sci(skb, MACSEC_SECY_ATTR_SCI, secy->sci,
2369 MACSEC_SECY_ATTR_PAD) ||
2370 nla_put_u64_64bit(skb, MACSEC_SECY_ATTR_CIPHER_SUITE,
David S. Millerc0cc5312016-04-27 15:43:10 -04002371 MACSEC_DEFAULT_CIPHER_ID,
Nicolas Dichtelf60d94c2016-04-26 10:06:11 +02002372 MACSEC_SECY_ATTR_PAD) ||
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002373 nla_put_u8(skb, MACSEC_SECY_ATTR_ICV_LEN, secy->icv_len) ||
2374 nla_put_u8(skb, MACSEC_SECY_ATTR_OPER, secy->operational) ||
2375 nla_put_u8(skb, MACSEC_SECY_ATTR_PROTECT, secy->protect_frames) ||
2376 nla_put_u8(skb, MACSEC_SECY_ATTR_REPLAY, secy->replay_protect) ||
2377 nla_put_u8(skb, MACSEC_SECY_ATTR_VALIDATE, secy->validate_frames) ||
2378 nla_put_u8(skb, MACSEC_SECY_ATTR_ENCRYPT, tx_sc->encrypt) ||
2379 nla_put_u8(skb, MACSEC_SECY_ATTR_INC_SCI, tx_sc->send_sci) ||
2380 nla_put_u8(skb, MACSEC_SECY_ATTR_ES, tx_sc->end_station) ||
2381 nla_put_u8(skb, MACSEC_SECY_ATTR_SCB, tx_sc->scb) ||
2382 nla_put_u8(skb, MACSEC_SECY_ATTR_ENCODING_SA, tx_sc->encoding_sa))
2383 goto cancel;
2384
2385 if (secy->replay_protect) {
2386 if (nla_put_u32(skb, MACSEC_SECY_ATTR_WINDOW, secy->replay_window))
2387 goto cancel;
2388 }
2389
2390 nla_nest_end(skb, secy_nest);
2391 return 0;
2392
2393cancel:
2394 nla_nest_cancel(skb, secy_nest);
2395 return 1;
2396}
2397
2398static int dump_secy(struct macsec_secy *secy, struct net_device *dev,
2399 struct sk_buff *skb, struct netlink_callback *cb)
2400{
2401 struct macsec_rx_sc *rx_sc;
2402 struct macsec_tx_sc *tx_sc = &secy->tx_sc;
2403 struct nlattr *txsa_list, *rxsc_list;
2404 int i, j;
2405 void *hdr;
2406 struct nlattr *attr;
2407
2408 hdr = genlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
2409 &macsec_fam, NLM_F_MULTI, MACSEC_CMD_GET_TXSC);
2410 if (!hdr)
2411 return -EMSGSIZE;
2412
Sabrina Dubroca96cfc502016-04-22 11:28:05 +02002413 genl_dump_check_consistent(cb, hdr, &macsec_fam);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002414
2415 if (nla_put_u32(skb, MACSEC_ATTR_IFINDEX, dev->ifindex))
2416 goto nla_put_failure;
2417
2418 if (nla_put_secy(secy, skb))
2419 goto nla_put_failure;
2420
2421 attr = nla_nest_start(skb, MACSEC_ATTR_TXSC_STATS);
2422 if (!attr)
2423 goto nla_put_failure;
2424 if (copy_tx_sc_stats(skb, tx_sc->stats)) {
2425 nla_nest_cancel(skb, attr);
2426 goto nla_put_failure;
2427 }
2428 nla_nest_end(skb, attr);
2429
2430 attr = nla_nest_start(skb, MACSEC_ATTR_SECY_STATS);
2431 if (!attr)
2432 goto nla_put_failure;
2433 if (copy_secy_stats(skb, macsec_priv(dev)->stats)) {
2434 nla_nest_cancel(skb, attr);
2435 goto nla_put_failure;
2436 }
2437 nla_nest_end(skb, attr);
2438
2439 txsa_list = nla_nest_start(skb, MACSEC_ATTR_TXSA_LIST);
2440 if (!txsa_list)
2441 goto nla_put_failure;
2442 for (i = 0, j = 1; i < MACSEC_NUM_AN; i++) {
2443 struct macsec_tx_sa *tx_sa = rtnl_dereference(tx_sc->sa[i]);
2444 struct nlattr *txsa_nest;
2445
2446 if (!tx_sa)
2447 continue;
2448
2449 txsa_nest = nla_nest_start(skb, j++);
2450 if (!txsa_nest) {
2451 nla_nest_cancel(skb, txsa_list);
2452 goto nla_put_failure;
2453 }
2454
2455 if (nla_put_u8(skb, MACSEC_SA_ATTR_AN, i) ||
2456 nla_put_u32(skb, MACSEC_SA_ATTR_PN, tx_sa->next_pn) ||
Sabrina Dubroca8acca6a2016-05-07 20:19:29 +02002457 nla_put(skb, MACSEC_SA_ATTR_KEYID, MACSEC_KEYID_LEN, tx_sa->key.id) ||
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002458 nla_put_u8(skb, MACSEC_SA_ATTR_ACTIVE, tx_sa->active)) {
2459 nla_nest_cancel(skb, txsa_nest);
2460 nla_nest_cancel(skb, txsa_list);
2461 goto nla_put_failure;
2462 }
2463
2464 attr = nla_nest_start(skb, MACSEC_SA_ATTR_STATS);
2465 if (!attr) {
2466 nla_nest_cancel(skb, txsa_nest);
2467 nla_nest_cancel(skb, txsa_list);
2468 goto nla_put_failure;
2469 }
2470 if (copy_tx_sa_stats(skb, tx_sa->stats)) {
2471 nla_nest_cancel(skb, attr);
2472 nla_nest_cancel(skb, txsa_nest);
2473 nla_nest_cancel(skb, txsa_list);
2474 goto nla_put_failure;
2475 }
2476 nla_nest_end(skb, attr);
2477
2478 nla_nest_end(skb, txsa_nest);
2479 }
2480 nla_nest_end(skb, txsa_list);
2481
2482 rxsc_list = nla_nest_start(skb, MACSEC_ATTR_RXSC_LIST);
2483 if (!rxsc_list)
2484 goto nla_put_failure;
2485
2486 j = 1;
2487 for_each_rxsc_rtnl(secy, rx_sc) {
2488 int k;
2489 struct nlattr *rxsa_list;
2490 struct nlattr *rxsc_nest = nla_nest_start(skb, j++);
2491
2492 if (!rxsc_nest) {
2493 nla_nest_cancel(skb, rxsc_list);
2494 goto nla_put_failure;
2495 }
2496
2497 if (nla_put_u8(skb, MACSEC_RXSC_ATTR_ACTIVE, rx_sc->active) ||
Nicolas Dichtelf60d94c2016-04-26 10:06:11 +02002498 nla_put_sci(skb, MACSEC_RXSC_ATTR_SCI, rx_sc->sci,
2499 MACSEC_RXSC_ATTR_PAD)) {
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002500 nla_nest_cancel(skb, rxsc_nest);
2501 nla_nest_cancel(skb, rxsc_list);
2502 goto nla_put_failure;
2503 }
2504
2505 attr = nla_nest_start(skb, MACSEC_RXSC_ATTR_STATS);
2506 if (!attr) {
2507 nla_nest_cancel(skb, rxsc_nest);
2508 nla_nest_cancel(skb, rxsc_list);
2509 goto nla_put_failure;
2510 }
2511 if (copy_rx_sc_stats(skb, rx_sc->stats)) {
2512 nla_nest_cancel(skb, attr);
2513 nla_nest_cancel(skb, rxsc_nest);
2514 nla_nest_cancel(skb, rxsc_list);
2515 goto nla_put_failure;
2516 }
2517 nla_nest_end(skb, attr);
2518
2519 rxsa_list = nla_nest_start(skb, MACSEC_RXSC_ATTR_SA_LIST);
2520 if (!rxsa_list) {
2521 nla_nest_cancel(skb, rxsc_nest);
2522 nla_nest_cancel(skb, rxsc_list);
2523 goto nla_put_failure;
2524 }
2525
2526 for (i = 0, k = 1; i < MACSEC_NUM_AN; i++) {
2527 struct macsec_rx_sa *rx_sa = rtnl_dereference(rx_sc->sa[i]);
2528 struct nlattr *rxsa_nest;
2529
2530 if (!rx_sa)
2531 continue;
2532
2533 rxsa_nest = nla_nest_start(skb, k++);
2534 if (!rxsa_nest) {
2535 nla_nest_cancel(skb, rxsa_list);
2536 nla_nest_cancel(skb, rxsc_nest);
2537 nla_nest_cancel(skb, rxsc_list);
2538 goto nla_put_failure;
2539 }
2540
2541 attr = nla_nest_start(skb, MACSEC_SA_ATTR_STATS);
2542 if (!attr) {
2543 nla_nest_cancel(skb, rxsa_list);
2544 nla_nest_cancel(skb, rxsc_nest);
2545 nla_nest_cancel(skb, rxsc_list);
2546 goto nla_put_failure;
2547 }
2548 if (copy_rx_sa_stats(skb, rx_sa->stats)) {
2549 nla_nest_cancel(skb, attr);
2550 nla_nest_cancel(skb, rxsa_list);
2551 nla_nest_cancel(skb, rxsc_nest);
2552 nla_nest_cancel(skb, rxsc_list);
2553 goto nla_put_failure;
2554 }
2555 nla_nest_end(skb, attr);
2556
2557 if (nla_put_u8(skb, MACSEC_SA_ATTR_AN, i) ||
2558 nla_put_u32(skb, MACSEC_SA_ATTR_PN, rx_sa->next_pn) ||
Sabrina Dubroca8acca6a2016-05-07 20:19:29 +02002559 nla_put(skb, MACSEC_SA_ATTR_KEYID, MACSEC_KEYID_LEN, rx_sa->key.id) ||
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002560 nla_put_u8(skb, MACSEC_SA_ATTR_ACTIVE, rx_sa->active)) {
2561 nla_nest_cancel(skb, rxsa_nest);
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, rxsa_nest);
2567 }
2568
2569 nla_nest_end(skb, rxsa_list);
2570 nla_nest_end(skb, rxsc_nest);
2571 }
2572
2573 nla_nest_end(skb, rxsc_list);
2574
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002575 genlmsg_end(skb, hdr);
2576
2577 return 0;
2578
2579nla_put_failure:
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002580 genlmsg_cancel(skb, hdr);
2581 return -EMSGSIZE;
2582}
2583
Sabrina Dubroca96cfc502016-04-22 11:28:05 +02002584static int macsec_generation = 1; /* protected by RTNL */
2585
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002586static int macsec_dump_txsc(struct sk_buff *skb, struct netlink_callback *cb)
2587{
2588 struct net *net = sock_net(skb->sk);
2589 struct net_device *dev;
2590 int dev_idx, d;
2591
2592 dev_idx = cb->args[0];
2593
2594 d = 0;
Sabrina Dubrocac10c63e2016-04-22 11:28:02 +02002595 rtnl_lock();
Sabrina Dubroca96cfc502016-04-22 11:28:05 +02002596
2597 cb->seq = macsec_generation;
2598
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002599 for_each_netdev(net, dev) {
2600 struct macsec_secy *secy;
2601
2602 if (d < dev_idx)
2603 goto next;
2604
2605 if (!netif_is_macsec(dev))
2606 goto next;
2607
2608 secy = &macsec_priv(dev)->secy;
2609 if (dump_secy(secy, dev, skb, cb) < 0)
2610 goto done;
2611next:
2612 d++;
2613 }
2614
2615done:
Sabrina Dubrocac10c63e2016-04-22 11:28:02 +02002616 rtnl_unlock();
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002617 cb->args[0] = d;
2618 return skb->len;
2619}
2620
2621static const struct genl_ops macsec_genl_ops[] = {
2622 {
2623 .cmd = MACSEC_CMD_GET_TXSC,
2624 .dumpit = macsec_dump_txsc,
2625 .policy = macsec_genl_policy,
2626 },
2627 {
2628 .cmd = MACSEC_CMD_ADD_RXSC,
2629 .doit = macsec_add_rxsc,
2630 .policy = macsec_genl_policy,
2631 .flags = GENL_ADMIN_PERM,
2632 },
2633 {
2634 .cmd = MACSEC_CMD_DEL_RXSC,
2635 .doit = macsec_del_rxsc,
2636 .policy = macsec_genl_policy,
2637 .flags = GENL_ADMIN_PERM,
2638 },
2639 {
2640 .cmd = MACSEC_CMD_UPD_RXSC,
2641 .doit = macsec_upd_rxsc,
2642 .policy = macsec_genl_policy,
2643 .flags = GENL_ADMIN_PERM,
2644 },
2645 {
2646 .cmd = MACSEC_CMD_ADD_TXSA,
2647 .doit = macsec_add_txsa,
2648 .policy = macsec_genl_policy,
2649 .flags = GENL_ADMIN_PERM,
2650 },
2651 {
2652 .cmd = MACSEC_CMD_DEL_TXSA,
2653 .doit = macsec_del_txsa,
2654 .policy = macsec_genl_policy,
2655 .flags = GENL_ADMIN_PERM,
2656 },
2657 {
2658 .cmd = MACSEC_CMD_UPD_TXSA,
2659 .doit = macsec_upd_txsa,
2660 .policy = macsec_genl_policy,
2661 .flags = GENL_ADMIN_PERM,
2662 },
2663 {
2664 .cmd = MACSEC_CMD_ADD_RXSA,
2665 .doit = macsec_add_rxsa,
2666 .policy = macsec_genl_policy,
2667 .flags = GENL_ADMIN_PERM,
2668 },
2669 {
2670 .cmd = MACSEC_CMD_DEL_RXSA,
2671 .doit = macsec_del_rxsa,
2672 .policy = macsec_genl_policy,
2673 .flags = GENL_ADMIN_PERM,
2674 },
2675 {
2676 .cmd = MACSEC_CMD_UPD_RXSA,
2677 .doit = macsec_upd_rxsa,
2678 .policy = macsec_genl_policy,
2679 .flags = GENL_ADMIN_PERM,
2680 },
2681};
2682
2683static netdev_tx_t macsec_start_xmit(struct sk_buff *skb,
2684 struct net_device *dev)
2685{
2686 struct macsec_dev *macsec = netdev_priv(dev);
2687 struct macsec_secy *secy = &macsec->secy;
2688 struct pcpu_secy_stats *secy_stats;
2689 int ret, len;
2690
2691 /* 10.5 */
2692 if (!secy->protect_frames) {
2693 secy_stats = this_cpu_ptr(macsec->stats);
2694 u64_stats_update_begin(&secy_stats->syncp);
2695 secy_stats->stats.OutPktsUntagged++;
2696 u64_stats_update_end(&secy_stats->syncp);
Daniel Borkmann79c62222016-07-01 00:00:54 +02002697 skb->dev = macsec->real_dev;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002698 len = skb->len;
2699 ret = dev_queue_xmit(skb);
2700 count_tx(dev, ret, len);
2701 return ret;
2702 }
2703
2704 if (!secy->operational) {
2705 kfree_skb(skb);
2706 dev->stats.tx_dropped++;
2707 return NETDEV_TX_OK;
2708 }
2709
2710 skb = macsec_encrypt(skb, dev);
2711 if (IS_ERR(skb)) {
2712 if (PTR_ERR(skb) != -EINPROGRESS)
2713 dev->stats.tx_dropped++;
2714 return NETDEV_TX_OK;
2715 }
2716
2717 macsec_count_tx(skb, &macsec->secy.tx_sc, macsec_skb_cb(skb)->tx_sa);
2718
2719 macsec_encrypt_finish(skb, dev);
2720 len = skb->len;
2721 ret = dev_queue_xmit(skb);
2722 count_tx(dev, ret, len);
2723 return ret;
2724}
2725
2726#define MACSEC_FEATURES \
Jason A. Donenfeld3b0129d2017-04-25 19:08:18 +02002727 (NETIF_F_SG | NETIF_F_HIGHDMA | NETIF_F_FRAGLIST)
Sabrina Dubrocae2003872016-08-12 16:10:32 +02002728static struct lock_class_key macsec_netdev_addr_lock_key;
2729
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002730static int macsec_dev_init(struct net_device *dev)
2731{
2732 struct macsec_dev *macsec = macsec_priv(dev);
2733 struct net_device *real_dev = macsec->real_dev;
Paolo Abeni5491e7c2016-07-20 18:11:32 +02002734 int err;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002735
2736 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
2737 if (!dev->tstats)
2738 return -ENOMEM;
2739
Paolo Abeni5491e7c2016-07-20 18:11:32 +02002740 err = gro_cells_init(&macsec->gro_cells, dev);
2741 if (err) {
2742 free_percpu(dev->tstats);
2743 return err;
2744 }
2745
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002746 dev->features = real_dev->features & MACSEC_FEATURES;
2747 dev->features |= NETIF_F_LLTX | NETIF_F_GSO_SOFTWARE;
2748
2749 dev->needed_headroom = real_dev->needed_headroom +
2750 MACSEC_NEEDED_HEADROOM;
2751 dev->needed_tailroom = real_dev->needed_tailroom +
2752 MACSEC_NEEDED_TAILROOM;
2753
2754 if (is_zero_ether_addr(dev->dev_addr))
2755 eth_hw_addr_inherit(dev, real_dev);
2756 if (is_zero_ether_addr(dev->broadcast))
2757 memcpy(dev->broadcast, real_dev->broadcast, dev->addr_len);
2758
2759 return 0;
2760}
2761
2762static void macsec_dev_uninit(struct net_device *dev)
2763{
Paolo Abeni5491e7c2016-07-20 18:11:32 +02002764 struct macsec_dev *macsec = macsec_priv(dev);
2765
2766 gro_cells_destroy(&macsec->gro_cells);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002767 free_percpu(dev->tstats);
2768}
2769
2770static netdev_features_t macsec_fix_features(struct net_device *dev,
2771 netdev_features_t features)
2772{
2773 struct macsec_dev *macsec = macsec_priv(dev);
2774 struct net_device *real_dev = macsec->real_dev;
2775
Paolo Abeni5491e7c2016-07-20 18:11:32 +02002776 features &= (real_dev->features & MACSEC_FEATURES) |
2777 NETIF_F_GSO_SOFTWARE | NETIF_F_SOFT_FEATURES;
2778 features |= NETIF_F_LLTX;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002779
2780 return features;
2781}
2782
2783static int macsec_dev_open(struct net_device *dev)
2784{
2785 struct macsec_dev *macsec = macsec_priv(dev);
2786 struct net_device *real_dev = macsec->real_dev;
2787 int err;
2788
2789 if (!(real_dev->flags & IFF_UP))
2790 return -ENETDOWN;
2791
2792 err = dev_uc_add(real_dev, dev->dev_addr);
2793 if (err < 0)
2794 return err;
2795
2796 if (dev->flags & IFF_ALLMULTI) {
2797 err = dev_set_allmulti(real_dev, 1);
2798 if (err < 0)
2799 goto del_unicast;
2800 }
2801
2802 if (dev->flags & IFF_PROMISC) {
2803 err = dev_set_promiscuity(real_dev, 1);
2804 if (err < 0)
2805 goto clear_allmulti;
2806 }
2807
2808 if (netif_carrier_ok(real_dev))
2809 netif_carrier_on(dev);
2810
2811 return 0;
2812clear_allmulti:
2813 if (dev->flags & IFF_ALLMULTI)
2814 dev_set_allmulti(real_dev, -1);
2815del_unicast:
2816 dev_uc_del(real_dev, dev->dev_addr);
2817 netif_carrier_off(dev);
2818 return err;
2819}
2820
2821static int macsec_dev_stop(struct net_device *dev)
2822{
2823 struct macsec_dev *macsec = macsec_priv(dev);
2824 struct net_device *real_dev = macsec->real_dev;
2825
2826 netif_carrier_off(dev);
2827
2828 dev_mc_unsync(real_dev, dev);
2829 dev_uc_unsync(real_dev, dev);
2830
2831 if (dev->flags & IFF_ALLMULTI)
2832 dev_set_allmulti(real_dev, -1);
2833
2834 if (dev->flags & IFF_PROMISC)
2835 dev_set_promiscuity(real_dev, -1);
2836
2837 dev_uc_del(real_dev, dev->dev_addr);
2838
2839 return 0;
2840}
2841
2842static void macsec_dev_change_rx_flags(struct net_device *dev, int change)
2843{
2844 struct net_device *real_dev = macsec_priv(dev)->real_dev;
2845
2846 if (!(dev->flags & IFF_UP))
2847 return;
2848
2849 if (change & IFF_ALLMULTI)
2850 dev_set_allmulti(real_dev, dev->flags & IFF_ALLMULTI ? 1 : -1);
2851
2852 if (change & IFF_PROMISC)
2853 dev_set_promiscuity(real_dev,
2854 dev->flags & IFF_PROMISC ? 1 : -1);
2855}
2856
2857static void macsec_dev_set_rx_mode(struct net_device *dev)
2858{
2859 struct net_device *real_dev = macsec_priv(dev)->real_dev;
2860
2861 dev_mc_sync(real_dev, dev);
2862 dev_uc_sync(real_dev, dev);
2863}
2864
2865static int macsec_set_mac_address(struct net_device *dev, void *p)
2866{
2867 struct macsec_dev *macsec = macsec_priv(dev);
2868 struct net_device *real_dev = macsec->real_dev;
2869 struct sockaddr *addr = p;
2870 int err;
2871
2872 if (!is_valid_ether_addr(addr->sa_data))
2873 return -EADDRNOTAVAIL;
2874
2875 if (!(dev->flags & IFF_UP))
2876 goto out;
2877
2878 err = dev_uc_add(real_dev, addr->sa_data);
2879 if (err < 0)
2880 return err;
2881
2882 dev_uc_del(real_dev, dev->dev_addr);
2883
2884out:
2885 ether_addr_copy(dev->dev_addr, addr->sa_data);
2886 return 0;
2887}
2888
2889static int macsec_change_mtu(struct net_device *dev, int new_mtu)
2890{
2891 struct macsec_dev *macsec = macsec_priv(dev);
2892 unsigned int extra = macsec->secy.icv_len + macsec_extra_len(true);
2893
2894 if (macsec->real_dev->mtu - extra < new_mtu)
2895 return -ERANGE;
2896
2897 dev->mtu = new_mtu;
2898
2899 return 0;
2900}
2901
2902static struct rtnl_link_stats64 *macsec_get_stats64(struct net_device *dev,
2903 struct rtnl_link_stats64 *s)
2904{
2905 int cpu;
2906
2907 if (!dev->tstats)
2908 return s;
2909
2910 for_each_possible_cpu(cpu) {
2911 struct pcpu_sw_netstats *stats;
2912 struct pcpu_sw_netstats tmp;
2913 int start;
2914
2915 stats = per_cpu_ptr(dev->tstats, cpu);
2916 do {
2917 start = u64_stats_fetch_begin_irq(&stats->syncp);
2918 tmp.rx_packets = stats->rx_packets;
2919 tmp.rx_bytes = stats->rx_bytes;
2920 tmp.tx_packets = stats->tx_packets;
2921 tmp.tx_bytes = stats->tx_bytes;
2922 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
2923
2924 s->rx_packets += tmp.rx_packets;
2925 s->rx_bytes += tmp.rx_bytes;
2926 s->tx_packets += tmp.tx_packets;
2927 s->tx_bytes += tmp.tx_bytes;
2928 }
2929
2930 s->rx_dropped = dev->stats.rx_dropped;
2931 s->tx_dropped = dev->stats.tx_dropped;
2932
2933 return s;
2934}
2935
2936static int macsec_get_iflink(const struct net_device *dev)
2937{
2938 return macsec_priv(dev)->real_dev->ifindex;
2939}
2940
Sabrina Dubrocae2003872016-08-12 16:10:32 +02002941
2942static int macsec_get_nest_level(struct net_device *dev)
2943{
2944 return macsec_priv(dev)->nest_level;
2945}
2946
2947
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002948static const struct net_device_ops macsec_netdev_ops = {
2949 .ndo_init = macsec_dev_init,
2950 .ndo_uninit = macsec_dev_uninit,
2951 .ndo_open = macsec_dev_open,
2952 .ndo_stop = macsec_dev_stop,
2953 .ndo_fix_features = macsec_fix_features,
2954 .ndo_change_mtu = macsec_change_mtu,
2955 .ndo_set_rx_mode = macsec_dev_set_rx_mode,
2956 .ndo_change_rx_flags = macsec_dev_change_rx_flags,
2957 .ndo_set_mac_address = macsec_set_mac_address,
2958 .ndo_start_xmit = macsec_start_xmit,
2959 .ndo_get_stats64 = macsec_get_stats64,
2960 .ndo_get_iflink = macsec_get_iflink,
Sabrina Dubrocae2003872016-08-12 16:10:32 +02002961 .ndo_get_lock_subclass = macsec_get_nest_level,
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002962};
2963
2964static const struct device_type macsec_type = {
2965 .name = "macsec",
2966};
2967
2968static const struct nla_policy macsec_rtnl_policy[IFLA_MACSEC_MAX + 1] = {
2969 [IFLA_MACSEC_SCI] = { .type = NLA_U64 },
2970 [IFLA_MACSEC_ICV_LEN] = { .type = NLA_U8 },
2971 [IFLA_MACSEC_CIPHER_SUITE] = { .type = NLA_U64 },
2972 [IFLA_MACSEC_WINDOW] = { .type = NLA_U32 },
2973 [IFLA_MACSEC_ENCODING_SA] = { .type = NLA_U8 },
2974 [IFLA_MACSEC_ENCRYPT] = { .type = NLA_U8 },
2975 [IFLA_MACSEC_PROTECT] = { .type = NLA_U8 },
2976 [IFLA_MACSEC_INC_SCI] = { .type = NLA_U8 },
2977 [IFLA_MACSEC_ES] = { .type = NLA_U8 },
2978 [IFLA_MACSEC_SCB] = { .type = NLA_U8 },
2979 [IFLA_MACSEC_REPLAY_PROTECT] = { .type = NLA_U8 },
2980 [IFLA_MACSEC_VALIDATION] = { .type = NLA_U8 },
2981};
2982
2983static void macsec_free_netdev(struct net_device *dev)
2984{
2985 struct macsec_dev *macsec = macsec_priv(dev);
2986 struct net_device *real_dev = macsec->real_dev;
2987
2988 free_percpu(macsec->stats);
2989 free_percpu(macsec->secy.tx_sc.stats);
2990
2991 dev_put(real_dev);
2992 free_netdev(dev);
2993}
2994
2995static void macsec_setup(struct net_device *dev)
2996{
2997 ether_setup(dev);
Phil Suttere4259742016-04-22 14:02:42 +02002998 dev->priv_flags |= IFF_NO_QUEUE;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01002999 dev->netdev_ops = &macsec_netdev_ops;
3000 dev->destructor = macsec_free_netdev;
stephen hemmingerc24acf02016-09-07 14:07:32 -07003001 SET_NETDEV_DEVTYPE(dev, &macsec_type);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003002
3003 eth_zero_addr(dev->broadcast);
3004}
3005
3006static void macsec_changelink_common(struct net_device *dev,
3007 struct nlattr *data[])
3008{
3009 struct macsec_secy *secy;
3010 struct macsec_tx_sc *tx_sc;
3011
3012 secy = &macsec_priv(dev)->secy;
3013 tx_sc = &secy->tx_sc;
3014
3015 if (data[IFLA_MACSEC_ENCODING_SA]) {
3016 struct macsec_tx_sa *tx_sa;
3017
3018 tx_sc->encoding_sa = nla_get_u8(data[IFLA_MACSEC_ENCODING_SA]);
3019 tx_sa = rtnl_dereference(tx_sc->sa[tx_sc->encoding_sa]);
3020
3021 secy->operational = tx_sa && tx_sa->active;
3022 }
3023
3024 if (data[IFLA_MACSEC_WINDOW])
3025 secy->replay_window = nla_get_u32(data[IFLA_MACSEC_WINDOW]);
3026
3027 if (data[IFLA_MACSEC_ENCRYPT])
3028 tx_sc->encrypt = !!nla_get_u8(data[IFLA_MACSEC_ENCRYPT]);
3029
3030 if (data[IFLA_MACSEC_PROTECT])
3031 secy->protect_frames = !!nla_get_u8(data[IFLA_MACSEC_PROTECT]);
3032
3033 if (data[IFLA_MACSEC_INC_SCI])
3034 tx_sc->send_sci = !!nla_get_u8(data[IFLA_MACSEC_INC_SCI]);
3035
3036 if (data[IFLA_MACSEC_ES])
3037 tx_sc->end_station = !!nla_get_u8(data[IFLA_MACSEC_ES]);
3038
3039 if (data[IFLA_MACSEC_SCB])
3040 tx_sc->scb = !!nla_get_u8(data[IFLA_MACSEC_SCB]);
3041
3042 if (data[IFLA_MACSEC_REPLAY_PROTECT])
3043 secy->replay_protect = !!nla_get_u8(data[IFLA_MACSEC_REPLAY_PROTECT]);
3044
3045 if (data[IFLA_MACSEC_VALIDATION])
3046 secy->validate_frames = nla_get_u8(data[IFLA_MACSEC_VALIDATION]);
3047}
3048
3049static int macsec_changelink(struct net_device *dev, struct nlattr *tb[],
3050 struct nlattr *data[])
3051{
3052 if (!data)
3053 return 0;
3054
3055 if (data[IFLA_MACSEC_CIPHER_SUITE] ||
3056 data[IFLA_MACSEC_ICV_LEN] ||
3057 data[IFLA_MACSEC_SCI] ||
3058 data[IFLA_MACSEC_PORT])
3059 return -EINVAL;
3060
3061 macsec_changelink_common(dev, data);
3062
3063 return 0;
3064}
3065
3066static void macsec_del_dev(struct macsec_dev *macsec)
3067{
3068 int i;
3069
3070 while (macsec->secy.rx_sc) {
3071 struct macsec_rx_sc *rx_sc = rtnl_dereference(macsec->secy.rx_sc);
3072
3073 rcu_assign_pointer(macsec->secy.rx_sc, rx_sc->next);
3074 free_rx_sc(rx_sc);
3075 }
3076
3077 for (i = 0; i < MACSEC_NUM_AN; i++) {
3078 struct macsec_tx_sa *sa = rtnl_dereference(macsec->secy.tx_sc.sa[i]);
3079
3080 if (sa) {
3081 RCU_INIT_POINTER(macsec->secy.tx_sc.sa[i], NULL);
3082 clear_tx_sa(sa);
3083 }
3084 }
3085}
3086
Sabrina Dubrocabbe11fa2016-08-11 15:24:27 +02003087static void macsec_common_dellink(struct net_device *dev, struct list_head *head)
3088{
3089 struct macsec_dev *macsec = macsec_priv(dev);
Sabrina Dubrocae2003872016-08-12 16:10:32 +02003090 struct net_device *real_dev = macsec->real_dev;
Sabrina Dubrocabbe11fa2016-08-11 15:24:27 +02003091
3092 unregister_netdevice_queue(dev, head);
3093 list_del_rcu(&macsec->secys);
3094 macsec_del_dev(macsec);
Sabrina Dubrocae2003872016-08-12 16:10:32 +02003095 netdev_upper_dev_unlink(real_dev, dev);
Sabrina Dubrocabbe11fa2016-08-11 15:24:27 +02003096
3097 macsec_generation++;
3098}
3099
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003100static void macsec_dellink(struct net_device *dev, struct list_head *head)
3101{
3102 struct macsec_dev *macsec = macsec_priv(dev);
3103 struct net_device *real_dev = macsec->real_dev;
3104 struct macsec_rxh_data *rxd = macsec_data_rtnl(real_dev);
3105
Sabrina Dubrocabbe11fa2016-08-11 15:24:27 +02003106 macsec_common_dellink(dev, head);
Sabrina Dubroca96cfc502016-04-22 11:28:05 +02003107
Sabrina Dubroca960d5842016-04-22 11:28:06 +02003108 if (list_empty(&rxd->secys)) {
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003109 netdev_rx_handler_unregister(real_dev);
Sabrina Dubroca960d5842016-04-22 11:28:06 +02003110 kfree(rxd);
3111 }
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003112}
3113
3114static int register_macsec_dev(struct net_device *real_dev,
3115 struct net_device *dev)
3116{
3117 struct macsec_dev *macsec = macsec_priv(dev);
3118 struct macsec_rxh_data *rxd = macsec_data_rtnl(real_dev);
3119
3120 if (!rxd) {
3121 int err;
3122
3123 rxd = kmalloc(sizeof(*rxd), GFP_KERNEL);
3124 if (!rxd)
3125 return -ENOMEM;
3126
3127 INIT_LIST_HEAD(&rxd->secys);
3128
3129 err = netdev_rx_handler_register(real_dev, macsec_handle_frame,
3130 rxd);
Sabrina Dubroca960d5842016-04-22 11:28:06 +02003131 if (err < 0) {
3132 kfree(rxd);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003133 return err;
Sabrina Dubroca960d5842016-04-22 11:28:06 +02003134 }
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003135 }
3136
3137 list_add_tail_rcu(&macsec->secys, &rxd->secys);
3138 return 0;
3139}
3140
3141static bool sci_exists(struct net_device *dev, sci_t sci)
3142{
3143 struct macsec_rxh_data *rxd = macsec_data_rtnl(dev);
3144 struct macsec_dev *macsec;
3145
3146 list_for_each_entry(macsec, &rxd->secys, secys) {
3147 if (macsec->secy.sci == sci)
3148 return true;
3149 }
3150
3151 return false;
3152}
3153
3154static sci_t dev_to_sci(struct net_device *dev, __be16 port)
3155{
3156 return make_sci(dev->dev_addr, port);
3157}
3158
3159static int macsec_add_dev(struct net_device *dev, sci_t sci, u8 icv_len)
3160{
3161 struct macsec_dev *macsec = macsec_priv(dev);
3162 struct macsec_secy *secy = &macsec->secy;
3163
3164 macsec->stats = netdev_alloc_pcpu_stats(struct pcpu_secy_stats);
3165 if (!macsec->stats)
3166 return -ENOMEM;
3167
3168 secy->tx_sc.stats = netdev_alloc_pcpu_stats(struct pcpu_tx_sc_stats);
3169 if (!secy->tx_sc.stats) {
3170 free_percpu(macsec->stats);
3171 return -ENOMEM;
3172 }
3173
3174 if (sci == MACSEC_UNDEF_SCI)
3175 sci = dev_to_sci(dev, MACSEC_PORT_ES);
3176
3177 secy->netdev = dev;
3178 secy->operational = true;
3179 secy->key_len = DEFAULT_SAK_LEN;
3180 secy->icv_len = icv_len;
3181 secy->validate_frames = MACSEC_VALIDATE_DEFAULT;
3182 secy->protect_frames = true;
3183 secy->replay_protect = false;
3184
3185 secy->sci = sci;
3186 secy->tx_sc.active = true;
3187 secy->tx_sc.encoding_sa = DEFAULT_ENCODING_SA;
3188 secy->tx_sc.encrypt = DEFAULT_ENCRYPT;
3189 secy->tx_sc.send_sci = DEFAULT_SEND_SCI;
3190 secy->tx_sc.end_station = false;
3191 secy->tx_sc.scb = false;
3192
3193 return 0;
3194}
3195
3196static int macsec_newlink(struct net *net, struct net_device *dev,
3197 struct nlattr *tb[], struct nlattr *data[])
3198{
3199 struct macsec_dev *macsec = macsec_priv(dev);
3200 struct net_device *real_dev;
3201 int err;
3202 sci_t sci;
3203 u8 icv_len = DEFAULT_ICV_LEN;
3204 rx_handler_func_t *rx_handler;
3205
3206 if (!tb[IFLA_LINK])
3207 return -EINVAL;
3208 real_dev = __dev_get_by_index(net, nla_get_u32(tb[IFLA_LINK]));
3209 if (!real_dev)
3210 return -ENODEV;
3211
3212 dev->priv_flags |= IFF_MACSEC;
3213
3214 macsec->real_dev = real_dev;
3215
3216 if (data && data[IFLA_MACSEC_ICV_LEN])
3217 icv_len = nla_get_u8(data[IFLA_MACSEC_ICV_LEN]);
3218 dev->mtu = real_dev->mtu - icv_len - macsec_extra_len(true);
3219
3220 rx_handler = rtnl_dereference(real_dev->rx_handler);
3221 if (rx_handler && rx_handler != macsec_handle_frame)
3222 return -EBUSY;
3223
3224 err = register_netdevice(dev);
3225 if (err < 0)
3226 return err;
3227
Sabrina Dubroca0759e552016-07-29 15:37:55 +02003228 dev_hold(real_dev);
3229
Sabrina Dubroca952fcfd2016-08-12 16:10:33 +02003230 macsec->nest_level = dev_get_nest_level(real_dev) + 1;
Sabrina Dubrocae2003872016-08-12 16:10:32 +02003231 netdev_lockdep_set_classes(dev);
3232 lockdep_set_class_and_subclass(&dev->addr_list_lock,
3233 &macsec_netdev_addr_lock_key,
3234 macsec_get_nest_level(dev));
3235
3236 err = netdev_upper_dev_link(real_dev, dev);
3237 if (err < 0)
3238 goto unregister;
3239
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003240 /* need to be already registered so that ->init has run and
3241 * the MAC addr is set
3242 */
3243 if (data && data[IFLA_MACSEC_SCI])
3244 sci = nla_get_sci(data[IFLA_MACSEC_SCI]);
3245 else if (data && data[IFLA_MACSEC_PORT])
3246 sci = dev_to_sci(dev, nla_get_be16(data[IFLA_MACSEC_PORT]));
3247 else
3248 sci = dev_to_sci(dev, MACSEC_PORT_ES);
3249
3250 if (rx_handler && sci_exists(real_dev, sci)) {
3251 err = -EBUSY;
Sabrina Dubrocae2003872016-08-12 16:10:32 +02003252 goto unlink;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003253 }
3254
3255 err = macsec_add_dev(dev, sci, icv_len);
3256 if (err)
Sabrina Dubrocae2003872016-08-12 16:10:32 +02003257 goto unlink;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003258
3259 if (data)
3260 macsec_changelink_common(dev, data);
3261
3262 err = register_macsec_dev(real_dev, dev);
3263 if (err < 0)
3264 goto del_dev;
3265
Sabrina Dubroca96cfc502016-04-22 11:28:05 +02003266 macsec_generation++;
3267
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003268 return 0;
3269
3270del_dev:
3271 macsec_del_dev(macsec);
Sabrina Dubrocae2003872016-08-12 16:10:32 +02003272unlink:
3273 netdev_upper_dev_unlink(real_dev, dev);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003274unregister:
3275 unregister_netdevice(dev);
3276 return err;
3277}
3278
3279static int macsec_validate_attr(struct nlattr *tb[], struct nlattr *data[])
3280{
Sabrina Dubroca74816482016-04-22 11:28:08 +02003281 u64 csid = MACSEC_DEFAULT_CIPHER_ID;
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003282 u8 icv_len = DEFAULT_ICV_LEN;
3283 int flag;
3284 bool es, scb, sci;
3285
3286 if (!data)
3287 return 0;
3288
3289 if (data[IFLA_MACSEC_CIPHER_SUITE])
3290 csid = nla_get_u64(data[IFLA_MACSEC_CIPHER_SUITE]);
3291
Davide Carattif04c3922016-07-22 15:07:58 +02003292 if (data[IFLA_MACSEC_ICV_LEN]) {
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003293 icv_len = nla_get_u8(data[IFLA_MACSEC_ICV_LEN]);
Davide Carattif04c3922016-07-22 15:07:58 +02003294 if (icv_len != DEFAULT_ICV_LEN) {
3295 char dummy_key[DEFAULT_SAK_LEN] = { 0 };
3296 struct crypto_aead *dummy_tfm;
3297
3298 dummy_tfm = macsec_alloc_tfm(dummy_key,
3299 DEFAULT_SAK_LEN,
3300 icv_len);
3301 if (IS_ERR(dummy_tfm))
3302 return PTR_ERR(dummy_tfm);
3303 crypto_free_aead(dummy_tfm);
3304 }
3305 }
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003306
3307 switch (csid) {
Sabrina Dubroca74816482016-04-22 11:28:08 +02003308 case MACSEC_DEFAULT_CIPHER_ID:
3309 case MACSEC_DEFAULT_CIPHER_ALT:
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003310 if (icv_len < MACSEC_MIN_ICV_LEN ||
Davide Caratti2ccbe2c2016-07-22 15:07:56 +02003311 icv_len > MACSEC_STD_ICV_LEN)
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003312 return -EINVAL;
3313 break;
3314 default:
3315 return -EINVAL;
3316 }
3317
3318 if (data[IFLA_MACSEC_ENCODING_SA]) {
3319 if (nla_get_u8(data[IFLA_MACSEC_ENCODING_SA]) >= MACSEC_NUM_AN)
3320 return -EINVAL;
3321 }
3322
3323 for (flag = IFLA_MACSEC_ENCODING_SA + 1;
3324 flag < IFLA_MACSEC_VALIDATION;
3325 flag++) {
3326 if (data[flag]) {
3327 if (nla_get_u8(data[flag]) > 1)
3328 return -EINVAL;
3329 }
3330 }
3331
3332 es = data[IFLA_MACSEC_ES] ? nla_get_u8(data[IFLA_MACSEC_ES]) : false;
3333 sci = data[IFLA_MACSEC_INC_SCI] ? nla_get_u8(data[IFLA_MACSEC_INC_SCI]) : false;
3334 scb = data[IFLA_MACSEC_SCB] ? nla_get_u8(data[IFLA_MACSEC_SCB]) : false;
3335
3336 if ((sci && (scb || es)) || (scb && es))
3337 return -EINVAL;
3338
3339 if (data[IFLA_MACSEC_VALIDATION] &&
3340 nla_get_u8(data[IFLA_MACSEC_VALIDATION]) > MACSEC_VALIDATE_MAX)
3341 return -EINVAL;
3342
Sabrina Dubroca4b1fb932016-04-22 11:28:09 +02003343 if ((data[IFLA_MACSEC_REPLAY_PROTECT] &&
3344 nla_get_u8(data[IFLA_MACSEC_REPLAY_PROTECT])) &&
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003345 !data[IFLA_MACSEC_WINDOW])
3346 return -EINVAL;
3347
3348 return 0;
3349}
3350
3351static struct net *macsec_get_link_net(const struct net_device *dev)
3352{
3353 return dev_net(macsec_priv(dev)->real_dev);
3354}
3355
3356static size_t macsec_get_size(const struct net_device *dev)
3357{
3358 return 0 +
Nicolas Dichtelf60d94c2016-04-26 10:06:11 +02003359 nla_total_size_64bit(8) + /* SCI */
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003360 nla_total_size(1) + /* ICV_LEN */
Nicolas Dichtelf60d94c2016-04-26 10:06:11 +02003361 nla_total_size_64bit(8) + /* CIPHER_SUITE */
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003362 nla_total_size(4) + /* WINDOW */
3363 nla_total_size(1) + /* ENCODING_SA */
3364 nla_total_size(1) + /* ENCRYPT */
3365 nla_total_size(1) + /* PROTECT */
3366 nla_total_size(1) + /* INC_SCI */
3367 nla_total_size(1) + /* ES */
3368 nla_total_size(1) + /* SCB */
3369 nla_total_size(1) + /* REPLAY_PROTECT */
3370 nla_total_size(1) + /* VALIDATION */
3371 0;
3372}
3373
3374static int macsec_fill_info(struct sk_buff *skb,
3375 const struct net_device *dev)
3376{
3377 struct macsec_secy *secy = &macsec_priv(dev)->secy;
3378 struct macsec_tx_sc *tx_sc = &secy->tx_sc;
3379
Nicolas Dichtelf60d94c2016-04-26 10:06:11 +02003380 if (nla_put_sci(skb, IFLA_MACSEC_SCI, secy->sci,
3381 IFLA_MACSEC_PAD) ||
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003382 nla_put_u8(skb, IFLA_MACSEC_ICV_LEN, secy->icv_len) ||
Nicolas Dichtelf60d94c2016-04-26 10:06:11 +02003383 nla_put_u64_64bit(skb, IFLA_MACSEC_CIPHER_SUITE,
David S. Millerc0cc5312016-04-27 15:43:10 -04003384 MACSEC_DEFAULT_CIPHER_ID, IFLA_MACSEC_PAD) ||
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003385 nla_put_u8(skb, IFLA_MACSEC_ENCODING_SA, tx_sc->encoding_sa) ||
3386 nla_put_u8(skb, IFLA_MACSEC_ENCRYPT, tx_sc->encrypt) ||
3387 nla_put_u8(skb, IFLA_MACSEC_PROTECT, secy->protect_frames) ||
3388 nla_put_u8(skb, IFLA_MACSEC_INC_SCI, tx_sc->send_sci) ||
3389 nla_put_u8(skb, IFLA_MACSEC_ES, tx_sc->end_station) ||
3390 nla_put_u8(skb, IFLA_MACSEC_SCB, tx_sc->scb) ||
3391 nla_put_u8(skb, IFLA_MACSEC_REPLAY_PROTECT, secy->replay_protect) ||
3392 nla_put_u8(skb, IFLA_MACSEC_VALIDATION, secy->validate_frames) ||
3393 0)
3394 goto nla_put_failure;
3395
3396 if (secy->replay_protect) {
3397 if (nla_put_u32(skb, IFLA_MACSEC_WINDOW, secy->replay_window))
3398 goto nla_put_failure;
3399 }
3400
3401 return 0;
3402
3403nla_put_failure:
3404 return -EMSGSIZE;
3405}
3406
3407static struct rtnl_link_ops macsec_link_ops __read_mostly = {
3408 .kind = "macsec",
3409 .priv_size = sizeof(struct macsec_dev),
3410 .maxtype = IFLA_MACSEC_MAX,
3411 .policy = macsec_rtnl_policy,
3412 .setup = macsec_setup,
3413 .validate = macsec_validate_attr,
3414 .newlink = macsec_newlink,
3415 .changelink = macsec_changelink,
3416 .dellink = macsec_dellink,
3417 .get_size = macsec_get_size,
3418 .fill_info = macsec_fill_info,
3419 .get_link_net = macsec_get_link_net,
3420};
3421
3422static bool is_macsec_master(struct net_device *dev)
3423{
3424 return rcu_access_pointer(dev->rx_handler) == macsec_handle_frame;
3425}
3426
3427static int macsec_notify(struct notifier_block *this, unsigned long event,
3428 void *ptr)
3429{
3430 struct net_device *real_dev = netdev_notifier_info_to_dev(ptr);
3431 LIST_HEAD(head);
3432
3433 if (!is_macsec_master(real_dev))
3434 return NOTIFY_DONE;
3435
3436 switch (event) {
3437 case NETDEV_UNREGISTER: {
3438 struct macsec_dev *m, *n;
3439 struct macsec_rxh_data *rxd;
3440
3441 rxd = macsec_data_rtnl(real_dev);
3442 list_for_each_entry_safe(m, n, &rxd->secys, secys) {
Sabrina Dubrocabbe11fa2016-08-11 15:24:27 +02003443 macsec_common_dellink(m->secy.netdev, &head);
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003444 }
Sabrina Dubrocabbe11fa2016-08-11 15:24:27 +02003445
3446 netdev_rx_handler_unregister(real_dev);
3447 kfree(rxd);
3448
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003449 unregister_netdevice_many(&head);
3450 break;
3451 }
3452 case NETDEV_CHANGEMTU: {
3453 struct macsec_dev *m;
3454 struct macsec_rxh_data *rxd;
3455
3456 rxd = macsec_data_rtnl(real_dev);
3457 list_for_each_entry(m, &rxd->secys, secys) {
3458 struct net_device *dev = m->secy.netdev;
3459 unsigned int mtu = real_dev->mtu - (m->secy.icv_len +
3460 macsec_extra_len(true));
3461
3462 if (dev->mtu > mtu)
3463 dev_set_mtu(dev, mtu);
3464 }
3465 }
3466 }
3467
3468 return NOTIFY_OK;
3469}
3470
3471static struct notifier_block macsec_notifier = {
3472 .notifier_call = macsec_notify,
3473};
3474
3475static int __init macsec_init(void)
3476{
3477 int err;
3478
3479 pr_info("MACsec IEEE 802.1AE\n");
3480 err = register_netdevice_notifier(&macsec_notifier);
3481 if (err)
3482 return err;
3483
3484 err = rtnl_link_register(&macsec_link_ops);
3485 if (err)
3486 goto notifier;
3487
3488 err = genl_register_family_with_ops(&macsec_fam, macsec_genl_ops);
3489 if (err)
3490 goto rtnl;
3491
3492 return 0;
3493
3494rtnl:
3495 rtnl_link_unregister(&macsec_link_ops);
3496notifier:
3497 unregister_netdevice_notifier(&macsec_notifier);
3498 return err;
3499}
3500
3501static void __exit macsec_exit(void)
3502{
3503 genl_unregister_family(&macsec_fam);
3504 rtnl_link_unregister(&macsec_link_ops);
3505 unregister_netdevice_notifier(&macsec_notifier);
Sabrina Dubrocab196c22a2016-06-14 15:25:14 +02003506 rcu_barrier();
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003507}
3508
3509module_init(macsec_init);
3510module_exit(macsec_exit);
3511
3512MODULE_ALIAS_RTNL_LINK("macsec");
Sabrina Dubroca4b4a1942017-08-22 15:36:08 +02003513MODULE_ALIAS_GENL_FAMILY("macsec");
Sabrina Dubrocac09440f2016-03-11 18:07:33 +01003514
3515MODULE_DESCRIPTION("MACsec IEEE 802.1AE");
3516MODULE_LICENSE("GPL v2");