]> mj.ucw.cz Git - libucw.git/blob - ucw/lib.h
libucw: OFFSETOF returns an unsigned int again
[libucw.git] / ucw / lib.h
1 /*
2  *      The UCW Library -- Miscellaneous Functions
3  *
4  *      (c) 1997--2009 Martin Mares <mj@ucw.cz>
5  *      (c) 2005 Tomas Valla <tom@ucw.cz>
6  *      (c) 2006 Robert Spalek <robert@ucw.cz>
7  *      (c) 2007 Pavel Charvat <pchar@ucw.cz>
8  *
9  *      This software may be freely distributed and used according to the terms
10  *      of the GNU Lesser General Public License.
11  */
12
13 #ifndef _UCW_LIB_H
14 #define _UCW_LIB_H
15
16 #include "ucw/config.h"
17 #include <stdarg.h>
18
19 /*** === Macros for handling structures, offsets and alignment ***/
20
21 #define CHECK_PTR_TYPE(x, type) ((x)-(type)(x) + (type)(x))             /** Check that a pointer @x is of type @type. Fail compilation if not. **/
22 #define PTR_TO(s, i) &((s*)0)->i                                        /** Return OFFSETOF() in form of a pointer. **/
23 #define OFFSETOF(s, i) ((uns)offsetof(s, i))                            /** Offset of item @i from the start of structure @s **/
24 #define SKIP_BACK(s, i, p) ((s *)((char *)p - OFFSETOF(s, i)))          /** Given a pointer @p to item @i of structure @s, return a pointer to the start of the struct. **/
25
26 /** Align an integer @s to the nearest higher multiple of @a (which should be a power of two) **/
27 #define ALIGN_TO(s, a) (((s)+a-1)&~(a-1))
28
29 /** Align a pointer @p to the nearest higher multiple of @s. **/
30 #define ALIGN_PTR(p, s) ((uintptr_t)(p) % (s) ? (typeof(p))((uintptr_t)(p) + (s) - (uintptr_t)(p) % (s)) : (p))
31
32 #define UNALIGNED_PART(ptr, type) (((uintptr_t) (ptr)) % sizeof(type))
33
34 /*** === Other utility macros ***/
35
36 #define MIN(a,b) (((a)<(b))?(a):(b))                    /** Minimum of two numbers **/
37 #define MAX(a,b) (((a)>(b))?(a):(b))                    /** Maximum of two numbers **/
38 #define CLAMP(x,min,max) ({ int _t=x; (_t < min) ? min : (_t > max) ? max : _t; })      /** Clip a number @x to interval [@min,@max] **/
39 #define ABS(x) ((x) < 0 ? -(x) : (x))                   /** Absolute value **/
40 #define ARRAY_SIZE(a) (sizeof(a)/sizeof(*(a)))          /** The number of elements of an array **/
41 #define STRINGIFY(x) #x                                 /** Convert macro parameter to a string **/
42 #define STRINGIFY_EXPANDED(x) STRINGIFY(x)              /** Convert an expanded macro parameter to a string **/
43 #define GLUE(x,y) x##y                                  /** Glue two tokens together **/
44 #define GLUE_(x,y) x##_##y                              /** Glue two tokens together, separating them by an underscore **/
45
46 #define COMPARE(x,y) do { if ((x)<(y)) return -1; if ((x)>(y)) return 1; } while(0)             /** Numeric comparison function for qsort() **/
47 #define REV_COMPARE(x,y) COMPARE(y,x)                                                           /** Reverse numeric comparison **/
48 #define COMPARE_LT(x,y) do { if ((x)<(y)) return 1; if ((x)>(y)) return 0; } while(0)
49 #define COMPARE_GT(x,y) COMPARE_LT(y,x)
50
51 #define ROL(x, bits) (((x) << (bits)) | ((uns)(x) >> (sizeof(uns)*8 - (bits))))         /** Bitwise rotation of an unsigned int to the left **/
52 #define ROR(x, bits) (((uns)(x) >> (bits)) | ((x) << (sizeof(uns)*8 - (bits))))         /** Bitwise rotation of an unsigned int to the right **/
53
54 /*** === Shortcuts for GCC Extensions ***/
55
56 #ifdef __GNUC__
57
58 #undef inline
59 #define NONRET __attribute__((noreturn))                                /** Function does not return **/
60 #define UNUSED __attribute__((unused))                                  /** Variable/parameter is knowingly unused **/
61 #define CONSTRUCTOR __attribute__((constructor))                        /** Call function upon start of program **/
62 #define PACKED __attribute__((packed))                                  /** Structure should be packed **/
63 #define CONST __attribute__((const))                                    /** Function depends only on arguments **/
64 #define PURE __attribute__((pure))                                      /** Function depends only on arguments and global vars **/
65 #define FORMAT_CHECK(x,y,z) __attribute__((format(x,y,z)))              /** Checking of printf-like format strings **/
66 #define likely(x) __builtin_expect((x),1)                               /** Use `if (likely(@x))` if @x is almost always true **/
67 #define unlikely(x) __builtin_expect((x),0)                             /** Use `if (unlikely(@x))` to hint that @x is almost always false **/
68
69 #if __GNUC__ >= 4 || __GNUC__ == 3 && __GNUC_MINOR__ >= 3
70 #define ALWAYS_INLINE inline __attribute__((always_inline))             /** Forcibly inline **/
71 #define NO_INLINE __attribute__((noinline))                             /** Forcibly uninline **/
72 #else
73 #define ALWAYS_INLINE inline
74 #endif
75
76 #if __GNUC__ >= 4
77 #define LIKE_MALLOC __attribute__((malloc))                             /** Function returns a "new" pointer **/
78 #define SENTINEL_CHECK __attribute__((sentinel))                        /** The last argument must be NULL **/
79 #else
80 #define LIKE_MALLOC
81 #define SENTINEL_CHECK
82 #endif
83
84 #else
85 #error This program requires the GNU C compiler.
86 #endif
87
88 /***
89  * [[logging]]
90  *
91  * === Basic logging functions (see <<log:,Logging>> and <ucw/log.h> for more)
92  ***/
93
94 enum log_levels {                       /** The available log levels to pass to msg() and friends. **/
95   L_DEBUG=0,                            // 'D' - Debugging
96   L_INFO,                               // 'I' - Informational
97   L_WARN,                               // 'W' - Warning
98   L_ERROR,                              // 'E' - Error, but non-critical
99   L_INFO_R,                             // 'i' - An alternative set of levels for messages caused by remote events
100   L_WARN_R,                             // 'w'   (e.g., a packet received via network)
101   L_ERROR_R,                            // 'e'
102   L_FATAL,                              // '!' - Fatal error
103   L_MAX
104 };
105
106 #define LOG_LEVEL_NAMES P(DEBUG) P(INFO) P(WARN) P(ERROR) P(INFO_R) P(WARN_R) P(ERROR_R) P(FATAL)
107
108 // Return the letter associated with a given severity level
109 #define LS_LEVEL_LETTER(level) ("DIWEiwe!###"[( level )])
110
111 #define L_SIGHANDLER    0x80000000      /** Avoid operations that are unsafe in signal handlers **/
112 #define L_LOGGER_ERR    0x40000000      /** Used internally to avoid infinite reporting of logging errors **/
113
114 /**
115  * This is the basic printf-like function for logging a message.
116  * The @flags contain the log level and possibly other flag bits (like `L_SIGHANDLER`).
117  **/
118 void msg(uns flags, const char *fmt, ...) FORMAT_CHECK(printf,2,3);
119 void vmsg(uns flags, const char *fmt, va_list args);            /** A vararg version of msg(). **/
120 void die(const char *, ...) NONRET FORMAT_CHECK(printf,1,2);    /** Log a fatal error message and exit the program. **/
121
122 extern char *log_title;                 /** An optional log message title. Set to program name by log_init(). **/
123 extern int log_pid;                     /** An optional PID printed in each log message. Set to 0 if it shouldn't be logged. **/
124 extern void (*log_die_hook)(void);      /** An optional function called just before die() exists. **/
125
126 void log_init(const char *argv0);       /** Set @log_title to the program name extracted from @argv[0]. **/
127 void log_fork(void);                    /** Call after fork() to update @log_pid. **/
128 void log_file(const char *name);        /** Establish logging to the named file. Also redirect stderr there. **/
129
130 void assert_failed(const char *assertion, const char *file, int line) NONRET;
131 void assert_failed_noinfo(void) NONRET;
132
133 #ifdef DEBUG_ASSERTS
134 /**
135  * Check an assertion. If the condition @x is false, stop the program with a fatal error.
136  * Assertion checks are compiled only when `DEBUG_ASSERTS` is defined.
137  **/
138 #define ASSERT(x) ({ if (unlikely(!(x))) assert_failed(#x, __FILE__, __LINE__); 1; })
139 #else
140 #define ASSERT(x) ({ if (__builtin_constant_p(x) && !(x)) assert_failed_noinfo(); 1; })
141 #endif
142
143 #define COMPILE_ASSERT(name,x) typedef char _COMPILE_ASSERT_##name[!!(x)-1]
144
145 #ifdef LOCAL_DEBUG
146 #define DBG(x,y...) msg(L_DEBUG, x,##y) /** If `LOCAL_DEBUG` is defined before including <ucw/lib.h>, log a debug message. Otherwise do nothing. **/
147 #else
148 #define DBG(x,y...) do { } while(0)
149 #endif
150
151 /*** === Memory allocation ***/
152
153 /*
154  * Unfortunately, several libraries we might want to link to define
155  * their own xmalloc and we don't want to interfere with them, hence
156  * the renaming.
157  */
158 #define xmalloc ucw_xmalloc
159 #define xrealloc ucw_xrealloc
160 #define xfree ucw_xfree
161
162 void *xmalloc(size_t) LIKE_MALLOC;              /** Allocate memory and die() if there is none. **/
163 void *xrealloc(void *, size_t);                 /** Reallocate memory and die() if there is none. **/
164 void xfree(void *);                             /** Free memory allocated by xmalloc() or xrealloc(). **/
165
166 void *xmalloc_zero(size_t) LIKE_MALLOC;         /** Allocate memory and fill it by zeroes. **/
167 char *xstrdup(const char *) LIKE_MALLOC;        /** Make a xmalloc()'ed copy of a string. Returns NULL for NULL string. **/
168
169 /*** === Trivial timers (timer.c) ***/
170
171 timestamp_t get_timestamp(void);                /** Get current time as a millisecond timestamp. **/
172
173 void init_timer(timestamp_t *timer);            /** Initialize a timer. **/
174 uns get_timer(timestamp_t *timer);              /** Get the number of milliseconds since last init/get of a timer. **/
175 uns switch_timer(timestamp_t *oldt, timestamp_t *newt); /** Stop ticking of one timer and resume another. **/
176
177 /*** === Random numbers (random.c) ***/
178
179 uns random_u32(void);                           /** Return a pseudorandom 32-bit number. **/
180 uns random_max(uns max);                        /** Return a pseudorandom 32-bit number in range [0,@max). **/
181 u64 random_u64(void);                           /** Return a pseudorandom 64-bit number. **/
182 u64 random_max_u64(u64 max);                    /** Return a pseudorandom 64-bit number in range [0,@max). **/
183
184 /* mmap.c */
185
186 void *mmap_file(const char *name, unsigned *len, int writeable);
187 void munmap_file(void *start, unsigned len);
188
189 /* proctitle.c */
190
191 void setproctitle_init(int argc, char **argv);
192 void setproctitle(const char *msg, ...) FORMAT_CHECK(printf,1,2);
193 char *getproctitle(void);
194
195 /* randomkey.c */
196
197 void randomkey(byte *buf, uns size);
198
199 /* exitstatus.c */
200
201 #define EXIT_STATUS_MSG_SIZE 32
202 int format_exit_status(char *msg, int stat);
203
204 /* runcmd.c */
205
206 int run_command(const char *cmd, ...);
207 void NONRET exec_command(const char *cmd, ...);
208 void echo_command(char *buf, int size, const char *cmd, ...);
209 int run_command_v(const char *cmd, va_list args);
210 void NONRET exec_command_v(const char *cmd, va_list args);
211 void echo_command_v(char *buf, int size, const char *cmd, va_list args);
212
213 /* carefulio.c */
214
215 int careful_read(int fd, void *buf, int len);
216 int careful_write(int fd, const void *buf, int len);
217
218 /* sync.c */
219
220 void sync_dir(const char *name);
221
222 /* sighandler.c */
223
224 typedef int (*ucw_sighandler_t)(int);   // gets signum, returns nonzero if abort() should be called
225
226 void handle_signal(int signum);
227 void unhandle_signal(int signum);
228 ucw_sighandler_t set_signal_handler(int signum, ucw_sighandler_t newh);
229
230 /* bigalloc.c */
231
232 void *page_alloc(u64 len) LIKE_MALLOC; // allocates a multiple of CPU_PAGE_SIZE bytes with mmap
233 void *page_alloc_zero(u64 len) LIKE_MALLOC;
234 void page_free(void *start, u64 len);
235 void *page_realloc(void *start, u64 old_len, u64 new_len);
236
237 void *big_alloc(u64 len) LIKE_MALLOC; // allocate a large memory block in the most efficient way available
238 void *big_alloc_zero(u64 len) LIKE_MALLOC;
239 void big_free(void *start, u64 len);
240
241 #endif