blob: 8ff643633618c71ccb5f041dede2190c78b98fbe [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
Christopher Faulet61775092019-05-07 21:42:27 +0200350 * there is enough non-wrapping space. Only DATA content can be appended. If the
351 * append fails, a new block is inserted. If an error occurred, NULL is
352 * returned. Otherwise, on success, the updated block (or the new one) is
353 * returned.
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200354*/
355static struct htx_blk *htx_append_blk_value(struct htx *htx, enum htx_blk_type type,
356 const struct ist data)
357{
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 Faulet61775092019-05-07 21:42:27 +0200369 /* Append only DATA */
370 if (type != HTX_BLK_DATA)
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100371 goto add_new_block;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200372
Christopher Fauletf1449b72019-04-10 14:54:46 +0200373 /* get the tail and head block */
374 tailblk = htx_get_tail_blk(htx);
375 headblk = htx_get_head_blk(htx);
376 if (tailblk == NULL || headblk == NULL)
377 goto add_new_block;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200378
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100379 /* Don't try to append data if the last inserted block is not of the
380 * same type */
Christopher Fauletf1449b72019-04-10 14:54:46 +0200381 if (type != htx_get_blk_type(tailblk))
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100382 goto add_new_block;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200383
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100384 /*
385 * Same type and enough space: append data
386 */
Christopher Fauletf1449b72019-04-10 14:54:46 +0200387 frtblk = htx_get_blk(htx, htx->front);
388 if (tailblk->addr >= headblk->addr) {
389 if (htx->tail != htx->front)
390 goto add_new_block;
391 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 +0100392 }
Christopher Fauletf1449b72019-04-10 14:54:46 +0200393 else
394 room = headblk->addr - (tailblk->addr + htx_get_blksz(tailblk));
395
396 if (room < (int32_t)data.len)
397 tailblk = htx_defrag(htx, tailblk);
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200398
399 append_data:
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100400 /* get the value of the tail block */
401 /* FIXME: check v.len + data.len < 256MB */
Christopher Fauletf1449b72019-04-10 14:54:46 +0200402 v = htx_get_blk_value(htx, tailblk);
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200403
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100404 /* Append data and update the block itself */
405 memcpy(v.ptr + v.len, data.ptr, data.len);
Christopher Fauletf1449b72019-04-10 14:54:46 +0200406 htx_set_blk_value_len(tailblk, v.len + data.len);
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200407
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100408 /* Update HTTP message */
409 htx->data += data.len;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200410
Christopher Fauletf1449b72019-04-10 14:54:46 +0200411 return tailblk;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200412
413 add_new_block:
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100414 /* FIXME: check tlr.len (< 256MB) */
415 blk = htx_add_blk(htx, type, data.len);
416 if (!blk)
417 return NULL;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200418
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100419 blk->info += data.len;
420 memcpy(htx_get_blk_ptr(htx, blk), data.ptr, data.len);
421 return blk;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200422}
423
424/* Replaces a value part of a block by a new one. The new part can be smaller or
425 * larger than the old one. This function works for any kind of block with
426 * attached data. It returns the new block on success, otherwise it returns
427 * NULL.
428 */
429struct htx_blk *htx_replace_blk_value(struct htx *htx, struct htx_blk *blk,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100430 const struct ist old, const struct ist new)
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200431{
Christopher Faulete97f3ba2018-12-10 15:39:40 +0100432 struct buffer *tmp;
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100433 struct ist n, v;
Christopher Faulete97f3ba2018-12-10 15:39:40 +0100434 int32_t delta;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200435
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100436 n = htx_get_blk_name(htx, blk);
437 v = htx_get_blk_value(htx, blk);
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200438
Christopher Faulete97f3ba2018-12-10 15:39:40 +0100439 delta = new.len - old.len;
440
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100441 /* easy case, new data are smaller, so replace it in-place */
Christopher Faulete97f3ba2018-12-10 15:39:40 +0100442 if (delta <= 0) {
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100443 memcpy(old.ptr, new.ptr, new.len);
444 if (old.len != v.len)
445 memmove(old.ptr + new.len, old.ptr + old.len, (v.ptr + v.len) - (old.ptr + old.len));
Christopher Faulete97f3ba2018-12-10 15:39:40 +0100446 htx_set_blk_value_len(blk, v.len + delta);
447 htx->data += delta;
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100448 return blk;
449 }
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200450
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100451 /* we need to allocate more space to store the new header value */
Christopher Faulete97f3ba2018-12-10 15:39:40 +0100452 if (delta > htx_free_space(htx))
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100453 return NULL; /* not enough space */
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200454
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100455 /*
456 * Copy the new header in a temp buffer
457 */
458 tmp = get_trash_chunk();
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200459
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100460 /* 1. copy the header name */
461 chunk_memcat(tmp, n.ptr, n.len);
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200462
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100463 /* 2. copy value before old part, if any */
464 if (old.ptr != v.ptr)
465 chunk_memcat(tmp, v.ptr, old.ptr - v.ptr);
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200466
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100467 /* 3. copy new value */
468 chunk_memcat(tmp, new.ptr, new.len);
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200469
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100470 /* 4. copy value after old part if any */
471 if (old.len != v.len)
472 chunk_memcat(tmp, old.ptr + old.len, (v.ptr + v.len) - (old.ptr + old.len));
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200473
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200474
Christopher Faulete97f3ba2018-12-10 15:39:40 +0100475 /* Expand the block size. But data are not copied yet. Then defragment
476 * the HTX message.
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100477 */
Christopher Faulete97f3ba2018-12-10 15:39:40 +0100478 htx_set_blk_value_len(blk, v.len + delta);
479 htx->data += delta;
480 blk = htx_defrag(htx, blk);
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200481
Christopher Faulete97f3ba2018-12-10 15:39:40 +0100482 /* Finaly, copy data. */
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100483 memcpy(htx_get_blk_ptr(htx, blk), tmp->area, tmp->data);
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200484
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100485 return blk;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200486}
487
488/* Transfer HTX blocks from <src> to <dst>, stopping on the first block of the
Christopher Faulet156852b2019-05-16 11:29:13 +0200489 * type <mark> (typically EOH, EOD or EOM) or when <count> bytes were moved
490 * (including payload and meta-data). It returns the number of bytes moved and
491 * the last HTX block inserted in <dst>.
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200492 */
493struct htx_ret htx_xfer_blks(struct htx *dst, struct htx *src, uint32_t count,
494 enum htx_blk_type mark)
495{
496 struct htx_blk *blk, *dstblk;
497 enum htx_blk_type type;
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100498 uint32_t info, max, sz, ret;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200499
Christopher Faulet156852b2019-05-16 11:29:13 +0200500 ret = htx_used_space(dst);
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200501 blk = htx_get_blk(src, htx_get_head(src));
502 dstblk = NULL;
Christopher Faulet156852b2019-05-16 11:29:13 +0200503
504 while (blk && count) {
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200505 type = htx_get_blk_type(blk);
506
507 /* Ingore unused block */
508 if (type == HTX_BLK_UNUSED)
509 goto next;
510
Christopher Fauleta61e97b2019-05-16 11:30:31 +0200511 /* Be sure to have enough space to xfer all headers in one
512 * time. If not while <dst> is empty, we report a parsing error
513 * on <src>.
514 */
515 if (mark >= HTX_BLK_EOH && (type == HTX_BLK_REQ_SL || type == HTX_BLK_RES_SL)) {
516 struct htx_sl *sl = htx_get_blk_ptr(src, blk);
517
518 if (sl->hdrs_bytes != -1 && sl->hdrs_bytes > count) {
519 if (htx_is_empty(dst))
520 src->flags |= HTX_FL_PARSING_ERROR;
521 break;
522 }
523 }
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200524
Christopher Faulet156852b2019-05-16 11:29:13 +0200525 sz = htx_get_blksz(blk);
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200526 info = blk->info;
Christopher Faulet156852b2019-05-16 11:29:13 +0200527 max = htx_get_max_blksz(dst, count);
528 if (!max)
529 break;
Willy Tarreau90caa072019-04-09 16:21:54 +0200530 if (sz > max) {
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200531 /* Headers and pseudo headers must be fully copied */
Christopher Faulet156852b2019-05-16 11:29:13 +0200532 if (type != HTX_BLK_DATA)
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200533 break;
Christopher Faulet156852b2019-05-16 11:29:13 +0200534 sz = max;
535 info = (type << 28) + sz;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200536 }
537
538 dstblk = htx_reserve_nxblk(dst, sz);
539 if (!dstblk)
540 break;
541 dstblk->info = info;
542 memcpy(htx_get_blk_ptr(dst, dstblk), htx_get_blk_ptr(src, blk), sz);
543
Christopher Faulet156852b2019-05-16 11:29:13 +0200544 count -= sizeof(dstblk) + sz;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200545 if (blk->info != info) {
546 /* Partial move: don't remove <blk> from <src> but
547 * resize its content */
Christopher Faulet156852b2019-05-16 11:29:13 +0200548 htx_cut_data_blk(src, blk, sz);
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200549 break;
550 }
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200551 next:
552 blk = htx_remove_blk(src, blk);
553 if (type == mark)
554 break;
555
556 }
557
Christopher Faulet156852b2019-05-16 11:29:13 +0200558 end:
559 ret = htx_used_space(dst) - ret;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200560 return (struct htx_ret){.ret = ret, .blk = dstblk};
561}
562
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200563/* Replaces an header by a new one. The new header can be smaller or larger than
564 * the old one. It returns the new block on success, otherwise it returns NULL.
Willy Tarreaued00e342018-12-07 08:47:45 +0100565 * The header name is always lower cased.
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200566 */
567struct htx_blk *htx_replace_header(struct htx *htx, struct htx_blk *blk,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100568 const struct ist name, const struct ist value)
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200569{
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100570 enum htx_blk_type type;
Christopher Faulete97f3ba2018-12-10 15:39:40 +0100571 int32_t delta;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200572
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100573 type = htx_get_blk_type(blk);
574 if (type != HTX_BLK_HDR)
575 return NULL;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200576
Christopher Faulete97f3ba2018-12-10 15:39:40 +0100577 delta = name.len + value.len - htx_get_blksz(blk);
578
579 /* easy case, new value is smaller, so replace it in-place */
580 if (delta <= 0) {
581 blk->info = (type << 28) + (value.len << 8) + name.len;
582 htx->data += delta;
583 goto copy;
584 }
585
586 /* we need to allocate more space to store the new value */
587 if (delta > htx_free_space(htx))
588 return NULL; /* not enough space */
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200589
Christopher Faulete97f3ba2018-12-10 15:39:40 +0100590 /* Expand the block size. But data are not copied yet. Then defragment
591 * the HTX message.
592 */
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200593 blk->info = (type << 28) + (value.len << 8) + name.len;
Christopher Faulete97f3ba2018-12-10 15:39:40 +0100594 htx->data += delta;
595 blk = htx_defrag(htx, blk);
596
597 copy:
598 /* Finaly, copy data. */
Willy Tarreaued00e342018-12-07 08:47:45 +0100599 ist2bin_lc(htx_get_blk_ptr(htx, blk), name);
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100600 memcpy(htx_get_blk_ptr(htx, blk) + name.len, value.ptr, value.len);
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100601 return blk;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200602}
603
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100604/* Replaces the parts of the start-line. It returns the new start-line on
605 * success, otherwise it returns NULL. It is the caller responsibility to update
606 * sl->info, if necessary.
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200607 */
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100608struct htx_sl *htx_replace_stline(struct htx *htx, struct htx_blk *blk, const struct ist p1,
609 const struct ist p2, const struct ist p3)
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200610{
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100611 struct htx_sl *sl;
612 struct htx_sl tmp; /* used to save sl->info and sl->flags */
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100613 enum htx_blk_type type;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200614 uint32_t size;
Christopher Faulete97f3ba2018-12-10 15:39:40 +0100615 int32_t delta;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200616
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100617 type = htx_get_blk_type(blk);
Willy Tarreauc706cd72018-12-07 17:12:22 +0100618 if (type != HTX_BLK_REQ_SL && type != HTX_BLK_RES_SL)
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100619 return NULL;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200620
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100621 /* Save start-line info and flags */
622 sl = htx_get_blk_ptr(htx, blk);
623 tmp.info = sl->info;
624 tmp.flags = sl->flags;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100625
626 size = sizeof(*sl) + p1.len + p2.len + p3.len;
Christopher Faulete97f3ba2018-12-10 15:39:40 +0100627 delta = size - htx_get_blksz(blk);
628
629 /* easy case, new data are smaller, so replace it in-place */
630 if (delta <= 0) {
631 htx_set_blk_value_len(blk, size);
632 htx->data += delta;
633 goto copy;
634 }
635
636 /* we need to allocate more space to store the new value */
637 if (delta > htx_free_space(htx))
638 return NULL; /* not enough space */
639
640 /* Expand the block size. But data are not copied yet. Then defragment
641 * the HTX message.
642 */
643 htx_set_blk_value_len(blk, size);
644 htx->data += delta;
645 blk = htx_defrag(htx, blk);
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200646
Christopher Faulete97f3ba2018-12-10 15:39:40 +0100647 copy:
648 /* Restore start-line info and flags and copy parts of the start-line */
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100649 sl = htx_get_blk_ptr(htx, blk);
650 sl->info = tmp.info;
651 sl->flags = tmp.flags;
Christopher Faulet05c083c2019-05-15 14:56:47 +0200652 if (sl->hdrs_bytes != -1)
653 sl->hdrs_bytes += delta;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200654
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100655 HTX_SL_P1_LEN(sl) = p1.len;
656 HTX_SL_P2_LEN(sl) = p2.len;
657 HTX_SL_P3_LEN(sl) = p3.len;
Christopher Faulet54483df2018-11-26 15:05:52 +0100658
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100659 memcpy(HTX_SL_P1_PTR(sl), p1.ptr, p1.len);
660 memcpy(HTX_SL_P2_PTR(sl), p2.ptr, p2.len);
661 memcpy(HTX_SL_P3_PTR(sl), p3.ptr, p3.len);
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200662
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100663 return sl;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200664}
665
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100666/* Add a new start-line. It returns it on success, otherwise it returns NULL. It
667 * is the caller responsibility to set sl->info, if necessary.
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200668 */
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100669struct htx_sl *htx_add_stline(struct htx *htx, enum htx_blk_type type, unsigned int flags,
670 const struct ist p1, const struct ist p2, const struct ist p3)
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200671{
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100672 struct htx_blk *blk;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100673 struct htx_sl *sl;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200674 uint32_t size;
675
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100676 if (type != HTX_BLK_REQ_SL && type != HTX_BLK_RES_SL)
677 return NULL;
678
679 size = sizeof(*sl) + p1.len + p2.len + p3.len;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200680
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100681 /* FIXME: check size (< 256MB) */
682 blk = htx_add_blk(htx, type, size);
683 if (!blk)
684 return NULL;
685 blk->info += size;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200686
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100687 sl = htx_get_blk_ptr(htx, blk);
Christopher Faulet05c083c2019-05-15 14:56:47 +0200688 sl->hdrs_bytes = -1;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100689 sl->flags = flags;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200690
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100691 HTX_SL_P1_LEN(sl) = p1.len;
692 HTX_SL_P2_LEN(sl) = p2.len;
693 HTX_SL_P3_LEN(sl) = p3.len;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200694
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100695 memcpy(HTX_SL_P1_PTR(sl), p1.ptr, p1.len);
696 memcpy(HTX_SL_P2_PTR(sl), p2.ptr, p2.len);
697 memcpy(HTX_SL_P3_PTR(sl), p3.ptr, p3.len);
698
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100699 return sl;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200700}
701
702/* Adds an HTX block of type HDR in <htx>. It returns the new block on
Willy Tarreaued00e342018-12-07 08:47:45 +0100703 * success. Otherwise, it returns NULL. The header name is always lower cased.
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200704 */
705struct htx_blk *htx_add_header(struct htx *htx, const struct ist name,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100706 const struct ist value)
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200707{
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100708 struct htx_blk *blk;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200709
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100710 /* FIXME: check name.len (< 256B) and value.len (< 1MB) */
711 blk = htx_add_blk(htx, HTX_BLK_HDR, name.len + value.len);
712 if (!blk)
713 return NULL;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200714
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100715 blk->info += (value.len << 8) + name.len;
Willy Tarreaued00e342018-12-07 08:47:45 +0100716 ist2bin_lc(htx_get_blk_ptr(htx, blk), name);
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100717 memcpy(htx_get_blk_ptr(htx, blk) + name.len, value.ptr, value.len);
718 return blk;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200719}
720
Willy Tarreau52610e92019-01-03 18:26:17 +0100721/* Adds an HTX block of type <type> in <htx>, of size <blksz>. It returns the
722 * new block on success. Otherwise, it returns NULL. The caller is responsible
723 * for filling the block itself.
724 */
725struct htx_blk *htx_add_blk_type_size(struct htx *htx, enum htx_blk_type type, uint32_t blksz)
726{
727 struct htx_blk *blk;
728
729 blk = htx_add_blk(htx, type, blksz);
730 if (!blk)
731 return NULL;
732
733 blk->info += blksz;
734 return blk;
735}
736
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200737struct htx_blk *htx_add_all_headers(struct htx *htx, const struct http_hdr *hdrs)
738{
739 int i;
740
741 for (i = 0; hdrs[i].n.len; i++) {
742 if (!htx_add_header(htx, hdrs[i].n, hdrs[i].v))
743 return NULL;
744 }
745 return htx_add_endof(htx, HTX_BLK_EOH);
746}
747/* Adds an HTX block of type PHDR in <htx>. It returns the new block on
748 * success. Otherwise, it returns NULL.
749 */
750struct htx_blk *htx_add_pseudo_header(struct htx *htx, enum htx_phdr_type phdr,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100751 const struct ist value)
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200752{
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100753 struct htx_blk *blk;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200754
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100755 /* FIXME: check value.len ( < 1MB) */
756 blk = htx_add_blk(htx, HTX_BLK_PHDR, value.len);
757 if (!blk)
758 return NULL;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200759
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100760 blk->info += (value.len << 8) + phdr;
761 memcpy(htx_get_blk_ptr(htx, blk), value.ptr, value.len);
762 return blk;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200763}
764
765/* Adds an HTX block of type EOH,EOD or EOM in <htx>. It returns the new block
766 * on success. Otherwise, it returns NULL.
767 */
768struct htx_blk *htx_add_endof(struct htx *htx, enum htx_blk_type type)
769{
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100770 struct htx_blk *blk;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200771
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100772 blk = htx_add_blk(htx, type, 1);
773 if (!blk)
774 return NULL;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200775
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100776 blk->info += 1;
777 return blk;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200778}
779
780
781/* Adds an HTX block of type DATA in <htx>. It first tries to append data if
782 * possible. It returns the new block on success. Otherwise, it returns NULL.
783 */
784struct htx_blk *htx_add_data(struct htx *htx, const struct ist data)
785{
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100786 return htx_append_blk_value(htx, HTX_BLK_DATA, data);
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200787}
788
Christopher Faulet61775092019-05-07 21:42:27 +0200789/* Adds an HTX block of type TLR in <htx>. It returns the new block on
790 * success. Otherwise, it returns NULL.
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200791 */
792struct htx_blk *htx_add_trailer(struct htx *htx, const struct ist tlr)
793{
Christopher Faulet61775092019-05-07 21:42:27 +0200794 struct htx_blk *blk;
795
796 /* FIXME: check tlr.len (< 256MB) */
797 blk = htx_add_blk(htx, HTX_BLK_TLR, tlr.len);
798 if (!blk)
799 return NULL;
800
801 blk->info += tlr.len;
802 memcpy(htx_get_blk_ptr(htx, blk), tlr.ptr, tlr.len);
803 return blk;
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200804}
805
Christopher Faulet24ed8352018-11-22 11:20:43 +0100806struct htx_blk *htx_add_data_before(struct htx *htx, const struct htx_blk *ref,
807 const struct ist data)
808{
809 struct htx_blk *blk;
810 int32_t prev;
811
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100812 /* FIXME: check data.len (< 256MB) */
813 blk = htx_add_blk(htx, HTX_BLK_DATA, data.len);
814 if (!blk)
815 return NULL;
Christopher Faulet24ed8352018-11-22 11:20:43 +0100816
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100817 blk->info += data.len;
818 memcpy(htx_get_blk_ptr(htx, blk), data.ptr, data.len);
Christopher Faulet24ed8352018-11-22 11:20:43 +0100819
820 for (prev = htx_get_prev(htx, htx->tail); prev != -1; prev = htx_get_prev(htx, prev)) {
821 struct htx_blk *pblk = htx_get_blk(htx, prev);
822
823 /* Swap .addr and .info fields */
824 blk->addr ^= pblk->addr; pblk->addr ^= blk->addr; blk->addr ^= pblk->addr;
825 blk->info ^= pblk->info; pblk->info ^= blk->info; blk->info ^= pblk->info;
826
827 if (blk->addr == pblk->addr)
828 blk->addr += htx_get_blksz(pblk);
829 htx->front = prev;
830
831 if (pblk == ref)
832 break;
833 blk = pblk;
834 }
Christopher Faulet05aab642019-04-11 13:43:57 +0200835
836 if (htx_get_blk_pos(htx, blk) != htx->front)
837 htx_defrag(htx, NULL);
838
Christopher Faulet24ed8352018-11-22 11:20:43 +0100839 return blk;
840}
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200841
Christopher Fauletc59ff232018-12-03 13:58:44 +0100842/* Appends the H1 representation of the request line block <blk> to the
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200843 * chunk <chk>. It returns 1 if data are successfully appended, otherwise it
844 * returns 0.
845 */
Christopher Fauletc59ff232018-12-03 13:58:44 +0100846int htx_reqline_to_h1(const struct htx_sl *sl, struct buffer *chk)
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200847{
Christopher Faulet570d1612018-11-26 11:13:57 +0100848 if (HTX_SL_LEN(sl) + 4 > b_room(chk))
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200849 return 0;
850
Christopher Faulet570d1612018-11-26 11:13:57 +0100851 chunk_memcat(chk, HTX_SL_REQ_MPTR(sl), HTX_SL_REQ_MLEN(sl));
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200852 chunk_memcat(chk, " ", 1);
Christopher Faulet570d1612018-11-26 11:13:57 +0100853 chunk_memcat(chk, HTX_SL_REQ_UPTR(sl), HTX_SL_REQ_ULEN(sl));
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200854 chunk_memcat(chk, " ", 1);
Christopher Faulet1e7af462018-12-03 14:05:01 +0100855 if (sl->flags & HTX_SL_F_VER_11)
856 chunk_memcat(chk, "HTTP/1.1", 8);
857 else
858 chunk_memcat(chk, HTX_SL_REQ_VPTR(sl), HTX_SL_REQ_VLEN(sl));
859
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200860 chunk_memcat(chk, "\r\n", 2);
861
862 return 1;
863}
864
Christopher Fauletc59ff232018-12-03 13:58:44 +0100865/* Appends the H1 representation of the status line block <blk> to the chunk
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200866 * <chk>. It returns 1 if data are successfully appended, otherwise it
867 * returns 0.
868 */
Christopher Fauletc59ff232018-12-03 13:58:44 +0100869int htx_stline_to_h1(const struct htx_sl *sl, struct buffer *chk)
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200870{
Christopher Faulet570d1612018-11-26 11:13:57 +0100871 if (HTX_SL_LEN(sl) + 4 > b_size(chk))
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200872 return 0;
873
Christopher Faulet1e7af462018-12-03 14:05:01 +0100874 if (sl->flags & HTX_SL_F_VER_11)
875 chunk_memcat(chk, "HTTP/1.1", 8);
876 else
877 chunk_memcat(chk, HTX_SL_RES_VPTR(sl), HTX_SL_RES_VLEN(sl));
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200878 chunk_memcat(chk, " ", 1);
Christopher Faulet570d1612018-11-26 11:13:57 +0100879 chunk_memcat(chk, HTX_SL_RES_CPTR(sl), HTX_SL_RES_CLEN(sl));
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200880 chunk_memcat(chk, " ", 1);
Christopher Faulet570d1612018-11-26 11:13:57 +0100881 chunk_memcat(chk, HTX_SL_RES_RPTR(sl), HTX_SL_RES_RLEN(sl));
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200882 chunk_memcat(chk, "\r\n", 2);
883
884 return 1;
885}
886
Christopher Fauletc59ff232018-12-03 13:58:44 +0100887/* Appends the H1 representation of the header block <blk> to the chunk
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200888 * <chk>. It returns 1 if data are successfully appended, otherwise it returns
889 * 0.
890 */
Christopher Fauletc59ff232018-12-03 13:58:44 +0100891int htx_hdr_to_h1(const struct ist n, const struct ist v, struct buffer *chk)
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200892{
893 if (n.len + v.len + 4 > b_room(chk))
894 return 0;
895
896 chunk_memcat(chk, n.ptr, n.len);
897 chunk_memcat(chk, ": ", 2);
898 chunk_memcat(chk, v.ptr, v.len);
899 chunk_memcat(chk, "\r\n", 2);
900
901 return 1;
902}
903
Christopher Fauletc59ff232018-12-03 13:58:44 +0100904/* Appends the H1 representation of the data block <blk> to the chunk
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200905 * <chk>. If <chunked> is non-zero, it emits HTTP/1 chunk-encoded data. It
906 * returns 1 if data are successfully appended, otherwise it returns 0.
907 */
Christopher Fauletc59ff232018-12-03 13:58:44 +0100908int htx_data_to_h1(const struct ist data, struct buffer *chk, int chunked)
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200909{
910 if (chunked) {
911 uint32_t chksz;
912 char tmp[10];
913 char *beg, *end;
914
915 chksz = data.len;
916
917 beg = end = tmp+10;
918 *--beg = '\n';
919 *--beg = '\r';
920 do {
921 *--beg = hextab[chksz & 0xF];
922 } while (chksz >>= 4);
923
924 if (data.len + (end - beg) + 2 > b_room(chk))
925 return 0;
926 chunk_memcat(chk, beg, end - beg);
927 chunk_memcat(chk, data.ptr, data.len);
928 chunk_memcat(chk, "\r\n", 2);
929 }
930 else {
931 if (!chunk_memcat(chk, data.ptr, data.len))
932 return 0;
933 }
934
935 return 1;
936}
937
Christopher Fauletc59ff232018-12-03 13:58:44 +0100938/* Appends the h1 representation of the trailer block <blk> to the chunk
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200939 * <chk>. It returns 1 if data are successfully appended, otherwise it returns
940 * 0.
941 */
Christopher Fauletc59ff232018-12-03 13:58:44 +0100942int htx_trailer_to_h1(const struct ist tlr, struct buffer *chk)
Christopher Fauleta3d2a162018-10-22 08:59:39 +0200943{
944 /* FIXME: be sure the CRLF is here or remove it when inserted */
945 if (!chunk_memcat(chk, tlr.ptr, tlr.len))
946 return 0;
947 return 1;
948}