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