PostgreSQL Source Code  git master
pg_ctl.c File Reference
#include "postgres_fe.h"
#include <fcntl.h>
#include <signal.h>
#include <time.h>
#include <sys/resource.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <unistd.h>
#include "catalog/pg_control.h"
#include "common/controldata_utils.h"
#include "common/file_perm.h"
#include "common/logging.h"
#include "common/string.h"
#include "getopt_long.h"
#include "utils/pidfile.h"
Include dependency graph for pg_ctl.c:

Go to the source code of this file.

Macros

#define DEFAULT_WAIT   60
 
#define USEC_PER_SEC   1000000
 
#define WAITS_PER_SEC   10 /* should divide USEC_PER_SEC evenly */
 

Enumerations

enum  ShutdownMode { SMART_MODE , FAST_MODE , IMMEDIATE_MODE }
 
enum  WaitPMResult { POSTMASTER_READY , POSTMASTER_STILL_STARTING , POSTMASTER_FAILED }
 
enum  CtlCommand {
  NO_COMMAND = 0 , INIT_COMMAND , START_COMMAND , STOP_COMMAND ,
  RESTART_COMMAND , RELOAD_COMMAND , STATUS_COMMAND , PROMOTE_COMMAND ,
  LOGROTATE_COMMAND , KILL_COMMAND , REGISTER_COMMAND , UNREGISTER_COMMAND ,
  RUN_AS_SERVICE_COMMAND
}
 

Functions

