PostgreSQL Source Code  git master
shmem.h File Reference
#include "utils/hsearch.h"
Include dependency graph for shmem.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  ShmemIndexEnt
 

Macros

#define SHMEM_INDEX_KEYSIZE   (48)
 
#define SHMEM_INDEX_SIZE   (64)
 

Functions

void InitShmemAccess (void *seghdr)
 
void InitShmemAllocation (void)
 
void * ShmemAlloc (Size size)
 
void * ShmemAllocNoError (Size size)
 
void * ShmemAllocUnlocked (Size size)
 
bool ShmemAddrIsValid (const void *addr)
 
void InitShmemIndex (void)
 
HTABShmemInitHash (const char *name, long init_size, long max_size, HASHCTL *infoP, int hash_flags)
 
void * ShmemInitStruct (const char *name, Size size, bool *foundPtr)
 
Size add_size (Size s1, Size s2)
 
Size mul_size (Size s1, Size s2)
 
void RequestAddinShmemSpace (Size size)
 

Macro Definition Documentation

◆ SHMEM_INDEX_KEYSIZE

#define SHMEM_INDEX_KEYSIZE   (48)

Definition at line 46 of file shmem.h.

◆ SHMEM_INDEX_SIZE

#define SHMEM_INDEX_SIZE   (64)

Definition at line 48 of file shmem.h.

Function Documentation

◆ add_size()

Size add_size ( Size  s1,
Size  s2 
)

Definition at line 502 of file shmem.c.

503 {
504  Size result;
505 
506  result = s1 + s2;
507  /* We are assuming Size is an unsigned type here... */
508  if (result < s1 || result < s2)
509  ereport(ERROR,
510  (errcode(ERRCODE_PROGRAM_LIMIT_EXCEEDED),
511  errmsg("requested shared memory size overflows size_t")));
512  return result;
513 }
size_t Size
Definition: c.h:594
int errcode(int sqlerrcode)
Definition: elog.c:858
int errmsg(const char *fmt,...)
Definition: elog.c:1069
#define ERROR
Definition: elog.h:39
#define ereport(elevel,...)
Definition: elog.h:149
char * s1
char * s2

References ereport, errcode(), errmsg(), ERROR, s1, and s2.

Referenced by _bt_parallel_estimate_shared(), ApplyLauncherShmemSize(), AsyncShmemInit(), AsyncShmemSize(), AutoVacuumShmemSize(), BackendStatusShmemSize(), BackgroundWorkerShmemSize(), BTreeShmemSize(), BufferShmemSize(), CalculateShmemSize(), CheckpointerShmemSize(), CreateSharedProcArray(), estimate_variable_size(), EstimateClientConnectionInfoSpace(), EstimateComboCIDStateSpace(), EstimateGUCStateSpace(), EstimateLibraryStateSpace(), EstimateParamExecSpace(), EstimateParamListSpace(), EstimateSnapshotSpace(), EstimateTransactionStateSpace(), ExecAggEstimate(), ExecAppendEstimate(), ExecBitmapHeapEstimate(), ExecHashEstimate(), ExecIncrementalSortEstimate(), ExecMemoizeEstimate(), ExecSortEstimate(), expand_planner_arrays(), hash_estimate_size(), index_parallelscan_estimate(), index_parallelscan_initialize(), InitializeShmemGUCs(), LockShmemSize(), LWLockShmemSize(), MultiXactShmemSize(), PgArchShmemSize(), pgss_memsize(), PMSignalShmemSize(), PredicateLockShmemSize(), ProcArrayShmemSize(), ProcGlobalShmemSize(), ProcSignalShmemSize(), ReplicationOriginShmemSize(), ReplicationSlotsShmemSize(), RequestAddinShmemSpace(), SerializeTransactionState(), shm_toc_estimate(), SInvalShmemSize(), StatsShmemSize(), StrategyShmemSize(), table_parallelscan_estimate(), tuplesort_estimate_shared(), TwoPhaseShmemSize(), WaitEventExtensionShmemSize(), WalRcvShmemSize(), WalSndShmemSize(), and XLOGShmemSize().

