Miscellaneous copyright updates.
[tinc] / src / netutl.c
1 /*
2     netutl.c -- some supporting network utility code
3     Copyright (C) 1998,1999,2000 Ivo Timmermans <itimmermans@bigfoot.com>
4
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.
9
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.
14
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.
18
19     $Id: netutl.c,v 1.12 2000/05/31 18:23:06 zarq Exp $
20 */
21
22 #include "config.h"
23
24 #include <arpa/inet.h>
25 #include <netdb.h>
26 #include <netinet/in.h>
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <string.h>
30 #include <sys/socket.h>
31 #include <syslog.h>
32
33 #include <utils.h>
34 #include <xalloc.h>
35
36 #include "conf.h"
37 #include "encr.h"
38 #include "net.h"
39 #include "netutl.h"
40
41 #include "system.h"
42
43 /*
44   look for a connection associated with the given vpn ip,
45   return its connection structure.
46   Skips connections that are not activated!
47 */
48 conn_list_t *lookup_conn(ip_t ip)
49 {
50   conn_list_t *p = conn_list;
51 cp
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)
55       return p;
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)
58       return p;
59 cp
60   return NULL;
61 }
62
63 /*
64   free a queue and all of its elements
65 */
66 void destroy_queue(packet_queue_t *pq)
67 {
68   queue_element_t *p, *q;
69 cp
70   for(p = pq->head; p != NULL; p = q)
71     {
72       q = p->next;
73       if(p->packet)
74         free(p->packet);
75       free(p);
76     }
77
78   free(pq);
79 cp
80 }
81
82 /*
83   free a conn_list_t element and all its pointers
84 */
85 void free_conn_element(conn_list_t *p)
86 {
87 cp
88   if(p->hostname)
89     free(p->hostname);
90   if(p->sq)
91     destroy_queue(p->sq);
92   if(p->rq)
93     destroy_queue(p->rq);
94   free_key(p->public_key);
95   free_key(p->key);
96   free(p);
97 cp
98 }
99
100 /*
101   remove all marked connections
102 */
103 void prune_conn_list(void)
104 {
105   conn_list_t *p, *prev = NULL, *next = NULL;
106 cp
107   for(p = conn_list; p != NULL; )
108     {
109       next = p->next;
110
111       if(p->status.remove)
112         {
113           if(prev)
114             prev->next = next;
115           else
116             conn_list = next;
117
118           free_conn_element(p);
119         }
120       else
121         prev = p;
122
123       p = next;
124     }
125 cp
126 }
127
128 /*
129   creates new conn_list element, and initializes it
130 */
131 conn_list_t *new_conn_list(void)
132 {
133   conn_list_t *p = xmalloc(sizeof(*p));
134 cp
135   /* initialise all those stupid pointers at once */
136   memset(p, '\0', sizeof(*p));
137   p->vpn_mask = (ip_t)(~0L); /* If this isn't done, it would be a
138                                 wastebucket for all packets with
139                                 unknown destination. */
140   p->nexthop = p;
141 cp
142   return p;
143 }
144
145 /*
146   free all elements of conn_list
147 */
148 void destroy_conn_list(void)
149 {
150   conn_list_t *p, *next;
151 cp
152   for(p = conn_list; p != NULL; )
153     {
154       next = p->next;
155       free_conn_element(p);
156       p = next;
157     }
158
159   conn_list = NULL;
160 cp
161 }
162
163 /*
164   look up the name associated with the ip
165   address `addr'
166 */
167 char *hostlookup(unsigned long addr)
168 {
169   char *name;
170   struct hostent *host = NULL;
171   struct in_addr in;
172   config_t const *cfg;
173   int lookup_hostname;
174 cp
175   in.s_addr = addr;
176
177   lookup_hostname = 0;
178   if((cfg = get_config_val(resolve_dns)) != NULL)
179     if(cfg->data.val == stupid_true)
180       lookup_hostname = 1;
181
182   if(lookup_hostname)
183     host = gethostbyaddr((char *)&in, sizeof(in), AF_INET);
184
185   if(!lookup_hostname || !host)
186     {
187       name = xmalloc(20);
188       sprintf(name, "%s", inet_ntoa(in));
189     }
190   else
191     {
192       name = xmalloc(strlen(host->h_name)+20);
193       sprintf(name, "%s (%s)", host->h_name, inet_ntoa(in));
194     }
195 cp
196   return name;
197 }
198
199 /*
200   Turn a string into an IP addy with netmask
201   return NULL on failure
202 */
203 ip_mask_t *strtoip(char *str)
204 {
205   ip_mask_t *ip;
206   int masker;
207   char *q, *p;
208   struct hostent *h;
209 cp
210   p = str;
211   if((q = strchr(p, '/')))
212     {
213       *q = '\0';
214       q++; /* q now points to netmask part, or NULL if no mask */
215     }
216
217   if(!(h = gethostbyname(p)))
218     {
219       fprintf(stderr, _("Error looking up `%s': %s\n"), p, sys_errlist[h_errno]);
220       return NULL;
221     }
222
223   masker = 0;
224   if(q)
225     {
226       masker = strtol(q, &p, 10);
227       if(q == p || (*p))
228         return NULL;
229     }
230
231   ip = xmalloc(sizeof(*ip));
232   ip->ip = ntohl(*((ip_t*)(h->h_addr_list[0])));
233
234   ip->mask = masker ? ~((1 << (32 - masker)) - 1) : 0;
235 cp
236   return ip;
237 }
238
239 void dump_conn_list(void)
240 {
241   conn_list_t *p;
242 cp
243   syslog(LOG_DEBUG, _("Connection list:"));
244
245   for(p = conn_list; p != NULL; p = p->next)
246     {
247       syslog(LOG_DEBUG, " " IP_ADDR_S "/" IP_ADDR_S ": %04x (%d|%d)",
248              IP_ADDR_V(p->vpn_ip), IP_ADDR_V(p->vpn_mask), p->status,
249              p->socket, p->meta_socket);
250     }
251 cp
252 }