blob: c9744b308ea7b5995ecbdba1242072ec3521cc3c [file] [log] [blame]
Willy Tarreauc7e42382012-08-24 19:22:53 +02001/*
2 * include/common/buffer.h
3 * Buffer management definitions, macros and inline functions.
4 *
5 * Copyright (C) 2000-2012 Willy Tarreau - w@1wt.eu
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation, version 2.1
10 * exclusively.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22#ifndef _COMMON_BUFFER_H
23#define _COMMON_BUFFER_H
24
25#include <stdio.h>
26#include <stdlib.h>
27#include <string.h>
28
Willy Tarreau41806d12018-07-11 09:39:05 +020029#include <common/buf.h>
Willy Tarreau8c89c202012-09-28 16:02:48 +020030#include <common/chunk.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020031#include <common/config.h>
Willy Tarreau6634b632017-09-22 15:02:54 +020032#include <common/ist.h>
Willy Tarreauea1b06d2018-07-12 09:02:47 +020033#include <common/istbuf.h>
Willy Tarreau9b28e032012-10-12 23:49:43 +020034#include <common/memory.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020035
36
Christopher Fauleta73e59b2016-12-09 17:30:18 +010037/* an element of the <buffer_wq> list. It represents an object that need to
38 * acquire a buffer to continue its process. */
39struct buffer_wait {
40 void *target; /* The waiting object that should be woken up */
41 int (*wakeup_cb)(void *); /* The function used to wake up the <target>, passed as argument */
42 struct list list; /* Next element in the <buffer_wq> list */
43};
44
Willy Tarreaubafbe012017-11-24 17:34:44 +010045extern struct pool_head *pool_head_buffer;
Willy Tarreau2a4b5432014-11-24 11:39:34 +010046extern struct buffer buf_empty;
Willy Tarreauf2f7d6b2014-11-24 11:55:08 +010047extern struct buffer buf_wanted;
Christopher Fauleta73e59b2016-12-09 17:30:18 +010048extern struct list buffer_wq;
Willy Tarreau53bae852017-11-26 11:00:37 +010049__decl_hathreads(extern HA_SPINLOCK_T buffer_wq_lock);
Willy Tarreauc7e42382012-08-24 19:22:53 +020050
Willy Tarreau9b28e032012-10-12 23:49:43 +020051int init_buffer();
Christopher Fauletad405f12017-08-29 15:30:11 +020052void deinit_buffer();
Willy Tarreauaf819352012-08-27 22:08:00 +020053int buffer_replace2(struct buffer *b, char *pos, char *end, const char *str, int len);
54int buffer_insert_line2(struct buffer *b, char *pos, const char *str, int len);
Willy Tarreauc7e42382012-08-24 19:22:53 +020055void buffer_dump(FILE *o, struct buffer *b, int from, int to);
Willy Tarreauc7e42382012-08-24 19:22:53 +020056
57/*****************************************************************/
58/* These functions are used to compute various buffer area sizes */
59/*****************************************************************/
60
Willy Tarreauc7e42382012-08-24 19:22:53 +020061/* Return 1 if the buffer has less than 1/4 of its capacity free, otherwise 0 */
62static inline int buffer_almost_full(const struct buffer *buf)
63{
Willy Tarreau4428a292014-11-28 20:54:13 +010064 if (buf == &buf_empty)
65 return 0;
66
Willy Tarreaubbc68df2018-06-06 14:30:50 +020067 return b_almost_full(buf);
Willy Tarreauc7e42382012-08-24 19:22:53 +020068}
69
Willy Tarreau7b04cc42018-07-10 10:35:02 +020070/**************************************************/
71/* Functions below are used for buffer allocation */
72/**************************************************/
Willy Tarreauaf819352012-08-27 22:08:00 +020073
Willy Tarreauf2f7d6b2014-11-24 11:55:08 +010074/* Allocates a buffer and replaces *buf with this buffer. If no memory is
75 * available, &buf_wanted is used instead. No control is made to check if *buf
76 * already pointed to another buffer. The allocated buffer is returned, or
77 * NULL in case no memory is available.
Willy Tarreaue583ea52014-11-24 11:30:16 +010078 */
79static inline struct buffer *b_alloc(struct buffer **buf)
80{
Willy Tarreauf2f7d6b2014-11-24 11:55:08 +010081 struct buffer *b;
82
83 *buf = &buf_wanted;
Willy Tarreaubafbe012017-11-24 17:34:44 +010084 b = pool_alloc_dirty(pool_head_buffer);
Willy Tarreauf2f7d6b2014-11-24 11:55:08 +010085 if (likely(b)) {
Willy Tarreaubafbe012017-11-24 17:34:44 +010086 b->size = pool_head_buffer->size - sizeof(struct buffer);
Willy Tarreauf2f7d6b2014-11-24 11:55:08 +010087 b_reset(b);
88 *buf = b;
Willy Tarreaue583ea52014-11-24 11:30:16 +010089 }
Willy Tarreauf2f7d6b2014-11-24 11:55:08 +010090 return b;
Willy Tarreaue583ea52014-11-24 11:30:16 +010091}
92
Willy Tarreau620bd6c2014-12-08 16:37:26 +010093/* Allocates a buffer and replaces *buf with this buffer. If no memory is
94 * available, &buf_wanted is used instead. No control is made to check if *buf
95 * already pointed to another buffer. The allocated buffer is returned, or
96 * NULL in case no memory is available. The difference with b_alloc() is that
97 * this function only picks from the pool and never calls malloc(), so it can
98 * fail even if some memory is available.
99 */
100static inline struct buffer *b_alloc_fast(struct buffer **buf)
101{
102 struct buffer *b;
103
104 *buf = &buf_wanted;
Willy Tarreaubafbe012017-11-24 17:34:44 +0100105 b = pool_get_first(pool_head_buffer);
Willy Tarreau620bd6c2014-12-08 16:37:26 +0100106 if (likely(b)) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100107 b->size = pool_head_buffer->size - sizeof(struct buffer);
Willy Tarreau620bd6c2014-12-08 16:37:26 +0100108 b_reset(b);
109 *buf = b;
110 }
111 return b;
112}
113
Willy Tarreau2a4b5432014-11-24 11:39:34 +0100114/* Releases buffer *buf (no check of emptiness) */
115static inline void __b_drop(struct buffer **buf)
Willy Tarreau7dfca9d2014-11-25 19:45:11 +0100116{
Willy Tarreaubafbe012017-11-24 17:34:44 +0100117 pool_free(pool_head_buffer, *buf);
Willy Tarreau7dfca9d2014-11-25 19:45:11 +0100118}
119
Willy Tarreau2a4b5432014-11-24 11:39:34 +0100120/* Releases buffer *buf if allocated. */
121static inline void b_drop(struct buffer **buf)
122{
123 if (!(*buf)->size)
124 return;
125 __b_drop(buf);
126}
127
128/* Releases buffer *buf if allocated, and replaces it with &buf_empty. */
129static inline void b_free(struct buffer **buf)
130{
131 b_drop(buf);
132 *buf = &buf_empty;
133}
134
Willy Tarreauf4718e82014-12-02 13:54:01 +0100135/* Ensures that <buf> is allocated. If an allocation is needed, it ensures that
136 * there are still at least <margin> buffers available in the pool after this
137 * allocation so that we don't leave the pool in a condition where a session or
138 * a response buffer could not be allocated anymore, resulting in a deadlock.
139 * This means that we sometimes need to try to allocate extra entries even if
140 * only one buffer is needed.
Christopher Fauletfa5c8122017-11-10 10:39:16 +0100141 *
142 * We need to lock the pool here to be sure to have <margin> buffers available
143 * after the allocation, regardless how many threads that doing it in the same
144 * time. So, we use internal and lockless memory functions (prefixed with '__').
Willy Tarreauf4718e82014-12-02 13:54:01 +0100145 */
146static inline struct buffer *b_alloc_margin(struct buffer **buf, int margin)
147{
Christopher Fauletfa5c8122017-11-10 10:39:16 +0100148 struct buffer *b;
Willy Tarreauf4718e82014-12-02 13:54:01 +0100149
150 if ((*buf)->size)
151 return *buf;
152
Christopher Fauletfa5c8122017-11-10 10:39:16 +0100153 *buf = &buf_wanted;
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100154#ifndef CONFIG_HAP_LOCKLESS_POOLS
Willy Tarreaubafbe012017-11-24 17:34:44 +0100155 HA_SPIN_LOCK(POOL_LOCK, &pool_head_buffer->lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100156#endif
Christopher Fauletfa5c8122017-11-10 10:39:16 +0100157
Willy Tarreauf4718e82014-12-02 13:54:01 +0100158 /* fast path */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100159 if ((pool_head_buffer->allocated - pool_head_buffer->used) > margin) {
160 b = __pool_get_first(pool_head_buffer);
Christopher Fauletfa5c8122017-11-10 10:39:16 +0100161 if (likely(b)) {
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100162#ifndef CONFIG_HAP_LOCKLESS_POOLS
Willy Tarreaubafbe012017-11-24 17:34:44 +0100163 HA_SPIN_UNLOCK(POOL_LOCK, &pool_head_buffer->lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100164#endif
Willy Tarreaubafbe012017-11-24 17:34:44 +0100165 b->size = pool_head_buffer->size - sizeof(struct buffer);
Christopher Fauletfa5c8122017-11-10 10:39:16 +0100166 b_reset(b);
167 *buf = b;
168 return b;
169 }
170 }
Willy Tarreauf4718e82014-12-02 13:54:01 +0100171
Christopher Fauletfa5c8122017-11-10 10:39:16 +0100172 /* slow path, uses malloc() */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100173 b = __pool_refill_alloc(pool_head_buffer, margin);
Christopher Fauletfa5c8122017-11-10 10:39:16 +0100174
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100175#ifndef CONFIG_HAP_LOCKLESS_POOLS
Willy Tarreaubafbe012017-11-24 17:34:44 +0100176 HA_SPIN_UNLOCK(POOL_LOCK, &pool_head_buffer->lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100177#endif
Willy Tarreauf4718e82014-12-02 13:54:01 +0100178
Christopher Fauletfa5c8122017-11-10 10:39:16 +0100179 if (b) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100180 b->size = pool_head_buffer->size - sizeof(struct buffer);
Christopher Fauletfa5c8122017-11-10 10:39:16 +0100181 b_reset(b);
182 *buf = b;
183 }
184 return b;
Willy Tarreauf4718e82014-12-02 13:54:01 +0100185}
186
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100187
Willy Tarreauc41b3e82018-03-02 10:27:12 +0100188/* Offer a buffer currently belonging to target <from> to whoever needs one.
189 * Any pointer is valid for <from>, including NULL. Its purpose is to avoid
190 * passing a buffer to oneself in case of failed allocations (e.g. need two
191 * buffers, get one, fail, release it and wake up self again). In case of
192 * normal buffer release where it is expected that the caller is not waiting
193 * for a buffer, NULL is fine.
194 */
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100195void __offer_buffer(void *from, unsigned int threshold);
196
197static inline void offer_buffers(void *from, unsigned int threshold)
198{
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100199 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Emeric Bruna1dd2432017-06-21 15:42:52 +0200200 if (LIST_ISEMPTY(&buffer_wq)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100201 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100202 return;
Emeric Bruna1dd2432017-06-21 15:42:52 +0200203 }
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100204 __offer_buffer(from, threshold);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100205 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100206}
207
Willy Tarreaue5676e72017-09-22 15:47:51 +0200208
Willy Tarreauc7e42382012-08-24 19:22:53 +0200209#endif /* _COMMON_BUFFER_H */
210
211/*
212 * Local variables:
213 * c-indent-level: 8
214 * c-basic-offset: 8
215 * End:
216 */