Commit Graph

6446 Commits

Author SHA1 Message Date
Robert Haas
97d136f9e8 Fix longstanding typo in V1 calling conventions documentation.
Erik Rijkers
2010-05-16 03:56:03 +00:00
Tom Lane
7965fd5b0e Improve documentation of pg_restore's -l and -L switches to point out their
interactions with filtering switches, such as -n and -t.  Per a complaint
from Russell Smith.
2010-05-15 18:11:30 +00:00
Marc G. Fournier
30017daeb4 tag 8.1.21 2010-05-14 03:35:26 +00:00
Tom Lane
6499118a90 Update release notes with security issues.
Security: CVE-2010-1169, CVE-2010-1170
2010-05-13 21:27:29 +00:00
Tom Lane
b67abe3db8 Use an entity instead of non-ASCII letter. Thom Brown 2010-05-13 19:16:38 +00:00
Tom Lane
a921879053 Prevent PL/Tcl from loading the "unknown" module from pltcl_modules unless
that is a regular table or view owned by a superuser.  This prevents a
trojan horse attack whereby any unprivileged SQL user could create such a
table and insert code into it that would then get executed in other users'
sessions whenever they call pltcl functions.

Worse yet, because the code was automatically loaded into both the "normal"
and "safe" interpreters at first use, the attacker could execute unrestricted
Tcl code in the "normal" interpreter without there being any pltclu functions
anywhere, or indeed anyone else using pltcl at all: installing pltcl is
sufficient to open the hole.  Change the initialization logic so that the
"unknown" code is only loaded into an interpreter when the interpreter is
first really used.  (That doesn't add any additional security in this
particular context, but it seems a prudent change, and anyway the former
behavior violated the principle of least astonishment.)

Security: CVE-2010-1170
2010-05-13 18:29:37 +00:00
Andrew Dunstan
68e621bfa4 Abandon the use of Perl's Safe.pm to enforce restrictions in plperl, as it is
fundamentally insecure. Instead apply an opmask to the whole interpreter that
imposes restrictions on unsafe operations. These restrictions are much harder
to subvert than is Safe.pm, since there is no container to be broken out of.
Backported to release 7.4.

In releases 7.4, 8.0 and 8.1 this also includes the necessary backporting of
the two interpreters model for plperl and plperlu adopted in release 8.2.

In versions 8.0 and up, the use of Perl's POSIX module to undo its locale
mangling on Windows has become insecure with these changes, so it is
replaced by our own routine, which is also faster.

Nice side effects of the changes include that it is now possible to use perl's
"strict" pragma in a natural way in plperl, and that perl's $a and
$b variables now work as expected in sort routines, and that function
compilation is significantly faster.

Tim Bunce and Andrew Dunstan, with reviews from Alex Hunsaker and
Alexey Klyukin.

Security: CVE-2010-1169
2010-05-13 16:43:41 +00:00
Tom Lane
a65beefa7c Preliminary release notes for releases 8.4.4, 8.3.11, 8.2.17, 8.1.21, 8.0.25,
7.4.29.
2010-05-12 23:27:51 +00:00
Peter Eisentraut
2c862fbf23 IP port -> TCP port
backpatched to 8.1, where this first appeared
2010-04-15 20:45:40 +00:00
Magnus Hagander
dbaaca266a Typo fixes.
Fujii Masao
2010-03-17 18:04:14 +00:00
Marc G. Fournier
53690dce27 tag 8.1.20 2010-03-12 03:51:21 +00:00
Tom Lane
e6bef1156a Preliminary release notes for releases 8.4.3, 8.3.10, 8.2.16, 8.1.20, 8.0.24,
7.4.28.
2010-03-10 01:59:02 +00:00
Magnus Hagander
b2dfc2ff10 Add missing space in example.
Tim Landscheidt
2010-03-08 12:39:29 +00:00
Tom Lane
a3609304b7 Back-patch addition of ssl_renegotiation_limit into 7.4 through 8.1. 2010-02-25 23:44:27 +00:00
Marc G. Fournier
c89eec5064 tag 8.1.19 2009-12-10 03:15:17 +00:00
Tom Lane
ce07e3f60e Update release notes for releases 8.4.2, 8.3.9, 8.2.15, 8.1.19, 8.0.23,
7.4.27.
2009-12-10 00:31:52 +00:00
Tom Lane
595f2744b0 Fix erroneous handling of shared dependencies (ie dependencies on roles)
in CREATE OR REPLACE FUNCTION.  The original code would update pg_shdepend
as if a new function was being created, even if it wasn't, with two bad
consequences: pg_shdepend might record the wrong owner for the function,
and any dependencies for roles mentioned in the function's ACL would be lost.
The fix is very easy: just don't touch pg_shdepend at all when doing a
function replacement.

