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