]> granicus.if.org Git - postgresql/commitdiff
pg_restore: Don't allow non-positive number of jobs
authorStephen Frost <sfrost@snowman.net>
Wed, 11 Jan 2017 20:46:16 +0000 (15:46 -0500)
committerStephen Frost <sfrost@snowman.net>
Wed, 11 Jan 2017 20:46:16 +0000 (15:46 -0500)
pg_restore will currently accept invalid values for the number of
parallel jobs to run (eg: -1), unlike pg_dump which does check that the
value provided is reasonable.

Worse, '-1' is actually a valid, independent, parameter (as an alias for
--single-transaction), leading to potentially completely unexpected
results from a command line such as:

  -> pg_restore -j -1

Where a user would get neither parallel jobs nor a single-transaction.

Add in validity checking of the parallel jobs option, as we already have
in pg_dump, before we try to open up the archive.  Also move the check
that we haven't been asked to run more parallel jobs than possible on
Windows to the same place, so we do all the option validity checking
before opening the archive.

Back-patch all the way, though for 9.2 we're adding the Windows-specific
check against MAXIMUM_WAIT_OBJECTS as that check wasn't back-patched
originally.

Discussion: https://www.postgresql.org/message-id/20170110044815.GC18360%40tamriel.snowman.net

src/bin/pg_dump/pg_restore.c

index f6c835be0d123de57cd2336851a51faae4bfcda9..98f4be64efaded7f04b8c2be5a1744b299a686f7 100644 (file)
@@ -313,6 +313,22 @@ main(int argc, char **argv)
                opts->useDB = 1;
        }
 
+       if (opts->number_of_jobs <= 0)
+       {
+               fprintf(stderr, _("%s: invalid number of parallel jobs\n"), progname);
+               exit(1);
+       }
+
+       /* See comments in pg_dump.c */
+#ifdef WIN32
+       if (opts->number_of_jobs > MAXIMUM_WAIT_OBJECTS)
+       {
+               fprintf(stderr, _("%s: maximum number of parallel jobs is %d\n"),
+                               progname, MAXIMUM_WAIT_OBJECTS);
+               exit(1);
+       }
+#endif
+
        /* Can't do single-txn mode with multiple connections */
        if (opts->single_txn && opts->number_of_jobs > 1)
        {