xref: /titanic_44/usr/src/lib/libumem/common/misc.h (revision 7c478bd95313f5f23a4c958a745db2134aa03244)
1*7c478bd9Sstevel@tonic-gate /*
2*7c478bd9Sstevel@tonic-gate  * CDDL HEADER START
3*7c478bd9Sstevel@tonic-gate  *
4*7c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
5*7c478bd9Sstevel@tonic-gate  * Common Development and Distribution License, Version 1.0 only
6*7c478bd9Sstevel@tonic-gate  * (the "License").  You may not use this file except in compliance
7*7c478bd9Sstevel@tonic-gate  * with the License.
8*7c478bd9Sstevel@tonic-gate  *
9*7c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10*7c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
11*7c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
12*7c478bd9Sstevel@tonic-gate  * and limitations under the License.
13*7c478bd9Sstevel@tonic-gate  *
14*7c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
15*7c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16*7c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
17*7c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
18*7c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
19*7c478bd9Sstevel@tonic-gate  *
20*7c478bd9Sstevel@tonic-gate  * CDDL HEADER END
21*7c478bd9Sstevel@tonic-gate  */
22*7c478bd9Sstevel@tonic-gate /*
23*7c478bd9Sstevel@tonic-gate  * Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
24*7c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
25*7c478bd9Sstevel@tonic-gate  */
26*7c478bd9Sstevel@tonic-gate 
27*7c478bd9Sstevel@tonic-gate #ifndef	_MISC_H
28*7c478bd9Sstevel@tonic-gate #define	_MISC_H
29*7c478bd9Sstevel@tonic-gate 
30*7c478bd9Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
31*7c478bd9Sstevel@tonic-gate 
32*7c478bd9Sstevel@tonic-gate #include <sys/types.h>
33*7c478bd9Sstevel@tonic-gate #include <sys/time.h>
34*7c478bd9Sstevel@tonic-gate #include <thread.h>
35*7c478bd9Sstevel@tonic-gate #include <stdarg.h>
36*7c478bd9Sstevel@tonic-gate 
37*7c478bd9Sstevel@tonic-gate #ifdef	__cplusplus
38*7c478bd9Sstevel@tonic-gate extern "C" {
39*7c478bd9Sstevel@tonic-gate #endif
40*7c478bd9Sstevel@tonic-gate 
41*7c478bd9Sstevel@tonic-gate extern uint_t umem_abort;		/* abort when errors occur */
42*7c478bd9Sstevel@tonic-gate extern uint_t umem_output;		/* output error messages to stderr */
43*7c478bd9Sstevel@tonic-gate extern caddr_t umem_min_stack;		/* max stack address for audit log */
44*7c478bd9Sstevel@tonic-gate extern caddr_t umem_max_stack;		/* min stack address for audit log */
45*7c478bd9Sstevel@tonic-gate 
46*7c478bd9Sstevel@tonic-gate /*
47*7c478bd9Sstevel@tonic-gate  * various utility functions
48*7c478bd9Sstevel@tonic-gate  * These are globally implemented.
49*7c478bd9Sstevel@tonic-gate  */
50*7c478bd9Sstevel@tonic-gate 
51*7c478bd9Sstevel@tonic-gate #undef	offsetof
52*7c478bd9Sstevel@tonic-gate #define	offsetof(s, m)	((size_t)(&(((s *)0)->m)))
53*7c478bd9Sstevel@tonic-gate 
54*7c478bd9Sstevel@tonic-gate /*
55*7c478bd9Sstevel@tonic-gate  * a safe printf  -- do not use for error messages.
56*7c478bd9Sstevel@tonic-gate  */
57*7c478bd9Sstevel@tonic-gate void debug_printf(const char *format, ...);
58*7c478bd9Sstevel@tonic-gate 
59*7c478bd9Sstevel@tonic-gate /*
60*7c478bd9Sstevel@tonic-gate  * adds a message to the log without writing it out.
61*7c478bd9Sstevel@tonic-gate  */
62*7c478bd9Sstevel@tonic-gate void log_message(const char *format, ...);
63*7c478bd9Sstevel@tonic-gate 
64*7c478bd9Sstevel@tonic-gate /*
65*7c478bd9Sstevel@tonic-gate  * returns the index of the (high/low) bit + 1
66*7c478bd9Sstevel@tonic-gate  */
67*7c478bd9Sstevel@tonic-gate int highbit(ulong_t);
68*7c478bd9Sstevel@tonic-gate int lowbit(ulong_t);
69*7c478bd9Sstevel@tonic-gate #pragma no_side_effect(highbit, lowbit)
70*7c478bd9Sstevel@tonic-gate 
71*7c478bd9Sstevel@tonic-gate /*
72*7c478bd9Sstevel@tonic-gate  * Converts a hrtime_t to a timestruc_t
73*7c478bd9Sstevel@tonic-gate  */
74*7c478bd9Sstevel@tonic-gate void hrt2ts(hrtime_t hrt, timestruc_t *tsp);
75*7c478bd9Sstevel@tonic-gate 
76*7c478bd9Sstevel@tonic-gate /*
77*7c478bd9Sstevel@tonic-gate  * tries to print out the symbol and offset of a pointer using umem_error_info
78*7c478bd9Sstevel@tonic-gate  */
79*7c478bd9Sstevel@tonic-gate int print_sym(void *pointer);
80*7c478bd9Sstevel@tonic-gate 
81*7c478bd9Sstevel@tonic-gate /*
82*7c478bd9Sstevel@tonic-gate  * Information about the current error.  Can be called multiple times, should
83*7c478bd9Sstevel@tonic-gate  * be followed eventually with a call to umem_err or umem_err_recoverable.
84*7c478bd9Sstevel@tonic-gate  */
85*7c478bd9Sstevel@tonic-gate void umem_printf(const char *format, ...);
86*7c478bd9Sstevel@tonic-gate void umem_vprintf(const char *format, va_list);
87*7c478bd9Sstevel@tonic-gate 
88*7c478bd9Sstevel@tonic-gate void umem_printf_warn(void *ignored, const char *format, ...);
89*7c478bd9Sstevel@tonic-gate 
90*7c478bd9Sstevel@tonic-gate void umem_error_enter(const char *);
91*7c478bd9Sstevel@tonic-gate 
92*7c478bd9Sstevel@tonic-gate /*
93*7c478bd9Sstevel@tonic-gate  * prints error message and stack trace, then aborts.  Cannot return.
94*7c478bd9Sstevel@tonic-gate  */
95*7c478bd9Sstevel@tonic-gate void umem_panic(const char *format, ...) __NORETURN;
96*7c478bd9Sstevel@tonic-gate #pragma does_not_return(umem_panic)
97*7c478bd9Sstevel@tonic-gate #pragma rarely_called(umem_panic)
98*7c478bd9Sstevel@tonic-gate 
99*7c478bd9Sstevel@tonic-gate /*
100*7c478bd9Sstevel@tonic-gate  * like umem_err, but only aborts if umem_abort > 0
101*7c478bd9Sstevel@tonic-gate  */
102*7c478bd9Sstevel@tonic-gate void umem_err_recoverable(const char *format, ...);
103*7c478bd9Sstevel@tonic-gate 
104*7c478bd9Sstevel@tonic-gate /*
105*7c478bd9Sstevel@tonic-gate  * We define our own assertion handling since libc's assert() calls malloc()
106*7c478bd9Sstevel@tonic-gate  */
107*7c478bd9Sstevel@tonic-gate #ifdef NDEBUG
108*7c478bd9Sstevel@tonic-gate #define	ASSERT(assertion) (void)0
109*7c478bd9Sstevel@tonic-gate #else
110*7c478bd9Sstevel@tonic-gate #define	ASSERT(assertion) (void)((assertion) || \
111*7c478bd9Sstevel@tonic-gate     __umem_assert_failed(#assertion, __FILE__, __LINE__))
112*7c478bd9Sstevel@tonic-gate #endif
113*7c478bd9Sstevel@tonic-gate 
114*7c478bd9Sstevel@tonic-gate int __umem_assert_failed(const char *assertion, const char *file, int line);
115*7c478bd9Sstevel@tonic-gate #pragma does_not_return(__umem_assert_failed)
116*7c478bd9Sstevel@tonic-gate #pragma rarely_called(__umem_assert_failed)
117*7c478bd9Sstevel@tonic-gate /*
118*7c478bd9Sstevel@tonic-gate  * These have architecture-specific implementations.
119*7c478bd9Sstevel@tonic-gate  */
120*7c478bd9Sstevel@tonic-gate 
121*7c478bd9Sstevel@tonic-gate /*
122*7c478bd9Sstevel@tonic-gate  * Returns the current function's frame pointer.
123*7c478bd9Sstevel@tonic-gate  */
124*7c478bd9Sstevel@tonic-gate extern void *getfp(void);
125*7c478bd9Sstevel@tonic-gate 
126*7c478bd9Sstevel@tonic-gate /*
127*7c478bd9Sstevel@tonic-gate  * puts a pc-only stack trace of up to pcstack_limit frames into pcstack.
128*7c478bd9Sstevel@tonic-gate  * Returns the number of stacks written.
129*7c478bd9Sstevel@tonic-gate  *
130*7c478bd9Sstevel@tonic-gate  * if check_sighandler != 0, and we are in a signal context, calls
131*7c478bd9Sstevel@tonic-gate  * umem_err_recoverable.
132*7c478bd9Sstevel@tonic-gate  */
133*7c478bd9Sstevel@tonic-gate extern int getpcstack(uintptr_t *pcstack, int pcstack_limit,
134*7c478bd9Sstevel@tonic-gate     int check_sighandler);
135*7c478bd9Sstevel@tonic-gate 
136*7c478bd9Sstevel@tonic-gate #ifdef	__cplusplus
137*7c478bd9Sstevel@tonic-gate }
138*7c478bd9Sstevel@tonic-gate #endif
139*7c478bd9Sstevel@tonic-gate 
140*7c478bd9Sstevel@tonic-gate #endif /* _MISC_H */
141