Emeric Brun | 3e541d1 | 2012-09-03 11:14:36 +0200 | [diff] [blame] | 1 | /* |
| 2 | * shctx.c - shared context management functions for SSL |
| 3 | * |
| 4 | * Copyright (C) 2011-2012 EXCELIANCE |
| 5 | * |
| 6 | * Author: Emeric Brun - emeric@exceliance.fr |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU General Public License |
| 10 | * as published by the Free Software Foundation; either version |
| 11 | * 2 of the License, or (at your option) any later version. |
| 12 | */ |
| 13 | |
| 14 | #include <sys/mman.h> |
Emeric Brun | af9619d | 2012-11-28 18:47:52 +0100 | [diff] [blame] | 15 | #include <arpa/inet.h> |
Willy Tarreau | 8d2b777 | 2020-05-27 10:58:19 +0200 | [diff] [blame] | 16 | #include <import/ebmbtree.h> |
Willy Tarreau | 853b297 | 2020-05-27 18:01:47 +0200 | [diff] [blame] | 17 | #include <haproxy/list.h> |
Willy Tarreau | 334099c | 2020-06-03 18:38:48 +0200 | [diff] [blame] | 18 | #include <haproxy/shctx.h> |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 19 | |
William Lallemand | 24a7a75 | 2017-10-09 14:17:39 +0200 | [diff] [blame] | 20 | int use_shared_mem = 0; |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 21 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 22 | /* |
Frédéric Lécaille | 0bec807 | 2018-10-22 17:55:57 +0200 | [diff] [blame] | 23 | * Reserve a new row if <first> is null, put it in the hotlist, set the refcount to 1 |
| 24 | * or append new blocks to the row with <first> as first block if non null. |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 25 | * |
| 26 | * Reserve blocks in the avail list and put them in the hot list |
| 27 | * Return the first block put in the hot list or NULL if not enough blocks available |
| 28 | */ |
Frédéric Lécaille | 0bec807 | 2018-10-22 17:55:57 +0200 | [diff] [blame] | 29 | struct shared_block *shctx_row_reserve_hot(struct shared_context *shctx, |
| 30 | struct shared_block *first, int data_len) |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 31 | { |
Frédéric Lécaille | 0bec807 | 2018-10-22 17:55:57 +0200 | [diff] [blame] | 32 | struct shared_block *last = NULL, *block, *sblock, *ret = NULL, *next; |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 33 | int enough = 0; |
| 34 | int freed = 0; |
Frédéric Lécaille | 0bec807 | 2018-10-22 17:55:57 +0200 | [diff] [blame] | 35 | int remain; |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 36 | |
| 37 | /* not enough usable blocks */ |
| 38 | if (data_len > shctx->nbav * shctx->block_size) |
| 39 | goto out; |
Emeric Brun | 3e541d1 | 2012-09-03 11:14:36 +0200 | [diff] [blame] | 40 | |
Frédéric Lécaille | b7838af | 2018-10-22 16:21:39 +0200 | [diff] [blame] | 41 | /* Check the object size limit. */ |
| 42 | if (shctx->max_obj_size > 0) { |
| 43 | if ((first && first->len + data_len > shctx->max_obj_size) || |
| 44 | (!first && data_len > shctx->max_obj_size)) |
| 45 | goto out; |
| 46 | } |
| 47 | |
Frédéric Lécaille | 0bec807 | 2018-10-22 17:55:57 +0200 | [diff] [blame] | 48 | /* Note that <remain> is nul only if <first> is not nul. */ |
| 49 | remain = 1; |
| 50 | if (first) { |
| 51 | /* Check that there is some block to reserve. |
| 52 | * In this first block of code we compute the remaining room in the |
| 53 | * current list of block already reserved for this object. |
| 54 | * We return asap if there is enough room to copy <data_len> bytes. |
| 55 | */ |
| 56 | last = first->last_reserved; |
| 57 | /* Remaining room. */ |
| 58 | remain = (shctx->block_size * first->block_count - first->len); |
| 59 | if (remain) { |
| 60 | if (remain > data_len) { |
| 61 | return last ? last : first; |
| 62 | } else { |
| 63 | data_len -= remain; |
| 64 | if (!data_len) |
| 65 | return last ? last : first; |
| 66 | } |
| 67 | } |
| 68 | } |
| 69 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 70 | while (!enough && !LIST_ISEMPTY(&shctx->avail)) { |
| 71 | int count = 0; |
| 72 | int first_count = 0, first_len = 0; |
Emeric Brun | 3e541d1 | 2012-09-03 11:14:36 +0200 | [diff] [blame] | 73 | |
Frédéric Lécaille | 0bec807 | 2018-10-22 17:55:57 +0200 | [diff] [blame] | 74 | next = block = LIST_NEXT(&shctx->avail, struct shared_block *, list); |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 75 | if (ret == NULL) |
Frédéric Lécaille | 0bec807 | 2018-10-22 17:55:57 +0200 | [diff] [blame] | 76 | ret = next; |
Emeric Brun | 3e541d1 | 2012-09-03 11:14:36 +0200 | [diff] [blame] | 77 | |
Frédéric Lécaille | 0bec807 | 2018-10-22 17:55:57 +0200 | [diff] [blame] | 78 | first_count = next->block_count; |
| 79 | first_len = next->len; |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 80 | /* |
| 81 | Should never been set to 0. |
Frédéric Lécaille | 0bec807 | 2018-10-22 17:55:57 +0200 | [diff] [blame] | 82 | if (next->block_count == 0) |
| 83 | next->block_count = 1; |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 84 | */ |
Emeric Brun | 3e541d1 | 2012-09-03 11:14:36 +0200 | [diff] [blame] | 85 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 86 | list_for_each_entry_safe_from(block, sblock, &shctx->avail, list) { |
| 87 | |
| 88 | /* release callback */ |
| 89 | if (first_len && shctx->free_block) |
Frédéric Lécaille | 0bec807 | 2018-10-22 17:55:57 +0200 | [diff] [blame] | 90 | shctx->free_block(next, block); |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 91 | |
| 92 | block->block_count = 1; |
| 93 | block->len = 0; |
| 94 | |
| 95 | freed++; |
| 96 | data_len -= shctx->block_size; |
| 97 | |
Frédéric Lécaille | 0bec807 | 2018-10-22 17:55:57 +0200 | [diff] [blame] | 98 | if (data_len > 0 || !enough) { |
| 99 | if (last) { |
| 100 | shctx_block_append_hot(shctx, &last->list, block); |
| 101 | last = block; |
| 102 | } else { |
| 103 | shctx_block_set_hot(shctx, block); |
| 104 | } |
| 105 | if (!remain) { |
| 106 | first->last_append = block; |
| 107 | remain = 1; |
| 108 | } |
| 109 | if (data_len <= 0) { |
| 110 | ret->block_count = freed; |
| 111 | ret->refcount = 1; |
| 112 | ret->last_reserved = block; |
| 113 | enough = 1; |
| 114 | } |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 115 | } |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 116 | count++; |
| 117 | if (count >= first_count) |
| 118 | break; |
Emeric Brun | af9619d | 2012-11-28 18:47:52 +0100 | [diff] [blame] | 119 | } |
Emeric Brun | af9619d | 2012-11-28 18:47:52 +0100 | [diff] [blame] | 120 | } |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 121 | |
Frédéric Lécaille | 0bec807 | 2018-10-22 17:55:57 +0200 | [diff] [blame] | 122 | if (first) { |
| 123 | first->block_count += ret->block_count; |
| 124 | first->last_reserved = ret->last_reserved; |
| 125 | /* Reset this block. */ |
| 126 | ret->last_reserved = NULL; |
| 127 | ret->block_count = 1; |
| 128 | ret->refcount = 0; |
| 129 | /* Return the first block. */ |
| 130 | ret = first; |
| 131 | } |
| 132 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 133 | out: |
Emeric Brun | af9619d | 2012-11-28 18:47:52 +0100 | [diff] [blame] | 134 | return ret; |
| 135 | } |
Emeric Brun | 3e541d1 | 2012-09-03 11:14:36 +0200 | [diff] [blame] | 136 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 137 | /* |
| 138 | * if the refcount is 0 move the row to the hot list. Increment the refcount |
Emeric Brun | af9619d | 2012-11-28 18:47:52 +0100 | [diff] [blame] | 139 | */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 140 | void shctx_row_inc_hot(struct shared_context *shctx, struct shared_block *first) |
Emeric Brun | 3e541d1 | 2012-09-03 11:14:36 +0200 | [diff] [blame] | 141 | { |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 142 | struct shared_block *block, *sblock; |
| 143 | int count = 0; |
Emeric Brun | af9619d | 2012-11-28 18:47:52 +0100 | [diff] [blame] | 144 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 145 | if (first->refcount <= 0) { |
| 146 | |
| 147 | block = first; |
| 148 | |
| 149 | list_for_each_entry_safe_from(block, sblock, &shctx->avail, list) { |
| 150 | |
| 151 | shctx_block_set_hot(shctx, block); |
| 152 | |
| 153 | count++; |
| 154 | if (count >= first->block_count) |
| 155 | break; |
Emeric Brun | af9619d | 2012-11-28 18:47:52 +0100 | [diff] [blame] | 156 | } |
Emeric Brun | af9619d | 2012-11-28 18:47:52 +0100 | [diff] [blame] | 157 | } |
Emeric Brun | af9619d | 2012-11-28 18:47:52 +0100 | [diff] [blame] | 158 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 159 | first->refcount++; |
Emeric Brun | af9619d | 2012-11-28 18:47:52 +0100 | [diff] [blame] | 160 | } |
Emeric Brun | 3e541d1 | 2012-09-03 11:14:36 +0200 | [diff] [blame] | 161 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 162 | /* |
| 163 | * decrement the refcount and move the row at the end of the avail list if it reaches 0. |
Emeric Brun | af9619d | 2012-11-28 18:47:52 +0100 | [diff] [blame] | 164 | */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 165 | void shctx_row_dec_hot(struct shared_context *shctx, struct shared_block *first) |
Emeric Brun | af9619d | 2012-11-28 18:47:52 +0100 | [diff] [blame] | 166 | { |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 167 | struct shared_block *block, *sblock; |
| 168 | int count = 0; |
Emeric Brun | af9619d | 2012-11-28 18:47:52 +0100 | [diff] [blame] | 169 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 170 | first->refcount--; |
Emeric Brun | 3e541d1 | 2012-09-03 11:14:36 +0200 | [diff] [blame] | 171 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 172 | if (first->refcount <= 0) { |
Emeric Brun | 3e541d1 | 2012-09-03 11:14:36 +0200 | [diff] [blame] | 173 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 174 | block = first; |
Emeric Brun | 3e541d1 | 2012-09-03 11:14:36 +0200 | [diff] [blame] | 175 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 176 | list_for_each_entry_safe_from(block, sblock, &shctx->hot, list) { |
Emeric Brun | 3e541d1 | 2012-09-03 11:14:36 +0200 | [diff] [blame] | 177 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 178 | shctx_block_set_avail(shctx, block); |
Emeric Brun | 3e541d1 | 2012-09-03 11:14:36 +0200 | [diff] [blame] | 179 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 180 | count++; |
| 181 | if (count >= first->block_count) |
Emeric Brun | af9619d | 2012-11-28 18:47:52 +0100 | [diff] [blame] | 182 | break; |
Emeric Brun | af9619d | 2012-11-28 18:47:52 +0100 | [diff] [blame] | 183 | } |
| 184 | } |
Emeric Brun | 3e541d1 | 2012-09-03 11:14:36 +0200 | [diff] [blame] | 185 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | |
| 189 | /* |
| 190 | * Append data in the row if there is enough space. |
| 191 | * The row should be in the hot list |
| 192 | * |
| 193 | * Return the amount of appended data if ret >= 0 |
| 194 | * or how much more space it needs to contains the data if < 0. |
| 195 | */ |
Frédéric Lécaille | 0bec807 | 2018-10-22 17:55:57 +0200 | [diff] [blame] | 196 | int shctx_row_data_append(struct shared_context *shctx, |
| 197 | struct shared_block *first, struct shared_block *from, |
| 198 | unsigned char *data, int len) |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 199 | { |
| 200 | int remain, start; |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 201 | struct shared_block *block; |
| 202 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 203 | /* return -<len> needed to work */ |
| 204 | if (len > first->block_count * shctx->block_size - first->len) |
| 205 | return (first->block_count * shctx->block_size - first->len) - len; |
| 206 | |
Frédéric Lécaille | 0bec807 | 2018-10-22 17:55:57 +0200 | [diff] [blame] | 207 | block = from ? from : first; |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 208 | list_for_each_entry_from(block, &shctx->hot, list) { |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 209 | /* end of copy */ |
| 210 | if (len <= 0) |
| 211 | break; |
| 212 | |
Frédéric Lécaille | 0bec807 | 2018-10-22 17:55:57 +0200 | [diff] [blame] | 213 | /* remaining written bytes in the current block. */ |
| 214 | remain = (shctx->block_size * first->block_count - first->len) % shctx->block_size; |
| 215 | /* if remain == 0, previous buffers are full, or first->len == 0 */ |
| 216 | if (!remain) { |
| 217 | remain = shctx->block_size; |
| 218 | start = 0; |
| 219 | } |
| 220 | else { |
| 221 | /* start must be calculated before remain is modified */ |
| 222 | start = shctx->block_size - remain; |
| 223 | } |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 224 | |
| 225 | /* must not try to copy more than len */ |
| 226 | remain = MIN(remain, len); |
| 227 | |
| 228 | memcpy(block->data + start, data, remain); |
Frédéric Lécaille | 0bec807 | 2018-10-22 17:55:57 +0200 | [diff] [blame] | 229 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 230 | data += remain; |
| 231 | len -= remain; |
| 232 | first->len += remain; /* update len in the head of the row */ |
Frédéric Lécaille | 0bec807 | 2018-10-22 17:55:57 +0200 | [diff] [blame] | 233 | first->last_append = block; |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 234 | } |
| 235 | |
| 236 | return len; |
Emeric Brun | af9619d | 2012-11-28 18:47:52 +0100 | [diff] [blame] | 237 | } |
Emeric Brun | 3e541d1 | 2012-09-03 11:14:36 +0200 | [diff] [blame] | 238 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 239 | /* |
| 240 | * Copy <len> data from a row of blocks, return the remaining data to copy |
Joseph Herlant | 3952643 | 2018-11-25 11:31:31 -0800 | [diff] [blame] | 241 | * If 0 is returned, the full data has successfully been copied |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 242 | * |
| 243 | * The row should be in the hot list |
| 244 | */ |
| 245 | int shctx_row_data_get(struct shared_context *shctx, struct shared_block *first, |
| 246 | unsigned char *dst, int offset, int len) |
| 247 | { |
| 248 | int count = 0, size = 0, start = -1; |
| 249 | struct shared_block *block; |
| 250 | |
William Lallemand | 7217c46 | 2017-10-31 20:21:46 +0100 | [diff] [blame] | 251 | /* can't copy more */ |
| 252 | if (len > first->len) |
| 253 | len = first->len; |
| 254 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 255 | block = first; |
| 256 | count = 0; |
| 257 | /* Pass through the blocks to copy them */ |
| 258 | list_for_each_entry_from(block, &shctx->hot, list) { |
| 259 | if (count >= first->block_count || len <= 0) |
| 260 | break; |
| 261 | |
| 262 | count++; |
| 263 | /* continue until we are in right block |
| 264 | corresponding to the offset */ |
| 265 | if (count < offset / shctx->block_size + 1) |
| 266 | continue; |
| 267 | |
| 268 | /* on the first block, data won't possibly began at offset 0 */ |
| 269 | if (start == -1) |
| 270 | start = offset - (count - 1) * shctx->block_size; |
Emeric Brun | 3e541d1 | 2012-09-03 11:14:36 +0200 | [diff] [blame] | 271 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 272 | /* size can be lower than a block when copying the last block */ |
| 273 | size = MIN(shctx->block_size - start, len); |
| 274 | |
| 275 | memcpy(dst, block->data + start, size); |
| 276 | dst += size; |
| 277 | len -= size; |
| 278 | start = 0; |
| 279 | } |
| 280 | return len; |
| 281 | } |
Emeric Brun | 3e541d1 | 2012-09-03 11:14:36 +0200 | [diff] [blame] | 282 | |
Emeric Brun | 3e541d1 | 2012-09-03 11:14:36 +0200 | [diff] [blame] | 283 | /* Allocate shared memory context. |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 284 | * <maxblocks> is maximum blocks. |
| 285 | * If <maxblocks> is set to less or equal to 0, ssl cache is disabled. |
| 286 | * Returns: -1 on alloc failure, <maxblocks> if it performs context alloc, |
Emeric Brun | af9619d | 2012-11-28 18:47:52 +0100 | [diff] [blame] | 287 | * and 0 if cache is already allocated. |
| 288 | */ |
Frédéric Lécaille | b7838af | 2018-10-22 16:21:39 +0200 | [diff] [blame] | 289 | int shctx_init(struct shared_context **orig_shctx, int maxblocks, int blocksize, |
Frédéric Lécaille | b80bc27 | 2018-10-25 20:31:40 +0200 | [diff] [blame] | 290 | unsigned int maxobjsz, int extra, int shared) |
Emeric Brun | 3e541d1 | 2012-09-03 11:14:36 +0200 | [diff] [blame] | 291 | { |
| 292 | int i; |
William Lallemand | 3f85c9a | 2017-10-09 16:30:50 +0200 | [diff] [blame] | 293 | struct shared_context *shctx; |
| 294 | int ret; |
Emeric Brun | cd1a526 | 2014-05-07 23:11:42 +0200 | [diff] [blame] | 295 | #ifdef USE_PTHREAD_PSHARED |
Emeric Brun | 3e541d1 | 2012-09-03 11:14:36 +0200 | [diff] [blame] | 296 | pthread_mutexattr_t attr; |
Emeric Brun | cd1a526 | 2014-05-07 23:11:42 +0200 | [diff] [blame] | 297 | #endif |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 298 | void *cur; |
Emeric Brun | 4b3091e | 2012-09-24 15:48:52 +0200 | [diff] [blame] | 299 | int maptype = MAP_PRIVATE; |
Emeric Brun | 3e541d1 | 2012-09-03 11:14:36 +0200 | [diff] [blame] | 300 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 301 | if (maxblocks <= 0) |
Emeric Brun | 22890a1 | 2012-12-28 14:41:32 +0100 | [diff] [blame] | 302 | return 0; |
Emeric Brun | 3e541d1 | 2012-09-03 11:14:36 +0200 | [diff] [blame] | 303 | |
Willy Tarreau | a7ddab0 | 2020-02-21 13:45:58 +0100 | [diff] [blame] | 304 | /* make sure to align the records on a pointer size */ |
| 305 | blocksize = (blocksize + sizeof(void *) - 1) & -sizeof(void *); |
| 306 | extra = (extra + sizeof(void *) - 1) & -sizeof(void *); |
| 307 | |
Emeric Brun | 4b3091e | 2012-09-24 15:48:52 +0200 | [diff] [blame] | 308 | if (shared) |
| 309 | maptype = MAP_SHARED; |
| 310 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 311 | shctx = (struct shared_context *)mmap(NULL, sizeof(struct shared_context) + extra + (maxblocks * (sizeof(struct shared_block) + blocksize)), |
Emeric Brun | 4b3091e | 2012-09-24 15:48:52 +0200 | [diff] [blame] | 312 | PROT_READ | PROT_WRITE, maptype | MAP_ANON, -1, 0); |
Emeric Brun | 3e541d1 | 2012-09-03 11:14:36 +0200 | [diff] [blame] | 313 | if (!shctx || shctx == MAP_FAILED) { |
| 314 | shctx = NULL; |
William Lallemand | 3f85c9a | 2017-10-09 16:30:50 +0200 | [diff] [blame] | 315 | ret = SHCTX_E_ALLOC_CACHE; |
| 316 | goto err; |
Emeric Brun | 3e541d1 | 2012-09-03 11:14:36 +0200 | [diff] [blame] | 317 | } |
| 318 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 319 | shctx->nbav = 0; |
| 320 | |
Emeric Brun | caa19cc | 2014-05-07 16:10:18 +0200 | [diff] [blame] | 321 | if (maptype == MAP_SHARED) { |
Willy Tarreau | ca36771 | 2021-06-15 15:03:19 +0200 | [diff] [blame] | 322 | #ifndef USE_PRIVATE_CACHE |
Emeric Brun | cd1a526 | 2014-05-07 23:11:42 +0200 | [diff] [blame] | 323 | #ifdef USE_PTHREAD_PSHARED |
Emeric Brun | caa19cc | 2014-05-07 16:10:18 +0200 | [diff] [blame] | 324 | if (pthread_mutexattr_init(&attr)) { |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 325 | munmap(shctx, sizeof(struct shared_context) + extra + (maxblocks * (sizeof(struct shared_block) + blocksize))); |
Emeric Brun | caa19cc | 2014-05-07 16:10:18 +0200 | [diff] [blame] | 326 | shctx = NULL; |
William Lallemand | 3f85c9a | 2017-10-09 16:30:50 +0200 | [diff] [blame] | 327 | ret = SHCTX_E_INIT_LOCK; |
| 328 | goto err; |
Emeric Brun | caa19cc | 2014-05-07 16:10:18 +0200 | [diff] [blame] | 329 | } |
| 330 | |
| 331 | if (pthread_mutexattr_setpshared(&attr, PTHREAD_PROCESS_SHARED)) { |
| 332 | pthread_mutexattr_destroy(&attr); |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 333 | munmap(shctx, sizeof(struct shared_context) + extra + (maxblocks * (sizeof(struct shared_block) + blocksize))); |
Emeric Brun | caa19cc | 2014-05-07 16:10:18 +0200 | [diff] [blame] | 334 | shctx = NULL; |
William Lallemand | 3f85c9a | 2017-10-09 16:30:50 +0200 | [diff] [blame] | 335 | ret = SHCTX_E_INIT_LOCK; |
| 336 | goto err; |
Emeric Brun | caa19cc | 2014-05-07 16:10:18 +0200 | [diff] [blame] | 337 | } |
| 338 | |
| 339 | if (pthread_mutex_init(&shctx->mutex, &attr)) { |
| 340 | pthread_mutexattr_destroy(&attr); |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 341 | munmap(shctx, sizeof(struct shared_context) + extra + (maxblocks * (sizeof(struct shared_block) + blocksize))); |
Emeric Brun | caa19cc | 2014-05-07 16:10:18 +0200 | [diff] [blame] | 342 | shctx = NULL; |
William Lallemand | 3f85c9a | 2017-10-09 16:30:50 +0200 | [diff] [blame] | 343 | ret = SHCTX_E_INIT_LOCK; |
| 344 | goto err; |
Emeric Brun | caa19cc | 2014-05-07 16:10:18 +0200 | [diff] [blame] | 345 | } |
Emeric Brun | cd1a526 | 2014-05-07 23:11:42 +0200 | [diff] [blame] | 346 | #else |
| 347 | shctx->waiters = 0; |
Emeric Brun | 3e541d1 | 2012-09-03 11:14:36 +0200 | [diff] [blame] | 348 | #endif |
Willy Tarreau | ca36771 | 2021-06-15 15:03:19 +0200 | [diff] [blame] | 349 | #else |
| 350 | HA_SPIN_INIT(&shctx->lock); |
| 351 | #endif |
Emeric Brun | 4b3091e | 2012-09-24 15:48:52 +0200 | [diff] [blame] | 352 | use_shared_mem = 1; |
Emeric Brun | caa19cc | 2014-05-07 16:10:18 +0200 | [diff] [blame] | 353 | } |
Emeric Brun | 4b3091e | 2012-09-24 15:48:52 +0200 | [diff] [blame] | 354 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 355 | LIST_INIT(&shctx->avail); |
| 356 | LIST_INIT(&shctx->hot); |
Emeric Brun | 3e541d1 | 2012-09-03 11:14:36 +0200 | [diff] [blame] | 357 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 358 | shctx->block_size = blocksize; |
Frédéric Lécaille | b80bc27 | 2018-10-25 20:31:40 +0200 | [diff] [blame] | 359 | shctx->max_obj_size = maxobjsz == (unsigned int)-1 ? 0 : maxobjsz; |
Emeric Brun | af9619d | 2012-11-28 18:47:52 +0100 | [diff] [blame] | 360 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 361 | /* init the free blocks after the shared context struct */ |
| 362 | cur = (void *)shctx + sizeof(struct shared_context) + extra; |
| 363 | for (i = 0; i < maxblocks; i++) { |
| 364 | struct shared_block *cur_block = (struct shared_block *)cur; |
| 365 | cur_block->len = 0; |
| 366 | cur_block->refcount = 0; |
| 367 | cur_block->block_count = 1; |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 368 | LIST_APPEND(&shctx->avail, &cur_block->list); |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 369 | shctx->nbav++; |
| 370 | cur += sizeof(struct shared_block) + blocksize; |
Emeric Brun | 3e541d1 | 2012-09-03 11:14:36 +0200 | [diff] [blame] | 371 | } |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 372 | ret = maxblocks; |
William Lallemand | 3f85c9a | 2017-10-09 16:30:50 +0200 | [diff] [blame] | 373 | |
| 374 | err: |
| 375 | *orig_shctx = shctx; |
| 376 | return ret; |
Emeric Brun | 3e541d1 | 2012-09-03 11:14:36 +0200 | [diff] [blame] | 377 | } |
| 378 | |