Emeric Brun | 3e541d1 | 2012-09-03 11:14:36 +0200 | [diff] [blame] | 1 | /* |
| 2 | * shctx.h - 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 | #ifndef SHCTX_H |
| 15 | #define SHCTX_H |
William Lallemand | 24a7a75 | 2017-10-09 14:17:39 +0200 | [diff] [blame] | 16 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 17 | #include <common/mini-clist.h> |
William Lallemand | 24a7a75 | 2017-10-09 14:17:39 +0200 | [diff] [blame] | 18 | #include <types/shctx.h> |
| 19 | |
Willy Tarreau | a1bd1fa | 2019-03-29 17:26:33 +0100 | [diff] [blame] | 20 | #include <inttypes.h> |
Emeric Brun | 3e541d1 | 2012-09-03 11:14:36 +0200 | [diff] [blame] | 21 | |
William Lallemand | 24a7a75 | 2017-10-09 14:17:39 +0200 | [diff] [blame] | 22 | #ifndef USE_PRIVATE_CACHE |
| 23 | #ifdef USE_PTHREAD_PSHARED |
| 24 | #include <pthread.h> |
| 25 | #else |
| 26 | #ifdef USE_SYSCALL_FUTEX |
| 27 | #include <unistd.h> |
| 28 | #include <linux/futex.h> |
| 29 | #include <sys/syscall.h> |
Emeric Brun | 3e541d1 | 2012-09-03 11:14:36 +0200 | [diff] [blame] | 30 | #endif |
Emeric Brun | 3e541d1 | 2012-09-03 11:14:36 +0200 | [diff] [blame] | 31 | #endif |
Emeric Brun | 786991e | 2012-11-26 18:37:12 +0100 | [diff] [blame] | 32 | #endif |
| 33 | |
Frédéric Lécaille | b7838af | 2018-10-22 16:21:39 +0200 | [diff] [blame] | 34 | int shctx_init(struct shared_context **orig_shctx, |
Frédéric Lécaille | b80bc27 | 2018-10-25 20:31:40 +0200 | [diff] [blame] | 35 | int maxblocks, int blocksize, unsigned int maxobjsz, |
| 36 | int extra, int shared); |
Frédéric Lécaille | 0bec807 | 2018-10-22 17:55:57 +0200 | [diff] [blame] | 37 | struct shared_block *shctx_row_reserve_hot(struct shared_context *shctx, |
| 38 | struct shared_block *last, int data_len); |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 39 | void shctx_row_inc_hot(struct shared_context *shctx, struct shared_block *first); |
| 40 | void shctx_row_dec_hot(struct shared_context *shctx, struct shared_block *first); |
| 41 | int shctx_row_data_append(struct shared_context *shctx, |
Frédéric Lécaille | 0bec807 | 2018-10-22 17:55:57 +0200 | [diff] [blame] | 42 | struct shared_block *first, struct shared_block *from, |
| 43 | unsigned char *data, int len); |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 44 | int shctx_row_data_get(struct shared_context *shctx, struct shared_block *first, |
| 45 | unsigned char *dst, int offset, int len); |
Emeric Brun | caa19cc | 2014-05-07 16:10:18 +0200 | [diff] [blame] | 46 | |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 47 | |
William Lallemand | 24a7a75 | 2017-10-09 14:17:39 +0200 | [diff] [blame] | 48 | /* Lock functions */ |
| 49 | |
| 50 | #if defined (USE_PRIVATE_CACHE) |
| 51 | |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 52 | #define shctx_lock(shctx) |
| 53 | #define shctx_unlock(shctx) |
William Lallemand | 24a7a75 | 2017-10-09 14:17:39 +0200 | [diff] [blame] | 54 | |
| 55 | #elif defined (USE_PTHREAD_PSHARED) |
| 56 | extern int use_shared_mem; |
| 57 | |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 58 | #define shctx_lock(shctx) if (use_shared_mem) pthread_mutex_lock(&shctx->mutex) |
| 59 | #define shctx_unlock(shctx) if (use_shared_mem) pthread_mutex_unlock(&shctx->mutex) |
William Lallemand | 24a7a75 | 2017-10-09 14:17:39 +0200 | [diff] [blame] | 60 | |
| 61 | #else |
| 62 | extern int use_shared_mem; |
| 63 | |
| 64 | #ifdef USE_SYSCALL_FUTEX |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 65 | static inline void _shctx_wait4lock(unsigned int *count, unsigned int *uaddr, int value) |
William Lallemand | 24a7a75 | 2017-10-09 14:17:39 +0200 | [diff] [blame] | 66 | { |
| 67 | syscall(SYS_futex, uaddr, FUTEX_WAIT, value, NULL, 0, 0); |
| 68 | } |
| 69 | |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 70 | static inline void _shctx_awakelocker(unsigned int *uaddr) |
William Lallemand | 24a7a75 | 2017-10-09 14:17:39 +0200 | [diff] [blame] | 71 | { |
| 72 | syscall(SYS_futex, uaddr, FUTEX_WAKE, 1, NULL, 0, 0); |
| 73 | } |
| 74 | |
| 75 | #else /* internal spin lock */ |
| 76 | |
| 77 | #if defined (__i486__) || defined (__i586__) || defined (__i686__) || defined (__x86_64__) |
| 78 | static inline void relax() |
| 79 | { |
| 80 | __asm volatile("rep;nop\n" ::: "memory"); |
| 81 | } |
| 82 | #else /* if no x86_64 or i586 arch: use less optimized but generic asm */ |
| 83 | static inline void relax() |
| 84 | { |
| 85 | __asm volatile("" ::: "memory"); |
| 86 | } |
| 87 | #endif |
| 88 | |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 89 | static inline void _shctx_wait4lock(unsigned int *count, unsigned int *uaddr, int value) |
William Lallemand | 24a7a75 | 2017-10-09 14:17:39 +0200 | [diff] [blame] | 90 | { |
| 91 | int i; |
| 92 | |
| 93 | for (i = 0; i < *count; i++) { |
| 94 | relax(); |
| 95 | relax(); |
| 96 | } |
| 97 | *count = *count << 1; |
| 98 | } |
| 99 | |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 100 | #define _shctx_awakelocker(a) |
William Lallemand | 24a7a75 | 2017-10-09 14:17:39 +0200 | [diff] [blame] | 101 | |
| 102 | #endif |
| 103 | |
| 104 | #if defined (__i486__) || defined (__i586__) || defined (__i686__) || defined (__x86_64__) |
| 105 | static inline unsigned int xchg(unsigned int *ptr, unsigned int x) |
| 106 | { |
| 107 | __asm volatile("lock xchgl %0,%1" |
| 108 | : "=r" (x), "+m" (*ptr) |
| 109 | : "0" (x) |
| 110 | : "memory"); |
| 111 | return x; |
| 112 | } |
| 113 | |
| 114 | static inline unsigned int cmpxchg(unsigned int *ptr, unsigned int old, unsigned int new) |
| 115 | { |
| 116 | unsigned int ret; |
| 117 | |
| 118 | __asm volatile("lock cmpxchgl %2,%1" |
| 119 | : "=a" (ret), "+m" (*ptr) |
| 120 | : "r" (new), "0" (old) |
| 121 | : "memory"); |
| 122 | return ret; |
| 123 | } |
| 124 | |
| 125 | static inline unsigned char atomic_dec(unsigned int *ptr) |
| 126 | { |
| 127 | unsigned char ret; |
| 128 | __asm volatile("lock decl %0\n" |
| 129 | "setne %1\n" |
| 130 | : "+m" (*ptr), "=qm" (ret) |
| 131 | : |
| 132 | : "memory"); |
| 133 | return ret; |
| 134 | } |
| 135 | |
| 136 | #else /* if no x86_64 or i586 arch: use less optimized gcc >= 4.1 built-ins */ |
| 137 | static inline unsigned int xchg(unsigned int *ptr, unsigned int x) |
| 138 | { |
| 139 | return __sync_lock_test_and_set(ptr, x); |
| 140 | } |
| 141 | |
| 142 | static inline unsigned int cmpxchg(unsigned int *ptr, unsigned int old, unsigned int new) |
| 143 | { |
| 144 | return __sync_val_compare_and_swap(ptr, old, new); |
| 145 | } |
| 146 | |
| 147 | static inline unsigned char atomic_dec(unsigned int *ptr) |
| 148 | { |
| 149 | return __sync_sub_and_fetch(ptr, 1) ? 1 : 0; |
| 150 | } |
| 151 | |
| 152 | #endif |
| 153 | |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 154 | static inline void _shctx_lock(struct shared_context *shctx) |
William Lallemand | 24a7a75 | 2017-10-09 14:17:39 +0200 | [diff] [blame] | 155 | { |
| 156 | unsigned int x; |
| 157 | unsigned int count = 4; |
| 158 | |
| 159 | x = cmpxchg(&shctx->waiters, 0, 1); |
| 160 | if (x) { |
| 161 | if (x != 2) |
| 162 | x = xchg(&shctx->waiters, 2); |
| 163 | |
| 164 | while (x) { |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 165 | _shctx_wait4lock(&count, &shctx->waiters, 2); |
William Lallemand | 24a7a75 | 2017-10-09 14:17:39 +0200 | [diff] [blame] | 166 | x = xchg(&shctx->waiters, 2); |
| 167 | } |
| 168 | } |
| 169 | } |
| 170 | |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 171 | static inline void _shctx_unlock(struct shared_context *shctx) |
William Lallemand | 24a7a75 | 2017-10-09 14:17:39 +0200 | [diff] [blame] | 172 | { |
| 173 | if (atomic_dec(&shctx->waiters)) { |
| 174 | shctx->waiters = 0; |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 175 | _shctx_awakelocker(&shctx->waiters); |
William Lallemand | 24a7a75 | 2017-10-09 14:17:39 +0200 | [diff] [blame] | 176 | } |
| 177 | } |
| 178 | |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 179 | #define shctx_lock(shctx) if (use_shared_mem) _shctx_lock(shctx) |
William Lallemand | 24a7a75 | 2017-10-09 14:17:39 +0200 | [diff] [blame] | 180 | |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 181 | #define shctx_unlock(shctx) if (use_shared_mem) _shctx_unlock(shctx) |
William Lallemand | 24a7a75 | 2017-10-09 14:17:39 +0200 | [diff] [blame] | 182 | |
| 183 | #endif |
| 184 | |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 185 | /* List Macros */ |
| 186 | |
Frédéric Lécaille | 0bec807 | 2018-10-22 17:55:57 +0200 | [diff] [blame] | 187 | /* |
| 188 | * Insert <s> block after <head> which is not necessarily the head of a list, |
| 189 | * so between <head> and the next element after <head>. |
| 190 | */ |
| 191 | static inline void shctx_block_append_hot(struct shared_context *shctx, |
| 192 | struct list *head, |
| 193 | struct shared_block *s) |
| 194 | { |
| 195 | shctx->nbav--; |
| 196 | LIST_DEL(&s->list); |
| 197 | LIST_ADD(head, &s->list); |
| 198 | } |
| 199 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 200 | static inline void shctx_block_set_hot(struct shared_context *shctx, |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 201 | struct shared_block *s) |
| 202 | { |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 203 | shctx->nbav--; |
| 204 | LIST_DEL(&s->list); |
| 205 | LIST_ADDQ(&shctx->hot, &s->list); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 206 | } |
| 207 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 208 | static inline void shctx_block_set_avail(struct shared_context *shctx, |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 209 | struct shared_block *s) |
| 210 | { |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 211 | shctx->nbav++; |
| 212 | LIST_DEL(&s->list); |
| 213 | LIST_ADDQ(&shctx->avail, &s->list); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 214 | } |
William Lallemand | 24a7a75 | 2017-10-09 14:17:39 +0200 | [diff] [blame] | 215 | |
Emeric Brun | 3e541d1 | 2012-09-03 11:14:36 +0200 | [diff] [blame] | 216 | #endif /* SHCTX_H */ |
| 217 | |