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

TOMOYO Linux Cross Reference
Linux/include/vdso/getrandom.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/vdso/getrandom.h (Architecture mips) and /include/vdso/getrandom.h (Architecture m68k)


  1 /* SPDX-License-Identifier: GPL-2.0 */              1 /* SPDX-License-Identifier: GPL-2.0 */
  2 /*                                                  2 /*
  3  * Copyright (C) 2022-2024 Jason A. Donenfeld       3  * Copyright (C) 2022-2024 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
  4  */                                                 4  */
  5                                                     5 
  6 #ifndef _VDSO_GETRANDOM_H                           6 #ifndef _VDSO_GETRANDOM_H
  7 #define _VDSO_GETRANDOM_H                           7 #define _VDSO_GETRANDOM_H
  8                                                     8 
  9 #include <linux/types.h>                            9 #include <linux/types.h>
 10                                                    10 
 11 #define CHACHA_KEY_SIZE         32                 11 #define CHACHA_KEY_SIZE         32
 12 #define CHACHA_BLOCK_SIZE       64                 12 #define CHACHA_BLOCK_SIZE       64
 13                                                    13 
 14 /**                                                14 /**
 15  * struct vgetrandom_state - State used by vDS     15  * struct vgetrandom_state - State used by vDSO getrandom().
 16  *                                                 16  *
 17  * @batch:      One and a half ChaCha20 blocks     17  * @batch:      One and a half ChaCha20 blocks of buffered RNG output.
 18  *                                                 18  *
 19  * @key:        Key to be used for generating      19  * @key:        Key to be used for generating next batch.
 20  *                                                 20  *
 21  * @batch_key:  Union of the prior two members     21  * @batch_key:  Union of the prior two members, which is exactly two full
 22  *              ChaCha20 blocks in size, so th     22  *              ChaCha20 blocks in size, so that @batch and @key can be filled
 23  *              together.                          23  *              together.
 24  *                                                 24  *
 25  * @generation: Snapshot of @rng_info->generat     25  * @generation: Snapshot of @rng_info->generation in the vDSO data page at
 26  *              the time @key was generated.       26  *              the time @key was generated.
 27  *                                                 27  *
 28  * @pos:        Offset into @batch of the next     28  * @pos:        Offset into @batch of the next available random byte.
 29  *                                                 29  *
 30  * @in_use:     Reentrancy guard for reusing a     30  * @in_use:     Reentrancy guard for reusing a state within the same thread
 31  *              due to signal handlers.            31  *              due to signal handlers.
 32  */                                                32  */
 33 struct vgetrandom_state {                          33 struct vgetrandom_state {
 34         union {                                    34         union {
 35                 struct {                           35                 struct {
 36                         u8      batch[CHACHA_B     36                         u8      batch[CHACHA_BLOCK_SIZE * 3 / 2];
 37                         u32     key[CHACHA_KEY     37                         u32     key[CHACHA_KEY_SIZE / sizeof(u32)];
 38                 };                                 38                 };
 39                 u8              batch_key[CHAC     39                 u8              batch_key[CHACHA_BLOCK_SIZE * 2];
 40         };                                         40         };
 41         u64                     generation;        41         u64                     generation;
 42         u8                      pos;               42         u8                      pos;
 43         bool                    in_use;            43         bool                    in_use;
 44 };                                                 44 };
 45                                                    45 
 46 /**                                                46 /**
 47  * __arch_chacha20_blocks_nostack - Generate C     47  * __arch_chacha20_blocks_nostack - Generate ChaCha20 stream without using the stack.
 48  * @dst_bytes:  Destination buffer to hold @nb     48  * @dst_bytes:  Destination buffer to hold @nblocks * 64 bytes of output.
 49  * @key:        32-byte input key.                 49  * @key:        32-byte input key.
 50  * @counter:    8-byte counter, read on input      50  * @counter:    8-byte counter, read on input and updated on return.
 51  * @nblocks:    Number of blocks to generate.      51  * @nblocks:    Number of blocks to generate.
 52  *                                                 52  *
 53  * Generates a given positive number of blocks     53  * Generates a given positive number of blocks of ChaCha20 output with nonce=0, and does not write
 54  * to any stack or memory outside of the param     54  * to any stack or memory outside of the parameters passed to it, in order to mitigate stack data
 55  * leaking into forked child processes.            55  * leaking into forked child processes.
 56  */                                                56  */
 57 extern void __arch_chacha20_blocks_nostack(u8      57 extern void __arch_chacha20_blocks_nostack(u8 *dst_bytes, const u32 *key, u32 *counter, size_t nblocks);
 58                                                    58 
 59 /**                                                59 /**
 60  * __vdso_getrandom - Architecture-specific vD     60  * __vdso_getrandom - Architecture-specific vDSO implementation of getrandom() syscall.
 61  * @buffer:             Passed to __cvdso_getr     61  * @buffer:             Passed to __cvdso_getrandom().
 62  * @len:                Passed to __cvdso_getr     62  * @len:                Passed to __cvdso_getrandom().
 63  * @flags:              Passed to __cvdso_getr     63  * @flags:              Passed to __cvdso_getrandom().
 64  * @opaque_state:       Passed to __cvdso_getr     64  * @opaque_state:       Passed to __cvdso_getrandom().
 65  * @opaque_len:         Passed to __cvdso_getr     65  * @opaque_len:         Passed to __cvdso_getrandom();
 66  *                                                 66  *
 67  * This function is implemented by making a si     67  * This function is implemented by making a single call to to __cvdso_getrandom(), whose
 68  * documentation may be consulted for more inf     68  * documentation may be consulted for more information.
 69  *                                                 69  *
 70  * Returns:     The return value of __cvdso_ge     70  * Returns:     The return value of __cvdso_getrandom().
 71  */                                                71  */
 72 extern ssize_t __vdso_getrandom(void *buffer,      72 extern ssize_t __vdso_getrandom(void *buffer, size_t len, unsigned int flags, void *opaque_state, size_t opaque_len);
 73                                                    73 
 74 #endif /* _VDSO_GETRANDOM_H */                     74 #endif /* _VDSO_GETRANDOM_H */
 75                                                    75 

~ [ 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