Blame view

drivers/net/macsec.c 95 KB
2874c5fd2   Thomas Gleixner   treewide: Replace...
1
  // SPDX-License-Identifier: GPL-2.0-or-later
c09440f7d   Sabrina Dubroca   macsec: introduce...
2
3
4
5
  /*
   * drivers/net/macsec.c - MACsec device
   *
   * Copyright (c) 2015 Sabrina Dubroca <sd@queasysnail.net>
c09440f7d   Sabrina Dubroca   macsec: introduce...
6
7
8
9
10
11
12
13
   */
  
  #include <linux/types.h>
  #include <linux/skbuff.h>
  #include <linux/socket.h>
  #include <linux/module.h>
  #include <crypto/aead.h>
  #include <linux/etherdevice.h>
3cf3227a2   Antoine Tenart   net: macsec: hard...
14
  #include <linux/netdevice.h>
c09440f7d   Sabrina Dubroca   macsec: introduce...
15
  #include <linux/rtnetlink.h>
e187246f0   Elena Reshetova   drivers, net: con...
16
  #include <linux/refcount.h>
c09440f7d   Sabrina Dubroca   macsec: introduce...
17
18
  #include <net/genetlink.h>
  #include <net/sock.h>
5491e7c6b   Paolo Abeni   macsec: enable GR...
19
  #include <net/gro_cells.h>
c0e4eadfb   Antoine Tenart   net: macsec: move...
20
  #include <net/macsec.h>
3cf3227a2   Antoine Tenart   net: macsec: hard...
21
  #include <linux/phy.h>
c09440f7d   Sabrina Dubroca   macsec: introduce...
22
23
  
  #include <uapi/linux/if_macsec.h>
c09440f7d   Sabrina Dubroca   macsec: introduce...
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
  #define MACSEC_SCI_LEN 8
  
  /* SecTAG length = macsec_eth_header without the optional SCI */
  #define MACSEC_TAG_LEN 6
  
  struct macsec_eth_header {
  	struct ethhdr eth;
  	/* SecTAG */
  	u8  tci_an;
  #if defined(__LITTLE_ENDIAN_BITFIELD)
  	u8  short_length:6,
  		  unused:2;
  #elif defined(__BIG_ENDIAN_BITFIELD)
  	u8        unused:2,
  	    short_length:6;
  #else
  #error	"Please fix <asm/byteorder.h>"
  #endif
  	__be32 packet_number;
  	u8 secure_channel_id[8]; /* optional */
  } __packed;
  
  #define MACSEC_TCI_VERSION 0x80
  #define MACSEC_TCI_ES      0x40 /* end station */
  #define MACSEC_TCI_SC      0x20 /* SCI present */
  #define MACSEC_TCI_SCB     0x10 /* epon */
  #define MACSEC_TCI_E       0x08 /* encryption */
  #define MACSEC_TCI_C       0x04 /* changed text */
  #define MACSEC_AN_MASK     0x03 /* association number */
  #define MACSEC_TCI_CONFID  (MACSEC_TCI_E | MACSEC_TCI_C)
  
  /* minimum secure data length deemed "not short", see IEEE 802.1AE-2006 9.7 */
  #define MIN_NON_SHORT_LEN 48
  
  #define GCM_AES_IV_LEN 12
  #define DEFAULT_ICV_LEN 16
7979472bb   Romain Aviolat   DRIVERS: net: mac...
60
  #define for_each_rxsc(secy, sc)				\
c09440f7d   Sabrina Dubroca   macsec: introduce...
61
  	for (sc = rcu_dereference_bh(secy->rx_sc);	\
7979472bb   Romain Aviolat   DRIVERS: net: mac...
62
  	     sc;					\
c09440f7d   Sabrina Dubroca   macsec: introduce...
63
64
65
66
67
68
69
70
71
72
73
74
75
  	     sc = rcu_dereference_bh(sc->next))
  #define for_each_rxsc_rtnl(secy, sc)			\
  	for (sc = rtnl_dereference(secy->rx_sc);	\
  	     sc;					\
  	     sc = rtnl_dereference(sc->next))
  
  struct gcm_iv {
  	union {
  		u8 secure_channel_id[8];
  		sci_t sci;
  	};
  	__be32 pn;
  };
c09440f7d   Sabrina Dubroca   macsec: introduce...
76
77
78
79
80
81
82
83
84
85
  struct macsec_dev_stats {
  	__u64 OutPktsUntagged;
  	__u64 InPktsUntagged;
  	__u64 OutPktsTooLong;
  	__u64 InPktsNoTag;
  	__u64 InPktsBadTag;
  	__u64 InPktsUnknownSCI;
  	__u64 InPktsNoSCI;
  	__u64 InPktsOverrun;
  };
c09440f7d   Sabrina Dubroca   macsec: introduce...
86
  #define MACSEC_VALIDATE_DEFAULT MACSEC_VALIDATE_STRICT
c09440f7d   Sabrina Dubroca   macsec: introduce...
87
88
89
90
91
92
93
94
95
96
97
  struct pcpu_secy_stats {
  	struct macsec_dev_stats stats;
  	struct u64_stats_sync syncp;
  };
  
  /**
   * struct macsec_dev - private data
   * @secy: SecY config
   * @real_dev: pointer to underlying netdevice
   * @stats: MACsec device stats
   * @secys: linked list of SecY's on the underlying device
3cf3227a2   Antoine Tenart   net: macsec: hard...
98
   * @offload: status of offloading on the MACsec device
c09440f7d   Sabrina Dubroca   macsec: introduce...
99
100
101
102
103
104
   */
  struct macsec_dev {
  	struct macsec_secy secy;
  	struct net_device *real_dev;
  	struct pcpu_secy_stats __percpu *stats;
  	struct list_head secys;
5491e7c6b   Paolo Abeni   macsec: enable GR...
105
  	struct gro_cells gro_cells;
3cf3227a2   Antoine Tenart   net: macsec: hard...
106
  	enum macsec_offload offload;
c09440f7d   Sabrina Dubroca   macsec: introduce...
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
  };
  
  /**
   * struct macsec_rxh_data - rx_handler private argument
   * @secys: linked list of SecY's on this underlying device
   */
  struct macsec_rxh_data {
  	struct list_head secys;
  };
  
  static struct macsec_dev *macsec_priv(const struct net_device *dev)
  {
  	return (struct macsec_dev *)netdev_priv(dev);
  }
  
  static struct macsec_rxh_data *macsec_data_rcu(const struct net_device *dev)
  {
  	return rcu_dereference_bh(dev->rx_handler_data);
  }
  
  static struct macsec_rxh_data *macsec_data_rtnl(const struct net_device *dev)
  {
  	return rtnl_dereference(dev->rx_handler_data);
  }
  
  struct macsec_cb {
  	struct aead_request *req;
  	union {
  		struct macsec_tx_sa *tx_sa;
  		struct macsec_rx_sa *rx_sa;
  	};
  	u8 assoc_num;
  	bool valid;
  	bool has_sci;
  };
  
  static struct macsec_rx_sa *macsec_rxsa_get(struct macsec_rx_sa __rcu *ptr)
  {
  	struct macsec_rx_sa *sa = rcu_dereference_bh(ptr);
  
  	if (!sa || !sa->active)
  		return NULL;
e187246f0   Elena Reshetova   drivers, net: con...
149
  	if (!refcount_inc_not_zero(&sa->refcnt))
c09440f7d   Sabrina Dubroca   macsec: introduce...
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
  		return NULL;
  
  	return sa;
  }
  
  static void free_rx_sc_rcu(struct rcu_head *head)
  {
  	struct macsec_rx_sc *rx_sc = container_of(head, struct macsec_rx_sc, rcu_head);
  
  	free_percpu(rx_sc->stats);
  	kfree(rx_sc);
  }
  
  static struct macsec_rx_sc *macsec_rxsc_get(struct macsec_rx_sc *sc)
  {
8676d76f0   Elena Reshetova   drivers, net: con...
165
  	return refcount_inc_not_zero(&sc->refcnt) ? sc : NULL;
c09440f7d   Sabrina Dubroca   macsec: introduce...
166
167
168
169
  }
  
  static void macsec_rxsc_put(struct macsec_rx_sc *sc)
  {
8676d76f0   Elena Reshetova   drivers, net: con...
170
  	if (refcount_dec_and_test(&sc->refcnt))
c09440f7d   Sabrina Dubroca   macsec: introduce...
171
172
173
174
175
176
177
178
179
  		call_rcu(&sc->rcu_head, free_rx_sc_rcu);
  }
  
  static void free_rxsa(struct rcu_head *head)
  {
  	struct macsec_rx_sa *sa = container_of(head, struct macsec_rx_sa, rcu);
  
  	crypto_free_aead(sa->key.tfm);
  	free_percpu(sa->stats);
c09440f7d   Sabrina Dubroca   macsec: introduce...
180
181
182
183
184
  	kfree(sa);
  }
  
  static void macsec_rxsa_put(struct macsec_rx_sa *sa)
  {
e187246f0   Elena Reshetova   drivers, net: con...
185
  	if (refcount_dec_and_test(&sa->refcnt))
c09440f7d   Sabrina Dubroca   macsec: introduce...
186
187
188
189
190
191
192
193
194
  		call_rcu(&sa->rcu, free_rxsa);
  }
  
  static struct macsec_tx_sa *macsec_txsa_get(struct macsec_tx_sa __rcu *ptr)
  {
  	struct macsec_tx_sa *sa = rcu_dereference_bh(ptr);
  
  	if (!sa || !sa->active)
  		return NULL;
28206cdb3   Elena Reshetova   drivers, net: con...
195
  	if (!refcount_inc_not_zero(&sa->refcnt))
c09440f7d   Sabrina Dubroca   macsec: introduce...
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
  		return NULL;
  
  	return sa;
  }
  
  static void free_txsa(struct rcu_head *head)
  {
  	struct macsec_tx_sa *sa = container_of(head, struct macsec_tx_sa, rcu);
  
  	crypto_free_aead(sa->key.tfm);
  	free_percpu(sa->stats);
  	kfree(sa);
  }
  
  static void macsec_txsa_put(struct macsec_tx_sa *sa)
  {
28206cdb3   Elena Reshetova   drivers, net: con...
212
  	if (refcount_dec_and_test(&sa->refcnt))
c09440f7d   Sabrina Dubroca   macsec: introduce...
213
214
215
216
217
218
219
220
221
222
223
224
  		call_rcu(&sa->rcu, free_txsa);
  }
  
  static struct macsec_cb *macsec_skb_cb(struct sk_buff *skb)
  {
  	BUILD_BUG_ON(sizeof(struct macsec_cb) > sizeof(skb->cb));
  	return (struct macsec_cb *)skb->cb;
  }
  
  #define MACSEC_PORT_ES (htons(0x0001))
  #define MACSEC_PORT_SCB (0x0000)
  #define MACSEC_UNDEF_SCI ((__force sci_t)0xffffffffffffffffULL)
ccfdec908   Felix Walter   macsec: Add suppo...
225
226
  #define MACSEC_GCM_AES_128_SAK_LEN 16
  #define MACSEC_GCM_AES_256_SAK_LEN 32
ccfdec908   Felix Walter   macsec: Add suppo...
227
  #define DEFAULT_SAK_LEN MACSEC_GCM_AES_128_SAK_LEN
c09440f7d   Sabrina Dubroca   macsec: introduce...
228
229
230
  #define DEFAULT_SEND_SCI true
  #define DEFAULT_ENCRYPT false
  #define DEFAULT_ENCODING_SA 0
e0f841f5c   Tobias Brunner   macsec: Fix heade...
231
232
233
234
235
236
237
  static bool send_sci(const struct macsec_secy *secy)
  {
  	const struct macsec_tx_sc *tx_sc = &secy->tx_sc;
  
  	return tx_sc->send_sci ||
  		(secy->n_rx_sc > 1 && !tx_sc->end_station && !tx_sc->scb);
  }
c09440f7d   Sabrina Dubroca   macsec: introduce...
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
  static sci_t make_sci(u8 *addr, __be16 port)
  {
  	sci_t sci;
  
  	memcpy(&sci, addr, ETH_ALEN);
  	memcpy(((char *)&sci) + ETH_ALEN, &port, sizeof(port));
  
  	return sci;
  }
  
  static sci_t macsec_frame_sci(struct macsec_eth_header *hdr, bool sci_present)
  {
  	sci_t sci;
  
  	if (sci_present)
  		memcpy(&sci, hdr->secure_channel_id,
  		       sizeof(hdr->secure_channel_id));
  	else
  		sci = make_sci(hdr->eth.h_source, MACSEC_PORT_ES);
  
  	return sci;
  }
  
  static unsigned int macsec_sectag_len(bool sci_present)
  {
  	return MACSEC_TAG_LEN + (sci_present ? MACSEC_SCI_LEN : 0);
  }
  
  static unsigned int macsec_hdr_len(bool sci_present)
  {
  	return macsec_sectag_len(sci_present) + ETH_HLEN;
  }
  
  static unsigned int macsec_extra_len(bool sci_present)
  {
  	return macsec_sectag_len(sci_present) + sizeof(__be16);
  }
  
  /* Fill SecTAG according to IEEE 802.1AE-2006 10.5.3 */
  static void macsec_fill_sectag(struct macsec_eth_header *h,
e0f841f5c   Tobias Brunner   macsec: Fix heade...
278
279
  			       const struct macsec_secy *secy, u32 pn,
  			       bool sci_present)
c09440f7d   Sabrina Dubroca   macsec: introduce...
280
281
  {
  	const struct macsec_tx_sc *tx_sc = &secy->tx_sc;
e0f841f5c   Tobias Brunner   macsec: Fix heade...
282
  	memset(&h->tci_an, 0, macsec_sectag_len(sci_present));
c09440f7d   Sabrina Dubroca   macsec: introduce...
283
  	h->eth.h_proto = htons(ETH_P_MACSEC);
e0f841f5c   Tobias Brunner   macsec: Fix heade...
284
  	if (sci_present) {
c09440f7d   Sabrina Dubroca   macsec: introduce...
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
  		h->tci_an |= MACSEC_TCI_SC;
  		memcpy(&h->secure_channel_id, &secy->sci,
  		       sizeof(h->secure_channel_id));
  	} else {
  		if (tx_sc->end_station)
  			h->tci_an |= MACSEC_TCI_ES;
  		if (tx_sc->scb)
  			h->tci_an |= MACSEC_TCI_SCB;
  	}
  
  	h->packet_number = htonl(pn);
  
  	/* with GCM, C/E clear for !encrypt, both set for encrypt */
  	if (tx_sc->encrypt)
  		h->tci_an |= MACSEC_TCI_CONFID;
  	else if (secy->icv_len != DEFAULT_ICV_LEN)
  		h->tci_an |= MACSEC_TCI_C;
  
  	h->tci_an |= tx_sc->encoding_sa;
  }
  
  static void macsec_set_shortlen(struct macsec_eth_header *h, size_t data_len)
  {
  	if (data_len < MIN_NON_SHORT_LEN)
  		h->short_length = data_len;
  }
3cf3227a2   Antoine Tenart   net: macsec: hard...
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
  /* Checks if a MACsec interface is being offloaded to an hardware engine */
  static bool macsec_is_offloaded(struct macsec_dev *macsec)
  {
  	if (macsec->offload == MACSEC_OFFLOAD_PHY)
  		return true;
  
  	return false;
  }
  
  /* Checks if underlying layers implement MACsec offloading functions. */
  static bool macsec_check_offload(enum macsec_offload offload,
  				 struct macsec_dev *macsec)
  {
  	if (!macsec || !macsec->real_dev)
  		return false;
  
  	if (offload == MACSEC_OFFLOAD_PHY)
  		return macsec->real_dev->phydev &&
  		       macsec->real_dev->phydev->macsec_ops;
  
  	return false;
  }
  
  static const struct macsec_ops *__macsec_get_ops(enum macsec_offload offload,
  						 struct macsec_dev *macsec,
  						 struct macsec_context *ctx)
  {
  	if (ctx) {
  		memset(ctx, 0, sizeof(*ctx));
  		ctx->offload = offload;
  
  		if (offload == MACSEC_OFFLOAD_PHY)
  			ctx->phydev = macsec->real_dev->phydev;
  	}
  
  	return macsec->real_dev->phydev->macsec_ops;
  }
  
  /* Returns a pointer to the MACsec ops struct if any and updates the MACsec
   * context device reference if provided.
   */
  static const struct macsec_ops *macsec_get_ops(struct macsec_dev *macsec,
  					       struct macsec_context *ctx)
  {
  	if (!macsec_check_offload(macsec->offload, macsec))
  		return NULL;
  
  	return __macsec_get_ops(macsec->offload, macsec, ctx);
  }
c09440f7d   Sabrina Dubroca   macsec: introduce...
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
  /* validate MACsec packet according to IEEE 802.1AE-2006 9.12 */
  static bool macsec_validate_skb(struct sk_buff *skb, u16 icv_len)
  {
  	struct macsec_eth_header *h = (struct macsec_eth_header *)skb->data;
  	int len = skb->len - 2 * ETH_ALEN;
  	int extra_len = macsec_extra_len(!!(h->tci_an & MACSEC_TCI_SC)) + icv_len;
  
  	/* a) It comprises at least 17 octets */
  	if (skb->len <= 16)
  		return false;
  
  	/* b) MACsec EtherType: already checked */
  
  	/* c) V bit is clear */
  	if (h->tci_an & MACSEC_TCI_VERSION)
  		return false;
  
  	/* d) ES or SCB => !SC */
  	if ((h->tci_an & MACSEC_TCI_ES || h->tci_an & MACSEC_TCI_SCB) &&
  	    (h->tci_an & MACSEC_TCI_SC))
  		return false;
  
  	/* e) Bits 7 and 8 of octet 4 of the SecTAG are clear */
  	if (h->unused)
  		return false;
  
  	/* rx.pn != 0 (figure 10-5) */
  	if (!h->packet_number)
  		return false;
  
  	/* length check, f) g) h) i) */
  	if (h->short_length)
  		return len == extra_len + h->short_length;
  	return len >= extra_len + MIN_NON_SHORT_LEN;
  }
  
  #define MACSEC_NEEDED_HEADROOM (macsec_extra_len(true))
2ccbe2cb7   Davide Caratti   macsec: limit ICV...
397
  #define MACSEC_NEEDED_TAILROOM MACSEC_STD_ICV_LEN
c09440f7d   Sabrina Dubroca   macsec: introduce...
398
399
400
401
402
403
404
405
406
407
408
409
410
  
  static void macsec_fill_iv(unsigned char *iv, sci_t sci, u32 pn)
  {
  	struct gcm_iv *gcm_iv = (struct gcm_iv *)iv;
  
  	gcm_iv->sci = sci;
  	gcm_iv->pn = htonl(pn);
  }
  
  static struct macsec_eth_header *macsec_ethhdr(struct sk_buff *skb)
  {
  	return (struct macsec_eth_header *)skb_mac_header(skb);
  }