◆ InitShmemAccess()

void InitShmemAccess ( void *  seghdr)

Definition at line 101 of file shmem.c.

102 {
103  PGShmemHeader *shmhdr = (PGShmemHeader *) seghdr;
104 
105  ShmemSegHdr = shmhdr;
106  ShmemBase = (void *) shmhdr;
107  ShmemEnd = (char *) ShmemBase + shmhdr->totalsize;
108 }
static void * ShmemBase
Definition: shmem.c:84
static void * ShmemEnd
Definition: shmem.c:86
static PGShmemHeader * ShmemSegHdr
Definition: shmem.c:82
Size totalsize
Definition: pg_shmem.h:34

References ShmemBase, ShmemEnd, ShmemSegHdr, and PGShmemHeader::totalsize.

Referenced by CreateSharedMemoryAndSemaphores().

◆ InitShmemAllocation()

void InitShmemAllocation ( void  )

Definition at line 116 of file shmem.c.

117 {
118  PGShmemHeader *shmhdr = ShmemSegHdr;
119  char *aligned;
120 
121  Assert(shmhdr != NULL);
122 
123  /*
124  * Initialize the spinlock used by ShmemAlloc. We must use
125  * ShmemAllocUnlocked, since obviously ShmemAlloc can't be called yet.
126  */
128 
130 
131  /*
132  * Allocations after this point should go through ShmemAlloc, which
133  * expects to allocate everything on cache line boundaries. Make sure the
134  * first allocation begins on a cache line boundary.
135  */
136  aligned = (char *)
137  (CACHELINEALIGN((((char *) shmhdr) + shmhdr->freeoffset)));
138  shmhdr->freeoffset = aligned - (char *) shmhdr;
139 
140  /* ShmemIndex can't be set up yet (need LWLocks first) */
141  shmhdr->index = NULL;
142  ShmemIndex = (HTAB *) NULL;
143 
144  /*
145  * Initialize ShmemVariableCache for transaction manager. (This doesn't
146  * really belong here, but not worth moving.)
147  */
149  ShmemAlloc(sizeof(*ShmemVariableCache));
150  memset(ShmemVariableCache, 0, sizeof(*ShmemVariableCache));
151 }
#define CACHELINEALIGN(LEN)
Definition: c.h:803
Assert(fmt[strlen(fmt) - 1] !='\n')
int slock_t
Definition: s_lock.h:754
void * ShmemAlloc(Size size)
Definition: shmem.c:161
slock_t * ShmemLock
Definition: shmem.c:88
static HTAB * ShmemIndex
Definition: shmem.c:91
void * ShmemAllocUnlocked(Size size)
Definition: shmem.c:247
#define SpinLockInit(lock)
Definition: spin.h:60
Definition: dynahash.c:220
VariableCacheData * VariableCache
Definition: transam.h:257
VariableCache ShmemVariableCache
Definition: varsup.c:34

References Assert(), CACHELINEALIGN, PGShmemHeader::freeoffset, PGShmemHeader::index, ShmemAlloc(), ShmemAllocUnlocked(), ShmemIndex, ShmemLock, ShmemSegHdr, ShmemVariableCache, and SpinLockInit.

Referenced by CreateSharedMemoryAndSemaphores().

◆ InitShmemIndex()

void InitShmemIndex ( void  )

Definition at line 292 of file shmem.c.

