blob: 9281ebac61c467814bcb0e48252f3b65c0d9c1c9 [file] [log] [blame]
Christopher Fauleta3d2a162018-10-22 08:59:39 +02001/*
2 * internal HTTP message
3 *
4 * Copyright 2018 HAProxy Technologies, Christopher Faulet <cfaulet@haproxy.com>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#include <common/chunk.h>
Willy Tarreaub96b77e2018-12-11 10:22:41 +010014#include <common/htx.h>
Christopher Fauleta3d2a162018-10-22 08:59:39 +020015
16struct htx htx_empty = { .size = 0, .data = 0, .used = 0 };
17
18/* Defragments an HTTP message, removing unused blocks and unwrapping blocks and
19 * their contents. A temporary message is used to do so. This function never
20 * fails. if <blk> is not NULL, we replace it by the new block address, after
21 * the defragmentation. The new <blk> is returned.
22 */
23/* TODO: merge data blocks into one */
24struct htx_blk *htx_defrag(struct htx *htx, struct htx_blk *blk)
25{
Christopher Fauletaa75b3d2018-12-05 16:20:40 +010026 struct buffer *chunk = get_trash_chunk();
27 struct htx *tmp = htxbuf(chunk);
28 struct htx_blk *newblk, *oldblk;
Christopher Faulet200f8952019-01-02 11:23:44 +010029 uint32_t new, old, blkpos;
Christopher Fauletaa75b3d2018-12-05 16:20:40 +010030 uint32_t addr, blksz;
Christopher Faulet29f17582019-05-23 11:03:26 +020031 int32_t first = -1;
Christopher Fauleta3d2a162018-10-22 08:59:39 +020032
Christopher Fauletaa75b3d2018-12-05 16:20:40 +010033 if (!htx->used)
34 return NULL;
Christopher Fauleta3d2a162018-10-22 08:59:39 +020035
Christopher Faulet200f8952019-01-02 11:23:44 +010036 blkpos = -1;
37
Christopher Fauletaa75b3d2018-12-05 16:20:40 +010038 new = 0;
39 addr = 0;
40 tmp->size = htx->size;
Christopher Fauleta3d2a162018-10-22 08:59:39 +020041
Christopher Fauletaa75b3d2018-12-05 16:20:40 +010042 /* start from the head */
43 for (old = htx_get_head(htx); old != -1; old = htx_get_next(htx, old)) {
44 oldblk = htx_get_blk(htx, old);
Christopher Faulet28f29c72019-04-30 17:55:45 +020045 if (htx_get_blk_type(oldblk) == HTX_BLK_UNUSED)
Christopher Fauletaa75b3d2018-12-05 16:20:40 +010046 continue;
Christopher Fauleta3d2a162018-10-22 08:59:39 +020047
Christopher Fauletaa75b3d2018-12-05 16:20:40 +010048 newblk = htx_get_blk(tmp, new);
49 newblk->addr = addr;
50 newblk->info = oldblk->info;
51 blksz = htx_get_blksz(oldblk);
Christopher Fauleta3d2a162018-10-22 08:59:39 +020052
Christopher Faulet9c66b982019-04-30 18:08:26 +020053 /* update the start-line position */
Christopher Faulet29f17582019-05-23 11:03:26 +020054 if (htx->first == old)
55 first = new;
Christopher Faulet174bfb12018-12-06 14:31:12 +010056
Christopher Faulet200f8952019-01-02 11:23:44 +010057 /* if <blk> is defined, set its new position */
58 if (blk != NULL && blk == oldblk)
59 blkpos = new;
60
Christopher Fauletaa75b3d2018-12-05 16:20:40 +010061 memcpy((void *)tmp->blocks + addr, htx_get_blk_ptr(htx, oldblk), blksz);
62 new++;
63 addr += blksz;
Christopher Fauleta3d2a162018-10-22 08:59:39 +020064
Christopher Fauletb8fd4c02019-05-20 09:32:25 +020065 }
Christopher Fauleta3d2a162018-10-22 08:59:39 +020066
Christopher Faulet28f29c72019-04-30 17:55:45 +020067 htx->used = new;
Christopher Faulet29f17582019-05-23 11:03:26 +020068 htx->first = first;
Christopher Faulet28f29c72019-04-30 17:55:45 +020069 htx->head = 0;
Christopher Fauletaa75b3d2018-12-05 16:20:40 +010070 htx->front = htx->tail = new - 1;
71 memcpy((void *)htx->blocks, (void *)tmp->blocks, htx->size);
Christopher Fauleta3d2a162018-10-22 08:59:39 +020072
Christopher Faulet200f8952019-01-02 11:23:44 +010073 return ((blkpos == -1) ? NULL : htx_get_blk(htx, blkpos));
Christopher Fauleta3d2a162018-10-22 08:59:39 +020074}
75
76/* Reserves a new block in the HTTP message <htx> with a content of <blksz>
77 * bytes. If there is not enough space, NULL is returned. Otherwise the reserved
78 * block is returned and the HTTP message is updated. Space for this new block
79 * is reserved in the HTTP message. But it is the caller responsibility to set
80 * right info in the block to reflect the stored data.
81 */
82static struct htx_blk *htx_reserve_nxblk(struct htx *htx, uint32_t blksz)
83{
Christopher Fauletaa75b3d2018-12-05 16:20:40 +010084 struct htx_blk *blk, *prevblk, *headblk, *frtblk;
85 uint32_t used;
86 uint32_t tail;
87 uint32_t prev;
88 uint32_t wrap;
89 uint32_t head;
90 int32_t headroom, tailroom;
Christopher Fauleta3d2a162018-10-22 08:59:39 +020091
Christopher Fauletaa75b3d2018-12-05 16:20:40 +010092 if (blksz > htx_free_data_space(htx))
93 return NULL; /* full */
Christopher Fauleta3d2a162018-10-22 08:59:39 +020094
Christopher Fauletaa75b3d2018-12-05 16:20:40 +010095 if (!htx->used) {
96 /* Empty message */
Christopher Faulet29f17582019-05-23 11:03:26 +020097 htx->front = htx->head = htx->tail = htx->first = 0;
Christopher Faulet28f29c72019-04-30 17:55:45 +020098 htx->used = 1;
Christopher Fauletaa75b3d2018-12-05 16:20:40 +010099 blk = htx_get_blk(htx, htx->tail);
100 blk->addr = 0;
101 htx->data = blksz;
102 return blk;
103 }
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200104
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100105 used = htx->used + 1;
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100106 prev = htx->tail;
Christopher Faulet28f29c72019-04-30 17:55:45 +0200107 head = htx->head;
108 tail = htx->tail + 1;
109 wrap = htx_get_wrap(htx);
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200110
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100111 if (tail == wrap) {
112 frtblk = htx_get_blk(htx, htx->front);
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200113
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100114 /* Blocks don't wrap for now. We either need to push the new one
115 * on top of others or to defragement the table. */
116 if (sizeof(htx->blocks[0]) * htx_pos_to_idx(htx, wrap+1) >= frtblk->addr + htx_get_blksz(frtblk))
117 wrap++;
118 else if (tail >= used) /* There is hole at the beginning */
119 tail = 0;
120 else {
121 /* No more room, tail hits data. We have to realign the
122 * whole message. */
123 goto defrag;
124 }
125 }
126 else if (used >= wrap) {
127 /* We have hit the tail, we need to reorganize the blocks. */
128 goto defrag;
129 }
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200130
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100131 /* Now we have updated tail, used and wrap, we know that there is some
132 * available room at least from the protocol's perspective. This space
133 * is split in two areas :
134 *
135 * 1: the space between the beginning of the blocks table and the
136 * front data's address. This space will only be used if data don't
137 * wrap yet.
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200138
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100139 * 2: If the previous tail was the front block, the space between the
140 * beginning of the message and the head data's address.
141 * Otherwise, the space between the tail data's address and the
142 * tail's one.
143 */
144 prevblk = htx_get_blk(htx, prev);
145 headblk = htx_get_blk(htx, head);
146 if (prevblk->addr >= headblk->addr) {
147 /* the area was contiguous */
148 frtblk = htx_get_blk(htx, htx->front);
149 tailroom = sizeof(htx->blocks[0]) * htx_pos_to_idx(htx, wrap) - (frtblk->addr + htx_get_blksz(frtblk));
150 headroom = headblk->addr;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200151
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100152 if (tailroom >= (int32_t)blksz) {
153 /* install upfront and update ->front */
154 blk = htx_get_blk(htx, tail);
155 blk->addr = frtblk->addr + htx_get_blksz(frtblk);
156 htx->front = tail;
157 }
158 else if (headroom >= (int32_t)blksz) {
159 blk = htx_get_blk(htx, tail);
160 blk->addr = 0;
161 }
162 else {
163 /* need to defragment the table before inserting upfront */
164 goto defrag;
165 }
166 }
167 else {
168 /* it's already wrapped so we can't store anything in the tailroom */
169 headroom = headblk->addr - (prevblk->addr + htx_get_blksz(prevblk));
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200170
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100171 if (headroom >= (int32_t)blksz) {
172 blk = htx_get_blk(htx, tail);
173 blk->addr = prevblk->addr + htx_get_blksz(prevblk);
174 }
175 else {
176 defrag:
177 /* need to defragment the table before inserting upfront */
178 htx_defrag(htx, NULL);
179 frtblk = htx_get_blk(htx, htx->front);
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100180 tail = htx->tail + 1;
181 used = htx->used + 1;
182 blk = htx_get_blk(htx, tail);
183 blk->addr = frtblk->addr + htx_get_blksz(frtblk);
184 htx->front = tail;
185 }
186 }
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200187
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100188 htx->tail = tail;
189 htx->used = used;
190 htx->data += blksz;
Christopher Faulet29f17582019-05-23 11:03:26 +0200191 /* Set first position if not already set */
192 if (htx->first == -1)
193 htx->first = tail;
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100194 return blk;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200195}
196
197/* Adds a new block of type <type> in the HTTP message <htx>. Its content size
198 * is passed but it is the caller responsibility to do the copy.
199 */
200struct htx_blk *htx_add_blk(struct htx *htx, enum htx_blk_type type, uint32_t blksz)
201{
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100202 struct htx_blk *blk;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200203
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100204 blk = htx_reserve_nxblk(htx, blksz);
205 if (!blk)
206 return NULL;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200207
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100208 blk->info = (type << 28);
209 return blk;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200210}
211
212/* Removes the block <blk> from the HTTP message <htx>. The function returns the
213 * block following <blk> or NULL if <blk> is the last block or the last
214 * inserted one.
215 */
216struct htx_blk *htx_remove_blk(struct htx *htx, struct htx_blk *blk)
217{
Christopher Faulet54483df2018-11-26 15:05:52 +0100218 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Faulet28f29c72019-04-30 17:55:45 +0200219 uint32_t next, pos, wrap;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200220
Christopher Faulet9c66b982019-04-30 18:08:26 +0200221 pos = htx_get_blk_pos(htx, blk);
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100222 if (type != HTX_BLK_UNUSED) {
223 /* Mark the block as unused, decrement allocated size */
224 htx->data -= htx_get_blksz(blk);
225 blk->info = ((uint32_t)HTX_BLK_UNUSED << 28);
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100226 }
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200227
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100228 /* This is the last block in use */
Christopher Faulet29f17582019-05-23 11:03:26 +0200229 if (htx->used == 1) {
230 htx_reset(htx);
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100231 return NULL;
232 }
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200233
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100234 /* There is at least 2 blocks, so tail is always >= 0 */
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100235 blk = NULL;
236 next = pos + 1; /* By default retrun the next block */
Christopher Faulet28f29c72019-04-30 17:55:45 +0200237 wrap = htx_get_wrap(htx);
238 if (htx->tail + 1 == wrap) {
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100239 /* The HTTP message doesn't wrap */
Christopher Faulet28f29c72019-04-30 17:55:45 +0200240 if (pos == htx->head) {
241 /* move the head forward */
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100242 htx->used--;
Christopher Faulet28f29c72019-04-30 17:55:45 +0200243 htx->head++;
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100244 }
245 else if (pos == htx->tail) {
246 /* remove the tail. this was the last inserted block so
247 * return NULL. */
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100248 htx->tail--;
249 htx->used--;
250 goto end;
251 }
252 }
253 else {
254 /* The HTTP message wraps */
255 if (pos == htx->tail) {
256 /* remove the tail. try to unwrap the message (pos == 0)
257 * and return NULL. */
Christopher Faulet28f29c72019-04-30 17:55:45 +0200258 htx->tail = ((pos == 0) ? wrap-1 : htx->tail-1);
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100259 htx->used--;
260 goto end;
261 }
Christopher Faulet28f29c72019-04-30 17:55:45 +0200262 else if (pos == htx->head) {
263 /* move the head forward and try to unwrap the message
264 * (head+1 == wrap) */
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100265 htx->used--;
Christopher Faulet28f29c72019-04-30 17:55:45 +0200266 htx->head++;
267 if (htx->head == wrap)
268 htx->head = next = 0;
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100269 }
270 }
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200271
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100272 blk = htx_get_blk(htx, next);
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200273 end:
Christopher Faulet29f17582019-05-23 11:03:26 +0200274 if (pos == htx->first)
275 htx->first = (blk ? htx_get_blk_pos(htx, blk) : -1);
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100276 if (pos == htx->front)
277 htx->front = htx_find_front(htx);
278 return blk;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200279}
280
Christopher Faulet00cf6972019-01-07 14:53:27 +0100281/* Truncate all blocks after the one containing the offset <offset>. This last
282 * one is truncated too.
283 */
284void htx_truncate(struct htx *htx, uint32_t offset)
285{
286 struct htx_blk *blk;
Christopher Faulet00cf6972019-01-07 14:53:27 +0100287
Christopher Fauletced39002019-05-23 11:12:43 +0200288 for (blk = htx_get_head_blk(htx); blk && offset; blk = htx_get_next_blk(htx, blk)) {
Christopher Faulet00cf6972019-01-07 14:53:27 +0100289 uint32_t sz = htx_get_blksz(blk);
Christopher Fauletced39002019-05-23 11:12:43 +0200290 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Faulet00cf6972019-01-07 14:53:27 +0100291
Christopher Fauletced39002019-05-23 11:12:43 +0200292 if (offset >= sz) {
293 offset -= sz;
294 continue;
295 }
296 if (type == HTX_BLK_DATA || type == HTX_BLK_TLR) {
297 htx_set_blk_value_len(blk, offset);
298 htx->data -= (sz - offset);
299 }
300 offset = 0;
Christopher Faulet00cf6972019-01-07 14:53:27 +0100301 }
302 while (blk)
303 blk = htx_remove_blk(htx, blk);
304}
305
Christopher Faulet549822f2019-02-25 10:23:19 +0100306/* Drain <count> bytes from the HTX message <htx>. DATA blocks will be cut if
307 * necessary. Others blocks will be removed at once if <count> is large
308 * enough. The function returns an htx_ret with the first block remaing in the
309 * messsage and the amount of data drained. If everything is removed,
310 * htx_ret.blk is set to NULL.
311 */
312struct htx_ret htx_drain(struct htx *htx, uint32_t count)
313{
314 struct htx_blk *blk;
315 struct htx_ret htxret = { .blk = NULL, .ret = 0 };
316
Christopher Faulet0f6d6a92019-05-23 11:11:52 +0200317 if (count == htx->data) {
318 htx_reset(htx);
319 htxret.ret = count;
320 return htxret;
321 }
322
Christopher Faulet549822f2019-02-25 10:23:19 +0100323 blk = htx_get_head_blk(htx);
324 while (count && blk) {
325 uint32_t sz = htx_get_blksz(blk);
326 enum htx_blk_type type = htx_get_blk_type(blk);
327
328 /* Ingore unused block */
329 if (type == HTX_BLK_UNUSED)
330 goto next;
331
332 if (sz > count) {
333 if (type == HTX_BLK_DATA) {
334 htx_cut_data_blk(htx, blk, count);
335 htxret.ret += count;
336 }
337 break;
338 }
339 count -= sz;
340 htxret.ret += sz;
341 next:
342 blk = htx_remove_blk(htx, blk);
343 }
344 htxret.blk = blk;
345
346 return htxret;
347}
348
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200349/* Tries to append data to the last inserted block, if the type matches and if
Willy Tarreaud4908fa2019-05-28 10:23:46 +0200350 * there is enough space to take it all. If the space wraps, the buffer is
351 * defragmented and a new block is inserted. If an error occurred, NULL is
Christopher Faulet61775092019-05-07 21:42:27 +0200352 * returned. Otherwise, on success, the updated block (or the new one) is
Willy Tarreaud4908fa2019-05-28 10:23:46 +0200353 * returned. Due to its nature this function can be expensive and should be
354 * avoided whenever possible.
355 */
356struct htx_blk *htx_add_data_atonce(struct htx *htx, const struct ist data)
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200357{
Christopher Fauletf1449b72019-04-10 14:54:46 +0200358 struct htx_blk *blk, *tailblk, *headblk, *frtblk;
359 struct ist v;
360 int32_t room;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200361
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100362 if (!htx->used)
363 goto add_new_block;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200364
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100365 /* Not enough space to store data */
366 if (data.len > htx_free_data_space(htx))
367 return NULL;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200368
Christopher Fauletf1449b72019-04-10 14:54:46 +0200369 /* get the tail and head block */
370 tailblk = htx_get_tail_blk(htx);
371 headblk = htx_get_head_blk(htx);
372 if (tailblk == NULL || headblk == NULL)
373 goto add_new_block;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200374
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100375 /* Don't try to append data if the last inserted block is not of the
376 * same type */
Willy Tarreaud4908fa2019-05-28 10:23:46 +0200377 if (htx_get_blk_type(tailblk) != HTX_BLK_DATA)
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100378 goto add_new_block;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200379
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100380 /*
381 * Same type and enough space: append data
382 */
Christopher Fauletf1449b72019-04-10 14:54:46 +0200383 frtblk = htx_get_blk(htx, htx->front);
384 if (tailblk->addr >= headblk->addr) {
385 if (htx->tail != htx->front)
386 goto add_new_block;
387 room = sizeof(htx->blocks[0]) * htx_pos_to_idx(htx, htx->tail) - (frtblk->addr + htx_get_blksz(frtblk));
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100388 }
Christopher Fauletf1449b72019-04-10 14:54:46 +0200389 else
390 room = headblk->addr - (tailblk->addr + htx_get_blksz(tailblk));
391
392 if (room < (int32_t)data.len)
393 tailblk = htx_defrag(htx, tailblk);
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200394
395 append_data:
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100396 /* get the value of the tail block */
397 /* FIXME: check v.len + data.len < 256MB */
Christopher Fauletf1449b72019-04-10 14:54:46 +0200398 v = htx_get_blk_value(htx, tailblk);
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200399
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100400 /* Append data and update the block itself */
401 memcpy(v.ptr + v.len, data.ptr, data.len);
Christopher Fauletf1449b72019-04-10 14:54:46 +0200402 htx_set_blk_value_len(tailblk, v.len + data.len);
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200403
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100404 /* Update HTTP message */
405 htx->data += data.len;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200406
Christopher Fauletf1449b72019-04-10 14:54:46 +0200407 return tailblk;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200408
409 add_new_block:
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100410 /* FIXME: check tlr.len (< 256MB) */
Willy Tarreaud4908fa2019-05-28 10:23:46 +0200411 blk = htx_add_blk(htx, HTX_BLK_DATA, data.len);
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100412 if (!blk)
413 return NULL;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200414
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100415 blk->info += data.len;
416 memcpy(htx_get_blk_ptr(htx, blk), data.ptr, data.len);
417 return blk;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200418}
419
420/* Replaces a value part of a block by a new one. The new part can be smaller or
421 * larger than the old one. This function works for any kind of block with
422 * attached data. It returns the new block on success, otherwise it returns
423 * NULL.
424 */
425struct htx_blk *htx_replace_blk_value(struct htx *htx, struct htx_blk *blk,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100426 const struct ist old, const struct ist new)
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200427{
Christopher Faulete97f3ba2018-12-10 15:39:40 +0100428 struct buffer *tmp;
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100429 struct ist n, v;
Christopher Faulete97f3ba2018-12-10 15:39:40 +0100430 int32_t delta;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200431
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100432 n = htx_get_blk_name(htx, blk);
433 v = htx_get_blk_value(htx, blk);
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200434
Christopher Faulete97f3ba2018-12-10 15:39:40 +0100435 delta = new.len - old.len;
436
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100437 /* easy case, new data are smaller, so replace it in-place */
Christopher Faulete97f3ba2018-12-10 15:39:40 +0100438 if (delta <= 0) {
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100439 memcpy(old.ptr, new.ptr, new.len);
440 if (old.len != v.len)
441 memmove(old.ptr + new.len, old.ptr + old.len, (v.ptr + v.len) - (old.ptr + old.len));
Christopher Faulete97f3ba2018-12-10 15:39:40 +0100442 htx_set_blk_value_len(blk, v.len + delta);
443 htx->data += delta;
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100444 return blk;
445 }
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200446
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100447 /* we need to allocate more space to store the new header value */
Christopher Faulete97f3ba2018-12-10 15:39:40 +0100448 if (delta > htx_free_space(htx))
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100449 return NULL; /* not enough space */
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200450
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100451 /*
452 * Copy the new header in a temp buffer
453 */
454 tmp = get_trash_chunk();
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200455
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100456 /* 1. copy the header name */
457 chunk_memcat(tmp, n.ptr, n.len);
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200458
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100459 /* 2. copy value before old part, if any */
460 if (old.ptr != v.ptr)
461 chunk_memcat(tmp, v.ptr, old.ptr - v.ptr);
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200462
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100463 /* 3. copy new value */
464 chunk_memcat(tmp, new.ptr, new.len);
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200465
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100466 /* 4. copy value after old part if any */
467 if (old.len != v.len)
468 chunk_memcat(tmp, old.ptr + old.len, (v.ptr + v.len) - (old.ptr + old.len));
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200469
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200470
Christopher Faulete97f3ba2018-12-10 15:39:40 +0100471 /* Expand the block size. But data are not copied yet. Then defragment
472 * the HTX message.
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100473 */
Christopher Faulete97f3ba2018-12-10 15:39:40 +0100474 htx_set_blk_value_len(blk, v.len + delta);
475 htx->data += delta;
476 blk = htx_defrag(htx, blk);
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200477
Christopher Faulete97f3ba2018-12-10 15:39:40 +0100478 /* Finaly, copy data. */
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100479 memcpy(htx_get_blk_ptr(htx, blk), tmp->area, tmp->data);
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200480
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100481 return blk;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200482}
483
484/* Transfer HTX blocks from <src> to <dst>, stopping on the first block of the
Christopher Faulet156852b2019-05-16 11:29:13 +0200485 * type <mark> (typically EOH, EOD or EOM) or when <count> bytes were moved
486 * (including payload and meta-data). It returns the number of bytes moved and
487 * the last HTX block inserted in <dst>.
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200488 */
489struct htx_ret htx_xfer_blks(struct htx *dst, struct htx *src, uint32_t count,
490 enum htx_blk_type mark)
491{
492 struct htx_blk *blk, *dstblk;
493 enum htx_blk_type type;
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100494 uint32_t info, max, sz, ret;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200495
Christopher Faulet156852b2019-05-16 11:29:13 +0200496 ret = htx_used_space(dst);
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200497 blk = htx_get_blk(src, htx_get_head(src));
498 dstblk = NULL;
Christopher Faulet156852b2019-05-16 11:29:13 +0200499
500 while (blk && count) {
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200501 type = htx_get_blk_type(blk);
502
503 /* Ingore unused block */
504 if (type == HTX_BLK_UNUSED)
505 goto next;
506
Christopher Fauleta61e97b2019-05-16 11:30:31 +0200507 /* Be sure to have enough space to xfer all headers in one
508 * time. If not while <dst> is empty, we report a parsing error
509 * on <src>.
510 */
511 if (mark >= HTX_BLK_EOH && (type == HTX_BLK_REQ_SL || type == HTX_BLK_RES_SL)) {
512 struct htx_sl *sl = htx_get_blk_ptr(src, blk);
513
514 if (sl->hdrs_bytes != -1 && sl->hdrs_bytes > count) {
515 if (htx_is_empty(dst))
516 src->flags |= HTX_FL_PARSING_ERROR;
517 break;
518 }
519 }
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200520
Christopher Faulet156852b2019-05-16 11:29:13 +0200521 sz = htx_get_blksz(blk);
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200522 info = blk->info;
Christopher Faulet156852b2019-05-16 11:29:13 +0200523 max = htx_get_max_blksz(dst, count);
524 if (!max)
525 break;
Willy Tarreau90caa072019-04-09 16:21:54 +0200526 if (sz > max) {
Christopher Faulet39744f72019-05-24 14:54:00 +0200527 /* Headers must be fully copied */
Christopher Faulet156852b2019-05-16 11:29:13 +0200528 if (type != HTX_BLK_DATA)
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200529 break;
Christopher Faulet156852b2019-05-16 11:29:13 +0200530 sz = max;
531 info = (type << 28) + sz;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200532 }
533
534 dstblk = htx_reserve_nxblk(dst, sz);
535 if (!dstblk)
536 break;
537 dstblk->info = info;
538 memcpy(htx_get_blk_ptr(dst, dstblk), htx_get_blk_ptr(src, blk), sz);
539
Christopher Faulet156852b2019-05-16 11:29:13 +0200540 count -= sizeof(dstblk) + sz;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200541 if (blk->info != info) {
542 /* Partial move: don't remove <blk> from <src> but
543 * resize its content */
Christopher Faulet156852b2019-05-16 11:29:13 +0200544 htx_cut_data_blk(src, blk, sz);
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200545 break;
546 }
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200547 next:
548 blk = htx_remove_blk(src, blk);
549 if (type == mark)
550 break;
551
552 }
553
Christopher Faulet156852b2019-05-16 11:29:13 +0200554 end:
555 ret = htx_used_space(dst) - ret;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200556 return (struct htx_ret){.ret = ret, .blk = dstblk};
557}
558
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200559/* Replaces an header by a new one. The new header can be smaller or larger than
560 * the old one. It returns the new block on success, otherwise it returns NULL.
Willy Tarreaued00e342018-12-07 08:47:45 +0100561 * The header name is always lower cased.
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200562 */
563struct htx_blk *htx_replace_header(struct htx *htx, struct htx_blk *blk,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100564 const struct ist name, const struct ist value)
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200565{
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100566 enum htx_blk_type type;
Christopher Faulete97f3ba2018-12-10 15:39:40 +0100567 int32_t delta;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200568
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100569 type = htx_get_blk_type(blk);
570 if (type != HTX_BLK_HDR)
571 return NULL;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200572
Christopher Faulete97f3ba2018-12-10 15:39:40 +0100573 delta = name.len + value.len - htx_get_blksz(blk);
574
575 /* easy case, new value is smaller, so replace it in-place */
576 if (delta <= 0) {
577 blk->info = (type << 28) + (value.len << 8) + name.len;
578 htx->data += delta;
579 goto copy;
580 }
581
582 /* we need to allocate more space to store the new value */
583 if (delta > htx_free_space(htx))
584 return NULL; /* not enough space */
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200585
Christopher Faulete97f3ba2018-12-10 15:39:40 +0100586 /* Expand the block size. But data are not copied yet. Then defragment
587 * the HTX message.
588 */
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200589 blk->info = (type << 28) + (value.len << 8) + name.len;
Christopher Faulete97f3ba2018-12-10 15:39:40 +0100590 htx->data += delta;
591 blk = htx_defrag(htx, blk);
592
593 copy:
594 /* Finaly, copy data. */
Willy Tarreaued00e342018-12-07 08:47:45 +0100595 ist2bin_lc(htx_get_blk_ptr(htx, blk), name);
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100596 memcpy(htx_get_blk_ptr(htx, blk) + name.len, value.ptr, value.len);
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100597 return blk;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200598}
599
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100600/* Replaces the parts of the start-line. It returns the new start-line on
601 * success, otherwise it returns NULL. It is the caller responsibility to update
602 * sl->info, if necessary.
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200603 */
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100604struct htx_sl *htx_replace_stline(struct htx *htx, struct htx_blk *blk, const struct ist p1,
605 const struct ist p2, const struct ist p3)
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200606{
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100607 struct htx_sl *sl;
608 struct htx_sl tmp; /* used to save sl->info and sl->flags */
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100609 enum htx_blk_type type;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200610 uint32_t size;
Christopher Faulete97f3ba2018-12-10 15:39:40 +0100611 int32_t delta;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200612
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100613 type = htx_get_blk_type(blk);
Willy Tarreauc706cd72018-12-07 17:12:22 +0100614 if (type != HTX_BLK_REQ_SL && type != HTX_BLK_RES_SL)
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100615 return NULL;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200616
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100617 /* Save start-line info and flags */
618 sl = htx_get_blk_ptr(htx, blk);
619 tmp.info = sl->info;
620 tmp.flags = sl->flags;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100621
622 size = sizeof(*sl) + p1.len + p2.len + p3.len;
Christopher Faulete97f3ba2018-12-10 15:39:40 +0100623 delta = size - htx_get_blksz(blk);
624
625 /* easy case, new data are smaller, so replace it in-place */
626 if (delta <= 0) {
627 htx_set_blk_value_len(blk, size);
628 htx->data += delta;
629 goto copy;
630 }
631
632 /* we need to allocate more space to store the new value */
633 if (delta > htx_free_space(htx))
634 return NULL; /* not enough space */
635
636 /* Expand the block size. But data are not copied yet. Then defragment
637 * the HTX message.
638 */
639 htx_set_blk_value_len(blk, size);
640 htx->data += delta;
641 blk = htx_defrag(htx, blk);
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200642
Christopher Faulete97f3ba2018-12-10 15:39:40 +0100643 copy:
644 /* Restore start-line info and flags and copy parts of the start-line */
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100645 sl = htx_get_blk_ptr(htx, blk);
646 sl->info = tmp.info;
647 sl->flags = tmp.flags;
Christopher Faulet05c083c2019-05-15 14:56:47 +0200648 if (sl->hdrs_bytes != -1)
649 sl->hdrs_bytes += delta;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200650
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100651 HTX_SL_P1_LEN(sl) = p1.len;
652 HTX_SL_P2_LEN(sl) = p2.len;
653 HTX_SL_P3_LEN(sl) = p3.len;
Christopher Faulet54483df2018-11-26 15:05:52 +0100654
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100655 memcpy(HTX_SL_P1_PTR(sl), p1.ptr, p1.len);
656 memcpy(HTX_SL_P2_PTR(sl), p2.ptr, p2.len);
657 memcpy(HTX_SL_P3_PTR(sl), p3.ptr, p3.len);
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200658
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100659 return sl;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200660}
661
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100662/* Add a new start-line. It returns it on success, otherwise it returns NULL. It
663 * is the caller responsibility to set sl->info, if necessary.
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200664 */
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100665struct htx_sl *htx_add_stline(struct htx *htx, enum htx_blk_type type, unsigned int flags,
666 const struct ist p1, const struct ist p2, const struct ist p3)
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200667{
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100668 struct htx_blk *blk;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100669 struct htx_sl *sl;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200670 uint32_t size;
671
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100672 if (type != HTX_BLK_REQ_SL && type != HTX_BLK_RES_SL)
673 return NULL;
674
675 size = sizeof(*sl) + p1.len + p2.len + p3.len;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200676
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100677 /* FIXME: check size (< 256MB) */
678 blk = htx_add_blk(htx, type, size);
679 if (!blk)
680 return NULL;
681 blk->info += size;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200682
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100683 sl = htx_get_blk_ptr(htx, blk);
Christopher Faulet05c083c2019-05-15 14:56:47 +0200684 sl->hdrs_bytes = -1;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100685 sl->flags = flags;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200686
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100687 HTX_SL_P1_LEN(sl) = p1.len;
688 HTX_SL_P2_LEN(sl) = p2.len;
689 HTX_SL_P3_LEN(sl) = p3.len;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200690
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100691 memcpy(HTX_SL_P1_PTR(sl), p1.ptr, p1.len);
692 memcpy(HTX_SL_P2_PTR(sl), p2.ptr, p2.len);
693 memcpy(HTX_SL_P3_PTR(sl), p3.ptr, p3.len);
694
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100695 return sl;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200696}
697
698/* Adds an HTX block of type HDR in <htx>. It returns the new block on
Willy Tarreaued00e342018-12-07 08:47:45 +0100699 * success. Otherwise, it returns NULL. The header name is always lower cased.
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200700 */
701struct htx_blk *htx_add_header(struct htx *htx, const struct ist name,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100702 const struct ist value)
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200703{
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100704 struct htx_blk *blk;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200705
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100706 /* FIXME: check name.len (< 256B) and value.len (< 1MB) */
707 blk = htx_add_blk(htx, HTX_BLK_HDR, name.len + value.len);
708 if (!blk)
709 return NULL;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200710
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100711 blk->info += (value.len << 8) + name.len;
Willy Tarreaued00e342018-12-07 08:47:45 +0100712 ist2bin_lc(htx_get_blk_ptr(htx, blk), name);
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100713 memcpy(htx_get_blk_ptr(htx, blk) + name.len, value.ptr, value.len);
714 return blk;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200715}
716
Willy Tarreau52610e92019-01-03 18:26:17 +0100717/* Adds an HTX block of type <type> in <htx>, of size <blksz>. It returns the
718 * new block on success. Otherwise, it returns NULL. The caller is responsible
719 * for filling the block itself.
720 */
721struct htx_blk *htx_add_blk_type_size(struct htx *htx, enum htx_blk_type type, uint32_t blksz)
722{
723 struct htx_blk *blk;
724
725 blk = htx_add_blk(htx, type, blksz);
726 if (!blk)
727 return NULL;
728
729 blk->info += blksz;
730 return blk;
731}
732
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200733struct htx_blk *htx_add_all_headers(struct htx *htx, const struct http_hdr *hdrs)
734{
735 int i;
736
737 for (i = 0; hdrs[i].n.len; i++) {
738 if (!htx_add_header(htx, hdrs[i].n, hdrs[i].v))
739 return NULL;
740 }
741 return htx_add_endof(htx, HTX_BLK_EOH);
742}
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200743
744/* Adds an HTX block of type EOH,EOD or EOM in <htx>. It returns the new block
745 * on success. Otherwise, it returns NULL.
746 */
747struct htx_blk *htx_add_endof(struct htx *htx, enum htx_blk_type type)
748{
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100749 struct htx_blk *blk;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200750
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100751 blk = htx_add_blk(htx, type, 1);
752 if (!blk)
753 return NULL;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200754
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100755 blk->info += 1;
756 return blk;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200757}
758
759
760/* Adds an HTX block of type DATA in <htx>. It first tries to append data if
Willy Tarreau0a7ef022019-05-28 10:30:11 +0200761 * possible. It returns the number of bytes consumed from <data>, which may be
762 * zero if nothing could be copied.
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200763 */
Willy Tarreau0a7ef022019-05-28 10:30:11 +0200764size_t htx_add_data(struct htx *htx, const struct ist data)
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200765{
Willy Tarreau0350b902019-05-28 10:58:50 +0200766 struct htx_blk *blk, *tailblk, *headblk, *frtblk;
767 struct ist v;
768 int32_t room;
769 int32_t len = data.len;
Willy Tarreau0a7ef022019-05-28 10:30:11 +0200770
Willy Tarreau0350b902019-05-28 10:58:50 +0200771 if (!htx->used)
772 goto add_new_block;
773
774 /* Not enough space to store data */
775 if (len > htx_free_data_space(htx))
776 len = htx_free_data_space(htx);
777
778 if (!len)
779 return 0;
780
781 /* get the tail and head block */
782 tailblk = htx_get_tail_blk(htx);
783 headblk = htx_get_head_blk(htx);
784 if (tailblk == NULL || headblk == NULL)
785 goto add_new_block;
786
787 /* Don't try to append data if the last inserted block is not of the
788 * same type */
789 if (htx_get_blk_type(tailblk) != HTX_BLK_DATA)
790 goto add_new_block;
791
792 /*
793 * Same type and enough space: append data
794 */
795 frtblk = htx_get_blk(htx, htx->front);
796 if (tailblk->addr >= headblk->addr) {
797 if (htx->tail != htx->front)
798 goto add_new_block;
799 room = sizeof(htx->blocks[0]) * htx_pos_to_idx(htx, htx->tail) - (frtblk->addr + htx_get_blksz(frtblk));
800 }
Willy Tarreau0a7ef022019-05-28 10:30:11 +0200801 else
Willy Tarreau0350b902019-05-28 10:58:50 +0200802 room = headblk->addr - (tailblk->addr + htx_get_blksz(tailblk));
803
804 if (room < len)
805 len = room;
806
807 append_data:
808 /* get the value of the tail block */
809 /* FIXME: check v.len + len < 256MB */
810 v = htx_get_blk_value(htx, tailblk);
811
812 /* Append data and update the block itself */
813 memcpy(v.ptr + v.len, data.ptr, len);
814 htx_set_blk_value_len(tailblk, v.len + len);
815
816 /* Update HTTP message */
817 htx->data += len;
818 return len;
819
820 add_new_block:
821 /* FIXME: check tlr.len (< 256MB) */
822 blk = htx_add_blk(htx, HTX_BLK_DATA, len);
823 if (!blk)
Willy Tarreau0a7ef022019-05-28 10:30:11 +0200824 return 0;
Willy Tarreau0350b902019-05-28 10:58:50 +0200825
826 blk->info += len;
827 memcpy(htx_get_blk_ptr(htx, blk), data.ptr, len);
828 return len;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200829}
830
Christopher Faulet61775092019-05-07 21:42:27 +0200831/* Adds an HTX block of type TLR in <htx>. It returns the new block on
832 * success. Otherwise, it returns NULL.
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200833 */
834struct htx_blk *htx_add_trailer(struct htx *htx, const struct ist tlr)
835{
Christopher Faulet61775092019-05-07 21:42:27 +0200836 struct htx_blk *blk;
837
838 /* FIXME: check tlr.len (< 256MB) */
839 blk = htx_add_blk(htx, HTX_BLK_TLR, tlr.len);
840 if (!blk)
841 return NULL;
842
843 blk->info += tlr.len;
844 memcpy(htx_get_blk_ptr(htx, blk), tlr.ptr, tlr.len);
845 return blk;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200846}
847
Christopher Faulet24ed8352018-11-22 11:20:43 +0100848struct htx_blk *htx_add_data_before(struct htx *htx, const struct htx_blk *ref,
849 const struct ist data)
850{
851 struct htx_blk *blk;
852 int32_t prev;
853
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100854 /* FIXME: check data.len (< 256MB) */
855 blk = htx_add_blk(htx, HTX_BLK_DATA, data.len);
856 if (!blk)
857 return NULL;
Christopher Faulet24ed8352018-11-22 11:20:43 +0100858
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100859 blk->info += data.len;
860 memcpy(htx_get_blk_ptr(htx, blk), data.ptr, data.len);
Christopher Faulet24ed8352018-11-22 11:20:43 +0100861
862 for (prev = htx_get_prev(htx, htx->tail); prev != -1; prev = htx_get_prev(htx, prev)) {
863 struct htx_blk *pblk = htx_get_blk(htx, prev);
864
865 /* Swap .addr and .info fields */
866 blk->addr ^= pblk->addr; pblk->addr ^= blk->addr; blk->addr ^= pblk->addr;
867 blk->info ^= pblk->info; pblk->info ^= blk->info; blk->info ^= pblk->info;
868
869 if (blk->addr == pblk->addr)
870 blk->addr += htx_get_blksz(pblk);
871 htx->front = prev;
872
873 if (pblk == ref)
874 break;
875 blk = pblk;
876 }
Christopher Faulet05aab642019-04-11 13:43:57 +0200877
878 if (htx_get_blk_pos(htx, blk) != htx->front)
879 htx_defrag(htx, NULL);
880
Christopher Faulet24ed8352018-11-22 11:20:43 +0100881 return blk;
882}
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200883
Christopher Fauletc59ff232018-12-03 13:58:44 +0100884/* Appends the H1 representation of the request line block <blk> to the
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200885 * chunk <chk>. It returns 1 if data are successfully appended, otherwise it
886 * returns 0.
887 */
Christopher Fauletc59ff232018-12-03 13:58:44 +0100888int htx_reqline_to_h1(const struct htx_sl *sl, struct buffer *chk)
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200889{
Christopher Faulet570d1612018-11-26 11:13:57 +0100890 if (HTX_SL_LEN(sl) + 4 > b_room(chk))
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200891 return 0;
892
Christopher Faulet570d1612018-11-26 11:13:57 +0100893 chunk_memcat(chk, HTX_SL_REQ_MPTR(sl), HTX_SL_REQ_MLEN(sl));
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200894 chunk_memcat(chk, " ", 1);
Christopher Faulet570d1612018-11-26 11:13:57 +0100895 chunk_memcat(chk, HTX_SL_REQ_UPTR(sl), HTX_SL_REQ_ULEN(sl));
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200896 chunk_memcat(chk, " ", 1);
Christopher Faulet1e7af462018-12-03 14:05:01 +0100897 if (sl->flags & HTX_SL_F_VER_11)
898 chunk_memcat(chk, "HTTP/1.1", 8);
899 else
900 chunk_memcat(chk, HTX_SL_REQ_VPTR(sl), HTX_SL_REQ_VLEN(sl));
901
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200902 chunk_memcat(chk, "\r\n", 2);
903
904 return 1;
905}
906
Christopher Fauletc59ff232018-12-03 13:58:44 +0100907/* Appends the H1 representation of the status line block <blk> to the chunk
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200908 * <chk>. It returns 1 if data are successfully appended, otherwise it
909 * returns 0.
910 */
Christopher Fauletc59ff232018-12-03 13:58:44 +0100911int htx_stline_to_h1(const struct htx_sl *sl, struct buffer *chk)
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200912{
Christopher Faulet570d1612018-11-26 11:13:57 +0100913 if (HTX_SL_LEN(sl) + 4 > b_size(chk))
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200914 return 0;
915
Christopher Faulet1e7af462018-12-03 14:05:01 +0100916 if (sl->flags & HTX_SL_F_VER_11)
917 chunk_memcat(chk, "HTTP/1.1", 8);
918 else
919 chunk_memcat(chk, HTX_SL_RES_VPTR(sl), HTX_SL_RES_VLEN(sl));
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200920 chunk_memcat(chk, " ", 1);
Christopher Faulet570d1612018-11-26 11:13:57 +0100921 chunk_memcat(chk, HTX_SL_RES_CPTR(sl), HTX_SL_RES_CLEN(sl));
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200922 chunk_memcat(chk, " ", 1);
Christopher Faulet570d1612018-11-26 11:13:57 +0100923 chunk_memcat(chk, HTX_SL_RES_RPTR(sl), HTX_SL_RES_RLEN(sl));
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200924 chunk_memcat(chk, "\r\n", 2);
925
926 return 1;
927}
928
Christopher Fauletc59ff232018-12-03 13:58:44 +0100929/* Appends the H1 representation of the header block <blk> to the chunk
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200930 * <chk>. It returns 1 if data are successfully appended, otherwise it returns
931 * 0.
932 */
Christopher Fauletc59ff232018-12-03 13:58:44 +0100933int htx_hdr_to_h1(const struct ist n, const struct ist v, struct buffer *chk)
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200934{
935 if (n.len + v.len + 4 > b_room(chk))
936 return 0;
937
938 chunk_memcat(chk, n.ptr, n.len);
939 chunk_memcat(chk, ": ", 2);
940 chunk_memcat(chk, v.ptr, v.len);
941 chunk_memcat(chk, "\r\n", 2);
942
943 return 1;
944}
945
Christopher Fauletc59ff232018-12-03 13:58:44 +0100946/* Appends the H1 representation of the data block <blk> to the chunk
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200947 * <chk>. If <chunked> is non-zero, it emits HTTP/1 chunk-encoded data. It
948 * returns 1 if data are successfully appended, otherwise it returns 0.
949 */
Christopher Fauletc59ff232018-12-03 13:58:44 +0100950int htx_data_to_h1(const struct ist data, struct buffer *chk, int chunked)
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200951{
952 if (chunked) {
953 uint32_t chksz;
954 char tmp[10];
955 char *beg, *end;
956
957 chksz = data.len;
958
959 beg = end = tmp+10;
960 *--beg = '\n';
961 *--beg = '\r';
962 do {
963 *--beg = hextab[chksz & 0xF];
964 } while (chksz >>= 4);
965
966 if (data.len + (end - beg) + 2 > b_room(chk))
967 return 0;
968 chunk_memcat(chk, beg, end - beg);
969 chunk_memcat(chk, data.ptr, data.len);
970 chunk_memcat(chk, "\r\n", 2);
971 }
972 else {
973 if (!chunk_memcat(chk, data.ptr, data.len))
974 return 0;
975 }
976
977 return 1;
978}
979
Christopher Fauletc59ff232018-12-03 13:58:44 +0100980/* Appends the h1 representation of the trailer block <blk> to the chunk
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200981 * <chk>. It returns 1 if data are successfully appended, otherwise it returns
982 * 0.
983 */
Christopher Fauletc59ff232018-12-03 13:58:44 +0100984int htx_trailer_to_h1(const struct ist tlr, struct buffer *chk)
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200985{
986 /* FIXME: be sure the CRLF is here or remove it when inserted */
987 if (!chunk_memcat(chk, tlr.ptr, tlr.len))
988 return 0;
989 return 1;
990}