E.187. Release 8.3.11
Release date: 2010-05-17
This release contains a variety of fixes from 8.3.10. For information about new features in the 8.3 major release, see Section E.198 .
E.187.1. Migration to Version 8.3.11
A dump/restore is not required for those running 8.3.X. However, if you are upgrading from a version earlier than 8.3.8, see Section E.190 .
E.187.2. Changes
-
Enforce restrictions in
plperl
using an opmask applied to the whole interpreter, instead of usingSafe.pm
(Tim Bunce, Andrew Dunstan)Recent developments have convinced us that
Safe.pm
is too insecure to rely on for makingplperl
trustable. This change removes use ofSafe.pm
altogether, in favor of using a separate interpreter with an opcode mask that is always applied. Pleasant side effects of the change include that it is now possible to use Perl'sstrict
pragma in a natural way inplperl
, and that Perl's$a
and$b
variables work as expected in sort routines, and that function compilation is significantly faster. (CVE-2010-1169) -
Prevent PL/Tcl from executing untrustworthy code from
pltcl_modules
(Tom)PL/Tcl's feature for autoloading Tcl code from a database table could be exploited for trojan-horse attacks, because there was no restriction on who could create or insert into that table. This change disables the feature unless
pltcl_modules
is owned by a superuser. (However, the permissions on the table are not checked, so installations that really need a less-than-secure modules table can still grant suitable privileges to trusted non-superusers.) Also, prevent loading code into the unrestricted " normal " Tcl interpreter unless we are really going to execute apltclu
function. (CVE-2010-1170) -
Fix possible crash if a cache reset message is received during rebuild of a relcache entry (Heikki)
This error was introduced in 8.3.10 while fixing a related failure.
-
Apply per-function GUC settings while running the language validator for the function (Itagaki Takahiro)
This avoids failures if the function's code is invalid without the setting; an example is that SQL functions may not parse if the
search_path
is not correct. -
Do not allow an unprivileged user to reset superuser-only parameter settings (Alvaro)
Previously, if an unprivileged user ran
ALTER USER ... RESET ALL
for himself, orALTER DATABASE ... RESET ALL
for a database he owns, this would remove all special parameter settings for the user or database, even ones that are only supposed to be changeable by a superuser. Now, theALTER
will only remove the parameters that the user has permission to change. -
Avoid possible crash during backend shutdown if shutdown occurs when a
CONTEXT
addition would be made to log entries (Tom)In some cases the context-printing function would fail because the current transaction had already been rolled back when it came time to print a log message.
-
Ensure the archiver process responds to changes in
archive_command
as soon as possible (Tom) -
Update PL/Perl's
ppport.h
for modern Perl versions (Andrew) -
Fix assorted memory leaks in PL/Python (Andreas Freund, Tom)
-
Prevent infinite recursion in psql when expanding a variable that refers to itself (Tom)
-
Fix psql 's
\copy
to not add spaces around a dot within\copy (select ...)
(Tom)Addition of spaces around the decimal point in a numeric literal would result in a syntax error.
-
Fix unnecessary " GIN indexes do not support whole-index scans " errors for unsatisfiable queries using
contrib/intarray
operators (Tom) -
Ensure that
contrib/pgstattuple
functions respond to cancel interrupts promptly (Tatsuhito Kasahara) -
Make server startup deal properly with the case that
shmget()
returnsEINVAL
for an existing shared memory segment (Tom)This behavior has been observed on BSD-derived kernels including macOS. It resulted in an entirely-misleading startup failure complaining that the shared memory request size was too large.
-
Avoid possible crashes in syslogger process on Windows (Heikki)
-
Deal more robustly with incomplete time zone information in the Windows registry (Magnus)
-
Update the set of known Windows time zone names (Magnus)
-
Update time zone data files to tzdata release 2010j for DST law changes in Argentina, Australian Antarctic, Bangladesh, Mexico, Morocco, Pakistan, Palestine, Russia, Syria, Tunisia; also historical corrections for Taiwan.
Also, add
PKST
(Pakistan Summer Time) to the default set of timezone abbreviations.