mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-08-09 16:47:18 +02:00
Instead of using a array of (struct block), it is more natural and intuitive to use an array of char. Indeed, not only (struct block) are stored in this array, but also their payload.
1135 lines
31 KiB
C
1135 lines
31 KiB
C
/*
|
|
* internal HTTP message
|
|
*
|
|
* Copyright 2018 HAProxy Technologies, Christopher Faulet <cfaulet@haproxy.com>
|
|
*
|
|
* 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.
|
|
*
|
|
*/
|
|
|
|
#include <common/chunk.h>
|
|
#include <common/htx.h>
|
|
|
|
struct htx htx_empty = { .size = 0, .data = 0, .head = -1, .tail = -1, .first = -1 };
|
|
|
|
/* Defragments an HTX message. It removes unused blocks and unwraps the payloads
|
|
* part. A temporary buffer is used to do so. This function never fails. if
|
|
* <blk> is not NULL, we replace it by the new block address, after the
|
|
* defragmentation. The new <blk> is returned.
|
|
*/
|
|
/* TODO: merge data blocks into one */
|
|
struct htx_blk *htx_defrag(struct htx *htx, struct htx_blk *blk)
|
|
{
|
|
struct buffer *chunk = get_trash_chunk();
|
|
struct htx *tmp = htxbuf(chunk);
|
|
struct htx_blk *newblk, *oldblk;
|
|
uint32_t new, old, blkpos;
|
|
uint32_t addr, blksz;
|
|
int32_t first = -1;
|
|
|
|
if (htx->head == -1)
|
|
return NULL;
|
|
|
|
blkpos = -1;
|
|
|
|
new = 0;
|
|
addr = 0;
|
|
tmp->size = htx->size;
|
|
|
|
/* start from the head */
|
|
for (old = htx_get_head(htx); old != -1; old = htx_get_next(htx, old)) {
|
|
oldblk = htx_get_blk(htx, old);
|
|
if (htx_get_blk_type(oldblk) == HTX_BLK_UNUSED)
|
|
continue;
|
|
|
|
newblk = htx_get_blk(tmp, new);
|
|
newblk->addr = addr;
|
|
newblk->info = oldblk->info;
|
|
blksz = htx_get_blksz(oldblk);
|
|
|
|
/* update the start-line position */
|
|
if (htx->first == old)
|
|
first = new;
|
|
|
|
/* if <blk> is defined, save its new position */
|
|
if (blk != NULL && blk == oldblk)
|
|
blkpos = new;
|
|
|
|
memcpy((void *)tmp->blocks + addr, htx_get_blk_ptr(htx, oldblk), blksz);
|
|
new++;
|
|
addr += blksz;
|
|
|
|
}
|
|
|
|
htx->first = first;
|
|
htx->head = 0;
|
|
htx->tail = new - 1;
|
|
htx->head_addr = htx->end_addr = 0;
|
|
htx->tail_addr = addr;
|
|
memcpy((void *)htx->blocks, (void *)tmp->blocks, htx->size);
|
|
|
|
return ((blkpos == -1) ? NULL : htx_get_blk(htx, blkpos));
|
|
}
|
|
|
|
/* Degragments HTX blocks of an HTX message. Payloads part is keep untouched
|
|
* here. This function will move back all blocks starting at the position 0,
|
|
* removing unused blocks. It must never be called with an empty message.
|
|
*/
|
|
static void htx_defrag_blks(struct htx *htx)
|
|
{
|
|
int32_t pos, new;
|
|
|
|
new = 0;
|
|
for (pos = htx_get_head(htx); pos != -1; pos = htx_get_next(htx, pos)) {
|
|
struct htx_blk *posblk, *newblk;
|
|
|
|
if (pos == new) {
|
|
new++;
|
|
continue;
|
|
}
|
|
|
|
posblk = htx_get_blk(htx, pos);
|
|
if (htx_get_blk_type(posblk) == HTX_BLK_UNUSED)
|
|
continue;
|
|
|
|
if (htx->first == pos)
|
|
htx->first = new;
|
|
newblk = htx_get_blk(htx, new++);
|
|
newblk->info = posblk->info;
|
|
newblk->addr = posblk->addr;
|
|
}
|
|
BUG_ON(!new);
|
|
htx->head = 0;
|
|
htx->tail = new - 1;
|
|
}
|
|
|
|
/* Reserves a new block in the HTX message <htx> with a content of <blksz>
|
|
* bytes. If there is not enough space, NULL is returned. Otherwise the reserved
|
|
* block is returned and the HTX message is updated. Space for this new block is
|
|
* reserved in the HTX message. But it is the caller responsibility to set right
|
|
* info in the block to reflect the stored data.
|
|
*/
|
|
static struct htx_blk *htx_reserve_nxblk(struct htx *htx, uint32_t blksz)
|
|
{
|
|
struct htx_blk *blk;
|
|
uint32_t tail, headroom, tailroom;
|
|
|
|
if (blksz > htx_free_data_space(htx))
|
|
return NULL; /* full */
|
|
|
|
if (htx->head == -1) {
|
|
/* Empty message */
|
|
htx->head = htx->tail = htx->first = 0;
|
|
blk = htx_get_blk(htx, htx->tail);
|
|
blk->addr = 0;
|
|
htx->data = blksz;
|
|
htx->tail_addr = blksz;
|
|
return blk;
|
|
}
|
|
|
|
/* Find the block's position. First, we try to get the next position in
|
|
* the message, increasing the tail by one. If this position is not
|
|
* available with some holes, we try to defrag the blocks without
|
|
* touching their paylood. If it is impossible, we fully defrag the
|
|
* message.
|
|
*/
|
|
tail = htx->tail + 1;
|
|
if (htx_pos_to_addr(htx, tail) >= htx->tail_addr)
|
|
;
|
|
else if (htx->head > 0) {
|
|
htx_defrag_blks(htx);
|
|
tail = htx->tail + 1;
|
|
BUG_ON(htx_pos_to_addr(htx, tail) < htx->tail_addr);
|
|
}
|
|
else
|
|
goto defrag;
|
|
|
|
/* Now, we have found the block's position. Try do find where to put its
|
|
* payload. The free space is split in two areas:
|
|
*
|
|
* * The free space in front of the blocks table. This one is used iff
|
|
* the other one was not used yet.
|
|
*
|
|
* * The free space at the beginning of the message. Once this one is
|
|
* used, the other one is never used again, until the next defrag.
|
|
*/
|
|
headroom = (htx->end_addr - htx->head_addr);
|
|
tailroom = (!htx->head_addr ? htx_pos_to_addr(htx, tail) - htx->tail_addr : 0);
|
|
BUG_ON((int32_t)headroom < 0);
|
|
BUG_ON((int32_t)tailroom < 0);
|
|
|
|
if (blksz <= tailroom) {
|
|
blk = htx_get_blk(htx, tail);
|
|
blk->addr = htx->tail_addr;
|
|
htx->tail_addr += blksz;
|
|
}
|
|
else if (blksz <= headroom) {
|
|
blk = htx_get_blk(htx, tail);
|
|
blk->addr = htx->head_addr;
|
|
htx->head_addr += blksz;
|
|
}
|
|
else {
|
|
defrag:
|
|
/* need to defragment the message before inserting upfront */
|
|
htx_defrag(htx, NULL);
|
|
tail = htx->tail + 1;
|
|
blk = htx_get_blk(htx, tail);
|
|
blk->addr = htx->tail_addr;
|
|
htx->tail_addr += blksz;
|
|
}
|
|
|
|
htx->tail = tail;
|
|
htx->data += blksz;
|
|
/* Set first position if not already set */
|
|
if (htx->first == -1)
|
|
htx->first = tail;
|
|
|
|
BUG_ON((int32_t)htx->tail_addr < 0);
|
|
BUG_ON((int32_t)htx->head_addr < 0);
|
|
BUG_ON(htx->end_addr > htx->tail_addr);
|
|
BUG_ON(htx->head_addr > htx->end_addr);
|
|
|
|
return blk;
|
|
}
|
|
|
|
/* Prepares the block to an expansion of its payload. The payload will be
|
|
* expanded by <delta> bytes and we need find where this expansion will be
|
|
* performed. It can be a compression if <delta> is negative. This function only
|
|
* updates all addresses. The caller have the responsibility to performe the
|
|
* expansion and update the block and the HTX message accordingly. No error must
|
|
* occurr. It returns following values:
|
|
*
|
|
* 0: The expansion cannot be performed, there is not enough space.
|
|
*
|
|
* 1: the expansion must be performed in place, there is enougth space after
|
|
* the block's payload to handle it. This is especially true if it is a
|
|
* compression and not an expension.
|
|
*
|
|
* 2: the block's payload must be moved at the new block address before doing
|
|
* the expansion.
|
|
*
|
|
* 3: the HTX message message must be defragmented
|
|
*/
|
|
static int htx_prepare_blk_expansion(struct htx *htx, struct htx_blk *blk, int32_t delta)
|
|
{
|
|
uint32_t sz, tailroom, headroom;
|
|
int ret = 3;
|
|
|
|
BUG_ON(htx->head == -1);
|
|
|
|
headroom = (htx->end_addr - htx->head_addr);
|
|
tailroom = (htx_pos_to_addr(htx, htx->tail) - htx->tail_addr);
|
|
BUG_ON((int32_t)headroom < 0);
|
|
BUG_ON((int32_t)tailroom < 0);
|
|
|
|
sz = htx_get_blksz(blk);
|
|
if (delta <= 0) {
|
|
/* It is a compression, it can be performed in place */
|
|
if (blk->addr+sz == htx->tail_addr)
|
|
htx->tail_addr += delta;
|
|
else if (blk->addr+sz == htx->head_addr)
|
|
htx->head_addr += delta;
|
|
ret = 1;
|
|
}
|
|
else if (delta > htx_free_space(htx)) {
|
|
/* There is not enought space to handle the expansion */
|
|
ret = 0;
|
|
}
|
|
else if (blk->addr+sz == htx->tail_addr) {
|
|
/* The block's payload is just before the tail room */
|
|
if (delta < tailroom) {
|
|
/* Expand the block's payload */
|
|
htx->tail_addr += delta;
|
|
ret = 1;
|
|
}
|
|
else if ((sz + delta) < headroom) {
|
|
/* Move the block's payload into the headroom */
|
|
blk->addr = htx->head_addr;
|
|
htx->tail_addr -= sz;
|
|
htx->head_addr += sz + delta;
|
|
if (blk->addr == htx->end_addr) {
|
|
if (htx->end_addr == htx->tail_addr) {
|
|
htx->tail_addr = htx->head_addr;
|
|
htx->head_addr = htx->end_addr = 0;
|
|
}
|
|
else
|
|
htx->end_addr += sz;
|
|
}
|
|
ret = 2;
|
|
}
|
|
}
|
|
else if (blk->addr+sz == htx->head_addr) {
|
|
/* The block's payload is just before the head room */
|
|
if (delta < headroom) {
|
|
/* Expand the block's payload */
|
|
htx->head_addr += delta;
|
|
ret = 1;
|
|
}
|
|
}
|
|
else {
|
|
/* The block's payload is not at the rooms edge */
|
|
if (!htx->head_addr && sz+delta < tailroom) {
|
|
/* Move the block's payload into the tailroom */
|
|
if (blk->addr == htx->end_addr)
|
|
htx->end_addr += sz;
|
|
blk->addr = htx->tail_addr;
|
|
htx->tail_addr += sz + delta;
|
|
ret = 2;
|
|
}
|
|
else if (sz+delta < headroom) {
|
|
/* Move the block's payload into the headroom */
|
|
if (blk->addr == htx->end_addr)
|
|
htx->end_addr += sz;
|
|
blk->addr = htx->head_addr;
|
|
htx->head_addr += sz + delta;
|
|
ret = 2;
|
|
}
|
|
}
|
|
/* Otherwise defrag the HTX message */
|
|
|
|
BUG_ON((int32_t)htx->tail_addr < 0);
|
|
BUG_ON((int32_t)htx->head_addr < 0);
|
|
BUG_ON(htx->end_addr > htx->tail_addr);
|
|
BUG_ON(htx->head_addr > htx->end_addr);
|
|
return ret;
|
|
}
|
|
|
|
/* Adds a new block of type <type> in the HTX message <htx>. Its content size is
|
|
* passed but it is the caller responsibility to do the copy.
|
|
*/
|
|
struct htx_blk *htx_add_blk(struct htx *htx, enum htx_blk_type type, uint32_t blksz)
|
|
{
|
|
struct htx_blk *blk;
|
|
|
|
blk = htx_reserve_nxblk(htx, blksz);
|
|
if (!blk)
|
|
return NULL;
|
|
BUG_ON(blk->addr > htx->size);
|
|
|
|
blk->info = (type << 28);
|
|
return blk;
|
|
}
|
|
|
|
/* Removes the block <blk> from the HTX message <htx>. The function returns the
|
|
* block following <blk> or NULL if <blk> is the last block or the last inserted
|
|
* one.
|
|
*/
|
|
struct htx_blk *htx_remove_blk(struct htx *htx, struct htx_blk *blk)
|
|
{
|
|
enum htx_blk_type type;
|
|
uint32_t pos, addr, sz;
|
|
|
|
BUG_ON(htx->head == -1);
|
|
|
|
/* This is the last block in use */
|
|
if (htx->head == htx->tail) {
|
|
htx_reset(htx);
|
|
return NULL;
|
|
}
|
|
|
|
type = htx_get_blk_type(blk);
|
|
pos = htx_get_blk_pos(htx, blk);
|
|
sz = htx_get_blksz(blk);
|
|
addr = blk->addr;
|
|
if (type != HTX_BLK_UNUSED) {
|
|
/* Mark the block as unused, decrement allocated size */
|
|
htx->data -= htx_get_blksz(blk);
|
|
blk->info = ((uint32_t)HTX_BLK_UNUSED << 28);
|
|
}
|
|
|
|
/* There is at least 2 blocks, so tail is always > 0 */
|
|
if (pos == htx->head) {
|
|
/* move the head forward */
|
|
htx->head++;
|
|
}
|
|
else if (pos == htx->tail) {
|
|
/* remove the tail. this was the last inserted block so
|
|
* return NULL. */
|
|
htx->tail--;
|
|
blk = NULL;
|
|
goto end;
|
|
}
|
|
blk = htx_get_blk(htx, pos+1);
|
|
|
|
end:
|
|
if (pos == htx->first)
|
|
htx->first = (blk ? htx_get_blk_pos(htx, blk) : -1);
|
|
|
|
if (htx->head == htx->tail) {
|
|
/* If there is just one block in the HTX message, free space can
|
|
* be ajusted. This operation could save some defrags. */
|
|
struct htx_blk *lastblk = htx_get_blk(htx, htx->tail);
|
|
|
|
htx->head_addr = 0;
|
|
htx->end_addr = lastblk->addr;
|
|
htx->tail_addr = lastblk->addr+htx->data;
|
|
}
|
|
else {
|
|
if (addr+sz == htx->tail_addr)
|
|
htx->tail_addr = addr;
|
|
else if (addr+sz == htx->head_addr)
|
|
htx->head_addr = addr;
|
|
if (addr == htx->end_addr) {
|
|
if (htx->tail_addr == htx->end_addr) {
|
|
htx->tail_addr = htx->head_addr;
|
|
htx->head_addr = htx->end_addr = 0;
|
|
}
|
|
else
|
|
htx->end_addr += sz;
|
|
}
|
|
}
|
|
|
|
BUG_ON((int32_t)htx->tail_addr < 0);
|
|
BUG_ON((int32_t)htx->head_addr < 0);
|
|
BUG_ON(htx->end_addr > htx->tail_addr);
|
|
BUG_ON(htx->head_addr > htx->end_addr);
|
|
return blk;
|
|
}
|
|
|
|
/* Removes all blocks after the one containing the offset <offset>. This last
|
|
* one may be truncated if it is a DATA block.
|
|
*/
|
|
void htx_truncate(struct htx *htx, uint32_t offset)
|
|
{
|
|
struct htx_blk *blk;
|
|
|
|
for (blk = htx_get_head_blk(htx); blk && offset; blk = htx_get_next_blk(htx, blk)) {
|
|
uint32_t sz = htx_get_blksz(blk);
|
|
enum htx_blk_type type = htx_get_blk_type(blk);
|
|
|
|
if (offset >= sz) {
|
|
offset -= sz;
|
|
continue;
|
|
}
|
|
if (type == HTX_BLK_DATA)
|
|
htx_change_blk_value_len(htx, blk, offset);
|
|
offset = 0;
|
|
}
|
|
while (blk)
|
|
blk = htx_remove_blk(htx, blk);
|
|
}
|
|
|
|
/* Drains <count> bytes from the HTX message <htx>. If the last block is a DATA
|
|
* block, it will be cut if necessary. Others blocks will be removed at once if
|
|
* <count> is large enough. The function returns an htx_ret with the first block
|
|
* remaing in the messsage and the amount of data drained. If everything is
|
|
* removed, htx_ret.blk is set to NULL.
|
|
*/
|
|
struct htx_ret htx_drain(struct htx *htx, uint32_t count)
|
|
{
|
|
struct htx_blk *blk;
|
|
struct htx_ret htxret = { .blk = NULL, .ret = 0 };
|
|
|
|
if (count == htx->data) {
|
|
htx_reset(htx);
|
|
htxret.ret = count;
|
|
return htxret;
|
|
}
|
|
|
|
blk = htx_get_head_blk(htx);
|
|
while (count && blk) {
|
|
uint32_t sz = htx_get_blksz(blk);
|
|
enum htx_blk_type type = htx_get_blk_type(blk);
|
|
|
|
/* Ingore unused block */
|
|
if (type == HTX_BLK_UNUSED)
|
|
goto next;
|
|
|
|
if (sz > count) {
|
|
if (type == HTX_BLK_DATA) {
|
|
htx_cut_data_blk(htx, blk, count);
|
|
htxret.ret += count;
|
|
}
|
|
break;
|
|
}
|
|
count -= sz;
|
|
htxret.ret += sz;
|
|
next:
|
|
blk = htx_remove_blk(htx, blk);
|
|
}
|
|
htxret.blk = blk;
|
|
|
|
return htxret;
|
|
}
|
|
|
|
/* Tries to append data to the last inserted block, if the type matches and if
|
|
* there is enough space to take it all. If the space wraps, the buffer is
|
|
* defragmented and a new block is inserted. If an error occurred, NULL is
|
|
* returned. Otherwise, on success, the updated block (or the new one) is
|
|
* returned. Due to its nature this function can be expensive and should be
|
|
* avoided whenever possible.
|
|
*/
|
|
struct htx_blk *htx_add_data_atonce(struct htx *htx, struct ist data)
|
|
{
|
|
struct htx_blk *blk, *tailblk;
|
|
void *ptr;
|
|
uint32_t len, sz, tailroom, headroom;
|
|
|
|
if (htx->head == -1)
|
|
goto add_new_block;
|
|
|
|
/* Not enough space to store data */
|
|
if (data.len > htx_free_data_space(htx))
|
|
return NULL;
|
|
|
|
/* get the tail block and its size */
|
|
tailblk = htx_get_tail_blk(htx);
|
|
if (tailblk == NULL)
|
|
goto add_new_block;
|
|
sz = htx_get_blksz(tailblk);
|
|
|
|
/* Don't try to append data if the last inserted block is not of the
|
|
* same type */
|
|
if (htx_get_blk_type(tailblk) != HTX_BLK_DATA)
|
|
goto add_new_block;
|
|
|
|
/*
|
|
* Same type and enough space: append data
|
|
*/
|
|
headroom = (htx->end_addr - htx->head_addr);
|
|
tailroom = (htx_pos_to_addr(htx, htx->tail) - htx->tail_addr);
|
|
BUG_ON((int32_t)headroom < 0);
|
|
BUG_ON((int32_t)tailroom < 0);
|
|
|
|
len = data.len;
|
|
if (tailblk->addr+sz == htx->tail_addr) {
|
|
if (data.len <= tailroom)
|
|
goto append_data;
|
|
else if (!htx->head_addr) {
|
|
len = tailroom;
|
|
goto append_data;
|
|
}
|
|
}
|
|
else if (tailblk->addr+sz == htx->head_addr && data.len <= headroom)
|
|
goto append_data;
|
|
|
|
goto add_new_block;
|
|
|
|
append_data:
|
|
/* FIXME: check v.len + data.len < 256MB */
|
|
/* Append data and update the block itself */
|
|
ptr = htx_get_blk_ptr(htx, tailblk);
|
|
memcpy(ptr+sz, data.ptr, len);
|
|
htx_change_blk_value_len(htx, tailblk, sz+len);
|
|
|
|
if (data.len == len) {
|
|
blk = tailblk;
|
|
goto end;
|
|
}
|
|
data.ptr += len;
|
|
data.len -= len;
|
|
|
|
add_new_block:
|
|
/* FIXME: check data.len (< 256MB) */
|
|
blk = htx_add_blk(htx, HTX_BLK_DATA, data.len);
|
|
if (!blk)
|
|
return NULL;
|
|
|
|
blk->info += data.len;
|
|
memcpy(htx_get_blk_ptr(htx, blk), data.ptr, data.len);
|
|
|
|
end:
|
|
BUG_ON((int32_t)htx->tail_addr < 0);
|
|
BUG_ON((int32_t)htx->head_addr < 0);
|
|
BUG_ON(htx->end_addr > htx->tail_addr);
|
|
BUG_ON(htx->head_addr > htx->end_addr);
|
|
return blk;
|
|
}
|
|
|
|
/* Replaces a value part of a block by a new one. The new part can be smaller or
|
|
* larger than the old one. This function works for any kind of block with
|
|
* attached data. It returns the new block on success, otherwise it returns
|
|
* NULL.
|
|
*/
|
|
struct htx_blk *htx_replace_blk_value(struct htx *htx, struct htx_blk *blk,
|
|
const struct ist old, const struct ist new)
|
|
{
|
|
struct ist n, v;
|
|
int32_t delta;
|
|
int ret;
|
|
|
|
n = htx_get_blk_name(htx, blk);
|
|
v = htx_get_blk_value(htx, blk);
|
|
delta = new.len - old.len;
|
|
ret = htx_prepare_blk_expansion(htx, blk, delta);
|
|
if (!ret)
|
|
return NULL; /* not enough space */
|
|
|
|
/* Before updating the payload, set the new block size and update HTX
|
|
* message */
|
|
htx_set_blk_value_len(blk, v.len + delta);
|
|
htx->data += delta;
|
|
|
|
if (ret == 1) { /* Replace in place */
|
|
if (delta <= 0) {
|
|
/* compression: copy new data first then move the end */
|
|
memcpy(old.ptr, new.ptr, new.len);
|
|
memmove(old.ptr + new.len, old.ptr + old.len, (v.ptr + v.len) - (old.ptr + old.len));
|
|
}
|
|
else {
|
|
/* expansion: move the end first then copy new data */
|
|
memmove(old.ptr + new.len, old.ptr + old.len, (v.ptr + v.len) - (old.ptr + old.len));
|
|
memcpy(old.ptr, new.ptr, new.len);
|
|
}
|
|
}
|
|
else if (ret == 2) { /* New address but no defrag */
|
|
void *ptr = htx_get_blk_ptr(htx, blk);
|
|
|
|
/* Copy the name, if any */
|
|
memcpy(ptr, n.ptr, n.len);
|
|
ptr += n.len;
|
|
|
|
/* Copy value before old part, if any */
|
|
memcpy(ptr, v.ptr, old.ptr - v.ptr);
|
|
ptr += old.ptr - v.ptr;
|
|
|
|
/* Copy new value */
|
|
memcpy(ptr, new.ptr, new.len);
|
|
ptr += new.len;
|
|
|
|
/* Copy value after old part, if any */
|
|
memcpy(ptr, old.ptr + old.len, (v.ptr + v.len) - (old.ptr + old.len));
|
|
}
|
|
else { /* Do a degrag first */
|
|
struct buffer *tmp = get_trash_chunk();
|
|
|
|
/* Copy the header name, if any */
|
|
chunk_memcat(tmp, n.ptr, n.len);
|
|
|
|
/* Copy value before old part, if any */
|
|
chunk_memcat(tmp, v.ptr, old.ptr - v.ptr);
|
|
|
|
/* Copy new value */
|
|
chunk_memcat(tmp, new.ptr, new.len);
|
|
|
|
/* Copy value after old part if any */
|
|
chunk_memcat(tmp, old.ptr + old.len, (v.ptr + v.len) - (old.ptr + old.len));
|
|
|
|
blk = htx_defrag(htx, blk);
|
|
|
|
/* Finaly, copy data. */
|
|
memcpy(htx_get_blk_ptr(htx, blk), tmp->area, tmp->data);
|
|
}
|
|
return blk;
|
|
}
|
|
|
|
/* Transfer HTX blocks from <src> to <dst>, stopping on the first block of the
|
|
* type <mark> (typically EOH or EOM) or when <count> bytes were moved
|
|
* (including payload and meta-data). It returns the number of bytes moved and
|
|
* the last HTX block inserted in <dst>.
|
|
*/
|
|
struct htx_ret htx_xfer_blks(struct htx *dst, struct htx *src, uint32_t count,
|
|
enum htx_blk_type mark)
|
|
{
|
|
struct htx_blk *blk, *dstblk;
|
|
enum htx_blk_type type;
|
|
uint32_t info, max, sz, ret;
|
|
int inside_trailers = 0;
|
|
|
|
ret = htx_used_space(dst);
|
|
blk = htx_get_blk(src, htx_get_head(src));
|
|
dstblk = NULL;
|
|
|
|
while (blk && count) {
|
|
type = htx_get_blk_type(blk);
|
|
|
|
/* Ingore unused block */
|
|
if (type == HTX_BLK_UNUSED)
|
|
goto next;
|
|
|
|
/* Be sure to have enough space to xfer all headers/trailers in
|
|
* one time. If not while <dst> is empty, we report a parsing
|
|
* error on <src>.
|
|
*/
|
|
if (mark >= HTX_BLK_EOH && (type == HTX_BLK_REQ_SL || type == HTX_BLK_RES_SL)) {
|
|
struct htx_sl *sl = htx_get_blk_ptr(src, blk);
|
|
|
|
if (sl->hdrs_bytes != -1 && sl->hdrs_bytes > count) {
|
|
if (htx_is_empty(dst))
|
|
src->flags |= HTX_FL_PARSING_ERROR;
|
|
break;
|
|
}
|
|
}
|
|
else if ((type == HTX_BLK_TLR || type == HTX_BLK_EOT) &&
|
|
!inside_trailers && mark >= HTX_BLK_EOT) {
|
|
inside_trailers = 1;
|
|
if (htx_used_space(src) > count) {
|
|
if (htx_is_empty(dst))
|
|
src->flags |= HTX_FL_PARSING_ERROR;
|
|
break;
|
|
}
|
|
}
|
|
|
|
sz = htx_get_blksz(blk);
|
|
info = blk->info;
|
|
max = htx_get_max_blksz(dst, count);
|
|
if (!max)
|
|
break;
|
|
if (sz > max) {
|
|
/* Only DATA blocks can be partially xferred */
|
|
if (type != HTX_BLK_DATA)
|
|
break;
|
|
sz = max;
|
|
info = (type << 28) + sz;
|
|
}
|
|
|
|
dstblk = htx_reserve_nxblk(dst, sz);
|
|
if (!dstblk)
|
|
break;
|
|
dstblk->info = info;
|
|
memcpy(htx_get_blk_ptr(dst, dstblk), htx_get_blk_ptr(src, blk), sz);
|
|
|
|
count -= sizeof(dstblk) + sz;
|
|
if (blk->info != info) {
|
|
/* Partial xfer: don't remove <blk> from <src> but
|
|
* resize its content */
|
|
htx_cut_data_blk(src, blk, sz);
|
|
break;
|
|
}
|
|
next:
|
|
blk = htx_remove_blk(src, blk);
|
|
if (type == mark)
|
|
break;
|
|
}
|
|
|
|
end:
|
|
ret = htx_used_space(dst) - ret;
|
|
return (struct htx_ret){.ret = ret, .blk = dstblk};
|
|
}
|
|
|
|
/* Replaces an header by a new one. The new header can be smaller or larger than
|
|
* the old one. It returns the new block on success, otherwise it returns NULL.
|
|
* The header name is always lower cased.
|
|
*/
|
|
struct htx_blk *htx_replace_header(struct htx *htx, struct htx_blk *blk,
|
|
const struct ist name, const struct ist value)
|
|
{
|
|
enum htx_blk_type type;
|
|
void *ptr;
|
|
int32_t delta;
|
|
int ret;
|
|
|
|
type = htx_get_blk_type(blk);
|
|
if (type != HTX_BLK_HDR)
|
|
return NULL;
|
|
|
|
delta = name.len + value.len - htx_get_blksz(blk);
|
|
ret = htx_prepare_blk_expansion(htx, blk, delta);
|
|
if (!ret)
|
|
return NULL; /* not enough space */
|
|
|
|
/* Set the new block size and update HTX message */
|
|
blk->info = (type << 28) + (value.len << 8) + name.len;
|
|
htx->data += delta;
|
|
|
|
/* Replace in place or at a new address is the same. We replace all the
|
|
* header (name+value). Only take care to defrag the message if
|
|
* necessary. */
|
|
if (ret == 3)
|
|
blk = htx_defrag(htx, blk);
|
|
|
|
/* Finaly, copy data. */
|
|
ptr = htx_get_blk_ptr(htx, blk);
|
|
ist2bin_lc(ptr, name);
|
|
memcpy(ptr + name.len, value.ptr, value.len);
|
|
return blk;
|
|
}
|
|
|
|
/* Replaces the parts of the start-line. It returns the new start-line on
|
|
* success, otherwise it returns NULL. It is the caller responsibility to update
|
|
* sl->info, if necessary.
|
|
*/
|
|
struct htx_sl *htx_replace_stline(struct htx *htx, struct htx_blk *blk, const struct ist p1,
|
|
const struct ist p2, const struct ist p3)
|
|
{
|
|
enum htx_blk_type type;
|
|
struct htx_sl *sl;
|
|
struct htx_sl tmp; /* used to save sl->info and sl->flags */
|
|
uint32_t sz;
|
|
int32_t delta;
|
|
int ret;
|
|
|
|
type = htx_get_blk_type(blk);
|
|
if (type != HTX_BLK_REQ_SL && type != HTX_BLK_RES_SL)
|
|
return NULL;
|
|
|
|
/* Save start-line info and flags */
|
|
sl = htx_get_blk_ptr(htx, blk);
|
|
tmp.info = sl->info;
|
|
tmp.flags = sl->flags;
|
|
tmp.hdrs_bytes = sl->hdrs_bytes;
|
|
|
|
sz = htx_get_blksz(blk);
|
|
delta = sizeof(*sl) + p1.len + p2.len + p3.len - sz;
|
|
ret = htx_prepare_blk_expansion(htx, blk, delta);
|
|
if (!ret)
|
|
return NULL; /* not enough space */
|
|
|
|
/* Set the new block size and update HTX message */
|
|
htx_set_blk_value_len(blk, sz+delta);
|
|
htx->data += delta;
|
|
|
|
/* Replace in place or at a new address is the same. We replace all the
|
|
* start-line. Only take care to defrag the message if necessary. */
|
|
if (ret == 3)
|
|
blk = htx_defrag(htx, blk);
|
|
|
|
/* Restore start-line info and flags and copy parts of the start-line */
|
|
sl = htx_get_blk_ptr(htx, blk);
|
|
sl->info = tmp.info;
|
|
sl->flags = tmp.flags;
|
|
sl->hdrs_bytes = tmp.hdrs_bytes;
|
|
|
|
HTX_SL_P1_LEN(sl) = p1.len;
|
|
HTX_SL_P2_LEN(sl) = p2.len;
|
|
HTX_SL_P3_LEN(sl) = p3.len;
|
|
|
|
memcpy(HTX_SL_P1_PTR(sl), p1.ptr, p1.len);
|
|
memcpy(HTX_SL_P2_PTR(sl), p2.ptr, p2.len);
|
|
memcpy(HTX_SL_P3_PTR(sl), p3.ptr, p3.len);
|
|
|
|
return sl;
|
|
}
|
|
|
|
/* Add a new start-line. It returns it on success, otherwise it returns NULL. It
|
|
* is the caller responsibility to set sl->info, if necessary.
|
|
*/
|
|
struct htx_sl *htx_add_stline(struct htx *htx, enum htx_blk_type type, unsigned int flags,
|
|
const struct ist p1, const struct ist p2, const struct ist p3)
|
|
{
|
|
struct htx_blk *blk;
|
|
struct htx_sl *sl;
|
|
uint32_t size;
|
|
|
|
if (type != HTX_BLK_REQ_SL && type != HTX_BLK_RES_SL)
|
|
return NULL;
|
|
|
|
size = sizeof(*sl) + p1.len + p2.len + p3.len;
|
|
|
|
/* FIXME: check size (< 256MB) */
|
|
blk = htx_add_blk(htx, type, size);
|
|
if (!blk)
|
|
return NULL;
|
|
blk->info += size;
|
|
|
|
sl = htx_get_blk_ptr(htx, blk);
|
|
sl->hdrs_bytes = -1;
|
|
sl->flags = flags;
|
|
|
|
HTX_SL_P1_LEN(sl) = p1.len;
|
|
HTX_SL_P2_LEN(sl) = p2.len;
|
|
HTX_SL_P3_LEN(sl) = p3.len;
|
|
|
|
memcpy(HTX_SL_P1_PTR(sl), p1.ptr, p1.len);
|
|
memcpy(HTX_SL_P2_PTR(sl), p2.ptr, p2.len);
|
|
memcpy(HTX_SL_P3_PTR(sl), p3.ptr, p3.len);
|
|
|
|
return sl;
|
|
}
|
|
|
|
/* Adds an HTX block of type HDR in <htx>. It returns the new block on
|
|
* success. Otherwise, it returns NULL. The header name is always lower cased.
|
|
*/
|
|
struct htx_blk *htx_add_header(struct htx *htx, const struct ist name,
|
|
const struct ist value)
|
|
{
|
|
struct htx_blk *blk;
|
|
|
|
/* FIXME: check name.len (< 256B) and value.len (< 1MB) */
|
|
blk = htx_add_blk(htx, HTX_BLK_HDR, name.len + value.len);
|
|
if (!blk)
|
|
return NULL;
|
|
|
|
blk->info += (value.len << 8) + name.len;
|
|
ist2bin_lc(htx_get_blk_ptr(htx, blk), name);
|
|
memcpy(htx_get_blk_ptr(htx, blk) + name.len, value.ptr, value.len);
|
|
return blk;
|
|
}
|
|
|
|
/* Adds an HTX block of type TLR in <htx>. It returns the new block on
|
|
* success. Otherwise, it returns NULL. The trailer name is always lower cased.
|
|
*/
|
|
struct htx_blk *htx_add_trailer(struct htx *htx, const struct ist name,
|
|
const struct ist value)
|
|
{
|
|
struct htx_blk *blk;
|
|
|
|
/* FIXME: check name.len (< 256B) and value.len (< 1MB) */
|
|
blk = htx_add_blk(htx, HTX_BLK_TLR, name.len + value.len);
|
|
if (!blk)
|
|
return NULL;
|
|
|
|
blk->info += (value.len << 8) + name.len;
|
|
ist2bin_lc(htx_get_blk_ptr(htx, blk), name);
|
|
memcpy(htx_get_blk_ptr(htx, blk) + name.len, value.ptr, value.len);
|
|
return blk;
|
|
}
|
|
|
|
/* Add all headers from the list <hdrs> into the HTX message <htx>, followed by
|
|
* the EOH. On sucess, it returns the last block inserted (the EOH), otherwise
|
|
* NULL is returned. */
|
|
struct htx_blk *htx_add_all_headers(struct htx *htx, const struct http_hdr *hdrs)
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; hdrs[i].n.len; i++) {
|
|
if (!htx_add_header(htx, hdrs[i].n, hdrs[i].v))
|
|
return NULL;
|
|
}
|
|
return htx_add_endof(htx, HTX_BLK_EOH);
|
|
}
|
|
|
|
/* Add all trailers from the list <hdrs> into the HTX message <htx>, followed by
|
|
* the EOT. On sucess, it returns the last block inserted (the EOT), otherwise
|
|
* NULL is returned. */
|
|
struct htx_blk *htx_add_all_trailers(struct htx *htx, const struct http_hdr *hdrs)
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; hdrs[i].n.len; i++) {
|
|
if (!htx_add_trailer(htx, hdrs[i].n, hdrs[i].v))
|
|
return NULL;
|
|
}
|
|
return htx_add_endof(htx, HTX_BLK_EOT);
|
|
}
|
|
|
|
/* Adds an HTX block of type EOH, EOT, or EOM in <htx>. It returns the new block
|
|
* on success. Otherwise, it returns NULL.
|
|
*/
|
|
struct htx_blk *htx_add_endof(struct htx *htx, enum htx_blk_type type)
|
|
{
|
|
struct htx_blk *blk;
|
|
|
|
blk = htx_add_blk(htx, type, 1);
|
|
if (!blk)
|
|
return NULL;
|
|
|
|
blk->info += 1;
|
|
return blk;
|
|
}
|
|
|
|
|
|
/* Adds an HTX block of type DATA in <htx>. It first tries to append data if
|
|
* possible. It returns the number of bytes consumed from <data>, which may be
|
|
* zero if nothing could be copied.
|
|
*/
|
|
size_t htx_add_data(struct htx *htx, const struct ist data)
|
|
{
|
|
struct htx_blk *blk, *tailblk;
|
|
void *ptr;
|
|
uint32_t sz, room;
|
|
int32_t len = data.len;
|
|
|
|
if (htx->head == -1)
|
|
goto add_new_block;
|
|
|
|
/* Not enough space to store data */
|
|
if (len > htx_free_data_space(htx))
|
|
len = htx_free_data_space(htx);
|
|
|
|
if (!len)
|
|
return 0;
|
|
|
|
/* get the tail and head block */
|
|
tailblk = htx_get_tail_blk(htx);
|
|
if (tailblk == NULL)
|
|
goto add_new_block;
|
|
sz = htx_get_blksz(tailblk);
|
|
|
|
/* Don't try to append data if the last inserted block is not of the
|
|
* same type */
|
|
if (htx_get_blk_type(tailblk) != HTX_BLK_DATA)
|
|
goto add_new_block;
|
|
|
|
/*
|
|
* Same type and enough space: append data
|
|
*/
|
|
if (!htx->head_addr) {
|
|
if (tailblk->addr+sz != htx->tail_addr)
|
|
goto add_new_block;
|
|
room = (htx_pos_to_addr(htx, htx->tail) - htx->tail_addr);
|
|
}
|
|
else {
|
|
if (tailblk->addr+sz != htx->head_addr)
|
|
goto add_new_block;
|
|
room = (htx->end_addr - htx->head_addr);
|
|
}
|
|
BUG_ON((int32_t)room < 0);
|
|
if (room < len)
|
|
len = room;
|
|
|
|
append_data:
|
|
/* FIXME: check v.len + data.len < 256MB */
|
|
/* Append data and update the block itself */
|
|
ptr = htx_get_blk_ptr(htx, tailblk);
|
|
memcpy(ptr + sz, data.ptr, len);
|
|
htx_change_blk_value_len(htx, tailblk, sz+len);
|
|
|
|
BUG_ON((int32_t)htx->tail_addr < 0);
|
|
BUG_ON((int32_t)htx->head_addr < 0);
|
|
BUG_ON(htx->end_addr > htx->tail_addr);
|
|
BUG_ON(htx->head_addr > htx->end_addr);
|
|
return len;
|
|
|
|
add_new_block:
|
|
/* FIXME: check data.len (< 256MB) */
|
|
blk = htx_add_blk(htx, HTX_BLK_DATA, len);
|
|
if (!blk)
|
|
return 0;
|
|
|
|
blk->info += len;
|
|
memcpy(htx_get_blk_ptr(htx, blk), data.ptr, len);
|
|
return len;
|
|
}
|
|
|
|
|
|
/* Adds an HTX block of type DATA in <htx> just after all other DATA
|
|
* blocks. Because it relies on htx_add_data_atonce(), It may be happened to a
|
|
* DATA block if possible. But, if the function succeeds, it will be the last
|
|
* DATA block in all cases. If an error occurred, NULL is returned. Otherwise,
|
|
* on success, the updated block (or the new one) is returned.
|
|
*/
|
|
struct htx_blk *htx_add_last_data(struct htx *htx, struct ist data)
|
|
{
|
|
struct htx_blk *blk, *pblk;
|
|
|
|
blk = htx_add_data_atonce(htx, data);
|
|
if (!blk)
|
|
return NULL;
|
|
|
|
for (pblk = htx_get_prev_blk(htx, blk); pblk; pblk = htx_get_prev_blk(htx, pblk)) {
|
|
if (htx_get_blk_type(pblk) <= HTX_BLK_DATA)
|
|
break;
|
|
|
|
/* Swap .addr and .info fields */
|
|
blk->addr ^= pblk->addr; pblk->addr ^= blk->addr; blk->addr ^= pblk->addr;
|
|
blk->info ^= pblk->info; pblk->info ^= blk->info; blk->info ^= pblk->info;
|
|
|
|
if (blk->addr == pblk->addr)
|
|
blk->addr += htx_get_blksz(pblk);
|
|
blk = pblk;
|
|
}
|
|
|
|
return blk;
|
|
}
|
|
|
|
/* Moves the block <blk> just before the block <ref>. Both blocks must be in the
|
|
* HTX message <htx> and <blk> must be placed after <ref>. pointer to these
|
|
* blocks are updated to remain valid after the move. */
|
|
void htx_move_blk_before(struct htx *htx, struct htx_blk **blk, struct htx_blk **ref)
|
|
{
|
|
struct htx_blk *cblk, *pblk;
|
|
|
|
cblk = *blk;
|
|
for (pblk = htx_get_prev_blk(htx, cblk); pblk; pblk = htx_get_prev_blk(htx, pblk)) {
|
|
/* Swap .addr and .info fields */
|
|
cblk->addr ^= pblk->addr; pblk->addr ^= cblk->addr; cblk->addr ^= pblk->addr;
|
|
cblk->info ^= pblk->info; pblk->info ^= cblk->info; cblk->info ^= pblk->info;
|
|
|
|
if (cblk->addr == pblk->addr)
|
|
cblk->addr += htx_get_blksz(pblk);
|
|
if (pblk == *ref)
|
|
break;
|
|
cblk = pblk;
|
|
}
|
|
*blk = cblk;
|
|
*ref = pblk;
|
|
}
|
|
|
|
/* Appends the H1 representation of the request line <sl> to the chunk <chk>. It
|
|
* returns 1 if data are successfully appended, otherwise it returns 0.
|
|
*/
|
|
int htx_reqline_to_h1(const struct htx_sl *sl, struct buffer *chk)
|
|
{
|
|
if (HTX_SL_LEN(sl) + 4 > b_room(chk))
|
|
return 0;
|
|
|
|
chunk_memcat(chk, HTX_SL_REQ_MPTR(sl), HTX_SL_REQ_MLEN(sl));
|
|
chunk_memcat(chk, " ", 1);
|
|
chunk_memcat(chk, HTX_SL_REQ_UPTR(sl), HTX_SL_REQ_ULEN(sl));
|
|
chunk_memcat(chk, " ", 1);
|
|
if (sl->flags & HTX_SL_F_VER_11)
|
|
chunk_memcat(chk, "HTTP/1.1", 8);
|
|
else
|
|
chunk_memcat(chk, HTX_SL_REQ_VPTR(sl), HTX_SL_REQ_VLEN(sl));
|
|
|
|
chunk_memcat(chk, "\r\n", 2);
|
|
|
|
return 1;
|
|
}
|
|
|
|
/* Appends the H1 representation of the status line <sl> to the chunk <chk>. It
|
|
* returns 1 if data are successfully appended, otherwise it returns 0.
|
|
*/
|
|
int htx_stline_to_h1(const struct htx_sl *sl, struct buffer *chk)
|
|
{
|
|
if (HTX_SL_LEN(sl) + 4 > b_size(chk))
|
|
return 0;
|
|
|
|
if (sl->flags & HTX_SL_F_VER_11)
|
|
chunk_memcat(chk, "HTTP/1.1", 8);
|
|
else
|
|
chunk_memcat(chk, HTX_SL_RES_VPTR(sl), HTX_SL_RES_VLEN(sl));
|
|
chunk_memcat(chk, " ", 1);
|
|
chunk_memcat(chk, HTX_SL_RES_CPTR(sl), HTX_SL_RES_CLEN(sl));
|
|
chunk_memcat(chk, " ", 1);
|
|
chunk_memcat(chk, HTX_SL_RES_RPTR(sl), HTX_SL_RES_RLEN(sl));
|
|
chunk_memcat(chk, "\r\n", 2);
|
|
|
|
return 1;
|
|
}
|
|
|
|
/* Appends the H1 representation of the header <n> witht the value <v> to the
|
|
* chunk <chk>. It returns 1 if data are successfully appended, otherwise it
|
|
* returns 0.
|
|
*/
|
|
int htx_hdr_to_h1(const struct ist n, const struct ist v, struct buffer *chk)
|
|
{
|
|
if (n.len + v.len + 4 > b_room(chk))
|
|
return 0;
|
|
|
|
chunk_memcat(chk, n.ptr, n.len);
|
|
chunk_memcat(chk, ": ", 2);
|
|
chunk_memcat(chk, v.ptr, v.len);
|
|
chunk_memcat(chk, "\r\n", 2);
|
|
|
|
return 1;
|
|
}
|
|
|
|
/* Appends the H1 representation of the data <data> to the chunk <chk>. If
|
|
* <chunked> is non-zero, it emits HTTP/1 chunk-encoded data. It returns 1 if
|
|
* data are successfully appended, otherwise it returns 0.
|
|
*/
|
|
int htx_data_to_h1(const struct ist data, struct buffer *chk, int chunked)
|
|
{
|
|
if (chunked) {
|
|
uint32_t chksz;
|
|
char tmp[10];
|
|
char *beg, *end;
|
|
|
|
chksz = data.len;
|
|
|
|
beg = end = tmp+10;
|
|
*--beg = '\n';
|
|
*--beg = '\r';
|
|
do {
|
|
*--beg = hextab[chksz & 0xF];
|
|
} while (chksz >>= 4);
|
|
|
|
if (data.len + (end - beg) + 2 > b_room(chk))
|
|
return 0;
|
|
chunk_memcat(chk, beg, end - beg);
|
|
chunk_memcat(chk, data.ptr, data.len);
|
|
chunk_memcat(chk, "\r\n", 2);
|
|
}
|
|
else {
|
|
if (!chunk_memcat(chk, data.ptr, data.len))
|
|
return 0;
|
|
}
|
|
|
|
return 1;
|
|
}
|