- Fixing-things pass: every source file compiles into an object file now,
[tinc] / src / meta.c
1 /*
2     meta.c -- handle the meta communication
3     Copyright (C) 2000 Guus Sliepen <guus@sliepen.warande.net>,
4                   2000 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.3 2000/10/11 22:00:58 guus Exp $
21 */
22
23 #include "config.h"
24 #include <utils.h>
25
26 #include <errno.h>
27 #include <syslog.h>
28 #include <sys/signal.h>
29 #include <sys/socket.h>
30 #include <openssl/evp.h>
31
32 #include "net.h"
33 #include "system.h"
34
35 int send_meta(conn_list_t *cl, char *buffer, int length)
36 {
37   char outbuf[MAXBUFSIZE];
38   char *bufp;
39   int outlen;
40 cp
41   if(debug_lvl >= DEBUG_META)
42     syslog(LOG_DEBUG, _("Sending %d bytes of metadata to %s (%s): %s"), length,
43            cl->name, cl->hostname, buffer);
44
45   if(cl->status.encryptout)
46     {
47       EVP_EncryptUpdate(cl->cipher_outctx, outbuf, &outlen, buffer, length);
48       bufp = outbuf;
49     }
50   else
51     bufp = buffer;
52
53   if(write(cl->meta_socket, bufp, length) < 0)
54     {
55       syslog(LOG_ERR, _("Sending meta data to %s (%s) failed: %m"), cl->name, cl->hostname);
56       return -1;
57     }
58 cp
59   return 0;
60 }
61
62 int broadcast_meta(conn_list_t *cl, char *buffer, int length)
63 {
64   conn_list_t *p;
65 cp
66   for(p = conn_list; p != NULL; p = p->next)
67     if(p != cl && p->status.meta && p->status.active)
68       send_meta(p, buffer, length);
69 cp
70   return 0;
71 }
72
73 int receive_meta(conn_list_t *cl)
74 {
75   int x, l = sizeof(x);
76   int oldlen, i;
77   int lenin = 0;
78   char inbuf[MAXBUFSIZE];
79   char *bufp;
80 cp
81   if(getsockopt(cl->meta_socket, SOL_SOCKET, SO_ERROR, &x, &l) < 0)
82     {
83       syslog(LOG_ERR, _("This is a bug: %s:%d: %d:%m %s (%s)"), __FILE__, __LINE__, cl->meta_socket,
84              cl->name, cl->hostname);
85       return -1;
86     }
87   if(x)
88     {
89       syslog(LOG_ERR, _("Metadata socket error for %s (%s): %s"),
90              cl->name, cl->hostname, strerror(x));
91       return -1;
92     }
93
94   if(cl->status.decryptin)
95     bufp = inbuf;
96   else
97     bufp = cl->buffer + cl->buflen;
98
99   lenin = read(cl->meta_socket, bufp, MAXBUFSIZE - cl->buflen);
100
101   if(lenin<=0)
102     {
103       if(errno==EINTR)
104         return 0;      
105       if(errno==0)
106         {
107           if(debug_lvl>DEBUG_CONNECTIONS)
108             syslog(LOG_NOTICE, _("Connection closed by %s (%s)"),
109                 cl->name, cl->hostname);
110         }
111       else
112         syslog(LOG_ERR, _("Metadata socket read error for %s (%s): %m"),
113                cl->name, cl->hostname);
114       return -1;
115     }
116
117   if(cl->status.decryptin)
118     {
119       EVP_DecryptUpdate(cl->cipher_inctx, cl->buffer + cl->buflen, NULL, inbuf, lenin);
120     }
121     
122   oldlen = cl->buflen;
123   cl->buflen += lenin;
124
125   for(;;)
126     {
127       cl->reqlen = 0;
128
129       for(i = oldlen; i < cl->buflen; i++)
130         {
131           if(cl->buffer[i] == '\n')
132             {
133               cl->buffer[i] = 0;  /* replace end-of-line by end-of-string so we can use sscanf */
134               cl->reqlen = i + 1;
135               break;
136             }
137         }
138
139       if(cl->reqlen)
140         {
141           if(debug_lvl > DEBUG_META)
142             syslog(LOG_DEBUG, _("Got request from %s (%s): %s"),
143                    cl->name, cl->hostname, cl->buffer);
144
145           if(receive_request(cl))
146             return -1;
147
148           cl->buflen -= cl->reqlen;
149           memmove(cl->buffer, cl->buffer + cl->reqlen, cl->buflen);
150           oldlen = 0;
151         }
152       else
153         {
154           break;
155         }
156     }
157
158   if(cl->buflen >= MAXBUFSIZE)
159     {
160       syslog(LOG_ERR, _("Metadata read buffer overflow for %s (%s)"),
161              cl->name, cl->hostname);
162       return -1;
163     }
164
165   cl->last_ping_time = time(NULL);
166   cl->want_ping = 0;
167 cp  
168   return 0;
169 }