60#define DIRECTORY_LOCK_FILE "postmaster.pid"
118 _setmode(fileno(stderr), _O_BINARY);
155 sigprocmask(SIG_SETMASK, &
BlockSig, NULL);
165 errmsg_internal(
"could not set postmaster death monitoring pipe to FD_CLOEXEC mode: %m")));
200 sigprocmask(SIG_SETMASK, &
BlockSig, NULL);
206 elog(
FATAL,
"%s: could not locate my own executable path",
265 const char *backendDesc =
gettext_noop(
"unknown process type");
269#define PG_PROCTYPE(bktype, description, main_func, shmem_attach) \
270 case bktype: backendDesc = description; break;
298 struct stat stat_buf;
307 errmsg(
"data directory \"%s\" does not exist",
312 errmsg(
"could not read permissions of directory \"%s\": %m",
319 (
errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
320 errmsg(
"specified data directory \"%s\" is not a directory",
332#if !defined(WIN32) && !defined(__CYGWIN__)
333 if (stat_buf.
st_uid != geteuid())
335 (
errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
336 errmsg(
"data directory \"%s\" has wrong ownership",
338 errhint(
"The server must be started by the user that owns the data directory.")));
352#if !defined(WIN32) && !defined(__CYGWIN__)
355 (
errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
356 errmsg(
"data directory \"%s\" has invalid permissions",
358 errdetail(
"Permissions should be u=rwx (0700) or u=rwx,g=rx (0750).")));
373#if !defined(WIN32) && !defined(__CYGWIN__)
416 errmsg(
"could not change directory to \"%s\": %m",
673 (
errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
674 errmsg(
"cannot set parameter \"%s\" within security-restricted operation",
711 bool bypass_login_check)
727 Assert(bypass_login_check);
747 if (rolename != NULL)
752 (
errcode(ERRCODE_INVALID_AUTHORIZATION_SPECIFICATION),
753 errmsg(
"role \"%s\" does not exist", rolename)));
760 (
errcode(ERRCODE_INVALID_AUTHORIZATION_SPECIFICATION),
761 errmsg(
"role with OID %u does not exist", roleid)));
766 rname =
NameStr(rform->rolname);
804 if (!bypass_login_check && !rform->rolcanlogin)
806 (
errcode(ERRCODE_INVALID_AUTHORIZATION_SPECIFICATION),
807 errmsg(
"role \"%s\" is not permitted to log in",
822 if (rform->rolconnlimit >= 0 &&
827 (
errcode(ERRCODE_TOO_MANY_CONNECTIONS),
828 errmsg(
"too many connections for role \"%s\"",
998 (
errcode(ERRCODE_UNDEFINED_OBJECT),
999 errmsg(
"invalid role OID: %u", roleid)));
1052 char *start_address)
1063 Assert(maxsize >=
sizeof(serialized));
1064 memcpy(start_address, &serialized,
sizeof(serialized));
1066 maxsize -=
sizeof(serialized);
1067 start_address +=
sizeof(serialized);
1073 memcpy(start_address,
1088 memcpy(&serialized, conninfo,
sizeof(serialized));
1098 authn_id = conninfo +
sizeof(serialized);
1130 char *curfile = (
char *)
lfirst(l);
1146 (
errmsg(
"database system is shut down")));
1159 const char *socketDir,
1160 bool isDDLock,
const char *refName)
1194 my_p_pid = getppid();
1204 envvar = getenv(
"PG_GRANDPARENT_PID");
1206 my_gp_pid = atoi(envvar);
1215 for (ntries = 0;; ntries++)
1230 if ((errno != EEXIST && errno != EACCES) || ntries > 100)
1233 errmsg(
"could not create lock file \"%s\": %m",
1243 if (errno == ENOENT)
1247 errmsg(
"could not open lock file \"%s\": %m",
1251 if ((
len =
read(
fd, buffer,
sizeof(buffer) - 1)) < 0)
1254 errmsg(
"could not read lock file \"%s\": %m",
1262 (
errcode(ERRCODE_LOCK_FILE_EXISTS),
1264 errhint(
"Either another server is starting, or the lock file is the remnant of a previous server startup crash.")));
1268 encoded_pid = atoi(buffer);
1271 other_pid = (pid_t) (encoded_pid < 0 ? -encoded_pid : encoded_pid);
1274 elog(
FATAL,
"bogus data in lock file \"%s\": \"%s\"",
1299 if (other_pid != my_pid && other_pid != my_p_pid &&
1300 other_pid != my_gp_pid)
1302 if (
kill(other_pid, 0) == 0 ||
1303 (errno != ESRCH && errno != EPERM))
1307 (
errcode(ERRCODE_LOCK_FILE_EXISTS),
1308 errmsg(
"lock file \"%s\" already exists",
1312 errhint(
"Is another postgres (PID %d) running in data directory \"%s\"?",
1313 (
int) other_pid, refName) :
1314 errhint(
"Is another postmaster (PID %d) running in data directory \"%s\"?",
1315 (
int) other_pid, refName)) :
1317 errhint(
"Is another postgres (PID %d) using socket file \"%s\"?",
1318 (
int) other_pid, refName) :
1319 errhint(
"Is another postmaster (PID %d) using socket file \"%s\"?",
1320 (
int) other_pid, refName))));
1344 if ((ptr = strchr(ptr,
'\n')) == NULL)
1350 sscanf(ptr,
"%lu %lu", &id1, &id2) == 2)
1354 (
errcode(ERRCODE_LOCK_FILE_EXISTS),
1355 errmsg(
"pre-existing shared memory block (key %lu, ID %lu) is still in use",
1357 errhint(
"Terminate any old server processes associated with data directory \"%s\".",
1370 errmsg(
"could not remove old lock file \"%s\": %m",
1372 errhint(
"The file seems accidentally left over, but "
1373 "it could not be removed. Please remove the file "
1374 "by hand and try again.")));
1384 amPostmaster ? (
int) my_pid : -((
int) my_pid),
1394 if (isDDLock && !amPostmaster)
1395 strlcat(buffer,
"\n",
sizeof(buffer));
1399 if (
write(
fd, buffer, strlen(buffer)) != strlen(buffer))
1401 int save_errno = errno;
1406 errno = save_errno ? save_errno : ENOSPC;
1416 int save_errno = errno;
1428 int save_errno = errno;
1473 const char *socketDir)
1477 snprintf(lockfile,
sizeof(lockfile),
"%s.lock", socketfile);
1478 CreateLockFile(lockfile, amPostmaster, socketDir,
false, socketfile);
1496 char *socketLockFile = (
char *)
lfirst(l);
1503 (void) utime(socketLockFile, NULL);
1526 char srcbuffer[BLCKSZ];
1527 char destbuffer[BLCKSZ];
1534 errmsg(
"could not open file \"%s\": %m",
1539 len =
read(
fd, srcbuffer,
sizeof(srcbuffer) - 1);
1545 errmsg(
"could not read from file \"%s\": %m",
1550 srcbuffer[
len] =
'\0';
1557 for (lineno = 1; lineno < target_line; lineno++)
1559 char *eol = strchr(srcptr,
'\n');
1565 memcpy(destbuffer, srcbuffer, srcptr - srcbuffer);
1566 destptr = destbuffer + (srcptr - srcbuffer);
1572 for (; lineno < target_line; lineno++)
1574 if (destptr < destbuffer +
sizeof(destbuffer))
1581 snprintf(destptr, destbuffer +
sizeof(destbuffer) - destptr,
"%s\n",
str);
1582 destptr += strlen(destptr);
1587 if ((srcptr = strchr(srcptr,
'\n')) != NULL)
1590 snprintf(destptr, destbuffer +
sizeof(destbuffer) - destptr,
"%s",
1598 len = strlen(destbuffer);
1609 errmsg(
"could not write to file \"%s\": %m",
1620 errmsg(
"could not write to file \"%s\": %m",
1628 errmsg(
"could not write to file \"%s\": %m",
1651 char buffer[BLCKSZ];
1668 errmsg(
"could not open file \"%s\": %m",
1675 errmsg(
"could not open file \"%s\": %m; continuing anyway",
1681 len =
read(
fd, buffer,
sizeof(buffer) - 1);
1687 errmsg(
"could not read from file \"%s\": %m",
1694 file_pid = atol(buffer);
1695 if (file_pid == getpid())
1700 (
errmsg(
"lock file \"%s\" contains wrong PID: %ld instead of %ld",
1726 char file_version_string[64];
1727 const char *my_version_string = PG_VERSION;
1729 my_major = strtol(my_version_string, &endptr, 10);
1731 snprintf(full_path,
sizeof(full_path),
"%s/PG_VERSION", path);
1736 if (errno == ENOENT)
1738 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
1739 errmsg(
"\"%s\" is not a valid data directory",
1741 errdetail(
"File \"%s\" is missing.", full_path)));
1745 errmsg(
"could not open file \"%s\": %m", full_path)));
1748 file_version_string[0] =
'\0';
1749 ret = fscanf(file,
"%63s", file_version_string);
1750 file_major = strtol(file_version_string, &endptr, 10);
1752 if (ret != 1 || endptr == file_version_string)
1754 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
1755 errmsg(
"\"%s\" is not a valid data directory",
1757 errdetail(
"File \"%s\" does not contain valid data.",
1759 errhint(
"You might need to initdb.")));
1763 if (my_major != file_major)
1765 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
1766 errmsg(
"database files are incompatible with server"),
1767 errdetail(
"The data directory was initialized by PostgreSQL version %s, "
1768 "which is not compatible with this version %s.",
1769 file_version_string, my_version_string)));
1805 if (libraries == NULL || libraries[0] ==
'\0')
1809 rawstring =
pstrdup(libraries);
1818 (
errcode(ERRCODE_SYNTAX_ERROR),
1819 errmsg(
"invalid list syntax in parameter \"%s\"",
1824 foreach(l, elemlist)
1828 char *expanded = NULL;
1855 "shared_preload_libraries",
1868 "session_preload_libraries",
1871 "local_preload_libraries",
1896 bindtextdomain(domain, locale_path);
1897 pg_bind_textdomain_codeset(domain);
bool InitializingParallelWorker
#define CStringGetTextDatum(s)
#define PG_USED_FOR_ASSERTS_ONLY
#define OidIsValid(objectId)
int find_my_exec(const char *argv0, char *retpath)
void load_file(const char *filename, bool restricted)
int errcode_for_socket_access(void)
int errmsg_internal(const char *fmt,...)
int errcode_for_file_access(void)
int errdetail(const char *fmt,...)
int errhint(const char *fmt,...)
int errcode(int sqlerrcode)
int errmsg(const char *fmt,...)
#define ereport(elevel,...)
FILE * AllocateFile(const char *name, const char *mode)
void SetDataDirectoryCreatePerm(int dataDirMode)
#define PG_MODE_MASK_GROUP
#define PG_RETURN_DATUM(x)
char pkglib_path[MAXPGPATH]
bool IsPostmasterEnvironment
char my_exec_path[MAXPGPATH]
void SetConfigOption(const char *name, const char *value, GucContext context, GucSource source)
Assert(PointerIsAligned(start, uint64))
#define HeapTupleIsValid(tuple)
static void * GETSTRUCT(const HeapTupleData *tuple)
void SignalHandlerForCrashExit(SIGNAL_ARGS)
void AcceptInvalidationMessages(void)
void on_proc_exit(pg_on_exit_callback function, Datum arg)
void InitializeLatchWaitSet(void)
void SetLatch(Latch *latch)
void InitLatch(Latch *latch)
#define FeBeWaitSetLatchPos
List * lcons(void *datum, List *list)
void list_free_deep(List *list)
char * MemoryContextStrdup(MemoryContext context, const char *string)
char * pstrdup(const char *in)
void pfree(void *pointer)
MemoryContext TopMemoryContext
#define IsBootstrapProcessingMode()
#define AmAutoVacuumWorkerProcess()
#define SECURITY_NOFORCE_RLS
#define AmBackgroundWorkerProcess()
#define SECURITY_RESTRICTED_OPERATION
#define AmLogicalSlotSyncWorkerProcess()
#define SECURITY_LOCAL_USERID_CHANGE
#define AmRegularBackendProcess()
void(* shmem_request_hook_type)(void)
struct SerializedClientConnectionInfo SerializedClientConnectionInfo
void ChangeToDataDir(void)
bool process_shared_preload_libraries_done
void process_shmem_requests(void)
void InitializeSessionUserId(const char *rolename, Oid roleid, bool bypass_login_check)
void InitStandaloneProcess(const char *argv0)
void InitializeSystemUser(const char *authn_id, const char *auth_method)
void InitializeSessionUserIdStandalone(void)
void AddToDataDirLockFile(int target_line, const char *str)
void InitProcessLocalLatch(void)
void GetUserIdAndSecContext(Oid *userid, int *sec_context)
void SetSessionAuthorization(Oid userid, bool is_superuser)
void process_session_preload_libraries(void)
static bool SessionUserIsSuperuser
bool process_shmem_requests_in_progress
const char * GetSystemUser(void)
bool InSecurityRestrictedOperation(void)
#define DIRECTORY_LOCK_FILE
static const char * SystemUser
bool GetSessionUserIsSuperuser(void)
const char * GetBackendTypeDesc(BackendType backendType)
static int SecurityRestrictionContext
static void SetOuterUserId(Oid userid, bool is_superuser)
Size EstimateClientConnectionInfoSpace(void)
Oid GetSessionUserId(void)
void SetCurrentRoleId(Oid roleid, bool is_superuser)
Oid GetAuthenticatedUserId(void)
bool InLocalUserIdChange(void)
Datum system_user(PG_FUNCTION_ARGS)
void SetDatabasePath(const char *path)
void InitPostmasterChild(void)
char * shared_preload_libraries_string
ClientConnectionInfo MyClientConnectionInfo
void process_shared_preload_libraries(void)
char * session_preload_libraries_string
static void SetSessionUserId(Oid userid, bool is_superuser)
shmem_request_hook_type shmem_request_hook
char * local_preload_libraries_string
static Latch LocalLatchData
void TouchSocketLockFiles(void)
void RestoreClientConnectionInfo(char *conninfo)
static bool SetRoleIsActive
bool InNoForceRLSOperation(void)
static Oid AuthenticatedUserId
static void load_libraries(const char *libraries, const char *gucname, bool restricted)
void SetAuthenticatedUserId(Oid userid)
Oid GetCurrentRoleId(void)
static void UnlinkLockFiles(int status, Datum arg)
void SwitchToSharedLatch(void)
BackendType MyBackendType
void GetUserIdAndContext(Oid *userid, bool *sec_def_context)
void SetDataDir(const char *dir)
void SetUserIdAndContext(Oid userid, bool sec_def_context)
bool process_shared_preload_libraries_in_progress
void pg_bindtextdomain(const char *domain)
bool has_rolreplication(Oid roleid)
char * GetUserNameFromId(Oid roleid, bool noerr)
static void CreateLockFile(const char *filename, bool amPostmaster, const char *socketDir, bool isDDLock, const char *refName)
void SerializeClientConnectionInfo(Size maxsize PG_USED_FOR_ASSERTS_ONLY, char *start_address)
void ValidatePgVersion(const char *path)
void SetUserIdAndSecContext(Oid userid, int sec_context)
bool RecheckDataDirLockFile(void)
void CreateDataDirLockFile(bool amPostmaster)
void SwitchBackToLocalLatch(void)
void CreateSocketLockFile(const char *socketfile, bool amPostmaster, const char *socketDir)
FormData_pg_authid * Form_pg_authid
static bool is_superuser(Archive *fout)
#define LOCK_FILE_LINE_SHMEM_KEY
void PostmasterDeathSignalInit(void)
void get_pkglib_path(const char *my_exec_path, char *ret_path)
void get_locale_path(const char *my_exec_path, char *ret_path)
char * make_absolute_path(const char *path)
char * first_dir_separator(const char *filename)
size_t strlcat(char *dst, const char *src, size_t siz)
static Datum PointerGetDatum(const void *X)
static Datum ObjectIdGetDatum(Oid X)
void InitProcessGlobals(void)
int postmaster_alive_fds[2]
#define POSTMASTER_FD_WATCH
WaitEventSet * FeBeWaitSet
static int fd(const char *x, int i)
int CountUserBackends(Oid roleid)
char * psprintf(const char *fmt,...)
Size add_size(Size s1, Size s2)
void pgwin32_signal_initialize(void)
bool superuser_arg(Oid roleid)
void ReleaseSysCache(HeapTuple tuple)
HeapTuple SearchSysCache1(int cacheId, Datum key1)
bool PGSharedMemoryIsInUse(unsigned long id1, unsigned long id2)
bool SplitDirectoriesString(char *rawstring, char separator, List **namelist)
static void pgstat_report_wait_start(uint32 wait_event_info)
static void pgstat_report_wait_end(void)
void ModifyWaitEvent(WaitEventSet *set, int pos, uint32 events, Latch *latch)
void InitializeWaitEventSupport(void)