blob: 59f78abcf1483b8fb3e1541074d15d6fb866b93a [file] [log] [blame]
Daniel Drowna45056e2012-03-23 10:42:54 -05001/*
2 * Copyright 2011 Daniel Drown
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 *
Lorenzo Colittieb92f482019-01-04 14:59:11 +090016 * clatd.h - main routines used by clatd
Daniel Drowna45056e2012-03-23 10:42:54 -050017 */
18#ifndef __CLATD_H__
19#define __CLATD_H__
20
Maciej Żenczykowski8ab7e132021-02-03 17:15:41 -080021#include <signal.h>
Maciej Żenczykowski716518d2019-04-08 17:46:48 -070022#include <stdlib.h>
Lorenzo Colitti6b2007a2014-12-08 12:53:05 +090023#include <sys/uio.h>
24
Lorenzo Colittieb92f482019-01-04 14:59:11 +090025struct tun_data;
26
Maciej Żenczykowski97de3342023-01-18 17:36:22 +000027// IPv4 header has a u16 total length field, for maximum L3 mtu of 0xFFFF.
28//
29// Translating IPv4 to IPv6 requires removing the IPv4 header (20) and adding
30// an IPv6 header (40), possibly with an extra ipv6 fragment extension header (8).
31//
32// As such the maximum IPv4 L3 mtu size is 0xFFFF (by u16 tot_len field)
33// and the maximum IPv6 L3 mtu size is 0xFFFF + 28 (which is larger)
34//
35// A received non-jumbogram IPv6 frame could potentially be u16 payload_len = 0xFFFF
36// + sizeof ipv6 header = 40, bytes in size. But such a packet cannot be meaningfully
37// converted to IPv4 (it's too large). As such the restriction is the same: 0xFFFF + 28
38//
39// (since there's no jumbogram support in IPv4, IPv6 jumbograms cannot be meaningfully
40// converted to IPv4 anyway, and are thus entirely unsupported)
Maciej Żenczykowskif3eeff92023-03-13 21:50:01 +000041#define MAXMTU (0xFFFF + 28)
Maciej Żenczykowskibea3f7f2023-01-30 22:29:59 +000042
Maciej Żenczykowskif3eeff92023-03-13 21:50:01 +000043// logcat_hexdump() maximum binary data length, this is the maximum packet size
44// plus some extra space for various headers:
45// struct tun_pi (4 bytes)
46// struct virtio_net_hdr (10 bytes)
47// ethernet (14 bytes), potentially including vlan tag (4) or tags (8 or 12)
48// plus some extra just-in-case headroom, because it doesn't hurt.
49#define MAXDUMPLEN (64 + MAXMTU)
Maciej Żenczykowskibea3f7f2023-01-30 22:29:59 +000050
Maciej Żenczykowski88cb78e2023-01-30 22:30:55 +000051#define CLATD_VERSION "1.6"
Daniel Drowna45056e2012-03-23 10:42:54 -050052
Lorenzo Colittidce3ddf2014-08-25 16:07:12 -070053#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
54
Daniel Drowna45056e2012-03-23 10:42:54 -050055// how frequently (in seconds) to poll for an address change while traffic is passing
56#define INTERFACE_POLL_FREQUENCY 30
57
58// how frequently (in seconds) to poll for an address change while there is no traffic
59#define NO_TRAFFIC_INTERFACE_POLL_FREQUENCY 90
60
Maciej Żenczykowski8ab7e132021-02-03 17:15:41 -080061extern volatile sig_atomic_t running;
62
Lorenzo Colittieb92f482019-01-04 14:59:11 +090063int ipv6_address_changed(const char *interface);
Lorenzo Colittieb92f482019-01-04 14:59:11 +090064void event_loop(struct tun_data *tunnel);
Maciej Żenczykowski716518d2019-04-08 17:46:48 -070065
66/* function: parse_int
67 * parses a string as a decimal/hex/octal signed integer
68 * str - the string to parse
69 * out - the signed integer to write to, gets clobbered on failure
70 */
71static inline int parse_int(const char *str, int *out) {
72 char *end_ptr;
73 *out = strtol(str, &end_ptr, 0);
74 return *str && !*end_ptr;
75}
76
77/* function: parse_unsigned
78 * parses a string as a decimal/hex/octal unsigned integer
79 * str - the string to parse
80 * out - the unsigned integer to write to, gets clobbered on failure
81 */
82static inline int parse_unsigned(const char *str, unsigned *out) {
83 char *end_ptr;
84 *out = strtoul(str, &end_ptr, 0);
85 return *str && !*end_ptr;
86}
Lorenzo Colitti6b2007a2014-12-08 12:53:05 +090087
Daniel Drowna45056e2012-03-23 10:42:54 -050088#endif /* __CLATD_H__ */