1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
|
/*
* routines that are Linux specific
*
* Copyright (C) 1998-2002 D. Hugh Redelmeier.
* Copyright (C) 2005-2006 Michael Richardson <mcr@xelerance.com>
* Copyright (C) 2007-2009 Paul Wouters <paul@xelerance.com>
* Copyright (C) 2008 David McCullough <david_mccullough@securecomputing.com>
* Copyright (C) 2019 Andrew Cagney <cagney@gnu.org>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. See <https://www.gnu.org/licenses/gpl2.txt>.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*/
#include <stdlib.h> /* for qsort() */
#include <linux/if_addr.h> /* for IFA_F_TENTATIVE and IFA_F_DADFAILED */
#include "ip_info.h"
#include "defs.h"
#include "log.h"
#include "kernel_iface.h"
#ifdef HAVE_BROKEN_POPEN
/*
* including this may be acceptable on a system without a working popen
* but a normal system should not need this, <errno.h> should cover it ;-)
*/
#include <asm-generic/errno.h>
#endif
/* invoke the updown script to do the routing and firewall commands required
*
* The user-specified updown script is run. Parameters are fed to it in
* the form of environment variables. All such environment variables
* have names starting with "PLUTO_".
*
* The operation to be performed is specified by PLUTO_VERB. This
* verb has a suffix "-host" if the client on this end is just the
* host; otherwise the suffix is "-client". If the address family
* of the host is IPv6, an extra suffix of "-v6" is added.
*
* "prepare-host" and "prepare-client" are used to delete a route
* that may exist (due to forces outside of Pluto). It is used to
* prepare for pluto creating a route.
*
* "route-host" and "route-client" are used to install a route.
* Since routing is based only on destination, the PLUTO_MY_CLIENT_*
* values are probably of no use (using them may signify a bug).
*
* "unroute-host" and "unroute-client" are used to delete a route.
* Since routing is based only on destination, the PLUTO_MY_CLIENT_*
* values are probably of no use (using them may signify a bug).
*
* "up-host" and "up-client" are run when an eroute is added (not replaced).
* They are useful for adjusting a firewall: usually for adding a rule
* to let processed packets flow between clients. Note that only
* one eroute may exist for a pair of client subnets but inbound
* IPsec SAs may persist without an eroute.
*
* "down-host" and "down-client" are run when an eroute is deleted.
* They are useful for adjusting a firewall.
*/
static int cmp_iface(const void *lv, const void *rv)
{
const struct kernel_iface *const *ll = lv;
const struct kernel_iface *const *rr = rv;
const struct kernel_iface *l = *ll;
const struct kernel_iface *r = *rr;
/* return l - r */
int i;
/* protocol */
i = address_info(l->addr)->af - address_info(r->addr)->af;
if (i != 0) {
return i;
}
/*
* XXX: list was filtered on specified() so 2 never
* happens?
*
* loopback=0 < addr=1 < anything-else=2
*/
#define SCORE(I) (address_is_loopback(I->addr) ? 0 \
: address_is_specified(I->addr) ? 1 \
: 2)
i = SCORE(l) - SCORE(r);
if (i != 0) {
return i;
}
#undef SCORE
/* name */
i = strcmp(l->name, r->name);
if (i != 0) {
return i;
}
/* address */
i = addrcmp(&l->addr, &r->addr);
if (i != 0) {
return i;
}
/* Interface addresses don't have ports. */
/* what else */
dbg("interface sort not stable or duplicate");
return 0;
}
static void sort_ifaces(struct kernel_iface **rifaces)
{
/* how many? */
unsigned nr_ifaces = 0;
for (struct kernel_iface *i = *rifaces; i != NULL; i = i->next) {
nr_ifaces++;
}
if (nr_ifaces == 0) {
dbg("no interfaces to sort");
return;
}
/* turn the list into an array */
struct kernel_iface **ifaces = alloc_things(struct kernel_iface *, nr_ifaces,
"ifaces for sorting");
ifaces[0] = *rifaces;
for (unsigned i = 1; i < nr_ifaces; i++) {
ifaces[i] = ifaces[i-1]->next;
}
/* sort */
dbg("sorting %u interfaces", nr_ifaces);
qsort(ifaces, nr_ifaces, sizeof(ifaces[0]), cmp_iface);
/* turn the array back into a list */
for (unsigned i = 0; i < nr_ifaces - 1; i++) {
ifaces[i]->next = ifaces[i+1];
}
ifaces[nr_ifaces-1]->next = NULL;
/* clean up and return */
*rifaces = ifaces[0];
pfree(ifaces);
}
/*
* See netdevice(7) where it documents that <<struct ifconf>> +
* <<SIOCGIFCONF>> only work on IPv4 and /proc/net/if_inet6 or
* rtnetlink(7) should be used for IPv6.
*/
struct kernel_iface *find_kernel_ifaces6(struct logger *unused_logger UNUSED)
{
/* Get list of interfaces with IPv6 addresses from system from /proc/net/if_inet6).
*
* Documentation of format?
* RTFS: linux-2.2.16/net/ipv6/addrconf.c:iface_proc_info()
* linux-2.4.9-13/net/ipv6/addrconf.c:iface_proc_info()
*
* Each line contains:
* - IPv6 address: 16 bytes, in hex, no punctuation
* - ifindex: 1-4 bytes, in hex
* - prefix_len: 1 byte, in hex
* - scope (e.g. global, link local): 1 byte, in hex
* - flags: 1 byte, in hex
* - device name: string, followed by '\n'
*/
struct kernel_iface *rifaces = NULL;
static const char proc_name[] = "/proc/net/if_inet6";
FILE *proc_sock = fopen(proc_name, "r");
if (proc_sock == NULL) {
dbg("could not open %s", proc_name);
} else {
for (;; ) {
unsigned short xb[8]; /* IPv6 address as 8 16-bit chunks */
unsigned int if_idx; /* proc field, not used */
unsigned int plen; /* proc field, not used */
unsigned int scope; /* proc field, used to exclude link-local */
unsigned int dad_status; /* proc field */
char ifname[21]; /* NOTE %20s below */
/* ??? I hate and distrust scanf -- DHR */
int r = fscanf(proc_sock,
"%4hx%4hx%4hx%4hx%4hx%4hx%4hx%4hx"
" %x %02x %02x %02x %20s\n",
xb + 0, xb + 1, xb + 2, xb + 3,
xb + 4, xb + 5, xb + 6, xb + 7,
&if_idx, &plen, &scope, &dad_status, ifname);
/* ??? we should diagnose any problems */
if (r != 13)
break;
/* ignore addresses with link local scope.
* From linux-2.4.9-13/include/net/ipv6.h:
* IPV6_ADDR_LINKLOCAL 0x0020U
* IPV6_ADDR_SCOPE_MASK 0x00f0U
*/
if ((scope & 0x00f0U) == 0x0020U)
continue;
if (dad_status & (IFA_F_TENTATIVE
#ifdef IFA_F_DADFAILED
| IFA_F_DADFAILED
#endif
))
continue;
char sb[8 * 5]; /* IPv6 address as string-with-colons */
snprintf(sb, sizeof(sb),
"%04x:%04x:%04x:%04x:%04x:%04x:%04x:%04x",
xb[0], xb[1], xb[2], xb[3], xb[4], xb[5],
xb[6], xb[7]);
ip_address ifaddr;
happy(ttoaddress_num(shunk1(sb), &ipv6_info, &ifaddr));
if (address_is_specified(ifaddr)) {
struct kernel_iface *ri =
overalloc_thing(struct kernel_iface, strlen(ifname) + 1);
ri->addr = ifaddr;
strcpy(ri->name, ifname);
ri->next = rifaces;
rifaces = ri;
address_buf ab;
dbg("found %s with address %s", ri->name, str_address(&ri->addr, &ab));
}
}
fclose(proc_sock);
/*
* Sort the list by IPv6 address in ascending order.
*
* XXX: The code then inserts these interfaces in
* _reverse_ order (why I don't know) - the loop-back
* interface ends up last. Should the insert code
* (scattered between kernel_*.c files) instead
* maintain the "interfaces" structure?
*/
sort_ifaces(&rifaces);
}
return rifaces;
}
struct kernel_iface *find_kernel_ifaces4(struct logger *logger)
{
return find_kernel_ifaces(&ipv4_info, logger);
}
|