blob: d64169b0c6355b0a9a24de1be6246fa19a9f630f [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__)
Matthieu Boutierc7c53fa2012-01-08 16:43:08 +010045#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)
Paul Jakma57345092011-12-25 17:52:09 +010049/* 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);
Matthieu Boutierd3351d12012-01-19 22:36:56 +0100114const char *format_bool(const int b);
Paul Jakma57345092011-12-25 17:52:09 +0100115int parse_address(const char *address, unsigned char *addr_r, int *af_r);
116int parse_net(const char *ifp, unsigned char *prefix_r, unsigned char *plen_r,
117 int *af_r);
118int parse_eui64(const char *eui, unsigned char *eui_r);
119int wait_for_fd(int direction, int fd, int msecs);
120int martian_prefix(const unsigned char *prefix, int plen) ATTRIBUTE ((pure));
121int linklocal(const unsigned char *address) ATTRIBUTE ((pure));
122int v4mapped(const unsigned char *address) ATTRIBUTE ((pure));
123void v4tov6(unsigned char *dst, const unsigned char *src);
124void inaddr_to_uchar(unsigned char *dest, const struct in_addr *src);
125void uchar_to_inaddr(struct in_addr *dest, const unsigned char *src);
126void in6addr_to_uchar(unsigned char *dest, const struct in6_addr *src);
127void uchar_to_in6addr(struct in6_addr *dest, const unsigned char *src);
128int 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
140static 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, ...) \
156do { \
157if(UNLIKELY(debug & level)) do_debugf(__VA_ARGS__); \
158} while(0)
159#elif defined __GNUC__
160#define debugf(level, _args...) \
161do { \
162if(UNLIKELY(debug & level)) do_debugf(_args); \
163} while(0)
164#else
165static inline void debugf(int level, const char *format, ...) { return; }
166#endif
167
168#endif /* NO_DEBUG */
169