~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/net/tls.h

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /include/net/tls.h (Version linux-6.12-rc7) and /include/net/tls.h (Version linux-4.11.12)


  1 /*                                                  1 
  2  * Copyright (c) 2016-2017, Mellanox Technolog    
  3  * Copyright (c) 2016-2017, Dave Watson <davej    
  4  *                                                
  5  * This software is available to you under a c    
  6  * licenses.  You may choose to be licensed un    
  7  * General Public License (GPL) Version 2, ava    
  8  * COPYING in the main directory of this sourc    
  9  * OpenIB.org BSD license below:                  
 10  *                                                
 11  *     Redistribution and use in source and bi    
 12  *     without modification, are permitted pro    
 13  *     conditions are met:                        
 14  *                                                
 15  *      - Redistributions of source code must     
 16  *        copyright notice, this list of condi    
 17  *        disclaimer.                             
 18  *                                                
 19  *      - Redistributions in binary form must     
 20  *        copyright notice, this list of condi    
 21  *        disclaimer in the documentation and/    
 22  *        provided with the distribution.         
 23  *                                                
 24  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT W    
 25  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMIT    
 26  * MERCHANTABILITY, FITNESS FOR A PARTICULAR P    
 27  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTH    
 28  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER L    
 29  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARIS    
 30  * CONNECTION WITH THE SOFTWARE OR THE USE OR     
 31  * SOFTWARE.                                      
 32  */                                               
 33                                                   
 34 #ifndef _TLS_OFFLOAD_H                            
 35 #define _TLS_OFFLOAD_H                            
 36                                                   
 37 #include <linux/types.h>                          
 38 #include <asm/byteorder.h>                        
 39 #include <linux/crypto.h>                         
 40 #include <linux/socket.h>                         
 41 #include <linux/tcp.h>                            
 42 #include <linux/mutex.h>                          
 43 #include <linux/netdevice.h>                      
 44 #include <linux/rcupdate.h>                       
 45                                                   
 46 #include <net/net_namespace.h>                    
 47 #include <net/tcp.h>                              
 48 #include <net/strparser.h>                        
 49 #include <crypto/aead.h>                          
 50 #include <uapi/linux/tls.h>                       
 51                                                   
 52 struct tls_rec;                                   
 53                                                   
 54 /* Maximum data size carried in a TLS record *    
 55 #define TLS_MAX_PAYLOAD_SIZE            ((size    
 56                                                   
 57 #define TLS_HEADER_SIZE                 5         
 58 #define TLS_NONCE_OFFSET                TLS_HE    
 59                                                   
 60 #define TLS_CRYPTO_INFO_READY(info)     ((info    
 61                                                   
 62 #define TLS_AAD_SPACE_SIZE              13        
 63                                                   
 64 #define TLS_MAX_IV_SIZE                 16        
 65 #define TLS_MAX_SALT_SIZE               4         
 66 #define TLS_TAG_SIZE                    16        
 67 #define TLS_MAX_REC_SEQ_SIZE            8         
 68 #define TLS_MAX_AAD_SIZE                TLS_AA    
 69                                                   
 70 /* For CCM mode, the full 16-bytes of IV is ma    
 71  *                                                
 72  * IV[16] = b0[1] || implicit nonce[4] || expl    
 73  *                                                
 74  * The field 'length' is encoded in field 'b0'    
 75  * Hence b0 contains (3 - 1) = 2.                 
 76  */                                               
 77 #define TLS_AES_CCM_IV_B0_BYTE          2         
 78 #define TLS_SM4_CCM_IV_B0_BYTE          2         
 79                                                   
 80 enum {                                            
 81         TLS_BASE,                                 
 82         TLS_SW,                                   
 83         TLS_HW,                                   
 84         TLS_HW_RECORD,                            
 85         TLS_NUM_CONFIG,                           
 86 };                                                
 87                                                   
 88 struct tx_work {                                  
 89         struct delayed_work work;                 
 90         struct sock *sk;                          
 91 };                                                
 92                                                   
 93 struct tls_sw_context_tx {                        
 94         struct crypto_aead *aead_send;            
 95         struct crypto_wait async_wait;            
 96         struct tx_work tx_work;                   
 97         struct tls_rec *open_rec;                 
 98         struct list_head tx_list;                 
 99         atomic_t encrypt_pending;                 
100         u8 async_capable:1;                       
101                                                   
102 #define BIT_TX_SCHEDULED        0                 
103 #define BIT_TX_CLOSING          1                 
104         unsigned long tx_bitmask;                 
105 };                                                
106                                                   
107 struct tls_strparser {                            
108         struct sock *sk;                          
109                                                   
110         u32 mark : 8;                             
111         u32 stopped : 1;                          
112         u32 copy_mode : 1;                        
113         u32 mixed_decrypted : 1;                  
114                                                   
115         bool msg_ready;                           
116                                                   
117         struct strp_msg stm;                      
118                                                   
119         struct sk_buff *anchor;                   
120         struct work_struct work;                  
121 };                                                
122                                                   
123 struct tls_sw_context_rx {                        
124         struct crypto_aead *aead_recv;            
125         struct crypto_wait async_wait;            
126         struct sk_buff_head rx_list;    /* lis    
127         void (*saved_data_ready)(struct sock *    
128                                                   
129         u8 reader_present;                        
130         u8 async_capable:1;                       
131         u8 zc_capable:1;                          
132         u8 reader_contended:1;                    
133                                                   
134         struct tls_strparser strp;                
135                                                   
136         atomic_t decrypt_pending;                 
137         struct sk_buff_head async_hold;           
138         struct wait_queue_head wq;                
139 };                                                
140                                                   
141 struct tls_record_info {                          
142         struct list_head list;                    
143         u32 end_seq;                              
144         int len;                                  
145         int num_frags;                            
146         skb_frag_t frags[MAX_SKB_FRAGS];          
147 };                                                
148                                                   
149 #define TLS_DRIVER_STATE_SIZE_TX        16        
150 struct tls_offload_context_tx {                   
151         struct crypto_aead *aead_send;            
152         spinlock_t lock;        /* protects re    
153         struct list_head records_list;            
154         struct tls_record_info *open_record;      
155         struct tls_record_info *retransmit_hin    
156         u64 hint_record_sn;                       
157         u64 unacked_record_sn;                    
158                                                   
159         struct scatterlist sg_tx_data[MAX_SKB_    
160         void (*sk_destruct)(struct sock *sk);     
161         struct work_struct destruct_work;         
162         struct tls_context *ctx;                  
163         /* The TLS layer reserves room for dri    
164          * Currently the belief is that there     
165          * driver specific state to justify an    
166          */                                       
167         u8 driver_state[TLS_DRIVER_STATE_SIZE_    
168 };                                                
169                                                   
170 enum tls_context_flags {                          
171         /* tls_device_down was called after th    
172          * was released, and kTLS works in sof    
173          * still TLS_HW (needed for transition    
174          */                                       
175         TLS_RX_DEV_DEGRADED = 0,                  
176         /* Unlike RX where resync is driven en    
177          * the driver knows when things went o    
178          * to be atomic.                          
179          */                                       
180         TLS_TX_SYNC_SCHED = 1,                    
181         /* tls_dev_del was called for the RX s    
182          * but tls_ctx->netdev might still be     
183          * resources might not be released yet    
184          * tls_dev_del call in tls_device_down    
185          */                                       
186         TLS_RX_DEV_CLOSED = 2,                    
187 };                                                
188                                                   
189 struct cipher_context {                           
190         char iv[TLS_MAX_IV_SIZE + TLS_MAX_SALT    
191         char rec_seq[TLS_MAX_REC_SEQ_SIZE];       
192 };                                                
193                                                   
194 union tls_crypto_context {                        
195         struct tls_crypto_info info;              
196         union {                                   
197                 struct tls12_crypto_info_aes_g    
198                 struct tls12_crypto_info_aes_g    
199                 struct tls12_crypto_info_chach    
200                 struct tls12_crypto_info_sm4_g    
201                 struct tls12_crypto_info_sm4_c    
202         };                                        
203 };                                                
204                                                   
205 struct tls_prot_info {                            
206         u16 version;                              
207         u16 cipher_type;                          
208         u16 prepend_size;                         
209         u16 tag_size;                             
210         u16 overhead_size;                        
211         u16 iv_size;                              
212         u16 salt_size;                            
213         u16 rec_seq_size;                         
214         u16 aad_size;                             
215         u16 tail_size;                            
216 };                                                
217                                                   
218 struct tls_context {                              
219         /* read-only cache line */                
220         struct tls_prot_info prot_info;           
221                                                   
222         u8 tx_conf:3;                             
223         u8 rx_conf:3;                             
224         u8 zerocopy_sendfile:1;                   
225         u8 rx_no_pad:1;                           
226                                                   
227         int (*push_pending_record)(struct sock    
228         void (*sk_write_space)(struct sock *sk    
229                                                   
230         void *priv_ctx_tx;                        
231         void *priv_ctx_rx;                        
232                                                   
233         struct net_device __rcu *netdev;          
234                                                   
235         /* rw cache line */                       
236         struct cipher_context tx;                 
237         struct cipher_context rx;                 
238                                                   
239         struct scatterlist *partially_sent_rec    
240         u16 partially_sent_offset;                
241                                                   
242         bool splicing_pages;                      
243         bool pending_open_record_frags;           
244                                                   
245         struct mutex tx_lock; /* protects part    
246                                * per-type TX f    
247                                */                 
248         unsigned long flags;                      
249                                                   
250         /* cache cold stuff */                    
251         struct proto *sk_proto;                   
252         struct sock *sk;                          
253                                                   
254         void (*sk_destruct)(struct sock *sk);     
255                                                   
256         union tls_crypto_context crypto_send;     
257         union tls_crypto_context crypto_recv;     
258                                                   
259         struct list_head list;                    
260         refcount_t refcount;                      
261         struct rcu_head rcu;                      
262 };                                                
263                                                   
264 enum tls_offload_ctx_dir {                        
265         TLS_OFFLOAD_CTX_DIR_RX,                   
266         TLS_OFFLOAD_CTX_DIR_TX,                   
267 };                                                
268                                                   
269 struct tlsdev_ops {                               
270         int (*tls_dev_add)(struct net_device *    
271                            enum tls_offload_ct    
272                            struct tls_crypto_i    
273                            u32 start_offload_t    
274         void (*tls_dev_del)(struct net_device     
275                             struct tls_context    
276                             enum tls_offload_c    
277         int (*tls_dev_resync)(struct net_devic    
278                               struct sock *sk,    
279                               enum tls_offload    
280 };                                                
281                                                   
282 enum tls_offload_sync_type {                      
283         TLS_OFFLOAD_SYNC_TYPE_DRIVER_REQ = 0,     
284         TLS_OFFLOAD_SYNC_TYPE_CORE_NEXT_HINT =    
285         TLS_OFFLOAD_SYNC_TYPE_DRIVER_REQ_ASYNC    
286 };                                                
287                                                   
288 #define TLS_DEVICE_RESYNC_NH_START_IVAL           
289 #define TLS_DEVICE_RESYNC_NH_MAX_IVAL             
290                                                   
291 #define TLS_DEVICE_RESYNC_ASYNC_LOGMAX            
292 struct tls_offload_resync_async {                 
293         atomic64_t req;                           
294         u16 loglen;                               
295         u16 rcd_delta;                            
296         u32 log[TLS_DEVICE_RESYNC_ASYNC_LOGMAX    
297 };                                                
298                                                   
299 #define TLS_DRIVER_STATE_SIZE_RX        8         
300 struct tls_offload_context_rx {                   
301         /* sw must be the first member of tls_    
302         struct tls_sw_context_rx sw;              
303         enum tls_offload_sync_type resync_type    
304         /* this member is set regardless of re    
305         u8 resync_nh_reset:1;                     
306         /* CORE_NEXT_HINT-only member, but use    
307         u8 resync_nh_do_now:1;                    
308         union {                                   
309                 /* TLS_OFFLOAD_SYNC_TYPE_DRIVE    
310                 struct {                          
311                         atomic64_t resync_req;    
312                 };                                
313                 /* TLS_OFFLOAD_SYNC_TYPE_CORE_    
314                 struct {                          
315                         u32 decrypted_failed;     
316                         u32 decrypted_tgt;        
317                 } resync_nh;                      
318                 /* TLS_OFFLOAD_SYNC_TYPE_DRIVE    
319                 struct {                          
320                         struct tls_offload_res    
321                 };                                
322         };                                        
323         /* The TLS layer reserves room for dri    
324          * Currently the belief is that there     
325          * driver specific state to justify an    
326          */                                       
327         u8 driver_state[TLS_DRIVER_STATE_SIZE_    
328 };                                                
329                                                   
330 struct tls_record_info *tls_get_record(struct     
331                                        u32 seq    
332                                                   
333 static inline bool tls_record_is_start_marker(    
334 {                                                 
335         return rec->len == 0;                     
336 }                                                 
337                                                   
338 static inline u32 tls_record_start_seq(struct     
339 {                                                 
340         return rec->end_seq - rec->len;           
341 }                                                 
342                                                   
343 struct sk_buff *                                  
344 tls_validate_xmit_skb(struct sock *sk, struct     
345                       struct sk_buff *skb);       
346 struct sk_buff *                                  
347 tls_validate_xmit_skb_sw(struct sock *sk, stru    
348                          struct sk_buff *skb);    
349                                                   
350 static inline bool tls_is_skb_tx_device_offloa    
351 {                                                 
352 #ifdef CONFIG_TLS_DEVICE                          
353         struct sock *sk = skb->sk;                
354                                                   
355         return sk && sk_fullsock(sk) &&           
356                (smp_load_acquire(&sk->sk_valid    
357                &tls_validate_xmit_skb);           
358 #else                                             
359         return false;                             
360 #endif                                            
361 }                                                 
362                                                   
363 static inline struct tls_context *tls_get_ctx(    
364 {                                                 
365         const struct inet_connection_sock *ics    
366                                                   
367         /* Use RCU on icsk_ulp_data only for s    
368          * TLS data path doesn't need rcu_dere    
369          */                                       
370         return (__force void *)icsk->icsk_ulp_    
371 }                                                 
372                                                   
373 static inline struct tls_sw_context_rx *tls_sw    
374                 const struct tls_context *tls_    
375 {                                                 
376         return (struct tls_sw_context_rx *)tls    
377 }                                                 
378                                                   
379 static inline struct tls_sw_context_tx *tls_sw    
380                 const struct tls_context *tls_    
381 {                                                 
382         return (struct tls_sw_context_tx *)tls    
383 }                                                 
384                                                   
385 static inline struct tls_offload_context_tx *     
386 tls_offload_ctx_tx(const struct tls_context *t    
387 {                                                 
388         return (struct tls_offload_context_tx     
389 }                                                 
390                                                   
391 static inline bool tls_sw_has_ctx_tx(const str    
392 {                                                 
393         struct tls_context *ctx = tls_get_ctx(    
394                                                   
395         if (!ctx)                                 
396                 return false;                     
397         return !!tls_sw_ctx_tx(ctx);              
398 }                                                 
399                                                   
400 static inline bool tls_sw_has_ctx_rx(const str    
401 {                                                 
402         struct tls_context *ctx = tls_get_ctx(    
403                                                   
404         if (!ctx)                                 
405                 return false;                     
406         return !!tls_sw_ctx_rx(ctx);              
407 }                                                 
408                                                   
409 static inline struct tls_offload_context_rx *     
410 tls_offload_ctx_rx(const struct tls_context *t    
411 {                                                 
412         return (struct tls_offload_context_rx     
413 }                                                 
414                                                   
415 static inline void *__tls_driver_ctx(struct tl    
416                                      enum tls_    
417 {                                                 
418         if (direction == TLS_OFFLOAD_CTX_DIR_T    
419                 return tls_offload_ctx_tx(tls_    
420         else                                      
421                 return tls_offload_ctx_rx(tls_    
422 }                                                 
423                                                   
424 static inline void *                              
425 tls_driver_ctx(const struct sock *sk, enum tls    
426 {                                                 
427         return __tls_driver_ctx(tls_get_ctx(sk    
428 }                                                 
429                                                   
430 #define RESYNC_REQ BIT(0)                         
431 #define RESYNC_REQ_ASYNC BIT(1)                   
432 /* The TLS context is valid until sk_destruct     
433 static inline void tls_offload_rx_resync_reque    
434 {                                                 
435         struct tls_context *tls_ctx = tls_get_    
436         struct tls_offload_context_rx *rx_ctx     
437                                                   
438         atomic64_set(&rx_ctx->resync_req, ((u6    
439 }                                                 
440                                                   
441 /* Log all TLS record header TCP sequences in     
442 static inline void                                
443 tls_offload_rx_resync_async_request_start(stru    
444 {                                                 
445         struct tls_context *tls_ctx = tls_get_    
446         struct tls_offload_context_rx *rx_ctx     
447                                                   
448         atomic64_set(&rx_ctx->resync_async->re    
449                      ((u64)len << 16) | RESYNC    
450         rx_ctx->resync_async->loglen = 0;         
451         rx_ctx->resync_async->rcd_delta = 0;      
452 }                                                 
453                                                   
454 static inline void                                
455 tls_offload_rx_resync_async_request_end(struct    
456 {                                                 
457         struct tls_context *tls_ctx = tls_get_    
458         struct tls_offload_context_rx *rx_ctx     
459                                                   
460         atomic64_set(&rx_ctx->resync_async->re    
461                      ((u64)ntohl(seq) << 32) |    
462 }                                                 
463                                                   
464 static inline void                                
465 tls_offload_rx_resync_set_type(struct sock *sk    
466 {                                                 
467         struct tls_context *tls_ctx = tls_get_    
468                                                   
469         tls_offload_ctx_rx(tls_ctx)->resync_ty    
470 }                                                 
471                                                   
472 /* Driver's seq tracking has to be disabled un    
473 static inline bool tls_offload_tx_resync_pendi    
474 {                                                 
475         struct tls_context *tls_ctx = tls_get_    
476         bool ret;                                 
477                                                   
478         ret = test_bit(TLS_TX_SYNC_SCHED, &tls    
479         smp_mb__after_atomic();                   
480         return ret;                               
481 }                                                 
482                                                   
483 struct sk_buff *tls_encrypt_skb(struct sk_buff    
484                                                   
485 #ifdef CONFIG_TLS_DEVICE                          
486 void tls_device_sk_destruct(struct sock *sk);     
487 void tls_offload_tx_resync_request(struct sock    
488                                                   
489 static inline bool tls_is_sk_rx_device_offload    
490 {                                                 
491         if (!sk_fullsock(sk) ||                   
492             smp_load_acquire(&sk->sk_destruct)    
493                 return false;                     
494         return tls_get_ctx(sk)->rx_conf == TLS    
495 }                                                 
496 #endif                                            
497 #endif /* _TLS_OFFLOAD_H */                       
498                                                   

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php