blob: d653b613ef1e347ccbeab20fa3ba17ff03a98cf4 [file] [log] [blame]
Paul Jakma57345092011-12-25 17:52:09 +01001/*
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 *
18Copyright (c) 2007, 2008 by Juliusz Chroboczek
19Copyright 2011 by Matthieu Boutier and Juliusz Chroboczek
20
21Permission is hereby granted, free of charge, to any person obtaining a copy
22of this software and associated documentation files (the "Software"), to deal
23in the Software without restriction, including without limitation the rights
24to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25copies of the Software, and to permit persons to whom the Software is
26furnished to do so, subject to the following conditions:
27
28The above copyright notice and this permission notice shall be included in
29all copies or substantial portions of the Software.
30
31THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
32IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
33FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
34AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
35LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
36OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
37THE 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(*(unsigned short*)(_s)); } while(0)
46#define DO_NTOHL(_d, _s) do { _d = ntohl(*(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
53struct __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
69static inline int
70seqno_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
78static inline short
79seqno_minus(unsigned short s1, unsigned short s2)
80{
81 return (short)((s1 - s2) & 0xFFFF);
82}
83
84static inline unsigned short
85seqno_plus(unsigned short s, int plus)
86{
87 return ((s + plus) & 0xFFFF);
88}
89
90unsigned roughly(unsigned value);
91void timeval_minus(struct timeval *d,
92 const struct timeval *s1, const struct timeval *s2);
93unsigned timeval_minus_msec(const struct timeval *s1, const struct timeval *s2)
94 ATTRIBUTE ((pure));
95void timeval_add_msec(struct timeval *d,
96 const struct timeval *s, const int msecs);
97void set_timeout (struct timeval *timeout, int msecs);
98int timeval_compare(const struct timeval *s1, const struct timeval *s2)
99 ATTRIBUTE ((pure));
100void timeval_min(struct timeval *d, const struct timeval *s);
101void timeval_min_sec(struct timeval *d, time_t secs);
102int parse_msec(const char *string) ATTRIBUTE ((pure));
103void do_debugf(const char *format, ...)
104 ATTRIBUTE ((format (printf, 1, 2))) COLD;
105int in_prefix(const unsigned char *restrict address,
106 const unsigned char *restrict prefix, unsigned char plen)
107 ATTRIBUTE ((pure));
108unsigned char *mask_prefix(unsigned char *restrict ret,
109 const unsigned char *restrict prefix,
110 unsigned char plen);
111const char *format_address(const unsigned char *address);
112const char *format_prefix(const unsigned char *address, unsigned char prefix);
113const char *format_eui64(const unsigned char *eui);
114int parse_address(const char *address, unsigned char *addr_r, int *af_r);
115int parse_net(const char *ifp, unsigned char *prefix_r, unsigned char *plen_r,
116 int *af_r);
117int parse_eui64(const char *eui, unsigned char *eui_r);
118int wait_for_fd(int direction, int fd, int msecs);
119int martian_prefix(const unsigned char *prefix, int plen) ATTRIBUTE ((pure));
120int linklocal(const unsigned char *address) ATTRIBUTE ((pure));
121int v4mapped(const unsigned char *address) ATTRIBUTE ((pure));
122void v4tov6(unsigned char *dst, const unsigned char *src);
123void inaddr_to_uchar(unsigned char *dest, const struct in_addr *src);
124void uchar_to_inaddr(struct in_addr *dest, const unsigned char *src);
125void in6addr_to_uchar(unsigned char *dest, const struct in6_addr *src);
126void uchar_to_in6addr(struct in6_addr *dest, const unsigned char *src);
127int daemonise(void);
128
129/* If debugging is disabled, we want to avoid calling format_address
130 for every omitted debugging message. So debug is a macro. But
131 vararg macros are not portable. */
132#if defined NO_DEBUG
133
134#if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L
135#define debugf(...) do {} while(0)
136#elif defined __GNUC__
137#define debugf(_args...) do {} while(0)
138#else
139static inline void debugf(int level, const char *format, ...) { return; }
140#endif
141
142#else /* NO_DEBUG */
143
144/* some levels */
145#define BABEL_DEBUG_COMMON (1 << 0)
146#define BABEL_DEBUG_KERNEL (1 << 1)
147#define BABEL_DEBUG_FILTER (1 << 2)
148#define BABEL_DEBUG_TIMEOUT (1 << 3)
149#define BABEL_DEBUG_IF (1 << 4)
150#define BABEL_DEBUG_ROUTE (1 << 5)
151#define BABEL_DEBUG_ALL (0xFFFF)
152
153#if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L
154#define debugf(level, ...) \
155do { \
156if(UNLIKELY(debug & level)) do_debugf(__VA_ARGS__); \
157} while(0)
158#elif defined __GNUC__
159#define debugf(level, _args...) \
160do { \
161if(UNLIKELY(debug & level)) do_debugf(_args); \
162} while(0)
163#else
164static inline void debugf(int level, const char *format, ...) { return; }
165#endif
166
167#endif /* NO_DEBUG */
168