2016-03-19 15:14:35 +00:00
|
|
|
#include "first.h"
|
|
|
|
|
2005-02-20 14:27:00 +00:00
|
|
|
/**
|
|
|
|
* the network chunk-API
|
2006-10-04 13:26:23 +00:00
|
|
|
*
|
|
|
|
*
|
2005-02-20 14:27:00 +00:00
|
|
|
*/
|
|
|
|
|
2009-10-11 14:31:42 +00:00
|
|
|
#include "chunk.h"
|
2015-02-08 19:10:36 +00:00
|
|
|
#include "base.h"
|
|
|
|
#include "log.h"
|
2009-10-11 14:31:42 +00:00
|
|
|
|
2005-02-20 14:27:00 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
2015-08-22 16:00:59 +00:00
|
|
|
#include "sys-mmap.h"
|
2005-02-20 14:27:00 +00:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
chunkqueue *chunkqueue_init(void) {
|
|
|
|
chunkqueue *cq;
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-20 14:27:00 +00:00
|
|
|
cq = calloc(1, sizeof(*cq));
|
2016-01-30 13:59:07 +00:00
|
|
|
force_assert(NULL != cq);
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-20 14:27:00 +00:00
|
|
|
cq->first = NULL;
|
|
|
|
cq->last = NULL;
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-20 14:27:00 +00:00
|
|
|
cq->unused = NULL;
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-20 14:27:00 +00:00
|
|
|
return cq;
|
|
|
|
}
|
|
|
|
|
|
|
|
static chunk *chunk_init(void) {
|
|
|
|
chunk *c;
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-20 14:27:00 +00:00
|
|
|
c = calloc(1, sizeof(*c));
|
2016-01-30 13:59:07 +00:00
|
|
|
force_assert(NULL != c);
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2015-02-08 12:37:10 +00:00
|
|
|
c->type = MEM_CHUNK;
|
2005-09-14 08:00:33 +00:00
|
|
|
c->mem = buffer_init();
|
|
|
|
c->file.name = buffer_init();
|
2015-02-08 12:37:10 +00:00
|
|
|
c->file.start = c->file.length = c->file.mmap.offset = 0;
|
2005-09-14 08:00:33 +00:00
|
|
|
c->file.fd = -1;
|
|
|
|
c->file.mmap.start = MAP_FAILED;
|
2015-02-08 12:37:10 +00:00
|
|
|
c->file.mmap.length = 0;
|
|
|
|
c->file.is_temp = 0;
|
|
|
|
c->offset = 0;
|
2005-02-20 14:27:00 +00:00
|
|
|
c->next = NULL;
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-20 14:27:00 +00:00
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2005-09-08 10:00:32 +00:00
|
|
|
static void chunk_reset(chunk *c) {
|
2015-02-08 12:37:10 +00:00
|
|
|
if (NULL == c) return;
|
|
|
|
|
|
|
|
c->type = MEM_CHUNK;
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-09-14 08:00:33 +00:00
|
|
|
buffer_reset(c->mem);
|
2005-09-26 08:53:58 +00:00
|
|
|
|
2015-02-08 12:37:10 +00:00
|
|
|
if (c->file.is_temp && !buffer_string_is_empty(c->file.name)) {
|
2005-09-26 08:53:58 +00:00
|
|
|
unlink(c->file.name->ptr);
|
|
|
|
}
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-09-14 08:00:33 +00:00
|
|
|
buffer_reset(c->file.name);
|
|
|
|
|
|
|
|
if (c->file.fd != -1) {
|
|
|
|
close(c->file.fd);
|
|
|
|
c->file.fd = -1;
|
|
|
|
}
|
|
|
|
if (MAP_FAILED != c->file.mmap.start) {
|
|
|
|
munmap(c->file.mmap.start, c->file.mmap.length);
|
|
|
|
c->file.mmap.start = MAP_FAILED;
|
2005-09-08 10:00:32 +00:00
|
|
|
}
|
2015-02-08 12:37:10 +00:00
|
|
|
c->file.start = c->file.length = c->file.mmap.offset = 0;
|
|
|
|
c->file.mmap.length = 0;
|
|
|
|
c->file.is_temp = 0;
|
|
|
|
c->offset = 0;
|
|
|
|
c->next = NULL;
|
2005-09-08 10:00:32 +00:00
|
|
|
}
|
|
|
|
|
2015-02-08 12:37:10 +00:00
|
|
|
static void chunk_free(chunk *c) {
|
|
|
|
if (NULL == c) return;
|
|
|
|
|
|
|
|
chunk_reset(c);
|
|
|
|
|
|
|
|
buffer_free(c->mem);
|
|
|
|
buffer_free(c->file.name);
|
|
|
|
|
|
|
|
free(c);
|
|
|
|
}
|
2005-09-08 10:00:32 +00:00
|
|
|
|
2015-08-22 17:04:02 +00:00
|
|
|
static off_t chunk_remaining_length(const chunk *c) {
|
|
|
|
off_t len = 0;
|
|
|
|
switch (c->type) {
|
|
|
|
case MEM_CHUNK:
|
|
|
|
len = buffer_string_length(c->mem);
|
|
|
|
break;
|
|
|
|
case FILE_CHUNK:
|
|
|
|
len = c->file.length;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
force_assert(c->type == MEM_CHUNK || c->type == FILE_CHUNK);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
force_assert(c->offset <= len);
|
|
|
|
return len - c->offset;
|
|
|
|
}
|
|
|
|
|
2005-02-20 14:27:00 +00:00
|
|
|
void chunkqueue_free(chunkqueue *cq) {
|
|
|
|
chunk *c, *pc;
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2015-02-08 12:37:10 +00:00
|
|
|
if (NULL == cq) return;
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-20 14:27:00 +00:00
|
|
|
for (c = cq->first; c; ) {
|
|
|
|
pc = c;
|
|
|
|
c = c->next;
|
|
|
|
chunk_free(pc);
|
|
|
|
}
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-20 14:27:00 +00:00
|
|
|
for (c = cq->unused; c; ) {
|
|
|
|
pc = c;
|
|
|
|
c = c->next;
|
|
|
|
chunk_free(pc);
|
|
|
|
}
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-20 14:27:00 +00:00
|
|
|
free(cq);
|
|
|
|
}
|
|
|
|
|
2015-02-08 12:37:10 +00:00
|
|
|
static void chunkqueue_push_unused_chunk(chunkqueue *cq, chunk *c) {
|
|
|
|
force_assert(NULL != cq && NULL != c);
|
|
|
|
|
|
|
|
/* keep at max 4 chunks in the 'unused'-cache */
|
|
|
|
if (cq->unused_chunks > 4) {
|
|
|
|
chunk_free(c);
|
|
|
|
} else {
|
|
|
|
chunk_reset(c);
|
|
|
|
c->next = cq->unused;
|
|
|
|
cq->unused = c;
|
|
|
|
cq->unused_chunks++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-02-20 14:27:00 +00:00
|
|
|
static chunk *chunkqueue_get_unused_chunk(chunkqueue *cq) {
|
|
|
|
chunk *c;
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2015-02-08 12:37:10 +00:00
|
|
|
force_assert(NULL != cq);
|
|
|
|
|
2005-02-20 14:27:00 +00:00
|
|
|
/* check if we have a unused chunk */
|
2015-02-08 12:37:10 +00:00
|
|
|
if (0 == cq->unused) {
|
2005-02-20 14:27:00 +00:00
|
|
|
c = chunk_init();
|
|
|
|
} else {
|
|
|
|
/* take the first element from the list (a stack) */
|
|
|
|
c = cq->unused;
|
|
|
|
cq->unused = c->next;
|
|
|
|
c->next = NULL;
|
2005-09-08 10:00:32 +00:00
|
|
|
cq->unused_chunks--;
|
2005-02-20 14:27:00 +00:00
|
|
|
}
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-20 14:27:00 +00:00
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2015-02-08 12:37:10 +00:00
|
|
|
static void chunkqueue_prepend_chunk(chunkqueue *cq, chunk *c) {
|
2005-02-20 14:27:00 +00:00
|
|
|
c->next = cq->first;
|
|
|
|
cq->first = c;
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2015-02-08 12:37:10 +00:00
|
|
|
if (NULL == cq->last) {
|
2005-02-20 14:27:00 +00:00
|
|
|
cq->last = c;
|
|
|
|
}
|
2015-08-22 17:04:02 +00:00
|
|
|
cq->bytes_in += chunk_remaining_length(c);
|
2005-02-20 14:27:00 +00:00
|
|
|
}
|
|
|
|
|
2015-02-08 12:37:10 +00:00
|
|
|
static void chunkqueue_append_chunk(chunkqueue *cq, chunk *c) {
|
2015-12-19 08:28:39 +00:00
|
|
|
c->next = NULL;
|
2005-02-20 14:27:00 +00:00
|
|
|
if (cq->last) {
|
|
|
|
cq->last->next = c;
|
|
|
|
}
|
|
|
|
cq->last = c;
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2015-02-08 12:37:10 +00:00
|
|
|
if (NULL == cq->first) {
|
2005-02-20 14:27:00 +00:00
|
|
|
cq->first = c;
|
|
|
|
}
|
2015-08-22 17:04:02 +00:00
|
|
|
cq->bytes_in += chunk_remaining_length(c);
|
2005-02-20 14:27:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void chunkqueue_reset(chunkqueue *cq) {
|
2015-02-08 12:37:10 +00:00
|
|
|
chunk *cur = cq->first;
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2015-02-08 12:37:10 +00:00
|
|
|
cq->first = cq->last = NULL;
|
|
|
|
|
|
|
|
while (NULL != cur) {
|
|
|
|
chunk *next = cur->next;
|
|
|
|
chunkqueue_push_unused_chunk(cq, cur);
|
|
|
|
cur = next;
|
2005-09-08 10:00:32 +00:00
|
|
|
}
|
|
|
|
|
2005-09-14 08:00:33 +00:00
|
|
|
cq->bytes_in = 0;
|
|
|
|
cq->bytes_out = 0;
|
2016-04-08 04:39:50 +00:00
|
|
|
cq->tempdir_idx = 0;
|
2005-02-20 14:27:00 +00:00
|
|
|
}
|
|
|
|
|
2016-03-30 10:39:33 +00:00
|
|
|
void chunkqueue_append_file_fd(chunkqueue *cq, buffer *fn, int fd, off_t offset, off_t len) {
|
|
|
|
chunk *c;
|
|
|
|
|
|
|
|
if (0 == len) {
|
|
|
|
close(fd);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
c = chunkqueue_get_unused_chunk(cq);
|
|
|
|
|
|
|
|
c->type = FILE_CHUNK;
|
|
|
|
|
|
|
|
buffer_copy_buffer(c->file.name, fn);
|
|
|
|
c->file.start = offset;
|
|
|
|
c->file.length = len;
|
|
|
|
c->file.fd = fd;
|
|
|
|
c->offset = 0;
|
|
|
|
|
|
|
|
chunkqueue_append_chunk(cq, c);
|
|
|
|
}
|
|
|
|
|
2015-02-08 12:37:10 +00:00
|
|
|
void chunkqueue_append_file(chunkqueue *cq, buffer *fn, off_t offset, off_t len) {
|
2005-02-20 14:27:00 +00:00
|
|
|
chunk *c;
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2015-02-08 12:37:10 +00:00
|
|
|
if (0 == len) return;
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-20 14:27:00 +00:00
|
|
|
c = chunkqueue_get_unused_chunk(cq);
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-20 14:27:00 +00:00
|
|
|
c->type = FILE_CHUNK;
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2015-02-08 12:37:10 +00:00
|
|
|
buffer_copy_buffer(c->file.name, fn);
|
2005-10-24 11:36:22 +00:00
|
|
|
c->file.start = offset;
|
2005-09-14 08:00:33 +00:00
|
|
|
c->file.length = len;
|
2005-02-20 14:27:00 +00:00
|
|
|
c->offset = 0;
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-20 14:27:00 +00:00
|
|
|
chunkqueue_append_chunk(cq, c);
|
|
|
|
}
|
|
|
|
|
2015-02-08 12:37:10 +00:00
|
|
|
void chunkqueue_append_buffer(chunkqueue *cq, buffer *mem) {
|
2005-02-20 14:27:00 +00:00
|
|
|
chunk *c;
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2015-02-08 12:37:10 +00:00
|
|
|
if (buffer_string_is_empty(mem)) return;
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2006-09-21 08:03:40 +00:00
|
|
|
c = chunkqueue_get_unused_chunk(cq);
|
|
|
|
c->type = MEM_CHUNK;
|
2015-02-08 12:37:10 +00:00
|
|
|
force_assert(NULL != c->mem);
|
|
|
|
buffer_move(c->mem, mem);
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2006-09-21 08:03:40 +00:00
|
|
|
chunkqueue_append_chunk(cq, c);
|
|
|
|
}
|
|
|
|
|
2015-02-08 12:37:10 +00:00
|
|
|
void chunkqueue_prepend_buffer(chunkqueue *cq, buffer *mem) {
|
2005-02-20 14:27:00 +00:00
|
|
|
chunk *c;
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2015-02-08 12:37:10 +00:00
|
|
|
if (buffer_string_is_empty(mem)) return;
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-20 14:27:00 +00:00
|
|
|
c = chunkqueue_get_unused_chunk(cq);
|
|
|
|
c->type = MEM_CHUNK;
|
2015-02-08 12:37:10 +00:00
|
|
|
force_assert(NULL != c->mem);
|
|
|
|
buffer_move(c->mem, mem);
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-20 14:27:00 +00:00
|
|
|
chunkqueue_prepend_chunk(cq, c);
|
|
|
|
}
|
|
|
|
|
2006-09-21 08:03:40 +00:00
|
|
|
|
2015-02-08 12:37:10 +00:00
|
|
|
void chunkqueue_append_mem(chunkqueue *cq, const char * mem, size_t len) {
|
2005-02-20 14:27:00 +00:00
|
|
|
chunk *c;
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2015-02-08 12:37:10 +00:00
|
|
|
if (0 == len) return;
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-20 14:27:00 +00:00
|
|
|
c = chunkqueue_get_unused_chunk(cq);
|
|
|
|
c->type = MEM_CHUNK;
|
2015-02-08 12:37:10 +00:00
|
|
|
buffer_copy_string_len(c->mem, mem, len);
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-20 14:27:00 +00:00
|
|
|
chunkqueue_append_chunk(cq, c);
|
|
|
|
}
|
|
|
|
|
2015-02-08 19:10:36 +00:00
|
|
|
void chunkqueue_get_memory(chunkqueue *cq, char **mem, size_t *len, size_t min_size, size_t alloc_size) {
|
|
|
|
static const size_t REALLOC_MAX_SIZE = 256;
|
2005-02-20 14:27:00 +00:00
|
|
|
chunk *c;
|
2015-02-08 19:10:36 +00:00
|
|
|
buffer *b;
|
|
|
|
char *dummy_mem;
|
|
|
|
size_t dummy_len;
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2015-02-08 19:10:36 +00:00
|
|
|
force_assert(NULL != cq);
|
|
|
|
if (NULL == mem) mem = &dummy_mem;
|
|
|
|
if (NULL == len) len = &dummy_len;
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2015-02-08 19:10:36 +00:00
|
|
|
/* default values: */
|
|
|
|
if (0 == min_size) min_size = 1024;
|
|
|
|
if (0 == alloc_size) alloc_size = 4096;
|
|
|
|
if (alloc_size < min_size) alloc_size = min_size;
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2015-02-08 19:10:36 +00:00
|
|
|
if (NULL != cq->last && MEM_CHUNK == cq->last->type) {
|
|
|
|
size_t have;
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2015-02-08 19:10:36 +00:00
|
|
|
b = cq->last->mem;
|
|
|
|
have = buffer_string_space(b);
|
2005-02-20 14:27:00 +00:00
|
|
|
|
2015-02-08 19:10:36 +00:00
|
|
|
/* unused buffer: allocate space */
|
|
|
|
if (buffer_string_is_empty(b)) {
|
|
|
|
buffer_string_prepare_copy(b, alloc_size);
|
|
|
|
have = buffer_string_space(b);
|
|
|
|
}
|
|
|
|
/* if buffer is really small just make it bigger */
|
|
|
|
else if (have < min_size && b->size <= REALLOC_MAX_SIZE) {
|
2015-02-08 19:10:44 +00:00
|
|
|
size_t cur_len = buffer_string_length(b);
|
|
|
|
size_t new_size = cur_len + min_size, append;
|
2015-02-08 19:10:36 +00:00
|
|
|
if (new_size < alloc_size) new_size = alloc_size;
|
|
|
|
|
2015-02-08 19:10:44 +00:00
|
|
|
append = new_size - cur_len;
|
2015-02-08 19:10:36 +00:00
|
|
|
if (append >= min_size) {
|
|
|
|
buffer_string_prepare_append(b, append);
|
|
|
|
have = buffer_string_space(b);
|
|
|
|
}
|
|
|
|
}
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2015-02-08 19:10:36 +00:00
|
|
|
/* return pointer into existing buffer if large enough */
|
|
|
|
if (have >= min_size) {
|
|
|
|
*mem = b->ptr + buffer_string_length(b);
|
|
|
|
*len = have;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2015-02-08 19:10:36 +00:00
|
|
|
/* allocate new chunk */
|
|
|
|
c = chunkqueue_get_unused_chunk(cq);
|
2005-02-20 14:27:00 +00:00
|
|
|
c->type = MEM_CHUNK;
|
|
|
|
chunkqueue_append_chunk(cq, c);
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2015-02-08 19:10:36 +00:00
|
|
|
b = c->mem;
|
|
|
|
buffer_string_prepare_append(b, alloc_size);
|
|
|
|
|
|
|
|
*mem = b->ptr + buffer_string_length(b);
|
|
|
|
*len = buffer_string_space(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
void chunkqueue_use_memory(chunkqueue *cq, size_t len) {
|
|
|
|
buffer *b;
|
|
|
|
|
|
|
|
force_assert(NULL != cq);
|
|
|
|
force_assert(NULL != cq->last && MEM_CHUNK == cq->last->type);
|
|
|
|
b = cq->last->mem;
|
|
|
|
|
|
|
|
if (len > 0) {
|
2015-02-08 19:10:44 +00:00
|
|
|
buffer_commit(b, len);
|
2015-08-22 17:04:02 +00:00
|
|
|
cq->bytes_in += len;
|
2015-02-08 19:10:36 +00:00
|
|
|
} else if (buffer_string_is_empty(b)) {
|
|
|
|
/* unused buffer: can't remove chunk easily from
|
|
|
|
* end of list, so just reset the buffer
|
|
|
|
*/
|
|
|
|
buffer_reset(b);
|
|
|
|
}
|
2005-02-20 14:27:00 +00:00
|
|
|
}
|
|
|
|
|
2016-04-08 04:39:50 +00:00
|
|
|
/* default 1MB, upper limit 128MB */
|
|
|
|
#define DEFAULT_TEMPFILE_SIZE (1 * 1024 * 1024)
|
|
|
|
#define MAX_TEMPFILE_SIZE (128 * 1024 * 1024)
|
|
|
|
|
2015-11-07 12:51:14 +00:00
|
|
|
void chunkqueue_set_tempdirs(chunkqueue *cq, array *tempdirs, unsigned int upload_temp_file_size) {
|
2015-02-08 12:37:10 +00:00
|
|
|
force_assert(NULL != cq);
|
2005-11-01 07:50:08 +00:00
|
|
|
cq->tempdirs = tempdirs;
|
2016-04-08 04:39:50 +00:00
|
|
|
cq->upload_temp_file_size
|
|
|
|
= (0 == upload_temp_file_size) ? DEFAULT_TEMPFILE_SIZE
|
|
|
|
: (upload_temp_file_size > MAX_TEMPFILE_SIZE) ? MAX_TEMPFILE_SIZE
|
|
|
|
: upload_temp_file_size;
|
|
|
|
cq->tempdir_idx = 0;
|
2005-11-01 07:50:08 +00:00
|
|
|
}
|
|
|
|
|
2015-02-08 19:10:36 +00:00
|
|
|
void chunkqueue_steal(chunkqueue *dest, chunkqueue *src, off_t len) {
|
|
|
|
while (len > 0) {
|
|
|
|
chunk *c = src->first;
|
|
|
|
off_t clen = 0, use;
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2015-02-08 19:10:36 +00:00
|
|
|
if (NULL == c) break;
|
2005-09-26 08:53:58 +00:00
|
|
|
|
2015-08-22 17:04:02 +00:00
|
|
|
clen = chunk_remaining_length(c);
|
2015-02-08 19:10:36 +00:00
|
|
|
if (0 == clen) {
|
|
|
|
/* drop empty chunk */
|
|
|
|
src->first = c->next;
|
|
|
|
if (c == src->last) src->last = NULL;
|
|
|
|
chunkqueue_push_unused_chunk(src, c);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2015-08-22 17:04:02 +00:00
|
|
|
use = len >= clen ? clen : len;
|
|
|
|
len -= use;
|
|
|
|
|
2015-02-08 19:10:36 +00:00
|
|
|
if (use == clen) {
|
|
|
|
/* move complete chunk */
|
|
|
|
src->first = c->next;
|
|
|
|
if (c == src->last) src->last = NULL;
|
|
|
|
|
|
|
|
chunkqueue_append_chunk(dest, c);
|
2015-08-22 17:04:02 +00:00
|
|
|
} else {
|
|
|
|
/* partial chunk with length "use" */
|
|
|
|
|
|
|
|
switch (c->type) {
|
|
|
|
case MEM_CHUNK:
|
|
|
|
chunkqueue_append_mem(dest, c->mem->ptr + c->offset, use);
|
|
|
|
break;
|
|
|
|
case FILE_CHUNK:
|
|
|
|
/* tempfile flag is in "last" chunk after the split */
|
|
|
|
chunkqueue_append_file(dest, c->file.name, c->file.start + c->offset, use);
|
|
|
|
break;
|
|
|
|
}
|
2015-02-08 19:10:36 +00:00
|
|
|
|
2015-08-22 17:04:02 +00:00
|
|
|
c->offset += use;
|
|
|
|
force_assert(0 == len);
|
2015-02-08 19:10:36 +00:00
|
|
|
}
|
|
|
|
|
2015-08-22 17:04:02 +00:00
|
|
|
src->bytes_out += use;
|
2015-02-08 19:10:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static chunk *chunkqueue_get_append_tempfile(chunkqueue *cq) {
|
|
|
|
chunk *c;
|
|
|
|
buffer *template = buffer_init_string("/var/tmp/lighttpd-upload-XXXXXX");
|
|
|
|
int fd;
|
2005-11-01 07:50:08 +00:00
|
|
|
|
2005-11-02 12:38:53 +00:00
|
|
|
if (cq->tempdirs && cq->tempdirs->used) {
|
2005-11-01 07:50:08 +00:00
|
|
|
/* we have several tempdirs, only if all of them fail we jump out */
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2016-04-08 04:39:50 +00:00
|
|
|
for (errno = EIO; cq->tempdir_idx < cq->tempdirs->used; ++cq->tempdir_idx) {
|
|
|
|
data_string *ds = (data_string *)cq->tempdirs->data[cq->tempdir_idx];
|
2005-11-01 07:50:08 +00:00
|
|
|
|
2015-02-08 12:37:10 +00:00
|
|
|
buffer_copy_buffer(template, ds->value);
|
|
|
|
buffer_append_slash(template);
|
2008-07-30 19:38:32 +00:00
|
|
|
buffer_append_string_len(template, CONST_STR_LEN("lighttpd-upload-XXXXXX"));
|
2005-11-01 07:50:08 +00:00
|
|
|
|
2015-02-08 19:10:36 +00:00
|
|
|
if (-1 != (fd = mkstemp(template->ptr))) break;
|
2005-11-01 07:50:08 +00:00
|
|
|
}
|
|
|
|
} else {
|
2015-02-08 19:10:36 +00:00
|
|
|
fd = mkstemp(template->ptr);
|
2005-10-31 08:14:02 +00:00
|
|
|
}
|
|
|
|
|
2015-02-08 19:10:36 +00:00
|
|
|
if (-1 == fd) {
|
|
|
|
buffer_free(template);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
c = chunkqueue_get_unused_chunk(cq);
|
|
|
|
c->type = FILE_CHUNK;
|
|
|
|
c->file.fd = fd;
|
|
|
|
c->file.is_temp = 1;
|
2015-02-08 12:37:10 +00:00
|
|
|
buffer_copy_buffer(c->file.name, template);
|
2005-10-31 08:14:02 +00:00
|
|
|
c->file.length = 0;
|
2005-09-26 08:53:58 +00:00
|
|
|
|
|
|
|
chunkqueue_append_chunk(cq, c);
|
2005-11-01 07:50:08 +00:00
|
|
|
|
|
|
|
buffer_free(template);
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-09-26 08:53:58 +00:00
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2016-04-08 04:39:50 +00:00
|
|
|
static void chunkqueue_remove_empty_chunks(chunkqueue *cq);
|
2015-11-07 12:51:14 +00:00
|
|
|
|
2015-02-08 19:10:36 +00:00
|
|
|
static int chunkqueue_append_to_tempfile(server *srv, chunkqueue *dest, const char *mem, size_t len) {
|
2016-04-08 04:39:50 +00:00
|
|
|
chunk *dst_c;
|
2015-02-08 19:10:36 +00:00
|
|
|
ssize_t written;
|
|
|
|
|
2016-04-08 04:39:50 +00:00
|
|
|
do {
|
|
|
|
/*
|
|
|
|
* if the last chunk is
|
|
|
|
* - smaller than dest->upload_temp_file_size
|
|
|
|
* - not read yet (offset == 0)
|
|
|
|
* -> append to it (so it might actually become larger than dest->upload_temp_file_size)
|
|
|
|
* otherwise
|
|
|
|
* -> create a new chunk
|
|
|
|
*
|
|
|
|
* */
|
2015-02-08 19:10:36 +00:00
|
|
|
|
2016-04-08 04:39:50 +00:00
|
|
|
dst_c = dest->last;
|
|
|
|
if (NULL != dst_c
|
|
|
|
&& FILE_CHUNK == dst_c->type
|
|
|
|
&& dst_c->file.is_temp
|
|
|
|
&& -1 != dst_c->file.fd
|
|
|
|
&& 0 == dst_c->offset) {
|
|
|
|
/* ok, take the last chunk for our job */
|
|
|
|
|
|
|
|
if (dst_c->file.length >= (off_t)dest->upload_temp_file_size) {
|
|
|
|
/* the chunk is too large now, close it */
|
2015-02-08 19:10:36 +00:00
|
|
|
close(dst_c->file.fd);
|
|
|
|
dst_c->file.fd = -1;
|
2016-04-08 04:39:50 +00:00
|
|
|
dst_c = NULL;
|
2015-02-08 19:10:36 +00:00
|
|
|
}
|
2016-04-08 04:39:50 +00:00
|
|
|
} else {
|
|
|
|
dst_c = NULL;
|
2015-02-08 19:10:36 +00:00
|
|
|
}
|
|
|
|
|
2016-04-08 04:39:50 +00:00
|
|
|
if (NULL == dst_c && NULL == (dst_c = chunkqueue_get_append_tempfile(dest))) {
|
|
|
|
/* we don't have file to write to,
|
|
|
|
* EACCES might be one reason.
|
|
|
|
*
|
|
|
|
* Instead of sending 500 we send 413 and say the request is too large
|
|
|
|
*/
|
2015-02-08 19:10:36 +00:00
|
|
|
|
2016-04-08 04:39:50 +00:00
|
|
|
log_error_write(srv, __FILE__, __LINE__, "ss",
|
|
|
|
"denying upload as opening temp-file for upload failed:",
|
|
|
|
strerror(errno));
|
2015-02-08 19:10:36 +00:00
|
|
|
|
2016-04-08 04:39:50 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2015-02-08 19:10:36 +00:00
|
|
|
|
2016-04-08 04:39:50 +00:00
|
|
|
written = write(dst_c->file.fd, mem, len);
|
|
|
|
|
|
|
|
if ((size_t) written == len) {
|
|
|
|
dst_c->file.length += len;
|
|
|
|
dest->bytes_in += len;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
} else if (written >= 0) {
|
|
|
|
/*(assume EINTR if partial write and retry write();
|
|
|
|
* retry write() might fail with ENOSPC if no more space on volume)*/
|
|
|
|
dest->bytes_in += written;
|
|
|
|
mem += written;
|
|
|
|
len -= (size_t)written;
|
|
|
|
dst_c->file.length += (size_t)written;
|
|
|
|
/* continue; retry */
|
|
|
|
} else if (errno == EINTR) {
|
|
|
|
/* continue; retry */
|
|
|
|
} else {
|
|
|
|
int retry = (errno == ENOSPC && dest->tempdirs && ++dest->tempdir_idx < dest->tempdirs->used);
|
|
|
|
if (!retry) {
|
|
|
|
log_error_write(srv, __FILE__, __LINE__, "sbs",
|
|
|
|
"denying upload as writing to file failed:",
|
|
|
|
dst_c->file.name, strerror(errno));
|
|
|
|
}
|
2015-02-08 19:10:36 +00:00
|
|
|
|
2016-04-08 04:39:50 +00:00
|
|
|
if (0 == chunk_remaining_length(dst_c)) {
|
|
|
|
/*(remove empty chunk and unlink tempfile)*/
|
|
|
|
chunkqueue_remove_empty_chunks(dest);
|
|
|
|
} else {/*(close tempfile; avoid later attempts to append)*/
|
|
|
|
close(dst_c->file.fd);
|
|
|
|
dst_c->file.fd = -1;
|
|
|
|
}
|
|
|
|
if (!retry) return -1;
|
2015-02-08 19:10:36 +00:00
|
|
|
|
2016-04-08 04:39:50 +00:00
|
|
|
/* continue; retry */
|
|
|
|
}
|
2015-02-08 19:10:36 +00:00
|
|
|
|
2016-04-08 04:39:50 +00:00
|
|
|
} while (dst_c);
|
2015-02-08 19:10:36 +00:00
|
|
|
|
2016-04-08 04:39:50 +00:00
|
|
|
return -1; /*(not reached)*/
|
2015-02-08 19:10:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int chunkqueue_steal_with_tempfiles(server *srv, chunkqueue *dest, chunkqueue *src, off_t len) {
|
2015-02-08 12:37:10 +00:00
|
|
|
while (len > 0) {
|
|
|
|
chunk *c = src->first;
|
2015-02-08 19:10:36 +00:00
|
|
|
off_t clen = 0, use;
|
2005-09-26 08:53:58 +00:00
|
|
|
|
2015-02-08 12:37:10 +00:00
|
|
|
if (NULL == c) break;
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2015-08-22 17:04:02 +00:00
|
|
|
clen = chunk_remaining_length(c);
|
2015-02-08 19:10:36 +00:00
|
|
|
if (0 == clen) {
|
|
|
|
/* drop empty chunk */
|
2015-02-08 12:37:10 +00:00
|
|
|
src->first = c->next;
|
|
|
|
if (c == src->last) src->last = NULL;
|
2015-02-08 19:10:36 +00:00
|
|
|
chunkqueue_push_unused_chunk(src, c);
|
2015-02-08 12:37:10 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2015-08-22 17:04:02 +00:00
|
|
|
use = (len >= clen) ? clen : len;
|
|
|
|
len -= use;
|
|
|
|
|
|
|
|
switch (c->type) {
|
|
|
|
case FILE_CHUNK:
|
|