1998-04-22 20:58:34 +08:00
|
|
|
/*
|
|
|
|
* BIRD Library
|
|
|
|
*
|
2004-06-01 05:02:09 +08:00
|
|
|
* (c) 1998--2004 Martin Mares <mj@ucw.cz>
|
1998-04-22 20:58:34 +08:00
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _BIRD_BIRDLIB_H_
|
|
|
|
#define _BIRD_BIRDLIB_H_
|
|
|
|
|
2009-02-26 21:23:54 +08:00
|
|
|
#include "timer.h"
|
|
|
|
|
1998-04-22 20:58:34 +08:00
|
|
|
/* Ugly structure offset handling macros */
|
|
|
|
|
|
|
|
#define OFFSETOF(s, i) ((unsigned int)&((s *)0)->i)
|
|
|
|
#define SKIP_BACK(s, i, p) ((s *)((char *)p - OFFSETOF(s, i)))
|
2004-06-01 18:28:25 +08:00
|
|
|
#define BIRD_ALIGN(s, a) (((s)+a-1)&~(a-1))
|
1998-05-04 00:43:39 +08:00
|
|
|
|
1999-02-06 05:29:19 +08:00
|
|
|
/* Utility macros */
|
|
|
|
|
|
|
|
#define MIN(a,b) (((a)<(b))?(a):(b))
|
|
|
|
#define MAX(a,b) (((a)>(b))?(a):(b))
|
2002-11-13 16:47:19 +08:00
|
|
|
#define ABS(a) ((a)>=0 ? (a) : -(a))
|
2000-04-12 21:21:23 +08:00
|
|
|
#define ARRAY_SIZE(a) (sizeof(a)/sizeof(*(a)))
|
1998-07-10 03:36:05 +08:00
|
|
|
|
1999-03-30 03:13:36 +08:00
|
|
|
#ifndef NULL
|
|
|
|
#define NULL ((void *) 0)
|
|
|
|
#endif
|
|
|
|
|
2004-06-05 17:01:12 +08:00
|
|
|
/* Macros for gcc attributes */
|
1998-05-04 00:43:39 +08:00
|
|
|
|
|
|
|
#define NORET __attribute__((noreturn))
|
2004-06-01 05:02:09 +08:00
|
|
|
#define UNUSED __attribute__((unused))
|
1998-04-22 20:58:34 +08:00
|
|
|
|
1998-04-23 22:01:15 +08:00
|
|
|
/* Logging and dying */
|
|
|
|
|
2009-02-26 21:23:54 +08:00
|
|
|
struct rate_limit {
|
|
|
|
bird_clock_t timestamp;
|
|
|
|
int count;
|
|
|
|
};
|
|
|
|
|
2004-06-05 17:05:12 +08:00
|
|
|
#define log log_msg
|
|
|
|
void log_msg(char *msg, ...);
|
2009-02-26 21:23:54 +08:00
|
|
|
void log_rl(struct rate_limit *rl, char *msg, ...);
|
1998-07-10 16:39:34 +08:00
|
|
|
void die(char *msg, ...) NORET;
|
1998-12-20 22:24:35 +08:00
|
|
|
void bug(char *msg, ...) NORET;
|
1998-04-23 22:01:15 +08:00
|
|
|
|
|
|
|
#define L_DEBUG "\001" /* Debugging messages */
|
1998-12-20 22:24:35 +08:00
|
|
|
#define L_TRACE "\002" /* Protocol tracing */
|
|
|
|
#define L_INFO "\003" /* Informational messages */
|
|
|
|
#define L_REMOTE "\004" /* Remote protocol errors */
|
2001-02-20 17:49:19 +08:00
|
|
|
#define L_WARN "\005" /* Local warnings */
|
|
|
|
#define L_ERR "\006" /* Local errors */
|
|
|
|
#define L_AUTH "\007" /* Authorization failed etc. */
|
|
|
|
#define L_FATAL "\010" /* Fatal errors */
|
|
|
|
#define L_BUG "\011" /* BIRD bugs */
|
1998-05-04 00:43:39 +08:00
|
|
|
|
|
|
|
void debug(char *msg, ...); /* Printf to debug output */
|
1998-04-23 22:01:15 +08:00
|
|
|
|
|
|
|
/* Debugging */
|
|
|
|
|
2000-03-08 05:04:14 +08:00
|
|
|
#if defined(LOCAL_DEBUG) || defined(GLOBAL_DEBUG)
|
1998-05-27 05:36:17 +08:00
|
|
|
#define DBG(x, y...) debug(x, ##y)
|
1998-04-23 22:01:15 +08:00
|
|
|
#else
|
2000-03-13 05:47:25 +08:00
|
|
|
#define DBG(x, y...) do { } while(0)
|
1998-04-23 22:01:15 +08:00
|
|
|
#endif
|
|
|
|
|
1998-12-20 22:24:35 +08:00
|
|
|
#ifdef DEBUGGING
|
|
|
|
#define ASSERT(x) do { if (!(x)) bug("Assertion `%s' failed at %s:%d", #x, __FILE__, __LINE__); } while(0)
|
|
|
|
#else
|
|
|
|
#define ASSERT(x) do { } while(0)
|
|
|
|
#endif
|
|
|
|
|
1999-08-18 04:47:40 +08:00
|
|
|
/* Pseudorandom numbers */
|
|
|
|
|
|
|
|
u32 random_u32(void);
|
|
|
|
|
1998-04-22 20:58:34 +08:00
|
|
|
#endif
|