Also update the CREATE FUNCTION reference page, which never explained
exactly what changes and doesn't change in a function replacement.
In passing, fix the CREATE VIEW reference page similarly; there's no
code bug there, but the docs didn't say what happens.
2009-10-02 18:13:32 +00:00
Marc G. Fournier
164a8ff822 Tag 8.1.18 2009-09-04 02:59:54 +00:00
Tom Lane
230f752a90 Final updates of release notes for 8.4.1, 8.3.8, 8.2.14, 8.1.18, 8.0.22,
7.4.26.
2009-09-03 22:14:25 +00:00
Bruce Momjian
4c46c3f824 Update release notes for 7.4.26, 8.0.22, 8.1.18, 8.2.14, 8.3.8, 8.4.1. 2009-08-27 01:27:00 +00:00
Bruce Momjian
83108d1551 Remove tabs from SGML. 2009-08-15 20:22:59 +00:00
Andrew Dunstan
076abaf6b9 Re-add documentation for --no-readline option of psql, mistakenly removed a decade ago. Backpatch to release 7.4. 2009-08-10 02:39:16 +00:00
Tom Lane
f8d10e50d3 Split the release notes into a separate file for each (active) major branch,
as per my recent proposal.  release.sgml itself is now just a stub that should
change rarely; ideally, only once per major release to add a new include line.
Most editing work will occur in the release-N.N.sgml files.  To update a back
branch for a minor release, just copy the appropriate release-N.N.sgml
file(s) into the back branch.

This commit doesn't change the end-product documentation at all, only the
source layout.  However, it makes it easy to start omitting ancient information
from newer branches' documentation, should we ever decide to do that.
2009-05-02 20:17:57 +00:00
Marc G. Fournier
023c537f47 tag 8.1.17 2009-03-13 02:22:05 +00:00
Tom Lane
05940d393d Update back-branch release notes. 2009-03-12 22:36:20 +00:00
Marc G. Fournier
55a19fa409 tagging 8.1.16 2009-01-30 03:18:18 +00:00
Tom Lane
998a372ebc Update back-branch release notes. 2009-01-30 00:38:02 +00:00
Bruce Momjian
076b64fe93 Update release notes for 8.3.5, 8.2.11, and 8.1.15 to mention the need
to reindex GiST indexes:

	If you were running a previous 8.X.X release, REINDEX all GiST
	indexes after the upgrade.
