OSDN Git Service

Move the check for whether walreceiver has authenticated as a superuser
authorTom Lane <tgl@sss.pgh.pa.us>
Wed, 21 Apr 2010 00:51:57 +0000 (00:51 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Wed, 21 Apr 2010 00:51:57 +0000 (00:51 +0000)
from walsender.c, where it didn't really belong, to postinit.c where it does
belong (and is essentially free, too).

src/backend/replication/walsender.c
src/backend/utils/init/postinit.c

index 26fddba..1c1e9f1 100644 (file)
@@ -30,7 +30,7 @@
  *
  *
  * IDENTIFICATION
- *       $PostgreSQL: pgsql/src/backend/replication/walsender.c,v 1.16 2010/04/12 10:18:50 heikki Exp $
+ *       $PostgreSQL: pgsql/src/backend/replication/walsender.c,v 1.17 2010/04/21 00:51:56 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
 #include "replication/walsender.h"
 #include "storage/fd.h"
 #include "storage/ipc.h"
-#include "storage/lock.h"
 #include "storage/pmsignal.h"
 #include "tcop/tcopprot.h"
 #include "utils/guc.h"
 #include "utils/memutils.h"
 #include "utils/ps_status.h"
 
+
 /* Array of WalSnds in shared memory */
 WalSndCtlData *WalSndCtl = NULL;
 
@@ -114,11 +114,6 @@ WalSenderMain(void)
 {
        MemoryContext walsnd_context;
 
-       if (!superuser())
-               ereport(FATAL,
-                               (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
-                                errmsg("must be superuser to start walsender")));
-
        if (RecoveryInProgress())
                ereport(FATAL,
                                (errcode(ERRCODE_CANNOT_CONNECT_NOW),
index 1fc41cc..b812c40 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *       $PostgreSQL: pgsql/src/backend/utils/init/postinit.c,v 1.210 2010/04/20 23:48:47 tgl Exp $
+ *       $PostgreSQL: pgsql/src/backend/utils/init/postinit.c,v 1.211 2010/04/21 00:51:57 tgl Exp $
  *
  *
  *-------------------------------------------------------------------------
@@ -624,6 +624,11 @@ InitPostgres(const char *in_dbname, Oid dboid, const char *username,
        if (am_walsender)
        {
                Assert(!bootstrap);
+               /* must have authenticated as a superuser */
+               if (!am_superuser)
+                       ereport(FATAL,
+                                       (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
+                                        errmsg("must be superuser to start walsender")));
                /* report this backend in the PgBackendStatus array */
                pgstat_bestart();
                /* close the transaction we started above */