5c937de78   Antoine Tenart   net: macsec: PN w...
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
  static void __macsec_pn_wrapped(struct macsec_secy *secy,
  				struct macsec_tx_sa *tx_sa)
  {
  	pr_debug("PN wrapped, transitioning to !oper
  ");
  	tx_sa->active = false;
  	if (secy->protect_frames)
  		secy->operational = false;
  }
  
  void macsec_pn_wrapped(struct macsec_secy *secy, struct macsec_tx_sa *tx_sa)
  {
  	spin_lock_bh(&tx_sa->lock);
  	__macsec_pn_wrapped(secy, tx_sa);
  	spin_unlock_bh(&tx_sa->lock);
  }
  EXPORT_SYMBOL_GPL(macsec_pn_wrapped);
c09440f7d   Sabrina Dubroca   macsec: introduce...
428
429
430
431
432
433
434
435
  static u32 tx_sa_update_pn(struct macsec_tx_sa *tx_sa, struct macsec_secy *secy)
  {
  	u32 pn;
  
  	spin_lock_bh(&tx_sa->lock);
  	pn = tx_sa->next_pn;
  
  	tx_sa->next_pn++;
5c937de78   Antoine Tenart   net: macsec: PN w...
436
437
  	if (tx_sa->next_pn == 0)
  		__macsec_pn_wrapped(secy, tx_sa);
c09440f7d   Sabrina Dubroca   macsec: introduce...
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
  	spin_unlock_bh(&tx_sa->lock);
  
  	return pn;
  }
  
  static void macsec_encrypt_finish(struct sk_buff *skb, struct net_device *dev)
  {
  	struct macsec_dev *macsec = netdev_priv(dev);
  
  	skb->dev = macsec->real_dev;
  	skb_reset_mac_header(skb);
  	skb->protocol = eth_hdr(skb)->h_proto;
  }
  
  static void macsec_count_tx(struct sk_buff *skb, struct macsec_tx_sc *tx_sc,
  			    struct macsec_tx_sa *tx_sa)
  {
  	struct pcpu_tx_sc_stats *txsc_stats = this_cpu_ptr(tx_sc->stats);
  
  	u64_stats_update_begin(&txsc_stats->syncp);
  	if (tx_sc->encrypt) {
  		txsc_stats->stats.OutOctetsEncrypted += skb->len;
  		txsc_stats->stats.OutPktsEncrypted++;
  		this_cpu_inc(tx_sa->stats->OutPktsEncrypted);
  	} else {
  		txsc_stats->stats.OutOctetsProtected += skb->len;
  		txsc_stats->stats.OutPktsProtected++;
  		this_cpu_inc(tx_sa->stats->OutPktsProtected);
  	}
  	u64_stats_update_end(&txsc_stats->syncp);
  }
  
  static void count_tx(struct net_device *dev, int ret, int len)
  {
  	if (likely(ret == NET_XMIT_SUCCESS || ret == NET_XMIT_CN)) {
  		struct pcpu_sw_netstats *stats = this_cpu_ptr(dev->tstats);
  
  		u64_stats_update_begin(&stats->syncp);
  		stats->tx_packets++;
  		stats->tx_bytes += len;
  		u64_stats_update_end(&stats->syncp);
c09440f7d   Sabrina Dubroca   macsec: introduce...
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
  	}
  }
  
  static void macsec_encrypt_done(struct crypto_async_request *base, int err)
  {
  	struct sk_buff *skb = base->data;
  	struct net_device *dev = skb->dev;
  	struct macsec_dev *macsec = macsec_priv(dev);
  	struct macsec_tx_sa *sa = macsec_skb_cb(skb)->tx_sa;
  	int len, ret;
  
  	aead_request_free(macsec_skb_cb(skb)->req);
  
  	rcu_read_lock_bh();
  	macsec_encrypt_finish(skb, dev);
  	macsec_count_tx(skb, &macsec->secy.tx_sc, macsec_skb_cb(skb)->tx_sa);
  	len = skb->len;
  	ret = dev_queue_xmit(skb);
  	count_tx(dev, ret, len);
  	rcu_read_unlock_bh();
  
  	macsec_txsa_put(sa);
  	dev_put(dev);
  }
5d9649b3a   Sabrina Dubroca   macsec: allocate ...
503
504
  static struct aead_request *macsec_alloc_req(struct crypto_aead *tfm,
  					     unsigned char **iv,
5294b8308   Jason A. Donenfeld   macsec: dynamical...
505
506
  					     struct scatterlist **sg,
  					     int num_frags)
5d9649b3a   Sabrina Dubroca   macsec: allocate ...
507
508
509
510
511
512
513
514
515
516
517
  {
  	size_t size, iv_offset, sg_offset;
  	struct aead_request *req;
  	void *tmp;
  
  	size = sizeof(struct aead_request) + crypto_aead_reqsize(tfm);
  	iv_offset = size;
  	size += GCM_AES_IV_LEN;
  
  	size = ALIGN(size, __alignof__(struct scatterlist));
  	sg_offset = size;
5294b8308   Jason A. Donenfeld   macsec: dynamical...
518
  	size += sizeof(struct scatterlist) * num_frags;
5d9649b3a   Sabrina Dubroca   macsec: allocate ...
519
520
521
522
523
524
525
526
527
528
529
530
531
  
  	tmp = kmalloc(size, GFP_ATOMIC);
  	if (!tmp)
  		return NULL;
  
  	*iv = (unsigned char *)(tmp + iv_offset);
  	*sg = (struct scatterlist *)(tmp + sg_offset);
  	req = tmp;
  
  	aead_request_set_tfm(req, tfm);
  
  	return req;
  }
c09440f7d   Sabrina Dubroca   macsec: introduce...
532
533
534
535
  static struct sk_buff *macsec_encrypt(struct sk_buff *skb,
  				      struct net_device *dev)
  {
  	int ret;
5d9649b3a   Sabrina Dubroca   macsec: allocate ...
536
  	struct scatterlist *sg;
5294b8308   Jason A. Donenfeld   macsec: dynamical...
537
  	struct sk_buff *trailer;
5d9649b3a   Sabrina Dubroca   macsec: allocate ...
538
  	unsigned char *iv;
c09440f7d   Sabrina Dubroca   macsec: introduce...
539
540
541
542
543
544
545
546
  	struct ethhdr *eth;
  	struct macsec_eth_header *hh;
  	size_t unprotected_len;
  	struct aead_request *req;
  	struct macsec_secy *secy;
  	struct macsec_tx_sc *tx_sc;
  	struct macsec_tx_sa *tx_sa;
  	struct macsec_dev *macsec = macsec_priv(dev);
e0f841f5c   Tobias Brunner   macsec: Fix heade...
547
  	bool sci_present;
c09440f7d   Sabrina Dubroca   macsec: introduce...
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
  	u32 pn;
  
  	secy = &macsec->secy;
  	tx_sc = &secy->tx_sc;
  
  	/* 10.5.1 TX SA assignment */
  	tx_sa = macsec_txsa_get(tx_sc->sa[tx_sc->encoding_sa]);
  	if (!tx_sa) {
  		secy->operational = false;
  		kfree_skb(skb);
  		return ERR_PTR(-EINVAL);
  	}
  
  	if (unlikely(skb_headroom(skb) < MACSEC_NEEDED_HEADROOM ||
  		     skb_tailroom(skb) < MACSEC_NEEDED_TAILROOM)) {
  		struct sk_buff *nskb = skb_copy_expand(skb,
  						       MACSEC_NEEDED_HEADROOM,
  						       MACSEC_NEEDED_TAILROOM,
  						       GFP_ATOMIC);
  		if (likely(nskb)) {
  			consume_skb(skb);
  			skb = nskb;
  		} else {
  			macsec_txsa_put(tx_sa);
  			kfree_skb(skb);
  			return ERR_PTR(-ENOMEM);
  		}
  	} else {
  		skb = skb_unshare(skb, GFP_ATOMIC);
  		if (!skb) {
  			macsec_txsa_put(tx_sa);
  			return ERR_PTR(-ENOMEM);
  		}
  	}
  
  	unprotected_len = skb->len;
  	eth = eth_hdr(skb);
e0f841f5c   Tobias Brunner   macsec: Fix heade...
585
  	sci_present = send_sci(secy);
d58ff3512   Johannes Berg   networking: make ...
586
  	hh = skb_push(skb, macsec_extra_len(sci_present));
c09440f7d   Sabrina Dubroca   macsec: introduce...
587
588
589
590
591
592
593
594
  	memmove(hh, eth, 2 * ETH_ALEN);
  
  	pn = tx_sa_update_pn(tx_sa, secy);
  	if (pn == 0) {
  		macsec_txsa_put(tx_sa);
  		kfree_skb(skb);
  		return ERR_PTR(-ENOLINK);
  	}
e0f841f5c   Tobias Brunner   macsec: Fix heade...
595
  	macsec_fill_sectag(hh, secy, pn, sci_present);
c09440f7d   Sabrina Dubroca   macsec: introduce...
596
  	macsec_set_shortlen(hh, unprotected_len - 2 * ETH_ALEN);
c09440f7d   Sabrina Dubroca   macsec: introduce...
597
598
599
600
601
602
603
604
605
606
607
608
609
  	skb_put(skb, secy->icv_len);
  
  	if (skb->len - ETH_HLEN > macsec_priv(dev)->real_dev->mtu) {
  		struct pcpu_secy_stats *secy_stats = this_cpu_ptr(macsec->stats);
  
  		u64_stats_update_begin(&secy_stats->syncp);
  		secy_stats->stats.OutPktsTooLong++;
  		u64_stats_update_end(&secy_stats->syncp);
  
  		macsec_txsa_put(tx_sa);
  		kfree_skb(skb);
  		return ERR_PTR(-EINVAL);
  	}
5294b8308   Jason A. Donenfeld   macsec: dynamical...
610
611
612
613
614
615
616
617
  	ret = skb_cow_data(skb, 0, &trailer);
  	if (unlikely(ret < 0)) {
  		macsec_txsa_put(tx_sa);
  		kfree_skb(skb);
  		return ERR_PTR(ret);
  	}
  
  	req = macsec_alloc_req(tx_sa->key.tfm, &iv, &sg, ret);
c09440f7d   Sabrina Dubroca   macsec: introduce...
618
619
620
621
622
  	if (!req) {
  		macsec_txsa_put(tx_sa);
  		kfree_skb(skb);
  		return ERR_PTR(-ENOMEM);
  	}
5d9649b3a   Sabrina Dubroca   macsec: allocate ...
623
  	macsec_fill_iv(iv, secy->sci, pn);
5294b8308   Jason A. Donenfeld   macsec: dynamical...
624
  	sg_init_table(sg, ret);
cda7ea690   Jason A. Donenfeld   macsec: check ret...
625
626
  	ret = skb_to_sgvec(skb, sg, 0, skb->len);
  	if (unlikely(ret < 0)) {
5aba2ba50   Sabrina Dubroca   macsec: fix memor...
627
  		aead_request_free(req);
cda7ea690   Jason A. Donenfeld   macsec: check ret...
628
629
630
631
  		macsec_txsa_put(tx_sa);
  		kfree_skb(skb);
  		return ERR_PTR(ret);
  	}
c09440f7d   Sabrina Dubroca   macsec: introduce...
632
633
  
  	if (tx_sc->encrypt) {
e0f841f5c   Tobias Brunner   macsec: Fix heade...
634
  		int len = skb->len - macsec_hdr_len(sci_present) -
c09440f7d   Sabrina Dubroca   macsec: introduce...
635
636
  			  secy->icv_len;
  		aead_request_set_crypt(req, sg, sg, len, iv);
e0f841f5c   Tobias Brunner   macsec: Fix heade...
637
  		aead_request_set_ad(req, macsec_hdr_len(sci_present));
c09440f7d   Sabrina Dubroca   macsec: introduce...
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
  	} else {
  		aead_request_set_crypt(req, sg, sg, 0, iv);
  		aead_request_set_ad(req, skb->len - secy->icv_len);
  	}
  
  	macsec_skb_cb(skb)->req = req;
  	macsec_skb_cb(skb)->tx_sa = tx_sa;
  	aead_request_set_callback(req, 0, macsec_encrypt_done, skb);
  
  	dev_hold(skb->dev);
  	ret = crypto_aead_encrypt(req);
  	if (ret == -EINPROGRESS) {
  		return ERR_PTR(ret);
  	} else if (ret != 0) {
  		dev_put(skb->dev);
  		kfree_skb(skb);
  		aead_request_free(req);
  		macsec_txsa_put(tx_sa);
  		return ERR_PTR(-EINVAL);
  	}
  
  	dev_put(skb->dev);
  	aead_request_free(req);
  	macsec_txsa_put(tx_sa);
  
  	return skb;
  }
  
  static bool macsec_post_decrypt(struct sk_buff *skb, struct macsec_secy *secy, u32 pn)
  {
  	struct macsec_rx_sa *rx_sa = macsec_skb_cb(skb)->rx_sa;
  	struct pcpu_rx_sc_stats *rxsc_stats = this_cpu_ptr(rx_sa->sc->stats);
  	struct macsec_eth_header *hdr = macsec_ethhdr(skb);
  	u32 lowest_pn = 0;
  
  	spin_lock(&rx_sa->lock);
  	if (rx_sa->next_pn >= secy->replay_window)
  		lowest_pn = rx_sa->next_pn - secy->replay_window;
  
  	/* Now perform replay protection check again
  	 * (see IEEE 802.1AE-2006 figure 10-5)
  	 */
  	if (secy->replay_protect && pn < lowest_pn) {
  		spin_unlock(&rx_sa->lock);
  		u64_stats_update_begin(&rxsc_stats->syncp);
  		rxsc_stats->stats.InPktsLate++;
  		u64_stats_update_end(&rxsc_stats->syncp);
  		return false;
  	}
  
  	if (secy->validate_frames != MACSEC_VALIDATE_DISABLED) {
  		u64_stats_update_begin(&rxsc_stats->syncp);
  		if (hdr->tci_an & MACSEC_TCI_E)
  			rxsc_stats->stats.InOctetsDecrypted += skb->len;
  		else
  			rxsc_stats->stats.InOctetsValidated += skb->len;
  		u64_stats_update_end(&rxsc_stats->syncp);
  	}
  
  	if (!macsec_skb_cb(skb)->valid) {
  		spin_unlock(&rx_sa->lock);
  
  		/* 10.6.5 */
  		if (hdr->tci_an & MACSEC_TCI_C ||
  		    secy->validate_frames == MACSEC_VALIDATE_STRICT) {
  			u64_stats_update_begin(&rxsc_stats->syncp);
  			rxsc_stats->stats.InPktsNotValid++;
  			u64_stats_update_end(&rxsc_stats->syncp);
  			return false;
  		}
  
  		u64_stats_update_begin(&rxsc_stats->syncp);
  		if (secy->validate_frames == MACSEC_VALIDATE_CHECK) {
  			rxsc_stats->stats.InPktsInvalid++;
  			this_cpu_inc(rx_sa->stats->InPktsInvalid);
  		} else if (pn < lowest_pn) {
  			rxsc_stats->stats.InPktsDelayed++;
  		} else {
  			rxsc_stats->stats.InPktsUnchecked++;
  		}
  		u64_stats_update_end(&rxsc_stats->syncp);
  	} else {
  		u64_stats_update_begin(&rxsc_stats->syncp);
  		if (pn < lowest_pn) {
  			rxsc_stats->stats.InPktsDelayed++;
  		} else {
  			rxsc_stats->stats.InPktsOK++;
  			this_cpu_inc(rx_sa->stats->InPktsOK);
  		}
  		u64_stats_update_end(&rxsc_stats->syncp);
  
  		if (pn >= rx_sa->next_pn)
  			rx_sa->next_pn = pn + 1;
  		spin_unlock(&rx_sa->lock);
  	}
  
  	return true;
  }
  
  static void macsec_reset_skb(struct sk_buff *skb, struct net_device *dev)
  {
  	skb->pkt_type = PACKET_HOST;
  	skb->protocol = eth_type_trans(skb, dev);
  
  	skb_reset_network_header(skb);
  	if (!skb_transport_header_was_set(skb))
  		skb_reset_transport_header(skb);
  	skb_reset_mac_len(skb);
  }
  
  static void macsec_finalize_skb(struct sk_buff *skb, u8 icv_len, u8 hdr_len)
  {
7d8b16b9f   Andreas Steinmetz   macsec: fix check...
750
  	skb->ip_summed = CHECKSUM_NONE;
c09440f7d   Sabrina Dubroca   macsec: introduce...
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
  	memmove(skb->data + hdr_len, skb->data, 2 * ETH_ALEN);
  	skb_pull(skb, hdr_len);
  	pskb_trim_unique(skb, skb->len - icv_len);
  }
  
  static void count_rx(struct net_device *dev, int len)
  {
  	struct pcpu_sw_netstats *stats = this_cpu_ptr(dev->tstats);
  
  	u64_stats_update_begin(&stats->syncp);
  	stats->rx_packets++;
  	stats->rx_bytes += len;
  	u64_stats_update_end(&stats->syncp);
  }
  
  static void macsec_decrypt_done(struct crypto_async_request *base, int err)
  {
  	struct sk_buff *skb = base->data;
  	struct net_device *dev = skb->dev;
  	struct macsec_dev *macsec = macsec_priv(dev);
  	struct macsec_rx_sa *rx_sa = macsec_skb_cb(skb)->rx_sa;
c78ebe1df   Sabrina Dubroca   macsec: fix refer...
772
  	struct macsec_rx_sc *rx_sc = rx_sa->sc;
863483c97   Girish Moodalbail   macsec: double ac...
773
  	int len;
c09440f7d   Sabrina Dubroca   macsec: introduce...
774
775
776
  	u32 pn;
  
  	aead_request_free(macsec_skb_cb(skb)->req);
b3bdc3acb   Lee Ryder   macsec: fix valid...
777
778
  	if (!err)
  		macsec_skb_cb(skb)->valid = true;
c09440f7d   Sabrina Dubroca   macsec: introduce...
779
780
781
782
783
784
785
786
787
788
789
790
791
  	rcu_read_lock_bh();
  	pn = ntohl(macsec_ethhdr(skb)->packet_number);
  	if (!macsec_post_decrypt(skb, &macsec->secy, pn)) {
  		rcu_read_unlock_bh();
  		kfree_skb(skb);
  		goto out;
  	}
  
  	macsec_finalize_skb(skb, macsec->secy.icv_len,
  			    macsec_extra_len(macsec_skb_cb(skb)->has_sci));
  	macsec_reset_skb(skb, macsec->secy.netdev);
  
  	len = skb->len;
863483c97   Girish Moodalbail   macsec: double ac...
792
  	if (gro_cells_receive(&macsec->gro_cells, skb) == NET_RX_SUCCESS)
c09440f7d   Sabrina Dubroca   macsec: introduce...
793
  		count_rx(dev, len);
c09440f7d   Sabrina Dubroca   macsec: introduce...
794
795
796
797
798
  
  	rcu_read_unlock_bh();
  
  out:
  	macsec_rxsa_put(rx_sa);
c78ebe1df   Sabrina Dubroca   macsec: fix refer...
799
  	macsec_rxsc_put(rx_sc);
c09440f7d   Sabrina Dubroca   macsec: introduce...
800
  	dev_put(dev);
c09440f7d   Sabrina Dubroca   macsec: introduce...
801
802
803
804
805
806
807
808
809
  }
  
  static struct sk_buff *macsec_decrypt(struct sk_buff *skb,
  				      struct net_device *dev,
  				      struct macsec_rx_sa *rx_sa,
  				      sci_t sci,
  				      struct macsec_secy *secy)
  {
  	int ret;
5d9649b3a   Sabrina Dubroca   macsec: allocate ...
810
  	struct scatterlist *sg;
5294b8308   Jason A. Donenfeld   macsec: dynamical...
811
  	struct sk_buff *trailer;
5d9649b3a   Sabrina Dubroca   macsec: allocate ...
812
  	unsigned char *iv;
c09440f7d   Sabrina Dubroca   macsec: introduce...
813
814
815
816
817
818
819
  	struct aead_request *req;
  	struct macsec_eth_header *hdr;
  	u16 icv_len = secy->icv_len;
  
  	macsec_skb_cb(skb)->valid = false;
  	skb = skb_share_check(skb, GFP_ATOMIC);
  	if (!skb)
c3b7d0bd7   Sabrina Dubroca   macsec: fix rx_sa...
820
  		return ERR_PTR(-ENOMEM);
c09440f7d   Sabrina Dubroca   macsec: introduce...
821

5294b8308   Jason A. Donenfeld   macsec: dynamical...
822
823
824
825
826
827
  	ret = skb_cow_data(skb, 0, &trailer);
  	if (unlikely(ret < 0)) {
  		kfree_skb(skb);
  		return ERR_PTR(ret);
  	}
  	req = macsec_alloc_req(rx_sa->key.tfm, &iv, &sg, ret);
c09440f7d   Sabrina Dubroca   macsec: introduce...
828
829
  	if (!req) {
  		kfree_skb(skb);
c3b7d0bd7   Sabrina Dubroca   macsec: fix rx_sa...
830
  		return ERR_PTR(-ENOMEM);
c09440f7d   Sabrina Dubroca   macsec: introduce...
831
832
833
834
  	}
  
  	hdr = (struct macsec_eth_header *)skb->data;
  	macsec_fill_iv(iv, sci, ntohl(hdr->packet_number));
5294b8308   Jason A. Donenfeld   macsec: dynamical...
835
  	sg_init_table(sg, ret);
cda7ea690   Jason A. Donenfeld   macsec: check ret...
836
837
  	ret = skb_to_sgvec(skb, sg, 0, skb->len);
  	if (unlikely(ret < 0)) {
5aba2ba50   Sabrina Dubroca   macsec: fix memor...
838
  		aead_request_free(req);
cda7ea690   Jason A. Donenfeld   macsec: check ret...
839
840
841
  		kfree_skb(skb);
  		return ERR_PTR(ret);
  	}
c09440f7d   Sabrina Dubroca   macsec: introduce...
842
843
844
845
846
847
848
849
850
851
852
853
  
  	if (hdr->tci_an & MACSEC_TCI_E) {
  		/* confidentiality: ethernet + macsec header
  		 * authenticated, encrypted payload
  		 */
  		int len = skb->len - macsec_hdr_len(macsec_skb_cb(skb)->has_sci);
  
  		aead_request_set_crypt(req, sg, sg, len, iv);
  		aead_request_set_ad(req, macsec_hdr_len(macsec_skb_cb(skb)->has_sci));
  		skb = skb_unshare(skb, GFP_ATOMIC);
  		if (!skb) {
  			aead_request_free(req);
c3b7d0bd7   Sabrina Dubroca   macsec: fix rx_sa...
854
  			return ERR_PTR(-ENOMEM);
c09440f7d   Sabrina Dubroca   macsec: introduce...
855
856
857
858
859
860
861
862
  		}
  	} else {
  		/* integrity only: all headers + data authenticated */
  		aead_request_set_crypt(req, sg, sg, icv_len, iv);
  		aead_request_set_ad(req, skb->len - icv_len);
  	}
  
  	macsec_skb_cb(skb)->req = req;
c09440f7d   Sabrina Dubroca   macsec: introduce...
863
864
865
866
867
868
  	skb->dev = dev;
  	aead_request_set_callback(req, 0, macsec_decrypt_done, skb);
  
  	dev_hold(dev);
  	ret = crypto_aead_decrypt(req);
  	if (ret == -EINPROGRESS) {
c3b7d0bd7   Sabrina Dubroca   macsec: fix rx_sa...
869
  		return ERR_PTR(ret);
c09440f7d   Sabrina Dubroca   macsec: introduce...
870
871
872
873
874
875
  	} else if (ret != 0) {
  		/* decryption/authentication failed
  		 * 10.6 if validateFrames is disabled, deliver anyway
  		 */
  		if (ret != -EBADMSG) {
  			kfree_skb(skb);
c3b7d0bd7   Sabrina Dubroca   macsec: fix rx_sa...
876
  			skb = ERR_PTR(ret);
c09440f7d   Sabrina Dubroca   macsec: introduce...
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
  		}
  	} else {
  		macsec_skb_cb(skb)->valid = true;
  	}
  	dev_put(dev);
  
  	aead_request_free(req);
  
  	return skb;
  }
  
  static struct macsec_rx_sc *find_rx_sc(struct macsec_secy *secy, sci_t sci)
  {
  	struct macsec_rx_sc *rx_sc;
  
  	for_each_rxsc(secy, rx_sc) {
  		if (rx_sc->sci == sci)
  			return rx_sc;
  	}
  
  	return NULL;
  }
  
  static struct macsec_rx_sc *find_rx_sc_rtnl(struct macsec_secy *secy, sci_t sci)
  {
  	struct macsec_rx_sc *rx_sc;
  
  	for_each_rxsc_rtnl(secy, rx_sc) {
  		if (rx_sc->sci == sci)
  			return rx_sc;
  	}
  
  	return NULL;
  }
3cf3227a2   Antoine Tenart   net: macsec: hard...
911
  static enum rx_handler_result handle_not_macsec(struct sk_buff *skb)
c09440f7d   Sabrina Dubroca   macsec: introduce...
912
  {
3cf3227a2   Antoine Tenart   net: macsec: hard...
913
914
  	/* Deliver to the uncontrolled port by default */
  	enum rx_handler_result ret = RX_HANDLER_PASS;
c09440f7d   Sabrina Dubroca   macsec: introduce...
915
916
917
918
919
920
921
922
923
924
925
926
  	struct macsec_rxh_data *rxd;
  	struct macsec_dev *macsec;
  
  	rcu_read_lock();
  	rxd = macsec_data_rcu(skb->dev);
  
  	/* 10.6 If the management control validateFrames is not
  	 * Strict, frames without a SecTAG are received, counted, and
  	 * delivered to the Controlled Port
  	 */
  	list_for_each_entry_rcu(macsec, &rxd->secys, secys) {
  		struct sk_buff *nskb;
c09440f7d   Sabrina Dubroca   macsec: introduce...
927
  		struct pcpu_secy_stats *secy_stats = this_cpu_ptr(macsec->stats);
3cf3227a2   Antoine Tenart   net: macsec: hard...
928
929
  		if (!macsec_is_offloaded(macsec) &&
  		    macsec->secy.validate_frames == MACSEC_VALIDATE_STRICT) {
c09440f7d   Sabrina Dubroca   macsec: introduce...
930
931
932
933
934
935
936
937
938
939
940
941
  			u64_stats_update_begin(&secy_stats->syncp);
  			secy_stats->stats.InPktsNoTag++;
  			u64_stats_update_end(&secy_stats->syncp);
  			continue;
  		}
  
  		/* deliver on this port */
  		nskb = skb_clone(skb, GFP_ATOMIC);
  		if (!nskb)
  			break;
  
  		nskb->dev = macsec->secy.netdev;
863483c97   Girish Moodalbail   macsec: double ac...
942
  		if (netif_rx(nskb) == NET_RX_SUCCESS) {
c09440f7d   Sabrina Dubroca   macsec: introduce...
943
944
945
  			u64_stats_update_begin(&secy_stats->syncp);
  			secy_stats->stats.InPktsUntagged++;
  			u64_stats_update_end(&secy_stats->syncp);
c09440f7d   Sabrina Dubroca   macsec: introduce...
946
  		}
3cf3227a2   Antoine Tenart   net: macsec: hard...
947
948
949
950
951
952
  
  		if (netif_running(macsec->secy.netdev) &&
  		    macsec_is_offloaded(macsec)) {
  			ret = RX_HANDLER_EXACT;
  			goto out;
  		}
c09440f7d   Sabrina Dubroca   macsec: introduce...
953
  	}
3cf3227a2   Antoine Tenart   net: macsec: hard...
954
  out:
c09440f7d   Sabrina Dubroca   macsec: introduce...
955
  	rcu_read_unlock();
3cf3227a2   Antoine Tenart   net: macsec: hard...
956
  	return ret;
c09440f7d   Sabrina Dubroca   macsec: introduce...
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
  }
  
  static rx_handler_result_t macsec_handle_frame(struct sk_buff **pskb)
  {
  	struct sk_buff *skb = *pskb;
  	struct net_device *dev = skb->dev;
  	struct macsec_eth_header *hdr;
  	struct macsec_secy *secy = NULL;
  	struct macsec_rx_sc *rx_sc;
  	struct macsec_rx_sa *rx_sa;
  	struct macsec_rxh_data *rxd;
  	struct macsec_dev *macsec;
  	sci_t sci;
  	u32 pn;
  	bool cbit;
  	struct pcpu_rx_sc_stats *rxsc_stats;
  	struct pcpu_secy_stats *secy_stats;
  	bool pulled_sci;
5491e7c6b   Paolo Abeni   macsec: enable GR...
975
  	int ret;
c09440f7d   Sabrina Dubroca   macsec: introduce...
976
977
978
979
980
  
  	if (skb_headroom(skb) < ETH_HLEN)
  		goto drop_direct;
  
  	hdr = macsec_ethhdr(skb);
3cf3227a2   Antoine Tenart   net: macsec: hard...
981
982
  	if (hdr->eth.h_proto != htons(ETH_P_MACSEC))
  		return handle_not_macsec(skb);
c09440f7d   Sabrina Dubroca   macsec: introduce...
983
984
  
  	skb = skb_unshare(skb, GFP_ATOMIC);
095c02da8   Andreas Steinmetz   macsec: fix use-a...
985
986
  	*pskb = skb;
  	if (!skb)
c09440f7d   Sabrina Dubroca   macsec: introduce...
987
  		return RX_HANDLER_CONSUMED;
c09440f7d   Sabrina Dubroca   macsec: introduce...
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
  
  	pulled_sci = pskb_may_pull(skb, macsec_extra_len(true));
  	if (!pulled_sci) {
  		if (!pskb_may_pull(skb, macsec_extra_len(false)))
  			goto drop_direct;
  	}
  
  	hdr = macsec_ethhdr(skb);
  
  	/* Frames with a SecTAG that has the TCI E bit set but the C
  	 * bit clear are discarded, as this reserved encoding is used
  	 * to identify frames with a SecTAG that are not to be
  	 * delivered to the Controlled Port.
  	 */
  	if ((hdr->tci_an & (MACSEC_TCI_C | MACSEC_TCI_E)) == MACSEC_TCI_E)
  		return RX_HANDLER_PASS;
  
  	/* now, pull the extra length */
  	if (hdr->tci_an & MACSEC_TCI_SC) {
  		if (!pulled_sci)
  			goto drop_direct;
  	}
  
  	/* ethernet header is part of crypto processing */
  	skb_push(skb, ETH_HLEN);
  
  	macsec_skb_cb(skb)->has_sci = !!(hdr->tci_an & MACSEC_TCI_SC);
  	macsec_skb_cb(skb)->assoc_num = hdr->tci_an & MACSEC_AN_MASK;
  	sci = macsec_frame_sci(hdr, macsec_skb_cb(skb)->has_sci);
  
  	rcu_read_lock();
  	rxd = macsec_data_rcu(skb->dev);
  
  	list_for_each_entry_rcu(macsec, &rxd->secys, secys) {
  		struct macsec_rx_sc *sc = find_rx_sc(&macsec->secy, sci);
7979472bb   Romain Aviolat   DRIVERS: net: mac...
1023

c78ebe1df   Sabrina Dubroca   macsec: fix refer...
1024
  		sc = sc ? macsec_rxsc_get(sc) : NULL;
c09440f7d   Sabrina Dubroca   macsec: introduce...
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
  
  		if (sc) {
  			secy = &macsec->secy;
  			rx_sc = sc;
  			break;
  		}
  	}
  
  	if (!secy)
  		goto nosci;
  
  	dev = secy->netdev;
  	macsec = macsec_priv(dev);
  	secy_stats = this_cpu_ptr(macsec->stats);
  	rxsc_stats = this_cpu_ptr(rx_sc->stats);
  
  	if (!macsec_validate_skb(skb, secy->icv_len)) {
  		u64_stats_update_begin(&secy_stats->syncp);
  		secy_stats->stats.InPktsBadTag++;
  		u64_stats_update_end(&secy_stats->syncp);
  		goto drop_nosa;
  	}
  
  	rx_sa = macsec_rxsa_get(rx_sc->sa[macsec_skb_cb(skb)->assoc_num]);
  	if (!rx_sa) {
  		/* 10.6.1 if the SA is not in use */
  
  		/* If validateFrames is Strict or the C bit in the
  		 * SecTAG is set, discard
  		 */
  		if (hdr->tci_an & MACSEC_TCI_C ||
  		    secy->validate_frames == MACSEC_VALIDATE_STRICT) {
  			u64_stats_update_begin(&rxsc_stats->syncp);
  			rxsc_stats->stats.InPktsNotUsingSA++;
  			u64_stats_update_end(&rxsc_stats->syncp);
  			goto drop_nosa;
  		}
  
  		/* not Strict, the frame (with the SecTAG and ICV
  		 * removed) is delivered to the Controlled Port.
  		 */
  		u64_stats_update_begin(&rxsc_stats->syncp);
  		rxsc_stats->stats.InPktsUnusedSA++;
  		u64_stats_update_end(&rxsc_stats->syncp);
  		goto deliver;
  	}
  
  	/* First, PN check to avoid decrypting obviously wrong packets */
  	pn = ntohl(hdr->packet_number);
  	if (secy->replay_protect) {
  		bool late;
  
  		spin_lock(&rx_sa->lock);
  		late = rx_sa->next_pn >= secy->replay_window &&
  		       pn < (rx_sa->next_pn - secy->replay_window);
  		spin_unlock(&rx_sa->lock);
  
  		if (late) {
  			u64_stats_update_begin(&rxsc_stats->syncp);
  			rxsc_stats->stats.InPktsLate++;
  			u64_stats_update_end(&rxsc_stats->syncp);
  			goto drop;
  		}
  	}
e3a3b6260   Beniamino Galvani   macsec: ensure rx...
1089
  	macsec_skb_cb(skb)->rx_sa = rx_sa;
c09440f7d   Sabrina Dubroca   macsec: introduce...
1090
1091
1092
1093
  	/* Disabled && !changed text => skip validation */
  	if (hdr->tci_an & MACSEC_TCI_C ||
  	    secy->validate_frames != MACSEC_VALIDATE_DISABLED)
  		skb = macsec_decrypt(skb, dev, rx_sa, sci, secy);
c3b7d0bd7   Sabrina Dubroca   macsec: fix rx_sa...
1094
1095
  	if (IS_ERR(skb)) {
  		/* the decrypt callback needs the reference */
c78ebe1df   Sabrina Dubroca   macsec: fix refer...
1096
  		if (PTR_ERR(skb) != -EINPROGRESS) {
c3b7d0bd7   Sabrina Dubroca   macsec: fix rx_sa...
1097
  			macsec_rxsa_put(rx_sa);
c78ebe1df   Sabrina Dubroca   macsec: fix refer...
1098
1099
  			macsec_rxsc_put(rx_sc);
  		}
c09440f7d   Sabrina Dubroca   macsec: introduce...
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
  		rcu_read_unlock();
  		*pskb = NULL;
  		return RX_HANDLER_CONSUMED;
  	}
  
  	if (!macsec_post_decrypt(skb, secy, pn))
  		goto drop;
  
  deliver:
  	macsec_finalize_skb(skb, secy->icv_len,
  			    macsec_extra_len(macsec_skb_cb(skb)->has_sci));
  	macsec_reset_skb(skb, secy->netdev);
497f358aa   Sabrina Dubroca   macsec: don't put...
1112
1113
  	if (rx_sa)
  		macsec_rxsa_put(rx_sa);
c78ebe1df   Sabrina Dubroca   macsec: fix refer...
1114
  	macsec_rxsc_put(rx_sc);
5491e7c6b   Paolo Abeni   macsec: enable GR...
1115

ba56d8ce3   Xin Long   macsec: drop skb ...
1116
  	skb_orphan(skb);
5491e7c6b   Paolo Abeni   macsec: enable GR...
1117
1118
1119
1120
1121
  	ret = gro_cells_receive(&macsec->gro_cells, skb);
  	if (ret == NET_RX_SUCCESS)
  		count_rx(dev, skb->len);
  	else
  		macsec->secy.netdev->stats.rx_dropped++;
c09440f7d   Sabrina Dubroca   macsec: introduce...
1122
1123
  
  	rcu_read_unlock();
5491e7c6b   Paolo Abeni   macsec: enable GR...
1124
1125
  	*pskb = NULL;
  	return RX_HANDLER_CONSUMED;
c09440f7d   Sabrina Dubroca   macsec: introduce...
1126
1127
1128
1129
  
  drop:
  	macsec_rxsa_put(rx_sa);
  drop_nosa:
c78ebe1df   Sabrina Dubroca   macsec: fix refer...
1130
  	macsec_rxsc_put(rx_sc);
c09440f7d   Sabrina Dubroca   macsec: introduce...
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
  	rcu_read_unlock();
  drop_direct:
  	kfree_skb(skb);
  	*pskb = NULL;
  	return RX_HANDLER_CONSUMED;
  
  nosci:
  	/* 10.6.1 if the SC is not found */
  	cbit = !!(hdr->tci_an & MACSEC_TCI_C);
  	if (!cbit)
  		macsec_finalize_skb(skb, DEFAULT_ICV_LEN,
  				    macsec_extra_len(macsec_skb_cb(skb)->has_sci));
  
  	list_for_each_entry_rcu(macsec, &rxd->secys, secys) {
  		struct sk_buff *nskb;
c09440f7d   Sabrina Dubroca   macsec: introduce...
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
  
  		secy_stats = this_cpu_ptr(macsec->stats);
  
  		/* If validateFrames is Strict or the C bit in the
  		 * SecTAG is set, discard
  		 */
  		if (cbit ||
  		    macsec->secy.validate_frames == MACSEC_VALIDATE_STRICT) {
  			u64_stats_update_begin(&secy_stats->syncp);
  			secy_stats->stats.InPktsNoSCI++;
  			u64_stats_update_end(&secy_stats->syncp);
  			continue;
  		}
  
  		/* not strict, the frame (with the SecTAG and ICV
  		 * removed) is delivered to the Controlled Port.
  		 */
  		nskb = skb_clone(skb, GFP_ATOMIC);
  		if (!nskb)
  			break;
  
  		macsec_reset_skb(nskb, macsec->secy.netdev);
  
  		ret = netif_rx(nskb);
  		if (ret == NET_RX_SUCCESS) {
  			u64_stats_update_begin(&secy_stats->syncp);
  			secy_stats->stats.InPktsUnknownSCI++;
  			u64_stats_update_end(&secy_stats->syncp);
  		} else {
  			macsec->secy.netdev->stats.rx_dropped++;
  		}
  	}
  
  	rcu_read_unlock();
  	*pskb = skb;
  	return RX_HANDLER_PASS;
  }
  
  static struct crypto_aead *macsec_alloc_tfm(char *key, int key_len, int icv_len)
  {
  	struct crypto_aead *tfm;
  	int ret;
6052f7fbc   Sabrina Dubroca   macsec: fix SA in...
1188
  	tfm = crypto_alloc_aead("gcm(aes)", 0, 0);
34aedfee2   Davide Caratti   macsec: fix error...
1189
1190
1191
  
  	if (IS_ERR(tfm))
  		return tfm;
c09440f7d   Sabrina Dubroca   macsec: introduce...
1192
1193
  
  	ret = crypto_aead_setkey(tfm, key, key_len);
34aedfee2   Davide Caratti   macsec: fix error...
1194
1195
  	if (ret < 0)
  		goto fail;
c09440f7d   Sabrina Dubroca   macsec: introduce...
1196
1197
  
  	ret = crypto_aead_setauthsize(tfm, icv_len);
34aedfee2   Davide Caratti   macsec: fix error...
1198
1199
  	if (ret < 0)
  		goto fail;
c09440f7d   Sabrina Dubroca   macsec: introduce...
1200
1201
  
  	return tfm;
34aedfee2   Davide Caratti   macsec: fix error...
1202
1203
1204
  fail:
  	crypto_free_aead(tfm);
  	return ERR_PTR(ret);
c09440f7d   Sabrina Dubroca   macsec: introduce...
1205
1206
1207
1208
1209
1210
1211
  }
  
  static int init_rx_sa(struct macsec_rx_sa *rx_sa, char *sak, int key_len,
  		      int icv_len)
  {
  	rx_sa->stats = alloc_percpu(struct macsec_rx_sa_stats);
  	if (!rx_sa->stats)
34aedfee2   Davide Caratti   macsec: fix error...
1212
  		return -ENOMEM;
c09440f7d   Sabrina Dubroca   macsec: introduce...
1213
1214
  
  	rx_sa->key.tfm = macsec_alloc_tfm(sak, key_len, icv_len);
34aedfee2   Davide Caratti   macsec: fix error...
1215
  	if (IS_ERR(rx_sa->key.tfm)) {
c09440f7d   Sabrina Dubroca   macsec: introduce...
1216
  		free_percpu(rx_sa->stats);
34aedfee2   Davide Caratti   macsec: fix error...
1217
  		return PTR_ERR(rx_sa->key.tfm);
c09440f7d   Sabrina Dubroca   macsec: introduce...
1218
1219
1220
1221
  	}
  
  	rx_sa->active = false;
  	rx_sa->next_pn = 1;
e187246f0   Elena Reshetova   drivers, net: con...
1222
  	refcount_set(&rx_sa->refcnt, 1);
c09440f7d   Sabrina Dubroca   macsec: introduce...
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
  	spin_lock_init(&rx_sa->lock);
  
  	return 0;
  }
  
  static void clear_rx_sa(struct macsec_rx_sa *rx_sa)
  {
  	rx_sa->active = false;
  
  	macsec_rxsa_put(rx_sa);
  }
  
  static void free_rx_sc(struct macsec_rx_sc *rx_sc)
  {
  	int i;
  
  	for (i = 0; i < MACSEC_NUM_AN; i++) {
  		struct macsec_rx_sa *sa = rtnl_dereference(rx_sc->sa[i]);
  
  		RCU_INIT_POINTER(rx_sc->sa[i], NULL);
  		if (sa)
  			clear_rx_sa(sa);
  	}
  
  	macsec_rxsc_put(rx_sc);
  }
  
  static struct macsec_rx_sc *del_rx_sc(struct macsec_secy *secy, sci_t sci)
  {
  	struct macsec_rx_sc *rx_sc, __rcu **rx_scp;
  
  	for (rx_scp = &secy->rx_sc, rx_sc = rtnl_dereference(*rx_scp);
  	     rx_sc;
  	     rx_scp = &rx_sc->next, rx_sc = rtnl_dereference(*rx_scp)) {
  		if (rx_sc->sci == sci) {
  			if (rx_sc->active)
  				secy->n_rx_sc--;
  			rcu_assign_pointer(*rx_scp, rx_sc->next);
  			return rx_sc;
  		}
  	}
  
  	return NULL;
  }
  
  static struct macsec_rx_sc *create_rx_sc(struct net_device *dev, sci_t sci)
  {
  	struct macsec_rx_sc *rx_sc;
  	struct macsec_dev *macsec;
  	struct net_device *real_dev = macsec_priv(dev)->real_dev;
  	struct macsec_rxh_data *rxd = macsec_data_rtnl(real_dev);
  	struct macsec_secy *secy;
  
  	list_for_each_entry(macsec, &rxd->secys, secys) {
  		if (find_rx_sc_rtnl(&macsec->secy, sci))
  			return ERR_PTR(-EEXIST);
  	}
  
  	rx_sc = kzalloc(sizeof(*rx_sc), GFP_KERNEL);
  	if (!rx_sc)
  		return ERR_PTR(-ENOMEM);
  
  	rx_sc->stats = netdev_alloc_pcpu_stats(struct pcpu_rx_sc_stats);
  	if (!rx_sc->stats) {
  		kfree(rx_sc);
  		return ERR_PTR(-ENOMEM);
  	}
  
  	rx_sc->sci = sci;
  	rx_sc->active = true;
8676d76f0   Elena Reshetova   drivers, net: con...
1293
  	refcount_set(&rx_sc->refcnt, 1);
c09440f7d   Sabrina Dubroca   macsec: introduce...
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
  
  	secy = &macsec_priv(dev)->secy;
  	rcu_assign_pointer(rx_sc->next, secy->rx_sc);
  	rcu_assign_pointer(secy->rx_sc, rx_sc);
  
  	if (rx_sc->active)
  		secy->n_rx_sc++;
  
  	return rx_sc;
  }
  
  static int init_tx_sa(struct macsec_tx_sa *tx_sa, char *sak, int key_len,
  		      int icv_len)
  {
  	tx_sa->stats = alloc_percpu(struct macsec_tx_sa_stats);
  	if (!tx_sa->stats)
34aedfee2   Davide Caratti   macsec: fix error...
1310
  		return -ENOMEM;
c09440f7d   Sabrina Dubroca   macsec: introduce...
1311
1312
  
  	tx_sa->key.tfm = macsec_alloc_tfm(sak, key_len, icv_len);
34aedfee2   Davide Caratti   macsec: fix error...
1313
  	if (IS_ERR(tx_sa->key.tfm)) {
c09440f7d   Sabrina Dubroca   macsec: introduce...
1314
  		free_percpu(tx_sa->stats);
34aedfee2   Davide Caratti   macsec: fix error...
1315
  		return PTR_ERR(tx_sa->key.tfm);
c09440f7d   Sabrina Dubroca   macsec: introduce...
1316
1317
1318
  	}
  
  	tx_sa->active = false;
28206cdb3   Elena Reshetova   drivers, net: con...
1319
  	refcount_set(&tx_sa->refcnt, 1);
c09440f7d   Sabrina Dubroca   macsec: introduce...
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
  	spin_lock_init(&tx_sa->lock);
  
  	return 0;
  }
  
  static void clear_tx_sa(struct macsec_tx_sa *tx_sa)
  {
  	tx_sa->active = false;
  
  	macsec_txsa_put(tx_sa);
  }
489111e5c   Johannes Berg   genetlink: static...
1331
  static struct genl_family macsec_fam;
c09440f7d   Sabrina Dubroca   macsec: introduce...
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
  
  static struct net_device *get_dev_from_nl(struct net *net,
  					  struct nlattr **attrs)
  {
  	int ifindex = nla_get_u32(attrs[MACSEC_ATTR_IFINDEX]);
  	struct net_device *dev;
  
  	dev = __dev_get_by_index(net, ifindex);
  	if (!dev)
  		return ERR_PTR(-ENODEV);
  
  	if (!netif_is_macsec(dev))
  		return ERR_PTR(-ENODEV);
  
  	return dev;
  }
  
  static sci_t nla_get_sci(const struct nlattr *nla)
  {
  	return (__force sci_t)nla_get_u64(nla);
  }
f60d94c00   Nicolas Dichtel   macsec: use nla_p...
1353
1354
  static int nla_put_sci(struct sk_buff *skb, int attrtype, sci_t value,
  		       int padattr)
c09440f7d   Sabrina Dubroca   macsec: introduce...
1355
  {
f60d94c00   Nicolas Dichtel   macsec: use nla_p...
1356
  	return nla_put_u64_64bit(skb, attrtype, (__force u64)value, padattr);
c09440f7d   Sabrina Dubroca   macsec: introduce...
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
  }
  
  static struct macsec_tx_sa *get_txsa_from_nl(struct net *net,
  					     struct nlattr **attrs,
  					     struct nlattr **tb_sa,
  					     struct net_device **devp,
  					     struct macsec_secy **secyp,
  					     struct macsec_tx_sc **scp,
  					     u8 *assoc_num)
  {
  	struct net_device *dev;
  	struct macsec_secy *secy;
  	struct macsec_tx_sc *tx_sc;
  	struct macsec_tx_sa *tx_sa;
  
  	if (!tb_sa[MACSEC_SA_ATTR_AN])
  		return ERR_PTR(-EINVAL);
  
  	*assoc_num = nla_get_u8(tb_sa[MACSEC_SA_ATTR_AN]);
  
  	dev = get_dev_from_nl(net, attrs);
  	if (IS_ERR(dev))
  		return ERR_CAST(dev);
  
  	if (*assoc_num >= MACSEC_NUM_AN)
  		return ERR_PTR(-EINVAL);
  
  	secy = &macsec_priv(dev)->secy;
  	tx_sc = &secy->tx_sc;
  
  	tx_sa = rtnl_dereference(tx_sc->sa[*assoc_num]);
  	if (!tx_sa)
  		return ERR_PTR(-ENODEV);
  
  	*devp = dev;
  	*scp = tx_sc;
  	*secyp = secy;
  	return tx_sa;
  }
  
  static struct macsec_rx_sc *get_rxsc_from_nl(struct net *net,
  					     struct nlattr **attrs,
  					     struct nlattr **tb_rxsc,
  					     struct net_device **devp,
  					     struct macsec_secy **secyp)
  {
  	struct net_device *dev;
  	struct macsec_secy *secy;
  	struct macsec_rx_sc *rx_sc;
  	sci_t sci;
  
  	dev = get_dev_from_nl(net, attrs);
  	if (IS_ERR(dev))
  		return ERR_CAST(dev);
  
  	secy = &macsec_priv(dev)->secy;
  
  	if (!tb_rxsc[MACSEC_RXSC_ATTR_SCI])
  		return ERR_PTR(-EINVAL);
  
  	sci = nla_get_sci(tb_rxsc[MACSEC_RXSC_ATTR_SCI]);
  	rx_sc = find_rx_sc_rtnl(secy, sci);
  	if (!rx_sc)
  		return ERR_PTR(-ENODEV);
  
  	*secyp = secy;
  	*devp = dev;
  
  	return rx_sc;
  }
  
  static struct macsec_rx_sa *get_rxsa_from_nl(struct net *net,
  					     struct nlattr **attrs,
  					     struct nlattr **tb_rxsc,
  					     struct nlattr **tb_sa,
  					     struct net_device **devp,
  					     struct macsec_secy **secyp,
  					     struct macsec_rx_sc **scp,
  					     u8 *assoc_num)
  {
  	struct macsec_rx_sc *rx_sc;
  	struct macsec_rx_sa *rx_sa;
  
  	if (!tb_sa[MACSEC_SA_ATTR_AN])
  		return ERR_PTR(-EINVAL);
  
  	*assoc_num = nla_get_u8(tb_sa[MACSEC_SA_ATTR_AN]);
  	if (*assoc_num >= MACSEC_NUM_AN)
  		return ERR_PTR(-EINVAL);
  
  	rx_sc = get_rxsc_from_nl(net, attrs, tb_rxsc, devp, secyp);
  	if (IS_ERR(rx_sc))
  		return ERR_CAST(rx_sc);
  
  	rx_sa = rtnl_dereference(rx_sc->sa[*assoc_num]);
  	if (!rx_sa)
  		return ERR_PTR(-ENODEV);
  
  	*scp = rx_sc;
  	return rx_sa;
  }
c09440f7d   Sabrina Dubroca   macsec: introduce...
1458
1459
1460
1461
  static const struct nla_policy macsec_genl_policy[NUM_MACSEC_ATTR] = {
  	[MACSEC_ATTR_IFINDEX] = { .type = NLA_U32 },
  	[MACSEC_ATTR_RXSC_CONFIG] = { .type = NLA_NESTED },
  	[MACSEC_ATTR_SA_CONFIG] = { .type = NLA_NESTED },
dcb780fb2   Antoine Tenart   net: macsec: add ...
1462
  	[MACSEC_ATTR_OFFLOAD] = { .type = NLA_NESTED },
c09440f7d   Sabrina Dubroca   macsec: introduce...
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
  };
  
  static const struct nla_policy macsec_genl_rxsc_policy[NUM_MACSEC_RXSC_ATTR] = {
  	[MACSEC_RXSC_ATTR_SCI] = { .type = NLA_U64 },
  	[MACSEC_RXSC_ATTR_ACTIVE] = { .type = NLA_U8 },
  };
  
  static const struct nla_policy macsec_genl_sa_policy[NUM_MACSEC_SA_ATTR] = {
  	[MACSEC_SA_ATTR_AN] = { .type = NLA_U8 },
  	[MACSEC_SA_ATTR_ACTIVE] = { .type = NLA_U8 },
  	[MACSEC_SA_ATTR_PN] = { .type = NLA_U32 },
8acca6ace   Sabrina Dubroca   macsec: key ident...
1474
1475
  	[MACSEC_SA_ATTR_KEYID] = { .type = NLA_BINARY,
  				   .len = MACSEC_KEYID_LEN, },
c09440f7d   Sabrina Dubroca   macsec: introduce...
1476
  	[MACSEC_SA_ATTR_KEY] = { .type = NLA_BINARY,
e8660ded7   Sabrina Dubroca   macsec: restore u...
1477
  				 .len = MACSEC_MAX_KEY_LEN, },
c09440f7d   Sabrina Dubroca   macsec: introduce...
1478
  };
dcb780fb2   Antoine Tenart   net: macsec: add ...
1479
1480
1481
  static const struct nla_policy macsec_genl_offload_policy[NUM_MACSEC_OFFLOAD_ATTR] = {
  	[MACSEC_OFFLOAD_ATTR_TYPE] = { .type = NLA_U8 },
  };
3cf3227a2   Antoine Tenart   net: macsec: hard...
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
  /* Offloads an operation to a device driver */
  static int macsec_offload(int (* const func)(struct macsec_context *),
  			  struct macsec_context *ctx)
  {
  	int ret;
  
  	if (unlikely(!func))
  		return 0;
  
  	if (ctx->offload == MACSEC_OFFLOAD_PHY)
  		mutex_lock(&ctx->phydev->lock);
  
  	/* Phase I: prepare. The drive should fail here if there are going to be
  	 * issues in the commit phase.
  	 */
  	ctx->prepare = true;
  	ret = (*func)(ctx);
  	if (ret)
  		goto phy_unlock;
  
  	/* Phase II: commit. This step cannot fail. */
  	ctx->prepare = false;
  	ret = (*func)(ctx);
  	/* This should never happen: commit is not allowed to fail */
  	if (unlikely(ret))
  		WARN(1, "MACsec offloading commit failed (%d)
  ", ret);
  
  phy_unlock:
  	if (ctx->offload == MACSEC_OFFLOAD_PHY)
  		mutex_unlock(&ctx->phydev->lock);
  
  	return ret;
  }
c09440f7d   Sabrina Dubroca   macsec: introduce...
1516
1517
1518
1519
  static int parse_sa_config(struct nlattr **attrs, struct nlattr **tb_sa)
  {
  	if (!attrs[MACSEC_ATTR_SA_CONFIG])
  		return -EINVAL;
8cb081746   Johannes Berg   netlink: make val...
1520
  	if (nla_parse_nested_deprecated(tb_sa, MACSEC_SA_ATTR_MAX, attrs[MACSEC_ATTR_SA_CONFIG], macsec_genl_sa_policy, NULL))
c09440f7d   Sabrina Dubroca   macsec: introduce...
1521
1522
1523
1524
1525
1526
1527
1528
1529
  		return -EINVAL;
  
  	return 0;
  }
  
  static int parse_rxsc_config(struct nlattr **attrs, struct nlattr **tb_rxsc)
  {
  	if (!attrs[MACSEC_ATTR_RXSC_CONFIG])
  		return -EINVAL;
8cb081746   Johannes Berg   netlink: make val...
1530
  	if (nla_parse_nested_deprecated(tb_rxsc, MACSEC_RXSC_ATTR_MAX, attrs[MACSEC_ATTR_RXSC_CONFIG], macsec_genl_rxsc_policy, NULL))
c09440f7d   Sabrina Dubroca   macsec: introduce...
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
  		return -EINVAL;
  
  	return 0;
  }
  
  static bool validate_add_rxsa(struct nlattr **attrs)
  {
  	if (!attrs[MACSEC_SA_ATTR_AN] ||
  	    !attrs[MACSEC_SA_ATTR_KEY] ||
  	    !attrs[MACSEC_SA_ATTR_KEYID])
  		return false;
  
  	if (nla_get_u8(attrs[MACSEC_SA_ATTR_AN]) >= MACSEC_NUM_AN)
  		return false;
  
  	if (attrs[MACSEC_SA_ATTR_PN] && nla_get_u32(attrs[MACSEC_SA_ATTR_PN]) == 0)
  		return false;
  
  	if (attrs[MACSEC_SA_ATTR_ACTIVE]) {
  		if (nla_get_u8(attrs[MACSEC_SA_ATTR_ACTIVE]) > 1)
  			return false;
  	}
8acca6ace   Sabrina Dubroca   macsec: key ident...
1553
1554
  	if (nla_len(attrs[MACSEC_SA_ATTR_KEYID]) != MACSEC_KEYID_LEN)
  		return false;
c09440f7d   Sabrina Dubroca   macsec: introduce...
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
  	return true;
  }
  
  static int macsec_add_rxsa(struct sk_buff *skb, struct genl_info *info)
  {
  	struct net_device *dev;
  	struct nlattr **attrs = info->attrs;
  	struct macsec_secy *secy;
  	struct macsec_rx_sc *rx_sc;
  	struct macsec_rx_sa *rx_sa;
  	unsigned char assoc_num;
  	struct nlattr *tb_rxsc[MACSEC_RXSC_ATTR_MAX + 1];
  	struct nlattr *tb_sa[MACSEC_SA_ATTR_MAX + 1];
34aedfee2   Davide Caratti   macsec: fix error...
1568
  	int err;
c09440f7d   Sabrina Dubroca   macsec: introduce...
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
  
  	if (!attrs[MACSEC_ATTR_IFINDEX])
  		return -EINVAL;
  
  	if (parse_sa_config(attrs, tb_sa))
  		return -EINVAL;
  
  	if (parse_rxsc_config(attrs, tb_rxsc))
  		return -EINVAL;
  
  	if (!validate_add_rxsa(tb_sa))
  		return -EINVAL;
  
  	rtnl_lock();
  	rx_sc = get_rxsc_from_nl(genl_info_net(info), attrs, tb_rxsc, &dev, &secy);
36b232c88   Sabrina Dubroca   macsec: RXSAs don...
1584
  	if (IS_ERR(rx_sc)) {
c09440f7d   Sabrina Dubroca   macsec: introduce...
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
  		rtnl_unlock();
  		return PTR_ERR(rx_sc);
  	}
  
  	assoc_num = nla_get_u8(tb_sa[MACSEC_SA_ATTR_AN]);
  
  	if (nla_len(tb_sa[MACSEC_SA_ATTR_KEY]) != secy->key_len) {
  		pr_notice("macsec: nl: add_rxsa: bad key length: %d != %d
  ",
  			  nla_len(tb_sa[MACSEC_SA_ATTR_KEY]), secy->key_len);
  		rtnl_unlock();
  		return -EINVAL;
  	}
  
  	rx_sa = rtnl_dereference(rx_sc->sa[assoc_num]);
  	if (rx_sa) {
  		rtnl_unlock();
  		return -EBUSY;
  	}
  
  	rx_sa = kmalloc(sizeof(*rx_sa), GFP_KERNEL);
34aedfee2   Davide Caratti   macsec: fix error...
1606
  	if (!rx_sa) {
c09440f7d   Sabrina Dubroca   macsec: introduce...
1607
1608
1609
  		rtnl_unlock();
  		return -ENOMEM;
  	}
34aedfee2   Davide Caratti   macsec: fix error...
1610
1611
1612
1613
1614
1615
1616
  	err = init_rx_sa(rx_sa, nla_data(tb_sa[MACSEC_SA_ATTR_KEY]),
  			 secy->key_len, secy->icv_len);
  	if (err < 0) {
  		kfree(rx_sa);
  		rtnl_unlock();
  		return err;
  	}
c09440f7d   Sabrina Dubroca   macsec: introduce...
1617
1618
1619
1620
1621
1622
1623
1624
  	if (tb_sa[MACSEC_SA_ATTR_PN]) {
  		spin_lock_bh(&rx_sa->lock);
  		rx_sa->next_pn = nla_get_u32(tb_sa[MACSEC_SA_ATTR_PN]);
  		spin_unlock_bh(&rx_sa->lock);
  	}
  
  	if (tb_sa[MACSEC_SA_ATTR_ACTIVE])
  		rx_sa->active = !!nla_get_u8(tb_sa[MACSEC_SA_ATTR_ACTIVE]);
c09440f7d   Sabrina Dubroca   macsec: introduce...
1625
  	rx_sa->sc = rx_sc;
3cf3227a2   Antoine Tenart   net: macsec: hard...
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
  
  	/* If h/w offloading is available, propagate to the device */
  	if (macsec_is_offloaded(netdev_priv(dev))) {
  		const struct macsec_ops *ops;
  		struct macsec_context ctx;
  
  		ops = macsec_get_ops(netdev_priv(dev), &ctx);
  		if (!ops) {
  			err = -EOPNOTSUPP;
  			goto cleanup;
  		}
  
  		ctx.sa.assoc_num = assoc_num;
  		ctx.sa.rx_sa = rx_sa;
  		memcpy(ctx.sa.key, nla_data(tb_sa[MACSEC_SA_ATTR_KEY]),
  		       MACSEC_KEYID_LEN);
  
  		err = macsec_offload(ops->mdo_add_rxsa, &ctx);
  		if (err)
  			goto cleanup;
  	}
  
  	nla_memcpy(rx_sa->key.id, tb_sa[MACSEC_SA_ATTR_KEYID], MACSEC_KEYID_LEN);
c09440f7d   Sabrina Dubroca   macsec: introduce...
1649
1650
1651
1652
1653
  	rcu_assign_pointer(rx_sc->sa[assoc_num], rx_sa);
  
  	rtnl_unlock();
  
  	return 0;
3cf3227a2   Antoine Tenart   net: macsec: hard...
1654
1655
1656
1657
1658
  
  cleanup:
  	kfree(rx_sa);
  	rtnl_unlock();
  	return err;
c09440f7d   Sabrina Dubroca   macsec: introduce...
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
  }
  
  static bool validate_add_rxsc(struct nlattr **attrs)
  {
  	if (!attrs[MACSEC_RXSC_ATTR_SCI])
  		return false;
  
  	if (attrs[MACSEC_RXSC_ATTR_ACTIVE]) {
  		if (nla_get_u8(attrs[MACSEC_RXSC_ATTR_ACTIVE]) > 1)
  			return false;
  	}
  
  	return true;
  }
  
  static int macsec_add_rxsc(struct sk_buff *skb, struct genl_info *info)
  {
  	struct net_device *dev;
  	sci_t sci = MACSEC_UNDEF_SCI;
  	struct nlattr **attrs = info->attrs;
  	struct macsec_rx_sc *rx_sc;
  	struct nlattr *tb_rxsc[MACSEC_RXSC_ATTR_MAX + 1];
3cf3227a2   Antoine Tenart   net: macsec: hard...
1681
1682
  	bool was_active;
  	int ret;
c09440f7d   Sabrina Dubroca   macsec: introduce...
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
  
  	if (!attrs[MACSEC_ATTR_IFINDEX])
  		return -EINVAL;
  
  	if (parse_rxsc_config(attrs, tb_rxsc))
  		return -EINVAL;
  
  	if (!validate_add_rxsc(tb_rxsc))
  		return -EINVAL;
  
  	rtnl_lock();
  	dev = get_dev_from_nl(genl_info_net(info), attrs);
  	if (IS_ERR(dev)) {
  		rtnl_unlock();
  		return PTR_ERR(dev);
  	}
  
  	sci = nla_get_sci(tb_rxsc[MACSEC_RXSC_ATTR_SCI]);
  
  	rx_sc = create_rx_sc(dev, sci);
  	if (IS_ERR(rx_sc)) {
  		rtnl_unlock();
  		return PTR_ERR(rx_sc);
  	}
3cf3227a2   Antoine Tenart   net: macsec: hard...
1707
  	was_active = rx_sc->active;
c09440f7d   Sabrina Dubroca   macsec: introduce...
1708
1709
  	if (tb_rxsc[MACSEC_RXSC_ATTR_ACTIVE])
  		rx_sc->active = !!nla_get_u8(tb_rxsc[MACSEC_RXSC_ATTR_ACTIVE]);
3cf3227a2   Antoine Tenart   net: macsec: hard...
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
  	if (macsec_is_offloaded(netdev_priv(dev))) {
  		const struct macsec_ops *ops;
  		struct macsec_context ctx;
  
  		ops = macsec_get_ops(netdev_priv(dev), &ctx);
  		if (!ops) {
  			ret = -EOPNOTSUPP;
  			goto cleanup;
  		}
  
  		ctx.rx_sc = rx_sc;
  
  		ret = macsec_offload(ops->mdo_add_rxsc, &ctx);
  		if (ret)
  			goto cleanup;
  	}
c09440f7d   Sabrina Dubroca   macsec: introduce...
1726
1727
1728
  	rtnl_unlock();
  
  	return 0;
3cf3227a2   Antoine Tenart   net: macsec: hard...
1729
1730
1731
1732
1733
  
  cleanup:
  	rx_sc->active = was_active;
  	rtnl_unlock();
  	return ret;
c09440f7d   Sabrina Dubroca   macsec: introduce...
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
  }
  
  static bool validate_add_txsa(struct nlattr **attrs)
  {
  	if (!attrs[MACSEC_SA_ATTR_AN] ||
  	    !attrs[MACSEC_SA_ATTR_PN] ||
  	    !attrs[MACSEC_SA_ATTR_KEY] ||
  	    !attrs[MACSEC_SA_ATTR_KEYID])
  		return false;
  
  	if (nla_get_u8(attrs[MACSEC_SA_ATTR_AN]) >= MACSEC_NUM_AN)
  		return false;
  
  	if (nla_get_u32(attrs[MACSEC_SA_ATTR_PN]) == 0)
  		return false;
  
  	if (attrs[MACSEC_SA_ATTR_ACTIVE]) {
  		if (nla_get_u8(attrs[MACSEC_SA_ATTR_ACTIVE]) > 1)
  			return false;
  	}
8acca6ace   Sabrina Dubroca   macsec: key ident...
1754
1755
  	if (nla_len(attrs[MACSEC_SA_ATTR_KEYID]) != MACSEC_KEYID_LEN)
  		return false;
c09440f7d   Sabrina Dubroca   macsec: introduce...
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
  	return true;
  }
  
  static int macsec_add_txsa(struct sk_buff *skb, struct genl_info *info)
  {
  	struct net_device *dev;
  	struct nlattr **attrs = info->attrs;
  	struct macsec_secy *secy;
  	struct macsec_tx_sc *tx_sc;
  	struct macsec_tx_sa *tx_sa;
  	unsigned char assoc_num;
  	struct nlattr *tb_sa[MACSEC_SA_ATTR_MAX + 1];
3cf3227a2   Antoine Tenart   net: macsec: hard...
1768
  	bool was_operational;
34aedfee2   Davide Caratti   macsec: fix error...
1769
  	int err;
c09440f7d   Sabrina Dubroca   macsec: introduce...
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
  
  	if (!attrs[MACSEC_ATTR_IFINDEX])
  		return -EINVAL;
  
  	if (parse_sa_config(attrs, tb_sa))
  		return -EINVAL;
  
  	if (!validate_add_txsa(tb_sa))
  		return -EINVAL;
  
  	rtnl_lock();
  	dev = get_dev_from_nl(genl_info_net(info), attrs);
  	if (IS_ERR(dev)) {
  		rtnl_unlock();
  		return PTR_ERR(dev);
  	}
  
  	secy = &macsec_priv(dev)->secy;
  	tx_sc = &secy->tx_sc;
  
  	assoc_num = nla_get_u8(tb_sa[MACSEC_SA_ATTR_AN]);
  
  	if (nla_len(tb_sa[MACSEC_SA_ATTR_KEY]) != secy->key_len) {
  		pr_notice("macsec: nl: add_txsa: bad key length: %d != %d
  ",
  			  nla_len(tb_sa[MACSEC_SA_ATTR_KEY]), secy->key_len);
  		rtnl_unlock();
  		return -EINVAL;
  	}
  
  	tx_sa = rtnl_dereference(tx_sc->sa[assoc_num]);
  	if (tx_sa) {
  		rtnl_unlock();
  		return -EBUSY;
  	}
  
  	tx_sa = kmalloc(sizeof(*tx_sa), GFP_KERNEL);
34aedfee2   Davide Caratti   macsec: fix error...
1807
  	if (!tx_sa) {
c09440f7d   Sabrina Dubroca   macsec: introduce...
1808
1809
1810
  		rtnl_unlock();
  		return -ENOMEM;
  	}
34aedfee2   Davide Caratti   macsec: fix error...
1811
1812
1813
1814
1815
1816
1817
  	err = init_tx_sa(tx_sa, nla_data(tb_sa[MACSEC_SA_ATTR_KEY]),
  			 secy->key_len, secy->icv_len);
  	if (err < 0) {
  		kfree(tx_sa);
  		rtnl_unlock();
  		return err;
  	}
c09440f7d   Sabrina Dubroca   macsec: introduce...
1818
1819
1820
1821
1822
1823
  	spin_lock_bh(&tx_sa->lock);
  	tx_sa->next_pn = nla_get_u32(tb_sa[MACSEC_SA_ATTR_PN]);
  	spin_unlock_bh(&tx_sa->lock);
  
  	if (tb_sa[MACSEC_SA_ATTR_ACTIVE])
  		tx_sa->active = !!nla_get_u8(tb_sa[MACSEC_SA_ATTR_ACTIVE]);
3cf3227a2   Antoine Tenart   net: macsec: hard...
1824
  	was_operational = secy->operational;
c09440f7d   Sabrina Dubroca   macsec: introduce...
1825
1826
  	if (assoc_num == tx_sc->encoding_sa && tx_sa->active)
  		secy->operational = true;
3cf3227a2   Antoine Tenart   net: macsec: hard...
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
  	/* If h/w offloading is available, propagate to the device */
  	if (macsec_is_offloaded(netdev_priv(dev))) {
  		const struct macsec_ops *ops;
  		struct macsec_context ctx;
  
  		ops = macsec_get_ops(netdev_priv(dev), &ctx);
  		if (!ops) {
  			err = -EOPNOTSUPP;
  			goto cleanup;
  		}
  
  		ctx.sa.assoc_num = assoc_num;
  		ctx.sa.tx_sa = tx_sa;
  		memcpy(ctx.sa.key, nla_data(tb_sa[MACSEC_SA_ATTR_KEY]),
  		       MACSEC_KEYID_LEN);
  
  		err = macsec_offload(ops->mdo_add_txsa, &ctx);
  		if (err)
  			goto cleanup;
  	}
  
  	nla_memcpy(tx_sa->key.id, tb_sa[MACSEC_SA_ATTR_KEYID], MACSEC_KEYID_LEN);
c09440f7d   Sabrina Dubroca   macsec: introduce...
1849
1850
1851
1852
1853
  	rcu_assign_pointer(tx_sc->sa[assoc_num], tx_sa);
  
  	rtnl_unlock();
  
  	return 0;
3cf3227a2   Antoine Tenart   net: macsec: hard...
1854
1855
1856
1857
1858
1859
  
  cleanup:
  	secy->operational = was_operational;
  	kfree(tx_sa);
  	rtnl_unlock();
  	return err;
c09440f7d   Sabrina Dubroca   macsec: introduce...
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
  }
  
  static int macsec_del_rxsa(struct sk_buff *skb, struct genl_info *info)
  {
  	struct nlattr **attrs = info->attrs;
  	struct net_device *dev;
  	struct macsec_secy *secy;
  	struct macsec_rx_sc *rx_sc;
  	struct macsec_rx_sa *rx_sa;
  	u8 assoc_num;
  	struct nlattr *tb_rxsc[MACSEC_RXSC_ATTR_MAX + 1];
  	struct nlattr *tb_sa[MACSEC_SA_ATTR_MAX + 1];
3cf3227a2   Antoine Tenart   net: macsec: hard...
1872
  	int ret;
c09440f7d   Sabrina Dubroca   macsec: introduce...
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
  
  	if (!attrs[MACSEC_ATTR_IFINDEX])
  		return -EINVAL;
  
  	if (parse_sa_config(attrs, tb_sa))
  		return -EINVAL;
  
  	if (parse_rxsc_config(attrs, tb_rxsc))
  		return -EINVAL;
  
  	rtnl_lock();
  	rx_sa = get_rxsa_from_nl(genl_info_net(info), attrs, tb_rxsc, tb_sa,
  				 &dev, &secy, &rx_sc, &assoc_num);
  	if (IS_ERR(rx_sa)) {
  		rtnl_unlock();
  		return PTR_ERR(rx_sa);
  	}
  
  	if (rx_sa->active) {
  		rtnl_unlock();
  		return -EBUSY;
  	}
3cf3227a2   Antoine Tenart   net: macsec: hard...
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
  	/* If h/w offloading is available, propagate to the device */
  	if (macsec_is_offloaded(netdev_priv(dev))) {
  		const struct macsec_ops *ops;
  		struct macsec_context ctx;
  
  		ops = macsec_get_ops(netdev_priv(dev), &ctx);
  		if (!ops) {
  			ret = -EOPNOTSUPP;
  			goto cleanup;
  		}
  
  		ctx.sa.assoc_num = assoc_num;
  		ctx.sa.rx_sa = rx_sa;
  
  		ret = macsec_offload(ops->mdo_del_rxsa, &ctx);
  		if (ret)
  			goto cleanup;
  	}
c09440f7d   Sabrina Dubroca   macsec: introduce...
1913
1914
1915
1916
1917
1918
  	RCU_INIT_POINTER(rx_sc->sa[assoc_num], NULL);
  	clear_rx_sa(rx_sa);
  
  	rtnl_unlock();
  
  	return 0;
3cf3227a2   Antoine Tenart   net: macsec: hard...
1919
1920
1921
1922
  
  cleanup:
  	rtnl_unlock();
  	return ret;
c09440f7d   Sabrina Dubroca   macsec: introduce...
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
  }
  
  static int macsec_del_rxsc(struct sk_buff *skb, struct genl_info *info)
  {
  	struct nlattr **attrs = info->attrs;
  	struct net_device *dev;
  	struct macsec_secy *secy;
  	struct macsec_rx_sc *rx_sc;
  	sci_t sci;
  	struct nlattr *tb_rxsc[MACSEC_RXSC_ATTR_MAX + 1];
3cf3227a2   Antoine Tenart   net: macsec: hard...
1933
  	int ret;
c09440f7d   Sabrina Dubroca   macsec: introduce...
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
  
  	if (!attrs[MACSEC_ATTR_IFINDEX])
  		return -EINVAL;
  
  	if (parse_rxsc_config(attrs, tb_rxsc))
  		return -EINVAL;
  
  	if (!tb_rxsc[MACSEC_RXSC_ATTR_SCI])
  		return -EINVAL;
  
  	rtnl_lock();
  	dev = get_dev_from_nl(genl_info_net(info), info->attrs);
  	if (IS_ERR(dev)) {
  		rtnl_unlock();
  		return PTR_ERR(dev);
  	}
  
  	secy = &macsec_priv(dev)->secy;
  	sci = nla_get_sci(tb_rxsc[MACSEC_RXSC_ATTR_SCI]);
  
  	rx_sc = del_rx_sc(secy, sci);
  	if (!rx_sc) {
  		rtnl_unlock();
  		return -ENODEV;
  	}
3cf3227a2   Antoine Tenart   net: macsec: hard...
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
  	/* If h/w offloading is available, propagate to the device */
  	if (macsec_is_offloaded(netdev_priv(dev))) {
  		const struct macsec_ops *ops;
  		struct macsec_context ctx;
  
  		ops = macsec_get_ops(netdev_priv(dev), &ctx);
  		if (!ops) {
  			ret = -EOPNOTSUPP;
  			goto cleanup;
  		}
  
  		ctx.rx_sc = rx_sc;
  		ret = macsec_offload(ops->mdo_del_rxsc, &ctx);
  		if (ret)
  			goto cleanup;
  	}
c09440f7d   Sabrina Dubroca   macsec: introduce...
1975
1976
1977
1978
  	free_rx_sc(rx_sc);
  	rtnl_unlock();
  
  	return 0;
3cf3227a2   Antoine Tenart   net: macsec: hard...
1979
1980
1981
1982
  
  cleanup:
  	rtnl_unlock();
  	return ret;
c09440f7d   Sabrina Dubroca   macsec: introduce...
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
  }
  
  static int macsec_del_txsa(struct sk_buff *skb, struct genl_info *info)
  {
  	struct nlattr **attrs = info->attrs;
  	struct net_device *dev;
  	struct macsec_secy *secy;
  	struct macsec_tx_sc *tx_sc;
  	struct macsec_tx_sa *tx_sa;
  	u8 assoc_num;
  	struct nlattr *tb_sa[MACSEC_SA_ATTR_MAX + 1];
3cf3227a2   Antoine Tenart   net: macsec: hard...
1994
  	int ret;
c09440f7d   Sabrina Dubroca   macsec: introduce...
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
  
  	if (!attrs[MACSEC_ATTR_IFINDEX])
  		return -EINVAL;
  
  	if (parse_sa_config(attrs, tb_sa))
  		return -EINVAL;
  
  	rtnl_lock();
  	tx_sa = get_txsa_from_nl(genl_info_net(info), attrs, tb_sa,
  				 &dev, &secy, &tx_sc, &assoc_num);
  	if (IS_ERR(tx_sa)) {
  		rtnl_unlock();
  		return PTR_ERR(tx_sa);
  	}
  
  	if (tx_sa->active) {
  		rtnl_unlock();
  		return -EBUSY;
  	}
3cf3227a2   Antoine Tenart   net: macsec: hard...
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
  	/* If h/w offloading is available, propagate to the device */
  	if (macsec_is_offloaded(netdev_priv(dev))) {
  		const struct macsec_ops *ops;
  		struct macsec_context ctx;
  
  		ops = macsec_get_ops(netdev_priv(dev), &ctx);
  		if (!ops) {
  			ret = -EOPNOTSUPP;
  			goto cleanup;
  		}
  
  		ctx.sa.assoc_num = assoc_num;
  		ctx.sa.tx_sa = tx_sa;
  
  		ret = macsec_offload(ops->mdo_del_txsa, &ctx);
  		if (ret)
  			goto cleanup;
  	}
c09440f7d   Sabrina Dubroca   macsec: introduce...
2032
2033
2034
2035
2036
2037
  	RCU_INIT_POINTER(tx_sc->sa[assoc_num], NULL);
  	clear_tx_sa(tx_sa);
  
  	rtnl_unlock();
  
  	return 0;
3cf3227a2   Antoine Tenart   net: macsec: hard...
2038
2039
2040
2041
  
  cleanup:
  	rtnl_unlock();
  	return ret;
c09440f7d   Sabrina Dubroca   macsec: introduce...
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
  }
  
  static bool validate_upd_sa(struct nlattr **attrs)
  {
  	if (!attrs[MACSEC_SA_ATTR_AN] ||
  	    attrs[MACSEC_SA_ATTR_KEY] ||
  	    attrs[MACSEC_SA_ATTR_KEYID])
  		return false;
  
  	if (nla_get_u8(attrs[MACSEC_SA_ATTR_AN]) >= MACSEC_NUM_AN)
  		return false;
  
  	if (attrs[MACSEC_SA_ATTR_PN] && nla_get_u32(attrs[MACSEC_SA_ATTR_PN]) == 0)
  		return false;
  
  	if (attrs[MACSEC_SA_ATTR_ACTIVE]) {
  		if (nla_get_u8(attrs[MACSEC_SA_ATTR_ACTIVE]) > 1)
  			return false;
  	}
  
  	return true;
  }
  
  static int macsec_upd_txsa(struct sk_buff *skb, struct genl_info *info)
  {
  	struct nlattr **attrs = info->attrs;
  	struct net_device *dev;
  	struct macsec_secy *secy;
  	struct macsec_tx_sc *tx_sc;
  	struct macsec_tx_sa *tx_sa;
  	u8 assoc_num;
  	struct nlattr *tb_sa[MACSEC_SA_ATTR_MAX + 1];
3cf3227a2   Antoine Tenart   net: macsec: hard...
2074
2075
2076
  	bool was_operational, was_active;
  	u32 prev_pn = 0;
  	int ret = 0;
c09440f7d   Sabrina Dubroca   macsec: introduce...
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
  
  	if (!attrs[MACSEC_ATTR_IFINDEX])
  		return -EINVAL;
  
  	if (parse_sa_config(attrs, tb_sa))
  		return -EINVAL;
  
  	if (!validate_upd_sa(tb_sa))
  		return -EINVAL;
  
  	rtnl_lock();
  	tx_sa = get_txsa_from_nl(genl_info_net(info), attrs, tb_sa,
  				 &dev, &secy, &tx_sc, &assoc_num);
  	if (IS_ERR(tx_sa)) {
  		rtnl_unlock();
  		return PTR_ERR(tx_sa);
  	}
  
  	if (tb_sa[MACSEC_SA_ATTR_PN]) {
  		spin_lock_bh(&tx_sa->lock);
3cf3227a2   Antoine Tenart   net: macsec: hard...
2097
  		prev_pn = tx_sa->next_pn;
c09440f7d   Sabrina Dubroca   macsec: introduce...
2098
2099
2100
  		tx_sa->next_pn = nla_get_u32(tb_sa[MACSEC_SA_ATTR_PN]);
  		spin_unlock_bh(&tx_sa->lock);
  	}
3cf3227a2   Antoine Tenart   net: macsec: hard...
2101
  	was_active = tx_sa->active;
c09440f7d   Sabrina Dubroca   macsec: introduce...
2102
2103
  	if (tb_sa[MACSEC_SA_ATTR_ACTIVE])
  		tx_sa->active = nla_get_u8(tb_sa[MACSEC_SA_ATTR_ACTIVE]);
3cf3227a2   Antoine Tenart   net: macsec: hard...
2104
  	was_operational = secy->operational;
c09440f7d   Sabrina Dubroca   macsec: introduce...
2105
2106
  	if (assoc_num == tx_sc->encoding_sa)
  		secy->operational = tx_sa->active;
3cf3227a2   Antoine Tenart   net: macsec: hard...
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
  	/* If h/w offloading is available, propagate to the device */
  	if (macsec_is_offloaded(netdev_priv(dev))) {
  		const struct macsec_ops *ops;
  		struct macsec_context ctx;
  
  		ops = macsec_get_ops(netdev_priv(dev), &ctx);
  		if (!ops) {
  			ret = -EOPNOTSUPP;
  			goto cleanup;
  		}
  
  		ctx.sa.assoc_num = assoc_num;
  		ctx.sa.tx_sa = tx_sa;
  
  		ret = macsec_offload(ops->mdo_upd_txsa, &ctx);
  		if (ret)
  			goto cleanup;
  	}
c09440f7d   Sabrina Dubroca   macsec: introduce...
2125
2126
2127
  	rtnl_unlock();
  
  	return 0;
3cf3227a2   Antoine Tenart   net: macsec: hard...
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
  
  cleanup:
  	if (tb_sa[MACSEC_SA_ATTR_PN]) {
  		spin_lock_bh(&tx_sa->lock);
  		tx_sa->next_pn = prev_pn;
  		spin_unlock_bh(&tx_sa->lock);
  	}
  	tx_sa->active = was_active;
  	secy->operational = was_operational;
  	rtnl_unlock();
  	return ret;
c09440f7d   Sabrina Dubroca   macsec: introduce...
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
  }
  
  static int macsec_upd_rxsa(struct sk_buff *skb, struct genl_info *info)
  {
  	struct nlattr **attrs = info->attrs;
  	struct net_device *dev;
  	struct macsec_secy *secy;
  	struct macsec_rx_sc *rx_sc;
  	struct macsec_rx_sa *rx_sa;
  	u8 assoc_num;
  	struct nlattr *tb_rxsc[MACSEC_RXSC_ATTR_MAX + 1];
  	struct nlattr *tb_sa[MACSEC_SA_ATTR_MAX + 1];
3cf3227a2   Antoine Tenart   net: macsec: hard...
2151
2152
2153
  	bool was_active;
  	u32 prev_pn = 0;
  	int ret = 0;
c09440f7d   Sabrina Dubroca   macsec: introduce...
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
  
  	if (!attrs[MACSEC_ATTR_IFINDEX])
  		return -EINVAL;
  
  	if (parse_rxsc_config(attrs, tb_rxsc))
  		return -EINVAL;
  
  	if (parse_sa_config(attrs, tb_sa))
  		return -EINVAL;
  
  	if (!validate_upd_sa(tb_sa))
  		return -EINVAL;
  
  	rtnl_lock();
  	rx_sa = get_rxsa_from_nl(genl_info_net(info), attrs, tb_rxsc, tb_sa,
  				 &dev, &secy, &rx_sc, &assoc_num);
  	if (IS_ERR(rx_sa)) {
  		rtnl_unlock();
  		return PTR_ERR(rx_sa);
  	}
  
  	if (tb_sa[MACSEC_SA_ATTR_PN]) {
  		spin_lock_bh(&rx_sa->lock);
3cf3227a2   Antoine Tenart   net: macsec: hard...
2177
  		prev_pn = rx_sa->next_pn;
c09440f7d   Sabrina Dubroca   macsec: introduce...
2178
2179
2180
  		rx_sa->next_pn = nla_get_u32(tb_sa[MACSEC_SA_ATTR_PN]);
  		spin_unlock_bh(&rx_sa->lock);
  	}
3cf3227a2   Antoine Tenart   net: macsec: hard...
2181
  	was_active = rx_sa->active;
c09440f7d   Sabrina Dubroca   macsec: introduce...
2182
2183
  	if (tb_sa[MACSEC_SA_ATTR_ACTIVE])
  		rx_sa->active = nla_get_u8(tb_sa[MACSEC_SA_ATTR_ACTIVE]);
3cf3227a2   Antoine Tenart   net: macsec: hard...
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
  	/* If h/w offloading is available, propagate to the device */
  	if (macsec_is_offloaded(netdev_priv(dev))) {
  		const struct macsec_ops *ops;
  		struct macsec_context ctx;
  
  		ops = macsec_get_ops(netdev_priv(dev), &ctx);
  		if (!ops) {
  			ret = -EOPNOTSUPP;
  			goto cleanup;
  		}
  
  		ctx.sa.assoc_num = assoc_num;
  		ctx.sa.rx_sa = rx_sa;
  
  		ret = macsec_offload(ops->mdo_upd_rxsa, &ctx);
  		if (ret)
  			goto cleanup;
  	}
c09440f7d   Sabrina Dubroca   macsec: introduce...
2202
2203
  	rtnl_unlock();
  	return 0;
3cf3227a2   Antoine Tenart   net: macsec: hard...
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
  
  cleanup:
  	if (tb_sa[MACSEC_SA_ATTR_PN]) {
  		spin_lock_bh(&rx_sa->lock);
  		rx_sa->next_pn = prev_pn;
  		spin_unlock_bh(&rx_sa->lock);
  	}
  	rx_sa->active = was_active;
  	rtnl_unlock();
  	return ret;
c09440f7d   Sabrina Dubroca   macsec: introduce...
2214
2215
2216
2217
2218
2219
2220
2221
2222
  }
  
  static int macsec_upd_rxsc(struct sk_buff *skb, struct genl_info *info)
  {
  	struct nlattr **attrs = info->attrs;
  	struct net_device *dev;
  	struct macsec_secy *secy;
  	struct macsec_rx_sc *rx_sc;
  	struct nlattr *tb_rxsc[MACSEC_RXSC_ATTR_MAX + 1];
3cf3227a2   Antoine Tenart   net: macsec: hard...
2223
2224
2225
  	unsigned int prev_n_rx_sc;
  	bool was_active;
  	int ret;
c09440f7d   Sabrina Dubroca   macsec: introduce...
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
  
  	if (!attrs[MACSEC_ATTR_IFINDEX])
  		return -EINVAL;
  
  	if (parse_rxsc_config(attrs, tb_rxsc))
  		return -EINVAL;
  
  	if (!validate_add_rxsc(tb_rxsc))
  		return -EINVAL;
  
  	rtnl_lock();
  	rx_sc = get_rxsc_from_nl(genl_info_net(info), attrs, tb_rxsc, &dev, &secy);
  	if (IS_ERR(rx_sc)) {
  		rtnl_unlock();
  		return PTR_ERR(rx_sc);
  	}
3cf3227a2   Antoine Tenart   net: macsec: hard...
2242
2243
  	was_active = rx_sc->active;
  	prev_n_rx_sc = secy->n_rx_sc;
c09440f7d   Sabrina Dubroca   macsec: introduce...
2244
2245
2246
2247
2248
2249
2250
2251
  	if (tb_rxsc[MACSEC_RXSC_ATTR_ACTIVE]) {
  		bool new = !!nla_get_u8(tb_rxsc[MACSEC_RXSC_ATTR_ACTIVE]);
  
  		if (rx_sc->active != new)
  			secy->n_rx_sc += new ? 1 : -1;
  
  		rx_sc->active = new;
  	}
3cf3227a2   Antoine Tenart   net: macsec: hard...
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
  	/* If h/w offloading is available, propagate to the device */
  	if (macsec_is_offloaded(netdev_priv(dev))) {
  		const struct macsec_ops *ops;
  		struct macsec_context ctx;
  
  		ops = macsec_get_ops(netdev_priv(dev), &ctx);
  		if (!ops) {
  			ret = -EOPNOTSUPP;
  			goto cleanup;
  		}
  
  		ctx.rx_sc = rx_sc;
  
  		ret = macsec_offload(ops->mdo_upd_rxsc, &ctx);
  		if (ret)
  			goto cleanup;
  	}
c09440f7d   Sabrina Dubroca   macsec: introduce...
2269
2270
2271
  	rtnl_unlock();
  
  	return 0;
3cf3227a2   Antoine Tenart   net: macsec: hard...
2272
2273
2274
2275
2276
2277
  
  cleanup:
  	secy->n_rx_sc = prev_n_rx_sc;
  	rx_sc->active = was_active;
  	rtnl_unlock();
  	return ret;
c09440f7d   Sabrina Dubroca   macsec: introduce...
2278
  }
dcb780fb2   Antoine Tenart   net: macsec: add ...
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
  static bool macsec_is_configured(struct macsec_dev *macsec)
  {
  	struct macsec_secy *secy = &macsec->secy;
  	struct macsec_tx_sc *tx_sc = &secy->tx_sc;
  	int i;
  
  	if (secy->n_rx_sc > 0)
  		return true;
  
  	for (i = 0; i < MACSEC_NUM_AN; i++)
  		if (tx_sc->sa[i])
  			return true;
  
  	return false;
  }
  
  static int macsec_upd_offload(struct sk_buff *skb, struct genl_info *info)
  {
  	struct nlattr *tb_offload[MACSEC_OFFLOAD_ATTR_MAX + 1];
  	enum macsec_offload offload, prev_offload;
  	int (*func)(struct macsec_context *ctx);
  	struct nlattr **attrs = info->attrs;
  	struct net_device *dev, *loop_dev;
  	const struct macsec_ops *ops;
  	struct macsec_context ctx;
  	struct macsec_dev *macsec;
  	struct net *loop_net;
  	int ret;
  
  	if (!attrs[MACSEC_ATTR_IFINDEX])
  		return -EINVAL;
  
  	if (!attrs[MACSEC_ATTR_OFFLOAD])
  		return -EINVAL;
  
  	if (nla_parse_nested_deprecated(tb_offload, MACSEC_OFFLOAD_ATTR_MAX,
  					attrs[MACSEC_ATTR_OFFLOAD],
  					macsec_genl_offload_policy, NULL))
  		return -EINVAL;
  
  	dev = get_dev_from_nl(genl_info_net(info), attrs);
  	if (IS_ERR(dev))
  		return PTR_ERR(dev);
  	macsec = macsec_priv(dev);
  
  	offload = nla_get_u8(tb_offload[MACSEC_OFFLOAD_ATTR_TYPE]);
  	if (macsec->offload == offload)
  		return 0;
  
  	/* Check if the offloading mode is supported by the underlying layers */
  	if (offload != MACSEC_OFFLOAD_OFF &&
  	    !macsec_check_offload(offload, macsec))
  		return -EOPNOTSUPP;
  
  	if (offload == MACSEC_OFFLOAD_OFF)
  		goto skip_limitation;
  
  	/* Check the physical interface isn't offloading another interface
  	 * first.
  	 */
  	for_each_net(loop_net) {
  		for_each_netdev(loop_net, loop_dev) {
  			struct macsec_dev *priv;
  
  			if (!netif_is_macsec(loop_dev))
  				continue;
  
  			priv = macsec_priv(loop_dev);
  
  			if (priv->real_dev == macsec->real_dev &&
  			    priv->offload != MACSEC_OFFLOAD_OFF)
  				return -EBUSY;
  		}
  	}
  
  skip_limitation:
  	/* Check if the net device is busy. */
  	if (netif_running(dev))
  		return -EBUSY;
  
  	rtnl_lock();
  
  	prev_offload = macsec->offload;
  	macsec->offload = offload;
  
  	/* Check if the device already has rules configured: we do not support
  	 * rules migration.
  	 */
  	if (macsec_is_configured(macsec)) {
  		ret = -EBUSY;
  		goto rollback;
  	}
  
  	ops = __macsec_get_ops(offload == MACSEC_OFFLOAD_OFF ? prev_offload : offload,
  			       macsec, &ctx);
  	if (!ops) {
  		ret = -EOPNOTSUPP;
  		goto rollback;
  	}
  
  	if (prev_offload == MACSEC_OFFLOAD_OFF)
  		func = ops->mdo_add_secy;
  	else
  		func = ops->mdo_del_secy;
  
  	ctx.secy = &macsec->secy;
  	ret = macsec_offload(func, &ctx);
  	if (ret)
  		goto rollback;
  
  	rtnl_unlock();
  	return 0;
  
  rollback:
  	macsec->offload = prev_offload;
  
  	rtnl_unlock();
  	return ret;
  }
c09440f7d   Sabrina Dubroca   macsec: introduce...
2398
  static int copy_tx_sa_stats(struct sk_buff *skb,
7979472bb   Romain Aviolat   DRIVERS: net: mac...
2399
  			    struct macsec_tx_sa_stats __percpu *pstats)
c09440f7d   Sabrina Dubroca   macsec: introduce...
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
  {
  	struct macsec_tx_sa_stats sum = {0, };
  	int cpu;
  
  	for_each_possible_cpu(cpu) {
  		const struct macsec_tx_sa_stats *stats = per_cpu_ptr(pstats, cpu);
  
  		sum.OutPktsProtected += stats->OutPktsProtected;
  		sum.OutPktsEncrypted += stats->OutPktsEncrypted;
  	}
  
  	if (nla_put_u32(skb, MACSEC_SA_STATS_ATTR_OUT_PKTS_PROTECTED, sum.OutPktsProtected) ||
  	    nla_put_u32(skb, MACSEC_SA_STATS_ATTR_OUT_PKTS_ENCRYPTED, sum.OutPktsEncrypted))
  		return -EMSGSIZE;
  
  	return 0;
  }
e14272370   Florian Westphal   macsec: add noinl...
2417
2418
2419
  static noinline_for_stack int
  copy_rx_sa_stats(struct sk_buff *skb,
  		 struct macsec_rx_sa_stats __percpu *pstats)
c09440f7d   Sabrina Dubroca   macsec: introduce...
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
  {
  	struct macsec_rx_sa_stats sum = {0, };
  	int cpu;
  
  	for_each_possible_cpu(cpu) {
  		const struct macsec_rx_sa_stats *stats = per_cpu_ptr(pstats, cpu);
  
  		sum.InPktsOK         += stats->InPktsOK;
  		sum.InPktsInvalid    += stats->InPktsInvalid;
  		sum.InPktsNotValid   += stats->InPktsNotValid;
  		sum.InPktsNotUsingSA += stats->InPktsNotUsingSA;
  		sum.InPktsUnusedSA   += stats->InPktsUnusedSA;
  	}
  
  	if (nla_put_u32(skb, MACSEC_SA_STATS_ATTR_IN_PKTS_OK, sum.InPktsOK) ||
  	    nla_put_u32(skb, MACSEC_SA_STATS_ATTR_IN_PKTS_INVALID, sum.InPktsInvalid) ||
  	    nla_put_u32(skb, MACSEC_SA_STATS_ATTR_IN_PKTS_NOT_VALID, sum.InPktsNotValid) ||
  	    nla_put_u32(skb, MACSEC_SA_STATS_ATTR_IN_PKTS_NOT_USING_SA, sum.InPktsNotUsingSA) ||
  	    nla_put_u32(skb, MACSEC_SA_STATS_ATTR_IN_PKTS_UNUSED_SA, sum.InPktsUnusedSA))
  		return -EMSGSIZE;
  
  	return 0;
  }
e14272370   Florian Westphal   macsec: add noinl...
2443
2444
  static noinline_for_stack int
  copy_rx_sc_stats(struct sk_buff *skb, struct pcpu_rx_sc_stats __percpu *pstats)
c09440f7d   Sabrina Dubroca   macsec: introduce...
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
  {
  	struct macsec_rx_sc_stats sum = {0, };
  	int cpu;
  
  	for_each_possible_cpu(cpu) {
  		const struct pcpu_rx_sc_stats *stats;
  		struct macsec_rx_sc_stats tmp;
  		unsigned int start;
  
  		stats = per_cpu_ptr(pstats, cpu);
  		do {
  			start = u64_stats_fetch_begin_irq(&stats->syncp);
  			memcpy(&tmp, &stats->stats, sizeof(tmp));
  		} while (u64_stats_fetch_retry_irq(&stats->syncp, start));
  
  		sum.InOctetsValidated += tmp.InOctetsValidated;
  		sum.InOctetsDecrypted += tmp.InOctetsDecrypted;
  		sum.InPktsUnchecked   += tmp.InPktsUnchecked;
  		sum.InPktsDelayed     += tmp.InPktsDelayed;
  		sum.InPktsOK          += tmp.InPktsOK;
  		sum.InPktsInvalid     += tmp.InPktsInvalid;
  		sum.InPktsLate        += tmp.InPktsLate;
  		sum.InPktsNotValid    += tmp.InPktsNotValid;
  		sum.InPktsNotUsingSA  += tmp.InPktsNotUsingSA;
  		sum.InPktsUnusedSA    += tmp.InPktsUnusedSA;
  	}
f60d94c00   Nicolas Dichtel   macsec: use nla_p...
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
  	if (nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_OCTETS_VALIDATED,
  			      sum.InOctetsValidated,
  			      MACSEC_RXSC_STATS_ATTR_PAD) ||
  	    nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_OCTETS_DECRYPTED,
  			      sum.InOctetsDecrypted,
  			      MACSEC_RXSC_STATS_ATTR_PAD) ||
  	    nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_UNCHECKED,
  			      sum.InPktsUnchecked,
  			      MACSEC_RXSC_STATS_ATTR_PAD) ||
  	    nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_DELAYED,
  			      sum.InPktsDelayed,
  			      MACSEC_RXSC_STATS_ATTR_PAD) ||
  	    nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_OK,
  			      sum.InPktsOK,
  			      MACSEC_RXSC_STATS_ATTR_PAD) ||
  	    nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_INVALID,
  			      sum.InPktsInvalid,
  			      MACSEC_RXSC_STATS_ATTR_PAD) ||
  	    nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_LATE,
  			      sum.InPktsLate,
  			      MACSEC_RXSC_STATS_ATTR_PAD) ||
  	    nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_NOT_VALID,
  			      sum.InPktsNotValid,
  			      MACSEC_RXSC_STATS_ATTR_PAD) ||
  	    nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_NOT_USING_SA,
  			      sum.InPktsNotUsingSA,
  			      MACSEC_RXSC_STATS_ATTR_PAD) ||
  	    nla_put_u64_64bit(skb, MACSEC_RXSC_STATS_ATTR_IN_PKTS_UNUSED_SA,
  			      sum.InPktsUnusedSA,
  			      MACSEC_RXSC_STATS_ATTR_PAD))