2009-01-09 01:46:35 +00:00
Tom Lane
943b6b82a9 Remove references to pgsql-ports and pgsql-patches mailing lists from
various documentation, since those lists are now dead/deprecated.
Point to pgsql-bugs and/or pgsql-hackers as appropriate.
2009-01-06 17:27:50 +00:00
Marc G. Fournier
d8ca7ffbea tag 8.1.15 2008-10-31 02:49:03 +00:00
Tom Lane
09df79e8d7 Update back-branch release notes. 2008-10-30 22:23:11 +00:00
Tom Lane
1b0c30f68d Install a more robust solution for the problem of infinite error-processing
recursion when we are unable to convert a localized error message to the
client's encoding.  We've been over this ground before, but as reported by
Ibrar Ahmed, it still didn't work in the case of conversion failures for
the conversion-failure message itself :-(.  Fix by installing a "circuit
breaker" that disables attempts to localize this message once we get into
recursion trouble.

Patch all supported branches, because it is in fact broken in all of them;
though I had to add some missing translations to the older branches in
order to expose the failure in the particular test case I was using.
2008-10-27 19:37:42 +00:00
Tom Lane
3b25d1650c Fix COPY documentation to not imply that HEADER can be used outside CSV mode.
Per gripe from Bill Thoen.
2008-10-10 21:46:56 +00:00
Marc G. Fournier
00f3091e60 tag for 8.1.14 2008-09-19 03:19:16 +00:00
Tom Lane
81dcd77b81 Update back-branch release notes. 2008-09-19 02:45:44 +00:00
Tom Lane
a76e185180 Fix pg_dump docs to acknowledge that you can use -Z with plain text output. Pointed out by Daniel Migowski. 2008-08-26 00:03:36 +00:00
Tom Lane
638aa5a7af Stamp 8.1.13 (except for configure.in/configure) 2008-06-08 22:14:47 +00:00
Tom Lane
083bb0fcb5 Update release notes for ALTER AGGREGATE fix. 2008-06-08 21:46:38 +00:00
Tom Lane
a8690111f9 Update release notes for 8.3.3 et al. 2008-06-07 22:11:09 +00:00
Tom Lane
5766e91752 Remove link that pre-8.2 doc tools don't support. 2008-06-06 05:33:39 +00:00
Tom Lane
7ac3f8485b Stamp 8.1.12 (except for configure.in/configure) 2008-06-05 23:56:05 +00:00
Tom Lane
06607007b4 Draft release notes for upcoming back-branch updates. 2008-06-04 03:16:35 +00:00
Tom Lane
32184bfa0c Improve GRANT documentation to point out that UPDATE and DELETE typically
require SELECT privilege as well, since you normally need to read existing
column values within such commands.  This behavior is according to spec,
but we'd never documented it before.  Per gripe from Volkan Yazici.
2008-05-28 00:45:59 +00:00
Magnus Hagander
0f130711d0 Replace developer FAQ with a reference to the wiki, which is where
it now lives (per discussion). Leave the other FAQs alone for now.
2008-04-22 09:26:39 +00:00
Magnus Hagander
3cf4913d17 Add link to major version release notes at the top of the minor
version ones, to make it clear to users just browsing the notes
that there are a lot more changes available from whatever version
they are at than what's in the minor version release notes.
2008-04-21 09:45:05 +00:00
Tom Lane
e8051df2c1 Fix LISTEN/NOTIFY race condition reported by Laurent Birtz, by postponing
pg_listener modifications commanded by LISTEN and UNLISTEN until the end
of the current transaction.  This allows us to hold the ExclusiveLock on
pg_listener until after commit, with no greater risk of deadlock than there
was before.  Aside from fixing the race condition, this gets rid of a
truly ugly kludge that was there before, namely having to ignore
HeapTupleBeingUpdated failures during NOTIFY.  There is a small potential
incompatibility, which is that if a transaction issues LISTEN or UNLISTEN
and then looks into pg_listener before committing, it won't see any resulting
row insertion or deletion, where before it would have.  It seems unlikely
that anyone would be depending on that, though.

This patch also disallows LISTEN and UNLISTEN inside a prepared transaction.
That case had some pretty undesirable properties already, such as possibly
allowing pg_listener entries to be made for PIDs no longer present, so
disallowing it seems like a better idea than trying to maintain the behavior.
2008-03-12 20:12:14 +00:00
Tom Lane
78f53d5a00 Fix an ancient oversight in libpq's handling of V3-protocol COPY OUT mode:
we need to be able to swallow NOTICE messages, and potentially also
ParameterStatus messages (although the latter would be a bit weird),
without exiting COPY OUT state.  Fix it, and adjust the protocol documentation
to emphasize the need for this.  Per off-list report from Alexander Galler.
2008-01-14 18:46:33 +00:00
Tom Lane
d419ce4568 Stamp release 8.1.11.
Security: CVE-2007-4769, CVE-2007-4772, CVE-2007-6067, CVE-2007-6600, CVE-2007-6601
2008-01-03 21:41:24 +00:00
Tom Lane
bf4d342f8e Update release notes for security releases.
Security: CVE-2007-4769, CVE-2007-4772, CVE-2007-6067, CVE-2007-6600, CVE-2007-6601
2008-01-03 21:35:49 +00:00
Tom Lane
46cf9c260d Make standard maintenance operations (including VACUUM, ANALYZE, REINDEX,
and CLUSTER) execute as the table owner rather than the calling user, using
the same privilege-switching mechanism already used for SECURITY DEFINER
functions.  The purpose of this change is to ensure that user-defined
functions used in index definitions cannot acquire the privileges of a
superuser account that is performing routine maintenance.  While a function
used in an index is supposed to be IMMUTABLE and thus not able to do anything
very interesting, there are several easy ways around that restriction; and
even if we could plug them all, there would remain a risk of reading sensitive
information and broadcasting it through a covert channel such as CPU usage.

To prevent bypassing this security measure, execution of SET SESSION
AUTHORIZATION and SET ROLE is now forbidden within a SECURITY DEFINER context.

Thanks to Itagaki Takahiro for reporting this vulnerability.

Security: CVE-2007-6600
2008-01-03 21:24:26 +00:00