summaryrefslogtreecommitdiff
path: root/src/starter/interfaces.c
blob: de79e2da11365b2c57e138894bd19b3706d70847 (plain)
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
/* strongSwan IPsec interfaces management
 * Copyright (C) 2001-2002 Mathieu Lafon - Arkoon Network Security
 *
 * 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 <http://www.fsf.org/copyleft/gpl.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 <sys/socket.h>
#include <sys/ioctl.h>
#include <sys/types.h>
#ifdef HAVE_SYS_SOCKIO_H
#include <sys/sockio.h>
#endif

#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <errno.h>

#include <freeswan.h>

#include <constants.h>
#include <defs.h>
#include <log.h>

#include "interfaces.h"
#include "exec.h"
#include "files.h"

const char* IP_ROUTE = "ip route show table default 0.0.0.0/0";

/*
 * discover the default route via /proc/net/route
 */
void
get_defaultroute(defaultroute_t *defaultroute)
{
	FILE *fd;
	char line[BUF_LEN];
	bool first = TRUE;

	memset(defaultroute, 0, sizeof(defaultroute_t));

	fd = fopen("/proc/net/route", "r");

	if (!fd)
	{
		plog("could not open 'proc/net/route'");
		return;
	}

	while (fgets(line, sizeof(line), fd) != 0)
	{
		char iface[11];
		char destination[9];
		char gateway[11];
		char flags[5];
		char mask[9];

		int refcnt;
		int use;
		int metric;
		int items;

		/* proc/net/route returns IP addresses in host order */
		strcpy(gateway, "0h");

		/* skip the header line */
		if (first)
		{
			first = FALSE;
			continue;
		}

		/* parsing a single line of proc/net/route */
		items = sscanf(line, "%10s\t%8s\t%8s\t%5s\t%d\t%d\t%d\t%8s\t"
					 , iface, destination, gateway+2, flags, &refcnt, &use, &metric, mask);
		if (items < 8)
		{
			plog("parsing error while scanning /proc/net/route");
			continue;
		}

		/* check for defaultroute (destination 0.0.0.0 and mask 0.0.0.0) */
		if (streq(destination, "00000000") && streq(mask, "00000000"))
		{
			if (defaultroute->defined)
			{
				plog("multiple default routes - cannot cope with %%defaultroute!!!");
				defaultroute->defined = FALSE;
				fclose(fd);
				return;
			}
			ttoaddr(gateway, strlen(gateway), AF_INET, &defaultroute->nexthop);
			strncpy(defaultroute->iface, iface, IFNAMSIZ);
			defaultroute->defined = TRUE;
		}
	}
	fclose(fd);
	
	/* If there is no default route in the "main" table, also look at the "default" one. */
	if (!defaultroute->defined)
	{
		plog("no default route in table 'main', checking table 'default' instead");
		
		pid_t pid;
		int rv;
		int commpipe[2];		/* This holds the fd for the input & output of the pipe */

		/* Setup communication pipeline first */
		if (pipe(commpipe))
		{
			plog("unable to open pipe to execute '%s' command", IP_ROUTE);
		}
		else 
		{
			/* Attempt to fork and check for errors */
			if( (pid=fork()) == -1)
			{
				plog("unable to fork process, this should not happen");
			}
			else if (pid)
			{
				close(commpipe[1]);		/* Close unused side of pipe (out side from this process) */
				setvbuf(stdout,(char*)NULL,_IONBF,0);	/* Set non-buffered output on stdout */
				wait(&rv);				/* Wait for child process to end */
				if (rv != 0)
					plog("'%s' command exited with code %d", IP_ROUTE, rv);
				else 
				{
					/* parse the output - it should only be one line */
					while (fgets(line, sizeof(line), commpipe[0]) != 0)
					{
						char destination[19];
						char buf1[4], buf2[4];
						char gateway[16];
						char iface[11];

						/* parsing a single line of the output */
						items = sscanf(line, "%s %s %s %s %s",
							destination, buf1, gateway, buf2, iface);
						if (items < 5)
						{
							plog("parsing error while scanning 'ip route' output");
							continue;
						}
						
						if (streq(destination, "default") 
						{
							if (defaultroute->defined)
							{
								plog("multiple default routes in table 'default' - cannot cope with %%defaultroute!!!");
								defaultroute->defined = FALSE;
								close(commpipe[0]);
								return;
						}
						
						ttoaddr(gateway, strlen(gateway), AF_INET, &defaultroute->nexthop);
						strncpy(defaultroute->iface, iface, IFNAMSIZ);
						defaultroute->defined = TRUE;
					}
				}
				close(commpipe[0]);
			}
			else
			{
				/* A zero PID indicates that this is the child process */
				dup2(commpipe[0],0);	/* Replace stdin with the in side of the pipe */
				close(commpipe[1]);		/* Close unused side of pipe (out side) */
				/* Replace the child fork with a new process */
				if(execl("ip", IP_ROUTE, NULL) == -1){
					plog("unable to execute '%s' command", IP_ROUTE);
				}
			}
		}
	}

	if (!defaultroute->defined)
	{
		plog("no default route - cannot cope with %%defaultroute!!!");
	}
	else
	{
		char addr_buf[20], nexthop_buf[20];
		struct ifreq physreq;

		int sock = socket(AF_INET, SOCK_DGRAM, 0);

		/* determine IP address of iface */
		if (sock < 0)
		{
			plog("could not open SOCK_DGRAM socket");
			defaultroute->defined = FALSE;
			return;
		}
		memset ((void*)&physreq, 0, sizeof(physreq));
		strncpy(physreq.ifr_name, defaultroute->iface, IFNAMSIZ);
		ioctl(sock, SIOCGIFADDR, &physreq);
		close(sock);
		defaultroute->addr.u.v4 = *((struct sockaddr_in *)&physreq.ifr_addr);

		addrtot(&defaultroute->addr, 0, addr_buf, sizeof(addr_buf));
		addrtot(&defaultroute->nexthop, 0, nexthop_buf, sizeof(nexthop_buf));

		DBG(DBG_CONTROL,
			DBG_log("Default route found: iface=%s, addr=%s, nexthop=%s"
				, defaultroute->iface, addr_buf, nexthop_buf)
		)

		/* for backwards-compatibility with the awk shell scripts
		 * store the defaultroute in /var/run/ipsec.info
		 */
		fd = fopen(INFO_FILE, "w");

		if (fd)
		{
			fprintf(fd, "defaultroutephys=%s\n", defaultroute->iface );
			fprintf(fd, "defaultroutevirt=ipsec0\n");
			fprintf(fd, "defaultrouteaddr=%s\n", addr_buf);
			fprintf(fd, "defaultroutenexthop=%s\n", nexthop_buf);
			fclose(fd);
		}
	}
	return;
}