Age Owner Branch data TLA Line data Source code
1 : : /*-------------------------------------------------------------------------
2 : : * auxprocess.c
3 : : * functions related to auxiliary processes.
4 : : *
5 : : *
6 : : * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
7 : : * Portions Copyright (c) 1994, Regents of the University of California
8 : : *
9 : : * IDENTIFICATION
10 : : * src/backend/postmaster/auxprocess.c
11 : : *-------------------------------------------------------------------------
12 : : */
13 : : #include "postgres.h"
14 : :
15 : : #include <unistd.h>
16 : : #include <signal.h>
17 : :
18 : : #include "miscadmin.h"
19 : : #include "pgstat.h"
20 : : #include "postmaster/auxprocess.h"
21 : : #include "storage/condition_variable.h"
22 : : #include "storage/ipc.h"
23 : : #include "storage/proc.h"
24 : : #include "storage/procsignal.h"
25 : : #include "utils/memutils.h"
26 : : #include "utils/ps_status.h"
27 : : #include "utils/wait_event.h"
28 : :
29 : :
30 : : static void ShutdownAuxiliaryProcess(int code, Datum arg);
31 : :
32 : :
33 : : /*
34 : : * AuxiliaryProcessMainCommon
35 : : *
36 : : * Common initialization code for auxiliary processes, such as the bgwriter,
37 : : * walwriter, walreceiver, and the startup process.
38 : : */
39 : : void
727 heikki.linnakangas@i 40 :CBC 4579 : AuxiliaryProcessMainCommon(void)
41 : : {
1683 andres@anarazel.de 42 [ - + ]: 4579 : Assert(IsUnderPostmaster);
43 : :
44 : : /* Release postmaster's working memory context */
727 heikki.linnakangas@i 45 [ + - ]: 4579 : if (PostmasterContext)
46 : : {
47 : 4579 : MemoryContextDelete(PostmasterContext);
48 : 4579 : PostmasterContext = NULL;
49 : : }
50 : :
1683 andres@anarazel.de 51 : 4579 : init_ps_display(NULL);
52 : :
621 heikki.linnakangas@i 53 [ - + ]: 4579 : Assert(GetProcessingMode() == InitProcessing);
54 : :
1683 andres@anarazel.de 55 : 4579 : IgnoreSystemIndexes = true;
56 : :
57 : : /*
58 : : * As an auxiliary process, we aren't going to do the full InitPostgres
59 : : * pushups, but there are a couple of things that need to get lit up even
60 : : * in an auxiliary process.
61 : : */
62 : :
63 : : /*
64 : : * Create a PGPROC so we can use LWLocks and access shared memory.
65 : : */
66 : 4579 : InitAuxiliaryProcess();
67 : :
68 : 4579 : BaseInit();
69 : :
340 heikki.linnakangas@i 70 : 4579 : ProcSignalInit(NULL, 0);
71 : :
72 : : /*
73 : : * Auxiliary processes don't run transactions, but they may need a
74 : : * resource owner anyway to manage buffer pins acquired outside
75 : : * transactions (and, perhaps, other things in future).
76 : : */
1683 andres@anarazel.de 77 : 4579 : CreateAuxProcessResourceOwner();
78 : :
79 : :
80 : : /* Initialize backend status information */
81 : 4579 : pgstat_beinit();
376 michael@paquier.xyz 82 : 4579 : pgstat_bestart_initial();
83 : 4579 : pgstat_bestart_final();
84 : :
85 : : /* register a before-shutdown callback for LWLock cleanup */
1683 andres@anarazel.de 86 : 4579 : before_shmem_exit(ShutdownAuxiliaryProcess, 0);
87 : :
88 : 4579 : SetProcessingMode(NormalProcessing);
89 : 4579 : }
90 : :
91 : : /*
92 : : * Begin shutdown of an auxiliary process. This is approximately the equivalent
93 : : * of ShutdownPostgres() in postinit.c. We can't run transactions in an
94 : : * auxiliary process, so most of the work of AbortTransaction() is not needed,
95 : : * but we do need to make sure we've released any LWLocks we are holding.
96 : : * (This is only critical during an error exit.)
97 : : */
98 : : static void
99 : 4579 : ShutdownAuxiliaryProcess(int code, Datum arg)
100 : : {
101 : 4579 : LWLockReleaseAll();
102 : 4579 : ConditionVariableCancelSleep();
103 : 4579 : pgstat_report_wait_end();
104 : 4579 : }
|