static void write_stderr (const char *fmt,...) pg_attribute_printf(1
 
static void static void do_advice (void)
 
static void do_help (void)
 
static void set_mode (char *modeopt)
 
static void set_sig (char *signame)
 
static void do_init (void)
 
static void do_start (void)
 
static void do_stop (void)
 
static void do_restart (void)
 
static void do_reload (void)
 
static void do_status (void)
 
static void do_promote (void)
 
static void do_logrotate (void)
 
static void do_kill (pid_t pid)
 
static void print_msg (const char *msg)
 
static void adjust_data_dir (void)
 
static pid_t get_pgpid (bool is_status_request)
 
static char ** readfile (const char *path, int *numlines)
 
static void free_readfile (char **optlines)
 
static pid_t start_postmaster (void)
 
static void read_post_opts (void)
 
static WaitPMResult wait_for_postmaster_start (pid_t pm_pid, bool do_checkpoint)
 
static bool wait_for_postmaster_stop (void)
 
static bool wait_for_postmaster_promote (void)
 
static bool postmaster_is_alive (pid_t pid)
 
static void unlimit_core_size (void)
 
static DBState get_control_dbstate (void)
 
static void trap_sigint_during_startup (SIGNAL_ARGS)
 
static char * find_other_exec_or_die (const char *argv0, const char *target, const char *versionstr)
 
int main (int argc, char **argv)
 

Variables

static bool do_wait = true
 
static int wait_seconds = DEFAULT_WAIT
 
static bool wait_seconds_arg = false
 
static bool silent_mode = false
 
static ShutdownMode shutdown_mode = FAST_MODE
 
static int sig = SIGINT
 
static CtlCommand ctl_command = NO_COMMAND
 
static char * pg_data = NULL
 
static char * pg_config = NULL
 
static char * pgdata_opt = NULL
 
static char * post_opts = NULL
 
static const char * progname
 
static char * log_file = NULL
 
static char * exec_path = NULL
 
static char * event_source = NULL
 
static char * register_servicename = "PostgreSQL"
 
static char * register_username = NULL
 
static char * register_password = NULL
 
static char * argv0 = NULL
 
static bool allow_core_files = false
 
static time_t start_time
 
static char postopts_file [MAXPGPATH]
 
static char version_file [MAXPGPATH]
 
static char pid_file [MAXPGPATH]
 
static char backup_file [MAXPGPATH]
 
static char promote_file [MAXPGPATH]
 
static char logrotate_file [MAXPGPATH]
 
static volatile pid_t postmasterPID = -1
 

Macro Definition Documentation

◆ DEFAULT_WAIT

#define DEFAULT_WAIT   60

Definition at line 68 of file pg_ctl.c.

◆ USEC_PER_SEC

#define USEC_PER_SEC   1000000

Definition at line 70 of file pg_ctl.c.

◆ WAITS_PER_SEC

#define WAITS_PER_SEC   10 /* should divide USEC_PER_SEC evenly */

Definition at line 72 of file pg_ctl.c.

Enumeration Type Documentation

◆ CtlCommand

enum CtlCommand
Enumerator
NO_COMMAND 
INIT_COMMAND 
START_COMMAND 
STOP_COMMAND 
RESTART_COMMAND 
RELOAD_COMMAND 
STATUS_COMMAND 
PROMOTE_COMMAND 
LOGROTATE_COMMAND 
KILL_COMMAND 
REGISTER_COMMAND 
UNREGISTER_COMMAND 
RUN_AS_SERVICE_COMMAND 

Definition at line 51 of file pg_ctl.c.

52 {
53  NO_COMMAND = 0,
66 } CtlCommand;
CtlCommand
Definition: pg_ctl.c:52
@ REGISTER_COMMAND
Definition: pg_ctl.c:63
@ RUN_AS_SERVICE_COMMAND
Definition: pg_ctl.c:65
@ LOGROTATE_COMMAND
Definition: pg_ctl.c:61
@ RESTART_COMMAND
Definition: pg_ctl.c:57
@ UNREGISTER_COMMAND
Definition: pg_ctl.c:64
@ START_COMMAND
Definition: pg_ctl.c:55
@ KILL_COMMAND
Definition: pg_ctl.c:62
@ INIT_COMMAND
Definition: pg_ctl.c:54
@ STOP_COMMAND
Definition: pg_ctl.c:56
@ STATUS_COMMAND
Definition: pg_ctl.c:59
@ NO_COMMAND
Definition: pg_ctl.c:53
@ PROMOTE_COMMAND
Definition: pg_ctl.c:60
@ RELOAD_COMMAND
Definition: pg_ctl.c:58

◆ ShutdownMode

Enumerator
SMART_MODE 
FAST_MODE 
IMMEDIATE_MODE 

Definition at line 37 of file pg_ctl.c.

38 {
39  SMART_MODE,
40  FAST_MODE,
42 } ShutdownMode;
ShutdownMode
Definition: pg_ctl.c:38
@ FAST_MODE
Definition: pg_ctl.c:40
@ IMMEDIATE_MODE
Definition: pg_ctl.c:41
@ SMART_MODE
Definition: pg_ctl.c:39

◆ WaitPMResult

Enumerator
POSTMASTER_READY 
POSTMASTER_STILL_STARTING 
POSTMASTER_FAILED 

Definition at line 44 of file pg_ctl.c.

45 {
49 } WaitPMResult;
WaitPMResult
Definition: pg_ctl.c:45
@ POSTMASTER_FAILED
Definition: pg_ctl.c:48
@ POSTMASTER_READY
Definition: pg_ctl.c:46
@ POSTMASTER_STILL_STARTING
Definition: pg_ctl.c:47

Function Documentation

◆ adjust_data_dir()

static void adjust_data_dir ( void  )
static

Definition at line 2116 of file pg_ctl.c.

2117 {
2118  char filename[MAXPGPATH];
2119  char *my_exec_path,
2120  *cmd;
2121  FILE *fd;
2122 
2123  /* do nothing if we're working without knowledge of data dir */
2124  if (pg_config == NULL)
2125  return;
2126 
2127  /* If there is no postgresql.conf, it can't be a config-only dir */
2128  snprintf(filename, sizeof(filename), "%s/postgresql.conf", pg_config);
2129  if ((fd = fopen(filename, "r")) == NULL)
2130  return;
2131  fclose(fd);
2132 
2133  /* If PG_VERSION exists, it can't be a config-only dir */
2134  snprintf(filename, sizeof(filename), "%s/PG_VERSION", pg_config);
2135  if ((fd = fopen(filename, "r")) != NULL)
2136  {
2137  fclose(fd);
2138  return;
2139  }
2140 
2141  /* Must be a configuration directory, so find the data directory */
2142 
2143  /* we use a private my_exec_path to avoid interfering with later uses */
2144  if (exec_path == NULL)
2146  else
2148 
2149  /* it's important for -C to be the first option, see main.c */
2150  cmd = psprintf("\"%s\" -C data_directory %s%s",
2151  my_exec_path,
2152  pgdata_opt ? pgdata_opt : "",
2153  post_opts ? post_opts : "");
2154  fflush(NULL);
2155 
2156  fd = popen(cmd, "r");
2157  if (fd == NULL || fgets(filename, sizeof(filename), fd) == NULL || pclose(fd) != 0)
2158  {
2159  write_stderr(_("%s: could not determine the data directory using command \"%s\"\n"), progname, cmd);
2160  exit(1);
2161  }
2162  free(my_exec_path);
2163 
2164  /* strip trailing newline and carriage return */
2165  (void) pg_strip_crlf(filename);
2166 
2167  free(pg_data);
2170 }
#define _(x)
Definition: elog.c:91
char * pg_strdup(const char *in)
Definition: fe_memutils.c:85
char my_exec_path[MAXPGPATH]
Definition: globals.c:76
#define free(a)
Definition: header.h:65
static void const char fflush(stdout)
exit(1)
#define MAXPGPATH
static char * post_opts
Definition: pg_ctl.c:84
static char * pgdata_opt
Definition: pg_ctl.c:83
static char * find_other_exec_or_die(const char *argv0, const char *target, const char *versionstr)
Definition: pg_ctl.c:868
static char * pg_config
Definition: pg_ctl.c:82
static char * pg_data
Definition: pg_ctl.c:81
static char * argv0
Definition: pg_ctl.c:92
static void write_stderr(const char *fmt,...) pg_attribute_printf(1
Definition: pg_ctl.c:202
static const char * progname
Definition: pg_ctl.c:85
static char * exec_path
Definition: pg_ctl.c:87
static char * filename
Definition: pg_dumpall.c:119
void canonicalize_path(char *path)
Definition: path.c:264
#define snprintf
Definition: port.h:238
#define PG_BACKEND_VERSIONSTR
Definition: port.h:143
static int fd(const char *x, int i)
Definition: preproc-init.c:105
char * psprintf(const char *fmt,...)
Definition: psprintf.c:46
int pg_strip_crlf(char *str)
Definition: string.c:155

References _, argv0, canonicalize_path(), exec_path, exit(), fd(), fflush(), filename, find_other_exec_or_die(), free, MAXPGPATH, my_exec_path, PG_BACKEND_VERSIONSTR, pg_config, pg_data, pg_strdup(), pg_strip_crlf(), pgdata_opt, post_opts, progname, psprintf(), snprintf, and write_stderr().

Referenced by main().

◆ do_advice()

static void do_advice ( void  )
static

Definition at line 1956 of file pg_ctl.c.

1957 {
1958  write_stderr(_("Try \"%s --help\" for more information.\n"), progname);
1959 }

References _, progname, and write_stderr().

Referenced by main(), set_mode(), and set_sig().

◆ do_help()

static void do_help ( void  )
static

Definition at line 1964 of file pg_ctl.c.

1965 {
1966  printf(_("%s is a utility to initialize, start, stop, or control a PostgreSQL server.\n\n"), progname);
1967  printf(_("Usage:\n"));
1968  printf(_(" %s init[db] [-D DATADIR] [-s] [-o OPTIONS]\n"), progname);
1969  printf(_(" %s start [-D DATADIR] [-l FILENAME] [-W] [-t SECS] [-s]\n"
1970  " [-o OPTIONS] [-p PATH] [-c]\n"), progname);
1971  printf(_(" %s stop [-D DATADIR] [-m SHUTDOWN-MODE] [-W] [-t SECS] [-s]\n"), progname);
1972  printf(_(" %s restart [-D DATADIR] [-m SHUTDOWN-MODE] [-W] [-t SECS] [-s]\n"
1973  " [-o OPTIONS] [-c]\n"), progname);
1974  printf(_(" %s reload [-D DATADIR] [-s]\n"), progname);
1975  printf(_(" %s status [-D DATADIR]\n"), progname);
1976  printf(_(" %s promote [-D DATADIR] [-W] [-t SECS] [-s]\n"), progname);
1977  printf(_(" %s logrotate [-D DATADIR] [-s]\n"), progname);
1978  printf(_(" %s kill SIGNALNAME PID\n"), progname);
1979 #ifdef WIN32
1980  printf(_(" %s register [-D DATADIR] [-N SERVICENAME] [-U USERNAME] [-P PASSWORD]\n"
1981  " [-S START-TYPE] [-e SOURCE] [-W] [-t SECS] [-s] [-o OPTIONS]\n"), progname);
1982  printf(_(" %s unregister [-N SERVICENAME]\n"), progname);
1983 #endif
1984 
1985  printf(_("\nCommon options:\n"));
1986  printf(_(" -D, --pgdata=DATADIR location of the database storage area\n"));
1987 #ifdef WIN32
1988  printf(_(" -e SOURCE event source for logging when running as a service\n"));
1989 #endif
1990  printf(_(" -s, --silent only print errors, no informational messages\n"));
1991  printf(_(" -t, --timeout=SECS seconds to wait when using -w option\n"));
1992  printf(_(" -V, --version output version information, then exit\n"));
1993  printf(_(" -w, --wait wait until operation completes (default)\n"));
1994  printf(_(" -W, --no-wait do not wait until operation completes\n"));
1995  printf(_(" -?, --help show this help, then exit\n"));
1996  printf(_("If the -D option is omitted, the environment variable PGDATA is used.\n"));
1997 
1998  printf(_("\nOptions for start or restart:\n"));
1999 #if defined(HAVE_GETRLIMIT)
2000  printf(_(" -c, --core-files allow postgres to produce core files\n"));
2001 #else
2002  printf(_(" -c, --core-files not applicable on this platform\n"));
2003 #endif
2004  printf(_(" -l, --log=FILENAME write (or append) server log to FILENAME\n"));
2005  printf(_(" -o, --options=OPTIONS command line options to pass to postgres\n"
2006  " (PostgreSQL server executable) or initdb\n"));
2007  printf(_(" -p PATH-TO-POSTGRES normally not necessary\n"));
2008  printf(_("\nOptions for stop or restart:\n"));
2009  printf(_(" -m, --mode=MODE MODE can be \"smart\", \"fast\", or \"immediate\"\n"));
2010 
2011  printf(_("\nShutdown modes are:\n"));
2012  printf(_(" smart quit after all clients have disconnected\n"));
2013  printf(_(" fast quit directly, with proper shutdown (default)\n"));
2014  printf(_(" immediate quit without complete shutdown; will lead to recovery on restart\n"));
2015 
2016  printf(_("\nAllowed signal names for kill:\n"));
2017  printf(" ABRT HUP INT KILL QUIT TERM USR1 USR2\n");
2018 
2019 #ifdef WIN32
2020  printf(_("\nOptions for register and unregister:\n"));
2021  printf(_(" -N SERVICENAME service name with which to register PostgreSQL server\n"));
2022  printf(_(" -P PASSWORD password of account to register PostgreSQL server\n"));
2023  printf(_(" -U USERNAME user name of account to register PostgreSQL server\n"));
2024  printf(_(" -S START-TYPE service start type to register PostgreSQL server\n"));
2025 
2026  printf(_("\nStart types are:\n"));
2027  printf(_(" auto start service automatically during system startup (default)\n"));
2028  printf(_(" demand start service on demand\n"));
2029 #endif
2030 
2031  printf(_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
2032  printf(_("%s home page: <%s>\n"), PACKAGE_NAME, PACKAGE_URL);
2033 }
#define printf(...)
Definition: port.h:244

References _, printf, and progname.

Referenced by main().

◆ do_init()

static void do_init ( void  )
static

Definition at line 895 of file pg_ctl.c.

896 {
897  char *cmd;
898 
899  if (exec_path == NULL)
900  exec_path = find_other_exec_or_die(argv0, "initdb", "initdb (PostgreSQL) " PG_VERSION "\n");
901 
902  if (pgdata_opt == NULL)
903  pgdata_opt = "";
904 
905  if (post_opts == NULL)
906  post_opts = "";
907 
908  if (!silent_mode)
909  cmd = psprintf("\"%s\" %s%s",
911  else
912  cmd = psprintf("\"%s\" %s%s > \"%s\"",
914 
915  fflush(NULL);
916  if (system(cmd) != 0)
917  {
918  write_stderr(_("%s: database system initialization failed\n"), progname);
919  exit(1);
920  }
921 }
static bool silent_mode
Definition: pg_ctl.c:77
#define DEVNULL
Definition: port.h:160

References _, argv0, DEVNULL, exec_path, exit(), fflush(), find_other_exec_or_die(), pgdata_opt, post_opts, progname, psprintf(), silent_mode, and write_stderr().

Referenced by main(), and PQinitSSL().

◆ do_kill()

static void do_kill ( pid_t  pid)
static

Definition at line 1396 of file pg_ctl.c.

1397 {
1398  if (kill(pid, sig) != 0)
1399  {
1400  write_stderr(_("%s: could not send signal %d (PID: %d): %s\n"),
1401  progname, sig, (int) pid, strerror(errno));
1402  exit(1);
1403  }
1404 }
static int sig
Definition: pg_ctl.c:79
#define strerror
Definition: port.h:251
#define kill(pid, sig)
Definition: win32_port.h:489

References _, exit(), kill, progname, sig, strerror, and write_stderr().

Referenced by main().

◆ do_logrotate()

static void do_logrotate ( void  )
static

Definition at line 1258 of file pg_ctl.c.

1259 {
1260  FILE *logrotatefile;
1261  pid_t pid;
1262 
1263  pid = get_pgpid(false);
1264 
1265  if (pid == 0) /* no pid file */
1266  {
1267  write_stderr(_("%s: PID file \"%s\" does not exist\n"), progname, pid_file);
1268  write_stderr(_("Is server running?\n"));
1269  exit(1);
1270  }
1271  else if (pid < 0) /* standalone backend, not postmaster */
1272  {
1273  pid = -pid;
1274  write_stderr(_("%s: cannot rotate log file; "
1275  "single-user server is running (PID: %d)\n"),
1276  progname, (int) pid);
1277  exit(1);
1278  }
1279 
1280  snprintf(logrotate_file, MAXPGPATH, "%s/logrotate", pg_data);
1281 
1282  if ((logrotatefile = fopen(logrotate_file, "w")) == NULL)
1283  {
1284  write_stderr(_("%s: could not create log rotation signal file \"%s\": %s\n"),
1285  progname, logrotate_file, strerror(errno));
1286  exit(1);
1287  }
1288  if (fclose(logrotatefile))
1289  {
1290  write_stderr(_("%s: could not write log rotation signal file \"%s\": %s\n"),
1291  progname, logrotate_file, strerror(errno));
1292  exit(1);
1293  }
1294 
1295  sig = SIGUSR1;
1296  if (kill(pid, sig) != 0)
1297  {
1298  write_stderr(_("%s: could not send log rotation signal (PID: %d): %s\n"),
1299  progname, (int) pid, strerror(errno));
1300  if (unlink(logrotate_file) != 0)
1301  write_stderr(_("%s: could not remove log rotation signal file \"%s\": %s\n"),
1302  progname, logrotate_file, strerror(errno));
1303  exit(1);
1304  }
1305 
1306  print_msg(_("server signaled to rotate log file\n"));
1307 }
static pid_t get_pgpid(bool is_status_request)
Definition: pg_ctl.c:246
static char pid_file[MAXPGPATH]
Definition: pg_ctl.c:98
static void print_msg(const char *msg)
Definition: pg_ctl.c:236
static char logrotate_file[MAXPGPATH]
Definition: pg_ctl.c:101
#define SIGUSR1
Definition: win32_port.h:188

References _, exit(), get_pgpid(), kill, logrotate_file, MAXPGPATH, pg_data, pid_file, print_msg(), progname, sig, SIGUSR1, snprintf, strerror, and write_stderr().

Referenced by main().

◆ do_promote()

static void do_promote ( void  )
static

Definition at line 1177 of file pg_ctl.c.

1178 {
1179  FILE *prmfile;
1180  pid_t pid;
1181 
1182  pid = get_pgpid(false);
1183 
1184  if (pid == 0) /* no pid file */
1185  {
1186  write_stderr(_("%s: PID file \"%s\" does not exist\n"), progname, pid_file);
1187  write_stderr(_("Is server running?\n"));
1188  exit(1);
1189  }
1190  else if (pid < 0) /* standalone backend, not postmaster */
1191  {
1192  pid = -pid;
1193  write_stderr(_("%s: cannot promote server; "
1194  "single-user server is running (PID: %d)\n"),
1195  progname, (int) pid);
1196  exit(1);
1197  }
1198 
1200  {
1201  write_stderr(_("%s: cannot promote server; "
1202  "server is not in standby mode\n"),
1203  progname);
1204  exit(1);
1205  }
1206 
1207  snprintf(promote_file, MAXPGPATH, "%s/promote", pg_data);
1208 
1209  if ((prmfile = fopen(promote_file, "w")) == NULL)
1210  {
1211  write_stderr(_("%s: could not create promote signal file \"%s\": %s\n"),
1212  progname, promote_file, strerror(errno));
1213  exit(1);
1214  }
1215  if (fclose(prmfile))
1216  {
1217  write_stderr(_("%s: could not write promote signal file \"%s\": %s\n"),
1218  progname, promote_file, strerror(errno));
1219  exit(1);
1220  }
1221 
1222  sig = SIGUSR1;
1223  if (kill(pid, sig) != 0)
1224  {
1225  write_stderr(_("%s: could not send promote signal (PID: %d): %s\n"),
1226  progname, (int) pid, strerror(errno));
1227  if (unlink(promote_file) != 0)
1228  write_stderr(_("%s: could not remove promote signal file \"%s\": %s\n"),
1229  progname, promote_file, strerror(errno));
1230  exit(1);
1231  }
1232 
1233  if (do_wait)
1234  {
1235  print_msg(_("waiting for server to promote..."));
1237  {
1238  print_msg(_(" done\n"));
1239  print_msg(_("server promoted\n"));
1240  }
1241  else
1242  {
1243  print_msg(_(" stopped waiting\n"));
1244  write_stderr(_("%s: server did not promote in time\n"),
1245  progname);
1246  exit(1);
1247  }
1248  }
1249  else
1250  print_msg(_("server promoting\n"));
1251 }
@ DB_IN_ARCHIVE_RECOVERY
Definition: pg_control.h:94
static bool wait_for_postmaster_promote(void)
Definition: pg_ctl.c:747
static char promote_file[MAXPGPATH]
Definition: pg_ctl.c:100
static DBState get_control_dbstate(void)
Definition: pg_ctl.c:2174
static bool do_wait
Definition: pg_ctl.c:74

References _, DB_IN_ARCHIVE_RECOVERY, do_wait, exit(), get_control_dbstate(), get_pgpid(), kill, MAXPGPATH, pg_data, pid_file, print_msg(), progname, promote_file, sig, SIGUSR1, snprintf, strerror, wait_for_postmaster_promote(), and write_stderr().

Referenced by main().

◆ do_reload()

static void do_reload ( void  )
static

Definition at line 1140 of file pg_ctl.c.

1141 {
1142  pid_t pid;
1143 
1144  pid = get_pgpid(false);
1145  if (pid == 0) /* no pid file */
1146  {
1147  write_stderr(_("%s: PID file \"%s\" does not exist\n"), progname, pid_file);
1148  write_stderr(_("Is server running?\n"));
1149  exit(1);
1150  }
1151  else if (pid < 0) /* standalone backend, not postmaster */
1152  {
1153  pid = -pid;
1154  write_stderr(_("%s: cannot reload server; "
1155  "single-user server is running (PID: %d)\n"),
1156  progname, (int) pid);
1157  write_stderr(_("Please terminate the single-user server and try again.\n"));
1158  exit(1);
1159  }
1160 
1161  if (kill(pid, sig) != 0)
1162  {
1163  write_stderr(_("%s: could not send reload signal (PID: %d): %s\n"),
1164  progname, (int) pid, strerror(errno));
1165  exit(1);
1166  }
1167 
1168  print_msg(_("server signaled\n"));
1169 }

References _, exit(), get_pgpid(), kill, pid_file, print_msg(), progname, sig, strerror, and write_stderr().

Referenced by main().

◆ do_restart()

static void do_restart ( void  )
static

Definition at line 1075 of file pg_ctl.c.

1076 {
1077  pid_t pid;
1078 
1079  pid = get_pgpid(false);
1080 
1081  if (pid == 0) /* no pid file */
1082  {
1083  write_stderr(_("%s: PID file \"%s\" does not exist\n"),
1084  progname, pid_file);
1085  write_stderr(_("Is server running?\n"));
1086  write_stderr(_("trying to start server anyway\n"));
1087  do_start();
1088  return;
1089  }
1090  else if (pid < 0) /* standalone backend, not postmaster */
1091  {
1092  pid = -pid;
1093  if (postmaster_is_alive(pid))
1094  {
1095  write_stderr(_("%s: cannot restart server; "
1096  "single-user server is running (PID: %d)\n"),
1097  progname, (int) pid);
1098  write_stderr(_("Please terminate the single-user server and try again.\n"));
1099  exit(1);
1100  }
1101  }
1102 
1103  if (postmaster_is_alive(pid))
1104  {
1105  if (kill(pid, sig) != 0)
1106  {
1107  write_stderr(_("%s: could not send stop signal (PID: %d): %s\n"), progname, (int) pid,
1108  strerror(errno));
1109  exit(1);
1110  }
1111 
1112  print_msg(_("waiting for server to shut down..."));
1113 
1114  /* always wait for restart */
1115  if (!wait_for_postmaster_stop())
1116  {
1117  print_msg(_(" failed\n"));
1118 
1119  write_stderr(_("%s: server does not shut down\n"), progname);
1120  if (shutdown_mode == SMART_MODE)
1121  write_stderr(_("HINT: The \"-m fast\" option immediately disconnects sessions rather than\n"
1122  "waiting for session-initiated disconnection.\n"));
1123  exit(1);
1124  }
1125 
1126  print_msg(_(" done\n"));
1127  print_msg(_("server stopped\n"));
1128  }
1129  else
1130  {
1131  write_stderr(_("%s: old server process (PID: %d) seems to be gone\n"),
1132  progname, (int) pid);
1133  write_stderr(_("starting server anyway\n"));
1134  }
1135 
1136  do_start();
1137 }
static void do_start(void)
Definition: pg_ctl.c:924
static bool postmaster_is_alive(pid_t pid)
Definition: pg_ctl.c:1315
static bool wait_for_postmaster_stop(void)
Definition: pg_ctl.c:710
static ShutdownMode shutdown_mode
Definition: pg_ctl.c:78

References _, do_start(), exit(), get_pgpid(), kill, pid_file, postmaster_is_alive(), print_msg(), progname, shutdown_mode, sig, SMART_MODE, strerror, wait_for_postmaster_stop(), and write_stderr().

Referenced by main().

◆ do_start()

static void do_start ( void  )
static

Definition at line 924 of file pg_ctl.c.

925 {
926  pid_t old_pid = 0;
927  pid_t pm_pid;
928 
930  {
931  old_pid = get_pgpid(false);
932  if (old_pid != 0)
933  write_stderr(_("%s: another server might be running; "
934  "trying to start server anyway\n"),
935  progname);
936  }
937 
938  read_post_opts();
939 
940  /* No -D or -D already added during server start */
941  if (ctl_command == RESTART_COMMAND || pgdata_opt == NULL)
942  pgdata_opt = "";
943 
944  if (exec_path == NULL)
946 
947 #if defined(HAVE_GETRLIMIT)
948  if (allow_core_files)
950 #endif
951 
952  /*
953  * If possible, tell the postmaster our parent shell's PID (see the
954  * comments in CreateLockFile() for motivation). Windows hasn't got
955  * getppid() unfortunately.
956  */
957 #ifndef WIN32
958  {
959  char env_var[32];
960 
961  snprintf(env_var, sizeof(env_var), "%d", (int) getppid());
962  setenv("PG_GRANDPARENT_PID", env_var, 1);
963  }
964 #endif
965 
966  pm_pid = start_postmaster();
967 
968  if (do_wait)
969  {
970  /*
971  * If the user interrupts the startup (e.g. with CTRL-C), we'd like to
972  * abort the server launch. Install a signal handler that will
973  * forward SIGINT to the postmaster process, while we wait.
974  *
975  * (We don't bother to reset the signal handler after the launch, as
976  * we're about to exit, anyway.)
977  */
978  postmasterPID = pm_pid;
980 
981  print_msg(_("waiting for server to start..."));
982 
983  switch (wait_for_postmaster_start(pm_pid, false))
984  {
985  case POSTMASTER_READY:
986  print_msg(_(" done\n"));
987  print_msg(_("server started\n"));
988  break;
990  print_msg(_(" stopped waiting\n"));
991  write_stderr(_("%s: server did not start in time\n"),
992  progname);
993  exit(1);
994  break;
995  case POSTMASTER_FAILED:
996  print_msg(_(" stopped waiting\n"));
997  write_stderr(_("%s: could not start server\n"
998  "Examine the log output.\n"),
999  progname);
1000  exit(1);
1001  break;
1002  }
1003  }
1004  else
1005  print_msg(_("server starting\n"));
1006 
1007 #ifdef WIN32
1008  /* Now we don't need the handle to the shell process anymore */
1009  CloseHandle(postmasterProcess);
1010  postmasterProcess = INVALID_HANDLE_VALUE;
1011 #endif
1012 }
static void read_post_opts(void)
Definition: pg_ctl.c:795
static WaitPMResult wait_for_postmaster_start(pid_t pm_pid, bool do_checkpoint)
Definition: pg_ctl.c:593
static void trap_sigint_during_startup(SIGNAL_ARGS)
Definition: pg_ctl.c:850
static volatile pid_t postmasterPID
Definition: pg_ctl.c:103
static bool allow_core_files
Definition: pg_ctl.c:93
static void unlimit_core_size(void)
Definition: pg_ctl.c:775
static CtlCommand ctl_command
Definition: pg_ctl.c:80
static pid_t start_postmaster(void)
Definition: pg_ctl.c:440
pqsigfunc pqsignal(int signo, pqsigfunc func)
#define setenv(x, y, z)
Definition: win32_port.h:541

References _, allow_core_files, argv0, ctl_command, do_wait, exec_path, exit(), find_other_exec_or_die(), get_pgpid(), PG_BACKEND_VERSIONSTR, pgdata_opt, POSTMASTER_FAILED, POSTMASTER_READY, POSTMASTER_STILL_STARTING, postmasterPID, pqsignal(), print_msg(), progname, read_post_opts(), RESTART_COMMAND, setenv, snprintf, start_postmaster(), trap_sigint_during_startup(), unlimit_core_size(), wait_for_postmaster_start(), and write_stderr().

Referenced by do_restart(), and main().

◆ do_status()

static void do_status ( void  )
static

Definition at line 1339 of file pg_ctl.c.

1340 {
1341  pid_t pid;
1342 
1343  pid = get_pgpid(true);
1344  /* Is there a pid file? */
1345  if (pid != 0)
1346  {
1347  /* standalone backend? */
1348  if (pid < 0)
1349  {
1350  pid = -pid;
1351  if (postmaster_is_alive(pid))
1352  {
1353  printf(_("%s: single-user server is running (PID: %d)\n"),
1354  progname, (int) pid);
1355  return;
1356  }
1357  }
1358  else
1359  /* must be a postmaster */
1360  {
1361  if (postmaster_is_alive(pid))
1362  {
1363  char **optlines;
1364  char **curr_line;
1365  int numlines;
1366 
1367  printf(_("%s: server is running (PID: %d)\n"),
1368  progname, (int) pid);
1369 
1370  optlines = readfile(postopts_file, &numlines);
1371  if (optlines != NULL)
1372  {
1373  for (curr_line = optlines; *curr_line != NULL; curr_line++)
1374  puts(*curr_line);
1375 
1376  /* Free the results of readfile */
1377  free_readfile(optlines);
1378  }
1379  return;
1380  }
1381  }
1382  }
1383  printf(_("%s: no server running\n"), progname);
1384 
1385  /*
1386  * The Linux Standard Base Core Specification 3.1 says this should return
1387  * '3, program is not running'
1388  * https://refspecs.linuxbase.org/LSB_3.1.0/LSB-Core-generic/LSB-Core-generic/iniscrptact.html
1389  */
1390  exit(3);
1391 }
static void free_readfile(char **optlines)
Definition: pg_ctl.c:410
static char ** readfile(const char *path, int *numlines)
Definition: pg_ctl.c:314
static char postopts_file[MAXPGPATH]
Definition: pg_ctl.c:96

References _, exit(), free_readfile(), get_pgpid(), postmaster_is_alive(), postopts_file, printf, progname, and readfile().

Referenced by main().

◆ do_stop()

static void do_stop ( void  )
static

Definition at line 1016 of file pg_ctl.c.

1017 {
1018  pid_t pid;
1019 
1020  pid = get_pgpid(false);
1021 
1022  if (pid == 0) /* no pid file */
1023  {
1024  write_stderr(_("%s: PID file \"%s\" does not exist\n"), progname, pid_file);
1025  write_stderr(_("Is server running?\n"));
1026  exit(1);
1027  }
1028  else if (pid < 0) /* standalone backend, not postmaster */
1029  {
1030  pid = -pid;
1031  write_stderr(_("%s: cannot stop server; "
1032  "single-user server is running (PID: %d)\n"),
1033  progname, (int) pid);
1034  exit(1);
1035  }
1036 
1037  if (kill(pid, sig) != 0)
1038  {
1039  write_stderr(_("%s: could not send stop signal (PID: %d): %s\n"), progname, (int) pid,
1040  strerror(errno));
1041  exit(1);
1042  }
1043 
1044  if (!do_wait)
1045  {
1046  print_msg(_("server shutting down\n"));
1047  return;
1048  }
1049  else
1050  {
1051  print_msg(_("waiting for server to shut down..."));
1052 
1053  if (!wait_for_postmaster_stop())
1054  {
1055  print_msg(_(" failed\n"));
1056 
1057  write_stderr(_("%s: server does not shut down\n"), progname);
1058  if (shutdown_mode == SMART_MODE)
1059  write_stderr(_("HINT: The \"-m fast\" option immediately disconnects sessions rather than\n"
1060  "waiting for session-initiated disconnection.\n"));
1061  exit(1);
1062  }
1063  print_msg(_(" done\n"));
1064 
1065  print_msg(_("server stopped\n"));
1066  }
1067 }

References _, do_wait, exit(), get_pgpid(), kill, pid_file, print_msg(), progname, shutdown_mode, sig, SMART_MODE, strerror, wait_for_postmaster_stop(), and write_stderr().

Referenced by main().

◆ find_other_exec_or_die()

static char* find_other_exec_or_die ( const char *  argv0,
const char *  target,
const char *  versionstr 
)
static

Definition at line 868 of file pg_ctl.c.

869 {
870  int ret;
871  char *found_path;
872 
873  found_path = pg_malloc(MAXPGPATH);
874 
875  if ((ret = find_other_exec(argv0, target, versionstr, found_path)) < 0)
876  {
877  char full_path[MAXPGPATH];
878 
879  if (find_my_exec(argv0, full_path) < 0)
880  strlcpy(full_path, progname, sizeof(full_path));
881 
882  if (ret == -1)
883  write_stderr(_("program \"%s\" is needed by %s but was not found in the same directory as \"%s\"\n"),
884  target, progname, full_path);
885  else
886  write_stderr(_("program \"%s\" was found by \"%s\" but was not the same version as %s\n"),
887  target, full_path, progname);
888  exit(1);
889  }
890 
891  return found_path;
892 }
int find_my_exec(const char *argv0, char *retpath)
Definition: exec.c:158
int find_other_exec(const char *argv0, const char *target, const char *versionstr, char *retpath)
Definition: exec.c:327
void * pg_malloc(size_t size)
Definition: fe_memutils.c:47
size_t strlcpy(char *dst, const char *src, size_t siz)
Definition: strlcpy.c:45

References _, argv0, exit(), find_my_exec(), find_other_exec(), MAXPGPATH, pg_malloc(), progname, strlcpy(), and write_stderr().

Referenced by adjust_data_dir(), do_init(), and do_start().

◆ free_readfile()

static void free_readfile ( char **  optlines)
static

Definition at line 410 of file pg_ctl.c.

411 {
412  char *curr_line = NULL;
413  int i = 0;
414 
415  if (!optlines)
416  return;
417 
418  while ((curr_line = optlines[i++]))
419  free(curr_line);
420 
421  free(optlines);
422 }
int i
Definition: isn.c:73

References free, and i.

Referenced by do_status(), read_post_opts(), and wait_for_postmaster_start().

◆ get_control_dbstate()

static DBState get_control_dbstate ( void  )
static

Definition at line 2174 of file pg_ctl.c.

2175 {
2176  DBState ret;
2177  bool crc_ok;
2178  ControlFileData *control_file_data = get_controlfile(pg_data, &crc_ok);
2179 
2180  if (!crc_ok)
2181  {
2182  write_stderr(_("%s: control file appears to be corrupt\n"), progname);
2183  exit(1);
2184  }
2185 
2186  ret = control_file_data->state;
2187  pfree(control_file_data);
2188  return ret;
2189 }
ControlFileData * get_controlfile(const char *DataDir, bool *crc_ok_p)
void pfree(void *pointer)
Definition: mcxt.c:1436
DBState
Definition: pg_control.h:88

References _, exit(), get_controlfile(), pfree(), pg_data, progname, ControlFileData::state, and write_stderr().

Referenced by do_promote(), and wait_for_postmaster_promote().

◆ get_pgpid()

static pid_t get_pgpid ( bool  is_status_request)
static

Definition at line 246 of file pg_ctl.c.

247 {
248  FILE *pidf;
249  int pid;
250  struct stat statbuf;
251 
252  if (stat(pg_data, &statbuf) != 0)
253  {
254  if (errno == ENOENT)
255  write_stderr(_("%s: directory \"%s\" does not exist\n"), progname,
256  pg_data);
257  else
258  write_stderr(_("%s: could not access directory \"%s\": %s\n"), progname,
259  pg_data, strerror(errno));
260 
261  /*
262  * The Linux Standard Base Core Specification 3.1 says this should
263  * return '4, program or service status is unknown'
264  * https://refspecs.linuxbase.org/LSB_3.1.0/LSB-Core-generic/LSB-Core-generic/iniscrptact.html
265  */
266  exit(is_status_request ? 4 : 1);
267  }
268 
269  if (stat(version_file, &statbuf) != 0 && errno == ENOENT)
270  {
271  write_stderr(_("%s: directory \"%s\" is not a database cluster directory\n"),
272  progname, pg_data);
273  exit(is_status_request ? 4 : 1);
274  }
275 
276  pidf = fopen(pid_file, "r");
277  if (pidf == NULL)
278  {
279  /* No pid file, not an error on startup */
280  if (errno == ENOENT)
281  return 0;
282  else
283  {
284  write_stderr(_("%s: could not open PID file \"%s\": %s\n"),
285  progname, pid_file, strerror(errno));
286  exit(1);
287  }
288  }
289  if (fscanf(pidf, "%d", &pid) != 1)
290  {
291  /* Is the file empty? */
292  if (ftell(pidf) == 0 && feof(pidf))
293  write_stderr(_("%s: the PID file \"%s\" is empty\n"),
294  progname, pid_file);
295  else
296  write_stderr(_("%s: invalid data in PID file \"%s\"\n"),
297  progname, pid_file);
298  exit(1);
299  }
300  fclose(pidf);
301  return (pid_t) pid;
302 }
static char version_file[MAXPGPATH]
Definition: pg_ctl.c:97
#define stat
Definition: win32_port.h:286

References _, exit(), pg_data, pid_file, progname, stat, strerror, version_file, and write_stderr().

Referenced by do_logrotate(), do_promote(), do_reload(), do_restart(), do_start(), do_status(), do_stop(), wait_for_postmaster_promote(), and wait_for_postmaster_stop().

◆ main()

int main ( int  argc,
char **  argv 
)

Definition at line 2193 of file pg_ctl.c.

2194 {
2195  static struct option long_options[] = {
2196  {"help", no_argument, NULL, '?'},
2197  {"version", no_argument, NULL, 'V'},
2198  {"log", required_argument, NULL, 'l'},
2199  {"mode", required_argument, NULL, 'm'},
2200  {"pgdata", required_argument, NULL, 'D'},
2201  {"options", required_argument, NULL, 'o'},
2202  {"silent", no_argument, NULL, 's'},
2203  {"timeout", required_argument, NULL, 't'},
2204  {"core-files", no_argument, NULL, 'c'},
2205  {"wait", no_argument, NULL, 'w'},
2206  {"no-wait", no_argument, NULL, 'W'},
2207  {NULL, 0, NULL, 0}
2208  };
2209 
2210  char *env_wait;
2211  int option_index;
2212  int c;
2213  pid_t killproc = 0;
2214 
2215  pg_logging_init(argv[0]);
2216  progname = get_progname(argv[0]);
2217  set_pglocale_pgservice(argv[0], PG_TEXTDOMAIN("pg_ctl"));
2218  start_time = time(NULL);
2219 
2220  /*
2221  * save argv[0] so do_start() can look for the postmaster if necessary. we
2222  * don't look for postmaster here because in many cases we won't need it.
2223  */
2224  argv0 = argv[0];
2225 
2226  /* Set restrictive mode mask until PGDATA permissions are checked */
2227  umask(PG_MODE_MASK_OWNER);
2228 
2229  /* support --help and --version even if invoked as root */
2230  if (argc > 1)
2231  {
2232  if (strcmp(argv[1], "--help") == 0 || strcmp(argv[1], "-?") == 0)
2233  {
2234  do_help();
2235  exit(0);
2236  }
2237  else if (strcmp(argv[1], "--version") == 0 || strcmp(argv[1], "-V") == 0)
2238  {
2239  puts("pg_ctl (PostgreSQL) " PG_VERSION);
2240  exit(0);
2241  }
2242  }
2243 
2244  /*
2245  * Disallow running as root, to forestall any possible security holes.
2246  */
2247 #ifndef WIN32
2248  if (geteuid() == 0)
2249  {
2250  write_stderr(_("%s: cannot be run as root\n"
2251  "Please log in (using, e.g., \"su\") as the "
2252  "(unprivileged) user that will\n"
2253  "own the server process.\n"),
2254  progname);
2255  exit(1);
2256  }
2257 #endif
2258 
2259  env_wait = getenv("PGCTLTIMEOUT");
2260  if (env_wait != NULL)
2261  wait_seconds = atoi(env_wait);
2262 
2263  /*
2264  * 'Action' can be before or after args so loop over both. Some
2265  * getopt_long() implementations will reorder argv[] to place all flags
2266  * first (GNU?), but we don't rely on it. Our /port version doesn't do
2267  * that.
2268  */
2269  optind = 1;
2270 
2271  /* process command-line options */
2272  while (optind < argc)
2273  {
2274  while ((c = getopt_long(argc, argv, "cD:e:l:m:N:o:p:P:sS:t:U:wW",
2275  long_options, &option_index)) != -1)
2276  {
2277  switch (c)
2278  {
2279  case 'D':
2280  {
2281  char *pgdata_D;
2282 
2283  pgdata_D = pg_strdup(optarg);
2284  canonicalize_path(pgdata_D);
2285  setenv("PGDATA", pgdata_D, 1);
2286 
2287  /*
2288  * We could pass PGDATA just in an environment
2289  * variable but we do -D too for clearer postmaster
2290  * 'ps' display
2291  */
2292  pgdata_opt = psprintf("-D \"%s\" ", pgdata_D);
2293  free(pgdata_D);
2294  break;
2295  }
2296  case 'e':
2298  break;
2299  case 'l':
2301  break;
2302  case 'm':
2303  set_mode(optarg);
2304  break;
2305  case 'N':
2307  break;
2308  case 'o':
2309  /* append option? */
2310  if (!post_opts)
2312  else
2313  {
2314  char *old_post_opts = post_opts;
2315 
2316  post_opts = psprintf("%s %s", old_post_opts, optarg);
2317  free(old_post_opts);
2318  }
2319  break;
2320  case 'p':
2322  break;
2323  case 'P':
2325  break;
2326  case 's':
2327  silent_mode = true;
2328  break;
2329  case 'S':
2330 #ifdef WIN32
2331  set_starttype(optarg);
2332 #else
2333  write_stderr(_("%s: -S option not supported on this platform\n"),
2334  progname);
2335  exit(1);
2336 #endif
2337  break;
2338  case 't':
2339  wait_seconds = atoi(optarg);
2340  wait_seconds_arg = true;
2341  break;
2342  case 'U':
2343  if (strchr(optarg, '\\'))
2345  else
2346  /* Prepend .\ for local accounts */
2347  register_username = psprintf(".\\%s", optarg);
2348  break;
2349  case 'w':
2350  do_wait = true;
2351  break;
2352  case 'W':
2353  do_wait = false;
2354  break;
2355  case 'c':
2356  allow_core_files = true;
2357  break;
2358  default:
2359  /* getopt_long already issued a suitable error message */
2360  do_advice();
2361  exit(1);
2362  }
2363  }
2364 
2365  /* Process an action */
2366  if (optind < argc)
2367  {
2368  if (ctl_command != NO_COMMAND)
2369  {
2370  write_stderr(_("%s: too many command-line arguments (first is \"%s\")\n"), progname, argv[optind]);
2371  do_advice();
2372  exit(1);
2373  }
2374 
2375  if (strcmp(argv[optind], "init") == 0
2376  || strcmp(argv[optind], "initdb") == 0)
2378  else if (strcmp(argv[optind], "start") == 0)
2380  else if (strcmp(argv[optind], "stop") == 0)
2382  else if (strcmp(argv[optind], "restart") == 0)
2384  else if (strcmp(argv[optind], "reload") == 0)
2386  else if (strcmp(argv[optind], "status") == 0)
2388  else if (strcmp(argv[optind], "promote") == 0)
2390  else if (strcmp(argv[optind], "logrotate") == 0)
2392  else if (strcmp(argv[optind], "kill") == 0)
2393  {
2394  if (argc - optind < 3)
2395  {
2396  write_stderr(_("%s: missing arguments for kill mode\n"), progname);
2397  do_advice();
2398  exit(1);
2399  }
2401  set_sig(argv[++optind]);
2402  killproc = atol(argv[++optind]);
2403  }
2404 #ifdef WIN32
2405  else if (strcmp(argv[optind], "register") == 0)
2407  else if (strcmp(argv[optind], "unregister") == 0)
2409  else if (strcmp(argv[optind], "runservice") == 0)
2411 #endif
2412  else
2413  {
2414  write_stderr(_("%s: unrecognized operation mode \"%s\"\n"), progname, argv[optind]);
2415  do_advice();
2416  exit(1);
2417  }
2418  optind++;
2419  }
2420  }
2421 
2422  if (ctl_command == NO_COMMAND)
2423  {
2424  write_stderr(_("%s: no operation specified\n"), progname);
2425  do_advice();
2426  exit(1);
2427  }
2428 
2429  /* Note we put any -D switch into the env var above */
2430  pg_config = getenv("PGDATA");
2431  if (pg_config)
2432  {
2436  }
2437 
2438  /* -D might point at config-only directory; if so find the real PGDATA */
2439  adjust_data_dir();
2440 
2441  /* Complain if -D needed and not provided */
2442  if (pg_config == NULL &&
2444  {
2445  write_stderr(_("%s: no database directory specified and environment variable PGDATA unset\n"),
2446  progname);
2447  do_advice();
2448  exit(1);
2449  }
2450 
2451  if (ctl_command == RELOAD_COMMAND)
2452  {
2453  sig = SIGHUP;
2454  do_wait = false;
2455  }
2456 
2457  if (pg_data)
2458  {
2459  snprintf(postopts_file, MAXPGPATH, "%s/postmaster.opts", pg_data);
2460  snprintf(version_file, MAXPGPATH, "%s/PG_VERSION", pg_data);
2461  snprintf(pid_file, MAXPGPATH, "%s/postmaster.pid", pg_data);
2462  snprintf(backup_file, MAXPGPATH, "%s/backup_label", pg_data);
2463 
2464  /*
2465  * Set mask based on PGDATA permissions,
2466  *
2467  * Don't error here if the data directory cannot be stat'd. This is
2468  * handled differently based on the command and we don't want to
2469  * interfere with that logic.
2470  */
2472  umask(pg_mode_mask);
2473  }
2474 
2475  switch (ctl_command)
2476  {
2477  case INIT_COMMAND:
2478  do_init();
2479  break;
2480  case STATUS_COMMAND:
2481  do_status();
2482  break;
2483  case START_COMMAND:
2484  do_start();
2485  break;
2486  case STOP_COMMAND:
2487  do_stop();
2488  break;
2489  case RESTART_COMMAND:
2490  do_restart();
2491  break;
2492  case RELOAD_COMMAND:
2493  do_reload();
2494  break;
2495  case PROMOTE_COMMAND:
2496  do_promote();
2497  break;
2498  case LOGROTATE_COMMAND:
2499  do_logrotate();
2500  break;
2501  case KILL_COMMAND:
2502  do_kill(killproc);
2503  break;
2504 #ifdef WIN32
2505  case REGISTER_COMMAND:
2506  pgwin32_doRegister();
2507  break;
2508  case UNREGISTER_COMMAND:
2509  pgwin32_doUnregister();
2510  break;
2512  pgwin32_doRunAsService();
2513  break;
2514 #endif
2515  default:
2516  break;
2517  }
2518 
2519  exit(0);
2520 }
#define PG_TEXTDOMAIN(domain)
Definition: c.h:1204
void set_pglocale_pgservice(const char *argv0, const char *app)
Definition: exec.c:436
int pg_mode_mask
Definition: file_perm.c:25
bool GetDataDirectoryCreatePerm(const char *dataDir)
#define PG_MODE_MASK_OWNER
Definition: file_perm.h:24
int getopt_long(int argc, char *const argv[], const char *optstring, const struct option *longopts, int *longindex)
Definition: getopt_long.c:57
#define no_argument
Definition: getopt_long.h:24
#define required_argument
Definition: getopt_long.h:25
void pg_logging_init(const char *argv0)
Definition: logging.c:83
static void static void do_advice(void)
Definition: pg_ctl.c:1956
static void do_reload(void)
Definition: pg_ctl.c:1140
static void do_help(void)
Definition: pg_ctl.c:1964
static char * register_username
Definition: pg_ctl.c:90
static char * event_source
Definition: pg_ctl.c:88
static void adjust_data_dir(void)
Definition: pg_ctl.c:2116
static char * register_servicename
Definition: pg_ctl.c:89
static void set_mode(char *modeopt)
Definition: pg_ctl.c:2038
static char backup_file[MAXPGPATH]
Definition: pg_ctl.c:99
static void do_logrotate(void)
Definition: pg_ctl.c:1258
static void do_stop(void)
Definition: pg_ctl.c:1016
static char * register_password
Definition: pg_ctl.c:91
static void do_init(void)
Definition: pg_ctl.c:895
static int wait_seconds
Definition: pg_ctl.c:75
static void do_restart(void)
Definition: pg_ctl.c:1075
static bool wait_seconds_arg
Definition: pg_ctl.c:76
static char * log_file
Definition: pg_ctl.c:86
static void do_promote(void)
Definition: pg_ctl.c:1177
static time_t start_time
Definition: pg_ctl.c:94
static void set_sig(char *signame)
Definition: pg_ctl.c:2066
static void do_status(void)
Definition: pg_ctl.c:1339
static void do_kill(pid_t pid)
Definition: pg_ctl.c:1396
PGDLLIMPORT int optind
Definition: getopt.c:50
PGDLLIMPORT char * optarg
Definition: getopt.c:52
const char * get_progname(const char *argv0)
Definition: path.c:574
char * c
#define SIGHUP
Definition: win32_port.h:176

References _, adjust_data_dir(), allow_core_files, argv0, backup_file, canonicalize_path(), ctl_command, do_advice(), do_help(), do_init(), do_kill(), do_logrotate(), do_promote(), do_reload(), do_restart(), do_start(), do_status(), do_stop(), do_wait, event_source, exec_path, exit(), free, get_progname(), GetDataDirectoryCreatePerm(), getopt_long(), INIT_COMMAND, KILL_COMMAND, log_file, LOGROTATE_COMMAND, MAXPGPATH, no_argument, NO_COMMAND, optarg, optind, pg_config, pg_data, pg_logging_init(), pg_mode_mask, PG_MODE_MASK_OWNER, pg_strdup(), PG_TEXTDOMAIN, pgdata_opt, pid_file, post_opts, postopts_file, progname, PROMOTE_COMMAND, psprintf(), REGISTER_COMMAND, register_password, register_servicename, register_username, RELOAD_COMMAND, required_argument, RESTART_COMMAND, RUN_AS_SERVICE_COMMAND, set_mode(), set_pglocale_pgservice(), set_sig(), setenv, sig, SIGHUP, silent_mode, snprintf, START_COMMAND, start_time, STATUS_COMMAND, STOP_COMMAND, UNREGISTER_COMMAND, version_file, wait_seconds, wait_seconds_arg, and write_stderr().

◆ postmaster_is_alive()

static bool postmaster_is_alive ( pid_t  pid)
static

Definition at line 1315 of file pg_ctl.c.

1316 {
1317  /*
1318  * Test to see if the process is still there. Note that we do not
1319  * consider an EPERM failure to mean that the process is still there;
1320  * EPERM must mean that the given PID belongs to some other userid, and
1321  * considering the permissions on $PGDATA, that means it's not the
1322  * postmaster we are after.
1323  *
1324  * Don't believe that our own PID or parent shell's PID is the postmaster,
1325  * either. (Windows hasn't got getppid(), though.)
1326  */
1327  if (pid == getpid())
1328  return false;
1329 #ifndef WIN32
1330  if (pid == getppid())
1331  return false;
1332 #endif
1333  if (kill(pid, 0) == 0)
1334  return true;
1335  return false;
1336 }

References kill.

Referenced by do_restart(), and do_status().

◆ print_msg()

static void print_msg ( const char *  msg)
static

◆ read_post_opts()

static void read_post_opts ( void  )
static

Definition at line 795 of file pg_ctl.c.

796 {
797  if (post_opts == NULL)
798  {
799  post_opts = ""; /* default */
801  {
802  char **optlines;
803  int numlines;
804 
805  optlines = readfile(postopts_file, &numlines);
806  if (optlines == NULL)
807  {
808  write_stderr(_("%s: could not read file \"%s\"\n"), progname, postopts_file);
809  exit(1);
810  }
811  else if (numlines != 1)
812  {
813  write_stderr(_("%s: option file \"%s\" must have exactly one line\n"),
815  exit(1);
816  }
817  else
818  {
819  char *optline;
820  char *arg1;
821 
822  optline = optlines[0];
823 
824  /*
825  * Are we at the first option, as defined by space and
826  * double-quote?
827  */
828  if ((arg1 = strstr(optline, " \"")) != NULL)
829  {
830  *arg1 = '\0'; /* terminate so we get only program name */
831  post_opts = pg_strdup(arg1 + 1); /* point past whitespace */
832  }
833  if (exec_path == NULL)
834  exec_path = pg_strdup(optline);
835  }
836 
837  /* Free the results of readfile. */
838  free_readfile(optlines);
839  }
840  }
841 }

References _, ctl_command, exec_path, exit(), free_readfile(), pg_strdup(), post_opts, postopts_file, progname, readfile(), RESTART_COMMAND, and write_stderr().

Referenced by do_start().

◆ readfile()

static char ** readfile ( const char *  path,
int *  numlines 
)
static

Definition at line 314 of file pg_ctl.c.

315 {
316  int fd;
317  int nlines;
318  char **result;
319  char *buffer;
320  char *linebegin;
321  int i;
322  int n;
323  int len;
324  struct stat statbuf;
325 
326  *numlines = 0; /* in case of failure or empty file */
327 
328  /*
329  * Slurp the file into memory.
330  *
331  * The file can change concurrently, so we read the whole file into memory
332  * with a single read() call. That's not guaranteed to get an atomic
333  * snapshot, but in practice, for a small file, it's close enough for the
334  * current use.
335  */
336  fd = open(path, O_RDONLY | PG_BINARY, 0);
337  if (fd < 0)
338  return NULL;
339  if (fstat(fd, &statbuf) < 0)
340  {
341  close(fd);
342  return NULL;
343  }
344  if (statbuf.st_size == 0)
345  {
346  /* empty file */
347  close(fd);
348  result = (char **) pg_malloc(sizeof(char *));
349  *result = NULL;
350  return result;
351  }
352  buffer = pg_malloc(statbuf.st_size + 1);
353 
354  len = read(fd, buffer, statbuf.st_size + 1);
355  close(fd);
356  if (len != statbuf.st_size)
357  {
358  /* oops, the file size changed between fstat and read */
359  free(buffer);
360  return NULL;
361  }
362 
363  /*
364  * Count newlines. We expect there to be a newline after each full line,
365  * including one at the end of file. If there isn't a newline at the end,
366  * any characters after the last newline will be ignored.
367  */
368  nlines = 0;
369  for (i = 0; i < len; i++)
370  {
371  if (buffer[i] == '\n')
372  nlines++;
373  }
374 
375  /* set up the result buffer */
376  result = (char **) pg_malloc((nlines + 1) * sizeof(char *));
377  *numlines = nlines;
378 
379  /* now split the buffer into lines */
380  linebegin = buffer;
381  n = 0;
382  for (i = 0; i < len; i++)
383  {
384  if (buffer[i] == '\n')
385  {
386  int slen = &buffer[i] - linebegin;
387  char *linebuf = pg_malloc(slen + 1);
388 
389  memcpy(linebuf, linebegin, slen);
390  /* we already dropped the \n, but get rid of any \r too */
391  if (slen > 0 && linebuf[slen - 1] == '\r')
392  slen--;
393  linebuf[slen] = '\0';
394  result[n++] = linebuf;
395  linebegin = &buffer[i + 1];
396  }
397  }
398  result[n] = NULL;
399 
400  free(buffer);
401 
402  return result;
403 }
#define PG_BINARY
Definition: c.h:1260
#define close(a)
Definition: win32.h:12
#define read(a, b, c)
Definition: win32.h:13
const void size_t len
#define fstat
Definition: win32_port.h:285

References close, fd(), free, fstat, i, len, PG_BINARY, pg_malloc(), read, and stat::st_size.

Referenced by do_status(), read_post_opts(), and wait_for_postmaster_start().

◆ set_mode()

static void set_mode ( char *  modeopt)
static

Definition at line 2038 of file pg_ctl.c.

2039 {
2040  if (strcmp(modeopt, "s") == 0 || strcmp(modeopt, "smart") == 0)
2041  {
2043  sig = SIGTERM;
2044  }
2045  else if (strcmp(modeopt, "f") == 0 || strcmp(modeopt, "fast") == 0)
2046  {
2048  sig = SIGINT;
2049  }
2050  else if (strcmp(modeopt, "i") == 0 || strcmp(modeopt, "immediate") == 0)
2051  {
2053  sig = SIGQUIT;
2054  }
2055  else
2056  {
2057  write_stderr(_("%s: unrecognized shutdown mode \"%s\"\n"), progname, modeopt);
2058  do_advice();
2059  exit(1);
2060  }
2061 }
#define SIGQUIT
Definition: win32_port.h:177

References _, do_advice(), exit(), FAST_MODE, IMMEDIATE_MODE, progname, shutdown_mode, sig, SIGQUIT, SMART_MODE, and write_stderr().

Referenced by main().

◆ set_sig()

static void set_sig ( char *  signame)
static

Definition at line 2066 of file pg_ctl.c.

2067 {
2068  if (strcmp(signame, "HUP") == 0)
2069  sig = SIGHUP;
2070  else if (strcmp(signame, "INT") == 0)
2071  sig = SIGINT;
2072  else if (strcmp(signame, "QUIT") == 0)
2073  sig = SIGQUIT;
2074  else if (strcmp(signame, "ABRT") == 0)
2075  sig = SIGABRT;
2076  else if (strcmp(signame, "KILL") == 0)
2077  sig = SIGKILL;
2078  else if (strcmp(signame, "TERM") == 0)
2079  sig = SIGTERM;
2080  else if (strcmp(signame, "USR1") == 0)
2081  sig = SIGUSR1;
2082  else if (strcmp(signame, "USR2") == 0)
2083  sig = SIGUSR2;
2084  else
2085  {
2086  write_stderr(_("%s: unrecognized signal name \"%s\"\n"), progname, signame);
2087  do_advice();
2088  exit(1);
2089  }
2090 }
#define SIGABRT
Definition: win32_port.h:179
#define SIGUSR2
Definition: win32_port.h:189
#define SIGKILL
Definition: win32_port.h:180

References _, do_advice(), exit(), progname, sig, SIGABRT, SIGHUP, SIGKILL, SIGQUIT, SIGUSR1, SIGUSR2, and write_stderr().

Referenced by main().

◆ start_postmaster()

static pid_t start_postmaster ( void  )
static

Definition at line 440 of file pg_ctl.c.

441 {
442  char *cmd;
443 
444 #ifndef WIN32
445  pid_t pm_pid;
446 
447  /* Flush stdio channels just before fork, to avoid double-output problems */
448  fflush(NULL);
449 
450 #ifdef EXEC_BACKEND
451  pg_disable_aslr();
452 #endif
453 
454  pm_pid = fork();
455  if (pm_pid < 0)
456  {
457  /* fork failed */
458  write_stderr(_("%s: could not start server: %s\n"),
459  progname, strerror(errno));
460  exit(1);
461  }
462  if (pm_pid > 0)
463  {
464  /* fork succeeded, in parent */
465  return pm_pid;
466  }
467 
468  /* fork succeeded, in child */
469 
470  /*
471  * If possible, detach the postmaster process from the launching process
472  * group and make it a group leader, so that it doesn't get signaled along
473  * with the current group that launched it.
474  */
475 #ifdef HAVE_SETSID
476  if (setsid() < 0)
477  {
478  write_stderr(_("%s: could not start server due to setsid() failure: %s\n"),
479  progname, strerror(errno));
480  exit(1);
481  }
482 #endif
483 
484  /*
485  * Since there might be quotes to handle here, it is easier simply to pass
486  * everything to a shell to process them. Use exec so that the postmaster
487  * has the same PID as the current child process.
488  */
489  if (log_file != NULL)
490  cmd = psprintf("exec \"%s\" %s%s < \"%s\" >> \"%s\" 2>&1",
492  DEVNULL, log_file);
493  else
494  cmd = psprintf("exec \"%s\" %s%s < \"%s\" 2>&1",
496 
497  (void) execl("/bin/sh", "/bin/sh", "-c", cmd, (char *) NULL);
498 
499  /* exec failed */
500  write_stderr(_("%s: could not start server: %s\n"),
501  progname, strerror(errno));
502  exit(1);
503 
504  return 0; /* keep dumb compilers quiet */
505 
506 #else /* WIN32 */
507 
508  /*
509  * As with the Unix case, it's easiest to use the shell (CMD.EXE) to
510  * handle redirection etc. Unfortunately CMD.EXE lacks any equivalent of
511  * "exec", so we don't get to find out the postmaster's PID immediately.
512  */
513  PROCESS_INFORMATION pi;
514  const char *comspec;
515 
516  /* Find CMD.EXE location using COMSPEC, if it's set */
517  comspec = getenv("COMSPEC");
518  if (comspec == NULL)
519  comspec = "CMD";
520 
521  if (log_file != NULL)
522  {
523  /*
524  * First, open the log file if it exists. The idea is that if the
525  * file is still locked by a previous postmaster run, we'll wait until
526  * it comes free, instead of failing with ERROR_SHARING_VIOLATION.
527  * (It'd be better to open the file in a sharing-friendly mode, but we
528  * can't use CMD.EXE to do that, so work around it. Note that the
529  * previous postmaster will still have the file open for a short time
530  * after removing postmaster.pid.)
531  *
532  * If the log file doesn't exist, we *must not* create it here. If we
533  * were launched with higher privileges than the restricted process
534  * will have, the log file might end up with permissions settings that
535  * prevent the postmaster from writing on it.
536  */
537  int fd = open(log_file, O_RDWR, 0);
538 
539  if (fd == -1)
540  {
541  /*
542  * ENOENT is expectable since we didn't use O_CREAT. Otherwise
543  * complain. We could just fall through and let CMD.EXE report
544  * the problem, but its error reporting is pretty miserable.
545  */
546  if (errno != ENOENT)
547  {
548  write_stderr(_("%s: could not open log file \"%s\": %s\n"),
549  progname, log_file, strerror(errno));
550  exit(1);
551  }
552  }
553  else
554  close(fd);
555 
556  cmd = psprintf("\"%s\" /C \"\"%s\" %s%s < \"%s\" >> \"%s\" 2>&1\"",
558  }
559  else
560  cmd = psprintf("\"%s\" /C \"\"%s\" %s%s < \"%s\" 2>&1\"",
561  comspec, exec_path, pgdata_opt, post_opts, DEVNULL);
562 
563  if (!CreateRestrictedProcess(cmd, &pi, false))
564  {
565  write_stderr(_("%s: could not start server: error code %lu\n"),
566  progname, (unsigned long) GetLastError());
567  exit(1);
568  }
569  /* Don't close command process handle here; caller must do so */
570  postmasterProcess = pi.hProcess;
571  CloseHandle(pi.hThread);
572  return pi.dwProcessId; /* Shell's PID, not postmaster's! */
573 #endif /* WIN32 */
574 }

References _, close, DEVNULL, exec_path, exit(), fd(), fflush(), log_file, pgdata_opt, post_opts, progname, psprintf(), strerror, and write_stderr().

Referenced by check_and_dump_old_cluster(), do_start(), issue_warnings_and_set_wal_level(), main(), and setup().

◆ trap_sigint_during_startup()

static void trap_sigint_during_startup ( SIGNAL_ARGS  )
static

Definition at line 850 of file pg_ctl.c.

851 {
852  if (postmasterPID != -1)
853  {
854  if (kill(postmasterPID, SIGINT) != 0)
855  write_stderr(_("%s: could not send stop signal (PID: %d): %s\n"),
856  progname, (int) postmasterPID, strerror(errno));
857  }
858 
859  /*
860  * Clear the signal handler, and send the signal again, to terminate the
861  * process as normal.
862  */
863  pqsignal(postgres_signal_arg, SIG_DFL);
864  raise(postgres_signal_arg);
865 }
#define SIG_DFL
Definition: win32_port.h:171

References _, kill, postmasterPID, pqsignal(), progname, SIG_DFL, strerror, and write_stderr().

Referenced by do_start().

◆ unlimit_core_size()

static void unlimit_core_size ( void  )
static

Definition at line 775 of file pg_ctl.c.

776 {
777  struct rlimit lim;
778 
779  getrlimit(RLIMIT_CORE, &lim);
780  if (lim.rlim_max == 0)
781  {
782  write_stderr(_("%s: cannot set core file size limit; disallowed by hard limit\n"),
783  progname);
784  return;
785  }
786  else if (lim.rlim_max == RLIM_INFINITY || lim.rlim_cur < lim.rlim_max)
787  {
788  lim.rlim_cur = lim.rlim_max;
789  setrlimit(RLIMIT_CORE, &lim);
790  }
791 }

References _, progname, and write_stderr().

Referenced by do_start().

◆ wait_for_postmaster_promote()

static bool wait_for_postmaster_promote ( void  )
static

Definition at line 747 of file pg_ctl.c.

748 {
749  int cnt;
750 
751  for (cnt = 0; cnt < wait_seconds * WAITS_PER_SEC; cnt++)
752  {
753  pid_t pid;
754  DBState state;
755 
756  if ((pid = get_pgpid(false)) == 0)
757  return false; /* pid file is gone */
758  if (kill(pid, 0) != 0)
759  return false; /* postmaster died */
760 
762  if (state == DB_IN_PRODUCTION)
763  return true; /* successful promotion */
764 
765  if (cnt % WAITS_PER_SEC == 0)
766  print_msg(".");
768  }
769  return false; /* timeout reached */
770 }
@ DB_IN_PRODUCTION
Definition: pg_control.h:95
#define WAITS_PER_SEC
Definition: pg_ctl.c:72
#define USEC_PER_SEC
Definition: pg_ctl.c:70
void pg_usleep(long microsec)
Definition: signal.c:53
Definition: regguts.h:318

References DB_IN_PRODUCTION, get_control_dbstate(), get_pgpid(), kill, pg_usleep(), print_msg(), USEC_PER_SEC, wait_seconds, and WAITS_PER_SEC.

Referenced by do_promote().

◆ wait_for_postmaster_start()

static WaitPMResult wait_for_postmaster_start ( pid_t  pm_pid,
bool  do_checkpoint 
)
static

Definition at line 593 of file pg_ctl.c.

594 {
595  int i;
596 
597  for (i = 0; i < wait_seconds * WAITS_PER_SEC; i++)
598  {
599  char **optlines;
600  int numlines;
601 
602  /*
603  * Try to read the postmaster.pid file. If it's not valid, or if the
604  * status line isn't there yet, just keep waiting.
605  */
606  if ((optlines = readfile(pid_file, &numlines)) != NULL &&
607  numlines >= LOCK_FILE_LINE_PM_STATUS)
608  {
609  /* File is complete enough for us, parse it */
610  pid_t pmpid;
611  time_t pmstart;
612 
613  /*
614  * Make sanity checks. If it's for the wrong PID, or the recorded
615  * start time is before pg_ctl started, then either we are looking
616  * at the wrong data directory, or this is a pre-existing pidfile
617  * that hasn't (yet?) been overwritten by our child postmaster.
618  * Allow 2 seconds slop for possible cross-process clock skew.
619  */
620  pmpid = atol(optlines[LOCK_FILE_LINE_PID - 1]);
621  pmstart = atol(optlines[LOCK_FILE_LINE_START_TIME - 1]);
622  if (pmstart >= start_time - 2 &&
623 #ifndef WIN32
624  pmpid == pm_pid
625 #else
626  /* Windows can only reject standalone-backend PIDs */
627  pmpid > 0
628 #endif
629  )
630  {
631  /*
632  * OK, seems to be a valid pidfile from our child. Check the
633  * status line (this assumes a v10 or later server).
634  */
635  char *pmstatus = optlines[LOCK_FILE_LINE_PM_STATUS - 1];
636 
637  if (strcmp(pmstatus, PM_STATUS_READY) == 0 ||
638  strcmp(pmstatus, PM_STATUS_STANDBY) == 0)
639  {
640  /* postmaster is done starting up */
641  free_readfile(optlines);
642  return POSTMASTER_READY;
643  }
644  }
645  }
646 
647  /*
648  * Free the results of readfile.
649  *
650  * This is safe to call even if optlines is NULL.
651  */
652  free_readfile(optlines);
653 
654  /*
655  * Check whether the child postmaster process is still alive. This
656  * lets us exit early if the postmaster fails during startup.
657  *
658  * On Windows, we may be checking the postmaster's parent shell, but
659  * that's fine for this purpose.
660  */
661 #ifndef WIN32
662  {
663  int exitstatus;
664 
665  if (waitpid(pm_pid, &exitstatus, WNOHANG) == pm_pid)
666  return POSTMASTER_FAILED;
667  }
668 #else
669  if (WaitForSingleObject(postmasterProcess, 0) == WAIT_OBJECT_0)
670  return POSTMASTER_FAILED;
671 #endif
672 
673  /* Startup still in process; wait, printing a dot once per second */
674  if (i % WAITS_PER_SEC == 0)
675  {
676 #ifdef WIN32
677  if (do_checkpoint)
678  {
679  /*
680  * Increment the wait hint by 6 secs (connection timeout +
681  * sleep). We must do this to indicate to the SCM that our
682  * startup time is changing, otherwise it'll usually send a
683  * stop signal after 20 seconds, despite incrementing the
684  * checkpoint counter.
685  */
686  status.dwWaitHint += 6000;
687  status.dwCheckPoint++;
688  SetServiceStatus(hStatus, (LPSERVICE_STATUS) &status);
689  }
690  else
691 #endif
692  print_msg(".");
693  }
694 
696  }
697 
698  /* out of patience; report that postmaster is still starting up */
700 }
#define PM_STATUS_READY
Definition: pidfile.h:53
#define PM_STATUS_STANDBY
Definition: pidfile.h:54
#define LOCK_FILE_LINE_START_TIME
Definition: pidfile.h:39
#define LOCK_FILE_LINE_PM_STATUS
Definition: pidfile.h:44
#define LOCK_FILE_LINE_PID
Definition: pidfile.h:37

References free_readfile(), i, LOCK_FILE_LINE_PID, LOCK_FILE_LINE_PM_STATUS, LOCK_FILE_LINE_START_TIME, pg_usleep(), pid_file, PM_STATUS_READY, PM_STATUS_STANDBY, POSTMASTER_FAILED, POSTMASTER_READY, POSTMASTER_STILL_STARTING, print_msg(), readfile(), start_time, USEC_PER_SEC, wait_seconds, and WAITS_PER_SEC.

Referenced by do_start().

◆ wait_for_postmaster_stop()

static bool wait_for_postmaster_stop ( void  )
static

Definition at line 710 of file pg_ctl.c.

711 {
712  int cnt;
713 
714  for (cnt = 0; cnt < wait_seconds * WAITS_PER_SEC; cnt++)
715  {
716  pid_t pid;
717 
718  if ((pid = get_pgpid(false)) == 0)
719  return true; /* pid file is gone */
720 
721  if (kill(pid, 0) != 0)
722  {
723  /*
724  * Postmaster seems to have died. Check the pid file once more to
725  * avoid a race condition, but give up waiting.
726  */
727  if (get_pgpid(false) == 0)
728  return true; /* pid file is gone */
729  return false; /* postmaster died untimely */
730  }
731 
732  if (cnt % WAITS_PER_SEC == 0)
733  print_msg(".");
735  }
736  return false; /* timeout reached */
737 }

References get_pgpid(), kill, pg_usleep(), print_msg(), USEC_PER_SEC, wait_seconds, and WAITS_PER_SEC.

Referenced by do_restart(), and do_stop().

◆ write_stderr()

static void write_stderr ( const char *  fmt,
  ... 
)
static

Definition at line 202 of file pg_ctl.c.

203 {
204  va_list ap;
205 
206  va_start(ap, fmt);
207 #ifndef WIN32
208  /* On Unix, we just fprintf to stderr */
209  vfprintf(stderr, fmt, ap);
210 #else
211 
212  /*
213  * On Win32, we print to stderr if running on a console, or write to
214  * eventlog if running as a service
215  */
216  if (pgwin32_is_service()) /* Running as a service */
217  {
218  char errbuf[2048]; /* Arbitrary size? */
219 
220  vsnprintf(errbuf, sizeof(errbuf), fmt, ap);
221 
222  write_eventlog(EVENTLOG_ERROR_TYPE, errbuf);
223  }
224  else
225  /* Not running as service, write to stderr */
226  vfprintf(stderr, fmt, ap);
227 #endif
228  va_end(ap);
229 }
static void const char * fmt
va_end(args)
vfprintf(stderr, fmt, args)
va_start(args, fmt)
#define vsnprintf
Definition: port.h:237
int pgwin32_is_service(void)

References fmt, pgwin32_is_service(), va_end(), va_start(), vfprintf(), and vsnprintf.

Referenced by adjust_data_dir(), do_advice(), do_init(), do_kill(), do_logrotate(), do_promote(), do_reload(), do_restart(), do_start(), do_stop(), find_other_exec_or_die(), get_control_dbstate(), get_pgpid(), main(), read_post_opts(), set_mode(), set_sig(), start_postmaster(), trap_sigint_during_startup(), and unlimit_core_size().

Variable Documentation

◆ allow_core_files

bool allow_core_files = false
static

Definition at line 93 of file pg_ctl.c.

Referenced by do_start(), and main().

◆ argv0

◆ backup_file

char backup_file[MAXPGPATH]
static

Definition at line 99 of file pg_ctl.c.

Referenced by main().

◆ ctl_command

CtlCommand ctl_command = NO_COMMAND
static

Definition at line 80 of file pg_ctl.c.

Referenced by do_start(), main(), and read_post_opts().

◆ do_wait

bool do_wait = true
static

◆ event_source

char* event_source = NULL
static

Definition at line 88 of file pg_ctl.c.

Referenced by main().

◆ exec_path

char* exec_path = NULL
static

◆ log_file

char* log_file = NULL
static

Definition at line 86 of file pg_ctl.c.

Referenced by exec_prog(), main(), parallel_exec_prog(), and start_postmaster().

◆ logrotate_file

char logrotate_file[MAXPGPATH]
static

Definition at line 101 of file pg_ctl.c.

Referenced by do_logrotate().

◆ pg_config

char* pg_config = NULL
static

Definition at line 82 of file pg_ctl.c.

Referenced by adjust_data_dir(), and main().

◆ pg_data

char* pg_data = NULL
static

Definition at line 81 of file pg_ctl.c.

Referenced by adjust_data_dir(), do_logrotate(), do_promote(), get_control_dbstate(), get_pgpid(), and main().

◆ pgdata_opt

char* pgdata_opt = NULL
static

Definition at line 83 of file pg_ctl.c.

Referenced by adjust_data_dir(), do_init(), do_start(), main(), and start_postmaster().

◆ pid_file

char pid_file[MAXPGPATH]
static

◆ post_opts

char* post_opts = NULL
static

Definition at line 84 of file pg_ctl.c.

Referenced by adjust_data_dir(), do_init(), main(), read_post_opts(), and start_postmaster().

◆ postmasterPID

volatile pid_t postmasterPID = -1
static

Definition at line 103 of file pg_ctl.c.

Referenced by do_start(), and trap_sigint_during_startup().

◆ postopts_file

char postopts_file[MAXPGPATH]
static

Definition at line 96 of file pg_ctl.c.

Referenced by do_status(), main(), and read_post_opts().

◆ progname

◆ promote_file

char promote_file[MAXPGPATH]
static

Definition at line 100 of file pg_ctl.c.

Referenced by do_promote(), and pg_promote().

◆ register_password

char* register_password = NULL
static

Definition at line 91 of file pg_ctl.c.

Referenced by main().

◆ register_servicename

char* register_servicename = "PostgreSQL"
static

Definition at line 89 of file pg_ctl.c.

Referenced by main().

◆ register_username

char* register_username = NULL
static

Definition at line 90 of file pg_ctl.c.

Referenced by main().

◆ shutdown_mode

ShutdownMode shutdown_mode = FAST_MODE
static

Definition at line 78 of file pg_ctl.c.

Referenced by do_restart(), do_stop(), and set_mode().

◆ sig

◆ silent_mode

bool silent_mode = false
static

Definition at line 77 of file pg_ctl.c.

Referenced by do_init(), main(), and print_msg().

◆ start_time

◆ version_file

char version_file[MAXPGPATH]
static

Definition at line 97 of file pg_ctl.c.

Referenced by get_pgpid(), main(), and write_version_file().

◆ wait_seconds

◆ wait_seconds_arg

bool wait_seconds_arg = false
static

Definition at line 76 of file pg_ctl.c.

Referenced by main().