293 {
294  HASHCTL info;
295 
296  /*
297  * Create the shared memory shmem index.
298  *
299  * Since ShmemInitHash calls ShmemInitStruct, which expects the ShmemIndex
300  * hashtable to exist already, we have a bit of a circularity problem in
301  * initializing the ShmemIndex itself. The special "ShmemIndex" hash
302  * table name will tell ShmemInitStruct to fake it.
303  */
305  info.entrysize = sizeof(ShmemIndexEnt);
306 
307  ShmemIndex = ShmemInitHash("ShmemIndex",
309  &info,
311 }
#define HASH_STRINGS
Definition: hsearch.h:96
#define HASH_ELEM
Definition: hsearch.h:95
HTAB * ShmemInitHash(const char *name, long init_size, long max_size, HASHCTL *infoP, int hash_flags)
Definition: shmem.c:341
#define SHMEM_INDEX_SIZE
Definition: shmem.h:48
#define SHMEM_INDEX_KEYSIZE
Definition: shmem.h:46
Size keysize
Definition: hsearch.h:75
Size entrysize
Definition: hsearch.h:76

References HASHCTL::entrysize, HASH_ELEM, HASH_STRINGS, HASHCTL::keysize, SHMEM_INDEX_KEYSIZE, SHMEM_INDEX_SIZE, ShmemIndex, and ShmemInitHash().

Referenced by CreateSharedMemoryAndSemaphores().

◆ mul_size()

Size mul_size ( Size  s1,
Size  s2 
)

Definition at line 519 of file shmem.c.

520 {
521  Size result;
522 
523  if (s1 == 0 || s2 == 0)
524  return 0;
525  result = s1 * s2;
526  /* We are assuming Size is an unsigned type here... */
527  if (result / s2 != s1)
528  ereport(ERROR,
529  (errcode(ERRCODE_PROGRAM_LIMIT_EXCEEDED),
530  errmsg("requested shared memory size overflows size_t")));
531  return result;
532 }

References ereport, errcode(), errmsg(), ERROR, s1, and s2.

Referenced by _bt_begin_parallel(), ApplyLauncherShmemSize(), AsyncShmemInit(), AsyncShmemSize(), AutoVacuumShmemSize(), BackendStatusShmemSize(), BackgroundWorkerShmemSize(), BTreeShmemSize(), BufferShmemSize(), CheckpointerShmemSize(), CreateSharedBackendStatus(), CreateSharedProcArray(), EstimateComboCIDStateSpace(), EstimatePendingSyncsSpace(), EstimateReindexStateSpace(), EstimateSnapshotSpace(), EstimateTransactionStateSpace(), ExecAggEstimate(), ExecHashEstimate(), ExecIncrementalSortEstimate(), ExecInitParallelPlan(), ExecMemoizeEstimate(), ExecParallelRetrieveInstrumentation(), ExecParallelRetrieveJitInstrumentation(), ExecParallelSetupTupleQueues(), ExecSortEstimate(), hash_estimate_size(), InitializeParallelDSM(), InitPredicateLocks(), LWLockShmemSize(), parallel_vacuum_init(), PGSemaphoreShmemSize(), PMSignalShmemSize(), PredicateLockShmemSize(), ProcArrayShmemSize(), ProcGlobalShmemSize(), ProcSignalShmemSize(), ReplicationOriginShmemSize(), ReplicationSlotsShmemSize(), shm_toc_estimate(), SInvalShmemSize(), tuplesort_estimate_shared(), TwoPhaseShmemSize(), WalSndShmemSize(), and XLOGShmemSize().

◆ RequestAddinShmemSpace()

void RequestAddinShmemSpace ( Size  size)

Definition at line 71 of file ipci.c.

72 {
74  elog(FATAL, "cannot request additional shared memory outside shmem_request_hook");
76 }
#define FATAL
Definition: elog.h:41
static Size total_addin_request
Definition: ipci.c:59
bool process_shmem_requests_in_progress
Definition: miscinit.c:1776
Size add_size(Size s1, Size s2)
Definition: shmem.c:502

References add_size(), elog(), FATAL, process_shmem_requests_in_progress, and total_addin_request.

Referenced by autoprewarm_shmem_request(), pgss_shmem_request(), and test_slru_shmem_request().

◆ ShmemAddrIsValid()

bool ShmemAddrIsValid ( const void *  addr)

Definition at line 283 of file shmem.c.

284 {
285  return (addr >= ShmemBase) && (addr < ShmemEnd);
286 }

References ShmemBase, and ShmemEnd.

Referenced by ReleasePredXact(), and ShmemInitStruct().

◆ ShmemAlloc()

void* ShmemAlloc ( Size  size)

Definition at line 161 of file shmem.c.

162 {
163  void *newSpace;
164  Size allocated_size;
165 
166  newSpace = ShmemAllocRaw(size, &allocated_size);
167  if (!newSpace)
168  ereport(ERROR,
169  (errcode(ERRCODE_OUT_OF_MEMORY),
170  errmsg("out of shared memory (%zu bytes requested)",
171  size)));
172  return newSpace;
173 }
static void * ShmemAllocRaw(Size size, Size *allocated_size)
Definition: shmem.c:195

References ereport, errcode(), errmsg(), ERROR, and ShmemAllocRaw().

Referenced by CreateLWLocks(), InitPredicateLocks(), InitProcGlobal(), InitShmemAllocation(), and ShmemInitStruct().

◆ ShmemAllocNoError()

void* ShmemAllocNoError ( Size  size)

Definition at line 181 of file shmem.c.

182 {
183  Size allocated_size;
184 
185  return ShmemAllocRaw(size, &allocated_size);
186 }

References ShmemAllocRaw().

Referenced by ShmemInitHash().

◆ ShmemAllocUnlocked()

void* ShmemAllocUnlocked ( Size  size)

Definition at line 247 of file shmem.c.

248 {
249  Size newStart;
250  Size newFree;
251  void *newSpace;
252 
253  /*
254  * Ensure allocated space is adequately aligned.
255  */
256  size = MAXALIGN(size);
257 
258  Assert(ShmemSegHdr != NULL);
259 
260  newStart = ShmemSegHdr->freeoffset;
261 
262  newFree = newStart + size;
263  if (newFree > ShmemSegHdr->totalsize)
264  ereport(ERROR,
265  (errcode(ERRCODE_OUT_OF_MEMORY),
266  errmsg("out of shared memory (%zu bytes requested)",
267  size)));
268  ShmemSegHdr->freeoffset = newFree;
269 
270  newSpace = (void *) ((char *) ShmemBase + newStart);
271 
272  Assert(newSpace == (void *) MAXALIGN(newSpace));
273 
274  return newSpace;
275 }
#define MAXALIGN(LEN)
Definition: c.h:800
Size freeoffset
Definition: pg_shmem.h:35

References Assert(), ereport, errcode(), errmsg(), ERROR, PGShmemHeader::freeoffset, MAXALIGN, ShmemBase, ShmemSegHdr, and PGShmemHeader::totalsize.

Referenced by InitShmemAllocation(), PGReserveSemaphores(), and SpinlockSemaInit().

◆ ShmemInitHash()

HTAB* ShmemInitHash ( const char *  name,
long  init_size,
long  max_size,
HASHCTL infoP,
int  hash_flags 
)

Definition at line 341 of file shmem.c.

346 {
347  bool found;
348  void *location;
349 
350  /*
351  * Hash tables allocated in shared memory have a fixed directory; it can't
352  * grow or other backends wouldn't be able to find it. So, make sure we
353  * make it big enough to start with.
354  *
355  * The shared memory allocator must be specified too.
356  */
357  infoP->dsize = infoP->max_dsize = hash_select_dirsize(max_size);
358  infoP->alloc = ShmemAllocNoError;
359  hash_flags |= HASH_SHARED_MEM | HASH_ALLOC | HASH_DIRSIZE;
360 
361  /* look it up in the shmem index */
362  location = ShmemInitStruct(name,
363  hash_get_shared_size(infoP, hash_flags),
364  &found);
365 
366  /*
367  * if it already exists, attach to it rather than allocate and initialize
368  * new space
369  */
370  if (found)
371  hash_flags |= HASH_ATTACH;
372 
373  /* Pass location of hashtable header to hash_create */
374  infoP->hctl = (HASHHDR *) location;
375 
376  return hash_create(name, init_size, infoP, hash_flags);
377 }
Size hash_get_shared_size(HASHCTL *info, int flags)
Definition: dynahash.c:852
HTAB * hash_create(const char *tabname, long nelem, const HASHCTL *info, int flags)
Definition: dynahash.c:350
long hash_select_dirsize(long num_entries)
Definition: dynahash.c:828
#define HASH_ALLOC
Definition: hsearch.h:101
#define HASH_DIRSIZE
Definition: hsearch.h:94
#define HASH_ATTACH
Definition: hsearch.h:104
#define HASH_SHARED_MEM
Definition: hsearch.h:103
void * ShmemAllocNoError(Size size)
Definition: shmem.c:181
void * ShmemInitStruct(const char *name, Size size, bool *foundPtr)
Definition: shmem.c:396
HashAllocFunc alloc
Definition: hsearch.h:84
long dsize
Definition: hsearch.h:72
HASHHDR * hctl
Definition: hsearch.h:88
long max_dsize
Definition: hsearch.h:73
const char * name

References HASHCTL::alloc, HASHCTL::dsize, HASH_ALLOC, HASH_ATTACH, hash_create(), HASH_DIRSIZE, hash_get_shared_size(), hash_select_dirsize(), HASH_SHARED_MEM, HASHCTL::hctl, HASHCTL::max_dsize, name, ShmemAllocNoError(), and ShmemInitStruct().

Referenced by InitBufTable(), InitLocks(), InitPredicateLocks(), InitShmemIndex(), pgss_shmem_startup(), and WaitEventExtensionShmemInit().

◆ ShmemInitStruct()

void* ShmemInitStruct ( const char *  name,
Size  size,
bool foundPtr 
)

Definition at line 396 of file shmem.c.

397 {
398  ShmemIndexEnt *result;
399  void *structPtr;
400 
401  LWLockAcquire(ShmemIndexLock, LW_EXCLUSIVE);
402 
403  if (!ShmemIndex)
404  {
405  PGShmemHeader *shmemseghdr = ShmemSegHdr;
406 
407  /* Must be trying to create/attach to ShmemIndex itself */
408  Assert(strcmp(name, "ShmemIndex") == 0);
409 
410  if (IsUnderPostmaster)
411  {
412  /* Must be initializing a (non-standalone) backend */
413  Assert(shmemseghdr->index != NULL);
414  structPtr = shmemseghdr->index;
415  *foundPtr = true;
416  }
417  else
418  {
419  /*
420  * If the shmem index doesn't exist, we are bootstrapping: we must
421  * be trying to init the shmem index itself.
422  *
423  * Notice that the ShmemIndexLock is released before the shmem
424  * index has been initialized. This should be OK because no other
425  * process can be accessing shared memory yet.
426  */
427  Assert(shmemseghdr->index == NULL);
428  structPtr = ShmemAlloc(size);
429  shmemseghdr->index = structPtr;
430  *foundPtr = false;
431  }
432  LWLockRelease(ShmemIndexLock);
433  return structPtr;
434  }
435 
436  /* look it up in the shmem index */
437  result = (ShmemIndexEnt *)
439 
440  if (!result)
441  {
442  LWLockRelease(ShmemIndexLock);
443  ereport(ERROR,
444  (errcode(ERRCODE_OUT_OF_MEMORY),
445  errmsg("could not create ShmemIndex entry for data structure \"%s\"",
446  name)));
447  }
448 
449  if (*foundPtr)
450  {
451  /*
452  * Structure is in the shmem index so someone else has allocated it
453  * already. The size better be the same as the size we are trying to
454  * initialize to, or there is a name conflict (or worse).
455  */
456  if (result->size != size)
457  {
458  LWLockRelease(ShmemIndexLock);
459  ereport(ERROR,
460  (errmsg("ShmemIndex entry size is wrong for data structure"
461  " \"%s\": expected %zu, actual %zu",
462  name, size, result->size)));
463  }
464  structPtr = result->location;
465  }
466  else
467  {
468  Size allocated_size;
469 
470  /* It isn't in the table yet. allocate and initialize it */
471  structPtr = ShmemAllocRaw(size, &allocated_size);
472  if (structPtr == NULL)
473  {
474  /* out of memory; remove the failed ShmemIndex entry */
476  LWLockRelease(ShmemIndexLock);
477  ereport(ERROR,
478  (errcode(ERRCODE_OUT_OF_MEMORY),
479  errmsg("not enough shared memory for data structure"
480  " \"%s\" (%zu bytes requested)",
481  name, size)));
482  }
483  result->size = size;
484  result->allocated_size = allocated_size;
485  result->location = structPtr;
486  }
487 
488  LWLockRelease(ShmemIndexLock);
489 
490  Assert(ShmemAddrIsValid(structPtr));
491 
492  Assert(structPtr == (void *) CACHELINEALIGN(structPtr));
493 
494  return structPtr;
495 }
void * hash_search(HTAB *hashp, const void *keyPtr, HASHACTION action, bool *foundPtr)
Definition: dynahash.c:953
bool IsUnderPostmaster
Definition: globals.c:115
@ HASH_REMOVE
Definition: hsearch.h:115
@ HASH_ENTER_NULL
Definition: hsearch.h:116
bool LWLockAcquire(LWLock *lock, LWLockMode mode)
Definition: lwlock.c:1195
void LWLockRelease(LWLock *lock)
Definition: lwlock.c:1808
@ LW_EXCLUSIVE
Definition: lwlock.h:116
bool ShmemAddrIsValid(const void *addr)
Definition: shmem.c:283
void * index
Definition: pg_shmem.h:37
void * location
Definition: shmem.h:54
Size size
Definition: shmem.h:55
Size allocated_size
Definition: shmem.h:56

References ShmemIndexEnt::allocated_size, Assert(), CACHELINEALIGN, ereport, errcode(), errmsg(), ERROR, HASH_ENTER_NULL, HASH_REMOVE, hash_search(), PGShmemHeader::index, IsUnderPostmaster, ShmemIndexEnt::location, LW_EXCLUSIVE, LWLockAcquire(), LWLockRelease(), name, ShmemAddrIsValid(), ShmemAlloc(), ShmemAllocRaw(), ShmemIndex, ShmemSegHdr, and ShmemIndexEnt::size.

Referenced by ApplyLauncherShmemInit(), apw_init_shmem(), AsyncShmemInit(), AutoVacuumShmemInit(), BackgroundWorkerShmemInit(), BTreeShmemInit(), CheckpointerShmemInit(), CommitTsShmemInit(), CreateSharedBackendStatus(), CreateSharedInvalidationState(), CreateSharedProcArray(), dsm_shmem_init(), InitBufferPool(), InitLocks(), InitPredicateLocks(), InitProcGlobal(), MultiXactShmemInit(), PgArchShmemInit(), pgss_shmem_startup(), PMSignalShmemInit(), ProcSignalShmemInit(), ReplicationOriginShmemInit(), ReplicationSlotsShmemInit(), SerialInit(), ShmemInitHash(), SimpleLruInit(), StatsShmemInit(), StrategyInitialize(), SyncScanShmemInit(), TwoPhaseShmemInit(), WaitEventExtensionShmemInit(), WalRcvShmemInit(), WalSndShmemInit(), XLogPrefetchShmemInit(), XLogRecoveryShmemInit(), and XLOGShmemInit().