Branch data Line data Source code
1 : : /* ----------
2 : : * pgstat_internal.h
3 : : *
4 : : * Definitions for the PostgreSQL cumulative statistics system that should
5 : : * only be needed by files implementing statistics support (rather than ones
6 : : * reporting / querying stats).
7 : : *
8 : : * Copyright (c) 2001-2026, PostgreSQL Global Development Group
9 : : *
10 : : * src/include/utils/pgstat_internal.h
11 : : * ----------
12 : : */
13 : : #ifndef PGSTAT_INTERNAL_H
14 : : #define PGSTAT_INTERNAL_H
15 : :
16 : :
17 : : #include "common/hashfn_unstable.h"
18 : : #include "lib/dshash.h"
19 : : #include "lib/ilist.h"
20 : : #include "pgstat.h"
21 : : #include "storage/lwlock.h"
22 : : #include "utils/dsa.h"
23 : :
24 : :
25 : : /*
26 : : * Types related to shared memory storage of statistics.
27 : : *
28 : : * Per-object statistics are stored in the "shared stats" hashtable. That
29 : : * table's entries (PgStatShared_HashEntry) contain a pointer to the actual stats
30 : : * data for the object (the size of the stats data varies depending on the
31 : : * kind of stats). The table is keyed by PgStat_HashKey.
32 : : *
33 : : * Once a backend has a reference to a shared stats entry, it increments the
34 : : * entry's refcount. Even after stats data is dropped (e.g., due to a DROP
35 : : * TABLE), the entry itself can only be deleted once all references have been
36 : : * released.
37 : : *
38 : : * These refcounts, in combination with a backend local hashtable
39 : : * (pgStatEntryRefHash, with entries pointing to PgStat_EntryRef) in front of
40 : : * the shared hash table, mean that most stats work can happen without
41 : : * touching the shared hash table, reducing contention.
42 : : *
43 : : * Once there are pending stats updates for a table PgStat_EntryRef->pending
44 : : * is allocated to contain a working space for as-of-yet-unapplied stats
45 : : * updates. Once the stats are flushed, PgStat_EntryRef->pending is freed.
46 : : *
47 : : * Each stat kind in the shared hash table has a fixed member
48 : : * PgStatShared_Common as the first element.
49 : : */
50 : :
51 : : /*
52 : : * Struct for shared statistics hash entry key.
53 : : *
54 : : * NB: We assume that this struct contains no padding. Also, 8 bytes
55 : : * allocated for the object ID are good enough to ensure the uniqueness
56 : : * of the hash key, hence the addition of new fields is not recommended.
57 : : */
58 : : typedef struct PgStat_HashKey
59 : : {
60 : : PgStat_Kind kind; /* statistics entry kind */
61 : : Oid dboid; /* database ID. InvalidOid for shared objects. */
62 : : uint64 objid; /* object ID (table, function, etc.), or
63 : : * identifier. */
64 : : } PgStat_HashKey;
65 : :
66 : : /*
67 : : * Tracks if the stats file is being read, written or discarded, used in
68 : : * combination with the finish callback.
69 : : *
70 : : * These states allow plugins that create auxiliary data files to determine
71 : : * the current operation and perform any necessary file cleanup.
72 : : */
73 : : typedef enum PgStat_StatsFileOp
74 : : {
75 : : STATS_WRITE,
76 : : STATS_READ,
77 : : STATS_DISCARD,
78 : : } PgStat_StatsFileOp;
79 : :
80 : : /*
81 : : * PgStat_HashKey should not have any padding. Checking that the structure
82 : : * size matches with the sum of each field is a check simple enough to
83 : : * enforce this policy.
84 : : */
85 : : StaticAssertDecl((sizeof(PgStat_Kind) + sizeof(uint64) + sizeof(Oid)) ==
86 : : sizeof(PgStat_HashKey),
87 : : "PgStat_HashKey should have no padding");
88 : :
89 : : /*
90 : : * Shared statistics hash entry. Doesn't itself contain any stats, but points
91 : : * to them (with ->body). That allows the stats entries themselves to be of
92 : : * variable size.
93 : : */
94 : : typedef struct PgStatShared_HashEntry
95 : : {
96 : : PgStat_HashKey key; /* hash key */
97 : :
98 : : /*
99 : : * If dropped is set, backends need to release their references so that
100 : : * the memory for the entry can be freed. No new references may be made
101 : : * once marked as dropped.
102 : : */
103 : : bool dropped;
104 : :
105 : : /*
106 : : * Refcount managing lifetime of the entry itself (as opposed to the
107 : : * dshash entry pointing to it). The stats lifetime has to be separate
108 : : * from the hash table entry lifetime because we allow backends to point
109 : : * to a stats entry without holding a hash table lock (and some other
110 : : * reasons).
111 : : *
112 : : * As long as the entry is not dropped, 1 is added to the refcount
113 : : * representing that the entry should not be dropped. In addition each
114 : : * backend that has a reference to the entry needs to increment the
115 : : * refcount as long as it does.
116 : : *
117 : : * May only be incremented / decremented while holding at least a shared
118 : : * lock on the dshash partition containing the entry. It needs to be an
119 : : * atomic variable because multiple backends can increment the refcount
120 : : * with just a shared lock.
121 : : *
122 : : * When the refcount reaches 0 the entry needs to be freed.
123 : : */
124 : : pg_atomic_uint32 refcount;
125 : :
126 : : /*
127 : : * Counter tracking the number of times the entry has been reused.
128 : : *
129 : : * Set to 0 when the entry is created, and incremented by one each time
130 : : * the shared entry is reinitialized with pgstat_reinit_entry().
131 : : *
132 : : * May only be incremented / decremented while holding at least a shared
133 : : * lock on the dshash partition containing the entry. Like refcount, it
134 : : * needs to be an atomic variable because multiple backends can increment
135 : : * the generation with just a shared lock.
136 : : */
137 : : pg_atomic_uint32 generation;
138 : :
139 : : /*
140 : : * Pointer to shared stats. The stats entry always starts with
141 : : * PgStatShared_Common, embedded in a larger struct containing the
142 : : * PgStat_Kind specific stats fields.
143 : : */
144 : : dsa_pointer body;
145 : : } PgStatShared_HashEntry;
146 : :
147 : : /*
148 : : * Common header struct for PgStatShared_*.
149 : : */
150 : : typedef struct PgStatShared_Common
151 : : {
152 : : uint32 magic; /* just a validity cross-check */
153 : : /* lock protecting stats contents (i.e. data following the header) */
154 : : LWLock lock;
155 : : } PgStatShared_Common;
156 : :
157 : : /*
158 : : * A backend local reference to a shared stats entry. As long as at least one
159 : : * such reference exists, the shared stats entry will not be released.
160 : : *
161 : : * If there are pending stats update to the shared stats, these are stored in
162 : : * ->pending.
163 : : */
164 : : typedef struct PgStat_EntryRef
165 : : {
166 : : /*
167 : : * Pointer to the PgStatShared_HashEntry entry in the shared stats
168 : : * hashtable.
169 : : */
170 : : PgStatShared_HashEntry *shared_entry;
171 : :
172 : : /*
173 : : * Pointer to the stats data (i.e. PgStatShared_HashEntry->body), resolved
174 : : * as a local pointer, to avoid repeated dsa_get_address() calls.
175 : : */
176 : : PgStatShared_Common *shared_stats;
177 : :
178 : : /*
179 : : * Copy of PgStatShared_HashEntry->generation, keeping locally track of
180 : : * the shared stats entry "generation" retrieved (number of times reused).
181 : : */
182 : : uint32 generation;
183 : :
184 : : /*
185 : : * Pending statistics data that will need to be flushed to shared memory
186 : : * stats eventually. Each stats kind utilizing pending data defines what
187 : : * format its pending data has and needs to provide a
188 : : * PgStat_KindInfo->flush_pending_cb callback to merge pending entries
189 : : * into the shared stats hash table.
190 : : */
191 : : void *pending;
192 : : dlist_node pending_node; /* membership in pgStatPending list */
193 : : } PgStat_EntryRef;
194 : :
195 : :
196 : : /*
197 : : * Some stats changes are transactional. To maintain those, a stack of
198 : : * PgStat_SubXactStatus entries is maintained, which contain data pertaining
199 : : * to the current transaction and its active subtransactions.
200 : : */
201 : : typedef struct PgStat_SubXactStatus
202 : : {
203 : : int nest_level; /* subtransaction nest level */
204 : :
205 : : struct PgStat_SubXactStatus *prev; /* higher-level subxact if any */
206 : :
207 : : /*
208 : : * Statistics for transactionally dropped objects need to be
209 : : * transactionally dropped as well. Collect the stats dropped in the
210 : : * current (sub-)transaction and only execute the stats drop when we know
211 : : * if the transaction commits/aborts. To handle replicas and crashes,
212 : : * stats drops are included in commit / abort records.
213 : : */
214 : : dclist_head pending_drops;
215 : :
216 : : /*
217 : : * Tuple insertion/deletion counts for an open transaction can't be
218 : : * propagated into PgStat_TableStatus counters until we know if it is
219 : : * going to commit or abort. Hence, we keep these counts in per-subxact
220 : : * structs that live in TopTransactionContext. This data structure is
221 : : * designed on the assumption that subxacts won't usually modify very many
222 : : * tables.
223 : : */
224 : : PgStat_TableXactStatus *first; /* head of list for this subxact */
225 : : } PgStat_SubXactStatus;
226 : :
227 : :
228 : : /*
229 : : * Metadata for a specific kind of statistics.
230 : : */
231 : : typedef struct PgStat_KindInfo
232 : : {
233 : : /*
234 : : * Do a fixed number of stats objects exist for this kind of stats (e.g.
235 : : * bgwriter stats) or not (e.g. tables).
236 : : */
237 : : bool fixed_amount:1;
238 : :
239 : : /*
240 : : * Can stats of this kind be accessed from another database? Determines
241 : : * whether a stats object gets included in stats snapshots.
242 : : */
243 : : bool accessed_across_databases:1;
244 : :
245 : : /* Should stats be written to the on-disk stats file? */
246 : : bool write_to_file:1;
247 : :
248 : : /*
249 : : * Should the number of entries be tracked? For variable-numbered stats,
250 : : * to update its PgStat_ShmemControl.entry_counts.
251 : : */
252 : : bool track_entry_count:1;
253 : :
254 : : /*
255 : : * The size of an entry in the shared stats hash table (pointed to by
256 : : * PgStatShared_HashEntry->body). For fixed-numbered statistics, this is
257 : : * the size of an entry in PgStat_ShmemControl->custom_data.
258 : : */
259 : : uint32 shared_size;
260 : :
261 : : /*
262 : : * The offset of the statistics struct in the cached statistics snapshot
263 : : * PgStat_Snapshot, for fixed-numbered statistics.
264 : : */
265 : : uint32 snapshot_ctl_off;
266 : :
267 : : /*
268 : : * The offset of the statistics struct in the containing shared memory
269 : : * control structure PgStat_ShmemControl, for fixed-numbered statistics.
270 : : */
271 : : uint32 shared_ctl_off;
272 : :
273 : : /*
274 : : * The offset/size of statistics inside the shared stats entry. Used when
275 : : * [de-]serializing statistics to / from disk respectively. Separate from
276 : : * shared_size because [de-]serialization may not include in-memory state
277 : : * like lwlocks.
278 : : */
279 : : uint32 shared_data_off;
280 : : uint32 shared_data_len;
281 : :
282 : : /*
283 : : * The size of the pending data for this kind. E.g. how large
284 : : * PgStat_EntryRef->pending is. Used for allocations.
285 : : *
286 : : * 0 signals that an entry of this kind should never have a pending entry.
287 : : */
288 : : uint32 pending_size;
289 : :
290 : : /*
291 : : * Perform custom actions when initializing a backend (standalone or under
292 : : * postmaster). Optional.
293 : : */
294 : : void (*init_backend_cb) (void);
295 : :
296 : : /*
297 : : * For variable-numbered stats: flush pending stats. Required if pending
298 : : * data is used. See flush_static_cb when dealing with stats data that
299 : : * that cannot use PgStat_EntryRef->pending.
300 : : */
301 : : bool (*flush_pending_cb) (PgStat_EntryRef *sr, bool nowait);
302 : :
303 : : /*
304 : : * For variable-numbered stats: delete pending stats. Optional.
305 : : */
306 : : void (*delete_pending_cb) (PgStat_EntryRef *sr);
307 : :
308 : : /*
309 : : * For variable-numbered stats: reset the reset timestamp. Optional.
310 : : */
311 : : void (*reset_timestamp_cb) (PgStatShared_Common *header, TimestampTz ts);
312 : :
313 : : /*
314 : : * For variable-numbered stats. Optional.
315 : : */
316 : : void (*to_serialized_name) (const PgStat_HashKey *key,
317 : : const PgStatShared_Common *header, NameData *name);
318 : : bool (*from_serialized_name) (const NameData *name, PgStat_HashKey *key);
319 : :
320 : : /*
321 : : * For variable-numbered stats: read or write additional data related to
322 : : * an entry, in the stats file or optionally in a different file.
323 : : * Optional.
324 : : *
325 : : * to_serialized_data: write auxiliary data for an entry. Returns true on
326 : : * success, false on write error.
327 : : *
328 : : * from_serialized_data: read auxiliary data for an entry. Returns true
329 : : * on success, false on read error.
330 : : *
331 : : * "statfile" is a pointer to the on-disk stats file, named
332 : : * PGSTAT_STAT_PERMANENT_FILENAME. "key" is the hash key of the entry
333 : : * just written or read. "header" is a pointer to the stats data; it may
334 : : * be modified only in from_serialized_data to reconstruct an entry.
335 : : */
336 : : bool (*to_serialized_data) (const PgStat_HashKey *key,
337 : : const PgStatShared_Common *header,
338 : : FILE *statfile);
339 : : bool (*from_serialized_data) (const PgStat_HashKey *key,
340 : : PgStatShared_Common *header,
341 : : FILE *statfile);
342 : :
343 : : /*
344 : : * For fixed-numbered or variable-numbered statistics.
345 : : *
346 : : * Perform custom actions when done processing the on-disk stats file
347 : : * after all the stats entries have been processed. Optional.
348 : : *
349 : : * "status" tracks the operation done for the on-disk stats file (read,
350 : : * write, discard).
351 : : */
352 : : void (*finish) (PgStat_StatsFileOp status);
353 : :
354 : : /*
355 : : * For fixed-numbered statistics: Initialize shared memory state.
356 : : *
357 : : * "stats" is the pointer to the allocated shared memory area.
358 : : */
359 : : void (*init_shmem_cb) (void *stats);
360 : :
361 : : /*
362 : : * For fixed-numbered or variable-numbered statistics: Flush pending stats
363 : : * entries, for stats kinds that do not use PgStat_EntryRef->pending.
364 : : *
365 : : * Returns true if some of the stats could not be flushed, due to lock
366 : : * contention for example. Optional.
367 : : *
368 : : * "pgstat_report_fixed" needs to be set to trigger the flush of pending
369 : : * stats.
370 : : */
371 : : bool (*flush_static_cb) (bool nowait);
372 : :
373 : : /*
374 : : * For fixed-numbered statistics: Reset All.
375 : : */
376 : : void (*reset_all_cb) (TimestampTz ts);
377 : :
378 : : /*
379 : : * For fixed-numbered statistics: Build snapshot for entry
380 : : */
381 : : void (*snapshot_cb) (void);
382 : :
383 : : /* name of the kind of stats */
384 : : const char *const name;
385 : : } PgStat_KindInfo;
386 : :
387 : :
388 : : /*
389 : : * List of SLRU names that we keep stats for. There is no central registry of
390 : : * SLRUs, so we use this fixed list instead. The "other" entry is used for
391 : : * all SLRUs without an explicit entry (e.g. SLRUs in extensions).
392 : : *
393 : : * This is only defined here so that SLRU_NUM_ELEMENTS is known for later type
394 : : * definitions.
395 : : */
396 : : static const char *const slru_names[] = {
397 : : "commit_timestamp",
398 : : "multixact_member",
399 : : "multixact_offset",
400 : : "notify",
401 : : "serializable",
402 : : "subtransaction",
403 : : "transaction",
404 : : "other" /* has to be last */
405 : : };
406 : :
407 : : #define SLRU_NUM_ELEMENTS lengthof(slru_names)
408 : :
409 : :
410 : : /* ----------
411 : : * Types and definitions for different kinds of fixed-amount stats.
412 : : *
413 : : * Single-writer stats use the changecount mechanism to achieve low-overhead
414 : : * writes - they're obviously more performance critical than reads. Check the
415 : : * definition of struct PgBackendStatus for some explanation of the
416 : : * changecount mechanism.
417 : : *
418 : : * Because the obvious implementation of resetting single-writer stats isn't
419 : : * compatible with that (another backend needs to write), we don't scribble on
420 : : * shared stats while resetting. Instead, just record the current counter
421 : : * values in a copy of the stats data, which is protected by ->lock. See
422 : : * pgstat_fetch_stat_(archiver|bgwriter|checkpointer) for the reader side.
423 : : *
424 : : * The only exception to that is the stat_reset_timestamp in these structs,
425 : : * which is protected by ->lock, because it has to be written by another
426 : : * backend while resetting.
427 : : * ----------
428 : : */
429 : :
430 : : typedef struct PgStatShared_Archiver
431 : : {
432 : : /* lock protects ->reset_offset as well as stats->stat_reset_timestamp */
433 : : LWLock lock;
434 : : uint32 changecount;
435 : : PgStat_ArchiverStats stats;
436 : : PgStat_ArchiverStats reset_offset;
437 : : } PgStatShared_Archiver;
438 : :
439 : : typedef struct PgStatShared_BgWriter
440 : : {
441 : : /* lock protects ->reset_offset as well as stats->stat_reset_timestamp */
442 : : LWLock lock;
443 : : uint32 changecount;
444 : : PgStat_BgWriterStats stats;
445 : : PgStat_BgWriterStats reset_offset;
446 : : } PgStatShared_BgWriter;
447 : :
448 : : typedef struct PgStatShared_Checkpointer
449 : : {
450 : : /* lock protects ->reset_offset as well as stats->stat_reset_timestamp */
451 : : LWLock lock;
452 : : uint32 changecount;
453 : : PgStat_CheckpointerStats stats;
454 : : PgStat_CheckpointerStats reset_offset;
455 : : } PgStatShared_Checkpointer;
456 : :
457 : : /* Shared-memory ready PgStat_IO */
458 : : typedef struct PgStatShared_IO
459 : : {
460 : : /*
461 : : * locks[i] protects stats.stats[i]. locks[0] also protects
462 : : * stats.stat_reset_timestamp.
463 : : */
464 : : LWLock locks[BACKEND_NUM_TYPES];
465 : : PgStat_IO stats;
466 : : } PgStatShared_IO;
467 : :
468 : : typedef struct PgStatShared_Lock
469 : : {
470 : : /* lock protects ->stats */
471 : : LWLock lock;
472 : : PgStat_Lock stats;
473 : : } PgStatShared_Lock;
474 : :
475 : : typedef struct PgStatShared_SLRU
476 : : {
477 : : /* lock protects ->stats */
478 : : LWLock lock;
479 : : PgStat_SLRUStats stats[SLRU_NUM_ELEMENTS];
480 : : } PgStatShared_SLRU;
481 : :
482 : : typedef struct PgStatShared_Wal
483 : : {
484 : : /* lock protects ->stats */
485 : : LWLock lock;
486 : : PgStat_WalStats stats;
487 : : } PgStatShared_Wal;
488 : :
489 : :
490 : :
491 : : /* ----------
492 : : * Types and definitions for different kinds of variable-amount stats.
493 : : *
494 : : * Each struct has to start with PgStatShared_Common, containing information
495 : : * common across the different types of stats. Kind-specific data follows.
496 : : * ----------
497 : : */
498 : :
499 : : typedef struct PgStatShared_Database
500 : : {
501 : : PgStatShared_Common header;
502 : : PgStat_StatDBEntry stats;
503 : : } PgStatShared_Database;
504 : :
505 : : typedef struct PgStatShared_Relation
506 : : {
507 : : PgStatShared_Common header;
508 : : PgStat_StatTabEntry stats;
509 : : } PgStatShared_Relation;
510 : :
511 : : typedef struct PgStatShared_Index
512 : : {
513 : : PgStatShared_Common header;
514 : : PgStat_StatIdxEntry stats;
515 : : } PgStatShared_Index;
516 : :
517 : : typedef struct PgStatShared_Function
518 : : {
519 : : PgStatShared_Common header;
520 : : PgStat_StatFuncEntry stats;
521 : : } PgStatShared_Function;
522 : :
523 : : typedef struct PgStatShared_Subscription
524 : : {
525 : : PgStatShared_Common header;
526 : : PgStat_StatSubEntry stats;
527 : : } PgStatShared_Subscription;
528 : :
529 : : typedef struct PgStatShared_ReplSlot
530 : : {
531 : : PgStatShared_Common header;
532 : : PgStat_StatReplSlotEntry stats;
533 : : } PgStatShared_ReplSlot;
534 : :
535 : : typedef struct PgStatShared_Backend
536 : : {
537 : : PgStatShared_Common header;
538 : : PgStat_Backend stats;
539 : : } PgStatShared_Backend;
540 : :
541 : : /*
542 : : * Central shared memory entry for the cumulative stats system.
543 : : *
544 : : * Fixed amount stats, the dynamic shared memory hash table for
545 : : * non-fixed-amount stats, as well as remaining bits and pieces are all
546 : : * reached from here.
547 : : */
548 : : typedef struct PgStat_ShmemControl
549 : : {
550 : : void *raw_dsa_area;
551 : :
552 : : /*
553 : : * Stats for variable-numbered objects are kept in this shared hash table.
554 : : * See comment above PgStat_Kind for details.
555 : : */
556 : : dshash_table_handle hash_handle; /* shared dbstat hash */
557 : :
558 : : /* Has the stats system already been shut down? Just a debugging check. */
559 : : bool is_shutdown;
560 : :
561 : : /*
562 : : * Whenever statistics for dropped objects could not be freed - because
563 : : * backends still have references - the dropping backend calls
564 : : * pgstat_request_entry_refs_gc() incrementing this counter. Eventually
565 : : * that causes backends to run pgstat_gc_entry_refs(), allowing memory to
566 : : * be reclaimed.
567 : : */
568 : : pg_atomic_uint64 gc_request_count;
569 : :
570 : : /*
571 : : * Counters for the number of entries associated to a single stats kind
572 : : * that uses variable-numbered objects stored in the shared hash table.
573 : : * These counters can be enabled on a per-kind basis, when
574 : : * track_entry_count is set. This counter is incremented each time a new
575 : : * entry is created (not reused) in the shared hash table, and is
576 : : * decremented each time an entry is freed from the shared hash table.
577 : : */
578 : : pg_atomic_uint64 entry_counts[PGSTAT_KIND_MAX];
579 : :
580 : : /*
581 : : * Stats data for fixed-numbered objects.
582 : : */
583 : : PgStatShared_Archiver archiver;
584 : : PgStatShared_BgWriter bgwriter;
585 : : PgStatShared_Checkpointer checkpointer;
586 : : PgStatShared_IO io;
587 : : PgStatShared_Lock lock;
588 : : PgStatShared_SLRU slru;
589 : : PgStatShared_Wal wal;
590 : :
591 : : /*
592 : : * Custom stats data with fixed-numbered objects, indexed by (PgStat_Kind
593 : : * - PGSTAT_KIND_CUSTOM_MIN).
594 : : */
595 : : void *custom_data[PGSTAT_KIND_CUSTOM_SIZE];
596 : :
597 : : } PgStat_ShmemControl;
598 : :
599 : :
600 : : /*
601 : : * Cached statistics snapshot
602 : : */
603 : : typedef struct PgStat_Snapshot
604 : : {
605 : : PgStat_FetchConsistency mode;
606 : :
607 : : /* time at which snapshot was taken */
608 : : TimestampTz snapshot_timestamp;
609 : :
610 : : bool fixed_valid[PGSTAT_KIND_BUILTIN_SIZE];
611 : :
612 : : PgStat_ArchiverStats archiver;
613 : :
614 : : PgStat_BgWriterStats bgwriter;
615 : :
616 : : PgStat_CheckpointerStats checkpointer;
617 : :
618 : : PgStat_IO io;
619 : :
620 : : PgStat_Lock lock;
621 : :
622 : : PgStat_SLRUStats slru[SLRU_NUM_ELEMENTS];
623 : :
624 : : PgStat_WalStats wal;
625 : :
626 : : /*
627 : : * Data in snapshot for custom fixed-numbered statistics, indexed by
628 : : * (PgStat_Kind - PGSTAT_KIND_CUSTOM_MIN). Each entry is allocated in
629 : : * TopMemoryContext, for a size of PgStat_KindInfo->shared_data_len.
630 : : */
631 : : bool custom_valid[PGSTAT_KIND_CUSTOM_SIZE];
632 : : void *custom_data[PGSTAT_KIND_CUSTOM_SIZE];
633 : :
634 : : /* to free snapshot in bulk */
635 : : MemoryContext context;
636 : : struct pgstat_snapshot_hash *stats;
637 : : } PgStat_Snapshot;
638 : :
639 : :
640 : : /*
641 : : * Collection of backend-local stats state.
642 : : */
643 : : typedef struct PgStat_LocalState
644 : : {
645 : : PgStat_ShmemControl *shmem;
646 : : dsa_area *dsa;
647 : : dshash_table *shared_hash;
648 : :
649 : : /* the current statistics snapshot */
650 : : PgStat_Snapshot snapshot;
651 : : } PgStat_LocalState;
652 : :
653 : :
654 : : /*
655 : : * Inline functions defined further below.
656 : : */
657 : :
658 : : static inline void pgstat_begin_changecount_write(uint32 *cc);
659 : : static inline void pgstat_end_changecount_write(uint32 *cc);
660 : : static inline uint32 pgstat_begin_changecount_read(uint32 *cc);
661 : : static inline bool pgstat_end_changecount_read(uint32 *cc, uint32 cc_before);
662 : :
663 : : static inline void pgstat_copy_changecounted_stats(void *dst, void *src, size_t len,
664 : : uint32 *cc);
665 : :
666 : : static inline int pgstat_cmp_hash_key(const void *a, const void *b, size_t size, void *arg);
667 : : static inline uint32 pgstat_hash_hash_key(const void *d, size_t size, void *arg);
668 : : static inline size_t pgstat_get_entry_len(PgStat_Kind kind);
669 : : static inline void *pgstat_get_entry_data(PgStat_Kind kind, PgStatShared_Common *entry);
670 : : static inline void *pgstat_get_custom_shmem_data(PgStat_Kind kind);
671 : : static inline void *pgstat_get_custom_snapshot_data(PgStat_Kind kind);
672 : :
673 : :
674 : : /*
675 : : * Functions in pgstat.c
676 : : */
677 : :
678 : : extern const PgStat_KindInfo *pgstat_get_kind_info(PgStat_Kind kind);
679 : : extern void pgstat_register_kind(PgStat_Kind kind,
680 : : const PgStat_KindInfo *kind_info);
681 : :
682 : : #ifdef USE_ASSERT_CHECKING
683 : : extern void pgstat_assert_is_up(void);
684 : : #else
685 : : #define pgstat_assert_is_up() ((void)true)
686 : : #endif
687 : :
688 : : extern void pgstat_delete_pending_entry(PgStat_EntryRef *entry_ref);
689 : : extern void pgstat_prep_pending_from_entry_ref(PgStat_EntryRef *entry_ref);
690 : : extern PgStat_EntryRef *pgstat_prep_pending_entry(PgStat_Kind kind, Oid dboid,
691 : : uint64 objid,
692 : : bool *created_entry);
693 : : extern PgStat_EntryRef *pgstat_fetch_pending_entry(PgStat_Kind kind,
694 : : Oid dboid, uint64 objid);
695 : :
696 : : extern void *pgstat_fetch_entry(PgStat_Kind kind, Oid dboid, uint64 objid,
697 : : bool *may_free);
698 : : extern void pgstat_snapshot_fixed(PgStat_Kind kind);
699 : :
700 : :
701 : : /*
702 : : * Functions in pgstat_archiver.c
703 : : */
704 : :
705 : : extern void pgstat_archiver_init_shmem_cb(void *stats);
706 : : extern void pgstat_archiver_reset_all_cb(TimestampTz ts);
707 : : extern void pgstat_archiver_snapshot_cb(void);
708 : :
709 : : /*
710 : : * Functions in pgstat_backend.c
711 : : */
712 : :
713 : : /* flags for pgstat_flush_backend() */
714 : : #define PGSTAT_BACKEND_FLUSH_IO (1 << 0) /* Flush I/O statistics */
715 : : #define PGSTAT_BACKEND_FLUSH_WAL (1 << 1) /* Flush WAL statistics */
716 : : #define PGSTAT_BACKEND_FLUSH_LOCK (1 << 2) /* Flush lock statistics */
717 : : #define PGSTAT_BACKEND_FLUSH_ALL (PGSTAT_BACKEND_FLUSH_IO | PGSTAT_BACKEND_FLUSH_WAL | PGSTAT_BACKEND_FLUSH_LOCK)
718 : :
719 : : extern bool pgstat_flush_backend(bool nowait, uint32 flags);
720 : : extern bool pgstat_backend_flush_cb(bool nowait);
721 : : extern void pgstat_backend_reset_timestamp_cb(PgStatShared_Common *header,
722 : : TimestampTz ts);
723 : :
724 : : /*
725 : : * Functions in pgstat_bgwriter.c
726 : : */
727 : :
728 : : extern void pgstat_bgwriter_init_shmem_cb(void *stats);
729 : : extern void pgstat_bgwriter_reset_all_cb(TimestampTz ts);
730 : : extern void pgstat_bgwriter_snapshot_cb(void);
731 : :
732 : :
733 : : /*
734 : : * Functions in pgstat_checkpointer.c
735 : : */
736 : :
737 : : extern void pgstat_checkpointer_init_shmem_cb(void *stats);
738 : : extern void pgstat_checkpointer_reset_all_cb(TimestampTz ts);
739 : : extern void pgstat_checkpointer_snapshot_cb(void);
740 : :
741 : :
742 : : /*
743 : : * Functions in pgstat_database.c
744 : : */
745 : :
746 : : extern void pgstat_report_disconnect(Oid dboid);
747 : : extern void pgstat_update_dbstats(TimestampTz ts);
748 : : extern void AtEOXact_PgStat_Database(bool isCommit, bool parallel);
749 : :
750 : : extern PgStat_StatDBEntry *pgstat_prep_database_pending(Oid dboid);
751 : : extern void pgstat_reset_database_timestamp(Oid dboid, TimestampTz ts);
752 : : extern bool pgstat_database_flush_cb(PgStat_EntryRef *entry_ref, bool nowait);
753 : : extern void pgstat_database_reset_timestamp_cb(PgStatShared_Common *header, TimestampTz ts);
754 : :
755 : :
756 : : /*
757 : : * Functions in pgstat_function.c
758 : : */
759 : :
760 : : extern bool pgstat_function_flush_cb(PgStat_EntryRef *entry_ref, bool nowait);
761 : : extern void pgstat_function_reset_timestamp_cb(PgStatShared_Common *header, TimestampTz ts);
762 : :
763 : :
764 : : /*
765 : : * Functions in pgstat_io.c
766 : : */
767 : :
768 : : extern void pgstat_flush_io(bool nowait);
769 : :
770 : : extern bool pgstat_io_flush_cb(bool nowait);
771 : : extern void pgstat_io_init_shmem_cb(void *stats);
772 : : extern void pgstat_io_reset_all_cb(TimestampTz ts);
773 : : extern void pgstat_io_snapshot_cb(void);
774 : :
775 : : /*
776 : : * Functions in pgstat_lock.c
777 : : */
778 : :
779 : : extern bool pgstat_lock_flush_cb(bool nowait);
780 : : extern void pgstat_lock_init_shmem_cb(void *stats);
781 : : extern void pgstat_lock_reset_all_cb(TimestampTz ts);
782 : : extern void pgstat_lock_snapshot_cb(void);
783 : :
784 : : /*
785 : : * Functions in pgstat_relation.c
786 : : */
787 : :
788 : : extern void AtEOXact_PgStat_Relations(PgStat_SubXactStatus *xact_state, bool isCommit);
789 : : extern void AtEOSubXact_PgStat_Relations(PgStat_SubXactStatus *xact_state, bool isCommit, int nestDepth);
790 : : extern void AtPrepare_PgStat_Relations(PgStat_SubXactStatus *xact_state);
791 : : extern void PostPrepare_PgStat_Relations(PgStat_SubXactStatus *xact_state);
792 : :
793 : : extern bool pgstat_relation_flush_cb(PgStat_EntryRef *entry_ref, bool nowait);
794 : : extern void pgstat_relation_delete_pending_cb(PgStat_EntryRef *entry_ref);
795 : : extern void pgstat_relation_reset_timestamp_cb(PgStatShared_Common *header, TimestampTz ts);
796 : :
797 : :
798 : : /*
799 : : * Functions in pgstat_index.c
800 : : */
801 : :
802 : : extern bool pgstat_index_flush_cb(PgStat_EntryRef *entry_ref, bool nowait);
803 : : extern void pgstat_index_delete_pending_cb(PgStat_EntryRef *entry_ref);
804 : : extern void pgstat_index_reset_timestamp_cb(PgStatShared_Common *header, TimestampTz ts);
805 : :
806 : :
807 : : /*
808 : : * Functions in pgstat_replslot.c
809 : : */
810 : :
811 : : extern void pgstat_replslot_reset_timestamp_cb(PgStatShared_Common *header, TimestampTz ts);
812 : : extern void pgstat_replslot_to_serialized_name_cb(const PgStat_HashKey *key, const PgStatShared_Common *header, NameData *name);
813 : : extern bool pgstat_replslot_from_serialized_name_cb(const NameData *name, PgStat_HashKey *key);
814 : :
815 : :
816 : : /*
817 : : * Functions in pgstat_shmem.c
818 : : */
819 : :
820 : : extern void pgstat_attach_shmem(void);
821 : : extern void pgstat_detach_shmem(void);
822 : :
823 : : extern PgStat_EntryRef *pgstat_get_entry_ref(PgStat_Kind kind, Oid dboid, uint64 objid,
824 : : bool create, bool *created_entry);
825 : : extern bool pgstat_lock_entry(PgStat_EntryRef *entry_ref, bool nowait);
826 : : extern bool pgstat_lock_entry_shared(PgStat_EntryRef *entry_ref, bool nowait);
827 : : extern void pgstat_unlock_entry(PgStat_EntryRef *entry_ref);
828 : : extern bool pgstat_drop_entry(PgStat_Kind kind, Oid dboid, uint64 objid,
829 : : bool missing_ok);
830 : : extern void pgstat_drop_all_entries(void);
831 : : extern void pgstat_drop_matching_entries(bool (*do_drop) (PgStatShared_HashEntry *, Datum),
832 : : Datum match_data);
833 : : extern PgStat_EntryRef *pgstat_get_entry_ref_locked(PgStat_Kind kind, Oid dboid, uint64 objid,
834 : : bool nowait);
835 : : extern void pgstat_reset_entry(PgStat_Kind kind, Oid dboid, uint64 objid, TimestampTz ts);
836 : : extern void pgstat_reset_entries_of_kind(PgStat_Kind kind, TimestampTz ts);
837 : : extern void pgstat_reset_matching_entries(bool (*do_reset) (PgStatShared_HashEntry *, Datum),
838 : : Datum match_data,
839 : : TimestampTz ts);
840 : :
841 : : extern void pgstat_request_entry_refs_gc(void);
842 : : extern PgStatShared_Common *pgstat_init_entry(PgStat_Kind kind,
843 : : PgStatShared_HashEntry *shhashent);
844 : :
845 : :
846 : : /*
847 : : * Functions in pgstat_slru.c
848 : : */
849 : :
850 : : extern bool pgstat_slru_flush_cb(bool nowait);
851 : : extern void pgstat_slru_init_shmem_cb(void *stats);
852 : : extern void pgstat_slru_reset_all_cb(TimestampTz ts);
853 : : extern void pgstat_slru_snapshot_cb(void);
854 : :
855 : :
856 : : /*
857 : : * Functions in pgstat_wal.c
858 : : */
859 : :
860 : : extern void pgstat_wal_init_backend_cb(void);
861 : : extern bool pgstat_wal_flush_cb(bool nowait);
862 : : extern void pgstat_wal_init_shmem_cb(void *stats);
863 : : extern void pgstat_wal_reset_all_cb(TimestampTz ts);
864 : : extern void pgstat_wal_snapshot_cb(void);
865 : :
866 : :
867 : : /*
868 : : * Functions in pgstat_subscription.c
869 : : */
870 : :
871 : : extern bool pgstat_subscription_flush_cb(PgStat_EntryRef *entry_ref, bool nowait);
872 : : extern void pgstat_subscription_reset_timestamp_cb(PgStatShared_Common *header, TimestampTz ts);
873 : :
874 : :
875 : : /*
876 : : * Functions in pgstat_xact.c
877 : : */
878 : :
879 : : extern PgStat_SubXactStatus *pgstat_get_xact_stack_level(int nest_level);
880 : : extern void pgstat_drop_transactional(PgStat_Kind kind, Oid dboid, uint64 objid);
881 : : extern void pgstat_create_transactional(PgStat_Kind kind, Oid dboid, uint64 objid);
882 : :
883 : :
884 : : /*
885 : : * Variables in pgstat.c
886 : : */
887 : :
888 : : /*
889 : : * Track if *any* pending fixed-numbered statistics should be flushed to
890 : : * shared memory.
891 : : *
892 : : * This flag can be switched to true by fixed-numbered statistics to let
893 : : * pgstat_report_stat() know if it needs to go through one round of
894 : : * reports, calling flush_static_cb for each fixed-numbered statistics
895 : : * kind. When this flag is not set, pgstat_report_stat() is able to do
896 : : * a fast exit, knowing that there are no pending fixed-numbered statistics.
897 : : *
898 : : * Statistics callbacks should never reset this flag; pgstat_report_stat()
899 : : * is in charge of doing that.
900 : : */
901 : : extern PGDLLIMPORT bool pgstat_report_fixed;
902 : :
903 : : /* Backend-local stats state */
904 : : extern PGDLLIMPORT PgStat_LocalState pgStatLocal;
905 : :
906 : :
907 : : /*
908 : : * Implementation of inline functions declared above.
909 : : */
910 : :
911 : : /*
912 : : * Helpers for changecount manipulation. See comments around struct
913 : : * PgBackendStatus for details.
914 : : */
915 : :
916 : : static inline void
917 : 14654 : pgstat_begin_changecount_write(uint32 *cc)
918 : : {
919 : : Assert((*cc & 1) == 0);
920 : :
921 : 14654 : START_CRIT_SECTION();
922 : 14654 : (*cc)++;
923 : 14654 : pg_write_barrier();
924 : 14654 : }
925 : :
926 : : static inline void
927 : 14654 : pgstat_end_changecount_write(uint32 *cc)
928 : : {
929 : : Assert((*cc & 1) == 1);
930 : :
931 : 14654 : pg_write_barrier();
932 : :
933 : 14654 : (*cc)++;
934 : :
935 : 14654 : END_CRIT_SECTION();
936 : 14654 : }
937 : :
938 : : static inline uint32
939 : 3262 : pgstat_begin_changecount_read(uint32 *cc)
940 : : {
941 : 3262 : uint32 before_cc = *cc;
942 : :
943 [ - + ]: 3262 : CHECK_FOR_INTERRUPTS();
944 : :
945 : 3262 : pg_read_barrier();
946 : :
947 : 3262 : return before_cc;
948 : : }
949 : :
950 : : /*
951 : : * Returns true if the read succeeded, false if it needs to be repeated.
952 : : */
953 : : static inline bool
954 : 3262 : pgstat_end_changecount_read(uint32 *cc, uint32 before_cc)
955 : : {
956 : : uint32 after_cc;
957 : :
958 : 3262 : pg_read_barrier();
959 : :
960 : 3262 : after_cc = *cc;
961 : :
962 : : /* was a write in progress when we started? */
963 [ - + ]: 3262 : if (before_cc & 1)
964 : 0 : return false;
965 : :
966 : : /* did writes start and complete while we read? */
967 : 3262 : return before_cc == after_cc;
968 : : }
969 : :
970 : :
971 : : /*
972 : : * helper function for PgStat_KindInfo->snapshot_cb
973 : : * PgStat_KindInfo->reset_all_cb callbacks.
974 : : *
975 : : * Copies out the specified memory area following change-count protocol.
976 : : */
977 : : static inline void
978 : 3262 : pgstat_copy_changecounted_stats(void *dst, void *src, size_t len,
979 : : uint32 *cc)
980 : : {
981 : : uint32 cc_before;
982 : :
983 : : do
984 : : {
985 : 3262 : cc_before = pgstat_begin_changecount_read(cc);
986 : :
987 : 3262 : memcpy(dst, src, len);
988 : : }
989 [ - + ]: 3262 : while (!pgstat_end_changecount_read(cc, cc_before));
990 : 3262 : }
991 : :
992 : : /* helpers for dshash / simplehash hashtables */
993 : : static inline int
994 : 8151908 : pgstat_cmp_hash_key(const void *a, const void *b, size_t size, void *arg)
995 : : {
996 : : Assert(size == sizeof(PgStat_HashKey) && arg == NULL);
997 : 8151908 : return memcmp(a, b, sizeof(PgStat_HashKey));
998 : : }
999 : :
1000 : : static inline uint32
1001 : 9805065 : pgstat_hash_hash_key(const void *d, size_t size, void *arg)
1002 : : {
1003 : 9805065 : const char *key = (const char *) d;
1004 : :
1005 : : Assert(size == sizeof(PgStat_HashKey) && arg == NULL);
1006 : 9805065 : return fasthash32(key, size, 0);
1007 : : }
1008 : :
1009 : : /*
1010 : : * The length of the data portion of a shared memory stats entry (i.e. without
1011 : : * transient data such as refcounts, lwlocks, ...).
1012 : : */
1013 : : static inline size_t
1014 : 563810 : pgstat_get_entry_len(PgStat_Kind kind)
1015 : : {
1016 : 563810 : return pgstat_get_kind_info(kind)->shared_data_len;
1017 : : }
1018 : :
1019 : : /*
1020 : : * Returns a pointer to the data portion of a shared memory stats entry.
1021 : : */
1022 : : static inline void *
1023 : 850388 : pgstat_get_entry_data(PgStat_Kind kind, PgStatShared_Common *entry)
1024 : : {
1025 : 850388 : size_t off = pgstat_get_kind_info(kind)->shared_data_off;
1026 : :
1027 : : Assert(off != 0 && off < PG_UINT32_MAX);
1028 : :
1029 : 850388 : return ((char *) (entry)) + off;
1030 : : }
1031 : :
1032 : : /*
1033 : : * Returns the number of entries counted for a stats kind.
1034 : : */
1035 : : static inline uint64
1036 : 1 : pgstat_get_entry_count(PgStat_Kind kind)
1037 : : {
1038 : : Assert(pgstat_get_kind_info(kind)->track_entry_count);
1039 : :
1040 : 1 : return pg_atomic_read_u64(&pgStatLocal.shmem->entry_counts[kind - 1]);
1041 : : }
1042 : :
1043 : : /*
1044 : : * Returns a pointer to the shared memory area of custom stats for
1045 : : * fixed-numbered statistics.
1046 : : */
1047 : : static inline void *
1048 : 12 : pgstat_get_custom_shmem_data(PgStat_Kind kind)
1049 : : {
1050 : 12 : int idx = kind - PGSTAT_KIND_CUSTOM_MIN;
1051 : :
1052 : : Assert(pgstat_is_kind_custom(kind));
1053 : : Assert(pgstat_get_kind_info(kind)->fixed_amount);
1054 : :
1055 : 12 : return pgStatLocal.shmem->custom_data[idx];
1056 : : }
1057 : :
1058 : : /*
1059 : : * Returns a pointer to the portion of custom data for fixed-numbered
1060 : : * statistics in the current snapshot.
1061 : : */
1062 : : static inline void *
1063 : 7 : pgstat_get_custom_snapshot_data(PgStat_Kind kind)
1064 : : {
1065 : 7 : int idx = kind - PGSTAT_KIND_CUSTOM_MIN;
1066 : :
1067 : : Assert(pgstat_is_kind_custom(kind));
1068 : : Assert(pgstat_get_kind_info(kind)->fixed_amount);
1069 : :
1070 : 7 : return pgStatLocal.snapshot.custom_data[idx];
1071 : : }
1072 : :
1073 : : #endif /* PGSTAT_INTERNAL_H */
|