c09440f7d   Sabrina Dubroca   macsec: introduce...
2501
2502
2503
2504
  		return -EMSGSIZE;
  
  	return 0;
  }
e14272370   Florian Westphal   macsec: add noinl...
2505
2506
  static noinline_for_stack int
  copy_tx_sc_stats(struct sk_buff *skb, struct pcpu_tx_sc_stats __percpu *pstats)
c09440f7d   Sabrina Dubroca   macsec: introduce...
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
  {
  	struct macsec_tx_sc_stats sum = {0, };
  	int cpu;
  
  	for_each_possible_cpu(cpu) {
  		const struct pcpu_tx_sc_stats *stats;
  		struct macsec_tx_sc_stats tmp;
  		unsigned int start;
  
  		stats = per_cpu_ptr(pstats, cpu);
  		do {
  			start = u64_stats_fetch_begin_irq(&stats->syncp);
  			memcpy(&tmp, &stats->stats, sizeof(tmp));
  		} while (u64_stats_fetch_retry_irq(&stats->syncp, start));
  
  		sum.OutPktsProtected   += tmp.OutPktsProtected;
  		sum.OutPktsEncrypted   += tmp.OutPktsEncrypted;
  		sum.OutOctetsProtected += tmp.OutOctetsProtected;
  		sum.OutOctetsEncrypted += tmp.OutOctetsEncrypted;
  	}
f60d94c00   Nicolas Dichtel   macsec: use nla_p...
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
  	if (nla_put_u64_64bit(skb, MACSEC_TXSC_STATS_ATTR_OUT_PKTS_PROTECTED,
  			      sum.OutPktsProtected,
  			      MACSEC_TXSC_STATS_ATTR_PAD) ||
  	    nla_put_u64_64bit(skb, MACSEC_TXSC_STATS_ATTR_OUT_PKTS_ENCRYPTED,
  			      sum.OutPktsEncrypted,
  			      MACSEC_TXSC_STATS_ATTR_PAD) ||
  	    nla_put_u64_64bit(skb, MACSEC_TXSC_STATS_ATTR_OUT_OCTETS_PROTECTED,
  			      sum.OutOctetsProtected,
  			      MACSEC_TXSC_STATS_ATTR_PAD) ||
  	    nla_put_u64_64bit(skb, MACSEC_TXSC_STATS_ATTR_OUT_OCTETS_ENCRYPTED,
  			      sum.OutOctetsEncrypted,
  			      MACSEC_TXSC_STATS_ATTR_PAD))
c09440f7d   Sabrina Dubroca   macsec: introduce...
2539
2540
2541
2542
  		return -EMSGSIZE;
  
  	return 0;
  }
