blob: 736e4cce04e3a0db813c15e5978ba9c835b22080 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Buffer management functions.
3 *
Willy Tarreaue09e0ce2007-03-18 16:31:29 +01004 * Copyright 2000-2007 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
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
Willy Tarreauc0dde7a2007-01-01 21:38:07 +010013#include <stdarg.h>
14#include <stdio.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020015#include <string.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020016
17#include <common/config.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020018#include <proto/buffers.h>
19
20void **pool_buffer = NULL;
21
22/* writes <len> bytes from message <msg> to buffer <buf>. Returns 0 in case of
23 * success, or the number of bytes available otherwise.
24 * FIXME-20060521: handle unaligned data.
25 */
26int buffer_write(struct buffer *buf, const char *msg, int len)
27{
28 int max;
29
30 max = buffer_realign(buf);
31
32 if (len > max)
33 return max;
34
35 memcpy(buf->r, msg, len);
36 buf->l += len;
37 buf->r += len;
Willy Tarreau35d66b02007-01-02 00:28:21 +010038 buf->total += len;
Willy Tarreaubaaee002006-06-26 02:48:02 +020039 if (buf->r == buf->data + BUFSIZE)
40 buf->r = buf->data;
41 return 0;
42}
43
Willy Tarreauc0dde7a2007-01-01 21:38:07 +010044/* writes the chunk <chunk> to buffer <buf>. Returns 0 in case of
45 * success, or the number of bytes available otherwise. If the chunk
46 * has been written, its size is automatically reset to zero.
47 */
48int buffer_write_chunk(struct buffer *buf, struct chunk *chunk)
49{
50 int max;
51
52 if (chunk->len == 0)
53 return 0;
54
55 max = buffer_realign(buf);
56
57 if (chunk->len > max)
58 return max;
59
60 memcpy(buf->r, chunk->str, chunk->len);
61 buf->l += chunk->len;
62 buf->r += chunk->len;
Willy Tarreau35d66b02007-01-02 00:28:21 +010063 buf->total += chunk->len;
Willy Tarreauc0dde7a2007-01-01 21:38:07 +010064 if (buf->r == buf->data + BUFSIZE)
65 buf->r = buf->data;
66 chunk->len = 0;
67 return 0;
68}
69
Willy Tarreaubaaee002006-06-26 02:48:02 +020070/*
71 * this function writes the string <str> at position <pos> which must be in buffer <b>,
72 * and moves <end> just after the end of <str>.
73 * <b>'s parameters (l, r, w, h, lr) are recomputed to be valid after the shift.
74 * the shift value (positive or negative) is returned.
75 * If there's no space left, the move is not done.
76 *
77 */
78int buffer_replace(struct buffer *b, char *pos, char *end, char *str)
79{
80 int delta;
81 int len;
82
83 len = strlen(str);
84 delta = len - (end - pos);
85
86 if (delta + b->r >= b->data + BUFSIZE)
87 return 0; /* no space left */
88
89 /* first, protect the end of the buffer */
90 memmove(end + delta, end, b->data + b->l - end);
91
92 /* now, copy str over pos */
93 memcpy(pos, str,len);
94
95 /* we only move data after the displaced zone */
96 if (b->r > pos) b->r += delta;
97 if (b->w > pos) b->w += delta;
Willy Tarreaubaaee002006-06-26 02:48:02 +020098 if (b->lr > pos) b->lr += delta;
99 b->l += delta;
100
101 return delta;
102}
103
104/*
105 * same except that the string length is given, which allows str to be NULL if
106 * len is 0.
107 */
108int buffer_replace2(struct buffer *b, char *pos, char *end, char *str, int len)
109{
110 int delta;
111
112 delta = len - (end - pos);
113
114 if (delta + b->r >= b->data + BUFSIZE)
115 return 0; /* no space left */
116
117 if (b->data + b->l < end) {
118 /* The data has been stolen, we could have crashed.
119 * Maybe we should abort() ? */
120 return 0;
121 }
122
123 /* first, protect the end of the buffer */
124 memmove(end + delta, end, b->data + b->l - end);
125
126 /* now, copy str over pos */
127 if (len)
128 memcpy(pos, str, len);
129
130 /* we only move data after the displaced zone */
131 if (b->r > pos) b->r += delta;
132 if (b->w > pos) b->w += delta;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200133 if (b->lr > pos) b->lr += delta;
134 b->l += delta;
135
136 return delta;
137}
138
139
140/*
Willy Tarreauc0dde7a2007-01-01 21:38:07 +0100141 * Does an snprintf() at the end of chunk <chk>, respecting the limit of
142 * at most <size> chars. If the size is over, nothing is added. Returns
143 * the new chunk size.
144 */
145int chunk_printf(struct chunk *chk, int size, const char *fmt, ...)
146{
147 va_list argp;
148
149 va_start(argp, fmt);
150 chk->len += vsnprintf(chk->str + chk->len, size - chk->len, fmt, argp);
151 va_end(argp);
152 return chk->len;
153}
154
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100155/*
156 * Dumps part or all of a buffer.
157 */
158void buffer_dump(FILE *o, struct buffer *b, int from, int to)
159{
160 fprintf(o, "Dumping buffer %p\n", b);
Willy Tarreaue09e0ce2007-03-18 16:31:29 +0100161 fprintf(o, " data=%p l=%d r=%p w=%p lr=%p\n",
162 b->data, b->l, b->r, b->w, b->lr);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100163
164 if (!to || to > b->l)
165 to = b->l;
166
167 fprintf(o, "Dumping contents from byte %d to byte %d\n", from, to);
168 for (; from < to; from++) {
169 if ((from & 15) == 0)
170 fprintf(o, " %04x: ", from);
171 fprintf(o, "%02x ", b->data[from]);
172 if ((from & 15) == 7)
173 fprintf(o, "- ");
174 else if (((from & 15) == 15) && (from != to-1))
175 fprintf(o, "\n");
176 }
177 fprintf(o, "\n--\n");
178}
179
Willy Tarreauc0dde7a2007-01-01 21:38:07 +0100180
181/*
Willy Tarreaubaaee002006-06-26 02:48:02 +0200182 * Local variables:
183 * c-indent-level: 8
184 * c-basic-offset: 8
185 * End:
186 */