blob: 6790884d3c57a244525102b3409bfdb9dbb7ecae [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Hannes Frederic Sowa46234252015-10-08 01:20:35 +02002#ifndef _LINUX_ONCE_H
3#define _LINUX_ONCE_H
4
5#include <linux/types.h>
6#include <linux/jump_label.h>
7
Hannes Frederic Sowac90aeb92015-10-08 01:20:36 +02008bool __do_once_start(bool *done, unsigned long *flags);
9void __do_once_done(bool *done, struct static_key *once_key,
10 unsigned long *flags);
Hannes Frederic Sowa46234252015-10-08 01:20:35 +020011
Hannes Frederic Sowac90aeb92015-10-08 01:20:36 +020012/* Call a function exactly once. The idea of DO_ONCE() is to perform
13 * a function call such as initialization of random seeds, etc, only
14 * once, where DO_ONCE() can live in the fast-path. After @func has
15 * been called with the passed arguments, the static key will patch
16 * out the condition into a nop. DO_ONCE() guarantees type safety of
17 * arguments!
18 *
19 * Not that the following is not equivalent ...
20 *
21 * DO_ONCE(func, arg);
22 * DO_ONCE(func, arg);
23 *
24 * ... to this version:
25 *
26 * void foo(void)
27 * {
28 * DO_ONCE(func, arg);
29 * }
30 *
31 * foo();
32 * foo();
33 *
34 * In case the one-time invocation could be triggered from multiple
35 * places, then a common helper function must be defined, so that only
36 * a single static key will be placed there!
37 */
38#define DO_ONCE(func, ...) \
39 ({ \
40 bool ___ret = false; \
41 static bool ___done = false; \
42 static struct static_key ___once_key = STATIC_KEY_INIT_TRUE; \
43 if (static_key_true(&___once_key)) { \
44 unsigned long ___flags; \
45 ___ret = __do_once_start(&___done, &___flags); \
46 if (unlikely(___ret)) { \
47 func(__VA_ARGS__); \
48 __do_once_done(&___done, &___once_key, \
49 &___flags); \
50 } \
51 } \
52 ___ret; \
Hannes Frederic Sowa46234252015-10-08 01:20:35 +020053 })
54
Hannes Frederic Sowac90aeb92015-10-08 01:20:36 +020055#define get_random_once(buf, nbytes) \
56 DO_ONCE(get_random_bytes, (buf), (nbytes))
Jason A. Donenfeldda9ba562017-06-07 20:05:02 -040057#define get_random_once_wait(buf, nbytes) \
58 DO_ONCE(get_random_bytes_wait, (buf), (nbytes)) \
Hannes Frederic Sowac90aeb92015-10-08 01:20:36 +020059
Hannes Frederic Sowa46234252015-10-08 01:20:35 +020060#endif /* _LINUX_ONCE_H */