e14272370   Florian Westphal   macsec: add noinl...
2543
2544
  static noinline_for_stack int
  copy_secy_stats(struct sk_buff *skb, struct pcpu_secy_stats __percpu *pstats)
c09440f7d   Sabrina Dubroca   macsec: introduce...
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
  {
  	struct macsec_dev_stats sum = {0, };
  	int cpu;
  
  	for_each_possible_cpu(cpu) {
  		const struct pcpu_secy_stats *stats;
  		struct macsec_dev_stats tmp;
  		unsigned int start;
  
  		stats = per_cpu_ptr(pstats, cpu);
  		do {
  			start = u64_stats_fetch_begin_irq(&stats->syncp);
  			memcpy(&tmp, &stats->stats, sizeof(tmp));
  		} while (u64_stats_fetch_retry_irq(&stats->syncp, start));
  
  		sum.OutPktsUntagged  += tmp.OutPktsUntagged;
  		sum.InPktsUntagged   += tmp.InPktsUntagged;
  		sum.OutPktsTooLong   += tmp.OutPktsTooLong;
  		sum.InPktsNoTag      += tmp.InPktsNoTag;
  		sum.InPktsBadTag     += tmp.InPktsBadTag;
  		sum.InPktsUnknownSCI += tmp.InPktsUnknownSCI;
  		sum.InPktsNoSCI      += tmp.InPktsNoSCI;
  		sum.InPktsOverrun    += tmp.InPktsOverrun;
  	}
f60d94c00   Nicolas Dichtel   macsec: use nla_p...
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
  	if (nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_OUT_PKTS_UNTAGGED,
  			      sum.OutPktsUntagged,
  			      MACSEC_SECY_STATS_ATTR_PAD) ||
  	    nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_IN_PKTS_UNTAGGED,
  			      sum.InPktsUntagged,
  			      MACSEC_SECY_STATS_ATTR_PAD) ||
  	    nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_OUT_PKTS_TOO_LONG,
  			      sum.OutPktsTooLong,
  			      MACSEC_SECY_STATS_ATTR_PAD) ||
  	    nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_IN_PKTS_NO_TAG,
  			      sum.InPktsNoTag,
  			      MACSEC_SECY_STATS_ATTR_PAD) ||
  	    nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_IN_PKTS_BAD_TAG,
  			      sum.InPktsBadTag,
  			      MACSEC_SECY_STATS_ATTR_PAD) ||
  	    nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_IN_PKTS_UNKNOWN_SCI,
  			      sum.InPktsUnknownSCI,
  			      MACSEC_SECY_STATS_ATTR_PAD) ||
  	    nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_IN_PKTS_NO_SCI,
  			      sum.InPktsNoSCI,
  			      MACSEC_SECY_STATS_ATTR_PAD) ||
  	    nla_put_u64_64bit(skb, MACSEC_SECY_STATS_ATTR_IN_PKTS_OVERRUN,
  			      sum.InPktsOverrun,
  			      MACSEC_SECY_STATS_ATTR_PAD))
