1 1.1 pooka /* 2 1.1 pooka * dhcpcd - DHCP client daemon 3 1.1 pooka * Copyright (c) 2006-2010 Roy Marples <roy (at) marples.name> 4 1.1 pooka * All rights reserved 5 1.1 pooka 6 1.1 pooka * Redistribution and use in source and binary forms, with or without 7 1.1 pooka * modification, are permitted provided that the following conditions 8 1.1 pooka * are met: 9 1.1 pooka * 1. Redistributions of source code must retain the above copyright 10 1.1 pooka * notice, this list of conditions and the following disclaimer. 11 1.1 pooka * 2. Redistributions in binary form must reproduce the above copyright 12 1.1 pooka * notice, this list of conditions and the following disclaimer in the 13 1.1 pooka * documentation and/or other materials provided with the distribution. 14 1.1 pooka * 15 1.1 pooka * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 16 1.1 pooka * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 17 1.1 pooka * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 18 1.1 pooka * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 19 1.1 pooka * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 20 1.1 pooka * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 21 1.1 pooka * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 22 1.1 pooka * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 23 1.1 pooka * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 24 1.1 pooka * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 25 1.1 pooka * SUCH DAMAGE. 26 1.1 pooka */ 27 1.1 pooka 28 1.1 pooka #ifndef INTERFACE_H 29 1.1 pooka #define INTERFACE_H 30 1.1 pooka 31 1.1 pooka #include <sys/types.h> 32 1.1 pooka #include <sys/param.h> 33 1.1 pooka #include <sys/socket.h> 34 1.1 pooka 35 1.1 pooka #include <net/if.h> 36 1.1 pooka #include <netinet/in.h> 37 1.1 pooka #include <netinet/if_ether.h> 38 1.1 pooka 39 1.1 pooka #include <limits.h> 40 1.1 pooka 41 1.1 pooka #include "dhcp.h" 42 1.1 pooka #include "dhcpcd.h" 43 1.1 pooka 44 1.1 pooka #ifndef DUID_LEN 45 1.1 pooka # define DUID_LEN 128 + 2 46 1.1 pooka #endif 47 1.1 pooka 48 1.1 pooka #define EUI64_ADDR_LEN 8 49 1.1 pooka #define INFINIBAND_ADDR_LEN 20 50 1.1 pooka 51 1.1 pooka /* Linux 2.4 doesn't define this */ 52 1.1 pooka #ifndef ARPHRD_IEEE1394 53 1.1 pooka # define ARPHRD_IEEE1394 24 54 1.1 pooka #endif 55 1.1 pooka 56 1.1 pooka /* The BSD's don't define this yet */ 57 1.1 pooka #ifndef ARPHRD_INFINIBAND 58 1.1 pooka # define ARPHRD_INFINIBAND 32 59 1.1 pooka #endif 60 1.1 pooka 61 1.1 pooka 62 1.1 pooka /* Work out if we have a private address or not 63 1.1 pooka * 10/8 64 1.1 pooka * 172.16/12 65 1.1 pooka * 192.168/16 66 1.1 pooka */ 67 1.1 pooka #ifndef IN_PRIVATE 68 1.1 pooka # define IN_PRIVATE(addr) (((addr & IN_CLASSA_NET) == 0x0a000000) || \ 69 1.1 pooka ((addr & 0xfff00000) == 0xac100000) || \ 70 1.1 pooka ((addr & IN_CLASSB_NET) == 0xc0a80000)) 71 1.1 pooka #endif 72 1.1 pooka 73 1.1 pooka #define LINKLOCAL_ADDR 0xa9fe0000 74 1.1 pooka #define LINKLOCAL_MASK IN_CLASSB_NET 75 1.1 pooka #define LINKLOCAL_BRDC (LINKLOCAL_ADDR | ~LINKLOCAL_MASK) 76 1.1 pooka 77 1.1 pooka #ifndef IN_LINKLOCAL 78 1.1 pooka # define IN_LINKLOCAL(addr) ((addr & IN_CLASSB_NET) == LINKLOCAL_ADDR) 79 1.1 pooka #endif 80 1.1 pooka 81 1.1 pooka struct rt { 82 1.1 pooka struct in_addr dest; 83 1.1 pooka struct in_addr net; 84 1.1 pooka struct in_addr gate; 85 1.1 pooka const struct interface *iface; 86 1.1 pooka struct rt *next; 87 1.1 pooka }; 88 1.1 pooka 89 1.1 pooka extern int socket_afnet; 90 1.1 pooka 91 1.1 pooka uint32_t get_netmask(uint32_t); 92 1.1 pooka char *hwaddr_ntoa(const unsigned char *, size_t); 93 1.1 pooka size_t hwaddr_aton(unsigned char *, const char *); 94 1.1 pooka 95 1.1 pooka int getifssid(const char *, char *); 96 1.1 pooka struct interface *init_interface(const char *); 97 1.1 pooka struct interface *discover_interfaces(int, char * const *); 98 1.1 pooka void free_interface(struct interface *); 99 1.1 pooka int do_mtu(const char *, short int); 100 1.1 pooka #define get_mtu(iface) do_mtu(iface, 0) 101 1.1 pooka #define set_mtu(iface, mtu) do_mtu(iface, mtu) 102 1.1 pooka 103 1.1 pooka int inet_ntocidr(struct in_addr); 104 1.1 pooka int inet_cidrtoaddr(int, struct in_addr *); 105 1.1 pooka 106 1.1 pooka int up_interface(struct interface *); 107 1.1 pooka int if_conf(struct interface *); 108 1.1 pooka int if_init(struct interface *); 109 1.1 pooka 110 1.1 pooka int do_address(const char *, 111 1.1 pooka struct in_addr *, struct in_addr *, struct in_addr *, int); 112 1.1 pooka int if_address(const struct interface *, 113 1.1 pooka const struct in_addr *, const struct in_addr *, 114 1.1 pooka const struct in_addr *, int); 115 1.1 pooka #define add_address(iface, addr, net, brd) \ 116 1.1 pooka if_address(iface, addr, net, brd, 1) 117 1.1 pooka #define del_address(iface, addr, net) \ 118 1.1 pooka if_address(iface, addr, net, NULL, -1) 119 1.1 pooka #define has_address(iface, addr, net) \ 120 1.1 pooka do_address(iface, addr, net, NULL, 0) 121 1.1 pooka #define get_address(iface, addr, net, dst) \ 122 1.1 pooka do_address(iface, addr, net, dst, 1) 123 1.1 pooka 124 1.1 pooka int if_route(const struct interface *, const struct in_addr *, 125 1.1 pooka const struct in_addr *, const struct in_addr *, int, int); 126 1.1 pooka #define add_route(iface, dest, mask, gate, metric) \ 127 1.1 pooka if_route(iface, dest, mask, gate, metric, 1) 128 1.1 pooka #define change_route(iface, dest, mask, gate, metric) \ 129 1.1 pooka if_route(iface, dest, mask, gate, metric, 0) 130 1.1 pooka #define del_route(iface, dest, mask, gate, metric) \ 131 1.1 pooka if_route(iface, dest, mask, gate, metric, -1) 132 1.1 pooka #define del_src_route(iface, dest, mask, gate, metric) \ 133 1.1 pooka if_route(iface, dest, mask, gate, metric, -2) 134 1.1 pooka void free_routes(struct rt *); 135 1.1 pooka 136 1.1 pooka int open_udp_socket(struct interface *); 137 1.1 pooka extern const size_t udp_dhcp_len; 138 1.1 pooka ssize_t make_udp_packet(uint8_t **, const uint8_t *, size_t, 139 1.1 pooka struct in_addr, struct in_addr); 140 1.1 pooka ssize_t get_udp_data(const uint8_t **, const uint8_t *); 141 1.1 pooka int valid_udp_packet(const uint8_t *, size_t, struct in_addr *); 142 1.1 pooka 143 1.1 pooka int open_socket(struct interface *, int); 144 1.1 pooka ssize_t send_packet(const struct interface *, struct in_addr, 145 1.1 pooka const uint8_t *, ssize_t); 146 1.1 pooka ssize_t send_raw_packet(const struct interface *, int, 147 1.1 pooka const void *, ssize_t); 148 1.1 pooka ssize_t get_raw_packet(struct interface *, int, void *, ssize_t); 149 1.1 pooka 150 1.1 pooka int init_sockets(void); 151 1.1 pooka int open_link_socket(void); 152 1.1 pooka int manage_link(int); 153 1.1 pooka int carrier_status(struct interface *); 154 1.1 pooka 155 1.1 pooka int get_hwaddr(struct interface *); 156 1.1 pooka #endif 157