- It's 2001, all copyright notices are updated.
[tinc] / src / meta.c
1 /*
2     meta.c -- handle the meta communication
3     Copyright (C) 2000,2001 Guus Sliepen <guus@sliepen.warande.net>,
4                   2000,2001 Ivo Timmermans <itimmermans@bigfoot.com>
5
6     This program is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with this program; if not, write to the Free Software
18     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20     $Id: meta.c,v 1.1.2.14 2001/01/07 17:08:57 guus Exp $
21 */
22
23 #include "config.h"
24 #include <utils.h>
25 #include <avl_tree.h>
26
27 #include <errno.h>
28 #include <syslog.h>
29 #include <sys/signal.h>
30 #include <unistd.h>
31 #include <string.h>
32 /* This line must be below the rest for FreeBSD */
33 #include <sys/socket.h>
34
35 #ifdef HAVE_OPENSSL_EVP_H
36 # include <openssl/evp.h>
37 #else
38 # include <evp.h>
39 #endif
40
41 #include "net.h"
42 #include "connection.h"
43 #include "system.h"
44 #include "protocol.h"
45
46 int send_meta(connection_t *cl, char *buffer, int length)
47 {
48   char outbuf[MAXBUFSIZE];
49   char *bufp;
50   int outlen;
51 cp
52   if(debug_lvl >= DEBUG_META)
53     syslog(LOG_DEBUG, _("Sending %d bytes of metadata to %s (%s): %s"), length,
54            cl->name, cl->hostname, buffer);
55
56   buffer[length-1]='\n';
57
58   if(cl->status.encryptout)
59     {
60       EVP_EncryptUpdate(cl->cipher_outctx, outbuf, &outlen, buffer, length);
61       bufp = outbuf;
62       length = outlen;
63     }
64   else
65       bufp = buffer;
66
67   if(write(cl->meta_socket, bufp, length) < 0)
68     {
69       syslog(LOG_ERR, _("Sending meta data to %s (%s) failed: %m"), cl->name, cl->hostname);
70       return -1;
71     }
72 cp
73   return 0;
74 }
75
76 void broadcast_meta(connection_t *cl, char *buffer, int length)
77 {
78   avl_node_t *node;
79   connection_t *p;
80 cp
81   for(node = connection_tree->head; node; node = node->next)
82     {
83       p = (connection_t *)node->data;
84       if(p != cl && p->status.meta && p->status.active)
85         send_meta(p, buffer, length);
86     }
87 cp
88 }
89
90 int receive_meta(connection_t *cl)
91 {
92   int x, l = sizeof(x);
93   int oldlen, i;
94   int lenin = 0;
95   char inbuf[MAXBUFSIZE];
96   char *bufp;
97 cp
98   if(getsockopt(cl->meta_socket, SOL_SOCKET, SO_ERROR, &x, &l) < 0)
99     {
100       syslog(LOG_ERR, _("This is a bug: %s:%d: %d:%m %s (%s)"), __FILE__, __LINE__, cl->meta_socket,
101              cl->name, cl->hostname);
102       return -1;
103     }
104   if(x)
105     {
106       syslog(LOG_ERR, _("Metadata socket error for %s (%s): %s"),
107              cl->name, cl->hostname, strerror(x));
108       return -1;
109     }
110
111   if(cl->status.decryptin)
112     bufp = inbuf;
113   else
114     bufp = cl->buffer + cl->buflen;
115
116   lenin = read(cl->meta_socket, bufp, MAXBUFSIZE - cl->buflen);
117
118   if(lenin<=0)
119     {
120       if(errno==EINTR)
121         return 0;      
122       if(errno==0)
123         {
124           if(debug_lvl >= DEBUG_CONNECTIONS)
125             syslog(LOG_NOTICE, _("Connection closed by %s (%s)"),
126                 cl->name, cl->hostname);
127         }
128       else
129         syslog(LOG_ERR, _("Metadata socket read error for %s (%s): %m"),
130                cl->name, cl->hostname);
131       return -1;
132     }
133
134   if(cl->status.decryptin)
135     {
136       EVP_DecryptUpdate(cl->cipher_inctx, cl->buffer + cl->buflen, &lenin, inbuf, lenin);
137     }
138
139   oldlen = cl->buflen;
140   cl->buflen += lenin;
141
142   for(;;)
143     {
144       cl->reqlen = 0;
145
146       for(i = oldlen; i < cl->buflen; i++)
147         {
148           if(cl->buffer[i] == '\n')
149             {
150               cl->buffer[i] = 0;  /* replace end-of-line by end-of-string so we can use sscanf */
151               cl->reqlen = i + 1;
152               break;
153             }
154         }
155
156       if(cl->reqlen)
157         {
158           if(debug_lvl >= DEBUG_META)
159             syslog(LOG_DEBUG, _("Got request from %s (%s): %s"),
160                    cl->name, cl->hostname, cl->buffer);
161
162           if(receive_request(cl))
163             return -1;
164
165           cl->buflen -= cl->reqlen;
166           memmove(cl->buffer, cl->buffer + cl->reqlen, cl->buflen);
167           oldlen = 0;
168         }
169       else
170         {
171           break;
172         }
173     }
174
175   if(cl->buflen >= MAXBUFSIZE)
176     {
177       syslog(LOG_ERR, _("Metadata read buffer overflow for %s (%s)"),
178              cl->name, cl->hostname);
179       return -1;
180     }
181
182   cl->last_ping_time = time(NULL);
183 cp  
184   return 0;
185 }