blob: e9c8b4b6a6423805c5146eb84703400a0df994e1 [file] [log] [blame]
Willy Tarreauc006dab2014-04-16 21:10:49 +020012014/04/16 - Pointer assignments during processing of the HTTP body
2
3In HAProxy, a struct http_msg is a descriptor for an HTTP message, which stores
4the state of an HTTP parser at any given instant, relative to a buffer which
5contains part of the message being inspected.
6
7Currently, an http_msg holds a few pointers and offsets to some important
8locations in a message depending on the state the parser is in. Some of these
9pointers and offsets may move when data are inserted into or removed from the
10buffer, others won't move.
11
12An important point is that the state of the parser only translates what the
13parser is reading, and not at all what is being done on the message (eg:
14forwarding).
15
16For an HTTP message <msg> and a buffer <buf>, we have the following elements
17to work with :
18
19
20Buffer :
21--------
22
23buf.size : the allocated size of the buffer. A message cannot be larger than
24 this size. In general, a message will even be smaller because the
25 size is almost always reduced by global.maxrewrite bytes.
26
27buf.data : memory area containing the part of the message being worked on. This
28 area is exactly <buf.size> bytes long. It should be seen as a sliding
29 window over the message, but in terms of implementation, it's closer
30 to a wrapping window. For ease of processing, new messages (requests
31 or responses) are aligned to the beginning of the buffer so that they
32 never wrap and common string processing functions can be used.
33
34buf.p : memory pointer (char *) to the beginning of the buffer as the parser
35 understands it. It commonly refers to the first character of an HTTP
36 request or response, but during forwarding, it can point to other
37 locations. This pointer always points to a location in <buf.data>.
38
39buf.i : number of bytes after <buf.p> that are available in the buffer. If
40 <buf.p + buf.i> exceeds <buf.data + buf.size>, then the pending data
41 wrap at the end of the buffer and continue at <buf.data>.
42
43buf.o : number of bytes already processed before <buf.p> that are pending
44 for departure. These bytes may leave at any instant once a connection
45 is established. These ones may wrap before <buf.data> to start before
46 <buf.data + buf.size>.
47
48It's common to call the part between buf.p and buf.p+buf.i the input buffer, and
49the part between buf.p-buf.o and buf.p the output buffer. This design permits
50efficient forwarding without copies. As a result, forwarding one byte from the
51input buffer to the output buffer only consists in :
52 - incrementing buf.p
53 - incrementing buf.o
54 - decrementing buf.i
55
56
57Message :
58---------
59Unless stated otherwise, all values are relative to <buf.p>, and are always
60comprised between 0 and <buf.i>. These values are relative offsets and they do
61not need to take wrapping into account, they are used as if the buffer was an
62infinite length sliding window. The buffer management functions handle the
63wrapping automatically.
64
65msg.next : points to the next byte to inspect. This offset is automatically
66 adjusted when inserting/removing some headers. In data states, it is
67 automatically adjusted to the number of bytes already inspected.
68
69msg.sov : start of value. First character of the header's value in the header
70 states, start of the body in the data states until headers are
71 forwarded. This offset is automatically adjusted when inserting or
72 removing some headers. In data states, it always constains the size
73 of the whole HTTP headers (including the trailing CRLF) that needs
74 to be forwarded before the first byte of body. Once the headers are
75 forwarded, this value drops to zero.
76
77msg.sol : start of line. Points to the beginning of the current header line
78 while parsing headers. It is cleared to zero in the BODY state,
79 and contains exactly the number of bytes comprising the preceeding
80 chunk size in the DATA state (which can be zero), so that the sum of
81 msg.sov + msg.sol always points to the beginning of data for all
82 states starting with DATA. For chunked encoded messages, this sum
83 always corresponds to the beginning of the current chunk of data as
84 it appears in the buffer, or to be more precise, it corresponds to
85 the first of the remaining bytes of chunked data to be inspected.
86
87msg.eoh : end of headers. Points to the CRLF (or LF) preceeding the body and
88 marking the end of headers. It is where new headers are appended.
89 This offset is automatically adjusted when inserting/removing some
90 headers. It always contains the size of the headers excluding the
91 trailing CRLF even after headers have been forwarded.
92
93msg.eol : end of line. Points to the CRLF or LF of the current header line
94 being inspected during the various header states. In data states, it
95 holds the trailing CRLF length (1 or 2) so that msg.eoh + msg.eol
96 always equals the exact header length. It is not affected during data
97 states nor by forwarding.
98
99The beginning of the message headers can always be found this way even after
100headers have been forwarded :
101
102 headers = buf.p + msg->sov - msg->eoh - msg->eol
103
104
105Message length :
106----------------
107msg.chunk_len : amount of bytes of the current chunk or total message body
108 remaining to be inspected after msg.next. It is automatically
109 incremented when parsing a chunk size, and decremented as data
110 are forwarded.
111
112msg.body_len : total message body length, for logging. Equals Content-Length
113 when used, otherwise is the sum of all correctly parsed chunks.
114
115
116Message state :
117---------------
118msg.msg_state contains the current parser state, one of HTTP_MSG_*. The state
119indicates what byte is expected at msg->next.
120
121HTTP_MSG_BODY : all headers have been parsed, parsing of body has not
122 started yet.
123
124HTTP_MSG_100_SENT : parsing of body has started. If a 100-Continue was needed
125 it has already been sent.
126
127HTTP_MSG_DATA : some bytes are remaining for either the whole body when
128 the message size is determined by Content-Length, or for
129 the current chunk in chunked-encoded mode.
130
131HTTP_MSG_CHUNK_CRLF : msg->next points to the CRLF after the current data chunk.
132
133HTTP_MSG_TRAILERS : msg->next points to the beginning of a possibly empty
134 trailer line after the final empty chunk.
135
136HTTP_MSG_DONE : all the Content-Length data has been inspected, or the
137 final CRLF after trailers has been met.
138
139
140Message forwarding :
141--------------------
142Forwarding part of a message consists in advancing buf.p up to the point where
143it points to the byte following the last one to be forwarded. This can be done
144inline if enough bytes are present in the buffer, or in multiple steps if more
145buffers need to be forwarded (possibly including splicing). Thus by definition,
146after a block has been scheduled for being forwarded, msg->next and msg->sov
147must be reset.
148
149The communication channel between the producer and the consumer holds a counter
150of extra bytes remaining to be forwarded directly without consulting analysers,
151after buf.p. This counter is called to_forward. It commonly holds the advertised
152chunk length or content-length that does not fit in the buffer. For example, if
1532000 bytes are to be forwarded, and 10 bytes are present after buf.p as reported
154by buf.i, then both buf.o and buf.p will advance by 10, buf.i will be reset, and
155to_forward will be set to 1990 so that in total, 2000 bytes will be forwarded.
156At the end of the forwarding, buf.p will point to the first byte to be inspected
157after the 2000 forwarded bytes.