c09440f7d   Sabrina Dubroca   macsec: introduce...
2593
2594
2595
2596
2597
2598
2599
2600
  		return -EMSGSIZE;
  
  	return 0;
  }
  
  static int nla_put_secy(struct macsec_secy *secy, struct sk_buff *skb)
  {
  	struct macsec_tx_sc *tx_sc = &secy->tx_sc;
ae0be8de9   Michal Kubecek   netlink: make nla...
2601
2602
  	struct nlattr *secy_nest = nla_nest_start_noflag(skb,
  							 MACSEC_ATTR_SECY);
ccfdec908   Felix Walter   macsec: Add suppo...
2603
  	u64 csid;
c09440f7d   Sabrina Dubroca   macsec: introduce...
2604
2605
2606
  
  	if (!secy_nest)
  		return 1;
ccfdec908   Felix Walter   macsec: Add suppo...
2607
2608
  	switch (secy->key_len) {
  	case MACSEC_GCM_AES_128_SAK_LEN:
e8660ded7   Sabrina Dubroca   macsec: restore u...
2609
  		csid = MACSEC_DEFAULT_CIPHER_ID;
ccfdec908   Felix Walter   macsec: Add suppo...
2610
2611
2612
2613
2614
2615
2616
  		break;
  	case MACSEC_GCM_AES_256_SAK_LEN:
  		csid = MACSEC_CIPHER_ID_GCM_AES_256;
  		break;
  	default:
  		goto cancel;
  	}
f60d94c00   Nicolas Dichtel   macsec: use nla_p...
2617
2618
2619
  	if (nla_put_sci(skb, MACSEC_SECY_ATTR_SCI, secy->sci,
  			MACSEC_SECY_ATTR_PAD) ||
  	    nla_put_u64_64bit(skb, MACSEC_SECY_ATTR_CIPHER_SUITE,
ccfdec908   Felix Walter   macsec: Add suppo...
2620
  			      csid, MACSEC_SECY_ATTR_PAD) ||
c09440f7d   Sabrina Dubroca   macsec: introduce...
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
  	    nla_put_u8(skb, MACSEC_SECY_ATTR_ICV_LEN, secy->icv_len) ||
  	    nla_put_u8(skb, MACSEC_SECY_ATTR_OPER, secy->operational) ||
  	    nla_put_u8(skb, MACSEC_SECY_ATTR_PROTECT, secy->protect_frames) ||
  	    nla_put_u8(skb, MACSEC_SECY_ATTR_REPLAY, secy->replay_protect) ||
  	    nla_put_u8(skb, MACSEC_SECY_ATTR_VALIDATE, secy->validate_frames) ||
  	    nla_put_u8(skb, MACSEC_SECY_ATTR_ENCRYPT, tx_sc->encrypt) ||
  	    nla_put_u8(skb, MACSEC_SECY_ATTR_INC_SCI, tx_sc->send_sci) ||
  	    nla_put_u8(skb, MACSEC_SECY_ATTR_ES, tx_sc->end_station) ||
  	    nla_put_u8(skb, MACSEC_SECY_ATTR_SCB, tx_sc->scb) ||
  	    nla_put_u8(skb, MACSEC_SECY_ATTR_ENCODING_SA, tx_sc->encoding_sa))
  		goto cancel;
  
  	if (secy->replay_protect) {
  		if (nla_put_u32(skb, MACSEC_SECY_ATTR_WINDOW, secy->replay_window))
  			goto cancel;
  	}
  
  	nla_nest_end(skb, secy_nest);
  	return 0;
  
  cancel:
  	nla_nest_cancel(skb, secy_nest);
  	return 1;
  }
