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");
349 struct stat stat_buf;
358 errmsg(
"data directory \"%s\" does not exist",
363 errmsg(
"could not read permissions of directory \"%s\": %m",
370 (
errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
371 errmsg(
"specified data directory \"%s\" is not a directory",
383#if !defined(WIN32) && !defined(__CYGWIN__)
384 if (stat_buf.
st_uid != geteuid())
386 (
errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
387 errmsg(
"data directory \"%s\" has wrong ownership",
389 errhint(
"The server must be started by the user that owns the data directory.")));
403#if !defined(WIN32) && !defined(__CYGWIN__)
406 (
errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
407 errmsg(
"data directory \"%s\" has invalid permissions",
409 errdetail(
"Permissions should be u=rwx (0700) or u=rwx,g=rx (0750).")));
424#if !defined(WIN32) && !defined(__CYGWIN__)
467 errmsg(
"could not change directory to \"%s\": %m",
724 (
errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
725 errmsg(
"cannot set parameter \"%s\" within security-restricted operation",
762 bool bypass_login_check)
778 Assert(bypass_login_check);
798 if (rolename != NULL)
803 (
errcode(ERRCODE_INVALID_AUTHORIZATION_SPECIFICATION),
804 errmsg(
"role \"%s\" does not exist", rolename)));
811 (
errcode(ERRCODE_INVALID_AUTHORIZATION_SPECIFICATION),
812 errmsg(
"role with OID %u does not exist", roleid)));
817 rname =
NameStr(rform->rolname);
855 if (!bypass_login_check && !rform->rolcanlogin)
857 (
errcode(ERRCODE_INVALID_AUTHORIZATION_SPECIFICATION),
858 errmsg(
"role \"%s\" is not permitted to log in",
873 if (rform->rolconnlimit >= 0 &&
878 (
errcode(ERRCODE_TOO_MANY_CONNECTIONS),
879 errmsg(
"too many connections for role \"%s\"",
1049 (
errcode(ERRCODE_UNDEFINED_OBJECT),
1050 errmsg(
"invalid role OID: %u", roleid)));
1113 Assert(maxsize >=
sizeof(serialized));
1114 memcpy(start_address, &serialized,
sizeof(serialized));
1116 maxsize -=
sizeof(serialized);
1117 start_address +=
sizeof(serialized);
1123 memcpy(start_address,
1138 memcpy(&serialized, conninfo,
sizeof(serialized));
1148 authn_id = conninfo +
sizeof(serialized);
1180 char *curfile = (
char *)
lfirst(l);
1197 (
errmsg(
"database system is shut down")));
1210 const char *socketDir,
1211 bool isDDLock,
const char *refName)
1245 my_p_pid = getppid();
1255 envvar = getenv(
"PG_GRANDPARENT_PID");
1257 my_gp_pid = atoi(envvar);
1266 for (ntries = 0;; ntries++)
1281 if ((errno != EEXIST && errno != EACCES) || ntries > 100)
1284 errmsg(
"could not create lock file \"%s\": %m",
1294 if (errno == ENOENT)
1298 errmsg(
"could not open lock file \"%s\": %m",
1302 if ((
len =
read(
fd, buffer,
sizeof(buffer) - 1)) < 0)
1305 errmsg(
"could not read lock file \"%s\": %m",
1313 (
errcode(ERRCODE_LOCK_FILE_EXISTS),
1315 errhint(
"Either another server is starting, or the lock file is the remnant of a previous server startup crash.")));
1319 encoded_pid = atoi(buffer);
1322 other_pid = (pid_t) (encoded_pid < 0 ? -encoded_pid : encoded_pid);
1325 elog(
FATAL,
"bogus data in lock file \"%s\": \"%s\"",
1350 if (other_pid != my_pid && other_pid != my_p_pid &&
1351 other_pid != my_gp_pid)
1353 if (
kill(other_pid, 0) == 0 ||
1354 (errno != ESRCH && errno != EPERM))
1358 (
errcode(ERRCODE_LOCK_FILE_EXISTS),
1359 errmsg(
"lock file \"%s\" already exists",
1363 errhint(
"Is another postgres (PID %d) running in data directory \"%s\"?",
1364 (
int) other_pid, refName) :
1365 errhint(
"Is another postmaster (PID %d) running in data directory \"%s\"?",
1366 (
int) other_pid, refName)) :
1368 errhint(
"Is another postgres (PID %d) using socket file \"%s\"?",
1369 (
int) other_pid, refName) :
1370 errhint(
"Is another postmaster (PID %d) using socket file \"%s\"?",
1371 (
int) other_pid, refName))));
1395 if ((ptr = strchr(ptr,
'\n')) == NULL)
1401 sscanf(ptr,
"%lu %lu", &id1, &id2) == 2)
1405 (
errcode(ERRCODE_LOCK_FILE_EXISTS),
1406 errmsg(
"pre-existing shared memory block (key %lu, ID %lu) is still in use",
1408 errhint(
"Terminate any old server processes associated with data directory \"%s\".",
1421 errmsg(
"could not remove old lock file \"%s\": %m",
1423 errhint(
"The file seems accidentally left over, but "
1424 "it could not be removed. Please remove the file "
1425 "by hand and try again.")));
1435 amPostmaster ? (
int) my_pid : -((
int) my_pid),
1445 if (isDDLock && !amPostmaster)
1446 strlcat(buffer,
"\n",
sizeof(buffer));
1450 if (
write(
fd, buffer, strlen(buffer)) != strlen(buffer))
1452 int save_errno = errno;
1457 errno = save_errno ? save_errno : ENOSPC;
1467 int save_errno = errno;
1479 int save_errno = errno;
1524 const char *socketDir)
1528 snprintf(lockfile,
sizeof(lockfile),
"%s.lock", socketfile);
1529 CreateLockFile(lockfile, amPostmaster, socketDir,
false, socketfile);
1547 char *socketLockFile = (
char *)
lfirst(l);
1554 (void) utime(socketLockFile, NULL);
1577 char srcbuffer[BLCKSZ];
1578 char destbuffer[BLCKSZ];
1585 errmsg(
"could not open file \"%s\": %m",
1590 len =
read(
fd, srcbuffer,
sizeof(srcbuffer) - 1);
1596 errmsg(
"could not read from file \"%s\": %m",
1601 srcbuffer[
len] =
'\0';
1608 for (lineno = 1; lineno < target_line; lineno++)
1610 char *eol = strchr(srcptr,
'\n');
1616 memcpy(destbuffer, srcbuffer, srcptr - srcbuffer);
1617 destptr = destbuffer + (srcptr - srcbuffer);
1623 for (; lineno < target_line; lineno++)
1625 if (destptr < destbuffer +
sizeof(destbuffer))
1632 snprintf(destptr, destbuffer +
sizeof(destbuffer) - destptr,
"%s\n",
str);
1633 destptr += strlen(destptr);
1638 if ((srcptr = strchr(srcptr,
'\n')) != NULL)
1641 snprintf(destptr, destbuffer +
sizeof(destbuffer) - destptr,
"%s",
1649 len = strlen(destbuffer);
1660 errmsg(
"could not write to file \"%s\": %m",
1671 errmsg(
"could not write to file \"%s\": %m",
1679 errmsg(
"could not write to file \"%s\": %m",
1702 char buffer[BLCKSZ];
1719 errmsg(
"could not open file \"%s\": %m",
1726 errmsg(
"could not open file \"%s\": %m; continuing anyway",
1732 len =
read(
fd, buffer,
sizeof(buffer) - 1);
1738 errmsg(
"could not read from file \"%s\": %m",
1745 file_pid = atol(buffer);
1746 if (file_pid == getpid())
1751 (
errmsg(
"lock file \"%s\" contains wrong PID: %ld instead of %ld",
1777 char file_version_string[64];
1778 const char *my_version_string = PG_VERSION;
1780 my_major = strtol(my_version_string, &endptr, 10);
1782 snprintf(full_path,
sizeof(full_path),
"%s/PG_VERSION", path);
1787 if (errno == ENOENT)
1789 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
1790 errmsg(
"\"%s\" is not a valid data directory",
1792 errdetail(
"File \"%s\" is missing.", full_path)));
1796 errmsg(
"could not open file \"%s\": %m", full_path)));
1799 file_version_string[0] =
'\0';
1800 ret = fscanf(file,
"%63s", file_version_string);
1801 file_major = strtol(file_version_string, &endptr, 10);
1803 if (ret != 1 || endptr == file_version_string)
1805 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
1806 errmsg(
"\"%s\" is not a valid data directory",
1808 errdetail(
"File \"%s\" does not contain valid data.",
1810 errhint(
"You might need to initdb.")));
1814 if (my_major != file_major)
1816 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
1817 errmsg(
"database files are incompatible with server"),
1818 errdetail(
"The data directory was initialized by PostgreSQL version %s, "
1819 "which is not compatible with this version %s.",
1820 file_version_string, my_version_string)));
1856 if (libraries == NULL || libraries[0] ==
'\0')
1860 rawstring =
pstrdup(libraries);
1869 (
errcode(ERRCODE_SYNTAX_ERROR),
1870 errmsg(
"invalid list syntax in parameter \"%s\"",
1875 foreach(l, elemlist)
1879 char *expanded = NULL;
1906 "shared_preload_libraries",
1919 "session_preload_libraries",
1922 "local_preload_libraries",
1947 bindtextdomain(domain, locale_path);
1948 pg_bind_textdomain_codeset(domain);
bool InitializingParallelWorker
#define CStringGetTextDatum(s)
#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 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)
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)