EWOULDBLOCK does not exist on platforms without O_NONBLOCK
[oweals/tinc.git] / src / meta.c
1 /*
2     meta.c -- handle the meta communication
3     Copyright (C) 2000-2006 Guus Sliepen <guus@tinc-vpn.org>,
4                   2000-2005 Ivo Timmermans
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$
21 */
22
23 #include "system.h"
24
25 #include <openssl/err.h>
26 #include <openssl/evp.h>
27
28 #include "avl_tree.h"
29 #include "connection.h"
30 #include "logger.h"
31 #include "meta.h"
32 #include "net.h"
33 #include "protocol.h"
34 #include "utils.h"
35 #include "xalloc.h"
36
37 bool send_meta(connection_t *c, const char *buffer, int length)
38 {
39         int outlen;
40         int result;
41
42         cp();
43
44         ifdebug(META) logger(LOG_DEBUG, _("Sending %d bytes of metadata to %s (%s)"), length,
45                            c->name, c->hostname);
46
47         if(!c->outbuflen)
48                 c->last_flushed_time = now;
49
50         /* Find room in connection's buffer */
51         if(length + c->outbuflen > c->outbufsize) {
52                 c->outbufsize = length + c->outbuflen;
53                 c->outbuf = xrealloc(c->outbuf, c->outbufsize);
54         }
55
56         if(length + c->outbuflen + c->outbufstart > c->outbufsize) {
57                 memmove(c->outbuf, c->outbuf + c->outbufstart, c->outbuflen);
58                 c->outbufstart = 0;
59         }
60
61         /* Add our data to buffer */
62         if(c->status.encryptout) {
63                 result = EVP_EncryptUpdate(c->outctx, (unsigned char *)c->outbuf + c->outbufstart + c->outbuflen,
64                                 &outlen, (unsigned char *)buffer, length);
65                 if(!result || outlen < length) {
66                         logger(LOG_ERR, _("Error while encrypting metadata to %s (%s): %s"),
67                                         c->name, c->hostname, ERR_error_string(ERR_get_error(), NULL));
68                         return false;
69                 } else if(outlen > length) {
70                         logger(LOG_EMERG, _("Encrypted data too long! Heap corrupted!"));
71                         abort();
72                 }
73                 c->outbuflen += outlen;
74         } else {
75                 memcpy(c->outbuf + c->outbufstart + c->outbuflen, buffer, length);
76                 c->outbuflen += length;
77         }
78
79         return true;
80 }
81
82 bool flush_meta(connection_t *c)
83 {
84         int result;
85         
86         ifdebug(META) logger(LOG_DEBUG, _("Flushing %d bytes to %s (%s)"),
87                          c->outbuflen, c->name, c->hostname);
88
89         while(c->outbuflen) {
90                 result = send(c->socket, c->outbuf + c->outbufstart, c->outbuflen, 0);
91                 if(result <= 0) {
92                         if(!errno || errno == EPIPE) {
93                                 ifdebug(CONNECTIONS) logger(LOG_NOTICE, _("Connection closed by %s (%s)"),
94                                                    c->name, c->hostname);
95                         } else if(errno == EINTR) {
96                                 continue;
97 #ifdef EWOULDBLOCK
98                         } else if(errno == EWOULDBLOCK) {
99                                 ifdebug(CONNECTIONS) logger(LOG_DEBUG, _("Flushing %d bytes to %s (%s) would block"),
100                                                 c->outbuflen, c->name, c->hostname);
101                                 return true;
102 #endif
103                         } else {
104                                 logger(LOG_ERR, _("Flushing meta data to %s (%s) failed: %s"), c->name,
105                                            c->hostname, strerror(errno));
106                         }
107
108                         return false;
109                 }
110
111                 c->outbufstart += result;
112                 c->outbuflen -= result;
113         }
114
115         c->outbufstart = 0; /* avoid unnecessary memmoves */
116         return true;
117 }
118
119 void broadcast_meta(connection_t *from, const char *buffer, int length)
120 {
121         avl_node_t *node;
122         connection_t *c;
123
124         cp();
125
126         for(node = connection_tree->head; node; node = node->next) {
127                 c = node->data;
128
129                 if(c != from && c->status.active)
130                         send_meta(c, buffer, length);
131         }
132 }
133
134 bool receive_meta(connection_t *c)
135 {
136         int oldlen, i, result;
137         int lenin, lenout, reqlen;
138         bool decrypted = false;
139         char inbuf[MAXBUFSIZE];
140
141         cp();
142
143         /* Strategy:
144            - Read as much as possible from the TCP socket in one go.
145            - Decrypt it.
146            - Check if a full request is in the input buffer.
147            - If yes, process request and remove it from the buffer,
148            then check again.
149            - If not, keep stuff in buffer and exit.
150          */
151
152         lenin = recv(c->socket, c->buffer + c->buflen, MAXBUFSIZE - c->buflen, 0);
153
154         if(lenin <= 0) {
155                 if(!lenin || !errno) {
156                         ifdebug(CONNECTIONS) logger(LOG_NOTICE, _("Connection closed by %s (%s)"),
157                                            c->name, c->hostname);
158                 } else if(errno == EINTR)
159                         return true;
160                 else
161                         logger(LOG_ERR, _("Metadata socket read error for %s (%s): %s"),
162                                    c->name, c->hostname, strerror(errno));
163
164                 return false;
165         }
166
167         oldlen = c->buflen;
168         c->buflen += lenin;
169
170         while(lenin > 0) {
171                 /* Decrypt */
172
173                 if(c->status.decryptin && !decrypted) {
174                         result = EVP_DecryptUpdate(c->inctx, (unsigned char *)inbuf, &lenout, (unsigned char *)c->buffer + oldlen, lenin);
175                         if(!result || lenout != lenin) {
176                                 logger(LOG_ERR, _("Error while decrypting metadata from %s (%s): %s"),
177                                                 c->name, c->hostname, ERR_error_string(ERR_get_error(), NULL));
178                                 return false;
179                         }
180                         memcpy(c->buffer + oldlen, inbuf, lenin);
181                         decrypted = true;
182                 }
183
184                 /* Are we receiving a TCPpacket? */
185
186                 if(c->tcplen) {
187                         if(c->tcplen <= c->buflen) {
188                                 receive_tcppacket(c, c->buffer, c->tcplen);
189
190                                 c->buflen -= c->tcplen;
191                                 lenin -= c->tcplen - oldlen;
192                                 memmove(c->buffer, c->buffer + c->tcplen, c->buflen);
193                                 oldlen = 0;
194                                 c->tcplen = 0;
195                                 continue;
196                         } else {
197                                 break;
198                         }
199                 }
200
201                 /* Otherwise we are waiting for a request */
202
203                 reqlen = 0;
204
205                 for(i = oldlen; i < c->buflen; i++) {
206                         if(c->buffer[i] == '\n') {
207                                 c->buffer[i] = '\0';    /* replace end-of-line by end-of-string so we can use sscanf */
208                                 reqlen = i + 1;
209                                 break;
210                         }
211                 }
212
213                 if(reqlen) {
214                         c->reqlen = reqlen;
215                         if(!receive_request(c))
216                                 return false;
217
218                         c->buflen -= reqlen;
219                         lenin -= reqlen - oldlen;
220                         memmove(c->buffer, c->buffer + reqlen, c->buflen);
221                         oldlen = 0;
222                         continue;
223                 } else {
224                         break;
225                 }
226         }
227
228         if(c->buflen >= MAXBUFSIZE) {
229                 logger(LOG_ERR, _("Metadata read buffer overflow for %s (%s)"),
230                            c->name, c->hostname);
231                 return false;
232         }
233
234         c->last_ping_time = now;
235
236         return true;
237 }