2011-12-21 09:55:05 +00:00
|
|
|
/*
|
|
|
|
Serval Distributed Numbering Architecture (DNA)
|
|
|
|
Copyright (C) 2010 Paul Gardner-Stephen
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
2011-12-21 05:58:08 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
2011-12-22 11:28:18 +00:00
|
|
|
#include <signal.h>
|
2012-09-05 09:23:22 +00:00
|
|
|
#ifdef HAVE_SYS_FILIO_H
|
|
|
|
#include <sys/filio.h>
|
|
|
|
#endif
|
2013-10-16 07:55:58 +00:00
|
|
|
#include <assert.h>
|
2011-12-21 05:58:08 +00:00
|
|
|
|
2012-02-23 02:15:42 +00:00
|
|
|
#include "serval.h"
|
2013-02-15 05:02:13 +00:00
|
|
|
#include "overlay_address.h"
|
2012-12-11 05:29:46 +00:00
|
|
|
#include "conf.h"
|
2012-08-06 02:55:45 +00:00
|
|
|
#include "str.h"
|
2013-11-07 13:10:56 +00:00
|
|
|
#include "strbuf_helpers.h"
|
2011-12-21 05:58:08 +00:00
|
|
|
#include "rhizome.h"
|
2013-10-16 07:55:58 +00:00
|
|
|
#include "http_server.h"
|
|
|
|
|
2012-07-02 03:49:54 +00:00
|
|
|
#define RHIZOME_SERVER_MAX_LIVE_REQUESTS 32
|
|
|
|
|
2013-10-29 07:02:04 +00:00
|
|
|
typedef int HTTP_HANDLER(rhizome_http_request *r, const char *remainder);
|
|
|
|
|
2013-10-16 07:55:58 +00:00
|
|
|
struct http_handler{
|
|
|
|
const char *path;
|
2013-10-29 07:02:04 +00:00
|
|
|
HTTP_HANDLER *parser;
|
2013-10-16 07:55:58 +00:00
|
|
|
};
|
2012-07-02 05:50:30 +00:00
|
|
|
|
2013-10-29 07:02:04 +00:00
|
|
|
static HTTP_HANDLER restful_rhizome_bundlelist_json;
|
|
|
|
|
|
|
|
static HTTP_HANDLER rhizome_status_page;
|
|
|
|
static HTTP_HANDLER rhizome_file_page;
|
|
|
|
static HTTP_HANDLER manifest_by_prefix_page;
|
|
|
|
static HTTP_HANDLER interface_page;
|
|
|
|
static HTTP_HANDLER neighbour_page;
|
|
|
|
static HTTP_HANDLER fav_icon_header;
|
|
|
|
static HTTP_HANDLER root_page;
|
2013-10-16 07:55:58 +00:00
|
|
|
|
2013-10-29 07:02:04 +00:00
|
|
|
extern HTTP_HANDLER rhizome_direct_import;
|
|
|
|
extern HTTP_HANDLER rhizome_direct_enquiry;
|
|
|
|
extern HTTP_HANDLER rhizome_direct_dispatch;
|
2013-10-16 07:55:58 +00:00
|
|
|
|
|
|
|
struct http_handler paths[]={
|
2013-10-29 07:02:04 +00:00
|
|
|
{"/restful/rhizome/bundlelist.json", restful_rhizome_bundlelist_json},
|
2013-10-16 07:55:58 +00:00
|
|
|
{"/rhizome/status", rhizome_status_page},
|
|
|
|
{"/rhizome/file/", rhizome_file_page},
|
|
|
|
{"/rhizome/import", rhizome_direct_import},
|
|
|
|
{"/rhizome/enquiry", rhizome_direct_enquiry},
|
|
|
|
{"/rhizome/manifestbyprefix/", manifest_by_prefix_page},
|
|
|
|
{"/rhizome/", rhizome_direct_dispatch},
|
|
|
|
{"/interface/", interface_page},
|
|
|
|
{"/neighbour/", neighbour_page},
|
|
|
|
{"/favicon.ico", fav_icon_header},
|
|
|
|
{"/", root_page},
|
|
|
|
};
|
|
|
|
|
|
|
|
static int rhizome_dispatch(struct http_request *hr)
|
|
|
|
{
|
|
|
|
rhizome_http_request *r = (rhizome_http_request *) hr;
|
|
|
|
INFOF("RHIZOME HTTP SERVER, %s %s", r->http.verb, r->http.path);
|
|
|
|
r->http.response.content_generator = NULL;
|
|
|
|
unsigned i;
|
|
|
|
for (i = 0; i < NELS(paths); ++i) {
|
|
|
|
const char *remainder;
|
|
|
|
if (str_startswith(r->http.path, paths[i].path, &remainder)){
|
|
|
|
int ret = paths[i].parser(r, remainder);
|
|
|
|
if (ret < 0) {
|
|
|
|
http_request_simple_response(&r->http, 500, NULL);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (ret == 0)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
http_request_simple_response(&r->http, 404, NULL);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct sched_ent server_alarm;
|
|
|
|
struct profile_total server_stats = {
|
|
|
|
.name = "rhizome_server_poll",
|
|
|
|
};
|
2012-07-02 03:49:54 +00:00
|
|
|
|
2011-12-21 05:58:08 +00:00
|
|
|
/*
|
2012-08-28 04:26:47 +00:00
|
|
|
HTTP server and client code for rhizome transfers and rhizome direct.
|
|
|
|
Selection of either use is made when starting the HTTP server and
|
|
|
|
specifying the call-back function to use on client connections.
|
2011-12-21 05:58:08 +00:00
|
|
|
*/
|
|
|
|
|
2013-10-07 13:07:37 +00:00
|
|
|
uint16_t rhizome_http_server_port = 0;
|
2012-06-26 01:37:01 +00:00
|
|
|
static int rhizome_server_socket = -1;
|
2013-09-24 04:53:40 +00:00
|
|
|
static int request_count=0;
|
2012-08-09 02:44:32 +00:00
|
|
|
static time_ms_t rhizome_server_last_start_attempt = -1;
|
2011-12-21 05:58:08 +00:00
|
|
|
|
2012-01-03 04:15:50 +00:00
|
|
|
// Format icon data using:
|
|
|
|
// od -vt u1 ~/Downloads/favicon.ico | cut -c9- | sed 's/ */,/g'
|
|
|
|
unsigned char favicon_bytes[]={
|
|
|
|
0,0,1,0,1,0,16,16,16,0,0,0,0,0,40,1
|
|
|
|
,0,0,22,0,0,0,40,0,0,0,16,0,0,0,32,0
|
|
|
|
,0,0,1,0,4,0,0,0,0,0,128,0,0,0,0,0
|
|
|
|
,0,0,0,0,0,0,16,0,0,0,0,0,0,0,104,158
|
|
|
|
,168,0,163,233,247,0,104,161,118,0,0,0,0,0,0,0
|
|
|
|
,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
|
|
|
,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
|
|
|
,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17
|
|
|
|
,17,17,17,18,34,17,17,18,34,17,17,18,34,17,17,2
|
|
|
|
,34,17,17,18,34,17,16,18,34,1,17,17,1,17,1,17
|
|
|
|
,1,16,1,16,17,17,17,17,1,17,16,16,17,17,17,17
|
|
|
|
,1,17,18,34,17,17,17,16,17,17,2,34,17,17,17,16
|
|
|
|
,17,16,18,34,17,17,17,16,17,1,17,1,17,17,17,18
|
|
|
|
,34,17,17,16,17,17,17,18,34,17,17,18,34,17,17,18
|
|
|
|
,34,17,17,18,34,17,17,16,17,17,17,18,34,17,17,16
|
|
|
|
,17,17,17,17,17,0,17,1,17,17,17,17,17,17,0,0
|
|
|
|
,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
|
|
|
,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
|
|
|
,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
|
|
|
,0,0,0,0,0,0,0,0,0,0,0,0,0,0};
|
|
|
|
int favicon_len=318;
|
|
|
|
|
2012-11-30 04:17:27 +00:00
|
|
|
int is_rhizome_http_server_running()
|
2012-07-12 02:40:59 +00:00
|
|
|
{
|
|
|
|
return rhizome_server_socket != -1;
|
|
|
|
}
|
|
|
|
|
2012-06-26 01:37:01 +00:00
|
|
|
/* Start the Rhizome HTTP server by creating a socket, binding it to an available port, and
|
|
|
|
marking it as passive. If called repeatedly and frequently, this function will only try to start
|
|
|
|
the server after a certain time has elapsed since the last attempt.
|
|
|
|
Return -1 if an error occurs (message logged).
|
|
|
|
Return 0 if the server was started.
|
|
|
|
Return 1 if the server is already started successfully.
|
|
|
|
Return 2 if the server was not started because it is too soon since last failed attempt.
|
|
|
|
*/
|
2013-10-16 07:55:58 +00:00
|
|
|
int rhizome_http_server_start(uint16_t port_low, uint16_t port_high)
|
2011-12-21 05:58:08 +00:00
|
|
|
{
|
2012-06-26 01:37:01 +00:00
|
|
|
if (rhizome_server_socket != -1)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
/* Only try to start http server every five seconds. */
|
2012-08-09 02:44:32 +00:00
|
|
|
time_ms_t now = gettime_ms();
|
|
|
|
if (now < rhizome_server_last_start_attempt + 5000)
|
2012-06-26 01:37:01 +00:00
|
|
|
return 2;
|
2012-08-09 02:44:32 +00:00
|
|
|
rhizome_server_last_start_attempt = now;
|
2013-10-16 00:53:45 +00:00
|
|
|
if (config.debug.rhizome_httpd)
|
2012-06-26 01:37:01 +00:00
|
|
|
DEBUGF("Starting rhizome HTTP server");
|
|
|
|
|
2013-10-07 13:07:37 +00:00
|
|
|
uint16_t port;
|
2012-08-28 04:26:47 +00:00
|
|
|
for (port = port_low; port <= port_high; ++port) {
|
2012-07-12 02:40:59 +00:00
|
|
|
/* Create a new socket, reusable and non-blocking. */
|
|
|
|
if (rhizome_server_socket == -1) {
|
|
|
|
rhizome_server_socket = socket(AF_INET,SOCK_STREAM,0);
|
|
|
|
if (rhizome_server_socket == -1) {
|
|
|
|
WHY_perror("socket");
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
int on=1;
|
|
|
|
if (setsockopt(rhizome_server_socket, SOL_SOCKET, SO_REUSEADDR, (char *)&on, sizeof(on)) == -1) {
|
|
|
|
WHY_perror("setsockopt(REUSEADDR)");
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
if (ioctl(rhizome_server_socket, FIONBIO, (char *)&on) == -1) {
|
|
|
|
WHY_perror("ioctl(FIONBIO)");
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Bind it to the next port we want to try. */
|
|
|
|
struct sockaddr_in address;
|
|
|
|
bzero((char *) &address, sizeof(address));
|
|
|
|
address.sin_family = AF_INET;
|
|
|
|
address.sin_addr.s_addr = INADDR_ANY;
|
2012-07-02 06:54:07 +00:00
|
|
|
address.sin_port = htons(port);
|
2012-07-12 02:40:59 +00:00
|
|
|
if (bind(rhizome_server_socket, (struct sockaddr *) &address, sizeof(address)) == -1) {
|
|
|
|
if (errno != EADDRINUSE) {
|
|
|
|
WHY_perror("bind");
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* We bound to a port. The battle is half won. Now we have to successfully listen on that
|
|
|
|
port, which could also fail with EADDRINUSE, in which case we have to scrap the socket and
|
|
|
|
create a new one, because once bound, a socket stays bound.
|
|
|
|
*/
|
|
|
|
if (listen(rhizome_server_socket, 20) != -1)
|
|
|
|
goto success;
|
|
|
|
if (errno != EADDRINUSE) {
|
|
|
|
WHY_perror("listen");
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
close(rhizome_server_socket);
|
|
|
|
rhizome_server_socket = -1;
|
|
|
|
}
|
2012-06-26 01:37:01 +00:00
|
|
|
}
|
2012-07-12 02:40:59 +00:00
|
|
|
WHYF("No ports available in range %u to %u", RHIZOME_HTTP_PORT, RHIZOME_HTTP_PORT_MAX);
|
|
|
|
error:
|
|
|
|
if (rhizome_server_socket != -1) {
|
2012-06-26 01:37:01 +00:00
|
|
|
close(rhizome_server_socket);
|
|
|
|
rhizome_server_socket = -1;
|
|
|
|
}
|
2012-07-12 02:40:59 +00:00
|
|
|
return WHY("Failed to start rhizome HTTP server");
|
2011-12-22 11:28:18 +00:00
|
|
|
|
2012-07-12 02:40:59 +00:00
|
|
|
success:
|
2013-02-16 22:29:56 +00:00
|
|
|
if (config.rhizome.http.enable)
|
2013-10-07 13:07:37 +00:00
|
|
|
INFOF("RHIZOME HTTP SERVER, START port=%"PRIu16" fd=%d", port, rhizome_server_socket);
|
2013-02-16 22:29:56 +00:00
|
|
|
else
|
2013-10-07 13:07:37 +00:00
|
|
|
INFOF("HTTP SERVER (LIMITED SERVICE), START port=%"PRIu16" fd=%d", port, rhizome_server_socket);
|
2012-08-28 04:26:47 +00:00
|
|
|
|
2012-07-12 02:40:59 +00:00
|
|
|
rhizome_http_server_port = port;
|
2012-06-22 03:55:41 +00:00
|
|
|
/* Add Rhizome HTTPd server to list of file descriptors to watch */
|
2012-07-02 03:49:54 +00:00
|
|
|
server_alarm.function = rhizome_server_poll;
|
2013-10-16 07:55:58 +00:00
|
|
|
server_alarm.stats = &server_stats;
|
2012-07-02 03:49:54 +00:00
|
|
|
server_alarm.poll.fd = rhizome_server_socket;
|
|
|
|
server_alarm.poll.events = POLLIN;
|
|
|
|
watch(&server_alarm);
|
2011-12-21 05:58:08 +00:00
|
|
|
return 0;
|
2012-07-12 02:40:59 +00:00
|
|
|
|
2011-12-21 05:58:08 +00:00
|
|
|
}
|
|
|
|
|
2013-10-16 07:55:58 +00:00
|
|
|
static void rhizome_server_finalise_http_request(struct http_request *_r)
|
2011-12-21 05:58:08 +00:00
|
|
|
{
|
2013-10-16 07:55:58 +00:00
|
|
|
rhizome_http_request *r = (rhizome_http_request *) _r;
|
2013-11-07 13:10:56 +00:00
|
|
|
rhizome_read_close(&r->u.read_state);
|
2013-10-16 07:55:58 +00:00
|
|
|
request_count--;
|
2012-06-22 03:55:41 +00:00
|
|
|
}
|
2011-12-22 11:28:18 +00:00
|
|
|
|
2013-10-16 07:55:58 +00:00
|
|
|
static int rhizome_dispatch(struct http_request *);
|
|
|
|
|
|
|
|
static unsigned int rhizome_http_request_uuid_counter = 0;
|
2012-10-02 09:02:48 +00:00
|
|
|
|
2012-07-02 03:49:54 +00:00
|
|
|
void rhizome_server_poll(struct sched_ent *alarm)
|
2012-06-22 03:55:41 +00:00
|
|
|
{
|
2012-08-22 05:20:14 +00:00
|
|
|
if (alarm->poll.revents & (POLLIN | POLLOUT)) {
|
|
|
|
struct sockaddr addr;
|
|
|
|
unsigned int addr_len = sizeof addr;
|
|
|
|
int sock;
|
2013-10-16 07:55:58 +00:00
|
|
|
if ((sock = accept(rhizome_server_socket, &addr, &addr_len)) == -1) {
|
|
|
|
if (errno && errno != EAGAIN)
|
|
|
|
WARN_perror("accept");
|
|
|
|
} else {
|
2012-10-05 08:15:30 +00:00
|
|
|
struct sockaddr_in *peerip=NULL;
|
2012-08-22 05:20:14 +00:00
|
|
|
if (addr.sa_family == AF_INET) {
|
2012-10-05 08:15:30 +00:00
|
|
|
peerip = (struct sockaddr_in *)&addr;
|
2012-08-22 05:20:14 +00:00
|
|
|
INFOF("RHIZOME HTTP SERVER, ACCEPT addrlen=%u family=%u port=%u addr=%u.%u.%u.%u",
|
|
|
|
addr_len, peerip->sin_family, peerip->sin_port,
|
|
|
|
((unsigned char*)&peerip->sin_addr.s_addr)[0],
|
|
|
|
((unsigned char*)&peerip->sin_addr.s_addr)[1],
|
|
|
|
((unsigned char*)&peerip->sin_addr.s_addr)[2],
|
|
|
|
((unsigned char*)&peerip->sin_addr.s_addr)[3]
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
INFOF("RHIZOME HTTP SERVER, ACCEPT addrlen=%u family=%u data=%s",
|
2012-10-05 08:15:30 +00:00
|
|
|
addr_len, addr.sa_family, alloca_tohex((unsigned char *)addr.sa_data, sizeof addr.sa_data)
|
|
|
|
);
|
2012-08-22 05:20:14 +00:00
|
|
|
}
|
2013-10-16 07:55:58 +00:00
|
|
|
rhizome_http_request *request = emalloc_zero(sizeof(rhizome_http_request));
|
2012-08-22 05:20:14 +00:00
|
|
|
if (request == NULL) {
|
2013-10-16 07:55:58 +00:00
|
|
|
WHY("Cannot respond to HTTP request, out of memory");
|
2013-09-24 04:53:40 +00:00
|
|
|
close(sock);
|
2012-08-22 05:20:14 +00:00
|
|
|
} else {
|
2013-09-24 04:53:40 +00:00
|
|
|
request_count++;
|
2013-10-16 07:55:58 +00:00
|
|
|
request->uuid = rhizome_http_request_uuid_counter++;
|
|
|
|
request->data_file_name[0] = '\0';
|
2013-11-07 13:10:56 +00:00
|
|
|
request->u.read_state.blob_fd = -1;
|
|
|
|
request->u.read_state.blob_rowid = -1;
|
2013-10-16 07:55:58 +00:00
|
|
|
if (peerip)
|
2013-10-28 01:38:57 +00:00
|
|
|
request->http.client_sockaddr_in = *peerip;
|
2013-10-16 07:55:58 +00:00
|
|
|
request->http.handle_headers = rhizome_dispatch;
|
|
|
|
request->http.debug_flag = &config.debug.rhizome_httpd;
|
2013-10-25 07:08:51 +00:00
|
|
|
request->http.disable_tx_flag = &config.debug.rhizome_nohttptx;
|
2013-10-16 07:55:58 +00:00
|
|
|
request->http.finalise = rhizome_server_finalise_http_request;
|
|
|
|
request->http.free = free;
|
|
|
|
request->http.idle_timeout = RHIZOME_IDLE_TIMEOUT;
|
|
|
|
http_request_init(&request->http, sock);
|
2012-08-22 05:20:14 +00:00
|
|
|
}
|
2011-12-21 05:58:08 +00:00
|
|
|
}
|
2012-07-10 10:29:46 +00:00
|
|
|
}
|
2012-08-22 05:20:14 +00:00
|
|
|
if (alarm->poll.revents & (POLLHUP | POLLERR)) {
|
|
|
|
INFO("Error on tcp listen socket");
|
2012-07-10 10:29:46 +00:00
|
|
|
}
|
2011-12-22 11:28:18 +00:00
|
|
|
}
|
|
|
|
|
2013-10-16 00:52:02 +00:00
|
|
|
int is_http_header_complete(const char *buf, size_t len, size_t read_since_last_call)
|
2012-07-13 01:36:10 +00:00
|
|
|
{
|
2013-02-15 07:39:39 +00:00
|
|
|
IN();
|
2012-07-13 08:36:55 +00:00
|
|
|
const char *bufend = buf + len;
|
2013-08-15 06:17:39 +00:00
|
|
|
const char *p = buf;
|
2012-10-04 08:08:33 +00:00
|
|
|
size_t tail = read_since_last_call + 4;
|
2012-07-13 08:36:55 +00:00
|
|
|
if (tail < len)
|
2013-08-15 06:17:39 +00:00
|
|
|
p = bufend - tail;
|
2012-07-13 08:36:55 +00:00
|
|
|
int count = 0;
|
2013-08-15 06:17:39 +00:00
|
|
|
for (; p != bufend; ++p) {
|
|
|
|
switch (*p) {
|
|
|
|
case '\n':
|
|
|
|
if (++count==2)
|
|
|
|
RETURN(p - buf);
|
|
|
|
case '\r': // ignore CR
|
|
|
|
case '\0': // ignore NUL (telnet inserts them)
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
count = 0;
|
|
|
|
break;
|
2012-07-13 08:36:55 +00:00
|
|
|
}
|
|
|
|
}
|
2013-08-15 06:17:39 +00:00
|
|
|
RETURN(0);
|
2013-02-16 17:47:24 +00:00
|
|
|
OUT();
|
2012-07-13 08:36:55 +00:00
|
|
|
}
|
|
|
|
|
2013-10-29 07:02:04 +00:00
|
|
|
/* Return 1 if the given authorization credentials are acceptable.
|
|
|
|
* Return 0 if not.
|
|
|
|
*/
|
|
|
|
static int is_authorized(struct http_client_authorization *auth)
|
|
|
|
{
|
|
|
|
if (auth->scheme != BASIC)
|
|
|
|
return 0;
|
|
|
|
unsigned i;
|
|
|
|
for (i = 0; i != config.rhizome.api.restful.users.ac; ++i) {
|
|
|
|
if ( strcmp(config.rhizome.api.restful.users.av[i].key, auth->credentials.basic.user) == 0
|
|
|
|
&& strcmp(config.rhizome.api.restful.users.av[i].value.password, auth->credentials.basic.password) == 0
|
|
|
|
)
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-11-08 08:00:11 +00:00
|
|
|
static HTTP_CONTENT_GENERATOR restful_rhizome_bundlelist_json_content;
|
2013-11-07 13:10:56 +00:00
|
|
|
|
2013-10-29 07:02:04 +00:00
|
|
|
static int restful_rhizome_bundlelist_json(rhizome_http_request *r, const char *remainder)
|
|
|
|
{
|
|
|
|
if (!is_rhizome_http_enabled())
|
|
|
|
return 1;
|
|
|
|
if (*remainder)
|
|
|
|
return 1;
|
|
|
|
if (r->http.verb != HTTP_VERB_GET) {
|
|
|
|
http_request_simple_response(&r->http, 405, NULL);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (!is_authorized(&r->http.request_header.authorization)) {
|
|
|
|
r->http.response.header.www_authenticate.scheme = BASIC;
|
|
|
|
r->http.response.header.www_authenticate.realm = "Serval Rhizome";
|
|
|
|
http_request_simple_response(&r->http, 401, NULL);
|
|
|
|
return 0;
|
|
|
|
}
|
2013-11-08 08:00:11 +00:00
|
|
|
r->u.list.phase = LIST_HEADER;
|
2013-11-07 13:10:56 +00:00
|
|
|
r->u.list.rowcount = 0;
|
|
|
|
bzero(&r->u.list.cursor, sizeof r->u.list.cursor);
|
|
|
|
http_request_response_generated(&r->http, 200, "application/json", restful_rhizome_bundlelist_json_content);
|
2013-10-29 07:02:04 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-11-08 08:00:11 +00:00
|
|
|
static int restful_rhizome_bundlelist_json_content_chunk(sqlite_retry_state *retry, struct rhizome_http_request *r, strbuf b)
|
2013-11-07 13:10:56 +00:00
|
|
|
{
|
2013-11-08 08:00:11 +00:00
|
|
|
const char *headers[] = {
|
2013-11-07 13:10:56 +00:00
|
|
|
"_id",
|
|
|
|
"service",
|
|
|
|
"id",
|
|
|
|
"version",
|
|
|
|
"date",
|
|
|
|
".inserttime",
|
|
|
|
".author",
|
|
|
|
".fromhere",
|
|
|
|
"filesize",
|
|
|
|
"filehash",
|
|
|
|
"sender",
|
|
|
|
"recipient",
|
|
|
|
"name"
|
|
|
|
};
|
2013-11-08 08:00:11 +00:00
|
|
|
switch (r->u.list.phase) {
|
|
|
|
case LIST_HEADER:
|
|
|
|
strbuf_puts(b, "[[");
|
|
|
|
unsigned i;
|
|
|
|
for (i = 0; i != NELS(headers); ++i) {
|
|
|
|
if (i)
|
|
|
|
strbuf_putc(b, ',');
|
|
|
|
strbuf_json_string(b, headers[i]);
|
|
|
|
}
|
|
|
|
strbuf_puts(b, "]");
|
|
|
|
if (strbuf_overrun(b))
|
|
|
|
return 0;
|
|
|
|
r->u.list.phase = LIST_BODY;
|
|
|
|
return 1;
|
|
|
|
case LIST_BODY:
|
|
|
|
{
|
|
|
|
int ret = rhizome_list_next(retry, &r->u.list.cursor);
|
|
|
|
if (ret == -1)
|
|
|
|
return -1;
|
|
|
|
if (ret == 0) {
|
|
|
|
strbuf_puts(b, "\n]\n");
|
|
|
|
if (strbuf_overrun(b))
|
|
|
|
return 0;
|
|
|
|
r->u.list.phase = LIST_DONE;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
rhizome_manifest *m = r->u.list.cursor.manifest;
|
|
|
|
assert(m->filesize != RHIZOME_SIZE_UNSET);
|
|
|
|
rhizome_lookup_author(m);
|
|
|
|
strbuf_puts(b, ",\n [");
|
|
|
|
strbuf_sprintf(b, "%"PRIu64, r->u.list.cursor.rowid);
|
2013-11-07 13:10:56 +00:00
|
|
|
strbuf_putc(b, ',');
|
2013-11-08 08:00:11 +00:00
|
|
|
strbuf_json_string(b, m->service);
|
|
|
|
strbuf_putc(b, ',');
|
|
|
|
strbuf_json_hex(b, m->cryptoSignPublic.binary, sizeof m->cryptoSignPublic.binary);
|
|
|
|
strbuf_putc(b, ',');
|
|
|
|
strbuf_sprintf(b, "%"PRId64, m->version);
|
|
|
|
strbuf_putc(b, ',');
|
|
|
|
if (m->has_date)
|
|
|
|
strbuf_sprintf(b, "%"PRItime_ms_t, m->date);
|
|
|
|
else
|
|
|
|
strbuf_json_null(b);
|
|
|
|
strbuf_putc(b, ',');
|
|
|
|
strbuf_sprintf(b, "%"PRItime_ms_t",", m->inserttime);
|
|
|
|
switch (m->authorship) {
|
|
|
|
case AUTHOR_LOCAL:
|
|
|
|
case AUTHOR_AUTHENTIC:
|
|
|
|
strbuf_json_hex(b, m->author.binary, sizeof m->author.binary);
|
|
|
|
strbuf_puts(b, ",1,");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
strbuf_json_null(b);
|
|
|
|
strbuf_puts(b, ",1,");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
strbuf_sprintf(b, "%"PRIu64, m->filesize);
|
|
|
|
strbuf_putc(b, ',');
|
|
|
|
strbuf_json_hex(b, m->filesize ? m->filehash.binary : NULL, sizeof m->filehash.binary);
|
|
|
|
strbuf_putc(b, ',');
|
|
|
|
strbuf_json_hex(b, m->has_sender ? m->sender.binary : NULL, sizeof m->sender.binary);
|
|
|
|
strbuf_putc(b, ',');
|
|
|
|
strbuf_json_hex(b, m->has_recipient ? m->recipient.binary : NULL, sizeof m->recipient.binary);
|
|
|
|
strbuf_putc(b, ',');
|
|
|
|
strbuf_json_string(b, m->name);
|
|
|
|
strbuf_puts(b, "]");
|
|
|
|
if (strbuf_overrun(b))
|
|
|
|
return 0;
|
|
|
|
rhizome_list_commit(&r->u.list.cursor);
|
|
|
|
++r->u.list.rowcount;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
case LIST_DONE:
|
|
|
|
break;
|
2013-11-07 13:10:56 +00:00
|
|
|
}
|
2013-11-08 08:00:11 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int restful_rhizome_bundlelist_json_content(struct http_request *hr, unsigned char *buf, size_t bufsz, struct http_content_generator_result *result)
|
|
|
|
{
|
|
|
|
rhizome_http_request *r = (rhizome_http_request *) hr;
|
|
|
|
assert(bufsz > 0);
|
2013-11-07 13:10:56 +00:00
|
|
|
sqlite_retry_state retry = SQLITE_RETRY_STATE_DEFAULT;
|
2013-11-08 08:00:11 +00:00
|
|
|
int ret = rhizome_list_open(&retry, &r->u.list.cursor);
|
|
|
|
if (ret == -1)
|
|
|
|
return -1;
|
|
|
|
strbuf b = strbuf_local((char *)buf, bufsz);
|
|
|
|
while ((ret = restful_rhizome_bundlelist_json_content_chunk(&retry, r, b)) != -1) {
|
|
|
|
if (strbuf_overrun(b)) {
|
|
|
|
result->need = strbuf_count(b) + 1 - result->generated;
|
|
|
|
break;
|
2013-11-07 13:10:56 +00:00
|
|
|
}
|
2013-11-08 08:00:11 +00:00
|
|
|
result->generated = strbuf_len(b);
|
|
|
|
if (ret == 0)
|
|
|
|
break;
|
2013-11-07 13:10:56 +00:00
|
|
|
}
|
|
|
|
rhizome_list_release(&r->u.list.cursor);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-10-16 07:55:58 +00:00
|
|
|
static int neighbour_page(rhizome_http_request *r, const char *remainder)
|
2013-09-24 00:20:45 +00:00
|
|
|
{
|
2013-10-16 07:55:58 +00:00
|
|
|
if (r->http.verb != HTTP_VERB_GET) {
|
|
|
|
http_request_simple_response(&r->http, 405, NULL);
|
|
|
|
return 0;
|
|
|
|
}
|
2013-09-24 00:20:45 +00:00
|
|
|
char buf[8*1024];
|
2013-10-16 07:55:58 +00:00
|
|
|
strbuf b = strbuf_local(buf, sizeof buf);
|
2013-09-24 00:20:45 +00:00
|
|
|
sid_t neighbour_sid;
|
|
|
|
if (str_to_sid_t(&neighbour_sid, remainder) == -1)
|
2013-10-16 07:55:58 +00:00
|
|
|
return 1;
|
2013-09-24 00:20:45 +00:00
|
|
|
struct subscriber *neighbour = find_subscriber(neighbour_sid.binary, sizeof(neighbour_sid.binary), 0);
|
|
|
|
if (!neighbour)
|
|
|
|
return 1;
|
|
|
|
strbuf_puts(b, "<html><head><meta http-equiv=\"refresh\" content=\"5\" ></head><body>");
|
|
|
|
link_neighbour_status_html(b, neighbour);
|
|
|
|
strbuf_puts(b, "</body></html>");
|
|
|
|
if (strbuf_overrun(b))
|
|
|
|
return -1;
|
2013-10-25 13:27:23 +00:00
|
|
|
http_request_response_static(&r->http, 200, "text/html", buf, strbuf_len(b));
|
2013-09-24 00:20:45 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-10-16 07:55:58 +00:00
|
|
|
static int interface_page(rhizome_http_request *r, const char *remainder)
|
2013-09-24 00:20:45 +00:00
|
|
|
{
|
2013-10-16 07:55:58 +00:00
|
|
|
if (r->http.verb != HTTP_VERB_GET) {
|
|
|
|
http_request_simple_response(&r->http, 405, NULL);
|
|
|
|
return 0;
|
|
|
|
}
|
2013-09-24 00:20:45 +00:00
|
|
|
char buf[8*1024];
|
|
|
|
strbuf b=strbuf_local(buf, sizeof buf);
|
|
|
|
int index=atoi(remainder);
|
|
|
|
if (index<0 || index>=OVERLAY_MAX_INTERFACES)
|
|
|
|
return 1;
|
|
|
|
strbuf_puts(b, "<html><head><meta http-equiv=\"refresh\" content=\"5\" ></head><body>");
|
|
|
|
interface_state_html(b, &overlay_interfaces[index]);
|
|
|
|
strbuf_puts(b, "</body></html>");
|
|
|
|
if (strbuf_overrun(b))
|
|
|
|
return -1;
|
2013-10-25 13:27:23 +00:00
|
|
|
http_request_response_static(&r->http, 200, "text/html", buf, strbuf_len(b));
|
2013-09-24 00:20:45 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-10-16 07:55:58 +00:00
|
|
|
static int rhizome_status_page(rhizome_http_request *r, const char *remainder)
|
2013-09-24 00:20:45 +00:00
|
|
|
{
|
|
|
|
if (!is_rhizome_http_enabled())
|
|
|
|
return 1;
|
|
|
|
if (*remainder)
|
|
|
|
return 1;
|
2013-10-16 07:55:58 +00:00
|
|
|
if (r->http.verb != HTTP_VERB_GET) {
|
|
|
|
http_request_simple_response(&r->http, 405, NULL);
|
|
|
|
return 0;
|
|
|
|
}
|
2013-09-24 00:20:45 +00:00
|
|
|
char buf[32*1024];
|
2013-10-25 07:08:51 +00:00
|
|
|
strbuf b = strbuf_local(buf, sizeof buf);
|
|
|
|
strbuf_puts(b, "<html><head><meta http-equiv=\"refresh\" content=\"5\" ></head><body>");
|
|
|
|
strbuf_sprintf(b, "%d HTTP requests<br>", request_count);
|
|
|
|
strbuf_sprintf(b, "%d Bundles transferring via MDP<br>", rhizome_cache_count());
|
|
|
|
rhizome_fetch_status_html(b);
|
|
|
|
strbuf_puts(b, "</body></html>");
|
|
|
|
if (strbuf_overrun(b))
|
2013-09-24 00:20:45 +00:00
|
|
|
return -1;
|
2013-10-25 13:27:23 +00:00
|
|
|
http_request_response_static(&r->http, 200, "text/html", buf, strbuf_len(b));
|
2013-09-24 00:20:45 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-11-08 08:00:11 +00:00
|
|
|
static int rhizome_file_content(struct http_request *hr, unsigned char *buf, size_t bufsz, struct http_content_generator_result *result)
|
2013-09-24 00:20:45 +00:00
|
|
|
{
|
2013-11-08 08:00:11 +00:00
|
|
|
// Reads the next part of the payload into the supplied buffer.
|
2013-10-16 07:55:58 +00:00
|
|
|
rhizome_http_request *r = (rhizome_http_request *) hr;
|
2013-11-07 13:10:56 +00:00
|
|
|
assert(r->u.read_state.offset < r->u.read_state.length);
|
2013-11-08 08:00:11 +00:00
|
|
|
size_t readlen = r->u.read_state.length - r->u.read_state.offset;
|
|
|
|
if (readlen > bufsz)
|
|
|
|
readlen = bufsz;
|
|
|
|
ssize_t n = rhizome_read(&r->u.read_state, buf, readlen);
|
|
|
|
if (n == -1)
|
2013-09-24 00:20:45 +00:00
|
|
|
return -1;
|
2013-11-08 08:00:11 +00:00
|
|
|
result->generated = (size_t) n;
|
|
|
|
// Ask for a large buffer for all future reads.
|
|
|
|
const size_t preferred_bufsz = 64 * 1024;
|
|
|
|
assert(r->u.read_state.offset < r->u.read_state.length);
|
|
|
|
size_t remain = r->u.read_state.length - r->u.read_state.offset;
|
|
|
|
result->need = remain < preferred_bufsz ? remain : preferred_bufsz;
|
|
|
|
return remain ? 1 : 0;
|
2013-09-24 00:20:45 +00:00
|
|
|
}
|
|
|
|
|
2013-10-16 07:55:58 +00:00
|
|
|
static int rhizome_file_page(rhizome_http_request *r, const char *remainder)
|
2013-09-24 00:20:45 +00:00
|
|
|
{
|
|
|
|
/* Stream the specified payload */
|
|
|
|
if (!is_rhizome_http_enabled())
|
|
|
|
return 1;
|
2013-10-16 07:55:58 +00:00
|
|
|
if (r->http.verb != HTTP_VERB_GET) {
|
|
|
|
http_request_simple_response(&r->http, 405, NULL);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (r->http.request_header.content_range_count > 1) {
|
|
|
|
// To support byte range sets, eg, Range: bytes=0-100,200-300,400- we would have
|
|
|
|
// to reply with a multipart/byteranges MIME content.
|
|
|
|
http_request_simple_response(&r->http, 501, "Not Implemented: Byte range sets");
|
|
|
|
return 0;
|
|
|
|
}
|
2013-10-10 07:53:06 +00:00
|
|
|
rhizome_filehash_t filehash;
|
|
|
|
if (str_to_rhizome_filehash_t(&filehash, remainder) == -1)
|
2013-09-24 00:20:45 +00:00
|
|
|
return 1;
|
2013-11-07 13:10:56 +00:00
|
|
|
bzero(&r->u.read_state, sizeof r->u.read_state);
|
|
|
|
int n = rhizome_open_read(&r->u.read_state, &filehash);
|
2013-10-16 07:55:58 +00:00
|
|
|
if (n == -1) {
|
|
|
|
http_request_simple_response(&r->http, 500, NULL);
|
|
|
|
return 0;
|
2013-09-24 00:20:45 +00:00
|
|
|
}
|
2013-10-16 07:55:58 +00:00
|
|
|
if (n != 0)
|
|
|
|
return 1;
|
2013-11-07 13:10:56 +00:00
|
|
|
if (r->u.read_state.length == -1 && rhizome_read(&r->u.read_state, NULL, 0)) {
|
|
|
|
rhizome_read_close(&r->u.read_state);
|
2013-10-16 07:55:58 +00:00
|
|
|
return 1;
|
2013-09-24 00:20:45 +00:00
|
|
|
}
|
2013-11-07 13:10:56 +00:00
|
|
|
assert(r->u.read_state.length != -1);
|
|
|
|
r->http.response.header.resource_length = r->u.read_state.length;
|
2013-10-16 07:55:58 +00:00
|
|
|
if (r->http.request_header.content_range_count > 0) {
|
2013-10-26 09:58:47 +00:00
|
|
|
assert(r->http.request_header.content_range_count == 1);
|
|
|
|
struct http_range closed;
|
2013-11-07 13:10:56 +00:00
|
|
|
unsigned n = http_range_close(&closed, r->http.request_header.content_ranges, 1, r->u.read_state.length);
|
2013-10-26 09:58:47 +00:00
|
|
|
if (n == 0 || http_range_bytes(&closed, 1) == 0) {
|
2013-10-16 07:55:58 +00:00
|
|
|
http_request_simple_response(&r->http, 416, NULL); // Request Range Not Satisfiable
|
|
|
|
return 0;
|
|
|
|
}
|
2013-10-26 09:58:47 +00:00
|
|
|
r->http.response.header.content_range_start = closed.first;
|
|
|
|
r->http.response.header.content_length = closed.last - closed.first + 1;
|
2013-11-07 13:10:56 +00:00
|
|
|
r->u.read_state.offset = closed.first;
|
2013-10-26 09:58:47 +00:00
|
|
|
} else {
|
|
|
|
r->http.response.header.content_range_start = 0;
|
|
|
|
r->http.response.header.content_length = r->http.response.header.resource_length;
|
2013-11-07 13:10:56 +00:00
|
|
|
r->u.read_state.offset = 0;
|
2013-09-24 00:20:45 +00:00
|
|
|
}
|
2013-10-26 09:58:47 +00:00
|
|
|
http_request_response_generated(&r->http, 200, "application/binary", rhizome_file_content);
|
2013-09-24 00:20:45 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-10-16 07:55:58 +00:00
|
|
|
static int manifest_by_prefix_page(rhizome_http_request *r, const char *remainder)
|
2013-09-24 00:20:45 +00:00
|
|
|
{
|
|
|
|
if (!is_rhizome_http_enabled())
|
|
|
|
return 1;
|
2013-10-16 07:55:58 +00:00
|
|
|
if (r->http.verb != HTTP_VERB_GET) {
|
|
|
|
http_request_simple_response(&r->http, 405, NULL);
|
|
|
|
return 0;
|
|
|
|
}
|
2013-10-03 13:46:45 +00:00
|
|
|
rhizome_bid_t prefix;
|
|
|
|
const char *endp = NULL;
|
|
|
|
unsigned prefix_len = strn_fromhex(prefix.binary, sizeof prefix.binary, remainder, &endp);
|
|
|
|
if (endp == NULL || *endp != '\0' || prefix_len < 1)
|
|
|
|
return 1; // not found
|
2013-09-24 00:20:45 +00:00
|
|
|
rhizome_manifest *m = rhizome_new_manifest();
|
2013-10-03 13:46:45 +00:00
|
|
|
int ret = rhizome_retrieve_manifest_by_prefix(prefix.binary, prefix_len, m);
|
2013-10-16 07:55:58 +00:00
|
|
|
if (ret == -1)
|
|
|
|
http_request_simple_response(&r->http, 500, NULL);
|
|
|
|
else if (ret == 0)
|
2013-10-25 13:27:23 +00:00
|
|
|
http_request_response_static(&r->http, 200, "application/binary", (const char *)m->manifestdata, m->manifest_all_bytes);
|
2013-09-24 00:20:45 +00:00
|
|
|
rhizome_manifest_free(m);
|
2013-10-16 07:55:58 +00:00
|
|
|
return ret <= 0 ? 0 : 1;
|
2013-09-24 00:20:45 +00:00
|
|
|
}
|
|
|
|
|
2013-10-16 07:55:58 +00:00
|
|
|
static int fav_icon_header(rhizome_http_request *r, const char *remainder)
|
2013-09-24 00:20:45 +00:00
|
|
|
{
|
|
|
|
if (*remainder)
|
|
|
|
return 1;
|
2013-10-25 13:27:23 +00:00
|
|
|
http_request_response_static(&r->http, 200, "image/vnd.microsoft.icon", (const char *)favicon_bytes, favicon_len);
|
2013-09-24 00:20:45 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-10-16 07:55:58 +00:00
|
|
|
static int root_page(rhizome_http_request *r, const char *remainder)
|
2013-09-24 00:20:45 +00:00
|
|
|
{
|
|
|
|
if (*remainder)
|
|
|
|
return 1;
|
2013-10-16 07:55:58 +00:00
|
|
|
if (r->http.verb != HTTP_VERB_GET) {
|
|
|
|
http_request_simple_response(&r->http, 405, NULL);
|
|
|
|
return 0;
|
|
|
|
}
|
2013-09-24 00:20:45 +00:00
|
|
|
char temp[8192];
|
2013-10-16 07:55:58 +00:00
|
|
|
strbuf b = strbuf_local(temp, sizeof temp);
|
2013-09-24 00:20:45 +00:00
|
|
|
strbuf_sprintf(b, "<html><head><meta http-equiv=\"refresh\" content=\"5\" ></head><body>"
|
|
|
|
"<h1>Hello, I'm %s*</h1><br>"
|
|
|
|
"Interfaces;<br>",
|
2013-10-09 08:24:21 +00:00
|
|
|
alloca_tohex_sid_t_trunc(my_subscriber->sid, 16));
|
2013-09-24 00:20:45 +00:00
|
|
|
int i;
|
|
|
|
for (i=0;i<OVERLAY_MAX_INTERFACES;i++){
|
|
|
|
if (overlay_interfaces[i].state==INTERFACE_STATE_UP)
|
2013-10-16 07:55:58 +00:00
|
|
|
strbuf_sprintf(b, "<a href=\"/interface/%d\">%d: %s, TX: %d, RX: %d</a><br>",
|
2013-09-24 00:20:45 +00:00
|
|
|
i, i, overlay_interfaces[i].name, overlay_interfaces[i].tx_count, overlay_interfaces[i].recv_count);
|
|
|
|
}
|
|
|
|
strbuf_puts(b, "Neighbours;<br>");
|
|
|
|
link_neighbour_short_status_html(b, "/neighbour");
|
|
|
|
if (is_rhizome_http_enabled()){
|
|
|
|
strbuf_puts(b, "<a href=\"/rhizome/status\">Rhizome Status</a><br>");
|
|
|
|
}
|
|
|
|
strbuf_puts(b, "</body></html>");
|
2013-10-16 07:55:58 +00:00
|
|
|
if (strbuf_overrun(b)) {
|
|
|
|
WHY("HTTP Root page buffer overrun");
|
|
|
|
http_request_simple_response(&r->http, 500, NULL);
|
|
|
|
} else
|
2013-10-25 13:27:23 +00:00
|
|
|
http_request_response_static(&r->http, 200, "text/html", temp, strbuf_len(b));
|
2011-12-22 17:55:18 +00:00
|
|
|
return 0;
|
|
|
|
}
|