e14272370   Florian Westphal   macsec: add noinl...
2645
2646
2647
  static noinline_for_stack int
  dump_secy(struct macsec_secy *secy, struct net_device *dev,
  	  struct sk_buff *skb, struct netlink_callback *cb)
c09440f7d   Sabrina Dubroca   macsec: introduce...
2648
  {
dcb780fb2   Antoine Tenart   net: macsec: add ...
2649
  	struct macsec_dev *macsec = netdev_priv(dev);
c09440f7d   Sabrina Dubroca   macsec: introduce...
2650
2651
  	struct macsec_tx_sc *tx_sc = &secy->tx_sc;
  	struct nlattr *txsa_list, *rxsc_list;
dcb780fb2   Antoine Tenart   net: macsec: add ...
2652
  	struct macsec_rx_sc *rx_sc;
c09440f7d   Sabrina Dubroca   macsec: introduce...
2653
  	struct nlattr *attr;
dcb780fb2   Antoine Tenart   net: macsec: add ...
2654
2655
  	void *hdr;
  	int i, j;
c09440f7d   Sabrina Dubroca   macsec: introduce...
2656
2657
2658
2659
2660
  
  	hdr = genlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
  			  &macsec_fam, NLM_F_MULTI, MACSEC_CMD_GET_TXSC);
  	if (!hdr)
  		return -EMSGSIZE;
0a833c29d   Michal Kubecek   genetlink: fix ge...
2661
  	genl_dump_check_consistent(cb, hdr);
c09440f7d   Sabrina Dubroca   macsec: introduce...
2662
2663
2664
  
  	if (nla_put_u32(skb, MACSEC_ATTR_IFINDEX, dev->ifindex))
  		goto nla_put_failure;
dcb780fb2   Antoine Tenart   net: macsec: add ...
2665
2666
2667
2668
2669
2670
  	attr = nla_nest_start_noflag(skb, MACSEC_ATTR_OFFLOAD);
  	if (!attr)
  		goto nla_put_failure;
  	if (nla_put_u8(skb, MACSEC_OFFLOAD_ATTR_TYPE, macsec->offload))
  		goto nla_put_failure;
  	nla_nest_end(skb, attr);
c09440f7d   Sabrina Dubroca   macsec: introduce...
2671
2672
  	if (nla_put_secy(secy, skb))
  		goto nla_put_failure;
ae0be8de9   Michal Kubecek   netlink: make nla...
2673
  	attr = nla_nest_start_noflag(skb, MACSEC_ATTR_TXSC_STATS);
c09440f7d   Sabrina Dubroca   macsec: introduce...
2674
2675
2676
2677
2678
2679
2680
  	if (!attr)
  		goto nla_put_failure;
  	if (copy_tx_sc_stats(skb, tx_sc->stats)) {
  		nla_nest_cancel(skb, attr);
  		goto nla_put_failure;
  	}
  	nla_nest_end(skb, attr);
ae0be8de9   Michal Kubecek   netlink: make nla...
2681
  	attr = nla_nest_start_noflag(skb, MACSEC_ATTR_SECY_STATS);
c09440f7d   Sabrina Dubroca   macsec: introduce...
2682
2683
2684
2685
2686
2687
2688
  	if (!attr)
  		goto nla_put_failure;
  	if (copy_secy_stats(skb, macsec_priv(dev)->stats)) {
  		nla_nest_cancel(skb, attr);
  		goto nla_put_failure;
  	}
  	nla_nest_end(skb, attr);
ae0be8de9   Michal Kubecek   netlink: make nla...
2689
  	txsa_list = nla_nest_start_noflag(skb, MACSEC_ATTR_TXSA_LIST);
c09440f7d   Sabrina Dubroca   macsec: introduce...
2690
2691
2692
2693
2694
2695
2696
2697
  	if (!txsa_list)
  		goto nla_put_failure;
  	for (i = 0, j = 1; i < MACSEC_NUM_AN; i++) {
  		struct macsec_tx_sa *tx_sa = rtnl_dereference(tx_sc->sa[i]);
  		struct nlattr *txsa_nest;
  
  		if (!tx_sa)
  			continue;
ae0be8de9   Michal Kubecek   netlink: make nla...
2698
  		txsa_nest = nla_nest_start_noflag(skb, j++);
c09440f7d   Sabrina Dubroca   macsec: introduce...
2699
2700
2701
2702
2703
2704
2705
  		if (!txsa_nest) {
  			nla_nest_cancel(skb, txsa_list);
  			goto nla_put_failure;
  		}
  
  		if (nla_put_u8(skb, MACSEC_SA_ATTR_AN, i) ||
  		    nla_put_u32(skb, MACSEC_SA_ATTR_PN, tx_sa->next_pn) ||
8acca6ace   Sabrina Dubroca   macsec: key ident...
2706
  		    nla_put(skb, MACSEC_SA_ATTR_KEYID, MACSEC_KEYID_LEN, tx_sa->key.id) ||
c09440f7d   Sabrina Dubroca   macsec: introduce...
2707
2708
2709
2710
2711
  		    nla_put_u8(skb, MACSEC_SA_ATTR_ACTIVE, tx_sa->active)) {
  			nla_nest_cancel(skb, txsa_nest);
  			nla_nest_cancel(skb, txsa_list);
  			goto nla_put_failure;
  		}
ae0be8de9   Michal Kubecek   netlink: make nla...
2712
  		attr = nla_nest_start_noflag(skb, MACSEC_SA_ATTR_STATS);
c09440f7d   Sabrina Dubroca   macsec: introduce...
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
  		if (!attr) {
  			nla_nest_cancel(skb, txsa_nest);
  			nla_nest_cancel(skb, txsa_list);
  			goto nla_put_failure;
  		}
  		if (copy_tx_sa_stats(skb, tx_sa->stats)) {
  			nla_nest_cancel(skb, attr);
  			nla_nest_cancel(skb, txsa_nest);
  			nla_nest_cancel(skb, txsa_list);
  			goto nla_put_failure;
  		}
  		nla_nest_end(skb, attr);
  
  		nla_nest_end(skb, txsa_nest);
  	}
  	nla_nest_end(skb, txsa_list);
ae0be8de9   Michal Kubecek   netlink: make nla...
2729
  	rxsc_list = nla_nest_start_noflag(skb, MACSEC_ATTR_RXSC_LIST);
c09440f7d   Sabrina Dubroca   macsec: introduce...
2730
2731
2732
2733
2734
2735
2736
  	if (!rxsc_list)
  		goto nla_put_failure;
  
  	j = 1;
  	for_each_rxsc_rtnl(secy, rx_sc) {
  		int k;
  		struct nlattr *rxsa_list;
ae0be8de9   Michal Kubecek   netlink: make nla...
2737
  		struct nlattr *rxsc_nest = nla_nest_start_noflag(skb, j++);
c09440f7d   Sabrina Dubroca   macsec: introduce...
2738
2739
2740
2741
2742
2743
2744
  
  		if (!rxsc_nest) {
  			nla_nest_cancel(skb, rxsc_list);
  			goto nla_put_failure;
  		}
  
  		if (nla_put_u8(skb, MACSEC_RXSC_ATTR_ACTIVE, rx_sc->active) ||
f60d94c00   Nicolas Dichtel   macsec: use nla_p...
2745
2746
  		    nla_put_sci(skb, MACSEC_RXSC_ATTR_SCI, rx_sc->sci,
  				MACSEC_RXSC_ATTR_PAD)) {
c09440f7d   Sabrina Dubroca   macsec: introduce...
2747
2748
2749
2750
  			nla_nest_cancel(skb, rxsc_nest);
  			nla_nest_cancel(skb, rxsc_list);
  			goto nla_put_failure;
  		}
ae0be8de9   Michal Kubecek   netlink: make nla...
2751
  		attr = nla_nest_start_noflag(skb, MACSEC_RXSC_ATTR_STATS);
c09440f7d   Sabrina Dubroca   macsec: introduce...
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
  		if (!attr) {
  			nla_nest_cancel(skb, rxsc_nest);
  			nla_nest_cancel(skb, rxsc_list);
  			goto nla_put_failure;
  		}
  		if (copy_rx_sc_stats(skb, rx_sc->stats)) {
  			nla_nest_cancel(skb, attr);
  			nla_nest_cancel(skb, rxsc_nest);
  			nla_nest_cancel(skb, rxsc_list);
  			goto nla_put_failure;
  		}
  		nla_nest_end(skb, attr);
ae0be8de9   Michal Kubecek   netlink: make nla...
2764
2765
  		rxsa_list = nla_nest_start_noflag(skb,
  						  MACSEC_RXSC_ATTR_SA_LIST);
c09440f7d   Sabrina Dubroca   macsec: introduce...
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
  		if (!rxsa_list) {
  			nla_nest_cancel(skb, rxsc_nest);
  			nla_nest_cancel(skb, rxsc_list);
  			goto nla_put_failure;
  		}
  
  		for (i = 0, k = 1; i < MACSEC_NUM_AN; i++) {
  			struct macsec_rx_sa *rx_sa = rtnl_dereference(rx_sc->sa[i]);
  			struct nlattr *rxsa_nest;
  
  			if (!rx_sa)
  				continue;
ae0be8de9   Michal Kubecek   netlink: make nla...
2778
  			rxsa_nest = nla_nest_start_noflag(skb, k++);
c09440f7d   Sabrina Dubroca   macsec: introduce...
2779
2780
2781
2782
2783
2784
  			if (!rxsa_nest) {
  				nla_nest_cancel(skb, rxsa_list);
  				nla_nest_cancel(skb, rxsc_nest);
  				nla_nest_cancel(skb, rxsc_list);
  				goto nla_put_failure;
  			}
ae0be8de9   Michal Kubecek   netlink: make nla...
2785
2786
  			attr = nla_nest_start_noflag(skb,
  						     MACSEC_SA_ATTR_STATS);
c09440f7d   Sabrina Dubroca   macsec: introduce...
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
  			if (!attr) {
  				nla_nest_cancel(skb, rxsa_list);
  				nla_nest_cancel(skb, rxsc_nest);
  				nla_nest_cancel(skb, rxsc_list);
  				goto nla_put_failure;
  			}
  			if (copy_rx_sa_stats(skb, rx_sa->stats)) {
  				nla_nest_cancel(skb, attr);
  				nla_nest_cancel(skb, rxsa_list);
  				nla_nest_cancel(skb, rxsc_nest);
  				nla_nest_cancel(skb, rxsc_list);
  				goto nla_put_failure;
  			}
  			nla_nest_end(skb, attr);
  
  			if (nla_put_u8(skb, MACSEC_SA_ATTR_AN, i) ||
  			    nla_put_u32(skb, MACSEC_SA_ATTR_PN, rx_sa->next_pn) ||
8acca6ace   Sabrina Dubroca   macsec: key ident...
2804
  			    nla_put(skb, MACSEC_SA_ATTR_KEYID, MACSEC_KEYID_LEN, rx_sa->key.id) ||
c09440f7d   Sabrina Dubroca   macsec: introduce...
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
  			    nla_put_u8(skb, MACSEC_SA_ATTR_ACTIVE, rx_sa->active)) {
  				nla_nest_cancel(skb, rxsa_nest);
  				nla_nest_cancel(skb, rxsc_nest);
  				nla_nest_cancel(skb, rxsc_list);
  				goto nla_put_failure;
  			}
  			nla_nest_end(skb, rxsa_nest);
  		}
  
  		nla_nest_end(skb, rxsa_list);
  		nla_nest_end(skb, rxsc_nest);
  	}
  
  	nla_nest_end(skb, rxsc_list);
c09440f7d   Sabrina Dubroca   macsec: introduce...
2819
2820
2821
2822
2823
  	genlmsg_end(skb, hdr);
  
  	return 0;
  
  nla_put_failure:
c09440f7d   Sabrina Dubroca   macsec: introduce...
2824
2825
2826
  	genlmsg_cancel(skb, hdr);
  	return -EMSGSIZE;
  }
96cfc5052   Sabrina Dubroca   macsec: add consi...
2827
  static int macsec_generation = 1; /* protected by RTNL */
c09440f7d   Sabrina Dubroca   macsec: introduce...
2828
2829
2830
2831
2832
2833
2834
2835
2836
  static int macsec_dump_txsc(struct sk_buff *skb, struct netlink_callback *cb)
  {
  	struct net *net = sock_net(skb->sk);
  	struct net_device *dev;
  	int dev_idx, d;
  
  	dev_idx = cb->args[0];
  
  	d = 0;
c10c63ea7   Sabrina Dubroca   macsec: take rtnl...
2837
  	rtnl_lock();
96cfc5052   Sabrina Dubroca   macsec: add consi...
2838
2839
  
  	cb->seq = macsec_generation;
c09440f7d   Sabrina Dubroca   macsec: introduce...
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
  	for_each_netdev(net, dev) {
  		struct macsec_secy *secy;
  
  		if (d < dev_idx)
  			goto next;
  
  		if (!netif_is_macsec(dev))
  			goto next;
  
  		secy = &macsec_priv(dev)->secy;
  		if (dump_secy(secy, dev, skb, cb) < 0)
  			goto done;
  next:
  		d++;
  	}
  
  done:
c10c63ea7   Sabrina Dubroca   macsec: take rtnl...
2857
  	rtnl_unlock();
c09440f7d   Sabrina Dubroca   macsec: introduce...
2858
2859
2860
2861
2862
2863
2864
  	cb->args[0] = d;
  	return skb->len;
  }
  
  static const struct genl_ops macsec_genl_ops[] = {
  	{
  		.cmd = MACSEC_CMD_GET_TXSC,
ef6243acb   Johannes Berg   genetlink: option...
2865
  		.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
c09440f7d   Sabrina Dubroca   macsec: introduce...
2866
  		.dumpit = macsec_dump_txsc,
c09440f7d   Sabrina Dubroca   macsec: introduce...
2867
2868
2869
  	},
  	{
  		.cmd = MACSEC_CMD_ADD_RXSC,
ef6243acb   Johannes Berg   genetlink: option...
2870
  		.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
c09440f7d   Sabrina Dubroca   macsec: introduce...
2871
  		.doit = macsec_add_rxsc,
c09440f7d   Sabrina Dubroca   macsec: introduce...
2872
2873
2874
2875
  		.flags = GENL_ADMIN_PERM,
  	},
  	{
  		.cmd = MACSEC_CMD_DEL_RXSC,
ef6243acb   Johannes Berg   genetlink: option...
2876
  		.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
c09440f7d   Sabrina Dubroca   macsec: introduce...
2877
  		.doit = macsec_del_rxsc,
c09440f7d   Sabrina Dubroca   macsec: introduce...
2878
2879
2880
2881
  		.flags = GENL_ADMIN_PERM,
  	},
  	{
  		.cmd = MACSEC_CMD_UPD_RXSC,
ef6243acb   Johannes Berg   genetlink: option...
2882
  		.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
c09440f7d   Sabrina Dubroca   macsec: introduce...
2883
  		.doit = macsec_upd_rxsc,
c09440f7d   Sabrina Dubroca   macsec: introduce...
2884
2885
2886
2887
  		.flags = GENL_ADMIN_PERM,
  	},
  	{
  		.cmd = MACSEC_CMD_ADD_TXSA,
ef6243acb   Johannes Berg   genetlink: option...
2888
  		.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
c09440f7d   Sabrina Dubroca   macsec: introduce...
2889
  		.doit = macsec_add_txsa,
c09440f7d   Sabrina Dubroca   macsec: introduce...
2890
2891
2892
2893
  		.flags = GENL_ADMIN_PERM,
  	},
  	{
  		.cmd = MACSEC_CMD_DEL_TXSA,
ef6243acb   Johannes Berg   genetlink: option...
2894
  		.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
c09440f7d   Sabrina Dubroca   macsec: introduce...
2895
  		.doit = macsec_del_txsa,
c09440f7d   Sabrina Dubroca   macsec: introduce...
2896
2897
2898
2899
  		.flags = GENL_ADMIN_PERM,
  	},
  	{
  		.cmd = MACSEC_CMD_UPD_TXSA,
ef6243acb   Johannes Berg   genetlink: option...
2900
  		.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
c09440f7d   Sabrina Dubroca   macsec: introduce...
2901
  		.doit = macsec_upd_txsa,
c09440f7d   Sabrina Dubroca   macsec: introduce...
2902
2903
2904
2905
  		.flags = GENL_ADMIN_PERM,
  	},
  	{
  		.cmd = MACSEC_CMD_ADD_RXSA,
ef6243acb   Johannes Berg   genetlink: option...
2906
  		.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
c09440f7d   Sabrina Dubroca   macsec: introduce...
2907
  		.doit = macsec_add_rxsa,
c09440f7d   Sabrina Dubroca   macsec: introduce...
2908
2909
2910
2911
  		.flags = GENL_ADMIN_PERM,
  	},
  	{
  		.cmd = MACSEC_CMD_DEL_RXSA,
ef6243acb   Johannes Berg   genetlink: option...
2912
  		.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
c09440f7d   Sabrina Dubroca   macsec: introduce...
2913
  		.doit = macsec_del_rxsa,
c09440f7d   Sabrina Dubroca   macsec: introduce...
2914
2915
2916
2917
  		.flags = GENL_ADMIN_PERM,
  	},
  	{
  		.cmd = MACSEC_CMD_UPD_RXSA,
ef6243acb   Johannes Berg   genetlink: option...
2918
  		.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
c09440f7d   Sabrina Dubroca   macsec: introduce...
2919
  		.doit = macsec_upd_rxsa,
c09440f7d   Sabrina Dubroca   macsec: introduce...
2920
2921
  		.flags = GENL_ADMIN_PERM,
  	},
dcb780fb2   Antoine Tenart   net: macsec: add ...
2922
2923
2924
2925
2926
2927
  	{
  		.cmd = MACSEC_CMD_UPD_OFFLOAD,
  		.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
  		.doit = macsec_upd_offload,
  		.flags = GENL_ADMIN_PERM,
  	},
c09440f7d   Sabrina Dubroca   macsec: introduce...
2928
  };
