Last-minute updates for release notes.

Add entries for security and not-quite-security issues.

Security: CVE-2015-5288, CVE-2015-5289
This commit is contained in:
Tom Lane 2015-10-05 10:57:15 -04:00
parent 10cfd6f854
commit 272ede71a6
5 changed files with 183 additions and 0 deletions

View File

@ -40,6 +40,20 @@
<itemizedlist>
<listitem>
<para>
Fix <filename>contrib/pgcrypto</> to detect and report
too-short <function>crypt()</> salts (Josh Kupershmidt)
</para>
<para>
Certain invalid salt arguments crashed the server or disclosed a few
bytes of server memory. We have not ruled out the viability of
attacks that arrange for presence of confidential information in the
disclosed bytes, but they seem unlikely. (CVE-2015-5288)
</para>
</listitem>
<listitem>
<para>
Fix subtransaction cleanup after a portal (cursor) belonging to an
@ -124,6 +138,14 @@
</para>
</listitem>
<listitem>
<para>
Guard against hard-to-reach stack overflows involving record types,
range types, <type>json</>, <type>jsonb</>, <type>tsquery</>,
<type>ltxtquery</> and <type>query_int</> (Noah Misch)
</para>
</listitem>
<listitem>
<para>
Fix handling of <literal>DOW</> and <literal>DOY</> in datetime input

View File

@ -34,6 +34,20 @@
<itemizedlist>
<listitem>
<para>
Fix <filename>contrib/pgcrypto</> to detect and report
too-short <function>crypt()</> salts (Josh Kupershmidt)
</para>
<para>
Certain invalid salt arguments crashed the server or disclosed a few
bytes of server memory. We have not ruled out the viability of
attacks that arrange for presence of confidential information in the
disclosed bytes, but they seem unlikely. (CVE-2015-5288)
</para>
</listitem>
<listitem>
<para>
Fix subtransaction cleanup after a portal (cursor) belonging to an
@ -130,6 +144,14 @@
</para>
</listitem>
<listitem>
<para>
Guard against hard-to-reach stack overflows involving record types,
range types, <type>json</>, <type>jsonb</>, <type>tsquery</>,
<type>ltxtquery</> and <type>query_int</> (Noah Misch)
</para>
</listitem>
<listitem>
<para>
Fix handling of <literal>DOW</> and <literal>DOY</> in datetime input

View File

@ -34,6 +34,20 @@
<itemizedlist>
<listitem>
<para>
Fix <filename>contrib/pgcrypto</> to detect and report
too-short <function>crypt()</> salts (Josh Kupershmidt)
</para>
<para>
Certain invalid salt arguments crashed the server or disclosed a few
bytes of server memory. We have not ruled out the viability of
attacks that arrange for presence of confidential information in the
disclosed bytes, but they seem unlikely. (CVE-2015-5288)
</para>
</listitem>
<listitem>
<para>
Fix subtransaction cleanup after a portal (cursor) belonging to an
@ -136,6 +150,14 @@ Branch: REL9_1_STABLE [9b1b9446f] 2015-08-27 12:22:10 -0400
</para>
</listitem>
<listitem>
<para>
Guard against hard-to-reach stack overflows involving record types,
range types, <type>json</>, <type>jsonb</>, <type>tsquery</>,
<type>ltxtquery</> and <type>query_int</> (Noah Misch)
</para>
</listitem>
<listitem>
<para>
Fix handling of <literal>DOW</> and <literal>DOY</> in datetime input

View File

@ -34,6 +34,34 @@
<itemizedlist>
<listitem>
<para>
Guard against stack overflows in <type>json</> parsing
(Oskari Saarenmaa)
</para>
<para>
If an application constructs PostgreSQL <type>json</>
or <type>jsonb</> values from arbitrary user input, the application's
users can reliably crash the PostgreSQL server, causing momentary
denial of service. (CVE-2015-5289)
</para>
</listitem>
<listitem>
<para>
Fix <filename>contrib/pgcrypto</> to detect and report
too-short <function>crypt()</> salts (Josh Kupershmidt)
</para>
<para>
Certain invalid salt arguments crashed the server or disclosed a few
bytes of server memory. We have not ruled out the viability of
attacks that arrange for presence of confidential information in the
disclosed bytes, but they seem unlikely. (CVE-2015-5288)
</para>
</listitem>
<listitem>
<para>
Fix subtransaction cleanup after a portal (cursor) belonging to an
@ -146,6 +174,14 @@
</para>
</listitem>
<listitem>
<para>
Guard against hard-to-reach stack overflows involving record types,
range types, <type>json</>, <type>jsonb</>, <type>tsquery</>,
<type>ltxtquery</> and <type>query_int</> (Noah Misch)
</para>
</listitem>
<listitem>
<para>
Fix handling of <literal>DOW</> and <literal>DOY</> in datetime input

View File

