]> git.proxmox.com Git - mirror_frr.git/blob - babeld/util.h
babeld: use zlog_debug instead of do_debugf, for debugf.
[mirror_frr.git] / babeld / util.h
1 /*
2 * This file is free software: you may copy, redistribute and/or modify it
3 * under the terms of the GNU General Public License as published by the
4 * Free Software Foundation, either version 2 of the License, or (at your
5 * option) any later version.
6 *
7 * This file is distributed in the hope that it will be useful, but
8 * WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10 * General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program. If not, see <http://www.gnu.org/licenses/>.
14 *
15 * This file incorporates work covered by the following copyright and
16 * permission notice:
17 *
18 Copyright (c) 2007, 2008 by Juliusz Chroboczek
19 Copyright 2011 by Matthieu Boutier and Juliusz Chroboczek
20
21 Permission is hereby granted, free of charge, to any person obtaining a copy
22 of this software and associated documentation files (the "Software"), to deal
23 in the Software without restriction, including without limitation the rights
24 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25 copies of the Software, and to permit persons to whom the Software is
26 furnished to do so, subject to the following conditions:
27
28 The above copyright notice and this permission notice shall be included in
29 all copies or substantial portions of the Software.
30
31 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
32 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
33 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
34 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
35 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
36 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
37 THE SOFTWARE.
38 */
39
40 #include "babeld.h"
41 #include "babel_main.h"
42 #include "log.h"
43
44 #if defined(i386) || defined(__mc68020__) || defined(__x86_64__)
45 #define DO_NTOHS(_d, _s) do{ _d = ntohs(*(const unsigned short*)(_s)); }while(0)
46 #define DO_NTOHL(_d, _s) do{ _d = ntohl(*(const unsigned*)(_s)); } while(0)
47 #define DO_HTONS(_d, _s) do{ *(unsigned short*)(_d) = htons(_s); } while(0)
48 #define DO_HTONL(_d, _s) do{ *(unsigned*)(_d) = htonl(_s); } while(0)
49 /* Some versions of gcc seem to be buggy, and ignore the packed attribute.
50 Disable this code until the issue is clarified. */
51 /* #elif defined __GNUC__*/
52 #elif 0
53 struct __us { unsigned short x __attribute__((packed)); };
54 #define DO_NTOHS(_d, _s) \
55 do { _d = ntohs(((const struct __us*)(_s))->x); } while(0)
56 #define DO_HTONS(_d, _s) \
57 do { ((struct __us*)(_d))->x = htons(_s); } while(0)
58 #else
59 #define DO_NTOHS(_d, _s) \
60 do { short _dd; \
61 memcpy(&(_dd), (_s), 2); \
62 _d = ntohs(_dd); } while(0)
63 #define DO_HTONS(_d, _s) \
64 do { unsigned short _dd; \
65 _dd = htons(_s); \
66 memcpy((_d), &(_dd), 2); } while(0)
67 #endif
68
69 static inline int
70 seqno_compare(unsigned short s1, unsigned short s2)
71 {
72 if(s1 == s2)
73 return 0;
74 else
75 return ((s2 - s1) & 0x8000) ? 1 : -1;
76 }
77
78 static inline short
79 seqno_minus(unsigned short s1, unsigned short s2)
80 {
81 return (short)((s1 - s2) & 0xFFFF);
82 }
83
84 static inline unsigned short
85 seqno_plus(unsigned short s, int plus)
86 {
87 return ((s + plus) & 0xFFFF);
88 }
89
90 unsigned roughly(unsigned value);
91 void timeval_minus(struct timeval *d,
92 const struct timeval *s1, const struct timeval *s2);
93 unsigned timeval_minus_msec(const struct timeval *s1, const struct timeval *s2)
94 ATTRIBUTE ((pure));
95 void timeval_add_msec(struct timeval *d,
96 const struct timeval *s, const int msecs);
97 void set_timeout (struct timeval *timeout, int msecs);
98 int timeval_compare(const struct timeval *s1, const struct timeval *s2)
99 ATTRIBUTE ((pure));
100 void timeval_min(struct timeval *d, const struct timeval *s);
101 void timeval_min_sec(struct timeval *d, time_t secs);
102 int parse_msec(const char *string) ATTRIBUTE ((pure));
103 void do_debugf(const char *format, ...)
104 ATTRIBUTE ((format (printf, 1, 2))) COLD;
105 int in_prefix(const unsigned char *restrict address,
106 const unsigned char *restrict prefix, unsigned char plen)
107 ATTRIBUTE ((pure));
108 unsigned char *mask_prefix(unsigned char *restrict ret,
109 const unsigned char *restrict prefix,
110 unsigned char plen);
111 const char *format_address(const unsigned char *address);
112 const char *format_prefix(const unsigned char *address, unsigned char prefix);
113 const char *format_eui64(const unsigned char *eui);
114 const char *format_bool(const int b);
115 int parse_address(const char *address, unsigned char *addr_r, int *af_r);
116 int parse_net(const char *ifp, unsigned char *prefix_r, unsigned char *plen_r,
117 int *af_r);
118 int parse_eui64(const char *eui, unsigned char *eui_r);
119 int wait_for_fd(int direction, int fd, int msecs);
120 int martian_prefix(const unsigned char *prefix, int plen) ATTRIBUTE ((pure));
121 int linklocal(const unsigned char *address) ATTRIBUTE ((pure));
122 int v4mapped(const unsigned char *address) ATTRIBUTE ((pure));
123 void v4tov6(unsigned char *dst, const unsigned char *src);
124 void inaddr_to_uchar(unsigned char *dest, const struct in_addr *src);
125 void uchar_to_inaddr(struct in_addr *dest, const unsigned char *src);
126 void in6addr_to_uchar(unsigned char *dest, const struct in6_addr *src);
127 void uchar_to_in6addr(struct in6_addr *dest, const unsigned char *src);
128 int daemonise(void);
129
130 /* If debugging is disabled, we want to avoid calling format_address
131 for every omitted debugging message. So debug is a macro. But
132 vararg macros are not portable. */
133 #if defined NO_DEBUG
134
135 #if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L
136 #define debugf(...) do {} while(0)
137 #elif defined __GNUC__
138 #define debugf(_args...) do {} while(0)
139 #else
140 static inline void debugf(int level, const char *format, ...) { return; }
141 #endif
142
143 #else /* NO_DEBUG */
144
145 /* some levels */
146 #define BABEL_DEBUG_COMMON (1 << 0)
147 #define BABEL_DEBUG_KERNEL (1 << 1)
148 #define BABEL_DEBUG_FILTER (1 << 2)
149 #define BABEL_DEBUG_TIMEOUT (1 << 3)
150 #define BABEL_DEBUG_IF (1 << 4)
151 #define BABEL_DEBUG_ROUTE (1 << 5)
152 #define BABEL_DEBUG_ALL (0xFFFF)
153
154 #if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L
155 #define debugf(level, ...) \
156 do { \
157 if(UNLIKELY(debug & level)) zlog_debug(__VA_ARGS__); \
158 } while(0)
159 #elif defined __GNUC__
160 #define debugf(level, _args...) \
161 do { \
162 if(UNLIKELY(debug & level)) zlog_debug(_args); \
163 } while(0)
164 #else
165 static inline void debugf(int level, const char *format, ...) { return; }
166 #endif
167
168 #endif /* NO_DEBUG */
169