56989f6d8   Johannes Berg   genetlink: mark f...
2929
  static struct genl_family macsec_fam __ro_after_init = {
489111e5c   Johannes Berg   genetlink: static...
2930
2931
2932
2933
  	.name		= MACSEC_GENL_NAME,
  	.hdrsize	= 0,
  	.version	= MACSEC_GENL_VERSION,
  	.maxattr	= MACSEC_ATTR_MAX,
3b0f31f2b   Johannes Berg   genetlink: make p...
2934
  	.policy = macsec_genl_policy,
489111e5c   Johannes Berg   genetlink: static...
2935
2936
2937
2938
2939
  	.netnsok	= true,
  	.module		= THIS_MODULE,
  	.ops		= macsec_genl_ops,
  	.n_ops		= ARRAY_SIZE(macsec_genl_ops),
  };
c09440f7d   Sabrina Dubroca   macsec: introduce...
2940
2941
2942
2943
2944
2945
2946
  static netdev_tx_t macsec_start_xmit(struct sk_buff *skb,
  				     struct net_device *dev)
  {
  	struct macsec_dev *macsec = netdev_priv(dev);
  	struct macsec_secy *secy = &macsec->secy;
  	struct pcpu_secy_stats *secy_stats;
  	int ret, len;
3cf3227a2   Antoine Tenart   net: macsec: hard...
2947
2948
2949
2950
  	if (macsec_is_offloaded(netdev_priv(dev))) {
  		skb->dev = macsec->real_dev;
  		return dev_queue_xmit(skb);
  	}
c09440f7d   Sabrina Dubroca   macsec: introduce...
2951
2952
2953
2954
2955
2956
  	/* 10.5 */
  	if (!secy->protect_frames) {
  		secy_stats = this_cpu_ptr(macsec->stats);
  		u64_stats_update_begin(&secy_stats->syncp);
  		secy_stats->stats.OutPktsUntagged++;
  		u64_stats_update_end(&secy_stats->syncp);
79c62220d   Daniel Borkmann   macsec: set actua...
2957
  		skb->dev = macsec->real_dev;
c09440f7d   Sabrina Dubroca   macsec: introduce...
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
  		len = skb->len;
  		ret = dev_queue_xmit(skb);
  		count_tx(dev, ret, len);
  		return ret;
  	}
  
  	if (!secy->operational) {
  		kfree_skb(skb);
  		dev->stats.tx_dropped++;
  		return NETDEV_TX_OK;
  	}
  
  	skb = macsec_encrypt(skb, dev);
  	if (IS_ERR(skb)) {
  		if (PTR_ERR(skb) != -EINPROGRESS)
  			dev->stats.tx_dropped++;
  		return NETDEV_TX_OK;
  	}
  
  	macsec_count_tx(skb, &macsec->secy.tx_sc, macsec_skb_cb(skb)->tx_sa);
  
  	macsec_encrypt_finish(skb, dev);
  	len = skb->len;
  	ret = dev_queue_xmit(skb);
  	count_tx(dev, ret, len);
  	return ret;
  }
  
  #define MACSEC_FEATURES \
  	(NETIF_F_SG | NETIF_F_HIGHDMA | NETIF_F_FRAGLIST)
e20038724   Sabrina Dubroca   macsec: fix lockd...
2988

c09440f7d   Sabrina Dubroca   macsec: introduce...
2989
2990
2991
2992
  static int macsec_dev_init(struct net_device *dev)
  {
  	struct macsec_dev *macsec = macsec_priv(dev);
  	struct net_device *real_dev = macsec->real_dev;
5491e7c6b   Paolo Abeni   macsec: enable GR...
2993
  	int err;
c09440f7d   Sabrina Dubroca   macsec: introduce...
2994
2995
2996
2997
  
  	dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
  	if (!dev->tstats)
  		return -ENOMEM;
5491e7c6b   Paolo Abeni   macsec: enable GR...
2998
2999
3000
3001
3002
  	err = gro_cells_init(&macsec->gro_cells, dev);
  	if (err) {
  		free_percpu(dev->tstats);
  		return err;
  	}
c09440f7d   Sabrina Dubroca   macsec: introduce...
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
  	dev->features = real_dev->features & MACSEC_FEATURES;
  	dev->features |= NETIF_F_LLTX | NETIF_F_GSO_SOFTWARE;
  
  	dev->needed_headroom = real_dev->needed_headroom +
  			       MACSEC_NEEDED_HEADROOM;
  	dev->needed_tailroom = real_dev->needed_tailroom +
  			       MACSEC_NEEDED_TAILROOM;
  
  	if (is_zero_ether_addr(dev->dev_addr))
  		eth_hw_addr_inherit(dev, real_dev);
  	if (is_zero_ether_addr(dev->broadcast))
  		memcpy(dev->broadcast, real_dev->broadcast, dev->addr_len);
  
  	return 0;
  }
  
  static void macsec_dev_uninit(struct net_device *dev)
  {
5491e7c6b   Paolo Abeni   macsec: enable GR...
3021
3022
3023
  	struct macsec_dev *macsec = macsec_priv(dev);
  
  	gro_cells_destroy(&macsec->gro_cells);
c09440f7d   Sabrina Dubroca   macsec: introduce...
3024
3025
3026
3027
3028
3029
3030
3031
  	free_percpu(dev->tstats);
  }
  
  static netdev_features_t macsec_fix_features(struct net_device *dev,
  					     netdev_features_t features)
  {
  	struct macsec_dev *macsec = macsec_priv(dev);
  	struct net_device *real_dev = macsec->real_dev;
5491e7c6b   Paolo Abeni   macsec: enable GR...
3032
3033
3034
  	features &= (real_dev->features & MACSEC_FEATURES) |
  		    NETIF_F_GSO_SOFTWARE | NETIF_F_SOFT_FEATURES;
  	features |= NETIF_F_LLTX;
c09440f7d   Sabrina Dubroca   macsec: introduce...
3035
3036
3037
3038
3039
3040
3041
3042
3043
  
  	return features;
  }
  
  static int macsec_dev_open(struct net_device *dev)
  {
  	struct macsec_dev *macsec = macsec_priv(dev);
  	struct net_device *real_dev = macsec->real_dev;
  	int err;
c09440f7d   Sabrina Dubroca   macsec: introduce...
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
  	err = dev_uc_add(real_dev, dev->dev_addr);
  	if (err < 0)
  		return err;
  
  	if (dev->flags & IFF_ALLMULTI) {
  		err = dev_set_allmulti(real_dev, 1);
  		if (err < 0)
  			goto del_unicast;
  	}
  
  	if (dev->flags & IFF_PROMISC) {
  		err = dev_set_promiscuity(real_dev, 1);
  		if (err < 0)
  			goto clear_allmulti;
  	}
3cf3227a2   Antoine Tenart   net: macsec: hard...
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
  	/* If h/w offloading is available, propagate to the device */
  	if (macsec_is_offloaded(macsec)) {
  		const struct macsec_ops *ops;
  		struct macsec_context ctx;
  
  		ops = macsec_get_ops(netdev_priv(dev), &ctx);
  		if (!ops) {
  			err = -EOPNOTSUPP;
  			goto clear_allmulti;
  		}
  
  		err = macsec_offload(ops->mdo_dev_open, &ctx);
  		if (err)
  			goto clear_allmulti;
  	}
c09440f7d   Sabrina Dubroca   macsec: introduce...
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
  	if (netif_carrier_ok(real_dev))
  		netif_carrier_on(dev);
  
  	return 0;
  clear_allmulti:
  	if (dev->flags & IFF_ALLMULTI)
  		dev_set_allmulti(real_dev, -1);
  del_unicast:
  	dev_uc_del(real_dev, dev->dev_addr);
  	netif_carrier_off(dev);
  	return err;
  }
  
  static int macsec_dev_stop(struct net_device *dev)
  {
  	struct macsec_dev *macsec = macsec_priv(dev);
  	struct net_device *real_dev = macsec->real_dev;
  
  	netif_carrier_off(dev);
3cf3227a2   Antoine Tenart   net: macsec: hard...
3093
3094
3095
3096
3097
3098
3099
3100
3101
  	/* If h/w offloading is available, propagate to the device */
  	if (macsec_is_offloaded(macsec)) {
  		const struct macsec_ops *ops;
  		struct macsec_context ctx;
  
  		ops = macsec_get_ops(macsec, &ctx);
  		if (ops)
  			macsec_offload(ops->mdo_dev_stop, &ctx);
  	}
c09440f7d   Sabrina Dubroca   macsec: introduce...
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
  	dev_mc_unsync(real_dev, dev);
  	dev_uc_unsync(real_dev, dev);
  
  	if (dev->flags & IFF_ALLMULTI)
  		dev_set_allmulti(real_dev, -1);
  
  	if (dev->flags & IFF_PROMISC)
  		dev_set_promiscuity(real_dev, -1);
  
  	dev_uc_del(real_dev, dev->dev_addr);
  
  	return 0;
  }
  
  static void macsec_dev_change_rx_flags(struct net_device *dev, int change)
  {
  	struct net_device *real_dev = macsec_priv(dev)->real_dev;
  
  	if (!(dev->flags & IFF_UP))
  		return;
  
  	if (change & IFF_ALLMULTI)
  		dev_set_allmulti(real_dev, dev->flags & IFF_ALLMULTI ? 1 : -1);
  
  	if (change & IFF_PROMISC)
  		dev_set_promiscuity(real_dev,
  				    dev->flags & IFF_PROMISC ? 1 : -1);
  }
  
  static void macsec_dev_set_rx_mode(struct net_device *dev)
  {
  	struct net_device *real_dev = macsec_priv(dev)->real_dev;
  
  	dev_mc_sync(real_dev, dev);
  	dev_uc_sync(real_dev, dev);
  }
  
  static int macsec_set_mac_address(struct net_device *dev, void *p)
  {
  	struct macsec_dev *macsec = macsec_priv(dev);
  	struct net_device *real_dev = macsec->real_dev;
  	struct sockaddr *addr = p;
  	int err;
  
  	if (!is_valid_ether_addr(addr->sa_data))
  		return -EADDRNOTAVAIL;
  
  	if (!(dev->flags & IFF_UP))
  		goto out;
  
  	err = dev_uc_add(real_dev, addr->sa_data);
  	if (err < 0)
  		return err;
  
  	dev_uc_del(real_dev, dev->dev_addr);
  
  out:
  	ether_addr_copy(dev->dev_addr, addr->sa_data);
  	return 0;
  }
  
  static int macsec_change_mtu(struct net_device *dev, int new_mtu)
  {
  	struct macsec_dev *macsec = macsec_priv(dev);
  	unsigned int extra = macsec->secy.icv_len + macsec_extra_len(true);
  
  	if (macsec->real_dev->mtu - extra < new_mtu)
  		return -ERANGE;
  
  	dev->mtu = new_mtu;
  
  	return 0;
  }
bc1f44709   stephen hemminger   net: make ndo_get...
3175
3176
  static void macsec_get_stats64(struct net_device *dev,
  			       struct rtnl_link_stats64 *s)
c09440f7d   Sabrina Dubroca   macsec: introduce...
3177
3178
3179
3180
  {
  	int cpu;
  
  	if (!dev->tstats)
bc1f44709   stephen hemminger   net: make ndo_get...
3181
  		return;
c09440f7d   Sabrina Dubroca   macsec: introduce...
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
  
  	for_each_possible_cpu(cpu) {
  		struct pcpu_sw_netstats *stats;
  		struct pcpu_sw_netstats tmp;
  		int start;
  
  		stats = per_cpu_ptr(dev->tstats, cpu);
  		do {
  			start = u64_stats_fetch_begin_irq(&stats->syncp);
  			tmp.rx_packets = stats->rx_packets;
  			tmp.rx_bytes   = stats->rx_bytes;
  			tmp.tx_packets = stats->tx_packets;
  			tmp.tx_bytes   = stats->tx_bytes;
  		} while (u64_stats_fetch_retry_irq(&stats->syncp, start));
  
  		s->rx_packets += tmp.rx_packets;
  		s->rx_bytes   += tmp.rx_bytes;
  		s->tx_packets += tmp.tx_packets;
  		s->tx_bytes   += tmp.tx_bytes;
  	}
  
  	s->rx_dropped = dev->stats.rx_dropped;
  	s->tx_dropped = dev->stats.tx_dropped;
c09440f7d   Sabrina Dubroca   macsec: introduce...
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
  }
  
  static int macsec_get_iflink(const struct net_device *dev)
  {
  	return macsec_priv(dev)->real_dev->ifindex;
  }
  
  static const struct net_device_ops macsec_netdev_ops = {
  	.ndo_init		= macsec_dev_init,
  	.ndo_uninit		= macsec_dev_uninit,
  	.ndo_open		= macsec_dev_open,
  	.ndo_stop		= macsec_dev_stop,
  	.ndo_fix_features	= macsec_fix_features,
  	.ndo_change_mtu		= macsec_change_mtu,
  	.ndo_set_rx_mode	= macsec_dev_set_rx_mode,
  	.ndo_change_rx_flags	= macsec_dev_change_rx_flags,
  	.ndo_set_mac_address	= macsec_set_mac_address,
  	.ndo_start_xmit		= macsec_start_xmit,
  	.ndo_get_stats64	= macsec_get_stats64,
  	.ndo_get_iflink		= macsec_get_iflink,
  };
  
  static const struct device_type macsec_type = {
  	.name = "macsec",
  };
  
  static const struct nla_policy macsec_rtnl_policy[IFLA_MACSEC_MAX + 1] = {
  	[IFLA_MACSEC_SCI] = { .type = NLA_U64 },
  	[IFLA_MACSEC_ICV_LEN] = { .type = NLA_U8 },
  	[IFLA_MACSEC_CIPHER_SUITE] = { .type = NLA_U64 },
  	[IFLA_MACSEC_WINDOW] = { .type = NLA_U32 },
  	[IFLA_MACSEC_ENCODING_SA] = { .type = NLA_U8 },
  	[IFLA_MACSEC_ENCRYPT] = { .type = NLA_U8 },
  	[IFLA_MACSEC_PROTECT] = { .type = NLA_U8 },
  	[IFLA_MACSEC_INC_SCI] = { .type = NLA_U8 },
  	[IFLA_MACSEC_ES] = { .type = NLA_U8 },
  	[IFLA_MACSEC_SCB] = { .type = NLA_U8 },
  	[IFLA_MACSEC_REPLAY_PROTECT] = { .type = NLA_U8 },
  	[IFLA_MACSEC_VALIDATION] = { .type = NLA_U8 },
  };
  
  static void macsec_free_netdev(struct net_device *dev)
  {
  	struct macsec_dev *macsec = macsec_priv(dev);
c09440f7d   Sabrina Dubroca   macsec: introduce...
3249
3250
3251
  
  	free_percpu(macsec->stats);
  	free_percpu(macsec->secy.tx_sc.stats);
c09440f7d   Sabrina Dubroca   macsec: introduce...
3252
3253
3254
3255
3256
  }
  
  static void macsec_setup(struct net_device *dev)
  {
  	ether_setup(dev);
91572088e   Jarod Wilson   net: use core MTU...
3257
3258
  	dev->min_mtu = 0;
  	dev->max_mtu = ETH_MAX_MTU;
e425974fe   Phil Sutter   macsec: Convert t...
3259
  	dev->priv_flags |= IFF_NO_QUEUE;
c09440f7d   Sabrina Dubroca   macsec: introduce...
3260
  	dev->netdev_ops = &macsec_netdev_ops;
cf124db56   David S. Miller   net: Fix inconsis...
3261
3262
  	dev->needs_free_netdev = true;
  	dev->priv_destructor = macsec_free_netdev;
c24acf03c   stephen hemminger   macsec: set netwo...
3263
  	SET_NETDEV_DEVTYPE(dev, &macsec_type);
c09440f7d   Sabrina Dubroca   macsec: introduce...
3264
3265
3266
  
  	eth_zero_addr(dev->broadcast);
  }
ccfdec908   Felix Walter   macsec: Add suppo...
3267
3268
  static int macsec_changelink_common(struct net_device *dev,
  				    struct nlattr *data[])
c09440f7d   Sabrina Dubroca   macsec: introduce...
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
  {
  	struct macsec_secy *secy;
  	struct macsec_tx_sc *tx_sc;
  
  	secy = &macsec_priv(dev)->secy;
  	tx_sc = &secy->tx_sc;
  
  	if (data[IFLA_MACSEC_ENCODING_SA]) {
  		struct macsec_tx_sa *tx_sa;
  
  		tx_sc->encoding_sa = nla_get_u8(data[IFLA_MACSEC_ENCODING_SA]);
  		tx_sa = rtnl_dereference(tx_sc->sa[tx_sc->encoding_sa]);
  
  		secy->operational = tx_sa && tx_sa->active;
  	}
  
  	if (data[IFLA_MACSEC_WINDOW])
  		secy->replay_window = nla_get_u32(data[IFLA_MACSEC_WINDOW]);
  
  	if (data[IFLA_MACSEC_ENCRYPT])
  		tx_sc->encrypt = !!nla_get_u8(data[IFLA_MACSEC_ENCRYPT]);
  
  	if (data[IFLA_MACSEC_PROTECT])
  		secy->protect_frames = !!nla_get_u8(data[IFLA_MACSEC_PROTECT]);
  
  	if (data[IFLA_MACSEC_INC_SCI])
  		tx_sc->send_sci = !!nla_get_u8(data[IFLA_MACSEC_INC_SCI]);
  
  	if (data[IFLA_MACSEC_ES])
  		tx_sc->end_station = !!nla_get_u8(data[IFLA_MACSEC_ES]);
  
  	if (data[IFLA_MACSEC_SCB])
  		tx_sc->scb = !!nla_get_u8(data[IFLA_MACSEC_SCB]);
  
  	if (data[IFLA_MACSEC_REPLAY_PROTECT])
  		secy->replay_protect = !!nla_get_u8(data[IFLA_MACSEC_REPLAY_PROTECT]);
  
  	if (data[IFLA_MACSEC_VALIDATION])
  		secy->validate_frames = nla_get_u8(data[IFLA_MACSEC_VALIDATION]);
ccfdec908   Felix Walter   macsec: Add suppo...
3308
3309
3310
3311
  
  	if (data[IFLA_MACSEC_CIPHER_SUITE]) {
  		switch (nla_get_u64(data[IFLA_MACSEC_CIPHER_SUITE])) {
  		case MACSEC_CIPHER_ID_GCM_AES_128:
e8660ded7   Sabrina Dubroca   macsec: restore u...
3312
  		case MACSEC_DEFAULT_CIPHER_ID:
ccfdec908   Felix Walter   macsec: Add suppo...
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
  			secy->key_len = MACSEC_GCM_AES_128_SAK_LEN;
  			break;
  		case MACSEC_CIPHER_ID_GCM_AES_256:
  			secy->key_len = MACSEC_GCM_AES_256_SAK_LEN;
  			break;
  		default:
  			return -EINVAL;
  		}
  	}
  
  	return 0;
c09440f7d   Sabrina Dubroca   macsec: introduce...
3324
3325
3326
  }
  
  static int macsec_changelink(struct net_device *dev, struct nlattr *tb[],
ad744b223   Matthias Schiffer   net: add netlink_...
3327
3328
  			     struct nlattr *data[],
  			     struct netlink_ext_ack *extack)
c09440f7d   Sabrina Dubroca   macsec: introduce...
3329
  {
3cf3227a2   Antoine Tenart   net: macsec: hard...
3330
3331
3332
3333
  	struct macsec_dev *macsec = macsec_priv(dev);
  	struct macsec_tx_sa tx_sc;
  	struct macsec_secy secy;
  	int ret;
c09440f7d   Sabrina Dubroca   macsec: introduce...
3334
3335
3336
3337
3338
3339
3340
3341
  	if (!data)
  		return 0;
  
  	if (data[IFLA_MACSEC_CIPHER_SUITE] ||
  	    data[IFLA_MACSEC_ICV_LEN] ||
  	    data[IFLA_MACSEC_SCI] ||
  	    data[IFLA_MACSEC_PORT])
  		return -EINVAL;
3cf3227a2   Antoine Tenart   net: macsec: hard...
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
  	/* Keep a copy of unmodified secy and tx_sc, in case the offload
  	 * propagation fails, to revert macsec_changelink_common.
  	 */
  	memcpy(&secy, &macsec->secy, sizeof(secy));
  	memcpy(&tx_sc, &macsec->secy.tx_sc, sizeof(tx_sc));
  
  	ret = macsec_changelink_common(dev, data);
  	if (ret)
  		return ret;
  
  	/* If h/w offloading is available, propagate to the device */
  	if (macsec_is_offloaded(macsec)) {
  		const struct macsec_ops *ops;
  		struct macsec_context ctx;
  		int ret;
  
  		ops = macsec_get_ops(netdev_priv(dev), &ctx);
  		if (!ops) {
  			ret = -EOPNOTSUPP;
  			goto cleanup;
  		}
  
  		ctx.secy = &macsec->secy;
  		ret = macsec_offload(ops->mdo_upd_secy, &ctx);
  		if (ret)
  			goto cleanup;
  	}
  
  	return 0;
  
  cleanup:
  	memcpy(&macsec->secy.tx_sc, &tx_sc, sizeof(tx_sc));
  	memcpy(&macsec->secy, &secy, sizeof(secy));
  
  	return ret;
c09440f7d   Sabrina Dubroca   macsec: introduce...
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
  }
  
  static void macsec_del_dev(struct macsec_dev *macsec)
  {
  	int i;
  
  	while (macsec->secy.rx_sc) {
  		struct macsec_rx_sc *rx_sc = rtnl_dereference(macsec->secy.rx_sc);
  
  		rcu_assign_pointer(macsec->secy.rx_sc, rx_sc->next);
  		free_rx_sc(rx_sc);
  	}
  
  	for (i = 0; i < MACSEC_NUM_AN; i++) {
  		struct macsec_tx_sa *sa = rtnl_dereference(macsec->secy.tx_sc.sa[i]);
  
  		if (sa) {
  			RCU_INIT_POINTER(macsec->secy.tx_sc.sa[i], NULL);
  			clear_tx_sa(sa);
  		}
  	}
  }
