1b2441318SGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0 */ 21da177e4SLinus Torvalds #ifndef _LINUX_KERNEL_H 31da177e4SLinus Torvalds #define _LINUX_KERNEL_H 41da177e4SLinus Torvalds 51da177e4SLinus Torvalds 61da177e4SLinus Torvalds #include <stdarg.h> 754d50897SMasahiro Yamada #include <linux/limits.h> 81da177e4SLinus Torvalds #include <linux/linkage.h> 91da177e4SLinus Torvalds #include <linux/stddef.h> 101da177e4SLinus Torvalds #include <linux/types.h> 111da177e4SLinus Torvalds #include <linux/compiler.h> 121da177e4SLinus Torvalds #include <linux/bitops.h> 13f0d1b0b3SDavid Howells #include <linux/log2.h> 14e0deaff4SAndrew Morton #include <linux/typecheck.h> 15968ab183SLinus Torvalds #include <linux/printk.h> 16c7acec71SIan Abbott #include <linux/build_bug.h> 171da177e4SLinus Torvalds #include <asm/byteorder.h> 18c461aed3SJani Nikula #include <asm/div64.h> 19607ca46eSDavid Howells #include <uapi/linux/kernel.h> 2072deb455SChristoph Hellwig #include <asm/div64.h> 211da177e4SLinus Torvalds 221da177e4SLinus Torvalds #define STACK_MAGIC 0xdeadbeef 231da177e4SLinus Torvalds 24e8c97af0SRandy Dunlap /** 25e8c97af0SRandy Dunlap * REPEAT_BYTE - repeat the value @x multiple times as an unsigned long value 26e8c97af0SRandy Dunlap * @x: value to repeat 27e8c97af0SRandy Dunlap * 28e8c97af0SRandy Dunlap * NOTE: @x is not checked for > 0xff; larger values produce odd results. 29e8c97af0SRandy Dunlap */ 3044696908SDavid S. Miller #define REPEAT_BYTE(x) ((~0ul / 0xff) * (x)) 3144696908SDavid S. Miller 323ca45a46Szijun_hu /* @a is a power of 2 value */ 33a79ff731SAlexey Dobriyan #define ALIGN(x, a) __ALIGN_KERNEL((x), (a)) 34ed067d4aSKrzysztof Kozlowski #define ALIGN_DOWN(x, a) __ALIGN_KERNEL((x) - ((a) - 1), (a)) 359f93ff5bSAlexey Dobriyan #define __ALIGN_MASK(x, mask) __ALIGN_KERNEL_MASK((x), (mask)) 36a83308e6SMatthew Wilcox #define PTR_ALIGN(p, a) ((typeof(p))ALIGN((unsigned long)(p), (a))) 37f10db627SHerbert Xu #define IS_ALIGNED(x, a) (((x) & ((typeof(x))(a) - 1)) == 0) 382ea58144SLinus Torvalds 39d3849953SChristoph Hellwig /* generic data direction definitions */ 40d3849953SChristoph Hellwig #define READ 0 41d3849953SChristoph Hellwig #define WRITE 1 42d3849953SChristoph Hellwig 43e8c97af0SRandy Dunlap /** 44e8c97af0SRandy Dunlap * ARRAY_SIZE - get the number of elements in array @arr 45e8c97af0SRandy Dunlap * @arr: array to be sized 46e8c97af0SRandy Dunlap */ 47c5e631cfSRusty Russell #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr)) 48c5e631cfSRusty Russell 493ed605bcSGustavo Padovan #define u64_to_user_ptr(x) ( \ 503ed605bcSGustavo Padovan { \ 51a0fe2c64SJann Horn typecheck(u64, (x)); \ 52a0fe2c64SJann Horn (void __user *)(uintptr_t)(x); \ 533ed605bcSGustavo Padovan } \ 543ed605bcSGustavo Padovan ) 553ed605bcSGustavo Padovan 569b3be9f9SYinghai Lu /* 579b3be9f9SYinghai Lu * This looks more complex than it should be. But we need to 589b3be9f9SYinghai Lu * get the type for the ~ right in round_down (it needs to be 599b3be9f9SYinghai Lu * as wide as the result!), and we want to evaluate the macro 609b3be9f9SYinghai Lu * arguments just once each. 619b3be9f9SYinghai Lu */ 629b3be9f9SYinghai Lu #define __round_mask(x, y) ((__typeof__(x))((y)-1)) 63cedc5b6aSKees Cook /** 64cedc5b6aSKees Cook * round_up - round up to next specified power of 2 65cedc5b6aSKees Cook * @x: the value to round 66cedc5b6aSKees Cook * @y: multiple to round up to (must be a power of 2) 67cedc5b6aSKees Cook * 68cedc5b6aSKees Cook * Rounds @x up to next multiple of @y (which must be a power of 2). 69cedc5b6aSKees Cook * To perform arbitrary rounding up, use roundup() below. 70cedc5b6aSKees Cook */ 719b3be9f9SYinghai Lu #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1) 72cedc5b6aSKees Cook /** 73cedc5b6aSKees Cook * round_down - round down to next specified power of 2 74cedc5b6aSKees Cook * @x: the value to round 75cedc5b6aSKees Cook * @y: multiple to round down to (must be a power of 2) 76cedc5b6aSKees Cook * 77cedc5b6aSKees Cook * Rounds @x down to next multiple of @y (which must be a power of 2). 78cedc5b6aSKees Cook * To perform arbitrary rounding down, use rounddown() below. 79cedc5b6aSKees Cook */ 809b3be9f9SYinghai Lu #define round_down(x, y) ((x) & ~__round_mask(x, y)) 819b3be9f9SYinghai Lu 82ce251e0eSAlexey Dobriyan #define typeof_member(T, m) typeof(((T*)0)->m) 83ce251e0eSAlexey Dobriyan 84b5d3755aSNicolas Dichtel #define DIV_ROUND_UP __KERNEL_DIV_ROUND_UP 85604df322SMasahiro Yamada 86604df322SMasahiro Yamada #define DIV_ROUND_DOWN_ULL(ll, d) \ 87604df322SMasahiro Yamada ({ unsigned long long _tmp = (ll); do_div(_tmp, d); _tmp; }) 88604df322SMasahiro Yamada 898f9fab48SVinod Koul #define DIV_ROUND_UP_ULL(ll, d) \ 908f9fab48SVinod Koul DIV_ROUND_DOWN_ULL((unsigned long long)(ll) + (d) - 1, (d)) 9136a26c69SNicholas Bellinger 9236a26c69SNicholas Bellinger #if BITS_PER_LONG == 32 9336a26c69SNicholas Bellinger # define DIV_ROUND_UP_SECTOR_T(ll,d) DIV_ROUND_UP_ULL(ll, d) 9436a26c69SNicholas Bellinger #else 9536a26c69SNicholas Bellinger # define DIV_ROUND_UP_SECTOR_T(ll,d) DIV_ROUND_UP(ll,d) 9636a26c69SNicholas Bellinger #endif 97074e61ecSJames Morris 98cedc5b6aSKees Cook /** 99cedc5b6aSKees Cook * roundup - round up to the next specified multiple 100cedc5b6aSKees Cook * @x: the value to up 101cedc5b6aSKees Cook * @y: multiple to round up to 102cedc5b6aSKees Cook * 103cedc5b6aSKees Cook * Rounds @x up to next multiple of @y. If @y will always be a power 104cedc5b6aSKees Cook * of 2, consider using the faster round_up(). 105cedc5b6aSKees Cook */ 106b28efd54SEric Paris #define roundup(x, y) ( \ 107b28efd54SEric Paris { \ 108b95c4d18SRandy Dunlap typeof(y) __y = y; \ 109b28efd54SEric Paris (((x) + (__y - 1)) / __y) * __y; \ 110b28efd54SEric Paris } \ 111b28efd54SEric Paris ) 112cedc5b6aSKees Cook /** 113cedc5b6aSKees Cook * rounddown - round down to next specified multiple 114cedc5b6aSKees Cook * @x: the value to round 115cedc5b6aSKees Cook * @y: multiple to round down to 116cedc5b6aSKees Cook * 117cedc5b6aSKees Cook * Rounds @x down to next multiple of @y. If @y will always be a power 118cedc5b6aSKees Cook * of 2, consider using the faster round_down(). 119cedc5b6aSKees Cook */ 120686a0f3dSEric Paris #define rounddown(x, y) ( \ 121686a0f3dSEric Paris { \ 122686a0f3dSEric Paris typeof(x) __x = (x); \ 123686a0f3dSEric Paris __x - (__x % (y)); \ 124686a0f3dSEric Paris } \ 125686a0f3dSEric Paris ) 126b6d86d3dSGuenter Roeck 127b6d86d3dSGuenter Roeck /* 1284f5901f5SNiklas Söderlund * Divide positive or negative dividend by positive or negative divisor 1294f5901f5SNiklas Söderlund * and round to closest integer. Result is undefined for negative 130e8c97af0SRandy Dunlap * divisors if the dividend variable type is unsigned and for negative 1314f5901f5SNiklas Söderlund * dividends if the divisor variable type is unsigned. 132b6d86d3dSGuenter Roeck */ 1339fe06081SDarrick J. Wong #define DIV_ROUND_CLOSEST(x, divisor)( \ 1349fe06081SDarrick J. Wong { \ 135b6d86d3dSGuenter Roeck typeof(x) __x = x; \ 136b6d86d3dSGuenter Roeck typeof(divisor) __d = divisor; \ 137c4e18497SGuenter Roeck (((typeof(x))-1) > 0 || \ 1384f5901f5SNiklas Söderlund ((typeof(divisor))-1) > 0 || \ 1394f5901f5SNiklas Söderlund (((__x) > 0) == ((__d) > 0))) ? \ 140b6d86d3dSGuenter Roeck (((__x) + ((__d) / 2)) / (__d)) : \ 141b6d86d3dSGuenter Roeck (((__x) - ((__d) / 2)) / (__d)); \ 1429fe06081SDarrick J. Wong } \ 1439fe06081SDarrick J. Wong ) 144f766093eSJavi Merino /* 145f766093eSJavi Merino * Same as above but for u64 dividends. divisor must be a 32-bit 146f766093eSJavi Merino * number. 147f766093eSJavi Merino */ 148f766093eSJavi Merino #define DIV_ROUND_CLOSEST_ULL(x, divisor)( \ 149f766093eSJavi Merino { \ 150f766093eSJavi Merino typeof(divisor) __d = divisor; \ 151f766093eSJavi Merino unsigned long long _tmp = (x) + (__d) / 2; \ 152f766093eSJavi Merino do_div(_tmp, __d); \ 153f766093eSJavi Merino _tmp; \ 154f766093eSJavi Merino } \ 155f766093eSJavi Merino ) 1561da177e4SLinus Torvalds 1579993bc63SSalman Qazi /* 1589993bc63SSalman Qazi * Multiplies an integer by a fraction, while avoiding unnecessary 1599993bc63SSalman Qazi * overflow or loss of precision. 1609993bc63SSalman Qazi */ 1619993bc63SSalman Qazi #define mult_frac(x, numer, denom)( \ 1629993bc63SSalman Qazi { \ 1639993bc63SSalman Qazi typeof(x) quot = (x) / (denom); \ 1649993bc63SSalman Qazi typeof(x) rem = (x) % (denom); \ 1659993bc63SSalman Qazi (quot * (numer)) + ((rem * (numer)) / (denom)); \ 1669993bc63SSalman Qazi } \ 1679993bc63SSalman Qazi ) 1689993bc63SSalman Qazi 1699993bc63SSalman Qazi 170ca31e146SEduard - Gabriel Munteanu #define _RET_IP_ (unsigned long)__builtin_return_address(0) 171ca31e146SEduard - Gabriel Munteanu #define _THIS_IP_ ({ __label__ __here; __here: (unsigned long)&&__here; }) 172ca31e146SEduard - Gabriel Munteanu 1732da96acdSJens Axboe #define sector_div(a, b) do_div(a, b) 1742da96acdSJens Axboe 175218e180eSAndrew Morton /** 176218e180eSAndrew Morton * upper_32_bits - return bits 32-63 of a number 177218e180eSAndrew Morton * @n: the number we're accessing 178218e180eSAndrew Morton * 179218e180eSAndrew Morton * A basic shift-right of a 64- or 32-bit quantity. Use this to suppress 180218e180eSAndrew Morton * the "right shift count >= width of type" warning when that quantity is 181218e180eSAndrew Morton * 32-bits. 182218e180eSAndrew Morton */ 183218e180eSAndrew Morton #define upper_32_bits(n) ((u32)(((n) >> 16) >> 16)) 184218e180eSAndrew Morton 185204b885eSJoerg Roedel /** 186204b885eSJoerg Roedel * lower_32_bits - return bits 0-31 of a number 187204b885eSJoerg Roedel * @n: the number we're accessing 188204b885eSJoerg Roedel */ 189204b885eSJoerg Roedel #define lower_32_bits(n) ((u32)(n)) 190204b885eSJoerg Roedel 1911da177e4SLinus Torvalds struct completion; 192df2e71fbS[email protected] struct pt_regs; 193df2e71fbS[email protected] struct user; 1941da177e4SLinus Torvalds 195070cb065SUwe Kleine-König #ifdef CONFIG_PREEMPT_VOLUNTARY 196070cb065SUwe Kleine-König extern int _cond_resched(void); 197070cb065SUwe Kleine-König # define might_resched() _cond_resched() 198070cb065SUwe Kleine-König #else 199070cb065SUwe Kleine-König # define might_resched() do { } while (0) 200070cb065SUwe Kleine-König #endif 201070cb065SUwe Kleine-König 202d902db1eSFrederic Weisbecker #ifdef CONFIG_DEBUG_ATOMIC_SLEEP 203568f1967SPeter Zijlstra extern void ___might_sleep(const char *file, int line, int preempt_offset); 204568f1967SPeter Zijlstra extern void __might_sleep(const char *file, int line, int preempt_offset); 205568f1967SPeter Zijlstra extern void __cant_sleep(const char *file, int line, int preempt_offset); 206568f1967SPeter Zijlstra 2071da177e4SLinus Torvalds /** 2081da177e4SLinus Torvalds * might_sleep - annotation for functions that can sleep 2091da177e4SLinus Torvalds * 2101da177e4SLinus Torvalds * this macro will print a stack trace if it is executed in an atomic 211312364f3SDaniel Vetter * context (spinlock, irq-handler, ...). Additional sections where blocking is 212312364f3SDaniel Vetter * not allowed can be annotated with non_block_start() and non_block_end() 213312364f3SDaniel Vetter * pairs. 2141da177e4SLinus Torvalds * 2151da177e4SLinus Torvalds * This is a useful debugging help to be able to catch problems early and not 216e20ec991SJim Cromie * be bitten later when the calling function happens to sleep when it is not 2171da177e4SLinus Torvalds * supposed to. 2181da177e4SLinus Torvalds */ 219f8cbd99bSIngo Molnar # define might_sleep() \ 220e4aafea2SFrederic Weisbecker do { __might_sleep(__FILE__, __LINE__, 0); might_resched(); } while (0) 221568f1967SPeter Zijlstra /** 222568f1967SPeter Zijlstra * cant_sleep - annotation for functions that cannot sleep 223568f1967SPeter Zijlstra * 224568f1967SPeter Zijlstra * this macro will print a stack trace if it is executed with preemption enabled 225568f1967SPeter Zijlstra */ 226568f1967SPeter Zijlstra # define cant_sleep() \ 227568f1967SPeter Zijlstra do { __cant_sleep(__FILE__, __LINE__, 0); } while (0) 22800845eb9SLinus Torvalds # define sched_annotate_sleep() (current->task_state_change = 0) 229312364f3SDaniel Vetter /** 230312364f3SDaniel Vetter * non_block_start - annotate the start of section where sleeping is prohibited 231312364f3SDaniel Vetter * 232312364f3SDaniel Vetter * This is on behalf of the oom reaper, specifically when it is calling the mmu 233312364f3SDaniel Vetter * notifiers. The problem is that if the notifier were to block on, for example, 234312364f3SDaniel Vetter * mutex_lock() and if the process which holds that mutex were to perform a 235312364f3SDaniel Vetter * sleeping memory allocation, the oom reaper is now blocked on completion of 236312364f3SDaniel Vetter * that memory allocation. Other blocking calls like wait_event() pose similar 237312364f3SDaniel Vetter * issues. 238312364f3SDaniel Vetter */ 239312364f3SDaniel Vetter # define non_block_start() (current->non_block_count++) 240312364f3SDaniel Vetter /** 241312364f3SDaniel Vetter * non_block_end - annotate the end of section where sleeping is prohibited 242312364f3SDaniel Vetter * 243312364f3SDaniel Vetter * Closes a section opened by non_block_start(). 244312364f3SDaniel Vetter */ 245312364f3SDaniel Vetter # define non_block_end() WARN_ON(current->non_block_count-- == 0) 246f8cbd99bSIngo Molnar #else 2473427445aSPeter Zijlstra static inline void ___might_sleep(const char *file, int line, 2483427445aSPeter Zijlstra int preempt_offset) { } 249d894837fSSimon Kagstrom static inline void __might_sleep(const char *file, int line, 250d894837fSSimon Kagstrom int preempt_offset) { } 251f8cbd99bSIngo Molnar # define might_sleep() do { might_resched(); } while (0) 252568f1967SPeter Zijlstra # define cant_sleep() do { } while (0) 2531029a2b5SPeter Zijlstra # define sched_annotate_sleep() do { } while (0) 254312364f3SDaniel Vetter # define non_block_start() do { } while (0) 255312364f3SDaniel Vetter # define non_block_end() do { } while (0) 256f8cbd99bSIngo Molnar #endif 257f8cbd99bSIngo Molnar 258368a5fa1SHua Zhong #define might_sleep_if(cond) do { if (cond) might_sleep(); } while (0) 259f8cbd99bSIngo Molnar 2604e139c77SThomas Gleixner #ifndef CONFIG_PREEMPT_RT 2614e139c77SThomas Gleixner # define cant_migrate() cant_sleep() 2624e139c77SThomas Gleixner #else 2634e139c77SThomas Gleixner /* Placeholder for now */ 2644e139c77SThomas Gleixner # define cant_migrate() do { } while (0) 2654e139c77SThomas Gleixner #endif 2664e139c77SThomas Gleixner 267c8299cb6SMichal Nazarewicz /** 268c8299cb6SMichal Nazarewicz * abs - return absolute value of an argument 2698f57e4d9SMichal Nazarewicz * @x: the value. If it is unsigned type, it is converted to signed type first. 2708f57e4d9SMichal Nazarewicz * char is treated as if it was signed (regardless of whether it really is) 2718f57e4d9SMichal Nazarewicz * but the macro's return type is preserved as char. 272c8299cb6SMichal Nazarewicz * 2738f57e4d9SMichal Nazarewicz * Return: an absolute value of x. 27471a90484SAndrew Morton */ 2758f57e4d9SMichal Nazarewicz #define abs(x) __abs_choose_expr(x, long long, \ 2768f57e4d9SMichal Nazarewicz __abs_choose_expr(x, long, \ 2778f57e4d9SMichal Nazarewicz __abs_choose_expr(x, int, \ 2788f57e4d9SMichal Nazarewicz __abs_choose_expr(x, short, \ 2798f57e4d9SMichal Nazarewicz __abs_choose_expr(x, char, \ 2808f57e4d9SMichal Nazarewicz __builtin_choose_expr( \ 2818f57e4d9SMichal Nazarewicz __builtin_types_compatible_p(typeof(x), char), \ 2828f57e4d9SMichal Nazarewicz (char)({ signed char __x = (x); __x<0?-__x:__x; }), \ 2838f57e4d9SMichal Nazarewicz ((void)0))))))) 2848f57e4d9SMichal Nazarewicz 2858f57e4d9SMichal Nazarewicz #define __abs_choose_expr(x, type, other) __builtin_choose_expr( \ 2868f57e4d9SMichal Nazarewicz __builtin_types_compatible_p(typeof(x), signed type) || \ 2878f57e4d9SMichal Nazarewicz __builtin_types_compatible_p(typeof(x), unsigned type), \ 2888f57e4d9SMichal Nazarewicz ({ signed type __x = (x); __x < 0 ? -__x : __x; }), other) 2891da177e4SLinus Torvalds 29089770b0aSDaniel Borkmann /** 29189770b0aSDaniel Borkmann * reciprocal_scale - "scale" a value into range [0, ep_ro) 29289770b0aSDaniel Borkmann * @val: value 29389770b0aSDaniel Borkmann * @ep_ro: right open interval endpoint 29489770b0aSDaniel Borkmann * 29589770b0aSDaniel Borkmann * Perform a "reciprocal multiplication" in order to "scale" a value into 296e8c97af0SRandy Dunlap * range [0, @ep_ro), where the upper interval endpoint is right-open. 29789770b0aSDaniel Borkmann * This is useful, e.g. for accessing a index of an array containing 298e8c97af0SRandy Dunlap * @ep_ro elements, for example. Think of it as sort of modulus, only that 29989770b0aSDaniel Borkmann * the result isn't that of modulo. ;) Note that if initial input is a 30089770b0aSDaniel Borkmann * small value, then result will return 0. 30189770b0aSDaniel Borkmann * 302e8c97af0SRandy Dunlap * Return: a result based on @val in interval [0, @ep_ro). 30389770b0aSDaniel Borkmann */ 30489770b0aSDaniel Borkmann static inline u32 reciprocal_scale(u32 val, u32 ep_ro) 30589770b0aSDaniel Borkmann { 30689770b0aSDaniel Borkmann return (u32)(((u64) val * ep_ro) >> 32); 30789770b0aSDaniel Borkmann } 30889770b0aSDaniel Borkmann 309386e7906SAxel Lin #if defined(CONFIG_MMU) && \ 310386e7906SAxel Lin (defined(CONFIG_PROVE_LOCKING) || defined(CONFIG_DEBUG_ATOMIC_SLEEP)) 3119ec23531SDavid Hildenbrand #define might_fault() __might_fault(__FILE__, __LINE__) 3129ec23531SDavid Hildenbrand void __might_fault(const char *file, int line); 3133ee1afa3SNick Piggin #else 314662bbcb2SMichael S. Tsirkin static inline void might_fault(void) { } 3153ee1afa3SNick Piggin #endif 3163ee1afa3SNick Piggin 317e041c683SAlan Stern extern struct atomic_notifier_head panic_notifier_list; 318c7ff0d9cSTAMUKI Shoichi extern long (*panic_blink)(int state); 3199402c95fSJoe Perches __printf(1, 2) 3209af6528eSPeter Zijlstra void panic(const char *fmt, ...) __noreturn __cold; 321ebc41f20SHidehiro Kawai void nmi_panic(struct pt_regs *regs, const char *msg); 322dd287796SAndrew Morton extern void oops_enter(void); 323dd287796SAndrew Morton extern void oops_exit(void); 324863a6049SAnton Blanchard void print_oops_end_marker(void); 325dd287796SAndrew Morton extern int oops_may_print(void); 3269af6528eSPeter Zijlstra void do_exit(long error_code) __noreturn; 3279af6528eSPeter Zijlstra void complete_and_exit(struct completion *, long) __noreturn; 32833ee3b2eSAlexey Dobriyan 32933ee3b2eSAlexey Dobriyan /* Internal, do not use. */ 33033ee3b2eSAlexey Dobriyan int __must_check _kstrtoul(const char *s, unsigned int base, unsigned long *res); 33133ee3b2eSAlexey Dobriyan int __must_check _kstrtol(const char *s, unsigned int base, long *res); 33233ee3b2eSAlexey Dobriyan 33333ee3b2eSAlexey Dobriyan int __must_check kstrtoull(const char *s, unsigned int base, unsigned long long *res); 33433ee3b2eSAlexey Dobriyan int __must_check kstrtoll(const char *s, unsigned int base, long long *res); 3354c925d60SEldad Zack 3364c925d60SEldad Zack /** 3374c925d60SEldad Zack * kstrtoul - convert a string to an unsigned long 3384c925d60SEldad Zack * @s: The start of the string. The string must be null-terminated, and may also 3394c925d60SEldad Zack * include a single newline before its terminating null. The first character 3404c925d60SEldad Zack * may also be a plus sign, but not a minus sign. 3414c925d60SEldad Zack * @base: The number base to use. The maximum supported base is 16. If base is 3424c925d60SEldad Zack * given as 0, then the base of the string is automatically detected with the 3434c925d60SEldad Zack * conventional semantics - If it begins with 0x the number will be parsed as a 3444c925d60SEldad Zack * hexadecimal (case insensitive), if it otherwise begins with 0, it will be 3454c925d60SEldad Zack * parsed as an octal number. Otherwise it will be parsed as a decimal. 3464c925d60SEldad Zack * @res: Where to write the result of the conversion on success. 3474c925d60SEldad Zack * 3484c925d60SEldad Zack * Returns 0 on success, -ERANGE on overflow and -EINVAL on parsing error. 349885e68e8SAndy Shevchenko * Used as a replacement for the simple_strtoull. Return code must be checked. 3504c925d60SEldad Zack */ 35133ee3b2eSAlexey Dobriyan static inline int __must_check kstrtoul(const char *s, unsigned int base, unsigned long *res) 35233ee3b2eSAlexey Dobriyan { 35333ee3b2eSAlexey Dobriyan /* 35433ee3b2eSAlexey Dobriyan * We want to shortcut function call, but 35533ee3b2eSAlexey Dobriyan * __builtin_types_compatible_p(unsigned long, unsigned long long) = 0. 35633ee3b2eSAlexey Dobriyan */ 35733ee3b2eSAlexey Dobriyan if (sizeof(unsigned long) == sizeof(unsigned long long) && 35833ee3b2eSAlexey Dobriyan __alignof__(unsigned long) == __alignof__(unsigned long long)) 35933ee3b2eSAlexey Dobriyan return kstrtoull(s, base, (unsigned long long *)res); 36033ee3b2eSAlexey Dobriyan else 36133ee3b2eSAlexey Dobriyan return _kstrtoul(s, base, res); 36233ee3b2eSAlexey Dobriyan } 36333ee3b2eSAlexey Dobriyan 3644c925d60SEldad Zack /** 3654c925d60SEldad Zack * kstrtol - convert a string to a long 3664c925d60SEldad Zack * @s: The start of the string. The string must be null-terminated, and may also 3674c925d60SEldad Zack * include a single newline before its terminating null. The first character 3684c925d60SEldad Zack * may also be a plus sign or a minus sign. 3694c925d60SEldad Zack * @base: The number base to use. The maximum supported base is 16. If base is 3704c925d60SEldad Zack * given as 0, then the base of the string is automatically detected with the 3714c925d60SEldad Zack * conventional semantics - If it begins with 0x the number will be parsed as a 3724c925d60SEldad Zack * hexadecimal (case insensitive), if it otherwise begins with 0, it will be 3734c925d60SEldad Zack * parsed as an octal number. Otherwise it will be parsed as a decimal. 3744c925d60SEldad Zack * @res: Where to write the result of the conversion on success. 3754c925d60SEldad Zack * 3764c925d60SEldad Zack * Returns 0 on success, -ERANGE on overflow and -EINVAL on parsing error. 377885e68e8SAndy Shevchenko * Used as a replacement for the simple_strtoull. Return code must be checked. 3784c925d60SEldad Zack */ 37933ee3b2eSAlexey Dobriyan static inline int __must_check kstrtol(const char *s, unsigned int base, long *res) 38033ee3b2eSAlexey Dobriyan { 38133ee3b2eSAlexey Dobriyan /* 38233ee3b2eSAlexey Dobriyan * We want to shortcut function call, but 38333ee3b2eSAlexey Dobriyan * __builtin_types_compatible_p(long, long long) = 0. 38433ee3b2eSAlexey Dobriyan */ 38533ee3b2eSAlexey Dobriyan if (sizeof(long) == sizeof(long long) && 38633ee3b2eSAlexey Dobriyan __alignof__(long) == __alignof__(long long)) 38733ee3b2eSAlexey Dobriyan return kstrtoll(s, base, (long long *)res); 38833ee3b2eSAlexey Dobriyan else 38933ee3b2eSAlexey Dobriyan return _kstrtol(s, base, res); 39033ee3b2eSAlexey Dobriyan } 39133ee3b2eSAlexey Dobriyan 39233ee3b2eSAlexey Dobriyan int __must_check kstrtouint(const char *s, unsigned int base, unsigned int *res); 39333ee3b2eSAlexey Dobriyan int __must_check kstrtoint(const char *s, unsigned int base, int *res); 39433ee3b2eSAlexey Dobriyan 39533ee3b2eSAlexey Dobriyan static inline int __must_check kstrtou64(const char *s, unsigned int base, u64 *res) 39633ee3b2eSAlexey Dobriyan { 39733ee3b2eSAlexey Dobriyan return kstrtoull(s, base, res); 39833ee3b2eSAlexey Dobriyan } 39933ee3b2eSAlexey Dobriyan 40033ee3b2eSAlexey Dobriyan static inline int __must_check kstrtos64(const char *s, unsigned int base, s64 *res) 40133ee3b2eSAlexey Dobriyan { 40233ee3b2eSAlexey Dobriyan return kstrtoll(s, base, res); 40333ee3b2eSAlexey Dobriyan } 40433ee3b2eSAlexey Dobriyan 40533ee3b2eSAlexey Dobriyan static inline int __must_check kstrtou32(const char *s, unsigned int base, u32 *res) 40633ee3b2eSAlexey Dobriyan { 40733ee3b2eSAlexey Dobriyan return kstrtouint(s, base, res); 40833ee3b2eSAlexey Dobriyan } 40933ee3b2eSAlexey Dobriyan 41033ee3b2eSAlexey Dobriyan static inline int __must_check kstrtos32(const char *s, unsigned int base, s32 *res) 41133ee3b2eSAlexey Dobriyan { 41233ee3b2eSAlexey Dobriyan return kstrtoint(s, base, res); 41333ee3b2eSAlexey Dobriyan } 41433ee3b2eSAlexey Dobriyan 41533ee3b2eSAlexey Dobriyan int __must_check kstrtou16(const char *s, unsigned int base, u16 *res); 41633ee3b2eSAlexey Dobriyan int __must_check kstrtos16(const char *s, unsigned int base, s16 *res); 41733ee3b2eSAlexey Dobriyan int __must_check kstrtou8(const char *s, unsigned int base, u8 *res); 41833ee3b2eSAlexey Dobriyan int __must_check kstrtos8(const char *s, unsigned int base, s8 *res); 419ef951599SKees Cook int __must_check kstrtobool(const char *s, bool *res); 42033ee3b2eSAlexey Dobriyan 421c196e32aSAlexey Dobriyan int __must_check kstrtoull_from_user(const char __user *s, size_t count, unsigned int base, unsigned long long *res); 422c196e32aSAlexey Dobriyan int __must_check kstrtoll_from_user(const char __user *s, size_t count, unsigned int base, long long *res); 423c196e32aSAlexey Dobriyan int __must_check kstrtoul_from_user(const char __user *s, size_t count, unsigned int base, unsigned long *res); 424c196e32aSAlexey Dobriyan int __must_check kstrtol_from_user(const char __user *s, size_t count, unsigned int base, long *res); 425c196e32aSAlexey Dobriyan int __must_check kstrtouint_from_user(const char __user *s, size_t count, unsigned int base, unsigned int *res); 426c196e32aSAlexey Dobriyan int __must_check kstrtoint_from_user(const char __user *s, size_t count, unsigned int base, int *res); 427c196e32aSAlexey Dobriyan int __must_check kstrtou16_from_user(const char __user *s, size_t count, unsigned int base, u16 *res); 428c196e32aSAlexey Dobriyan int __must_check kstrtos16_from_user(const char __user *s, size_t count, unsigned int base, s16 *res); 429c196e32aSAlexey Dobriyan int __must_check kstrtou8_from_user(const char __user *s, size_t count, unsigned int base, u8 *res); 430c196e32aSAlexey Dobriyan int __must_check kstrtos8_from_user(const char __user *s, size_t count, unsigned int base, s8 *res); 431ef951599SKees Cook int __must_check kstrtobool_from_user(const char __user *s, size_t count, bool *res); 432c196e32aSAlexey Dobriyan 433c196e32aSAlexey Dobriyan static inline int __must_check kstrtou64_from_user(const char __user *s, size_t count, unsigned int base, u64 *res) 434c196e32aSAlexey Dobriyan { 435c196e32aSAlexey Dobriyan return kstrtoull_from_user(s, count, base, res); 436c196e32aSAlexey Dobriyan } 437c196e32aSAlexey Dobriyan 438c196e32aSAlexey Dobriyan static inline int __must_check kstrtos64_from_user(const char __user *s, size_t count, unsigned int base, s64 *res) 439c196e32aSAlexey Dobriyan { 440c196e32aSAlexey Dobriyan return kstrtoll_from_user(s, count, base, res); 441c196e32aSAlexey Dobriyan } 442c196e32aSAlexey Dobriyan 443c196e32aSAlexey Dobriyan static inline int __must_check kstrtou32_from_user(const char __user *s, size_t count, unsigned int base, u32 *res) 444c196e32aSAlexey Dobriyan { 445c196e32aSAlexey Dobriyan return kstrtouint_from_user(s, count, base, res); 446c196e32aSAlexey Dobriyan } 447c196e32aSAlexey Dobriyan 448c196e32aSAlexey Dobriyan static inline int __must_check kstrtos32_from_user(const char __user *s, size_t count, unsigned int base, s32 *res) 449c196e32aSAlexey Dobriyan { 450c196e32aSAlexey Dobriyan return kstrtoint_from_user(s, count, base, res); 451c196e32aSAlexey Dobriyan } 452c196e32aSAlexey Dobriyan 453885e68e8SAndy Shevchenko /* 454885e68e8SAndy Shevchenko * Use kstrto<foo> instead. 455885e68e8SAndy Shevchenko * 456885e68e8SAndy Shevchenko * NOTE: simple_strto<foo> does not check for the range overflow and, 457885e68e8SAndy Shevchenko * depending on the input, may give interesting results. 458885e68e8SAndy Shevchenko * 459885e68e8SAndy Shevchenko * Use these functions if and only if you cannot use kstrto<foo>, because 460885e68e8SAndy Shevchenko * the conversion ends on the first non-digit character, which may be far 461885e68e8SAndy Shevchenko * beyond the supported range. It might be useful to parse the strings like 462885e68e8SAndy Shevchenko * 10x50 or 12:21 without altering original string or temporary buffer in use. 463885e68e8SAndy Shevchenko * Keep in mind above caveat. 464885e68e8SAndy Shevchenko */ 46567d0a075SJoe Perches 4661da177e4SLinus Torvalds extern unsigned long simple_strtoul(const char *,char **,unsigned int); 4671da177e4SLinus Torvalds extern long simple_strtol(const char *,char **,unsigned int); 4681da177e4SLinus Torvalds extern unsigned long long simple_strtoull(const char *,char **,unsigned int); 4691da177e4SLinus Torvalds extern long long simple_strtoll(const char *,char **,unsigned int); 47033ee3b2eSAlexey Dobriyan 471d1be35cbSAndrei Vagin extern int num_to_str(char *buf, int size, 472d1be35cbSAndrei Vagin unsigned long long num, unsigned int width); 4731ac101a5SKAMEZAWA Hiroyuki 47467d0a075SJoe Perches /* lib/printf utilities */ 47567d0a075SJoe Perches 476b9075fa9SJoe Perches extern __printf(2, 3) int sprintf(char *buf, const char * fmt, ...); 477b9075fa9SJoe Perches extern __printf(2, 0) int vsprintf(char *buf, const char *, va_list); 478b9075fa9SJoe Perches extern __printf(3, 4) 479b9075fa9SJoe Perches int snprintf(char *buf, size_t size, const char *fmt, ...); 480b9075fa9SJoe Perches extern __printf(3, 0) 481b9075fa9SJoe Perches int vsnprintf(char *buf, size_t size, const char *fmt, va_list args); 482b9075fa9SJoe Perches extern __printf(3, 4) 483b9075fa9SJoe Perches int scnprintf(char *buf, size_t size, const char *fmt, ...); 484b9075fa9SJoe Perches extern __printf(3, 0) 485b9075fa9SJoe Perches int vscnprintf(char *buf, size_t size, const char *fmt, va_list args); 48648a27055SRasmus Villemoes extern __printf(2, 3) __malloc 487b9075fa9SJoe Perches char *kasprintf(gfp_t gfp, const char *fmt, ...); 48848a27055SRasmus Villemoes extern __printf(2, 0) __malloc 4898db14860SNicolas Iooss char *kvasprintf(gfp_t gfp, const char *fmt, va_list args); 4900a9df786SRasmus Villemoes extern __printf(2, 0) 4910a9df786SRasmus Villemoes const char *kvasprintf_const(gfp_t gfp, const char *fmt, va_list args); 4921da177e4SLinus Torvalds 4936061d949SJoe Perches extern __scanf(2, 3) 4946061d949SJoe Perches int sscanf(const char *, const char *, ...); 4956061d949SJoe Perches extern __scanf(2, 0) 4966061d949SJoe Perches int vsscanf(const char *, const char *, va_list); 4971da177e4SLinus Torvalds 4981da177e4SLinus Torvalds extern int get_option(char **str, int *pint); 4991da177e4SLinus Torvalds extern char *get_options(const char *str, int nints, int *ints); 500d974ae37SJeremy Fitzhardinge extern unsigned long long memparse(const char *ptr, char **retptr); 5016ccc72b8SDave Young extern bool parse_option_str(const char *str, const char *option); 502f51b17c8SBaoquan He extern char *next_arg(char *args, char **param, char **val); 5031da177e4SLinus Torvalds 5045e376613STrent Piepho extern int core_kernel_text(unsigned long addr); 5059fbcc57aSJosh Poimboeuf extern int init_kernel_text(unsigned long addr); 506cdbe61bfSSteven Rostedt extern int core_kernel_data(unsigned long addr); 5071da177e4SLinus Torvalds extern int __kernel_text_address(unsigned long addr); 5081da177e4SLinus Torvalds extern int kernel_text_address(unsigned long addr); 509ab7476cfSArjan van de Ven extern int func_ptr_is_kernel_text(void *ptr); 510ab7476cfSArjan van de Ven 5119f615894SAndy Shevchenko u64 int_pow(u64 base, unsigned int exp); 5121da177e4SLinus Torvalds unsigned long int_sqrt(unsigned long); 5131da177e4SLinus Torvalds 51447a36163SCrt Mori #if BITS_PER_LONG < 64 51547a36163SCrt Mori u32 int_sqrt64(u64 x); 51647a36163SCrt Mori #else 51747a36163SCrt Mori static inline u32 int_sqrt64(u64 x) 51847a36163SCrt Mori { 51947a36163SCrt Mori return (u32)int_sqrt(x); 52047a36163SCrt Mori } 52147a36163SCrt Mori #endif 52247a36163SCrt Mori 5231da177e4SLinus Torvalds extern void bust_spinlocks(int yes); 5241da177e4SLinus Torvalds extern int oops_in_progress; /* If set, an oops, panic(), BUG() or die() is in progress */ 525aa727107SAdrian Bunk extern int panic_timeout; 52681c9d43fSFeng Tang extern unsigned long panic_print; 5271da177e4SLinus Torvalds extern int panic_on_oops; 5288da5addaSDon Zickus extern int panic_on_unrecovered_nmi; 5295211a242SKurt Garloff extern int panic_on_io_nmi; 5309e3961a0SPrarit Bhargava extern int panic_on_warn; 531*db38d5c1SRafael Aquini extern unsigned long panic_on_taint; 532*db38d5c1SRafael Aquini extern bool panic_on_taint_nousertaint; 533088e9d25SDaniel Bristot de Oliveira extern int sysctl_panic_on_rcu_stall; 53455af7796SMitsuo Hayasaka extern int sysctl_panic_on_stackoverflow; 5355375b708SHATAYAMA Daisuke 5365375b708SHATAYAMA Daisuke extern bool crash_kexec_post_notifiers; 5375375b708SHATAYAMA Daisuke 5385800dc3cSJason Baron /* 5391717f209SHidehiro Kawai * panic_cpu is used for synchronizing panic() and crash_kexec() execution. It 5401717f209SHidehiro Kawai * holds a CPU number which is executing panic() currently. A value of 5411717f209SHidehiro Kawai * PANIC_CPU_INVALID means no CPU has entered panic() or crash_kexec(). 5421717f209SHidehiro Kawai */ 5431717f209SHidehiro Kawai extern atomic_t panic_cpu; 5441717f209SHidehiro Kawai #define PANIC_CPU_INVALID -1 5451717f209SHidehiro Kawai 5461717f209SHidehiro Kawai /* 5475800dc3cSJason Baron * Only to be used by arch init code. If the user over-wrote the default 5485800dc3cSJason Baron * CONFIG_PANIC_TIMEOUT, honor it. 5495800dc3cSJason Baron */ 5505800dc3cSJason Baron static inline void set_arch_panic_timeout(int timeout, int arch_default_timeout) 5515800dc3cSJason Baron { 5525800dc3cSJason Baron if (panic_timeout == arch_default_timeout) 5535800dc3cSJason Baron panic_timeout = timeout; 5545800dc3cSJason Baron } 5551da177e4SLinus Torvalds extern const char *print_tainted(void); 556373d4d09SRusty Russell enum lockdep_ok { 557373d4d09SRusty Russell LOCKDEP_STILL_OK, 558373d4d09SRusty Russell LOCKDEP_NOW_UNRELIABLE 559373d4d09SRusty Russell }; 560373d4d09SRusty Russell extern void add_taint(unsigned flag, enum lockdep_ok); 56125ddbb18SAndi Kleen extern int test_taint(unsigned flag); 56225ddbb18SAndi Kleen extern unsigned long get_taint(void); 563b920de1bSDavid Howells extern int root_mountflags; 5641da177e4SLinus Torvalds 5652ce802f6STejun Heo extern bool early_boot_irqs_disabled; 5662ce802f6STejun Heo 56769a78ff2SThomas Gleixner /* 56869a78ff2SThomas Gleixner * Values used for system_state. Ordering of the states must not be changed 56969a78ff2SThomas Gleixner * as code checks for <, <=, >, >= STATE. 57069a78ff2SThomas Gleixner */ 5711da177e4SLinus Torvalds extern enum system_states { 5721da177e4SLinus Torvalds SYSTEM_BOOTING, 57369a78ff2SThomas Gleixner SYSTEM_SCHEDULING, 5741da177e4SLinus Torvalds SYSTEM_RUNNING, 5751da177e4SLinus Torvalds SYSTEM_HALT, 5761da177e4SLinus Torvalds SYSTEM_POWER_OFF, 5771da177e4SLinus Torvalds SYSTEM_RESTART, 578c1a957d1SThomas Gleixner SYSTEM_SUSPEND, 5791da177e4SLinus Torvalds } system_state; 5801da177e4SLinus Torvalds 58147d4b263SKees Cook /* This cannot be an enum because some may be used in assembly source. */ 58225ddbb18SAndi Kleen #define TAINT_PROPRIETARY_MODULE 0 58325ddbb18SAndi Kleen #define TAINT_FORCED_MODULE 1 5848c90487cSDave Jones #define TAINT_CPU_OUT_OF_SPEC 2 58525ddbb18SAndi Kleen #define TAINT_FORCED_RMMOD 3 58625ddbb18SAndi Kleen #define TAINT_MACHINE_CHECK 4 58725ddbb18SAndi Kleen #define TAINT_BAD_PAGE 5 58825ddbb18SAndi Kleen #define TAINT_USER 6 58925ddbb18SAndi Kleen #define TAINT_DIE 7 59025ddbb18SAndi Kleen #define TAINT_OVERRIDDEN_ACPI_TABLE 8 59125ddbb18SAndi Kleen #define TAINT_WARN 9 59226e9a397SLinus Torvalds #define TAINT_CRAP 10 59392946bc7SBen Hutchings #define TAINT_FIRMWARE_WORKAROUND 11 5942449b8baSBen Hutchings #define TAINT_OOT_MODULE 12 59566cc69e3SMathieu Desnoyers #define TAINT_UNSIGNED_MODULE 13 59669361eefSJosh Hunt #define TAINT_SOFTLOCKUP 14 597c5f45465SSeth Jennings #define TAINT_LIVEPATCH 15 5984efb442cSBorislav Petkov #define TAINT_AUX 16 599bc4f2f54SKees Cook #define TAINT_RANDSTRUCT 17 600bc4f2f54SKees Cook #define TAINT_FLAGS_COUNT 18 601*db38d5c1SRafael Aquini #define TAINT_FLAGS_MAX ((1UL << TAINT_FLAGS_COUNT) - 1) 6027fd8329bSPetr Mladek 6037fd8329bSPetr Mladek struct taint_flag { 6045eb7c0d0SLarry Finger char c_true; /* character printed when tainted */ 6055eb7c0d0SLarry Finger char c_false; /* character printed when not tainted */ 6067fd8329bSPetr Mladek bool module; /* also show as a per-module taint flag */ 6077fd8329bSPetr Mladek }; 6087fd8329bSPetr Mladek 6097fd8329bSPetr Mladek extern const struct taint_flag taint_flags[TAINT_FLAGS_COUNT]; 6101da177e4SLinus Torvalds 6113fc95772SHarvey Harrison extern const char hex_asc[]; 6123fc95772SHarvey Harrison #define hex_asc_lo(x) hex_asc[((x) & 0x0f)] 6133fc95772SHarvey Harrison #define hex_asc_hi(x) hex_asc[((x) & 0xf0) >> 4] 6143fc95772SHarvey Harrison 61555036ba7SAndy Shevchenko static inline char *hex_byte_pack(char *buf, u8 byte) 6163fc95772SHarvey Harrison { 6173fc95772SHarvey Harrison *buf++ = hex_asc_hi(byte); 6183fc95772SHarvey Harrison *buf++ = hex_asc_lo(byte); 6193fc95772SHarvey Harrison return buf; 6203fc95772SHarvey Harrison } 62199eaf3c4SRandy Dunlap 622c26d436cSAndre Naujoks extern const char hex_asc_upper[]; 623c26d436cSAndre Naujoks #define hex_asc_upper_lo(x) hex_asc_upper[((x) & 0x0f)] 624c26d436cSAndre Naujoks #define hex_asc_upper_hi(x) hex_asc_upper[((x) & 0xf0) >> 4] 625c26d436cSAndre Naujoks 626c26d436cSAndre Naujoks static inline char *hex_byte_pack_upper(char *buf, u8 byte) 627c26d436cSAndre Naujoks { 628c26d436cSAndre Naujoks *buf++ = hex_asc_upper_hi(byte); 629c26d436cSAndre Naujoks *buf++ = hex_asc_upper_lo(byte); 630c26d436cSAndre Naujoks return buf; 631c26d436cSAndre Naujoks } 632c26d436cSAndre Naujoks 63390378889SAndy Shevchenko extern int hex_to_bin(char ch); 634b7804983SMimi Zohar extern int __must_check hex2bin(u8 *dst, const char *src, size_t count); 63553d91c5cSDavid Howells extern char *bin2hex(char *dst, const void *src, size_t count); 63690378889SAndy Shevchenko 637a69f5edbSJoe Perches bool mac_pton(const char *s, u8 *mac); 6384cd5773aSAndy Shevchenko 6398a64f336SJoe Perches /* 640526211bcSIngo Molnar * General tracing related utility functions - trace_printk(), 6412002c258SSteven Rostedt * tracing_on/tracing_off and tracing_start()/tracing_stop 6422002c258SSteven Rostedt * 6432002c258SSteven Rostedt * Use tracing_on/tracing_off when you want to quickly turn on or off 6442002c258SSteven Rostedt * tracing. It simply enables or disables the recording of the trace events. 645156f5a78SGeunSik Lim * This also corresponds to the user space /sys/kernel/debug/tracing/tracing_on 6462002c258SSteven Rostedt * file, which gives a means for the kernel and userspace to interact. 6472002c258SSteven Rostedt * Place a tracing_off() in the kernel where you want tracing to end. 6482002c258SSteven Rostedt * From user space, examine the trace, and then echo 1 > tracing_on 6492002c258SSteven Rostedt * to continue tracing. 6502002c258SSteven Rostedt * 6512002c258SSteven Rostedt * tracing_stop/tracing_start has slightly more overhead. It is used 6522002c258SSteven Rostedt * by things like suspend to ram where disabling the recording of the 6532002c258SSteven Rostedt * trace is not enough, but tracing must actually stop because things 6542002c258SSteven Rostedt * like calling smp_processor_id() may crash the system. 6552002c258SSteven Rostedt * 6562002c258SSteven Rostedt * Most likely, you want to use tracing_on/tracing_off. 657526211bcSIngo Molnar */ 658cecbca96SFrederic Weisbecker 659cecbca96SFrederic Weisbecker enum ftrace_dump_mode { 660cecbca96SFrederic Weisbecker DUMP_NONE, 661cecbca96SFrederic Weisbecker DUMP_ALL, 662cecbca96SFrederic Weisbecker DUMP_ORIG, 663cecbca96SFrederic Weisbecker }; 664cecbca96SFrederic Weisbecker 665526211bcSIngo Molnar #ifdef CONFIG_TRACING 66693d68e52SSteven Rostedt void tracing_on(void); 66793d68e52SSteven Rostedt void tracing_off(void); 66893d68e52SSteven Rostedt int tracing_is_on(void); 669ad909e21SSteven Rostedt (Red Hat) void tracing_snapshot(void); 670ad909e21SSteven Rostedt (Red Hat) void tracing_snapshot_alloc(void); 67193d68e52SSteven Rostedt 672526211bcSIngo Molnar extern void tracing_start(void); 673526211bcSIngo Molnar extern void tracing_stop(void); 674526211bcSIngo Molnar 675b9075fa9SJoe Perches static inline __printf(1, 2) 676b9075fa9SJoe Perches void ____trace_printk_check_format(const char *fmt, ...) 677769b0441SFrederic Weisbecker { 678769b0441SFrederic Weisbecker } 679769b0441SFrederic Weisbecker #define __trace_printk_check_format(fmt, args...) \ 680769b0441SFrederic Weisbecker do { \ 681769b0441SFrederic Weisbecker if (0) \ 682769b0441SFrederic Weisbecker ____trace_printk_check_format(fmt, ##args); \ 683769b0441SFrederic Weisbecker } while (0) 684769b0441SFrederic Weisbecker 685526211bcSIngo Molnar /** 686526211bcSIngo Molnar * trace_printk - printf formatting in the ftrace buffer 687526211bcSIngo Molnar * @fmt: the printf format for printing 688526211bcSIngo Molnar * 689e8c97af0SRandy Dunlap * Note: __trace_printk is an internal function for trace_printk() and 690e8c97af0SRandy Dunlap * the @ip is passed in via the trace_printk() macro. 691526211bcSIngo Molnar * 692526211bcSIngo Molnar * This function allows a kernel developer to debug fast path sections 693526211bcSIngo Molnar * that printk is not appropriate for. By scattering in various 694526211bcSIngo Molnar * printk like tracing in the code, a developer can quickly see 695526211bcSIngo Molnar * where problems are occurring. 696526211bcSIngo Molnar * 697526211bcSIngo Molnar * This is intended as a debugging tool for the developer only. 698526211bcSIngo Molnar * Please refrain from leaving trace_printks scattered around in 69909ae7234SSteven Rostedt (Red Hat) * your code. (Extra memory is used for special buffers that are 700e8c97af0SRandy Dunlap * allocated when trace_printk() is used.) 7019d3c752cSSteven Rostedt (Red Hat) * 7028730662dSWei Wang * A little optimization trick is done here. If there's only one 7039d3c752cSSteven Rostedt (Red Hat) * argument, there's no need to scan the string for printf formats. 7049d3c752cSSteven Rostedt (Red Hat) * The trace_puts() will suffice. But how can we take advantage of 7059d3c752cSSteven Rostedt (Red Hat) * using trace_puts() when trace_printk() has only one argument? 7069d3c752cSSteven Rostedt (Red Hat) * By stringifying the args and checking the size we can tell 7079d3c752cSSteven Rostedt (Red Hat) * whether or not there are args. __stringify((__VA_ARGS__)) will 7089d3c752cSSteven Rostedt (Red Hat) * turn into "()\0" with a size of 3 when there are no args, anything 7099d3c752cSSteven Rostedt (Red Hat) * else will be bigger. All we need to do is define a string to this, 7109d3c752cSSteven Rostedt (Red Hat) * and then take its size and compare to 3. If it's bigger, use 7119d3c752cSSteven Rostedt (Red Hat) * do_trace_printk() otherwise, optimize it to trace_puts(). Then just 7129d3c752cSSteven Rostedt (Red Hat) * let gcc optimize the rest. 713526211bcSIngo Molnar */ 714769b0441SFrederic Weisbecker 7159d3c752cSSteven Rostedt (Red Hat) #define trace_printk(fmt, ...) \ 7169d3c752cSSteven Rostedt (Red Hat) do { \ 7179d3c752cSSteven Rostedt (Red Hat) char _______STR[] = __stringify((__VA_ARGS__)); \ 7189d3c752cSSteven Rostedt (Red Hat) if (sizeof(_______STR) > 3) \ 7199d3c752cSSteven Rostedt (Red Hat) do_trace_printk(fmt, ##__VA_ARGS__); \ 7209d3c752cSSteven Rostedt (Red Hat) else \ 7219d3c752cSSteven Rostedt (Red Hat) trace_puts(fmt); \ 7229d3c752cSSteven Rostedt (Red Hat) } while (0) 7239d3c752cSSteven Rostedt (Red Hat) 7249d3c752cSSteven Rostedt (Red Hat) #define do_trace_printk(fmt, args...) \ 725769b0441SFrederic Weisbecker do { \ 7263debb0a9SSteven Rostedt (Red Hat) static const char *trace_printk_fmt __used \ 72748ead020SFrederic Weisbecker __attribute__((section("__trace_printk_fmt"))) = \ 72848ead020SFrederic Weisbecker __builtin_constant_p(fmt) ? fmt : NULL; \ 72948ead020SFrederic Weisbecker \ 73007d777feSSteven Rostedt __trace_printk_check_format(fmt, ##args); \ 73107d777feSSteven Rostedt \ 73207d777feSSteven Rostedt if (__builtin_constant_p(fmt)) \ 73348ead020SFrederic Weisbecker __trace_bprintk(_THIS_IP_, trace_printk_fmt, ##args); \ 73407d777feSSteven Rostedt else \ 73548ead020SFrederic Weisbecker __trace_printk(_THIS_IP_, fmt, ##args); \ 736769b0441SFrederic Weisbecker } while (0) 737769b0441SFrederic Weisbecker 738b9075fa9SJoe Perches extern __printf(2, 3) 739b9075fa9SJoe Perches int __trace_bprintk(unsigned long ip, const char *fmt, ...); 74048ead020SFrederic Weisbecker 741b9075fa9SJoe Perches extern __printf(2, 3) 742b9075fa9SJoe Perches int __trace_printk(unsigned long ip, const char *fmt, ...); 743769b0441SFrederic Weisbecker 74409ae7234SSteven Rostedt (Red Hat) /** 74509ae7234SSteven Rostedt (Red Hat) * trace_puts - write a string into the ftrace buffer 74609ae7234SSteven Rostedt (Red Hat) * @str: the string to record 74709ae7234SSteven Rostedt (Red Hat) * 74809ae7234SSteven Rostedt (Red Hat) * Note: __trace_bputs is an internal function for trace_puts and 74909ae7234SSteven Rostedt (Red Hat) * the @ip is passed in via the trace_puts macro. 75009ae7234SSteven Rostedt (Red Hat) * 75109ae7234SSteven Rostedt (Red Hat) * This is similar to trace_printk() but is made for those really fast 752e8c97af0SRandy Dunlap * paths that a developer wants the least amount of "Heisenbug" effects, 75309ae7234SSteven Rostedt (Red Hat) * where the processing of the print format is still too much. 75409ae7234SSteven Rostedt (Red Hat) * 75509ae7234SSteven Rostedt (Red Hat) * This function allows a kernel developer to debug fast path sections 75609ae7234SSteven Rostedt (Red Hat) * that printk is not appropriate for. By scattering in various 75709ae7234SSteven Rostedt (Red Hat) * printk like tracing in the code, a developer can quickly see 75809ae7234SSteven Rostedt (Red Hat) * where problems are occurring. 75909ae7234SSteven Rostedt (Red Hat) * 76009ae7234SSteven Rostedt (Red Hat) * This is intended as a debugging tool for the developer only. 76109ae7234SSteven Rostedt (Red Hat) * Please refrain from leaving trace_puts scattered around in 76209ae7234SSteven Rostedt (Red Hat) * your code. (Extra memory is used for special buffers that are 763e8c97af0SRandy Dunlap * allocated when trace_puts() is used.) 76409ae7234SSteven Rostedt (Red Hat) * 76509ae7234SSteven Rostedt (Red Hat) * Returns: 0 if nothing was written, positive # if string was. 76609ae7234SSteven Rostedt (Red Hat) * (1 when __trace_bputs is used, strlen(str) when __trace_puts is used) 76709ae7234SSteven Rostedt (Red Hat) */ 76809ae7234SSteven Rostedt (Red Hat) 76909ae7234SSteven Rostedt (Red Hat) #define trace_puts(str) ({ \ 7703debb0a9SSteven Rostedt (Red Hat) static const char *trace_printk_fmt __used \ 77109ae7234SSteven Rostedt (Red Hat) __attribute__((section("__trace_printk_fmt"))) = \ 77209ae7234SSteven Rostedt (Red Hat) __builtin_constant_p(str) ? str : NULL; \ 77309ae7234SSteven Rostedt (Red Hat) \ 77409ae7234SSteven Rostedt (Red Hat) if (__builtin_constant_p(str)) \ 77509ae7234SSteven Rostedt (Red Hat) __trace_bputs(_THIS_IP_, trace_printk_fmt); \ 77609ae7234SSteven Rostedt (Red Hat) else \ 77709ae7234SSteven Rostedt (Red Hat) __trace_puts(_THIS_IP_, str, strlen(str)); \ 77809ae7234SSteven Rostedt (Red Hat) }) 779bcf312cfSSteven Rostedt extern int __trace_bputs(unsigned long ip, const char *str); 780bcf312cfSSteven Rostedt extern int __trace_puts(unsigned long ip, const char *str, int size); 78109ae7234SSteven Rostedt (Red Hat) 782c142be8eSSteven Rostedt (Red Hat) extern void trace_dump_stack(int skip); 78303889384SSteven Rostedt 78448ead020SFrederic Weisbecker /* 78548ead020SFrederic Weisbecker * The double __builtin_constant_p is because gcc will give us an error 78648ead020SFrederic Weisbecker * if we try to allocate the static variable to fmt if it is not a 78748ead020SFrederic Weisbecker * constant. Even with the outer if statement. 78848ead020SFrederic Weisbecker */ 789769b0441SFrederic Weisbecker #define ftrace_vprintk(fmt, vargs) \ 790769b0441SFrederic Weisbecker do { \ 79148ead020SFrederic Weisbecker if (__builtin_constant_p(fmt)) { \ 7923debb0a9SSteven Rostedt (Red Hat) static const char *trace_printk_fmt __used \ 79348ead020SFrederic Weisbecker __attribute__((section("__trace_printk_fmt"))) = \ 79448ead020SFrederic Weisbecker __builtin_constant_p(fmt) ? fmt : NULL; \ 7957bffc23eSIngo Molnar \ 79648ead020SFrederic Weisbecker __ftrace_vbprintk(_THIS_IP_, trace_printk_fmt, vargs); \ 79748ead020SFrederic Weisbecker } else \ 79848ead020SFrederic Weisbecker __ftrace_vprintk(_THIS_IP_, fmt, vargs); \ 799769b0441SFrederic Weisbecker } while (0) 800769b0441SFrederic Weisbecker 8018db14860SNicolas Iooss extern __printf(2, 0) int 80248ead020SFrederic Weisbecker __ftrace_vbprintk(unsigned long ip, const char *fmt, va_list ap); 80348ead020SFrederic Weisbecker 8048db14860SNicolas Iooss extern __printf(2, 0) int 805526211bcSIngo Molnar __ftrace_vprintk(unsigned long ip, const char *fmt, va_list ap); 806769b0441SFrederic Weisbecker 807cecbca96SFrederic Weisbecker extern void ftrace_dump(enum ftrace_dump_mode oops_dump_mode); 808526211bcSIngo Molnar #else 809526211bcSIngo Molnar static inline void tracing_start(void) { } 810526211bcSIngo Molnar static inline void tracing_stop(void) { } 811e67bc51eSDhaval Giani static inline void trace_dump_stack(int skip) { } 81293d68e52SSteven Rostedt 81393d68e52SSteven Rostedt static inline void tracing_on(void) { } 81493d68e52SSteven Rostedt static inline void tracing_off(void) { } 81593d68e52SSteven Rostedt static inline int tracing_is_on(void) { return 0; } 816ad909e21SSteven Rostedt (Red Hat) static inline void tracing_snapshot(void) { } 817ad909e21SSteven Rostedt (Red Hat) static inline void tracing_snapshot_alloc(void) { } 81893d68e52SSteven Rostedt 81960efc15aSMichal Hocko static inline __printf(1, 2) 82060efc15aSMichal Hocko int trace_printk(const char *fmt, ...) 821526211bcSIngo Molnar { 822526211bcSIngo Molnar return 0; 823526211bcSIngo Molnar } 8248db14860SNicolas Iooss static __printf(1, 0) inline int 825526211bcSIngo Molnar ftrace_vprintk(const char *fmt, va_list ap) 826526211bcSIngo Molnar { 827526211bcSIngo Molnar return 0; 828526211bcSIngo Molnar } 829cecbca96SFrederic Weisbecker static inline void ftrace_dump(enum ftrace_dump_mode oops_dump_mode) { } 830769b0441SFrederic Weisbecker #endif /* CONFIG_TRACING */ 831526211bcSIngo Molnar 832526211bcSIngo Molnar /* 8333c8ba0d6SKees Cook * min()/max()/clamp() macros must accomplish three things: 8343c8ba0d6SKees Cook * 8353c8ba0d6SKees Cook * - avoid multiple evaluations of the arguments (so side-effects like 8363c8ba0d6SKees Cook * "x++" happen only once) when non-constant. 8373c8ba0d6SKees Cook * - perform strict type-checking (to generate warnings instead of 8383c8ba0d6SKees Cook * nasty runtime surprises). See the "unnecessary" pointer comparison 8393c8ba0d6SKees Cook * in __typecheck(). 8403c8ba0d6SKees Cook * - retain result as a constant expressions when called with only 8413c8ba0d6SKees Cook * constant expressions (to avoid tripping VLA warnings in stack 8423c8ba0d6SKees Cook * allocation usage). 8431da177e4SLinus Torvalds */ 8443c8ba0d6SKees Cook #define __typecheck(x, y) \ 8453c8ba0d6SKees Cook (!!(sizeof((typeof(x) *)1 == (typeof(y) *)1))) 8463c8ba0d6SKees Cook 8473c8ba0d6SKees Cook /* 8483c8ba0d6SKees Cook * This returns a constant expression while determining if an argument is 8493c8ba0d6SKees Cook * a constant expression, most importantly without evaluating the argument. 8503c8ba0d6SKees Cook * Glory to Martin Uecker <[email protected]> 8513c8ba0d6SKees Cook */ 8523c8ba0d6SKees Cook #define __is_constexpr(x) \ 8533c8ba0d6SKees Cook (sizeof(int) == sizeof(*(8 ? ((void *)((long)(x) * 0l)) : (int *)8))) 8543c8ba0d6SKees Cook 8553c8ba0d6SKees Cook #define __no_side_effects(x, y) \ 8563c8ba0d6SKees Cook (__is_constexpr(x) && __is_constexpr(y)) 8573c8ba0d6SKees Cook 8583c8ba0d6SKees Cook #define __safe_cmp(x, y) \ 8593c8ba0d6SKees Cook (__typecheck(x, y) && __no_side_effects(x, y)) 8603c8ba0d6SKees Cook 8613c8ba0d6SKees Cook #define __cmp(x, y, op) ((x) op (y) ? (x) : (y)) 8623c8ba0d6SKees Cook 863e9092d0dSLinus Torvalds #define __cmp_once(x, y, unique_x, unique_y, op) ({ \ 864e9092d0dSLinus Torvalds typeof(x) unique_x = (x); \ 865e9092d0dSLinus Torvalds typeof(y) unique_y = (y); \ 866e9092d0dSLinus Torvalds __cmp(unique_x, unique_y, op); }) 8673c8ba0d6SKees Cook 8683c8ba0d6SKees Cook #define __careful_cmp(x, y, op) \ 8693c8ba0d6SKees Cook __builtin_choose_expr(__safe_cmp(x, y), \ 870e9092d0dSLinus Torvalds __cmp(x, y, op), \ 871e9092d0dSLinus Torvalds __cmp_once(x, y, __UNIQUE_ID(__x), __UNIQUE_ID(__y), op)) 872e8c97af0SRandy Dunlap 873e8c97af0SRandy Dunlap /** 874e8c97af0SRandy Dunlap * min - return minimum of two values of the same or compatible types 875e8c97af0SRandy Dunlap * @x: first value 876e8c97af0SRandy Dunlap * @y: second value 877e8c97af0SRandy Dunlap */ 8783c8ba0d6SKees Cook #define min(x, y) __careful_cmp(x, y, <) 879e8c97af0SRandy Dunlap 880e8c97af0SRandy Dunlap /** 881e8c97af0SRandy Dunlap * max - return maximum of two values of the same or compatible types 882e8c97af0SRandy Dunlap * @x: first value 883e8c97af0SRandy Dunlap * @y: second value 884e8c97af0SRandy Dunlap */ 8853c8ba0d6SKees Cook #define max(x, y) __careful_cmp(x, y, >) 886bdf4bbaaSHarvey Harrison 887e8c97af0SRandy Dunlap /** 888e8c97af0SRandy Dunlap * min3 - return minimum of three values 889e8c97af0SRandy Dunlap * @x: first value 890e8c97af0SRandy Dunlap * @y: second value 891e8c97af0SRandy Dunlap * @z: third value 892e8c97af0SRandy Dunlap */ 8932e1d06e1SMichal Nazarewicz #define min3(x, y, z) min((typeof(x))min(x, y), z) 894e8c97af0SRandy Dunlap 895e8c97af0SRandy Dunlap /** 896e8c97af0SRandy Dunlap * max3 - return maximum of three values 897e8c97af0SRandy Dunlap * @x: first value 898e8c97af0SRandy Dunlap * @y: second value 899e8c97af0SRandy Dunlap * @z: third value 900e8c97af0SRandy Dunlap */ 9012e1d06e1SMichal Nazarewicz #define max3(x, y, z) max((typeof(x))max(x, y), z) 902f27c85c5SHagen Paul Pfeifer 903bdf4bbaaSHarvey Harrison /** 904c8bf1336SMartin K. Petersen * min_not_zero - return the minimum that is _not_ zero, unless both are zero 905c8bf1336SMartin K. Petersen * @x: value1 906c8bf1336SMartin K. Petersen * @y: value2 907c8bf1336SMartin K. Petersen */ 908c8bf1336SMartin K. Petersen #define min_not_zero(x, y) ({ \ 909c8bf1336SMartin K. Petersen typeof(x) __x = (x); \ 910c8bf1336SMartin K. Petersen typeof(y) __y = (y); \ 911c8bf1336SMartin K. Petersen __x == 0 ? __y : ((__y == 0) ? __x : min(__x, __y)); }) 912c8bf1336SMartin K. Petersen 913c8bf1336SMartin K. Petersen /** 914bdf4bbaaSHarvey Harrison * clamp - return a value clamped to a given range with strict typechecking 915bdf4bbaaSHarvey Harrison * @val: current value 9162e1d06e1SMichal Nazarewicz * @lo: lowest allowable value 9172e1d06e1SMichal Nazarewicz * @hi: highest allowable value 918bdf4bbaaSHarvey Harrison * 919e8c97af0SRandy Dunlap * This macro does strict typechecking of @lo/@hi to make sure they are of the 920e8c97af0SRandy Dunlap * same type as @val. See the unnecessary pointer comparisons. 921bdf4bbaaSHarvey Harrison */ 9222e1d06e1SMichal Nazarewicz #define clamp(val, lo, hi) min((typeof(val))max(val, lo), hi) 9231da177e4SLinus Torvalds 9241da177e4SLinus Torvalds /* 9251da177e4SLinus Torvalds * ..and if you can't take the strict 9261da177e4SLinus Torvalds * types, you can specify one yourself. 9271da177e4SLinus Torvalds * 928bdf4bbaaSHarvey Harrison * Or not use min/max/clamp at all, of course. 9291da177e4SLinus Torvalds */ 930e8c97af0SRandy Dunlap 931e8c97af0SRandy Dunlap /** 932e8c97af0SRandy Dunlap * min_t - return minimum of two values, using the specified type 933e8c97af0SRandy Dunlap * @type: data type to use 934e8c97af0SRandy Dunlap * @x: first value 935e8c97af0SRandy Dunlap * @y: second value 936e8c97af0SRandy Dunlap */ 9373c8ba0d6SKees Cook #define min_t(type, x, y) __careful_cmp((type)(x), (type)(y), <) 9381da177e4SLinus Torvalds 939e8c97af0SRandy Dunlap /** 940e8c97af0SRandy Dunlap * max_t - return maximum of two values, using the specified type 941e8c97af0SRandy Dunlap * @type: data type to use 942e8c97af0SRandy Dunlap * @x: first value 943e8c97af0SRandy Dunlap * @y: second value 944e8c97af0SRandy Dunlap */ 9453c8ba0d6SKees Cook #define max_t(type, x, y) __careful_cmp((type)(x), (type)(y), >) 946bdf4bbaaSHarvey Harrison 947bdf4bbaaSHarvey Harrison /** 948bdf4bbaaSHarvey Harrison * clamp_t - return a value clamped to a given range using a given type 949bdf4bbaaSHarvey Harrison * @type: the type of variable to use 950bdf4bbaaSHarvey Harrison * @val: current value 951c185b07fSMichal Nazarewicz * @lo: minimum allowable value 952c185b07fSMichal Nazarewicz * @hi: maximum allowable value 953bdf4bbaaSHarvey Harrison * 954bdf4bbaaSHarvey Harrison * This macro does no typechecking and uses temporary variables of type 955e8c97af0SRandy Dunlap * @type to make all the comparisons. 956bdf4bbaaSHarvey Harrison */ 957c185b07fSMichal Nazarewicz #define clamp_t(type, val, lo, hi) min_t(type, max_t(type, val, lo), hi) 958bdf4bbaaSHarvey Harrison 959bdf4bbaaSHarvey Harrison /** 960bdf4bbaaSHarvey Harrison * clamp_val - return a value clamped to a given range using val's type 961bdf4bbaaSHarvey Harrison * @val: current value 962c185b07fSMichal Nazarewicz * @lo: minimum allowable value 963c185b07fSMichal Nazarewicz * @hi: maximum allowable value 964bdf4bbaaSHarvey Harrison * 965bdf4bbaaSHarvey Harrison * This macro does no typechecking and uses temporary variables of whatever 966e8c97af0SRandy Dunlap * type the input argument @val is. This is useful when @val is an unsigned 967e8c97af0SRandy Dunlap * type and @lo and @hi are literals that will otherwise be assigned a signed 968bdf4bbaaSHarvey Harrison * integer type. 969bdf4bbaaSHarvey Harrison */ 970c185b07fSMichal Nazarewicz #define clamp_val(val, lo, hi) clamp_t(typeof(val), val, lo, hi) 9711da177e4SLinus Torvalds 97291f68b73SWu Fengguang 973e8c97af0SRandy Dunlap /** 974e8c97af0SRandy Dunlap * swap - swap values of @a and @b 975e8c97af0SRandy Dunlap * @a: first value 976e8c97af0SRandy Dunlap * @b: second value 97791f68b73SWu Fengguang */ 978ac7b9004SPeter Zijlstra #define swap(a, b) \ 979ac7b9004SPeter Zijlstra do { typeof(a) __tmp = (a); (a) = (b); (b) = __tmp; } while (0) 98091f68b73SWu Fengguang 981cf14f27fSAlexei Starovoitov /* This counts to 12. Any more, it will return 13th argument. */ 982cf14f27fSAlexei Starovoitov #define __COUNT_ARGS(_0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _n, X...) _n 983cf14f27fSAlexei Starovoitov #define COUNT_ARGS(X...) __COUNT_ARGS(, ##X, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0) 984cf14f27fSAlexei Starovoitov 985cf14f27fSAlexei Starovoitov #define __CONCAT(a, b) a ## b 986cf14f27fSAlexei Starovoitov #define CONCATENATE(a, b) __CONCAT(a, b) 987cf14f27fSAlexei Starovoitov 9881da177e4SLinus Torvalds /** 9891da177e4SLinus Torvalds * container_of - cast a member of a structure out to the containing structure 9901da177e4SLinus Torvalds * @ptr: the pointer to the member. 9911da177e4SLinus Torvalds * @type: the type of the container struct this is embedded in. 9921da177e4SLinus Torvalds * @member: the name of the member within the struct. 9931da177e4SLinus Torvalds * 9941da177e4SLinus Torvalds */ 9951da177e4SLinus Torvalds #define container_of(ptr, type, member) ({ \ 996c7acec71SIan Abbott void *__mptr = (void *)(ptr); \ 997c7acec71SIan Abbott BUILD_BUG_ON_MSG(!__same_type(*(ptr), ((type *)0)->member) && \ 998c7acec71SIan Abbott !__same_type(*(ptr), void), \ 999c7acec71SIan Abbott "pointer type mismatch in container_of()"); \ 1000c7acec71SIan Abbott ((type *)(__mptr - offsetof(type, member))); }) 10011da177e4SLinus Torvalds 100205e6557bSNeilBrown /** 100305e6557bSNeilBrown * container_of_safe - cast a member of a structure out to the containing structure 100405e6557bSNeilBrown * @ptr: the pointer to the member. 100505e6557bSNeilBrown * @type: the type of the container struct this is embedded in. 100605e6557bSNeilBrown * @member: the name of the member within the struct. 100705e6557bSNeilBrown * 100805e6557bSNeilBrown * If IS_ERR_OR_NULL(ptr), ptr is returned unchanged. 100905e6557bSNeilBrown */ 101005e6557bSNeilBrown #define container_of_safe(ptr, type, member) ({ \ 101105e6557bSNeilBrown void *__mptr = (void *)(ptr); \ 101205e6557bSNeilBrown BUILD_BUG_ON_MSG(!__same_type(*(ptr), ((type *)0)->member) && \ 101305e6557bSNeilBrown !__same_type(*(ptr), void), \ 101405e6557bSNeilBrown "pointer type mismatch in container_of()"); \ 1015227abcc6SDan Carpenter IS_ERR_OR_NULL(__mptr) ? ERR_CAST(__mptr) : \ 101605e6557bSNeilBrown ((type *)(__mptr - offsetof(type, member))); }) 101705e6557bSNeilBrown 1018b9d4f426SArnaud Lacombe /* Rebuild everything on CONFIG_FTRACE_MCOUNT_RECORD */ 1019b9d4f426SArnaud Lacombe #ifdef CONFIG_FTRACE_MCOUNT_RECORD 1020b9d4f426SArnaud Lacombe # define REBUILD_DUE_TO_FTRACE_MCOUNT_RECORD 1021b9d4f426SArnaud Lacombe #endif 10229d00f92fSWANG Cong 102358f86cc8SRusty Russell /* Permissions on a sysfs file: you didn't miss the 0 prefix did you? */ 102458f86cc8SRusty Russell #define VERIFY_OCTAL_PERMISSIONS(perms) \ 102558f86cc8SRusty Russell (BUILD_BUG_ON_ZERO((perms) < 0) + \ 102658f86cc8SRusty Russell BUILD_BUG_ON_ZERO((perms) > 0777) + \ 102728b8d0c8SGobinda Charan Maji /* USER_READABLE >= GROUP_READABLE >= OTHER_READABLE */ \ 102828b8d0c8SGobinda Charan Maji BUILD_BUG_ON_ZERO((((perms) >> 6) & 4) < (((perms) >> 3) & 4)) + \ 102928b8d0c8SGobinda Charan Maji BUILD_BUG_ON_ZERO((((perms) >> 3) & 4) < ((perms) & 4)) + \ 103028b8d0c8SGobinda Charan Maji /* USER_WRITABLE >= GROUP_WRITABLE */ \ 103128b8d0c8SGobinda Charan Maji BUILD_BUG_ON_ZERO((((perms) >> 6) & 2) < (((perms) >> 3) & 2)) + \ 103228b8d0c8SGobinda Charan Maji /* OTHER_WRITABLE? Generally considered a bad idea. */ \ 103337549e94SRusty Russell BUILD_BUG_ON_ZERO((perms) & 2) + \ 103458f86cc8SRusty Russell (perms)) 10351da177e4SLinus Torvalds #endif 1036