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");
346 struct stat stat_buf;
355 errmsg(
"data directory \"%s\" does not exist",
360 errmsg(
"could not read permissions of directory \"%s\": %m",
367 (
errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
368 errmsg(
"specified data directory \"%s\" is not a directory",
380#if !defined(WIN32) && !defined(__CYGWIN__)
381 if (stat_buf.
st_uid != geteuid())
383 (
errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
384 errmsg(
"data directory \"%s\" has wrong ownership",
386 errhint(
"The server must be started by the user that owns the data directory.")));
400#if !defined(WIN32) && !defined(__CYGWIN__)
403 (
errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
404 errmsg(
"data directory \"%s\" has invalid permissions",
406 errdetail(
"Permissions should be u=rwx (0700) or u=rwx,g=rx (0750).")));
421#if !defined(WIN32) && !defined(__CYGWIN__)
464 errmsg(
"could not change directory to \"%s\": %m",
721 (
errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
722 errmsg(
"cannot set parameter \"%s\" within security-restricted operation",
759 bool bypass_login_check)
775 Assert(bypass_login_check);
795 if (rolename != NULL)
800 (
errcode(ERRCODE_INVALID_AUTHORIZATION_SPECIFICATION),
801 errmsg(
"role \"%s\" does not exist", rolename)));
808 (
errcode(ERRCODE_INVALID_AUTHORIZATION_SPECIFICATION),
809 errmsg(
"role with OID %u does not exist", roleid)));
814 rname =
NameStr(rform->rolname);
852 if (!bypass_login_check && !rform->rolcanlogin)
854 (
errcode(ERRCODE_INVALID_AUTHORIZATION_SPECIFICATION),
855 errmsg(
"role \"%s\" is not permitted to log in",
870 if (rform->rolconnlimit >= 0 &&
875 (
errcode(ERRCODE_TOO_MANY_CONNECTIONS),
876 errmsg(
"too many connections for role \"%s\"",
1046 (
errcode(ERRCODE_UNDEFINED_OBJECT),
1047 errmsg(
"invalid role OID: %u", roleid)));
1110 Assert(maxsize >=
sizeof(serialized));
1111 memcpy(start_address, &serialized,
sizeof(serialized));
1113 maxsize -=
sizeof(serialized);
1114 start_address +=
sizeof(serialized);
1120 memcpy(start_address,
1135 memcpy(&serialized, conninfo,
sizeof(serialized));
1145 authn_id = conninfo +
sizeof(serialized);
1177 char *curfile = (
char *)
lfirst(l);
1194 (
errmsg(
"database system is shut down")));
1207 const char *socketDir,
1208 bool isDDLock,
const char *refName)
1242 my_p_pid = getppid();
1252 envvar = getenv(
"PG_GRANDPARENT_PID");
1254 my_gp_pid = atoi(envvar);
1263 for (ntries = 0;; ntries++)
1278 if ((errno != EEXIST && errno != EACCES) || ntries > 100)
1281 errmsg(
"could not create lock file \"%s\": %m",
1291 if (errno == ENOENT)
1295 errmsg(
"could not open lock file \"%s\": %m",
1299 if ((
len =
read(
fd, buffer,
sizeof(buffer) - 1)) < 0)
1302 errmsg(
"could not read lock file \"%s\": %m",
1310 (
errcode(ERRCODE_LOCK_FILE_EXISTS),
1312 errhint(
"Either another server is starting, or the lock file is the remnant of a previous server startup crash.")));
1316 encoded_pid = atoi(buffer);
1319 other_pid = (pid_t) (encoded_pid < 0 ? -encoded_pid : encoded_pid);
1322 elog(
FATAL,
"bogus data in lock file \"%s\": \"%s\"",
1347 if (other_pid != my_pid && other_pid != my_p_pid &&
1348 other_pid != my_gp_pid)
1350 if (
kill(other_pid, 0) == 0 ||
1351 (errno != ESRCH && errno != EPERM))
1355 (
errcode(ERRCODE_LOCK_FILE_EXISTS),
1356 errmsg(
"lock file \"%s\" already exists",
1360 errhint(
"Is another postgres (PID %d) running in data directory \"%s\"?",
1361 (
int) other_pid, refName) :
1362 errhint(
"Is another postmaster (PID %d) running in data directory \"%s\"?",
1363 (
int) other_pid, refName)) :
1365 errhint(
"Is another postgres (PID %d) using socket file \"%s\"?",
1366 (
int) other_pid, refName) :
1367 errhint(
"Is another postmaster (PID %d) using socket file \"%s\"?",
1368 (
int) other_pid, refName))));
1392 if ((ptr = strchr(ptr,
'\n')) == NULL)
1398 sscanf(ptr,
"%lu %lu", &id1, &id2) == 2)
1402 (
errcode(ERRCODE_LOCK_FILE_EXISTS),
1403 errmsg(
"pre-existing shared memory block (key %lu, ID %lu) is still in use",
1405 errhint(
"Terminate any old server processes associated with data directory \"%s\".",
1418 errmsg(
"could not remove old lock file \"%s\": %m",
1420 errhint(
"The file seems accidentally left over, but "
1421 "it could not be removed. Please remove the file "
1422 "by hand and try again.")));
1432 amPostmaster ? (
int) my_pid : -((
int) my_pid),
1442 if (isDDLock && !amPostmaster)
1443 strlcat(buffer,
"\n",
sizeof(buffer));
1447 if (
write(
fd, buffer, strlen(buffer)) != strlen(buffer))
1449 int save_errno = errno;
1454 errno = save_errno ? save_errno : ENOSPC;
1464 int save_errno = errno;
1476 int save_errno = errno;
1521 const char *socketDir)
1525 snprintf(lockfile,
sizeof(lockfile),
"%s.lock", socketfile);
1526 CreateLockFile(lockfile, amPostmaster, socketDir,
false, socketfile);
1544 char *socketLockFile = (
char *)
lfirst(l);
1551 (void) utime(socketLockFile, NULL);
1574 char srcbuffer[BLCKSZ];
1575 char destbuffer[BLCKSZ];
1582 errmsg(
"could not open file \"%s\": %m",
1587 len =
read(
fd, srcbuffer,
sizeof(srcbuffer) - 1);
1593 errmsg(
"could not read from file \"%s\": %m",
1598 srcbuffer[
len] =
'\0';
1605 for (lineno = 1; lineno < target_line; lineno++)
1607 char *eol = strchr(srcptr,
'\n');
1613 memcpy(destbuffer, srcbuffer, srcptr - srcbuffer);
1614 destptr = destbuffer + (srcptr - srcbuffer);
1620 for (; lineno < target_line; lineno++)
1622 if (destptr < destbuffer +
sizeof(destbuffer))
1629 snprintf(destptr, destbuffer +
sizeof(destbuffer) - destptr,
"%s\n",
str);
1630 destptr += strlen(destptr);
1635 if ((srcptr = strchr(srcptr,
'\n')) != NULL)
1638 snprintf(destptr, destbuffer +
sizeof(destbuffer) - destptr,
"%s",
1646 len = strlen(destbuffer);
1657 errmsg(
"could not write to file \"%s\": %m",
1668 errmsg(
"could not write to file \"%s\": %m",
1676 errmsg(
"could not write to file \"%s\": %m",
1699 char buffer[BLCKSZ];
1716 errmsg(
"could not open file \"%s\": %m",
1723 errmsg(
"could not open file \"%s\": %m; continuing anyway",
1729 len =
read(
fd, buffer,
sizeof(buffer) - 1);
1735 errmsg(
"could not read from file \"%s\": %m",
1742 file_pid = atol(buffer);
1743 if (file_pid == getpid())
1748 (
errmsg(
"lock file \"%s\" contains wrong PID: %ld instead of %ld",
1774 char file_version_string[64];
1775 const char *my_version_string = PG_VERSION;
1777 my_major = strtol(my_version_string, &endptr, 10);
1779 snprintf(full_path,
sizeof(full_path),
"%s/PG_VERSION", path);
1784 if (errno == ENOENT)
1786 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
1787 errmsg(
"\"%s\" is not a valid data directory",
1789 errdetail(
"File \"%s\" is missing.", full_path)));
1793 errmsg(
"could not open file \"%s\": %m", full_path)));
1796 file_version_string[0] =
'\0';
1797 ret = fscanf(file,
"%63s", file_version_string);
1798 file_major = strtol(file_version_string, &endptr, 10);
1800 if (ret != 1 || endptr == file_version_string)
1802 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
1803 errmsg(
"\"%s\" is not a valid data directory",
1805 errdetail(
"File \"%s\" does not contain valid data.",
1807 errhint(
"You might need to initdb.")));
1811 if (my_major != file_major)
1813 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
1814 errmsg(
"database files are incompatible with server"),
1815 errdetail(
"The data directory was initialized by PostgreSQL version %s, "
1816 "which is not compatible with this version %s.",
1817 file_version_string, my_version_string)));
1853 if (libraries == NULL || libraries[0] ==
'\0')
1857 rawstring =
pstrdup(libraries);
1866 (
errcode(ERRCODE_SYNTAX_ERROR),
1867 errmsg(
"invalid list syntax in parameter \"%s\"",
1872 foreach(l, elemlist)
1876 char *expanded = NULL;
1903 "shared_preload_libraries",
1916 "session_preload_libraries",
1919 "local_preload_libraries",
1944 bindtextdomain(domain, locale_path);
1945 pg_bind_textdomain_codeset(domain);
bool InitializingParallelWorker
#define CStringGetTextDatum(s)
#define Assert(condition)
#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)
#define HeapTupleIsValid(tuple)
void SignalHandlerForCrashExit(SIGNAL_ARGS)
void AcceptInvalidationMessages(void)
void on_proc_exit(pg_on_exit_callback function, Datum arg)
void InitializeLatchWaitSet(void)
void InitializeLatchSupport(void)
void ModifyWaitEvent(WaitEventSet *set, int pos, uint32 events, Latch *latch)
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 SerializeClientConnectionInfo(Size maxsize, char *start_address)
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 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)
pqsigfunc pqsignal(int signo, pqsigfunc func)
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)
static pg_noinline void Size size
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)