2 netutl.c -- some supporting network utility code
3 Copyright (C) 1998,1999,2000 Ivo Timmermans <itimmermans@bigfoot.com>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 $Id: netutl.c,v 1.12.4.1 2000/06/25 15:16:12 guus Exp $
24 #include <arpa/inet.h>
26 #include <netinet/in.h>
30 #include <sys/socket.h>
44 look for a connection associated with the given vpn ip,
45 return its connection structure.
46 Skips connections that are not activated!
48 conn_list_t *lookup_conn(ip_t ip)
50 conn_list_t *p = conn_list;
52 /* Exact match suggested by James B. MacLean */
53 for(p = conn_list; p != NULL; p = p->next)
54 if((ip == p->vpn_ip) && p->status.active)
56 for(p = conn_list; p != NULL; p = p->next)
57 if(((ip & p->vpn_mask) == (p->vpn_ip & p->vpn_mask)) && p->status.active)
64 free a queue and all of its elements
66 void destroy_queue(packet_queue_t *pq)
68 queue_element_t *p, *q;
70 for(p = pq->head; p != NULL; p = q)
83 free a conn_list_t element and all its pointers
85 void free_conn_element(conn_list_t *p)
92 free_key(p->public_key);
99 remove all marked connections
101 void prune_conn_list(void)
103 conn_list_t *p, *prev = NULL, *next = NULL;
105 for(p = conn_list; p != NULL; )
116 free_conn_element(p);
127 creates new conn_list element, and initializes it
129 conn_list_t *new_conn_list(void)
131 conn_list_t *p = xmalloc(sizeof(*p));
133 /* initialise all those stupid pointers at once */
134 memset(p, '\0', sizeof(*p));
135 p->vpn_mask = (ip_t)(~0L); /* If this isn't done, it would be a
136 wastebucket for all packets with
137 unknown destination. */
144 free all elements of conn_list
146 void destroy_conn_list(void)
148 conn_list_t *p, *next;
150 for(p = conn_list; p != NULL; )
153 free_conn_element(p);
161 /* Hostlookups stink. (GS)
162 look up the name associated with the ip
165 char *hostlookup(unsigned long addr)
168 struct hostent *host = NULL;
176 if((cfg = get_config_val(resolve_dns)) != NULL)
177 if(cfg->data.val == stupid_true)
181 host = gethostbyaddr((char *)&in, sizeof(in), AF_INET);
183 if(!lookup_hostname || !host)
186 sprintf(name, "%s", inet_ntoa(in));
190 name = xmalloc(strlen(host->h_name)+20);
191 sprintf(name, "%s (%s)", host->h_name, inet_ntoa(in));
199 Turn a string into an IP addy with netmask
200 return NULL on failure
202 ip_mask_t *strtoip(char *str)
210 if((q = strchr(p, '/')))
213 q++; /* q now points to netmask part, or NULL if no mask */
216 if(!(h = gethostbyname(p)))
218 fprintf(stderr, _("Error looking up `%s': %s\n"), p, sys_errlist[h_errno]);
225 masker = strtol(q, &p, 10);
230 ip = xmalloc(sizeof(*ip));
231 ip->ip = ntohl(*((ip_t*)(h->h_addr_list[0])));
233 ip->mask = masker ? ~((1 << (32 - masker)) - 1) : 0;
238 void dump_conn_list(void)
242 syslog(LOG_DEBUG, _("Connection list:"));
244 for(p = conn_list; p != NULL; p = p->next)
246 syslog(LOG_DEBUG, " " IP_ADDR_S "/" IP_ADDR_S ": %04x (%d|%d)",
247 IP_ADDR_V(p->vpn_ip), IP_ADDR_V(p->vpn_mask), p->status,
248 p->socket, p->meta_socket);