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>
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.
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.
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.
20 $Id: meta.c,v 1.1.2.21 2001/10/27 12:13:17 guus Exp $
29 #include <sys/signal.h>
32 /* This line must be below the rest for FreeBSD */
33 #include <sys/socket.h>
35 #include <openssl/evp.h>
38 #include "connection.h"
42 int send_meta(connection_t *c, char *buffer, int length)
46 char outbuf[MAXBUFSIZE];
48 if(debug_lvl >= DEBUG_META)
49 syslog(LOG_DEBUG, _("Sending %d bytes of metadata to %s (%s)"), length,
50 c->name, c->hostname);
52 if(c->status.encryptout)
54 EVP_EncryptUpdate(c->outctx, outbuf, &outlen, buffer, length);
61 if(write(c->socket, bufp, length) < 0)
63 syslog(LOG_ERR, _("Sending meta data to %s (%s) failed: %m"), c->name, c->hostname);
70 void broadcast_meta(connection_t *from, char *buffer, int length)
75 for(node = connection_tree->head; node; node = node->next)
77 c = (connection_t *)node->data;
78 if(c != from && c->status.active)
79 send_meta(c, buffer, length);
84 int receive_meta(connection_t *c)
90 char inbuf[MAXBUFSIZE];
92 if(getsockopt(c->socket, SOL_SOCKET, SO_ERROR, &x, &l) < 0)
94 syslog(LOG_ERR, _("This is a bug: %s:%d: %d:%m %s (%s)"), __FILE__, __LINE__, c->socket,
95 c->name, c->hostname);
100 syslog(LOG_ERR, _("Metadata socket error for %s (%s): %s"),
101 c->name, c->hostname, strerror(x));
106 - Read as much as possible from the TCP socket in one go.
108 - Check if a full request is in the input buffer.
109 - If yes, process request and remove it from the buffer,
111 - If not, keep stuff in buffer and exit.
114 lenin = read(c->socket, c->buffer + c->buflen, MAXBUFSIZE - c->buflen);
120 if(debug_lvl >= DEBUG_CONNECTIONS)
121 syslog(LOG_NOTICE, _("Connection closed by %s (%s)"),
122 c->name, c->hostname);
128 syslog(LOG_ERR, _("Metadata socket read error for %s (%s): %m"),
129 c->name, c->hostname);
141 if(c->status.decryptin && !decrypted)
143 EVP_DecryptUpdate(c->inctx, inbuf, &lenin, c->buffer + oldlen, lenin);
144 memcpy(c->buffer + oldlen, inbuf, lenin);
148 /* Are we receiving a TCPpacket? */
152 if(c->tcplen <= c->buflen)
154 receive_tcppacket(c, c->buffer, c->tcplen);
156 c->buflen -= c->tcplen;
158 memmove(c->buffer, c->buffer + c->tcplen, c->buflen);
169 /* Otherwise we are waiting for a request */
173 for(i = oldlen; i < c->buflen; i++)
175 if(c->buffer[i] == '\n')
177 c->buffer[i] = '\0'; /* replace end-of-line by end-of-string so we can use sscanf */
185 if(receive_request(c))
190 memmove(c->buffer, c->buffer + reqlen, c->buflen);
200 if(c->buflen >= MAXBUFSIZE)
202 syslog(LOG_ERR, _("Metadata read buffer overflow for %s (%s)"),
203 c->name, c->hostname);
207 c->last_ping_time = time(NULL);