PostgreSQL Source Code git master
Loading...
Searching...
No Matches
dsm_registry.c
Go to the documentation of this file.
1/*-------------------------------------------------------------------------
2 *
3 * dsm_registry.c
4 * Functions for interfacing with the dynamic shared memory registry.
5 *
6 * This provides a way for libraries to use shared memory without needing
7 * to request it at startup time via a shmem_request_hook. The registry
8 * stores dynamic shared memory (DSM) segment handles keyed by a
9 * library-specified string.
10 *
11 * The registry is accessed by calling GetNamedDSMSegment(). If a segment
12 * with the provided name does not yet exist, it is created and initialized
13 * with the provided init_callback callback function. Otherwise,
14 * GetNamedDSMSegment() simply ensures that the segment is attached to the
15 * current backend. This function guarantees that only one backend
16 * initializes the segment and that all other backends just attach it.
17 *
18 * A DSA can be created in or retrieved from the registry by calling
19 * GetNamedDSA(). As with GetNamedDSMSegment(), if a DSA with the provided
20 * name does not yet exist, it is created. Otherwise, GetNamedDSA()
21 * ensures the DSA is attached to the current backend. This function
22 * guarantees that only one backend initializes the DSA and that all other
23 * backends just attach it.
24 *
25 * A dshash table can be created in or retrieved from the registry by
26 * calling GetNamedDSHash(). As with GetNamedDSMSegment(), if a hash
27 * table with the provided name does not yet exist, it is created.
28 * Otherwise, GetNamedDSHash() ensures the hash table is attached to the
29 * current backend. This function guarantees that only one backend
30 * initializes the table and that all other backends just attach it.
31 *
32 * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
33 * Portions Copyright (c) 1994, Regents of the University of California
34 *
35 * IDENTIFICATION
36 * src/backend/storage/ipc/dsm_registry.c
37 *
38 *-------------------------------------------------------------------------
39 */
40
41#include "postgres.h"
42
43#include "funcapi.h"
44#include "lib/dshash.h"
46#include "storage/lwlock.h"
47#include "storage/shmem.h"
48#include "utils/builtins.h"
49#include "utils/memutils.h"
50#include "utils/tuplestore.h"
51
57
59
65
71
78
85
86static const char *const DSMREntryTypeNames[] =
87{
88 [DSMR_ENTRY_TYPE_DSM] = "segment",
89 [DSMR_ENTRY_TYPE_DSA] = "area",
90 [DSMR_ENTRY_TYPE_DSH] = "hash",
91};
92
104
113
116
117Size
119{
120 return MAXALIGN(sizeof(DSMRegistryCtxStruct));
121}
122
123void
125{
126 bool found;
127
129 ShmemInitStruct("DSM Registry Data",
131 &found);
132
133 if (!found)
134 {
137 }
138}
139
140/*
141 * Initialize or attach to the dynamic shared hash table that stores the DSM
142 * registry entries, if not already done. This must be called before accessing
143 * the table.
144 */
145static void
147{
148 /* Quick exit if we already did this. */
150 return;
151
152 /* Otherwise, use a lock to ensure only one process creates the table. */
154
156 {
157 /* Initialize dynamic shared hash table for registry. */
160
163
164 /* Store handles in shared memory for other backends to use. */
167 }
168 else
169 {
170 /* Attach to existing dynamic shared hash table. */
175 }
176
178}
179
180/*
181 * Initialize or attach a named DSM segment.
182 *
183 * This routine returns the address of the segment. init_callback is called to
184 * initialize the segment when it is first created. 'arg' is passed through to
185 * the initialization callback function.
186 */
187void *
188GetNamedDSMSegment(const char *name, size_t size,
189 void (*init_callback) (void *ptr, void *arg),
190 bool *found, void *arg)
191{
192 DSMRegistryEntry *entry;
193 MemoryContext oldcontext;
194 void *ret;
196 dsm_segment *seg;
197
198 Assert(found);
199
200 if (!name || *name == '\0')
202 (errmsg("DSM segment name cannot be empty")));
203
206 (errmsg("DSM segment name too long")));
207
208 if (size == 0)
210 (errmsg("DSM segment size must be nonzero")));
211
212 /* Be sure any local memory allocated by DSM/DSA routines is persistent. */
214
215 /* Connect to the registry. */
217
219 state = &entry->dsm;
220 if (!(*found))
221 {
222 entry->type = DSMR_ENTRY_TYPE_DSM;
223 state->handle = DSM_HANDLE_INVALID;
224 state->size = size;
225 }
226 else if (entry->type != DSMR_ENTRY_TYPE_DSM)
228 (errmsg("requested DSM segment does not match type of existing entry")));
229 else if (state->size != size)
231 (errmsg("requested DSM segment size does not match size of existing segment")));
232
233 if (state->handle == DSM_HANDLE_INVALID)
234 {
235 *found = false;
236
237 /* Initialize the segment. */
238 seg = dsm_create(size, 0);
239
240 if (init_callback)
241 (*init_callback) (dsm_segment_address(seg), arg);
242
243 dsm_pin_segment(seg);
244 dsm_pin_mapping(seg);
245 state->handle = dsm_segment_handle(seg);
246 }
247 else
248 {
249 /* If the existing segment is not already attached, attach it now. */
250 seg = dsm_find_mapping(state->handle);
251 if (seg == NULL)
252 {
253 seg = dsm_attach(state->handle);
254 if (seg == NULL)
255 elog(ERROR, "could not map dynamic shared memory segment");
256
257 dsm_pin_mapping(seg);
258 }
259 }
260
261 ret = dsm_segment_address(seg);
263 MemoryContextSwitchTo(oldcontext);
264
265 return ret;
266}
267
268/*
269 * Initialize or attach a named DSA.
270 *
271 * This routine returns a pointer to the DSA. A new LWLock tranche ID will be
272 * generated if needed. Note that the lock tranche will be registered with the
273 * provided name. Also note that this should be called at most once for a
274 * given DSA in each backend.
275 */
276dsa_area *
277GetNamedDSA(const char *name, bool *found)
278{
279 DSMRegistryEntry *entry;
280 MemoryContext oldcontext;
281 dsa_area *ret;
283
284 Assert(found);
285
286 if (!name || *name == '\0')
288 (errmsg("DSA name cannot be empty")));
289
292 (errmsg("DSA name too long")));
293
294 /* Be sure any local memory allocated by DSM/DSA routines is persistent. */
296
297 /* Connect to the registry. */
299
301 state = &entry->dsa;
302 if (!(*found))
303 {
304 entry->type = DSMR_ENTRY_TYPE_DSA;
305 state->handle = DSA_HANDLE_INVALID;
306 state->tranche = -1;
307 }
308 else if (entry->type != DSMR_ENTRY_TYPE_DSA)
310 (errmsg("requested DSA does not match type of existing entry")));
311
312 if (state->tranche == -1)
313 {
314 *found = false;
315
316 /* Initialize the LWLock tranche for the DSA. */
317 state->tranche = LWLockNewTrancheId(name);
318 }
319
320 if (state->handle == DSA_HANDLE_INVALID)
321 {
322 *found = false;
323
324 /* Initialize the DSA. */
325 ret = dsa_create(state->tranche);
326 dsa_pin(ret);
327 dsa_pin_mapping(ret);
328
329 /* Store handle for other backends to use. */
330 state->handle = dsa_get_handle(ret);
331 }
332 else if (dsa_is_attached(state->handle))
334 (errmsg("requested DSA already attached to current process")));
335 else
336 {
337 /* Attach to existing DSA. */
338 ret = dsa_attach(state->handle);
339 dsa_pin_mapping(ret);
340 }
341
343 MemoryContextSwitchTo(oldcontext);
344
345 return ret;
346}
347
348/*
349 * Initialize or attach a named dshash table.
350 *
351 * This routine returns the address of the table. The tranche_id member of
352 * params is ignored; a new LWLock tranche ID will be generated if needed.
353 * Note that the lock tranche will be registered with the provided name. Also
354 * note that this should be called at most once for a given table in each
355 * backend.
356 */
358GetNamedDSHash(const char *name, const dshash_parameters *params, bool *found)
359{
360 DSMRegistryEntry *entry;
361 MemoryContext oldcontext;
362 dshash_table *ret;
364
365 Assert(params);
366 Assert(found);
367
368 if (!name || *name == '\0')
370 (errmsg("DSHash name cannot be empty")));
371
374 (errmsg("DSHash name too long")));
375
376 /* Be sure any local memory allocated by DSM/DSA routines is persistent. */
378
379 /* Connect to the registry. */
381
383 dsh_state = &entry->dsh;
384 if (!(*found))
385 {
386 entry->type = DSMR_ENTRY_TYPE_DSH;
387 dsh_state->dsa_handle = DSA_HANDLE_INVALID;
388 dsh_state->dsh_handle = DSHASH_HANDLE_INVALID;
389 dsh_state->tranche = -1;
390 }
391 else if (entry->type != DSMR_ENTRY_TYPE_DSH)
393 (errmsg("requested DSHash does not match type of existing entry")));
394
395 if (dsh_state->tranche == -1)
396 {
397 *found = false;
398
399 /* Initialize the LWLock tranche for the hash table. */
401 }
402
403 if (dsh_state->dsa_handle == DSA_HANDLE_INVALID)
404 {
406 dsa_area *dsa;
407
408 *found = false;
409
410 /* Initialize the DSA for the hash table. */
411 dsa = dsa_create(dsh_state->tranche);
412
413 /* Initialize the dshash table. */
414 memcpy(&params_copy, params, sizeof(dshash_parameters));
415 params_copy.tranche_id = dsh_state->tranche;
416 ret = dshash_create(dsa, &params_copy, NULL);
417
418 dsa_pin(dsa);
419 dsa_pin_mapping(dsa);
420
421 /* Store handles for other backends to use. */
422 dsh_state->dsa_handle = dsa_get_handle(dsa);
423 dsh_state->dsh_handle = dshash_get_hash_table_handle(ret);
424 }
425 else if (dsa_is_attached(dsh_state->dsa_handle))
427 (errmsg("requested DSHash already attached to current process")));
428 else
429 {
430 dsa_area *dsa;
431
432 /* XXX: Should we verify params matches what table was created with? */
433
434 /* Attach to existing DSA for the hash table. */
435 dsa = dsa_attach(dsh_state->dsa_handle);
436 dsa_pin_mapping(dsa);
437
438 /* Attach to existing dshash table. */
439 ret = dshash_attach(dsa, params, dsh_state->dsh_handle, NULL);
440 }
441
443 MemoryContextSwitchTo(oldcontext);
444
445 return ret;
446}
447
448Datum
450{
451 ReturnSetInfo *rsinfo = (ReturnSetInfo *) fcinfo->resultinfo;
452 DSMRegistryEntry *entry;
453 MemoryContext oldcontext;
454 dshash_seq_status status;
455
457
458 /* Be sure any local memory allocated by DSM/DSA routines is persistent. */
461 MemoryContextSwitchTo(oldcontext);
462
463 dshash_seq_init(&status, dsm_registry_table, false);
464 while ((entry = dshash_seq_next(&status)) != NULL)
465 {
466 Datum vals[3];
467 bool nulls[3] = {0};
468
469 vals[0] = CStringGetTextDatum(entry->name);
471
472 /* Be careful to only return the sizes of initialized entries. */
473 if (entry->type == DSMR_ENTRY_TYPE_DSM &&
474 entry->dsm.handle != DSM_HANDLE_INVALID)
475 vals[2] = Int64GetDatum(entry->dsm.size);
476 else if (entry->type == DSMR_ENTRY_TYPE_DSA &&
477 entry->dsa.handle != DSA_HANDLE_INVALID)
479 else if (entry->type == DSMR_ENTRY_TYPE_DSH &&
482 else
483 nulls[2] = true;
484
485 tuplestore_putvalues(rsinfo->setResult, rsinfo->setDesc, vals, nulls);
486 }
487 dshash_seq_term(&status);
488
489 return (Datum) 0;
490}
#define CStringGetTextDatum(s)
Definition builtins.h:98
#define MAXALIGN(LEN)
Definition c.h:898
#define Assert(condition)
Definition c.h:945
size_t Size
Definition c.h:691
dsa_area * dsa_attach(dsa_handle handle)
Definition dsa.c:510
size_t dsa_get_total_size_from_handle(dsa_handle handle)
Definition dsa.c:1058
void dsa_pin_mapping(dsa_area *area)
Definition dsa.c:650
dsa_handle dsa_get_handle(dsa_area *area)
Definition dsa.c:498
bool dsa_is_attached(dsa_handle handle)
Definition dsa.c:540
void dsa_pin(dsa_area *area)
Definition dsa.c:990
#define dsa_create(tranche_id)
Definition dsa.h:117
dsm_handle dsa_handle
Definition dsa.h:136
#define DSA_HANDLE_INVALID
Definition dsa.h:139
void dshash_strcpy(void *dest, const void *src, size_t size, void *arg)
Definition dshash.c:643
void dshash_release_lock(dshash_table *hash_table, void *entry)
Definition dshash.c:579
void dshash_seq_init(dshash_seq_status *status, dshash_table *hash_table, bool exclusive)
Definition dshash.c:659
dshash_hash dshash_strhash(const void *v, size_t size, void *arg)
Definition dshash.c:632
dshash_table_handle dshash_get_hash_table_handle(dshash_table *hash_table)
Definition dshash.c:371
dshash_table * dshash_attach(dsa_area *area, const dshash_parameters *params, dshash_table_handle handle, void *arg)
Definition dshash.c:274
void dshash_seq_term(dshash_seq_status *status)
Definition dshash.c:768
int dshash_strcmp(const void *a, const void *b, size_t size, void *arg)
Definition dshash.c:620
void * dshash_seq_next(dshash_seq_status *status)
Definition dshash.c:678
dshash_table * dshash_create(dsa_area *area, const dshash_parameters *params, void *arg)
Definition dshash.c:210
#define DSHASH_HANDLE_INVALID
Definition dshash.h:27
dsa_pointer dshash_table_handle
Definition dshash.h:24
#define dshash_find_or_insert(hash_table, key, found)
Definition dshash.h:109
dsm_handle dsm_segment_handle(dsm_segment *seg)
Definition dsm.c:1123
void dsm_pin_mapping(dsm_segment *seg)
Definition dsm.c:915
void dsm_pin_segment(dsm_segment *seg)
Definition dsm.c:955
void * dsm_segment_address(dsm_segment *seg)
Definition dsm.c:1095
dsm_segment * dsm_create(Size size, int flags)
Definition dsm.c:516
dsm_segment * dsm_attach(dsm_handle h)
Definition dsm.c:665
dsm_segment * dsm_find_mapping(dsm_handle handle)
Definition dsm.c:1076
uint32 dsm_handle
Definition dsm_impl.h:55
#define DSM_HANDLE_INVALID
Definition dsm_impl.h:58
dsa_area * GetNamedDSA(const char *name, bool *found)
void * GetNamedDSMSegment(const char *name, size_t size, void(*init_callback)(void *ptr, void *arg), bool *found, void *arg)
Datum pg_get_dsm_registry_allocations(PG_FUNCTION_ARGS)
DSMREntryType
@ DSMR_ENTRY_TYPE_DSM
@ DSMR_ENTRY_TYPE_DSA
@ DSMR_ENTRY_TYPE_DSH
void DSMRegistryShmemInit(void)
static void init_dsm_registry(void)
static const char *const DSMREntryTypeNames[]
static DSMRegistryCtxStruct * DSMRegistryCtx
static dshash_table * dsm_registry_table
dshash_table * GetNamedDSHash(const char *name, const dshash_parameters *params, bool *found)
static dsa_area * dsm_registry_dsa
static const dshash_parameters dsh_params
Size DSMRegistryShmemSize(void)
Datum arg
Definition elog.c:1322
#define ERROR
Definition elog.h:39
#define elog(elevel,...)
Definition elog.h:226
#define ereport(elevel,...)
Definition elog.h:150
#define PG_FUNCTION_ARGS
Definition fmgr.h:193
void InitMaterializedSRF(FunctionCallInfo fcinfo, bits32 flags)
Definition funcapi.c:76
#define MAT_SRF_USE_EXPECTED_DESC
Definition funcapi.h:296
bool LWLockAcquire(LWLock *lock, LWLockMode mode)
Definition lwlock.c:1153
int LWLockNewTrancheId(const char *name)
Definition lwlock.c:572
void LWLockRelease(LWLock *lock)
Definition lwlock.c:1770
@ LW_EXCLUSIVE
Definition lwlock.h:104
MemoryContext TopMemoryContext
Definition mcxt.c:166
static char * errmsg
static MemoryContext MemoryContextSwitchTo(MemoryContext context)
Definition palloc.h:124
#define NAMEDATALEN
static Datum Int64GetDatum(int64 X)
Definition postgres.h:413
uint64_t Datum
Definition postgres.h:70
static int fb(int x)
void * ShmemInitStruct(const char *name, Size size, bool *foundPtr)
Definition shmem.c:380
dshash_table_handle dshh
NamedDSMState dsm
char name[NAMEDATALEN]
NamedDSAState dsa
NamedDSHState dsh
DSMREntryType type
dsa_handle handle
dsa_handle dsa_handle
dshash_table_handle dsh_handle
dsm_handle handle
void tuplestore_putvalues(Tuplestorestate *state, TupleDesc tdesc, const Datum *values, const bool *isnull)
Definition tuplestore.c:785
const char * type
const char * name