bbe11fab0   Sabrina Dubroca   macsec: use after...
3399
3400
3401
  static void macsec_common_dellink(struct net_device *dev, struct list_head *head)
  {
  	struct macsec_dev *macsec = macsec_priv(dev);
e20038724   Sabrina Dubroca   macsec: fix lockd...
3402
  	struct net_device *real_dev = macsec->real_dev;
bbe11fab0   Sabrina Dubroca   macsec: use after...
3403
3404
3405
3406
  
  	unregister_netdevice_queue(dev, head);
  	list_del_rcu(&macsec->secys);
  	macsec_del_dev(macsec);
e20038724   Sabrina Dubroca   macsec: fix lockd...
3407
  	netdev_upper_dev_unlink(real_dev, dev);
bbe11fab0   Sabrina Dubroca   macsec: use after...
3408
3409
3410
  
  	macsec_generation++;
  }
c09440f7d   Sabrina Dubroca   macsec: introduce...
3411
3412
3413
3414
3415
  static void macsec_dellink(struct net_device *dev, struct list_head *head)
  {
  	struct macsec_dev *macsec = macsec_priv(dev);
  	struct net_device *real_dev = macsec->real_dev;
  	struct macsec_rxh_data *rxd = macsec_data_rtnl(real_dev);
3cf3227a2   Antoine Tenart   net: macsec: hard...
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
  	/* If h/w offloading is available, propagate to the device */
  	if (macsec_is_offloaded(macsec)) {
  		const struct macsec_ops *ops;
  		struct macsec_context ctx;
  
  		ops = macsec_get_ops(netdev_priv(dev), &ctx);
  		if (ops) {
  			ctx.secy = &macsec->secy;
  			macsec_offload(ops->mdo_del_secy, &ctx);
  		}
  	}
bbe11fab0   Sabrina Dubroca   macsec: use after...
3427
  	macsec_common_dellink(dev, head);
96cfc5052   Sabrina Dubroca   macsec: add consi...
3428

960d5848d   Sabrina Dubroca   macsec: fix memor...
3429
  	if (list_empty(&rxd->secys)) {
c09440f7d   Sabrina Dubroca   macsec: introduce...
3430
  		netdev_rx_handler_unregister(real_dev);
960d5848d   Sabrina Dubroca   macsec: fix memor...
3431
3432
  		kfree(rxd);
  	}
c09440f7d   Sabrina Dubroca   macsec: introduce...
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
  }
  
  static int register_macsec_dev(struct net_device *real_dev,
  			       struct net_device *dev)
  {
  	struct macsec_dev *macsec = macsec_priv(dev);
  	struct macsec_rxh_data *rxd = macsec_data_rtnl(real_dev);
  
  	if (!rxd) {
  		int err;
  
  		rxd = kmalloc(sizeof(*rxd), GFP_KERNEL);
  		if (!rxd)
  			return -ENOMEM;
  
  		INIT_LIST_HEAD(&rxd->secys);
  
  		err = netdev_rx_handler_register(real_dev, macsec_handle_frame,
  						 rxd);
960d5848d   Sabrina Dubroca   macsec: fix memor...
3452
3453
  		if (err < 0) {
  			kfree(rxd);
c09440f7d   Sabrina Dubroca   macsec: introduce...
3454
  			return err;
960d5848d   Sabrina Dubroca   macsec: fix memor...
3455
  		}
c09440f7d   Sabrina Dubroca   macsec: introduce...
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
  	}
  
  	list_add_tail_rcu(&macsec->secys, &rxd->secys);
  	return 0;
  }
  
  static bool sci_exists(struct net_device *dev, sci_t sci)
  {
  	struct macsec_rxh_data *rxd = macsec_data_rtnl(dev);
  	struct macsec_dev *macsec;
  
  	list_for_each_entry(macsec, &rxd->secys, secys) {
  		if (macsec->secy.sci == sci)
  			return true;
  	}
  
  	return false;
  }
  
  static sci_t dev_to_sci(struct net_device *dev, __be16 port)
  {
  	return make_sci(dev->dev_addr, port);
  }
  
  static int macsec_add_dev(struct net_device *dev, sci_t sci, u8 icv_len)
  {
  	struct macsec_dev *macsec = macsec_priv(dev);
  	struct macsec_secy *secy = &macsec->secy;
  
  	macsec->stats = netdev_alloc_pcpu_stats(struct pcpu_secy_stats);
  	if (!macsec->stats)
  		return -ENOMEM;
  
  	secy->tx_sc.stats = netdev_alloc_pcpu_stats(struct pcpu_tx_sc_stats);
  	if (!secy->tx_sc.stats) {
  		free_percpu(macsec->stats);
  		return -ENOMEM;
  	}
  
  	if (sci == MACSEC_UNDEF_SCI)
  		sci = dev_to_sci(dev, MACSEC_PORT_ES);
  
  	secy->netdev = dev;
  	secy->operational = true;
  	secy->key_len = DEFAULT_SAK_LEN;
  	secy->icv_len = icv_len;
  	secy->validate_frames = MACSEC_VALIDATE_DEFAULT;
  	secy->protect_frames = true;
  	secy->replay_protect = false;
  
  	secy->sci = sci;
  	secy->tx_sc.active = true;
  	secy->tx_sc.encoding_sa = DEFAULT_ENCODING_SA;
  	secy->tx_sc.encrypt = DEFAULT_ENCRYPT;
  	secy->tx_sc.send_sci = DEFAULT_SEND_SCI;
  	secy->tx_sc.end_station = false;
  	secy->tx_sc.scb = false;
  
  	return 0;
  }
  
  static int macsec_newlink(struct net *net, struct net_device *dev,
7a3f4a185   Matthias Schiffer   net: add netlink_...
3518
3519
  			  struct nlattr *tb[], struct nlattr *data[],
  			  struct netlink_ext_ack *extack)
c09440f7d   Sabrina Dubroca   macsec: introduce...
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
  {
  	struct macsec_dev *macsec = macsec_priv(dev);
  	struct net_device *real_dev;
  	int err;
  	sci_t sci;
  	u8 icv_len = DEFAULT_ICV_LEN;
  	rx_handler_func_t *rx_handler;
  
  	if (!tb[IFLA_LINK])
  		return -EINVAL;
  	real_dev = __dev_get_by_index(net, nla_get_u32(tb[IFLA_LINK]));
  	if (!real_dev)
  		return -ENODEV;
  
  	dev->priv_flags |= IFF_MACSEC;
  
  	macsec->real_dev = real_dev;
3cf3227a2   Antoine Tenart   net: macsec: hard...
3537
3538
  	/* MACsec offloading is off by default */
  	macsec->offload = MACSEC_OFFLOAD_OFF;
c09440f7d   Sabrina Dubroca   macsec: introduce...
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
  	if (data && data[IFLA_MACSEC_ICV_LEN])
  		icv_len = nla_get_u8(data[IFLA_MACSEC_ICV_LEN]);
  	dev->mtu = real_dev->mtu - icv_len - macsec_extra_len(true);
  
  	rx_handler = rtnl_dereference(real_dev->rx_handler);
  	if (rx_handler && rx_handler != macsec_handle_frame)
  		return -EBUSY;
  
  	err = register_netdevice(dev);
  	if (err < 0)
  		return err;
42ab19ee9   David Ahern   net: Add extack t...
3550
  	err = netdev_upper_dev_link(real_dev, dev, extack);
e20038724   Sabrina Dubroca   macsec: fix lockd...
3551
  	if (err < 0)
bd28899dd   Dan Carpenter   Revert "macsec: m...
3552
  		goto unregister;
e20038724   Sabrina Dubroca   macsec: fix lockd...
3553

c09440f7d   Sabrina Dubroca   macsec: introduce...
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
  	/* need to be already registered so that ->init has run and
  	 * the MAC addr is set
  	 */
  	if (data && data[IFLA_MACSEC_SCI])
  		sci = nla_get_sci(data[IFLA_MACSEC_SCI]);
  	else if (data && data[IFLA_MACSEC_PORT])
  		sci = dev_to_sci(dev, nla_get_be16(data[IFLA_MACSEC_PORT]));
  	else
  		sci = dev_to_sci(dev, MACSEC_PORT_ES);
  
  	if (rx_handler && sci_exists(real_dev, sci)) {
  		err = -EBUSY;
e20038724   Sabrina Dubroca   macsec: fix lockd...
3566
  		goto unlink;
c09440f7d   Sabrina Dubroca   macsec: introduce...
3567
3568
3569
3570
  	}
  
  	err = macsec_add_dev(dev, sci, icv_len);
  	if (err)
e20038724   Sabrina Dubroca   macsec: fix lockd...
3571
  		goto unlink;
c09440f7d   Sabrina Dubroca   macsec: introduce...
3572

ccfdec908   Felix Walter   macsec: Add suppo...
3573
3574
3575
3576
3577
  	if (data) {
  		err = macsec_changelink_common(dev, data);
  		if (err)
  			goto del_dev;
  	}
c09440f7d   Sabrina Dubroca   macsec: introduce...
3578
3579
3580
3581
  
  	err = register_macsec_dev(real_dev, dev);
  	if (err < 0)
  		goto del_dev;
e6ac07588   Sabrina Dubroca   macsec: update op...
3582
3583
  	netif_stacked_transfer_operstate(real_dev, dev);
  	linkwatch_fire_event(dev);
96cfc5052   Sabrina Dubroca   macsec: add consi...
3584
  	macsec_generation++;
c09440f7d   Sabrina Dubroca   macsec: introduce...
3585
3586
3587
3588
  	return 0;
  
  del_dev:
  	macsec_del_dev(macsec);
e20038724   Sabrina Dubroca   macsec: fix lockd...
3589
3590
  unlink:
  	netdev_upper_dev_unlink(real_dev, dev);
bd28899dd   Dan Carpenter   Revert "macsec: m...
3591
  unregister:
c09440f7d   Sabrina Dubroca   macsec: introduce...
3592
3593
3594
  	unregister_netdevice(dev);
  	return err;
  }
a8b8a889e   Matthias Schiffer   net: add netlink_...
3595
3596
  static int macsec_validate_attr(struct nlattr *tb[], struct nlattr *data[],
  				struct netlink_ext_ack *extack)
c09440f7d   Sabrina Dubroca   macsec: introduce...
3597
  {
748164802   Sabrina Dubroca   macsec: add missi...
3598
  	u64 csid = MACSEC_DEFAULT_CIPHER_ID;
c09440f7d   Sabrina Dubroca   macsec: introduce...
3599
3600
3601
3602
3603
3604
3605
3606
3607
  	u8 icv_len = DEFAULT_ICV_LEN;
  	int flag;
  	bool es, scb, sci;
  
  	if (!data)
  		return 0;
  
  	if (data[IFLA_MACSEC_CIPHER_SUITE])
  		csid = nla_get_u64(data[IFLA_MACSEC_CIPHER_SUITE]);
f04c392d2   Davide Caratti   macsec: validate ...
3608
  	if (data[IFLA_MACSEC_ICV_LEN]) {
c09440f7d   Sabrina Dubroca   macsec: introduce...
3609
  		icv_len = nla_get_u8(data[IFLA_MACSEC_ICV_LEN]);
f04c392d2   Davide Caratti   macsec: validate ...
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
  		if (icv_len != DEFAULT_ICV_LEN) {
  			char dummy_key[DEFAULT_SAK_LEN] = { 0 };
  			struct crypto_aead *dummy_tfm;
  
  			dummy_tfm = macsec_alloc_tfm(dummy_key,
  						     DEFAULT_SAK_LEN,
  						     icv_len);
  			if (IS_ERR(dummy_tfm))
  				return PTR_ERR(dummy_tfm);
  			crypto_free_aead(dummy_tfm);
  		}
  	}
c09440f7d   Sabrina Dubroca   macsec: introduce...
3622
3623
  
  	switch (csid) {
ccfdec908   Felix Walter   macsec: Add suppo...
3624
3625
  	case MACSEC_CIPHER_ID_GCM_AES_128:
  	case MACSEC_CIPHER_ID_GCM_AES_256:
e8660ded7   Sabrina Dubroca   macsec: restore u...
3626
  	case MACSEC_DEFAULT_CIPHER_ID:
c09440f7d   Sabrina Dubroca   macsec: introduce...
3627
  		if (icv_len < MACSEC_MIN_ICV_LEN ||
2ccbe2cb7   Davide Caratti   macsec: limit ICV...
3628
  		    icv_len > MACSEC_STD_ICV_LEN)
c09440f7d   Sabrina Dubroca   macsec: introduce...
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
  			return -EINVAL;
  		break;
  	default:
  		return -EINVAL;
  	}
  
  	if (data[IFLA_MACSEC_ENCODING_SA]) {
  		if (nla_get_u8(data[IFLA_MACSEC_ENCODING_SA]) >= MACSEC_NUM_AN)
  			return -EINVAL;
  	}
  
  	for (flag = IFLA_MACSEC_ENCODING_SA + 1;
  	     flag < IFLA_MACSEC_VALIDATION;
  	     flag++) {
  		if (data[flag]) {
  			if (nla_get_u8(data[flag]) > 1)
  				return -EINVAL;
  		}
  	}
  
  	es  = data[IFLA_MACSEC_ES] ? nla_get_u8(data[IFLA_MACSEC_ES]) : false;
  	sci = data[IFLA_MACSEC_INC_SCI] ? nla_get_u8(data[IFLA_MACSEC_INC_SCI]) : false;
  	scb = data[IFLA_MACSEC_SCB] ? nla_get_u8(data[IFLA_MACSEC_SCB]) : false;
  
  	if ((sci && (scb || es)) || (scb && es))
  		return -EINVAL;
  
  	if (data[IFLA_MACSEC_VALIDATION] &&
  	    nla_get_u8(data[IFLA_MACSEC_VALIDATION]) > MACSEC_VALIDATE_MAX)
  		return -EINVAL;
4b1fb9352   Sabrina Dubroca   macsec: fix netli...
3659
3660
  	if ((data[IFLA_MACSEC_REPLAY_PROTECT] &&
  	     nla_get_u8(data[IFLA_MACSEC_REPLAY_PROTECT])) &&
c09440f7d   Sabrina Dubroca   macsec: introduce...
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
  	    !data[IFLA_MACSEC_WINDOW])
  		return -EINVAL;
  
  	return 0;
  }
  
  static struct net *macsec_get_link_net(const struct net_device *dev)
  {
  	return dev_net(macsec_priv(dev)->real_dev);
  }
  
  static size_t macsec_get_size(const struct net_device *dev)
  {
c9fba3ed3   Zhang Shengju   macsec: remove fi...
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
  	return  nla_total_size_64bit(8) + /* IFLA_MACSEC_SCI */
  		nla_total_size(1) + /* IFLA_MACSEC_ICV_LEN */
  		nla_total_size_64bit(8) + /* IFLA_MACSEC_CIPHER_SUITE */
  		nla_total_size(4) + /* IFLA_MACSEC_WINDOW */
  		nla_total_size(1) + /* IFLA_MACSEC_ENCODING_SA */
  		nla_total_size(1) + /* IFLA_MACSEC_ENCRYPT */
  		nla_total_size(1) + /* IFLA_MACSEC_PROTECT */
  		nla_total_size(1) + /* IFLA_MACSEC_INC_SCI */
  		nla_total_size(1) + /* IFLA_MACSEC_ES */
  		nla_total_size(1) + /* IFLA_MACSEC_SCB */
  		nla_total_size(1) + /* IFLA_MACSEC_REPLAY_PROTECT */
  		nla_total_size(1) + /* IFLA_MACSEC_VALIDATION */
c09440f7d   Sabrina Dubroca   macsec: introduce...
3686
3687
3688
3689
3690
3691
3692
3693
  		0;
  }
  
  static int macsec_fill_info(struct sk_buff *skb,
  			    const struct net_device *dev)
  {
  	struct macsec_secy *secy = &macsec_priv(dev)->secy;
  	struct macsec_tx_sc *tx_sc = &secy->tx_sc;
ccfdec908   Felix Walter   macsec: Add suppo...
3694
3695
3696
3697
  	u64 csid;
  
  	switch (secy->key_len) {
  	case MACSEC_GCM_AES_128_SAK_LEN:
e8660ded7   Sabrina Dubroca   macsec: restore u...
3698
  		csid = MACSEC_DEFAULT_CIPHER_ID;
ccfdec908   Felix Walter   macsec: Add suppo...
3699
3700
3701
3702
3703
3704
3705
  		break;
  	case MACSEC_GCM_AES_256_SAK_LEN:
  		csid = MACSEC_CIPHER_ID_GCM_AES_256;
  		break;
  	default:
  		goto nla_put_failure;
  	}
c09440f7d   Sabrina Dubroca   macsec: introduce...
3706

f60d94c00   Nicolas Dichtel   macsec: use nla_p...
3707
3708
  	if (nla_put_sci(skb, IFLA_MACSEC_SCI, secy->sci,
  			IFLA_MACSEC_PAD) ||
c09440f7d   Sabrina Dubroca   macsec: introduce...
3709
  	    nla_put_u8(skb, IFLA_MACSEC_ICV_LEN, secy->icv_len) ||
f60d94c00   Nicolas Dichtel   macsec: use nla_p...
3710
  	    nla_put_u64_64bit(skb, IFLA_MACSEC_CIPHER_SUITE,
ccfdec908   Felix Walter   macsec: Add suppo...
3711
  			      csid, IFLA_MACSEC_PAD) ||
c09440f7d   Sabrina Dubroca   macsec: introduce...
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
  	    nla_put_u8(skb, IFLA_MACSEC_ENCODING_SA, tx_sc->encoding_sa) ||
  	    nla_put_u8(skb, IFLA_MACSEC_ENCRYPT, tx_sc->encrypt) ||
  	    nla_put_u8(skb, IFLA_MACSEC_PROTECT, secy->protect_frames) ||
  	    nla_put_u8(skb, IFLA_MACSEC_INC_SCI, tx_sc->send_sci) ||
  	    nla_put_u8(skb, IFLA_MACSEC_ES, tx_sc->end_station) ||
  	    nla_put_u8(skb, IFLA_MACSEC_SCB, tx_sc->scb) ||
  	    nla_put_u8(skb, IFLA_MACSEC_REPLAY_PROTECT, secy->replay_protect) ||
  	    nla_put_u8(skb, IFLA_MACSEC_VALIDATION, secy->validate_frames) ||
  	    0)
  		goto nla_put_failure;
  
  	if (secy->replay_protect) {
  		if (nla_put_u32(skb, IFLA_MACSEC_WINDOW, secy->replay_window))
  			goto nla_put_failure;
  	}
  
  	return 0;
  
  nla_put_failure:
  	return -EMSGSIZE;
  }
  
  static struct rtnl_link_ops macsec_link_ops __read_mostly = {
  	.kind		= "macsec",
  	.priv_size	= sizeof(struct macsec_dev),
  	.maxtype	= IFLA_MACSEC_MAX,
  	.policy		= macsec_rtnl_policy,
  	.setup		= macsec_setup,
  	.validate	= macsec_validate_attr,
  	.newlink	= macsec_newlink,
  	.changelink	= macsec_changelink,
  	.dellink	= macsec_dellink,
  	.get_size	= macsec_get_size,
  	.fill_info	= macsec_fill_info,
  	.get_link_net	= macsec_get_link_net,
  };
  
  static bool is_macsec_master(struct net_device *dev)
  {
  	return rcu_access_pointer(dev->rx_handler) == macsec_handle_frame;
  }
  
  static int macsec_notify(struct notifier_block *this, unsigned long event,
  			 void *ptr)
  {
  	struct net_device *real_dev = netdev_notifier_info_to_dev(ptr);
  	LIST_HEAD(head);
  
  	if (!is_macsec_master(real_dev))
  		return NOTIFY_DONE;
  
  	switch (event) {
e6ac07588   Sabrina Dubroca   macsec: update op...
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
  	case NETDEV_DOWN:
  	case NETDEV_UP:
  	case NETDEV_CHANGE: {
  		struct macsec_dev *m, *n;
  		struct macsec_rxh_data *rxd;
  
  		rxd = macsec_data_rtnl(real_dev);
  		list_for_each_entry_safe(m, n, &rxd->secys, secys) {
  			struct net_device *dev = m->secy.netdev;
  
  			netif_stacked_transfer_operstate(real_dev, dev);
  		}
  		break;
  	}
c09440f7d   Sabrina Dubroca   macsec: introduce...
3778
3779
3780
3781
3782
3783
  	case NETDEV_UNREGISTER: {
  		struct macsec_dev *m, *n;
  		struct macsec_rxh_data *rxd;
  
  		rxd = macsec_data_rtnl(real_dev);
  		list_for_each_entry_safe(m, n, &rxd->secys, secys) {
bbe11fab0   Sabrina Dubroca   macsec: use after...
3784
  			macsec_common_dellink(m->secy.netdev, &head);
c09440f7d   Sabrina Dubroca   macsec: introduce...
3785
  		}
bbe11fab0   Sabrina Dubroca   macsec: use after...
3786
3787
3788
  
  		netdev_rx_handler_unregister(real_dev);
  		kfree(rxd);
c09440f7d   Sabrina Dubroca   macsec: introduce...
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
  		unregister_netdevice_many(&head);
  		break;
  	}
  	case NETDEV_CHANGEMTU: {
  		struct macsec_dev *m;
  		struct macsec_rxh_data *rxd;
  
  		rxd = macsec_data_rtnl(real_dev);
  		list_for_each_entry(m, &rxd->secys, secys) {
  			struct net_device *dev = m->secy.netdev;
  			unsigned int mtu = real_dev->mtu - (m->secy.icv_len +
  							    macsec_extra_len(true));
  
  			if (dev->mtu > mtu)
  				dev_set_mtu(dev, mtu);
  		}
  	}
  	}
  
  	return NOTIFY_OK;
  }
  
  static struct notifier_block macsec_notifier = {
  	.notifier_call = macsec_notify,
  };
  
  static int __init macsec_init(void)
  {
  	int err;
  
  	pr_info("MACsec IEEE 802.1AE
  ");
  	err = register_netdevice_notifier(&macsec_notifier);
  	if (err)
  		return err;
  
  	err = rtnl_link_register(&macsec_link_ops);
  	if (err)
  		goto notifier;
489111e5c   Johannes Berg   genetlink: static...
3828
  	err = genl_register_family(&macsec_fam);
c09440f7d   Sabrina Dubroca   macsec: introduce...
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
  	if (err)
  		goto rtnl;
  
  	return 0;
  
  rtnl:
  	rtnl_link_unregister(&macsec_link_ops);
  notifier:
  	unregister_netdevice_notifier(&macsec_notifier);
  	return err;
  }
  
  static void __exit macsec_exit(void)
  {
  	genl_unregister_family(&macsec_fam);
  	rtnl_link_unregister(&macsec_link_ops);
  	unregister_netdevice_notifier(&macsec_notifier);
b196c22af   Sabrina Dubroca   macsec: add rcu_b...
3846
  	rcu_barrier();
c09440f7d   Sabrina Dubroca   macsec: introduce...
3847
3848
3849
3850
3851
3852
  }
  
  module_init(macsec_init);
  module_exit(macsec_exit);
  
  MODULE_ALIAS_RTNL_LINK("macsec");
78362998f   Sabrina Dubroca   macsec: add genl ...
3853
  MODULE_ALIAS_GENL_FAMILY("macsec");
c09440f7d   Sabrina Dubroca   macsec: introduce...
3854
3855
3856
  
  MODULE_DESCRIPTION("MACsec IEEE 802.1AE");
  MODULE_LICENSE("GPL v2");