2 meta.c -- handle the meta communication
3 Copyright (C) 2014 Guus Sliepen <guus@meshlink.io>,
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.
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.
15 You should have received a copy of the GNU General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 #include "connection.h"
24 #include "meshlink_internal.h"
31 bool send_meta_sptps(void *handle, uint8_t type, const void *buffer, size_t length) {
32 connection_t *c = handle;
33 meshlink_handle_t *mesh = c->mesh;
36 logger(DEBUG_ALWAYS, LOG_ERR, "send_meta_sptps() called with NULL pointer!");
40 buffer_add(&c->outbuf, (const char *)buffer, length);
41 io_set(&mesh->loop, &c->io, IO_READ | IO_WRITE);
46 bool send_meta(meshlink_handle_t *mesh, connection_t *c, const char *buffer, int length) {
48 logger(DEBUG_ALWAYS, LOG_ERR, "send_meta() called with NULL pointer!");
52 logger(DEBUG_META, LOG_DEBUG, "Sending %d bytes of metadata to %s (%s)", length,
53 c->name, c->hostname);
55 if(c->allow_request == ID) {
56 buffer_add(&c->outbuf, buffer, length);
57 io_set(&mesh->loop, &c->io, IO_READ | IO_WRITE);
61 return sptps_send_record(&c->sptps, 0, buffer, length);
64 void broadcast_meta(meshlink_handle_t *mesh, connection_t *from, const char *buffer, int length) {
65 for list_each(connection_t, c, mesh->connections)
66 if(c != from && c->status.active)
67 send_meta(mesh, c, buffer, length);
70 bool receive_meta_sptps(void *handle, uint8_t type, const void *data, uint16_t length) {
71 connection_t *c = handle;
72 meshlink_handle_t *mesh = c->mesh;
73 char *request = (char *)data;
76 logger(DEBUG_ALWAYS, LOG_ERR, "receive_meta_sptps() called with NULL pointer!");
80 if(type == SPTPS_HANDSHAKE) {
81 if(c->allow_request == ACK)
82 return send_ack(mesh, c);
90 /* Are we receiving a TCPpacket? */
93 if(length != c->tcplen)
95 receive_tcppacket(mesh, c, request, length);
100 /* Change newline to null byte, just like non-SPTPS requests */
102 if(request[length - 1] == '\n')
103 request[length - 1] = 0;
105 /* Otherwise we are waiting for a request */
107 return receive_request(mesh, c, request);
110 bool receive_meta(meshlink_handle_t *mesh, connection_t *c) {
112 char inbuf[MAXBUFSIZE];
113 char *bufp = inbuf, *endp;
116 - Read as much as possible from the TCP socket in one go.
118 - Check if a full request is in the input buffer.
119 - If yes, process request and remove it from the buffer,
121 - If not, keep stuff in buffer and exit.
124 buffer_compact(&c->inbuf, MAXBUFSIZE);
126 if(sizeof inbuf <= c->inbuf.len) {
127 logger(DEBUG_ALWAYS, LOG_ERR, "Input buffer full for %s (%s)", c->name, c->hostname);
131 inlen = recv(c->socket, inbuf, sizeof inbuf - c->inbuf.len, 0);
134 if(!inlen || !errno) {
135 logger(DEBUG_CONNECTIONS, LOG_NOTICE, "Connection closed by %s (%s)",
136 c->name, c->hostname);
137 } else if(sockwouldblock(sockerrno))
140 logger(DEBUG_ALWAYS, LOG_ERR, "Metadata socket read error for %s (%s): %s",
141 c->name, c->hostname, sockstrerror(sockerrno));
145 if(c->allow_request == ID) {
146 endp = memchr(bufp, '\n', inlen);
152 buffer_add(&c->inbuf, bufp, endp - bufp);
154 inlen -= endp - bufp;
157 while(c->inbuf.len) {
158 char *request = buffer_readline(&c->inbuf);
160 bool result = receive_request(mesh, c, request);
172 return sptps_receive_data(&c->sptps, bufp, inlen);