blob: f1817983ee433abf28acfaf75ddb7ea5e78f8642 [file] [log] [blame]
The Android Open Source Projectf7c54212009-03-03 19:29:22 -08001/*
2 * dhcpcd - DHCP client daemon
Dmitry Shmidta3a22602012-07-23 16:45:46 -07003 * Copyright (c) 2006-2011 Roy Marples <roy@marples.name>
The Android Open Source Projectf7c54212009-03-03 19:29:22 -08004 * All rights reserved
5
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 */
27
28#ifndef INTERFACE_H
29#define INTERFACE_H
30
31#include <sys/types.h>
32#include <sys/param.h>
33#include <sys/socket.h>
34
35#include <net/if.h>
36#include <netinet/in.h>
37#include <netinet/if_ether.h>
38
39#include <limits.h>
40
41#include "config.h"
Dmitry Shmidte86eee12011-01-24 16:27:51 -080042#include "dhcp.h"
43#include "dhcpcd.h"
The Android Open Source Projectf7c54212009-03-03 19:29:22 -080044
45#ifndef DUID_LEN
46# define DUID_LEN 128 + 2
47#endif
48
49#define EUI64_ADDR_LEN 8
50#define INFINIBAND_ADDR_LEN 20
51
52/* Linux 2.4 doesn't define this */
53#ifndef ARPHRD_IEEE1394
54# define ARPHRD_IEEE1394 24
55#endif
56
57/* The BSD's don't define this yet */
58#ifndef ARPHRD_INFINIBAND
59# define ARPHRD_INFINIBAND 32
60#endif
61
The Android Open Source Projectf7c54212009-03-03 19:29:22 -080062
63/* Work out if we have a private address or not
64 * 10/8
65 * 172.16/12
66 * 192.168/16
67 */
68#ifndef IN_PRIVATE
Dmitry Shmidte86eee12011-01-24 16:27:51 -080069# define IN_PRIVATE(addr) (((addr & IN_CLASSA_NET) == 0x0a000000) || \
70 ((addr & 0xfff00000) == 0xac100000) || \
71 ((addr & IN_CLASSB_NET) == 0xc0a80000))
The Android Open Source Projectf7c54212009-03-03 19:29:22 -080072#endif
73
74#define LINKLOCAL_ADDR 0xa9fe0000
75#define LINKLOCAL_MASK IN_CLASSB_NET
76#define LINKLOCAL_BRDC (LINKLOCAL_ADDR | ~LINKLOCAL_MASK)
77
78#ifndef IN_LINKLOCAL
79# define IN_LINKLOCAL(addr) ((addr & IN_CLASSB_NET) == LINKLOCAL_ADDR)
80#endif
81
The Android Open Source Projectf7c54212009-03-03 19:29:22 -080082struct rt {
83 struct in_addr dest;
84 struct in_addr net;
85 struct in_addr gate;
Dmitry Shmidte86eee12011-01-24 16:27:51 -080086 const struct interface *iface;
Dmitry Shmidta3a22602012-07-23 16:45:46 -070087 int metric;
88 struct in_addr src;
The Android Open Source Projectf7c54212009-03-03 19:29:22 -080089 struct rt *next;
90};
91
Dmitry Shmidte86eee12011-01-24 16:27:51 -080092extern int socket_afnet;
The Android Open Source Projectf7c54212009-03-03 19:29:22 -080093
94uint32_t get_netmask(uint32_t);
95char *hwaddr_ntoa(const unsigned char *, size_t);
96size_t hwaddr_aton(unsigned char *, const char *);
97
Dmitry Shmidte86eee12011-01-24 16:27:51 -080098int getifssid(const char *, char *);
99struct interface *init_interface(const char *);
100struct interface *discover_interfaces(int, char * const *);
101void free_interface(struct interface *);
The Android Open Source Projectf7c54212009-03-03 19:29:22 -0800102int do_mtu(const char *, short int);
103#define get_mtu(iface) do_mtu(iface, 0)
104#define set_mtu(iface, mtu) do_mtu(iface, mtu)
105
106int inet_ntocidr(struct in_addr);
107int inet_cidrtoaddr(int, struct in_addr *);
108
Dmitry Shmidte86eee12011-01-24 16:27:51 -0800109int up_interface(struct interface *);
110int if_conf(struct interface *);
111int if_init(struct interface *);
The Android Open Source Projectf7c54212009-03-03 19:29:22 -0800112
Dmitry Shmidte86eee12011-01-24 16:27:51 -0800113int do_address(const char *,
114 struct in_addr *, struct in_addr *, struct in_addr *, int);
115int if_address(const struct interface *,
116 const struct in_addr *, const struct in_addr *,
117 const struct in_addr *, int);
118#define add_address(iface, addr, net, brd) \
119 if_address(iface, addr, net, brd, 1)
120#define del_address(iface, addr, net) \
121 if_address(iface, addr, net, NULL, -1)
122#define has_address(iface, addr, net) \
123 do_address(iface, addr, net, NULL, 0)
124#define get_address(iface, addr, net, dst) \
125 do_address(iface, addr, net, dst, 1)
126
Dmitry Shmidta3a22602012-07-23 16:45:46 -0700127int if_route(const struct rt *rt, int);
128#define add_route(rt) if_route(rt, 1)
129#define change_route(rt) if_route(rt, 0)
130#define del_route(rt) if_route(rt, -1)
131#define del_src_route(rt) if_route(rt, -2);
The Android Open Source Projectf7c54212009-03-03 19:29:22 -0800132void free_routes(struct rt *);
133
134int open_udp_socket(struct interface *);
Dmitry Shmidte86eee12011-01-24 16:27:51 -0800135extern const size_t udp_dhcp_len;
The Android Open Source Projectf7c54212009-03-03 19:29:22 -0800136ssize_t make_udp_packet(uint8_t **, const uint8_t *, size_t,
Dmitry Shmidte86eee12011-01-24 16:27:51 -0800137 struct in_addr, struct in_addr);
The Android Open Source Projectf7c54212009-03-03 19:29:22 -0800138ssize_t get_udp_data(const uint8_t **, const uint8_t *);
Dmitry Shmidta3a22602012-07-23 16:45:46 -0700139int valid_udp_packet(const uint8_t *, size_t, struct in_addr *, int);
The Android Open Source Projectf7c54212009-03-03 19:29:22 -0800140
141int open_socket(struct interface *, int);
142ssize_t send_packet(const struct interface *, struct in_addr,
Dmitry Shmidte86eee12011-01-24 16:27:51 -0800143 const uint8_t *, ssize_t);
The Android Open Source Projectf7c54212009-03-03 19:29:22 -0800144ssize_t send_raw_packet(const struct interface *, int,
Dmitry Shmidte86eee12011-01-24 16:27:51 -0800145 const void *, ssize_t);
Dmitry Shmidta3a22602012-07-23 16:45:46 -0700146ssize_t get_raw_packet(struct interface *, int, void *, ssize_t, int *);
The Android Open Source Projectf7c54212009-03-03 19:29:22 -0800147
Dmitry Shmidte86eee12011-01-24 16:27:51 -0800148int init_sockets(void);
149int open_link_socket(void);
150int manage_link(int);
151int carrier_status(struct interface *);
The Android Open Source Projectf7c54212009-03-03 19:29:22 -0800152#endif