@ -33,6 +33,53 @@
<itemizedlist>
<!--
Author: Noah Misch <noah@leadboat.com>
Branch: master [08fa47c48] 2015-10-05 10:06:29 -0400
Branch: REL9_5_STABLE [98f30d2e5] 2015-10-05 10:06:33 -0400
Branch: REL9_4_STABLE [16d58b5b5] 2015-10-05 10:06:34 -0400
Branch: REL9_3_STABLE [f8862172e] 2015-10-05 10:06:34 -0400
-->
<listitem>
<para>
Guard against stack overflows in <type>json</> parsing
(Oskari Saarenmaa)
</para>
<para>
If an application constructs PostgreSQL <type>json</>
or <type>jsonb</> values from arbitrary user input, the application's
users can reliably crash the PostgreSQL server, causing momentary
denial of service. (CVE-2015-5289)
</para>
</listitem>
<!--
Author: Noah Misch <noah@leadboat.com>
Branch: master [1d812c8b0] 2015-10-05 10:06:29 -0400
Branch: REL9_5_STABLE [4d6752277] 2015-10-05 10:06:33 -0400
Branch: REL9_4_STABLE [4d95419e8] 2015-10-05 10:06:34 -0400
Branch: REL9_3_STABLE [cc1210f0a] 2015-10-05 10:06:34 -0400
Branch: REL9_2_STABLE [56232f987] 2015-10-05 10:06:35 -0400
Branch: REL9_1_STABLE [48f6310bc] 2015-10-05 10:06:35 -0400
Branch: REL9_0_STABLE [188e081ef] 2015-10-05 10:06:36 -0400
-->
<listitem>
<para>
Fix <filename>contrib/pgcrypto</> to detect and report
too-short <function>crypt()</> salts (Josh Kupershmidt)
</para>
<para>
Certain invalid salt arguments crashed the server or disclosed a few
bytes of server memory. We have not ruled out the viability of
attacks that arrange for presence of confidential information in the
disclosed bytes, but they seem unlikely. (CVE-2015-5288)
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
Branch: master [c5454f99c] 2015-09-04 13:37:14 -0400
@ -201,6 +248,13 @@ Branch: REL9_3_STABLE [fee2275ae] 2015-09-24 14:53:33 +0200
Branch: REL9_2_STABLE [f12932dd4] 2015-09-24 14:53:33 +0200
Branch: REL9_1_STABLE [ff090bbb7] 2015-09-24 14:53:33 +0200
Branch: REL9_0_STABLE [078d471a9] 2015-09-24 14:53:33 +0200
Branch: master [2596d705b] 2015-10-05 11:53:43 +0200
Branch: REL9_5_STABLE [0577821b5] 2015-10-05 11:56:58 +0200
Branch: REL9_4_STABLE [13ac4c035] 2015-10-05 11:57:07 +0200
Branch: REL9_3_STABLE [393341714] 2015-10-05 11:57:11 +0200
Branch: REL9_2_STABLE [e07cfef34] 2015-10-05 11:57:15 +0200
Branch: REL9_1_STABLE [7116a3e98] 2015-10-05 11:57:20 +0200
Branch: REL9_0_STABLE [eeb0b7830] 2015-10-05 11:57:25 +0200
-->
<listitem>
@ -266,6 +320,33 @@ Branch: REL9_0_STABLE [a89781e34] 2015-09-21 12:12:16 -0400
</para>
</listitem>
<!--
Author: Noah Misch <noah@leadboat.com>
Branch: master [30cb12881] 2015-10-05 10:06:29 -0400
Branch: REL9_5_STABLE [acf0da1e6] 2015-10-05 10:06:33 -0400
Branch: REL9_4_STABLE [a0c02ed5b] 2015-10-05 10:06:34 -0400
Branch: REL9_3_STABLE [9286ff78f] 2015-10-05 10:06:34 -0400
Branch: REL9_2_STABLE [5e43130b5] 2015-10-05 10:06:35 -0400
Branch: REL9_1_STABLE [9581e2699] 2015-10-05 10:06:35 -0400
Branch: REL9_0_STABLE [0398e071a] 2015-10-05 10:06:36 -0400
Branch: master [5976097c0] 2015-10-05 10:06:30 -0400
Branch: REL9_5_STABLE [7bed97d48] 2015-10-05 10:06:33 -0400
Branch: REL9_4_STABLE [bed3f6d03] 2015-10-05 10:06:34 -0400
Branch: REL9_3_STABLE [28dea9485] 2015-10-05 10:06:34 -0400
Branch: REL9_2_STABLE [ea68c221f] 2015-10-05 10:06:35 -0400
Branch: REL9_1_STABLE [879877b00] 2015-10-05 10:06:35 -0400
Branch: REL9_0_STABLE [682a25d41] 2015-10-05 10:06:36 -0400
Branch: REL9_2_STABLE [8dacb29ca] 2015-10-05 10:06:35 -0400
-->
<listitem>
<para>
Guard against hard-to-reach stack overflows involving record types,
range types, <type>json</>, <type>jsonb</>, <type>tsquery</>,
<type>ltxtquery</> and <type>query_int</> (Noah Misch)
</para>
</listitem>
<!--
Author: Greg Stark <stark@mit.edu>
Branch: master [258ee1b63] 2015-09-06 03:35:56 +0100