2011-12-21 09:55:05 +00:00
|
|
|
/*
|
2013-11-12 01:10:47 +00:00
|
|
|
Serval DNA Rhizome HTTP external interface
|
2013-12-04 06:26:55 +00:00
|
|
|
Copyright (C) 2013 Serval Project Inc.
|
2011-12-21 09:55:05 +00:00
|
|
|
|
|
|
|
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
|
2013-11-12 01:10:47 +00:00
|
|
|
# include <sys/filio.h>
|
2012-09-05 09:23:22 +00:00
|
|
|
#endif
|
2013-11-18 01:10:34 +00:00
|
|
|
#include <sys/uio.h>
|
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-12-30 07:39:56 +00:00
|
|
|
#include "strbuf.h"
|
2013-11-07 13:10:56 +00:00
|
|
|
#include "strbuf_helpers.h"
|
2013-12-30 07:39:56 +00:00
|
|
|
#include "dataformats.h"
|
2014-01-22 05:21:59 +00:00
|
|
|
#include "rhizome.h"
|
|
|
|
#include "rhizome_http.h"
|
2013-12-09 07:15:47 +00:00
|
|
|
#include "overlay_interface.h"
|
2013-10-16 07:55:58 +00:00
|
|
|
|
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;
|
2013-11-18 05:53:27 +00:00
|
|
|
static HTTP_HANDLER restful_rhizome_newsince;
|
2013-12-30 07:39:56 +00:00
|
|
|
static HTTP_HANDLER restful_rhizome_insert;
|
2013-12-05 06:55:58 +00:00
|
|
|
static HTTP_HANDLER restful_rhizome_;
|
2014-01-22 07:23:29 +00:00
|
|
|
static HTTP_HANDLER restful_meshms_;
|
2013-10-29 07:02:04 +00:00
|
|
|
|
|
|
|
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-11-18 05:53:27 +00:00
|
|
|
{"/restful/rhizome/newsince/", restful_rhizome_newsince},
|
2013-12-30 07:39:56 +00:00
|
|
|
{"/restful/rhizome/insert", restful_rhizome_insert},
|
2013-12-05 06:55:58 +00:00
|
|
|
{"/restful/rhizome/", restful_rhizome_},
|
2014-01-22 07:23:29 +00:00
|
|
|
{"/restful/meshms/", restful_meshms_},
|
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)){
|
2013-12-16 01:51:45 +00:00
|
|
|
int result = paths[i].parser(r, remainder);
|
|
|
|
if (result == -1 || (result >= 200 && result < 600))
|
|
|
|
return result;
|
|
|
|
if (result == 1)
|
2013-10-16 07:55:58 +00:00
|
|
|
return 0;
|
2013-12-16 01:51:45 +00:00
|
|
|
if (result)
|
|
|
|
return WHYF("dispatch function for %s returned invalid result %d", paths[i].path, result);
|
2013-10-16 07:55:58 +00:00
|
|
|
}
|
|
|
|
}
|
2013-12-16 01:51:45 +00:00
|
|
|
return 404;
|
2013-10-16 07:55:58 +00:00
|
|
|
}
|
|
|
|
|
2013-12-30 07:39:56 +00:00
|
|
|
static HTTP_RENDERER render_manifest_headers;
|
|
|
|
|
2013-10-16 07:55:58 +00:00
|
|
|
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
|
2013-12-16 01:51:45 +00:00
|
|
|
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-12-30 07:39:56 +00:00
|
|
|
static void finalise_union_read_state(rhizome_http_request *r)
|
2011-12-21 05:58:08 +00:00
|
|
|
{
|
2013-11-07 13:10:56 +00:00
|
|
|
rhizome_read_close(&r->u.read_state);
|
2013-12-30 07:39:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void finalise_union_rhizome_insert(rhizome_http_request *r)
|
|
|
|
{
|
|
|
|
if (r->u.insert.manifest_text) {
|
|
|
|
free(r->u.insert.manifest_text);
|
|
|
|
r->u.insert.manifest_text = NULL;
|
|
|
|
}
|
|
|
|
if (r->u.insert.write.blob_fd != -1)
|
|
|
|
rhizome_fail_write(&r->u.insert.write);
|
|
|
|
}
|
|
|
|
|
2014-01-22 07:23:29 +00:00
|
|
|
static void finalise_union_meshms_conversationlist(rhizome_http_request *r)
|
|
|
|
{
|
|
|
|
meshms_free_conversations(r->u.mclist.conv);
|
|
|
|
r->u.mclist.conv = NULL;
|
|
|
|
}
|
|
|
|
|
2014-01-24 06:56:19 +00:00
|
|
|
static void finalise_union_meshms_messagelist(rhizome_http_request *r)
|
|
|
|
{
|
|
|
|
meshms_message_iterator_close(&r->u.msglist.iter);
|
|
|
|
}
|
|
|
|
|
2013-12-30 07:39:56 +00:00
|
|
|
static void rhizome_server_finalise_http_request(struct http_request *hr)
|
|
|
|
{
|
|
|
|
rhizome_http_request *r = (rhizome_http_request *) hr;
|
|
|
|
if (r->manifest) {
|
|
|
|
rhizome_manifest_free(r->manifest);
|
|
|
|
r->manifest = NULL;
|
|
|
|
}
|
|
|
|
if (r->finalise_union) {
|
|
|
|
r->finalise_union(r);
|
|
|
|
r->finalise_union = NULL;
|
|
|
|
}
|
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) {
|
2013-11-12 01:10:47 +00:00
|
|
|
peerip = (struct sockaddr_in *)&addr; // network order
|
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++;
|
|
|
|
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) {
|
2013-12-16 01:51:45 +00:00
|
|
|
case '\n':
|
2013-08-15 06:17:39 +00:00
|
|
|
if (++count==2)
|
|
|
|
RETURN(p - buf);
|
|
|
|
case '\r': // ignore CR
|
|
|
|
case '\0': // ignore NUL (telnet inserts them)
|
|
|
|
break;
|
2013-12-16 01:51:45 +00:00
|
|
|
default:
|
|
|
|
count = 0;
|
2013-08-15 06:17:39 +00:00
|
|
|
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-11-12 01:10:47 +00:00
|
|
|
static int is_from_loopback(const struct http_request *r)
|
|
|
|
{
|
|
|
|
return r->client_sockaddr_in.sin_family == AF_INET
|
|
|
|
&& ((unsigned char*)&r->client_sockaddr_in.sin_addr.s_addr)[0] == IN_LOOPBACKNET;
|
|
|
|
}
|
|
|
|
|
2013-10-29 07:02:04 +00:00
|
|
|
/* Return 1 if the given authorization credentials are acceptable.
|
|
|
|
* Return 0 if not.
|
|
|
|
*/
|
2013-11-12 01:10:47 +00:00
|
|
|
static int is_authorized(const struct http_client_authorization *auth)
|
2013-10-29 07:02:04 +00:00
|
|
|
{
|
|
|
|
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-12 01:10:47 +00:00
|
|
|
static int authorize(struct http_request *r)
|
|
|
|
{
|
2013-12-16 01:51:45 +00:00
|
|
|
if (!is_from_loopback(r))
|
|
|
|
return 403;
|
2013-11-12 01:10:47 +00:00
|
|
|
if (!is_authorized(&r->request_header.authorization)) {
|
|
|
|
r->response.header.www_authenticate.scheme = BASIC;
|
|
|
|
r->response.header.www_authenticate.realm = "Serval Rhizome";
|
2013-12-16 01:51:45 +00:00
|
|
|
return 401;
|
2013-11-12 01:10:47 +00:00
|
|
|
}
|
2013-12-16 01:51:45 +00:00
|
|
|
return 0;
|
2013-11-12 01:10:47 +00:00
|
|
|
}
|
|
|
|
|
2013-11-18 05:53:27 +00:00
|
|
|
#define LIST_TOKEN_STRLEN (BASE64_ENCODED_LEN(sizeof(uuid_t) + 8))
|
|
|
|
#define alloca_list_token(rowid) list_token_to_str(alloca(LIST_TOKEN_STRLEN + 1), (rowid))
|
|
|
|
|
|
|
|
static char *list_token_to_str(char *buf, uint64_t rowid)
|
|
|
|
{
|
|
|
|
struct iovec iov[2];
|
|
|
|
iov[0].iov_base = rhizome_db_uuid.u.binary;
|
|
|
|
iov[0].iov_len = sizeof rhizome_db_uuid.u.binary;
|
|
|
|
iov[1].iov_base = &rowid;
|
|
|
|
iov[1].iov_len = sizeof rowid;
|
|
|
|
size_t n = base64url_encodev(buf, iov, 2);
|
|
|
|
assert(n == LIST_TOKEN_STRLEN);
|
|
|
|
buf[n] = '\0';
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int strn_to_list_token(const char *str, uint64_t *rowidp, const char **afterp)
|
|
|
|
{
|
|
|
|
unsigned char token[sizeof rhizome_db_uuid.u.binary + sizeof *rowidp];
|
|
|
|
if (base64url_decode(token, sizeof token, str, 0, afterp, 0, NULL) != sizeof token)
|
|
|
|
return 0;
|
2013-11-19 06:26:24 +00:00
|
|
|
if (cmp_uuid_t(&rhizome_db_uuid, (uuid_t *) &token) != 0)
|
|
|
|
return 0;
|
2013-11-18 05:53:27 +00:00
|
|
|
memcpy(rowidp, token + sizeof rhizome_db_uuid.u.binary, sizeof *rowidp);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
{
|
2014-01-20 05:14:21 +00:00
|
|
|
r->http.response.header.content_type = "application/json";
|
2013-10-29 07:02:04 +00:00
|
|
|
if (!is_rhizome_http_enabled())
|
2013-12-16 01:51:45 +00:00
|
|
|
return 403;
|
2013-10-29 07:02:04 +00:00
|
|
|
if (*remainder)
|
2013-12-16 01:51:45 +00:00
|
|
|
return 404;
|
|
|
|
if (r->http.verb != HTTP_VERB_GET)
|
|
|
|
return 405;
|
|
|
|
int ret = authorize(&r->http);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2014-01-22 07:23:29 +00:00
|
|
|
r->u.rhlist.phase = LIST_HEADER;
|
|
|
|
r->u.rhlist.rowcount = 0;
|
|
|
|
bzero(&r->u.rhlist.cursor, sizeof r->u.rhlist.cursor);
|
2013-11-07 13:10:56 +00:00
|
|
|
http_request_response_generated(&r->http, 200, "application/json", restful_rhizome_bundlelist_json_content);
|
2013-12-16 01:51:45 +00:00
|
|
|
return 1;
|
2013-10-29 07:02:04 +00:00
|
|
|
}
|
|
|
|
|
2014-01-22 07:23:29 +00:00
|
|
|
static HTTP_CONTENT_GENERATOR_STRBUF_CHUNKER restful_rhizome_bundlelist_json_content_chunk;
|
|
|
|
|
|
|
|
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;
|
|
|
|
int ret = rhizome_list_open(&r->u.rhlist.cursor);
|
|
|
|
if (ret == -1)
|
|
|
|
return -1;
|
|
|
|
ret = generate_http_content_from_strbuf_chunks(hr, (char *)buf, bufsz, result, restful_rhizome_bundlelist_json_content_chunk);
|
|
|
|
rhizome_list_release(&r->u.rhlist.cursor);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-11-18 05:53:27 +00:00
|
|
|
static int restful_rhizome_newsince(rhizome_http_request *r, const char *remainder)
|
2013-11-13 06:28:28 +00:00
|
|
|
{
|
2014-01-20 05:14:21 +00:00
|
|
|
r->http.response.header.content_type = "application/json";
|
2013-11-18 05:53:27 +00:00
|
|
|
if (!is_rhizome_http_enabled())
|
2013-12-16 01:51:45 +00:00
|
|
|
return 403;
|
2013-11-18 05:53:27 +00:00
|
|
|
uint64_t rowid;
|
|
|
|
const char *end = NULL;
|
|
|
|
if (!strn_to_list_token(remainder, &rowid, &end) || strcmp(end, "/bundlelist.json") != 0)
|
2013-12-16 01:51:45 +00:00
|
|
|
return 404;
|
|
|
|
if (r->http.verb != HTTP_VERB_GET)
|
|
|
|
return 405;
|
|
|
|
int ret = authorize(&r->http);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2014-01-22 07:23:29 +00:00
|
|
|
r->u.rhlist.phase = LIST_HEADER;
|
|
|
|
r->u.rhlist.rowcount = 0;
|
|
|
|
bzero(&r->u.rhlist.cursor, sizeof r->u.rhlist.cursor);
|
|
|
|
r->u.rhlist.cursor.rowid_since = rowid;
|
|
|
|
r->u.rhlist.end_time = gettime_ms() + config.rhizome.api.restful.newsince_timeout * 1000;
|
2013-11-18 05:53:27 +00:00
|
|
|
http_request_response_generated(&r->http, 200, "application/json", restful_rhizome_bundlelist_json_content);
|
2013-12-16 01:51:45 +00:00
|
|
|
return 1;
|
2013-11-13 06:28:28 +00:00
|
|
|
}
|
|
|
|
|
2014-01-22 07:23:29 +00:00
|
|
|
static int restful_rhizome_bundlelist_json_content_chunk(struct http_request *hr, strbuf b)
|
2013-11-07 13:10:56 +00:00
|
|
|
{
|
2014-01-22 07:23:29 +00:00
|
|
|
rhizome_http_request *r = (rhizome_http_request *) hr;
|
2013-11-08 08:00:11 +00:00
|
|
|
const char *headers[] = {
|
2013-11-18 04:40:28 +00:00
|
|
|
".token",
|
2013-11-07 13:10:56 +00:00
|
|
|
"_id",
|
|
|
|
"service",
|
|
|
|
"id",
|
|
|
|
"version",
|
|
|
|
"date",
|
|
|
|
".inserttime",
|
|
|
|
".author",
|
|
|
|
".fromhere",
|
|
|
|
"filesize",
|
|
|
|
"filehash",
|
|
|
|
"sender",
|
|
|
|
"recipient",
|
|
|
|
"name"
|
|
|
|
};
|
2014-01-22 07:23:29 +00:00
|
|
|
switch (r->u.rhlist.phase) {
|
2013-11-08 08:00:11 +00:00
|
|
|
case LIST_HEADER:
|
2013-11-13 06:28:28 +00:00
|
|
|
strbuf_puts(b, "{\n\"header\":[");
|
2013-11-08 08:00:11 +00:00
|
|
|
unsigned i;
|
|
|
|
for (i = 0; i != NELS(headers); ++i) {
|
|
|
|
if (i)
|
|
|
|
strbuf_putc(b, ',');
|
|
|
|
strbuf_json_string(b, headers[i]);
|
|
|
|
}
|
2013-11-18 04:40:28 +00:00
|
|
|
strbuf_puts(b, "],\n\"rows\":[");
|
2013-11-11 05:51:26 +00:00
|
|
|
if (!strbuf_overrun(b))
|
2014-01-22 07:23:29 +00:00
|
|
|
r->u.rhlist.phase = LIST_ROWS;
|
2013-11-08 08:00:11 +00:00
|
|
|
return 1;
|
2013-11-13 06:28:28 +00:00
|
|
|
case LIST_ROWS:
|
2013-11-08 08:00:11 +00:00
|
|
|
{
|
2014-01-22 07:23:29 +00:00
|
|
|
int ret = rhizome_list_next(&r->u.rhlist.cursor);
|
2013-11-08 08:00:11 +00:00
|
|
|
if (ret == -1)
|
|
|
|
return -1;
|
|
|
|
if (ret == 0) {
|
2013-11-19 05:13:51 +00:00
|
|
|
time_ms_t now;
|
2014-01-22 07:23:29 +00:00
|
|
|
if (r->u.rhlist.cursor.rowid_since == 0 || (now = gettime_ms()) >= r->u.rhlist.end_time) {
|
2014-01-24 06:56:19 +00:00
|
|
|
r->u.rhlist.phase = LIST_END;
|
|
|
|
return 1;
|
2013-11-19 05:13:51 +00:00
|
|
|
}
|
2013-11-20 04:20:57 +00:00
|
|
|
time_ms_t wake_at = now + config.rhizome.api.restful.newsince_poll_ms;
|
2014-01-22 07:23:29 +00:00
|
|
|
if (wake_at > r->u.rhlist.end_time)
|
|
|
|
wake_at = r->u.rhlist.end_time;
|
2013-11-19 05:13:51 +00:00
|
|
|
http_request_pause_response(&r->http, wake_at);
|
2013-11-08 08:00:11 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2014-01-22 07:23:29 +00:00
|
|
|
rhizome_manifest *m = r->u.rhlist.cursor.manifest;
|
2013-11-08 08:00:11 +00:00
|
|
|
assert(m->filesize != RHIZOME_SIZE_UNSET);
|
|
|
|
rhizome_lookup_author(m);
|
2014-01-22 07:23:29 +00:00
|
|
|
if (r->u.rhlist.rowcount != 0)
|
2013-11-13 06:28:28 +00:00
|
|
|
strbuf_putc(b, ',');
|
|
|
|
strbuf_puts(b, "\n[");
|
2014-01-22 07:23:29 +00:00
|
|
|
if (m->rowid > r->u.rhlist.rowid_highest) {
|
2013-11-18 04:40:28 +00:00
|
|
|
strbuf_json_string(b, alloca_list_token(m->rowid));
|
2014-01-22 07:23:29 +00:00
|
|
|
r->u.rhlist.rowid_highest = m->rowid;
|
2013-11-18 04:40:28 +00:00
|
|
|
} else
|
|
|
|
strbuf_json_null(b);
|
|
|
|
strbuf_putc(b, ',');
|
2013-11-11 07:43:38 +00:00
|
|
|
strbuf_sprintf(b, "%"PRIu64, m->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, ',');
|
2013-12-11 00:41:34 +00:00
|
|
|
strbuf_sprintf(b, "%"PRIu64, m->version);
|
2013-11-08 08:00:11 +00:00
|
|
|
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, "]");
|
2013-11-11 05:51:26 +00:00
|
|
|
if (!strbuf_overrun(b)) {
|
2014-01-22 07:23:29 +00:00
|
|
|
rhizome_list_commit(&r->u.rhlist.cursor);
|
|
|
|
++r->u.rhlist.rowcount;
|
2013-11-11 05:51:26 +00:00
|
|
|
}
|
2013-11-08 08:00:11 +00:00
|
|
|
}
|
2014-01-24 06:56:19 +00:00
|
|
|
return 1;
|
|
|
|
case LIST_END:
|
|
|
|
strbuf_puts(b, "\n]\n}\n");
|
|
|
|
if (!strbuf_overrun(b))
|
|
|
|
r->u.rhlist.phase = LIST_DONE;
|
|
|
|
// fall through...
|
2013-11-08 08:00:11 +00:00
|
|
|
case LIST_DONE:
|
2013-11-13 06:28:28 +00:00
|
|
|
return 0;
|
2013-11-07 13:10:56 +00:00
|
|
|
}
|
2013-11-13 06:28:28 +00:00
|
|
|
abort();
|
2013-11-08 08:00:11 +00:00
|
|
|
}
|
|
|
|
|
2013-12-30 07:39:56 +00:00
|
|
|
static HTTP_REQUEST_PARSER restful_rhizome_insert_end;
|
|
|
|
static int insert_mime_part_start(struct http_request *);
|
|
|
|
static int insert_mime_part_end(struct http_request *);
|
|
|
|
static int insert_mime_part_header(struct http_request *, const struct mime_part_headers *);
|
|
|
|
static int insert_mime_part_body(struct http_request *, char *, size_t);
|
|
|
|
|
|
|
|
static int restful_rhizome_insert(rhizome_http_request *r, const char *remainder)
|
|
|
|
{
|
2014-01-20 05:14:21 +00:00
|
|
|
r->http.response.header.content_type = "application/json";
|
2013-12-30 07:39:56 +00:00
|
|
|
if (*remainder)
|
|
|
|
return 404;
|
|
|
|
if (!is_rhizome_http_enabled())
|
|
|
|
return 403;
|
|
|
|
if (r->http.verb != HTTP_VERB_POST)
|
|
|
|
return 405;
|
|
|
|
int ret = authorize(&r->http);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
// Parse the request body as multipart/form-data.
|
|
|
|
assert(r->u.insert.current_part == NULL);
|
|
|
|
assert(!r->u.insert.received_author);
|
|
|
|
assert(!r->u.insert.received_secret);
|
|
|
|
assert(!r->u.insert.received_manifest);
|
|
|
|
assert(!r->u.insert.received_payload);
|
|
|
|
bzero(&r->u.insert.write, sizeof r->u.insert.write);
|
|
|
|
r->u.insert.write.blob_fd = -1;
|
|
|
|
r->finalise_union = finalise_union_rhizome_insert;
|
|
|
|
r->http.form_data.handle_mime_part_start = insert_mime_part_start;
|
|
|
|
r->http.form_data.handle_mime_part_end = insert_mime_part_end;
|
|
|
|
r->http.form_data.handle_mime_part_header = insert_mime_part_header;
|
|
|
|
r->http.form_data.handle_mime_body = insert_mime_part_body;
|
|
|
|
// Perform the insert once the body has arrived.
|
|
|
|
r->http.handle_content_end = restful_rhizome_insert_end;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char PART_MANIFEST[] = "manifest";
|
|
|
|
static char PART_PAYLOAD[] = "payload";
|
|
|
|
static char PART_AUTHOR[] = "bundle-author";
|
|
|
|
static char PART_SECRET[] = "bundle-secret";
|
|
|
|
|
|
|
|
static int insert_mime_part_start(struct http_request *hr)
|
|
|
|
{
|
|
|
|
rhizome_http_request *r = (rhizome_http_request *) hr;
|
|
|
|
assert(r->u.insert.current_part == NULL);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int http_response_form_part(rhizome_http_request *r, const char *what, const char *partname, const char *text, size_t textlen)
|
|
|
|
{
|
|
|
|
if (config.debug.rhizome)
|
|
|
|
DEBUGF("%s \"%s\" form part %s", what, partname, text ? alloca_toprint(-1, text, textlen) : "");
|
|
|
|
strbuf msg = strbuf_alloca(100);
|
|
|
|
strbuf_sprintf(msg, "%s \"%s\" form part", what, partname);
|
|
|
|
http_request_simple_response(&r->http, 403, strbuf_str(msg));
|
|
|
|
return 403;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int insert_make_manifest(rhizome_http_request *r)
|
|
|
|
{
|
|
|
|
if (!r->u.insert.received_manifest)
|
|
|
|
return http_response_form_part(r, "Missing", PART_MANIFEST, NULL, 0);
|
|
|
|
if ((r->manifest = rhizome_new_manifest())) {
|
|
|
|
if (r->u.insert.manifest_len == 0)
|
|
|
|
return 0;
|
|
|
|
assert(r->u.insert.manifest_len <= sizeof r->manifest->manifestdata);
|
|
|
|
memcpy(r->manifest->manifestdata, r->u.insert.manifest_text, r->u.insert.manifest_len);
|
|
|
|
r->manifest->manifest_all_bytes = r->u.insert.manifest_len;
|
|
|
|
int n = rhizome_manifest_parse(r->manifest);
|
|
|
|
switch (n) {
|
|
|
|
case -1:
|
|
|
|
break;
|
|
|
|
case 0:
|
|
|
|
if (!r->manifest->malformed)
|
|
|
|
return 0;
|
|
|
|
// fall through
|
|
|
|
case 1:
|
|
|
|
http_request_simple_response(&r->http, 403, "Malformed manifest");
|
|
|
|
return 403;
|
|
|
|
default:
|
|
|
|
WHYF("rhizome_manifest_parse() returned %d", n);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int insert_mime_part_header(struct http_request *hr, const struct mime_part_headers *h)
|
|
|
|
{
|
|
|
|
rhizome_http_request *r = (rhizome_http_request *) hr;
|
|
|
|
if (strcmp(h->content_disposition.name, PART_AUTHOR) == 0) {
|
|
|
|
if (r->u.insert.received_author)
|
|
|
|
return http_response_form_part(r, "Duplicate", PART_AUTHOR, NULL, 0);
|
|
|
|
r->u.insert.current_part = PART_AUTHOR;
|
|
|
|
}
|
|
|
|
else if (strcmp(h->content_disposition.name, PART_SECRET) == 0) {
|
|
|
|
if (r->u.insert.received_secret)
|
|
|
|
return http_response_form_part(r, "Duplicate", PART_SECRET, NULL, 0);
|
|
|
|
r->u.insert.current_part = PART_SECRET;
|
|
|
|
}
|
|
|
|
else if (strcmp(h->content_disposition.name, PART_MANIFEST) == 0) {
|
|
|
|
// Reject a request if it has a repeated manifest part.
|
|
|
|
if (r->u.insert.received_manifest)
|
|
|
|
return http_response_form_part(r, "Duplicate", PART_MANIFEST, NULL, 0);
|
|
|
|
assert(r->u.insert.manifest_text == NULL);
|
|
|
|
assert(r->u.insert.manifest_text_size == 0);
|
|
|
|
assert(r->u.insert.manifest_len == 0);
|
|
|
|
if ( strcmp(h->content_type.type, "rhizome-manifest") != 0
|
|
|
|
|| strcmp(h->content_type.subtype, "text") != 0
|
|
|
|
)
|
|
|
|
return http_response_form_part(r, "Unsupported Content-Type in", PART_MANIFEST, NULL, 0);
|
|
|
|
r->u.insert.current_part = PART_MANIFEST;
|
|
|
|
}
|
|
|
|
else if (strcmp(h->content_disposition.name, PART_PAYLOAD) == 0) {
|
|
|
|
// Reject a request if it has a repeated payload part.
|
|
|
|
if (r->u.insert.received_payload)
|
|
|
|
return http_response_form_part(r, "Duplicate", PART_PAYLOAD, NULL, 0);
|
|
|
|
// Reject a request if it has a missing manifest part preceding the payload part.
|
|
|
|
if (!r->u.insert.received_manifest)
|
|
|
|
return http_response_form_part(r, "Missing", PART_MANIFEST, NULL, 0);
|
|
|
|
assert(r->manifest != NULL);
|
|
|
|
r->u.insert.current_part = PART_PAYLOAD;
|
|
|
|
// If the manifest does not contain a 'name' field, then assign it from the payload filename.
|
|
|
|
if ( strcasecmp(RHIZOME_SERVICE_FILE, r->manifest->service) == 0
|
|
|
|
&& r->manifest->name == NULL
|
|
|
|
&& *h->content_disposition.filename
|
|
|
|
)
|
|
|
|
rhizome_manifest_set_name_from_path(r->manifest, h->content_disposition.filename);
|
|
|
|
// Start writing the payload content into the Rhizome store. Note: r->manifest->filesize can be
|
|
|
|
// RHIZOME_SIZE_UNSET at this point, if the manifest did not contain a 'filesize' field.
|
|
|
|
r->u.insert.payload_status = rhizome_write_open_manifest(&r->u.insert.write, r->manifest);
|
|
|
|
r->u.insert.payload_size = 0;
|
|
|
|
switch (r->u.insert.payload_status) {
|
|
|
|
case RHIZOME_PAYLOAD_STATUS_ERROR:
|
|
|
|
WHYF("rhizome_write_open_manifest() returned %d", r->u.insert.payload_status);
|
|
|
|
return 500;
|
|
|
|
case RHIZOME_PAYLOAD_STATUS_STORED:
|
|
|
|
// TODO: initialise payload hash so it can be compared with stored payload
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return http_response_form_part(r, "Unsupported", h->content_disposition.name, NULL, 0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int accumulate_text(rhizome_http_request *r, const char *partname, char *textbuf, size_t textsiz, size_t *textlenp, const char *buf, size_t len)
|
|
|
|
{
|
|
|
|
if (len) {
|
|
|
|
size_t newlen = *textlenp + len;
|
|
|
|
if (newlen > textsiz) {
|
|
|
|
if (config.debug.rhizome)
|
|
|
|
DEBUGF("Form part \"%s\" too long, %zu bytes overflows maximum %zu by %zu",
|
|
|
|
partname, newlen, textsiz, (size_t)(newlen - textsiz)
|
|
|
|
);
|
|
|
|
strbuf msg = strbuf_alloca(100);
|
|
|
|
strbuf_sprintf(msg, "Overflow in \"%s\" form part", partname);
|
|
|
|
http_request_simple_response(&r->http, 403, strbuf_str(msg));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
memcpy(textbuf + *textlenp, buf, len);
|
|
|
|
*textlenp = newlen;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int insert_mime_part_body(struct http_request *hr, char *buf, size_t len)
|
|
|
|
{
|
|
|
|
rhizome_http_request *r = (rhizome_http_request *) hr;
|
|
|
|
if (r->u.insert.current_part == PART_AUTHOR) {
|
|
|
|
accumulate_text(r, PART_AUTHOR,
|
|
|
|
r->u.insert.author_hex,
|
|
|
|
sizeof r->u.insert.author_hex,
|
|
|
|
&r->u.insert.author_hex_len,
|
|
|
|
buf, len);
|
|
|
|
}
|
|
|
|
else if (r->u.insert.current_part == PART_SECRET) {
|
|
|
|
accumulate_text(r, PART_SECRET,
|
|
|
|
r->u.insert.secret_hex,
|
|
|
|
sizeof r->u.insert.secret_hex,
|
|
|
|
&r->u.insert.secret_hex_len,
|
|
|
|
buf, len);
|
|
|
|
}
|
|
|
|
else if (r->u.insert.current_part == PART_MANIFEST) {
|
|
|
|
if (len == 0)
|
|
|
|
return 0;
|
|
|
|
size_t newlen = r->u.insert.manifest_len + len;
|
|
|
|
if (newlen > MAX_MANIFEST_BYTES) {
|
|
|
|
if (config.debug.rhizome)
|
|
|
|
DEBUGF("manifest too large, %zu bytes overflows maximum %zu by %zu",
|
2014-01-06 02:06:00 +00:00
|
|
|
newlen, (size_t)MAX_MANIFEST_BYTES, (size_t)(newlen - MAX_MANIFEST_BYTES)
|
2013-12-30 07:39:56 +00:00
|
|
|
);
|
|
|
|
http_request_simple_response(&r->http, 403, "Manifest size overflow");
|
|
|
|
return 403;
|
|
|
|
}
|
|
|
|
if (newlen > r->u.insert.manifest_text_size) {
|
|
|
|
if ((r->u.insert.manifest_text = erealloc(r->u.insert.manifest_text, newlen)) == NULL)
|
|
|
|
return 500;
|
|
|
|
r->u.insert.manifest_text_size = newlen;
|
|
|
|
}
|
|
|
|
memcpy(r->u.insert.manifest_text + r->u.insert.manifest_len, buf, len);
|
|
|
|
r->u.insert.manifest_len = newlen;
|
|
|
|
}
|
|
|
|
else if (r->u.insert.current_part == PART_PAYLOAD) {
|
|
|
|
r->u.insert.payload_size += len;
|
|
|
|
switch (r->u.insert.payload_status) {
|
|
|
|
case RHIZOME_PAYLOAD_STATUS_NEW:
|
|
|
|
if (rhizome_write_buffer(&r->u.insert.write, (unsigned char *)buf, len) == -1)
|
|
|
|
return 500;
|
|
|
|
break;
|
|
|
|
case RHIZOME_PAYLOAD_STATUS_STORED:
|
|
|
|
// TODO: calculate payload hash so it can be compared with stored payload
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
FATALF("current_part = %s", alloca_str_toprint(r->u.insert.current_part));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int insert_mime_part_end(struct http_request *hr)
|
|
|
|
{
|
|
|
|
rhizome_http_request *r = (rhizome_http_request *) hr;
|
|
|
|
if (r->u.insert.current_part == PART_AUTHOR) {
|
|
|
|
if ( r->u.insert.author_hex_len != sizeof r->u.insert.author_hex
|
|
|
|
|| strn_to_sid_t(&r->u.insert.author, r->u.insert.author_hex, NULL) == -1
|
|
|
|
)
|
|
|
|
return http_response_form_part(r, "Invalid", PART_AUTHOR, r->u.insert.author_hex, r->u.insert.author_hex_len);
|
|
|
|
r->u.insert.received_author = 1;
|
|
|
|
if (config.debug.rhizome)
|
|
|
|
DEBUGF("received %s = %s", PART_AUTHOR, alloca_tohex_sid_t(r->u.insert.author));
|
|
|
|
}
|
|
|
|
else if (r->u.insert.current_part == PART_SECRET) {
|
|
|
|
if ( r->u.insert.secret_hex_len != sizeof r->u.insert.secret_hex
|
|
|
|
|| strn_to_rhizome_bk_t(&r->u.insert.bundle_secret, r->u.insert.secret_hex, NULL) == -1
|
|
|
|
)
|
|
|
|
return http_response_form_part(r, "Invalid", PART_SECRET, r->u.insert.secret_hex, r->u.insert.secret_hex_len);
|
|
|
|
r->u.insert.received_secret = 1;
|
|
|
|
if (config.debug.rhizome)
|
|
|
|
DEBUGF("received %s = %s", PART_SECRET, alloca_tohex_rhizome_bk_t(r->u.insert.bundle_secret));
|
|
|
|
}
|
|
|
|
else if (r->u.insert.current_part == PART_MANIFEST) {
|
|
|
|
r->u.insert.received_manifest = 1;
|
|
|
|
int result = insert_make_manifest(r);
|
|
|
|
if (result)
|
|
|
|
return result;
|
|
|
|
if (r->manifest->has_id && r->u.insert.received_secret)
|
|
|
|
rhizome_apply_bundle_secret(r->manifest, &r->u.insert.bundle_secret);
|
|
|
|
if (r->manifest->service == NULL)
|
|
|
|
rhizome_manifest_set_service(r->manifest, RHIZOME_SERVICE_FILE);
|
|
|
|
if (rhizome_fill_manifest(r->manifest, NULL, r->u.insert.received_author ? &r->u.insert.author: NULL) == -1) {
|
|
|
|
WHY("rhizome_fill_manifest() failed");
|
|
|
|
return 500;
|
|
|
|
}
|
|
|
|
if (r->manifest->is_journal) {
|
|
|
|
http_request_simple_response(&r->http, 403, "Insert not supported for journals");
|
|
|
|
return 403;
|
|
|
|
}
|
|
|
|
assert(r->manifest != NULL);
|
|
|
|
}
|
|
|
|
else if (r->u.insert.current_part == PART_PAYLOAD) {
|
|
|
|
r->u.insert.received_payload = 1;
|
|
|
|
if (r->u.insert.payload_status == RHIZOME_PAYLOAD_STATUS_NEW)
|
|
|
|
r->u.insert.payload_status = rhizome_finish_write(&r->u.insert.write);
|
|
|
|
if (r->u.insert.payload_status == RHIZOME_PAYLOAD_STATUS_ERROR) {
|
|
|
|
WHYF("rhizome_finish_write() returned status = %d", r->u.insert.payload_status);
|
|
|
|
return 500;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
FATALF("current_part = %s", alloca_str_toprint(r->u.insert.current_part));
|
|
|
|
r->u.insert.current_part = NULL;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int restful_rhizome_insert_end(struct http_request *hr)
|
|
|
|
{
|
|
|
|
rhizome_http_request *r = (rhizome_http_request *) hr;
|
|
|
|
if (!r->u.insert.received_manifest)
|
|
|
|
return http_response_form_part(r, "Missing", PART_MANIFEST, NULL, 0);
|
|
|
|
if (!r->u.insert.received_payload)
|
|
|
|
return http_response_form_part(r, "Missing", PART_PAYLOAD, NULL, 0);
|
|
|
|
// Fill in the missing manifest fields and ensure payload and manifest are consistent.
|
|
|
|
assert(r->manifest != NULL);
|
|
|
|
assert(r->u.insert.write.file_length != RHIZOME_SIZE_UNSET);
|
|
|
|
switch (r->u.insert.payload_status) {
|
|
|
|
case RHIZOME_PAYLOAD_STATUS_ERROR:
|
|
|
|
return 500;
|
|
|
|
case RHIZOME_PAYLOAD_STATUS_NEW:
|
|
|
|
if (r->manifest->filesize == RHIZOME_SIZE_UNSET)
|
|
|
|
rhizome_manifest_set_filesize(r->manifest, r->u.insert.write.file_length);
|
|
|
|
// fall through
|
|
|
|
case RHIZOME_PAYLOAD_STATUS_STORED:
|
|
|
|
// TODO: check that stored hash matches received payload's hash
|
|
|
|
// fall through
|
|
|
|
case RHIZOME_PAYLOAD_STATUS_EMPTY:
|
|
|
|
assert(r->manifest->filesize != RHIZOME_SIZE_UNSET);
|
|
|
|
if (r->u.insert.payload_size == r->manifest->filesize)
|
|
|
|
break;
|
|
|
|
// fall through
|
|
|
|
case RHIZOME_PAYLOAD_STATUS_WRONG_SIZE:
|
|
|
|
{
|
|
|
|
strbuf msg = strbuf_alloca(200);
|
|
|
|
strbuf_sprintf(msg, "Payload size (%"PRIu64") contradicts manifest (filesize=%"PRIu64")", r->u.insert.payload_size, r->manifest->filesize);
|
|
|
|
http_request_simple_response(&r->http, 403, strbuf_str(msg));
|
|
|
|
return 403;
|
|
|
|
}
|
|
|
|
case RHIZOME_PAYLOAD_STATUS_WRONG_HASH:
|
|
|
|
http_request_simple_response(&r->http, 403, "Payload hash contradicts manifest");
|
|
|
|
return 403;
|
|
|
|
case RHIZOME_PAYLOAD_STATUS_CRYPTO_FAIL:
|
|
|
|
http_request_simple_response(&r->http, 403, "Missing bundle secret");
|
|
|
|
return 403;
|
|
|
|
default:
|
|
|
|
FATALF("payload_status = %d", r->u.insert.payload_status);
|
|
|
|
}
|
|
|
|
// Finalise the manifest and add it to the store.
|
|
|
|
if (r->manifest->filesize) {
|
|
|
|
if (!r->manifest->has_filehash)
|
|
|
|
rhizome_manifest_set_filehash(r->manifest, &r->u.insert.write.id);
|
|
|
|
else
|
|
|
|
assert(cmp_rhizome_filehash_t(&r->u.insert.write.id, &r->manifest->filehash) == 0);
|
|
|
|
}
|
|
|
|
if (!rhizome_manifest_validate(r->manifest) || r->manifest->malformed) {
|
|
|
|
http_request_simple_response(&r->http, 403, "Manifest is malformed");
|
|
|
|
return 403;
|
|
|
|
}
|
|
|
|
if (!r->manifest->haveSecret) {
|
|
|
|
http_request_simple_response(&r->http, 403, "Missing bundle secret");
|
|
|
|
return 403;
|
|
|
|
}
|
|
|
|
rhizome_manifest *mout = NULL;
|
|
|
|
int result;
|
|
|
|
switch (rhizome_manifest_finalise(r->manifest, &mout, !r->u.insert.force_new)) {
|
|
|
|
case RHIZOME_BUNDLE_STATUS_NEW:
|
|
|
|
result = 201;
|
|
|
|
if (mout && mout != r->manifest)
|
|
|
|
rhizome_manifest_free(mout);
|
|
|
|
mout = NULL;
|
|
|
|
break;
|
|
|
|
case RHIZOME_BUNDLE_STATUS_SAME:
|
|
|
|
case RHIZOME_BUNDLE_STATUS_OLD:
|
|
|
|
case RHIZOME_BUNDLE_STATUS_DUPLICATE:
|
|
|
|
result = 200;
|
|
|
|
break;
|
|
|
|
case RHIZOME_BUNDLE_STATUS_INVALID:
|
|
|
|
result = 403;
|
|
|
|
break;
|
|
|
|
case RHIZOME_BUNDLE_STATUS_ERROR:
|
|
|
|
default:
|
|
|
|
result = 500;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (mout && mout != r->manifest) {
|
|
|
|
rhizome_manifest_free(r->manifest);
|
|
|
|
r->manifest = mout;
|
|
|
|
}
|
|
|
|
if (result >= 400)
|
|
|
|
return result;
|
|
|
|
rhizome_authenticate_author(r->manifest);
|
|
|
|
r->http.render_extra_headers = render_manifest_headers;
|
|
|
|
http_request_response_static(&r->http, result, "rhizome-manifest/text",
|
|
|
|
(const char *)r->manifest->manifestdata, r->manifest->manifest_all_bytes
|
|
|
|
);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-12-16 02:02:16 +00:00
|
|
|
static int rhizome_response_content_init_filehash(rhizome_http_request *r, const rhizome_filehash_t *hash);
|
|
|
|
static int rhizome_response_content_init_payload(rhizome_http_request *r, rhizome_manifest *);
|
2013-12-16 01:51:45 +00:00
|
|
|
|
2013-12-13 06:06:37 +00:00
|
|
|
static HTTP_CONTENT_GENERATOR rhizome_payload_content;
|
|
|
|
|
|
|
|
static HTTP_HANDLER restful_rhizome_bid_rhm;
|
|
|
|
static HTTP_HANDLER restful_rhizome_bid_raw_bin;
|
2013-12-16 02:02:16 +00:00
|
|
|
static HTTP_HANDLER restful_rhizome_bid_decrypted_bin;
|
2013-12-13 06:06:37 +00:00
|
|
|
|
2013-12-05 06:55:58 +00:00
|
|
|
static int restful_rhizome_(rhizome_http_request *r, const char *remainder)
|
|
|
|
{
|
2014-01-20 05:14:21 +00:00
|
|
|
r->http.response.header.content_type = "application/json";
|
2013-12-05 06:55:58 +00:00
|
|
|
if (!is_rhizome_http_enabled())
|
2013-12-16 01:51:45 +00:00
|
|
|
return 403;
|
2013-12-13 06:06:37 +00:00
|
|
|
HTTP_HANDLER *handler = NULL;
|
2013-12-05 06:55:58 +00:00
|
|
|
rhizome_bid_t bid;
|
|
|
|
const char *end;
|
2013-12-13 06:06:37 +00:00
|
|
|
if (strn_to_rhizome_bid_t(&bid, remainder, &end) != -1) {
|
|
|
|
if (strcmp(end, ".rhm") == 0) {
|
|
|
|
handler = restful_rhizome_bid_rhm;
|
|
|
|
remainder = "";
|
|
|
|
} else if (strcmp(end, "/raw.bin") == 0) {
|
|
|
|
handler = restful_rhizome_bid_raw_bin;
|
|
|
|
remainder = "";
|
2013-12-16 02:02:16 +00:00
|
|
|
} else if (strcmp(end, "/decrypted.bin") == 0) {
|
|
|
|
handler = restful_rhizome_bid_decrypted_bin;
|
|
|
|
remainder = "";
|
2013-12-13 06:06:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (handler == NULL)
|
2013-12-16 01:51:45 +00:00
|
|
|
return 404;
|
|
|
|
if (r->http.verb != HTTP_VERB_GET)
|
|
|
|
return 405;
|
|
|
|
int ret = authorize(&r->http);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2013-12-30 07:39:56 +00:00
|
|
|
if ((r->manifest = rhizome_new_manifest()) == NULL)
|
|
|
|
return 500;
|
|
|
|
ret = rhizome_retrieve_manifest(&bid, r->manifest);
|
|
|
|
if (ret == -1)
|
2013-12-16 01:51:45 +00:00
|
|
|
return 500;
|
|
|
|
if (ret == 0) {
|
2013-12-30 07:39:56 +00:00
|
|
|
rhizome_authenticate_author(r->manifest);
|
2013-12-13 04:19:55 +00:00
|
|
|
r->http.render_extra_headers = render_manifest_headers;
|
2013-12-13 06:06:37 +00:00
|
|
|
} else {
|
|
|
|
assert(r->manifest == NULL);
|
|
|
|
assert(r->http.render_extra_headers == NULL);
|
2013-12-13 04:19:55 +00:00
|
|
|
}
|
2013-12-13 06:06:37 +00:00
|
|
|
ret = handler(r, remainder);
|
2013-12-16 01:51:45 +00:00
|
|
|
return ret;
|
2013-12-05 06:55:58 +00:00
|
|
|
}
|
|
|
|
|
2013-12-13 06:06:37 +00:00
|
|
|
static int restful_rhizome_bid_rhm(rhizome_http_request *r, const char *remainder)
|
|
|
|
{
|
2013-12-16 01:51:45 +00:00
|
|
|
if (*remainder || r->manifest == NULL)
|
|
|
|
return 404;
|
2013-12-30 07:39:56 +00:00
|
|
|
http_request_response_static(&r->http, 200, "rhizome-manifest/text",
|
2013-12-13 06:06:37 +00:00
|
|
|
(const char *)r->manifest->manifestdata, r->manifest->manifest_all_bytes
|
|
|
|
);
|
2013-12-16 01:51:45 +00:00
|
|
|
return 1;
|
2013-12-13 06:06:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int restful_rhizome_bid_raw_bin(rhizome_http_request *r, const char *remainder)
|
|
|
|
{
|
2013-12-16 01:51:45 +00:00
|
|
|
if (*remainder || r->manifest == NULL)
|
|
|
|
return 404;
|
2013-12-13 06:06:37 +00:00
|
|
|
if (r->manifest->filesize == 0) {
|
|
|
|
http_request_response_static(&r->http, 200, "application/binary", "", 0);
|
2013-12-16 01:51:45 +00:00
|
|
|
return 1;
|
2013-12-13 06:06:37 +00:00
|
|
|
}
|
2013-12-16 02:02:16 +00:00
|
|
|
int ret = rhizome_response_content_init_filehash(r, &r->manifest->filehash);
|
2013-12-13 06:06:37 +00:00
|
|
|
if (ret)
|
2013-12-16 01:51:45 +00:00
|
|
|
return ret;
|
2013-12-13 06:06:37 +00:00
|
|
|
http_request_response_generated(&r->http, 200, "application/binary", rhizome_payload_content);
|
2013-12-16 01:51:45 +00:00
|
|
|
return 1;
|
2013-12-13 06:06:37 +00:00
|
|
|
}
|
|
|
|
|
2013-12-16 02:02:16 +00:00
|
|
|
static int restful_rhizome_bid_decrypted_bin(rhizome_http_request *r, const char *remainder)
|
|
|
|
{
|
|
|
|
if (*remainder || r->manifest == NULL)
|
|
|
|
return 404;
|
|
|
|
if (r->manifest->filesize == 0) {
|
|
|
|
// TODO use Content Type from manifest (once it is implemented)
|
|
|
|
http_request_response_static(&r->http, 200, "application/binary", "", 0);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
int ret = rhizome_response_content_init_payload(r, r->manifest);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
// TODO use Content Type from manifest (once it is implemented)
|
|
|
|
http_request_response_generated(&r->http, 200, "application/binary", rhizome_payload_content);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-01-22 07:23:29 +00:00
|
|
|
static HTTP_HANDLER restful_meshms_conversationlist_json;
|
2014-01-24 06:56:19 +00:00
|
|
|
static HTTP_HANDLER restful_meshms_messagelist_json;
|
2014-01-22 07:23:29 +00:00
|
|
|
|
|
|
|
static int restful_meshms_(rhizome_http_request *r, const char *remainder)
|
|
|
|
{
|
|
|
|
r->http.response.header.content_type = "application/json";
|
|
|
|
if (!is_rhizome_http_enabled())
|
|
|
|
return 403;
|
|
|
|
HTTP_HANDLER *handler = NULL;
|
|
|
|
const char *end;
|
2014-01-24 06:56:19 +00:00
|
|
|
if (strn_to_sid_t(&r->sid1, remainder, &end) != -1) {
|
|
|
|
remainder = end;
|
|
|
|
if (strcmp(remainder, "/conversationlist.json") == 0) {
|
2014-01-22 07:23:29 +00:00
|
|
|
handler = restful_meshms_conversationlist_json;
|
|
|
|
remainder = "";
|
2014-01-24 06:56:19 +00:00
|
|
|
} else if (*remainder == '/' && strn_to_sid_t(&r->sid2, remainder + 1, &end) != -1) {
|
|
|
|
remainder = end;
|
|
|
|
if (strcmp(remainder, "/messagelist.json") == 0) {
|
|
|
|
handler = restful_meshms_messagelist_json;
|
|
|
|
remainder = "";
|
|
|
|
}
|
2014-01-22 07:23:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (handler == NULL)
|
|
|
|
return 404;
|
|
|
|
if (r->http.verb != HTTP_VERB_GET)
|
|
|
|
return 405;
|
|
|
|
int ret = authorize(&r->http);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
ret = handler(r, remainder);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HTTP_CONTENT_GENERATOR restful_meshms_conversationlist_json_content;
|
|
|
|
|
|
|
|
static int restful_meshms_conversationlist_json(rhizome_http_request *r, const char *remainder)
|
|
|
|
{
|
|
|
|
if (*remainder)
|
|
|
|
return 404;
|
|
|
|
assert(r->finalise_union == NULL);
|
|
|
|
r->finalise_union = finalise_union_meshms_conversationlist;
|
|
|
|
r->u.mclist.phase = LIST_HEADER;
|
|
|
|
r->u.mclist.rowcount = 0;
|
|
|
|
r->u.mclist.conv = NULL;
|
2014-01-24 06:56:19 +00:00
|
|
|
if (meshms_conversations_list(&r->sid1, NULL, &r->u.mclist.conv))
|
2014-01-22 07:23:29 +00:00
|
|
|
return -1;
|
|
|
|
meshms_conversation_iterator_start(&r->u.mclist.iter, r->u.mclist.conv);
|
|
|
|
http_request_response_generated(&r->http, 200, "application/json", restful_meshms_conversationlist_json_content);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HTTP_CONTENT_GENERATOR_STRBUF_CHUNKER restful_meshms_conversationlist_json_content_chunk;
|
|
|
|
|
|
|
|
static int restful_meshms_conversationlist_json_content(struct http_request *hr, unsigned char *buf, size_t bufsz, struct http_content_generator_result *result)
|
|
|
|
{
|
|
|
|
return generate_http_content_from_strbuf_chunks(hr, (char *)buf, bufsz, result, restful_meshms_conversationlist_json_content_chunk);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int restful_meshms_conversationlist_json_content_chunk(struct http_request *hr, strbuf b)
|
|
|
|
{
|
|
|
|
rhizome_http_request *r = (rhizome_http_request *) hr;
|
|
|
|
const char *headers[] = {
|
|
|
|
"_id",
|
|
|
|
"recipient",
|
|
|
|
"read",
|
|
|
|
"last_message",
|
|
|
|
"read_offset"
|
|
|
|
};
|
|
|
|
switch (r->u.mclist.phase) {
|
|
|
|
case LIST_HEADER:
|
|
|
|
strbuf_puts(b, "{\n\"header\":[");
|
|
|
|
unsigned i;
|
|
|
|
for (i = 0; i != NELS(headers); ++i) {
|
|
|
|
if (i)
|
|
|
|
strbuf_putc(b, ',');
|
|
|
|
strbuf_json_string(b, headers[i]);
|
|
|
|
}
|
|
|
|
strbuf_puts(b, "],\n\"rows\":[");
|
|
|
|
if (!strbuf_overrun(b))
|
|
|
|
r->u.mclist.phase = LIST_ROWS;
|
|
|
|
return 1;
|
|
|
|
case LIST_ROWS:
|
|
|
|
if (r->u.mclist.iter.current == NULL) {
|
2014-01-24 06:56:19 +00:00
|
|
|
r->u.mclist.phase = LIST_END;
|
|
|
|
// fall through...
|
2014-01-22 07:23:29 +00:00
|
|
|
} else {
|
|
|
|
if (r->u.mclist.rowcount != 0)
|
|
|
|
strbuf_putc(b, ',');
|
|
|
|
strbuf_puts(b, "\n[");
|
|
|
|
strbuf_sprintf(b, "%u", r->u.mclist.rowcount);
|
|
|
|
strbuf_putc(b, ',');
|
|
|
|
strbuf_json_hex(b, r->u.mclist.iter.current->them.binary, sizeof r->u.mclist.iter.current->them.binary);
|
|
|
|
strbuf_putc(b, ',');
|
|
|
|
strbuf_json_boolean(b, r->u.mclist.iter.current->read_offset >= r->u.mclist.iter.current->their_last_message);
|
|
|
|
strbuf_putc(b, ',');
|
|
|
|
strbuf_sprintf(b, "%"PRIu64, r->u.mclist.iter.current->their_last_message);
|
|
|
|
strbuf_putc(b, ',');
|
|
|
|
strbuf_sprintf(b, "%"PRIu64, r->u.mclist.iter.current->read_offset);
|
|
|
|
strbuf_puts(b, "]");
|
|
|
|
if (!strbuf_overrun(b)) {
|
|
|
|
meshms_conversation_iterator_advance(&r->u.mclist.iter);
|
|
|
|
++r->u.mclist.rowcount;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
2014-01-24 06:56:19 +00:00
|
|
|
// fall through...
|
|
|
|
case LIST_END:
|
|
|
|
strbuf_puts(b, "\n]\n}\n");
|
|
|
|
if (!strbuf_overrun(b))
|
|
|
|
r->u.mclist.phase = LIST_DONE;
|
|
|
|
// fall through...
|
|
|
|
case LIST_DONE:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
abort();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define MESHMS_TOKEN_STRLEN (BASE64_ENCODED_LEN(sizeof(rhizome_bid_t) + sizeof(uint64_t)))
|
|
|
|
#define alloca_meshms_token(bid, offset) meshms_token_to_str(alloca(MESHMS_TOKEN_STRLEN + 1), (bid), (offset))
|
|
|
|
|
|
|
|
static char *meshms_token_to_str(char *buf, const rhizome_bid_t *bid, uint64_t offset)
|
|
|
|
{
|
|
|
|
struct iovec iov[2];
|
|
|
|
iov[0].iov_base = (void *) bid->binary;
|
|
|
|
iov[0].iov_len = sizeof bid->binary;
|
|
|
|
iov[1].iov_base = &offset;
|
|
|
|
iov[1].iov_len = sizeof offset;
|
|
|
|
size_t n = base64url_encodev(buf, iov, 2);
|
|
|
|
assert(n == MESHMS_TOKEN_STRLEN);
|
|
|
|
buf[n] = '\0';
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HTTP_CONTENT_GENERATOR restful_meshms_messagelist_json_content;
|
|
|
|
|
|
|
|
static int restful_meshms_messagelist_json(rhizome_http_request *r, const char *remainder)
|
|
|
|
{
|
|
|
|
if (*remainder)
|
|
|
|
return 404;
|
|
|
|
assert(r->finalise_union == NULL);
|
|
|
|
r->finalise_union = finalise_union_meshms_messagelist;
|
|
|
|
r->u.msglist.rowcount = 0;
|
|
|
|
meshms_message_iterator_open(&r->u.msglist.iter, &r->sid1, &r->sid2);
|
2014-01-28 06:28:44 +00:00
|
|
|
if ((r->u.msglist.finished = meshms_message_iterator_prev(&r->u.msglist.iter)) == -1)
|
2014-01-24 06:56:19 +00:00
|
|
|
return -1;
|
|
|
|
r->u.msglist.phase = LIST_HEADER;
|
|
|
|
http_request_response_generated(&r->http, 200, "application/json", restful_meshms_messagelist_json_content);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HTTP_CONTENT_GENERATOR_STRBUF_CHUNKER restful_meshms_messagelist_json_content_chunk;
|
|
|
|
|
|
|
|
static int restful_meshms_messagelist_json_content(struct http_request *hr, unsigned char *buf, size_t bufsz, struct http_content_generator_result *result)
|
|
|
|
{
|
|
|
|
return generate_http_content_from_strbuf_chunks(hr, (char *)buf, bufsz, result, restful_meshms_messagelist_json_content_chunk);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int restful_meshms_messagelist_json_content_chunk(struct http_request *hr, strbuf b)
|
|
|
|
{
|
|
|
|
rhizome_http_request *r = (rhizome_http_request *) hr;
|
|
|
|
const char *headers[] = {
|
|
|
|
"token",
|
|
|
|
"text",
|
|
|
|
"offset",
|
|
|
|
"direction",
|
|
|
|
"delivered",
|
|
|
|
"read"
|
|
|
|
};
|
|
|
|
switch (r->u.msglist.phase) {
|
|
|
|
case LIST_HEADER:
|
|
|
|
strbuf_sprintf(b, "{\n\"received_read_offset\":%"PRIu64",\n\"sent_ack_offset\":%"PRIu64",\n\"header\":[",
|
|
|
|
r->u.msglist.iter.received_read_offset,
|
|
|
|
r->u.msglist.iter.sent_ack_offset
|
|
|
|
);
|
|
|
|
unsigned i;
|
|
|
|
for (i = 0; i != NELS(headers); ++i) {
|
|
|
|
if (i)
|
|
|
|
strbuf_putc(b, ',');
|
|
|
|
strbuf_json_string(b, headers[i]);
|
|
|
|
}
|
|
|
|
strbuf_puts(b, "],\n\"rows\":[");
|
|
|
|
if (!strbuf_overrun(b))
|
|
|
|
r->u.msglist.phase = r->u.msglist.finished ? LIST_END : LIST_ROWS;
|
|
|
|
return 1;
|
|
|
|
case LIST_ROWS:
|
|
|
|
if (!r->u.msglist.finished) {
|
|
|
|
if (r->u.msglist.rowcount != 0)
|
|
|
|
strbuf_putc(b, ',');
|
|
|
|
strbuf_puts(b, "\n[");
|
|
|
|
const rhizome_bid_t *ply_bid = r->u.msglist.iter.direction == SENT ? &r->u.msglist.iter._conv->my_ply.bundle_id : &r->u.msglist.iter._conv->their_ply.bundle_id;
|
|
|
|
strbuf_json_string(b, alloca_meshms_token(ply_bid, r->u.msglist.iter.offset));
|
|
|
|
strbuf_putc(b, ',');
|
|
|
|
strbuf_json_string(b, r->u.msglist.iter.text);
|
|
|
|
strbuf_sprintf(b, ",%"PRIu64",", r->u.msglist.iter.offset);
|
|
|
|
switch (r->u.msglist.iter.direction) {
|
|
|
|
case SENT:
|
|
|
|
strbuf_json_string(b, ">");
|
|
|
|
strbuf_putc(b, ',');
|
|
|
|
strbuf_json_boolean(b, r->u.msglist.iter.delivered);
|
|
|
|
strbuf_putc(b, ',');
|
|
|
|
strbuf_json_boolean(b, 0);
|
|
|
|
break;
|
|
|
|
case RECEIVED:
|
|
|
|
strbuf_json_string(b, "<");
|
|
|
|
strbuf_putc(b, ',');
|
|
|
|
strbuf_json_boolean(b, 1);
|
|
|
|
strbuf_putc(b, ',');
|
|
|
|
strbuf_json_boolean(b, r->u.msglist.iter.read);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
strbuf_puts(b, "]");
|
|
|
|
if (!strbuf_overrun(b)) {
|
|
|
|
++r->u.msglist.rowcount;
|
2014-01-28 06:28:44 +00:00
|
|
|
if ((r->u.msglist.finished = meshms_message_iterator_prev(&r->u.msglist.iter)) == -1)
|
2014-01-24 06:56:19 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
r->u.msglist.phase = LIST_END;
|
|
|
|
// fall through...
|
|
|
|
case LIST_END:
|
|
|
|
strbuf_puts(b, "\n]\n}\n");
|
|
|
|
if (!strbuf_overrun(b))
|
|
|
|
r->u.msglist.phase = LIST_DONE;
|
|
|
|
// fall through...
|
2014-01-22 07:23:29 +00:00
|
|
|
case LIST_DONE:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
abort();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
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-12-16 01:51:45 +00:00
|
|
|
if (r->http.verb != HTTP_VERB_GET)
|
|
|
|
return 405;
|
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-12-16 01:51:45 +00:00
|
|
|
return 404;
|
2013-09-24 00:20:45 +00:00
|
|
|
struct subscriber *neighbour = find_subscriber(neighbour_sid.binary, sizeof(neighbour_sid.binary), 0);
|
|
|
|
if (!neighbour)
|
2013-12-16 01:51:45 +00:00
|
|
|
return 404;
|
2013-09-24 00:20:45 +00:00
|
|
|
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-12-16 01:51:45 +00:00
|
|
|
return 1;
|
2013-09-24 00:20:45 +00:00
|
|
|
}
|
|
|
|
|
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-12-16 01:51:45 +00:00
|
|
|
if (r->http.verb != HTTP_VERB_GET)
|
|
|
|
return 405;
|
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)
|
2013-12-16 01:51:45 +00:00
|
|
|
return 404;
|
2013-09-24 00:20:45 +00:00
|
|
|
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-12-16 01:51:45 +00:00
|
|
|
return 1;
|
2013-09-24 00:20:45 +00:00
|
|
|
}
|
|
|
|
|
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())
|
2013-12-16 01:51:45 +00:00
|
|
|
return 403;
|
2013-09-24 00:20:45 +00:00
|
|
|
if (*remainder)
|
2013-12-16 01:51:45 +00:00
|
|
|
return 404;
|
|
|
|
if (r->http.verb != HTTP_VERB_GET)
|
|
|
|
return 405;
|
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-12-16 01:51:45 +00:00
|
|
|
return 1;
|
2013-09-24 00:20:45 +00:00
|
|
|
}
|
|
|
|
|
2013-12-16 02:02:16 +00:00
|
|
|
static int rhizome_response_content_init_read_state(rhizome_http_request *r)
|
2013-12-13 06:06:37 +00:00
|
|
|
{
|
|
|
|
if (r->u.read_state.length == RHIZOME_SIZE_UNSET && rhizome_read(&r->u.read_state, NULL, 0)) {
|
|
|
|
rhizome_read_close(&r->u.read_state);
|
2013-12-16 01:51:45 +00:00
|
|
|
return 404;
|
2013-12-13 06:06:37 +00:00
|
|
|
}
|
|
|
|
assert(r->u.read_state.length != RHIZOME_SIZE_UNSET);
|
|
|
|
r->http.response.header.resource_length = r->u.read_state.length;
|
|
|
|
if (r->http.request_header.content_range_count > 0) {
|
|
|
|
assert(r->http.request_header.content_range_count == 1);
|
|
|
|
struct http_range closed;
|
|
|
|
unsigned n = http_range_close(&closed, r->http.request_header.content_ranges, 1, r->u.read_state.length);
|
2013-12-16 01:51:45 +00:00
|
|
|
if (n == 0 || http_range_bytes(&closed, 1) == 0)
|
|
|
|
return 416; // Request Range Not Satisfiable
|
2013-12-13 06:06:37 +00:00
|
|
|
r->http.response.header.content_range_start = closed.first;
|
|
|
|
r->http.response.header.content_length = closed.last - closed.first + 1;
|
|
|
|
r->u.read_state.offset = closed.first;
|
|
|
|
} else {
|
|
|
|
r->http.response.header.content_range_start = 0;
|
|
|
|
r->http.response.header.content_length = r->http.response.header.resource_length;
|
|
|
|
r->u.read_state.offset = 0;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-12-16 02:02:16 +00:00
|
|
|
static int rhizome_response_content_init_filehash(rhizome_http_request *r, const rhizome_filehash_t *hash)
|
|
|
|
{
|
|
|
|
bzero(&r->u.read_state, sizeof r->u.read_state);
|
2013-12-30 07:39:56 +00:00
|
|
|
r->u.read_state.blob_fd = -1;
|
|
|
|
assert(r->finalise_union == NULL);
|
|
|
|
r->finalise_union = finalise_union_read_state;
|
2013-12-27 18:56:22 +00:00
|
|
|
enum rhizome_payload_status status = rhizome_open_read(&r->u.read_state, hash);
|
|
|
|
switch (status) {
|
|
|
|
case RHIZOME_PAYLOAD_STATUS_EMPTY:
|
|
|
|
case RHIZOME_PAYLOAD_STATUS_STORED:
|
|
|
|
break;
|
|
|
|
case RHIZOME_PAYLOAD_STATUS_NEW:
|
|
|
|
return 404;
|
|
|
|
case RHIZOME_PAYLOAD_STATUS_ERROR:
|
|
|
|
case RHIZOME_PAYLOAD_STATUS_WRONG_SIZE:
|
|
|
|
case RHIZOME_PAYLOAD_STATUS_WRONG_HASH:
|
|
|
|
case RHIZOME_PAYLOAD_STATUS_CRYPTO_FAIL:
|
|
|
|
return -1;
|
|
|
|
default:
|
|
|
|
FATALF("status = %d", status);
|
|
|
|
}
|
2013-12-16 02:02:16 +00:00
|
|
|
return rhizome_response_content_init_read_state(r);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int rhizome_response_content_init_payload(rhizome_http_request *r, rhizome_manifest *m)
|
|
|
|
{
|
|
|
|
bzero(&r->u.read_state, sizeof r->u.read_state);
|
2013-12-30 07:39:56 +00:00
|
|
|
r->u.read_state.blob_fd = -1;
|
|
|
|
assert(r->finalise_union == NULL);
|
|
|
|
r->finalise_union = finalise_union_read_state;
|
2013-12-27 18:56:22 +00:00
|
|
|
enum rhizome_payload_status status = rhizome_open_decrypt_read(m, &r->u.read_state);
|
|
|
|
switch (status) {
|
|
|
|
case RHIZOME_PAYLOAD_STATUS_EMPTY:
|
|
|
|
case RHIZOME_PAYLOAD_STATUS_STORED:
|
|
|
|
break;
|
|
|
|
case RHIZOME_PAYLOAD_STATUS_NEW:
|
|
|
|
return 404;
|
|
|
|
case RHIZOME_PAYLOAD_STATUS_ERROR:
|
|
|
|
case RHIZOME_PAYLOAD_STATUS_WRONG_SIZE:
|
|
|
|
case RHIZOME_PAYLOAD_STATUS_WRONG_HASH:
|
|
|
|
case RHIZOME_PAYLOAD_STATUS_CRYPTO_FAIL:
|
|
|
|
return -1;
|
|
|
|
default:
|
|
|
|
FATALF("status = %d", status);
|
|
|
|
}
|
2013-12-16 02:02:16 +00:00
|
|
|
return rhizome_response_content_init_read_state(r);
|
|
|
|
}
|
|
|
|
|
2013-12-13 06:06:37 +00:00
|
|
|
static int rhizome_payload_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-11 05:51:26 +00:00
|
|
|
// Only read multiples of 4k from disk.
|
|
|
|
const size_t blocksz = 1 << 12;
|
|
|
|
// Ask for a large buffer for all future reads.
|
|
|
|
const size_t preferred_bufsz = 16 * blocksz;
|
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-12-10 06:47:18 +00:00
|
|
|
assert(r->u.read_state.length != RHIZOME_SIZE_UNSET);
|
2013-11-07 13:10:56 +00:00
|
|
|
assert(r->u.read_state.offset < r->u.read_state.length);
|
2013-11-11 05:51:26 +00:00
|
|
|
uint64_t remain = r->u.read_state.length - r->u.read_state.offset;
|
|
|
|
size_t readlen = bufsz;
|
|
|
|
if (remain < bufsz)
|
|
|
|
readlen = remain;
|
|
|
|
else
|
|
|
|
readlen &= ~(blocksz - 1);
|
|
|
|
if (readlen > 0) {
|
|
|
|
ssize_t n = rhizome_read(&r->u.read_state, buf, readlen);
|
|
|
|
if (n == -1)
|
|
|
|
return -1;
|
|
|
|
result->generated = (size_t) n;
|
|
|
|
}
|
|
|
|
assert(r->u.read_state.offset <= r->u.read_state.length);
|
|
|
|
remain = r->u.read_state.length - r->u.read_state.offset;
|
2013-11-08 08:00:11 +00:00
|
|
|
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())
|
2013-12-16 01:51:45 +00:00
|
|
|
return 403;
|
|
|
|
if (r->http.verb != HTTP_VERB_GET)
|
|
|
|
return 405;
|
2013-10-16 07:55:58 +00:00
|
|
|
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");
|
2013-12-16 01:51:45 +00:00
|
|
|
return 1;
|
2013-10-16 07:55:58 +00:00
|
|
|
}
|
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-12-16 02:02:16 +00:00
|
|
|
int ret = rhizome_response_content_init_filehash(r, &filehash);
|
2013-12-13 06:06:37 +00:00
|
|
|
if (ret)
|
2013-12-16 01:51:45 +00:00
|
|
|
return ret;
|
2013-12-13 06:06:37 +00:00
|
|
|
http_request_response_generated(&r->http, 200, "application/binary", rhizome_payload_content);
|
2013-12-16 01:51:45 +00:00
|
|
|
return 1;
|
2013-09-24 00:20:45 +00:00
|
|
|
}
|
|
|
|
|
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())
|
2013-12-16 01:51:45 +00:00
|
|
|
return 403;
|
|
|
|
if (r->http.verb != HTTP_VERB_GET)
|
|
|
|
return 405;
|
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)
|
2013-12-16 01:51:45 +00:00
|
|
|
return 404; // not found
|
2013-12-30 07:39:56 +00:00
|
|
|
if ((r->manifest = rhizome_new_manifest()) == NULL)
|
|
|
|
return 500;
|
|
|
|
int ret = rhizome_retrieve_manifest_by_prefix(prefix.binary, prefix_len, r->manifest);
|
2013-10-16 07:55:58 +00:00
|
|
|
if (ret == -1)
|
2013-12-16 01:51:45 +00:00
|
|
|
return 500;
|
|
|
|
if (ret == 0) {
|
2013-12-30 07:39:56 +00:00
|
|
|
http_request_response_static(&r->http, 200, "application/binary", (const char *)r->manifest->manifestdata, r->manifest->manifest_all_bytes);
|
2013-12-16 01:51:45 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 404;
|
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)
|
2013-12-16 01:51:45 +00:00
|
|
|
return 404;
|
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-12-16 01:51:45 +00:00
|
|
|
return 1;
|
2013-09-24 00:20:45 +00:00
|
|
|
}
|
|
|
|
|
2013-12-13 04:19:55 +00:00
|
|
|
static void render_manifest_headers(struct http_request *hr, strbuf sb)
|
|
|
|
{
|
|
|
|
rhizome_http_request *r = (rhizome_http_request *) hr;
|
2013-12-13 06:06:37 +00:00
|
|
|
rhizome_manifest *m = r->manifest;
|
2013-12-13 04:19:55 +00:00
|
|
|
strbuf_sprintf(sb, "Serval-Rhizome-Bundle-Id: %s\r\n", alloca_tohex_rhizome_bid_t(m->cryptoSignPublic));
|
|
|
|
strbuf_sprintf(sb, "Serval-Rhizome-Bundle-Version: %"PRIu64"\r\n", m->version);
|
|
|
|
strbuf_sprintf(sb, "Serval-Rhizome-Bundle-Filesize: %"PRIu64"\r\n", m->filesize);
|
|
|
|
if (m->filesize != 0)
|
|
|
|
strbuf_sprintf(sb, "Serval-Rhizome-Bundle-Filehash: %s\r\n", alloca_tohex_rhizome_filehash_t(m->filehash));
|
|
|
|
if (m->has_bundle_key)
|
|
|
|
strbuf_sprintf(sb, "Serval-Rhizome-Bundle-BK: %s\r\n", alloca_tohex_rhizome_bk_t(m->bundle_key));
|
|
|
|
if (m->has_date)
|
|
|
|
strbuf_sprintf(sb, "Serval-Rhizome-Bundle-Date: %"PRIu64"\r\n", m->date);
|
|
|
|
if (m->name) {
|
|
|
|
strbuf_puts(sb, "Serval-Rhizome-Bundle-Name: ");
|
|
|
|
strbuf_append_quoted_string(sb, m->name);
|
|
|
|
strbuf_puts(sb, "\r\n");
|
|
|
|
}
|
|
|
|
if (m->service)
|
|
|
|
strbuf_sprintf(sb, "Serval-Rhizome-Bundle-Service: %s\r\n", m->service);
|
|
|
|
assert(m->authorship != AUTHOR_LOCAL);
|
|
|
|
if (m->authorship == AUTHOR_AUTHENTIC)
|
|
|
|
strbuf_sprintf(sb, "Serval-Rhizome-Bundle-Author: %s\r\n", alloca_tohex_sid_t(m->author));
|
|
|
|
assert(m->haveSecret);
|
|
|
|
{
|
|
|
|
char secret[RHIZOME_BUNDLE_KEY_STRLEN + 1];
|
|
|
|
rhizome_bytes_to_hex_upper(m->cryptoSignSecret, secret, RHIZOME_BUNDLE_KEY_BYTES);
|
|
|
|
strbuf_sprintf(sb, "Serval-Rhizome-Bundle-Secret: %s\r\n", secret);
|
|
|
|
}
|
|
|
|
strbuf_sprintf(sb, "Serval-Rhizome-Bundle-Rowid: %"PRIu64"\r\n", m->rowid);
|
|
|
|
strbuf_sprintf(sb, "Serval-Rhizome-Bundle-Inserttime: %"PRIu64"\r\n", m->inserttime);
|
|
|
|
}
|
|
|
|
|
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)
|
2013-12-16 01:51:45 +00:00
|
|
|
return 404;
|
|
|
|
if (r->http.verb != HTTP_VERB_GET)
|
|
|
|
return 405;
|
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");
|
2013-12-16 01:51:45 +00:00
|
|
|
return 500;
|
|
|
|
}
|
|
|
|
http_request_response_static(&r->http, 200, "text/html", temp, strbuf_len(b));
|
|
|
|
return 1;
|
2011-12-22 17:55:18 +00:00
|
|
|
}
|