]> granicus.if.org Git - postgresql/log
postgresql
17 years agoStamp releases 8.2.5, 8.1.10, 8.0.14, 7.4.18, 7.3.20.
Bruce Momjian [Tue, 11 Sep 2007 17:36:45 +0000 (17:36 +0000)]
Stamp releases 8.2.5, 8.1.10, 8.0.14, 7.4.18, 7.3.20.

Update FAQs for 8.2.5.

17 years agoStamp
Bruce Momjian [Tue, 11 Sep 2007 17:19:15 +0000 (17:19 +0000)]
Stamp

17 years agoFix aboriginal bug in _tarAddFile(): when complaining that the amount of data
Tom Lane [Wed, 29 Aug 2007 16:32:05 +0000 (16:32 +0000)]
Fix aboriginal bug in _tarAddFile(): when complaining that the amount of data
read from the temp file didn't match the file length reported by ftello(),
the wrong variable's value was printed, and so the message made no sense.
Clean up a couple other coding infelicities while at it.

17 years agoFix brain fade in DefineIndex(): it was continuing to access the table's
Tom Lane [Sat, 25 Aug 2007 19:08:44 +0000 (19:08 +0000)]
Fix brain fade in DefineIndex(): it was continuing to access the table's
relcache entry after having heap_close'd it.  This could lead to misbehavior
if a relcache flush wiped out the cache entry meanwhile.  In 8.2 there is a
very real risk of CREATE INDEX CONCURRENTLY using the wrong relid for locking
and waiting purposes.  I think the bug is only cosmetic in 8.0 and 8.1,
because their transgression is limited to using RelationGetRelationName(rel)
in an ereport message immediately after heap_close, and there's no way (except
with special debugging options) for a cache flush to occur in that interval.
Not quite sure that it's cosmetic in 7.4, but seems best to patch anyway.

Found by trying to run the regression tests with CLOBBER_CACHE_ALWAYS enabled.
Maybe we should try to do that on a regular basis --- it's awfully slow,
but perhaps some fast buildfarm machine could do it once in awhile.

17 years agoFix combo_decrypt() to throw an error for zero-length input when using a
Tom Lane [Thu, 23 Aug 2007 16:16:20 +0000 (16:16 +0000)]
Fix combo_decrypt() to throw an error for zero-length input when using a
padded encryption scheme.  Formerly it would try to access res[(unsigned) -1],
which resulted in core dumps on 64-bit machines, and was certainly trouble
waiting to happen on 32-bit machines (though in at least the known case
it was harmless because that byte would be overwritten after return).
Per report from Ken Colson; fix by Marko Kreen.

17 years agoFix potential access-off-the-end-of-memory in varbit_out(): it fetched the
Tom Lane [Tue, 21 Aug 2007 02:40:33 +0000 (02:40 +0000)]
Fix potential access-off-the-end-of-memory in varbit_out(): it fetched the
byte after the last full byte of the bit array, regardless of whether that
byte was part of the valid data or not.  Found by buildfarm testing.
Thanks to Stefan Kaltenbrunner for nailing down the cause.

17 years agoFix a gradual memory leak in ExecReScanAgg(). Because the aggregation
Neil Conway [Wed, 8 Aug 2007 18:06:55 +0000 (18:06 +0000)]
Fix a gradual memory leak in ExecReScanAgg(). Because the aggregation
hash table is allocated in a child context of the agg node's memory
context, MemoryContextReset() will reset but *not* delete the child
context. Since ExecReScanAgg() proceeds to build a new hash table
from scratch (in a new sub-context), this results in leaking the
header for the previous memory context. Therefore, use
MemoryContextResetAndDeleteChildren() instead.

Credit: My colleague Sailesh Krishnamurthy at Truviso for isolating
the cause of the leak.

17 years agoFix pg_restore to guard against unexpected EOF while reading an archive file.
Tom Lane [Mon, 6 Aug 2007 01:38:49 +0000 (01:38 +0000)]
Fix pg_restore to guard against unexpected EOF while reading an archive file.
Per report and partial patch from Chad Wagner.

17 years agoFix a memory leak in tuplestore_end(). Unlikely to be significant during
Neil Conway [Thu, 2 Aug 2007 17:49:01 +0000 (17:49 +0000)]
Fix a memory leak in tuplestore_end(). Unlikely to be significant during
normal operation, but tuplestore_end() ought to do what it claims to do.

17 years agoFix a bug in the original implementation of redundant-join-clause removal:
Tom Lane [Tue, 31 Jul 2007 19:54:27 +0000 (19:54 +0000)]
Fix a bug in the original implementation of redundant-join-clause removal:
clauses in which one side or the other references both sides of the join
cannot be removed as redundant, because that expression won't have been
constrained below the join.  Per report from Sergey Burladyan.

17 years agoFix security definer functions with polymorphic arguments. This case has
Tom Lane [Tue, 31 Jul 2007 15:50:17 +0000 (15:50 +0000)]
Fix security definer functions with polymorphic arguments.  This case has
never worked because fmgr_security_definer() neglected to pass the fn_expr
information through.  Per report from Viatcheslav Kalinin.

17 years agoThe proper guaranteed buffer size for errors is
Magnus Hagander [Mon, 23 Jul 2007 18:10:13 +0000 (18:10 +0000)]
The proper guaranteed buffer size for errors is
INITIAL_EXPBUFFER_SIZE, not PQERRORMSG_LENGTH.

Backport only - the proper fix in HEAD is to
use PQExpBuffers everywhere.

17 years agoFix elog.c to avoid infinite recursion (leading to backend crash) when
Tom Lane [Sat, 21 Jul 2007 22:12:32 +0000 (22:12 +0000)]
Fix elog.c to avoid infinite recursion (leading to backend crash) when
log_min_error_statement is active and there is some problem in logging the
current query string; for example, that it's too long to include in the log
message without running out of memory.  This problem has existed since the
log_min_error_statement feature was introduced.  No doubt the reason it
wasn't detected long ago is that 8.2 is the first release that defaults
log_min_error_statement to less than PANIC level.
Per report from Bill Moran.

17 years agoMake replace(), split_part(), and string_to_array() behave somewhat sanely
Tom Lane [Thu, 19 Jul 2007 20:34:48 +0000 (20:34 +0000)]
Make replace(), split_part(), and string_to_array() behave somewhat sanely
when handed an invalidly-encoded pattern.  The previous coding could get
into an infinite loop if pg_mb2wchar_with_len() returned a zero-length
string after we'd tested for nonempty pattern; which is exactly what it
will do if the string consists only of an incomplete multibyte character.
This led to either an out-of-memory error or a backend crash depending
on platform.  Per report from Wiktor Wodecki.

17 years agoFix outfuncs.c to dump A_Const nodes representing NULLs correctly. This has
Tom Lane [Tue, 17 Jul 2007 01:22:18 +0000 (01:22 +0000)]
Fix outfuncs.c to dump A_Const nodes representing NULLs correctly.  This has
been broken since forever, but was not noticed because people seldom look
at raw parse trees.  AFAIK, no impact on users except that debug_print_parse
might fail; but patch it all the way back anyway.  Per report from Jeff Ross.

17 years agoRestrict non-superusers to password authenticated connections
Joe Conway [Mon, 9 Jul 2007 01:43:57 +0000 (01:43 +0000)]
Restrict non-superusers to password authenticated connections
to prevent possible escalation of privilege. Provide new SECURITY
DEFINER functions with old behavior, but initially REVOKE ALL
from public for these functions. Per list discussion and design
proposed by Tom Lane.

17 years agoFix failure to restart Postgres when Linux kernel returns EIDRM for shmctl().
Tom Lane [Mon, 2 Jul 2007 20:12:21 +0000 (20:12 +0000)]
Fix failure to restart Postgres when Linux kernel returns EIDRM for shmctl().

This is a Linux kernel bug that apparently exists in every extant kernel
version: sometimes shmctl() will fail with EIDRM when EINVAL is correct.
We were assuming that EIDRM indicates a possible conflict with pre-existing
backends, and refusing to start the postmaster when this happens.  Fortunately,
there does not seem to be any case where Linux can legitimately return EIDRM
(it doesn't track shmem segments in a way that would allow that), so we can
get away with just assuming that EIDRM means EINVAL on this platform.

Per reports from Michael Fuhr and Jon Lapham --- it's a bit surprising
we have not seen more reports, actually.

17 years agoFix a passel of ancient bugs in to_char(), including two distinct buffer
Tom Lane [Fri, 29 Jun 2007 01:52:14 +0000 (01:52 +0000)]
Fix a passel of ancient bugs in to_char(), including two distinct buffer
overruns (neither of which seem likely to be exploitable as security holes,
fortunately, since the provoker can't control the data written).  One of
these is due to choosing to stomp on the output of a called function, which
is bad news in any case; make it treat the called functions' results as
read-only.  Avoid some unnecessary palloc/pfree traffic too; it's not
really helpful to free small temporary objects, and again this is presuming
more than it ought to about the nature of the results of called functions.
Per report from Patrick Welche and additional code-reading by Imad.

17 years agotransformColumnDefinition failed to complain about
Tom Lane [Wed, 20 Jun 2007 18:21:39 +0000 (18:21 +0000)]
transformColumnDefinition failed to complain about
create table foo (bar int default null default 3);
due to not thinking about the special-case handling of DEFAULT NULL.
Problem noticed while investigating bug #3396.

17 years agoCREATE DOMAIN ... DEFAULT NULL failed because gram.y special-cases DEFAULT
Tom Lane [Wed, 20 Jun 2007 18:16:18 +0000 (18:16 +0000)]
CREATE DOMAIN ... DEFAULT NULL failed because gram.y special-cases DEFAULT
NULL and DefineDomain didn't.  Bug goes all the way back to original coding
of domains.  Per bug #3396 from Sergey Burladyan.

17 years agoFix erroneous error reporting for overlength input in text_date(),
Tom Lane [Sat, 2 Jun 2007 16:41:41 +0000 (16:41 +0000)]
Fix erroneous error reporting for overlength input in text_date(),
text_time(), and text_timetz().  7.4-vintage bug found by Greg Stark.

17 years agoFix aboriginal bug in BufFileDumpBuffer that would cause it to write the
Tom Lane [Fri, 1 Jun 2007 23:43:34 +0000 (23:43 +0000)]
Fix aboriginal bug in BufFileDumpBuffer that would cause it to write the
wrong data when dumping a bufferload that crosses a component-file boundary.
This probably has not been seen in the wild because (a) component files are
normally 1GB apiece and (b) non-block-aligned buffer usage is relatively
rare.  But it's fairly easy to reproduce a problem if one reduces RELSEG_SIZE
in a test build.  Kudos to Kurt Harriman for spotting the bug.

17 years agoFix spurious German index entry
Peter Eisentraut [Mon, 21 May 2007 15:00:57 +0000 (15:00 +0000)]
Fix spurious German index entry

17 years agoRemove redundant logging of send failures when SSL is in use. While pqcomm.c
Tom Lane [Fri, 18 May 2007 01:20:48 +0000 (01:20 +0000)]
Remove redundant logging of send failures when SSL is in use.  While pqcomm.c
had been taught not to do that ages ago, the SSL code was helpfully bleating
anyway.  Resolves some recent reports such as bug #3266; however the
underlying cause of the related bug #2829 is still unclear.

17 years agoDocument that CLUSTER breaks MVCC visibility rules.
Magnus Hagander [Sun, 13 May 2007 16:04:22 +0000 (16:04 +0000)]
Document that CLUSTER breaks MVCC visibility rules.
(Not needed in cvs head, because CLUSTER itself is fixed there)

Heikki Linnakangas

17 years agoFix a thinko in my patch of a couple months ago for bug #3116: it did the
Tom Lane [Tue, 1 May 2007 18:54:24 +0000 (18:54 +0000)]
Fix a thinko in my patch of a couple months ago for bug #3116: it did the
wrong thing when inlining polymorphic SQL functions, because it was using the
function's declared return type where it should have used the actual result
type of the current call.  In 8.1 and 8.2 this causes obvious failures even if
you don't have assertions turned on; in 8.0 and 7.4 it would only be a problem
if the inlined expression were used as an input to a function that did
run-time type determination on its inputs.  Add a regression test, since this
is evidently an under-tested area.

17 years agoFix dynahash.c to suppress hash bucket splits while a hash_seq_search() scan
Tom Lane [Thu, 26 Apr 2007 23:25:41 +0000 (23:25 +0000)]
Fix dynahash.c to suppress hash bucket splits while a hash_seq_search() scan
is in progress on the same hashtable.  This seems the least invasive way to
fix the recently-recognized problem that a split could cause the scan to
visit entries twice or (with much lower probability) miss them entirely.
The only field-reported problem caused by this is the "failed to re-find
shared lock object" PANIC in COMMIT PREPARED reported by Michel Dorochevsky,
which was caused by multiply visited entries.  However, it seems certain
that mdsync() is vulnerable to missing required fsync's due to missed
entries, and I am fearful that RelationCacheInitializePhase2() might be at
risk as well.  Because of that and the generalized hazard presented by this
bug, back-patch all the supported branches.

Along the way, fix pg_prepared_statement() and pg_cursor() to not assume
that the hashtables they are examining will stay static between calls.
This is risky regardless of the newly noted dynahash problem, because
hash_seq_search() has never promised to cope with deletion of table entries
other than the just-returned one.  There may be no bug here because the only
supported way to call these functions is via ExecMakeTableFunctionResult()
which will cycle them to completion before doing anything very interesting,
but it seems best to get rid of the assumption.  This affects 8.2 and HEAD
only, since those functions weren't there earlier.

17 years agoFix newly-introduced documentation typo.
Neil Conway [Mon, 23 Apr 2007 16:53:13 +0000 (16:53 +0000)]
Fix newly-introduced documentation typo.

17 years agoUpdate configure in for new release REL7_4_17
PostgreSQL Daemon [Fri, 20 Apr 2007 15:15:43 +0000 (15:15 +0000)]
Update configure in for new release

Security: hold for release

17 years agoFix markup.
Tom Lane [Fri, 20 Apr 2007 03:28:05 +0000 (03:28 +0000)]
Fix markup.

Security: CVE-2007-2138

17 years agoFix markup.
Tom Lane [Fri, 20 Apr 2007 03:10:51 +0000 (03:10 +0000)]
Fix markup.

Security: CVE-2007-2138

17 years agoSupport explicit placement of the temporary-table schema within search_path.
Tom Lane [Fri, 20 Apr 2007 02:38:46 +0000 (02:38 +0000)]
Support explicit placement of the temporary-table schema within search_path.
This is needed to allow a security-definer function to set a truly secure
value of search_path.  Without it, a malicious user can use temporary objects
to execute code with the privileges of the security-definer function.  Even
pushing the temp schema to the back of the search path is not quite good
enough, because a function or operator at the back of the path might still
capture control from one nearer the front due to having a more exact datatype
match.  Hence, disable searching the temp schema altogether for functions and
operators.

Security: CVE-2007-2138

17 years agoRepair PANIC condition in hash indexes when a previous index extension attempt
Tom Lane [Thu, 19 Apr 2007 20:24:36 +0000 (20:24 +0000)]
Repair PANIC condition in hash indexes when a previous index extension attempt
failed (due to lock conflicts or out-of-space).  We might have already
extended the index's filesystem EOF before failing, causing the EOF to be
beyond what the metapage says is the last used page.  Hence the invariant
maintained by the code needs to be "EOF is at or beyond last used page",
not "EOF is exactly the last used page".  Problem was created by my patch
of 2006-11-19 that attempted to repair bug #2737.  Since that was
back-patched to 7.4, this needs to be as well.  Per report and test case
from Vlastimil Krejcir.

17 years agoRelease wording updates for releases 8.2.4, 8.1.9, 8.0.13, 7.4.17, 7.3.19.
Bruce Momjian [Thu, 19 Apr 2007 13:01:59 +0000 (13:01 +0000)]
Release wording updates for releases 8.2.4, 8.1.9, 8.0.13, 7.4.17, 7.3.19.

17 years agoUpdate FAQ to mention most recent release for releases
Bruce Momjian [Thu, 19 Apr 2007 04:04:30 +0000 (04:04 +0000)]
Update FAQ to mention most recent release for releases
8.2.4, 8.1.9, 8.0.13, 7.4.17, 7.3.19.

17 years agoStamp releases 8.2.4, 8.1.9, 8.0.13, 7.4.17, 7.3.19.
Bruce Momjian [Thu, 19 Apr 2007 03:06:37 +0000 (03:06 +0000)]
Stamp releases 8.2.4, 8.1.9, 8.0.13, 7.4.17, 7.3.19.

17 years agoRelease note updates for 8.2.4, 8.1.9, 8.0.13, 7.4.17, 7.3.19.
Bruce Momjian [Thu, 19 Apr 2007 02:46:46 +0000 (02:46 +0000)]
Release note updates for 8.2.4, 8.1.9, 8.0.13, 7.4.17, 7.3.19.

17 years agoTranslation updates
Peter Eisentraut [Wed, 18 Apr 2007 21:13:57 +0000 (21:13 +0000)]
Translation updates

17 years agoDon't write timing output in quiet mode.
Magnus Hagander [Mon, 16 Apr 2007 20:15:46 +0000 (20:15 +0000)]
Don't write timing output in quiet mode.

Merlin Moncure

18 years agoFix caching of unsuccessful initialization of parser or configuration.
Teodor Sigaev [Mon, 2 Apr 2007 11:43:30 +0000 (11:43 +0000)]
Fix caching of unsuccessful initialization of parser or configuration.
Per report from Listmail <lists@peufeu.com>

18 years agoFix pg_wchar_table's maxmblen field of EUC_CN, EUC_TW, MULE_INTERNAL
Tatsuo Ishii [Mon, 26 Mar 2007 11:53:50 +0000 (11:53 +0000)]
Fix pg_wchar_table's maxmblen field of EUC_CN, EUC_TW, MULE_INTERNAL
and GB18030. patches from ITAGAKI Takahiro.

18 years agoFix a longstanding bug in VACUUM FULL's handling of update chains. The code
Tom Lane [Wed, 14 Mar 2007 18:49:26 +0000 (18:49 +0000)]
Fix a longstanding bug in VACUUM FULL's handling of update chains.  The code
did not expect that a DEAD tuple could follow a RECENTLY_DEAD tuple in an
update chain, but because the OldestXmin rule for determining deadness is a
simplification of reality, it is possible for this situation to occur
(implying that the RECENTLY_DEAD tuple is in fact dead to all observers,
but this patch does not attempt to exploit that).  The code would follow a
chain forward all the way, but then stop before a DEAD tuple when backing
up, meaning that not all of the chain got moved.  This could lead to copying
the chain multiple times (resulting in duplicate copies of the live tuple at
its end), or leaving dangling index entries behind (which, aside from
generating warnings from later vacuums, creates a risk of wrong query
results or bogus duplicate-key errors once the heap slot the index entry
points to is repopulated).

The fix is to recheck HeapTupleSatisfiesVacuum while following a chain
forward, and to stop if a DEAD tuple is reached.  Each contiguous group
of RECENTLY_DEAD tuples will therefore be copied as a separate chain.
The patch also adds a couple of extra sanity checks to verify correct
behavior.

Per report and test case from Pavan Deolasee.

18 years agoFix oversight in original coding of inline_function(): since
Tom Lane [Tue, 6 Mar 2007 22:45:41 +0000 (22:45 +0000)]
Fix oversight in original coding of inline_function(): since
check_sql_fn_retval allows binary-compatibility cases, the expression
extracted from an inline-able SQL function might have a type that is only
binary-compatible with the declared function result type.  To avoid possibly
changing the semantics of the expression, we should insert a RelabelType node
in such cases.  This has only been shown to have bad consequences in recent
8.1 and up releases, but I suspect there may be failure cases in the older
branches too, so patch it all the way back.  Per bug #3116 from Greg Mullane.

Along the way, fix an omission in eval_const_expressions_mutator: it failed
to copy the relabelformat field when processing a RelabelType.  No known
observable failures from this, but it definitely isn't intended behavior.

18 years agoFix markQueryForLocking() to work correctly in the presence of nested views.
Tom Lane [Thu, 1 Mar 2007 18:50:56 +0000 (18:50 +0000)]
Fix markQueryForLocking() to work correctly in the presence of nested views.
It has been wrong for this case since it was first written for 7.1 :-(
Per report from Pavel Hanák.

18 years agoBackported bug fix for #2956.
Michael Meskes [Tue, 27 Feb 2007 13:26:50 +0000 (13:26 +0000)]
Backported bug fix for #2956.

18 years agoUpdate 7.x variant horology files to match the new US DST rules. It seems
Tom Lane [Sun, 25 Feb 2007 22:36:59 +0000 (22:36 +0000)]
Update 7.x variant horology files to match the new US DST rules.  It seems
likely that anyone wanting to run the regression tests in the future will
have up-to-date system timezone files, so this is more likely to work than
the old contents.

18 years agoFix portal management code to support non-default command completion tags for
Tom Lane [Sun, 18 Feb 2007 19:49:49 +0000 (19:49 +0000)]
Fix portal management code to support non-default command completion tags for
portals using PORTAL_UTIL_SELECT strategy.  This is currently significant only
for FETCH queries, which are supposed to include a count in the tag.  Seems
it's been broken since 7.4, but nobody noticed before Knut Lehre.

18 years agoFix backend crash in parsing incorrect tsquery.
Teodor Sigaev [Mon, 12 Feb 2007 14:19:26 +0000 (14:19 +0000)]
Fix backend crash in parsing incorrect tsquery.

 Per report from Jon Rosebaugh <jon@inklesspen.com>

18 years agoFix an ancient logic error in plpgsql's exec_stmt_block: it thought it could
Tom Lane [Thu, 8 Feb 2007 18:38:19 +0000 (18:38 +0000)]
Fix an ancient logic error in plpgsql's exec_stmt_block: it thought it could
get away with not (re)initializing a local variable if the variable is marked
"isconst" and not "isnull".  Unfortunately it makes this decision after having
already freed the old value, meaning that something like

   for i in 1..10 loop
     declare c constant text := 'hi there';

leads to subsequent accesses to freed memory, and hence probably crashes.
(In particular, this is why Asif Ali Rehman's bug leads to crash and not
just an unexpectedly-NULL value for SQLERRM: SQLERRM is marked CONSTANT
and so triggers this error.)

The whole thing seems wrong on its face anyway: CONSTANT means that you can't
change the variable inside the block, not that the initializer expression is
guaranteed not to change value across successive block entries.  Hence,
remove the "optimization" instead of trying to fix it.

18 years agoRearrange use of plpgsql_add_initdatums() so that only the parsing of a
Tom Lane [Thu, 8 Feb 2007 18:38:16 +0000 (18:38 +0000)]
Rearrange use of plpgsql_add_initdatums() so that only the parsing of a
DECLARE section needs to know about it.  Formerly, everyplace besides DECLARE
that created variables needed to do "plpgsql_add_initdatums(NULL)" to prevent
those variables from being sucked up as part of a subsequent DECLARE block.
This is obviously error-prone, and in fact the SQLSTATE/SQLERRM patch had
failed to do it for those two variables, leading to the bug recently exhibited
by Asif Ali Rehman: a DECLARE within an exception handler tried to reinitialize
SQLERRM.

Although the SQLSTATE/SQLERRM patch isn't in any pre-8.1 branches, and so
I can't point to a demonstrable failure there, it seems wise to back-patch
this into the older branches anyway, just to keep the logic similar to HEAD.

18 years agoFix an error in the original coding of holdable cursors: PersistHoldablePortal
Tom Lane [Tue, 6 Feb 2007 22:49:48 +0000 (22:49 +0000)]
Fix an error in the original coding of holdable cursors: PersistHoldablePortal
thought that it didn't have to reposition the underlying tuplestore if the
portal is atEnd.  But this is not so, because tuplestores have separate read
and write cursors ... and the read cursor hasn't moved from the start.
This mistake explains bug #2970 from William Zhang.

Note: the coding here is pretty inefficient, but given that no one has noticed
this bug until now, I'd say hardly anyone uses the case where the cursor has
been advanced before being persisted.  So maybe it's not worth worrying about.

18 years agoUse -Wl for linker switches on freebsd --- back-port of an 8.0 change.
Tom Lane [Sat, 3 Feb 2007 17:27:11 +0000 (17:27 +0000)]
Use -Wl for linker switches on freebsd --- back-port of an 8.0 change.
I think this will make buildfarm member herring go green in this branch.

18 years agoStamp release 7.4.16. REL7_4_16
Tom Lane [Fri, 2 Feb 2007 00:15:35 +0000 (00:15 +0000)]
Stamp release 7.4.16.

Security: CVE-2007-0555, CVE-2007-0556

18 years agoUpdate release notes for security-related releases in all active branches.
Tom Lane [Fri, 2 Feb 2007 00:11:02 +0000 (00:11 +0000)]
Update release notes for security-related releases in all active branches.

Security: CVE-2007-0555, CVE-2007-0556

18 years agoRepair insufficiently careful type checking for SQL-language functions:
Tom Lane [Fri, 2 Feb 2007 00:04:02 +0000 (00:04 +0000)]
Repair insufficiently careful type checking for SQL-language functions:
we should check that the function code returns the claimed result datatype
every time we parse the function for execution.  Formerly, for simple
scalar result types we assumed the creation-time check was sufficient, but
this fails if the function selects from a table that's been redefined since
then, and even more obviously fails if check_function_bodies had been OFF.

This is a significant security hole: not only can one trivially crash the
backend, but with appropriate misuse of pass-by-reference datatypes it is
possible to read out arbitrary locations in the server process's memory,
which could allow retrieving database content the user should not be able
to see.  Our thanks to Jeff Trout for the initial report.

Security: CVE-2007-0555

18 years agoTranslation updates
Peter Eisentraut [Wed, 31 Jan 2007 08:12:56 +0000 (08:12 +0000)]
Translation updates

18 years agoCorrect an old logic error in btree page splitting: when considering a split
Tom Lane [Sat, 27 Jan 2007 20:53:52 +0000 (20:53 +0000)]
Correct an old logic error in btree page splitting: when considering a split
exactly at the point where we need to insert a new item, the calculation used
the wrong size for the "high key" of the new left page.  This could lead to
choosing an unworkable split, resulting in "PANIC: failed to add item to the
left sibling" (or "right sibling") failure.  Although this bug has been there
a long time, it's very difficult to trigger a failure before 8.2, since there
was generally a lot of free space on both sides of a chosen split.  In 8.2,
where the user-selected fill factor determines how much free space the code
tries to leave, an unworkable split is much more likely.  Report by Joe
Conway, diagnosis and fix by Heikki Linnakangas.

18 years agoGet pg_utf_mblen(), pg_utf2wchar_with_len(), and utf2ucs() all on the same
Tom Lane [Wed, 24 Jan 2007 17:12:41 +0000 (17:12 +0000)]
Get pg_utf_mblen(), pg_utf2wchar_with_len(), and utf2ucs() all on the same
page about the maximum UTF8 sequence length we support (4 bytes since 8.1,
3 before that).  pg_utf2wchar_with_len never got updated to support 4-byte
characters at all, and in any case had a buffer-overrun risk in that it
could produce multiple pg_wchars from what mblen claims to be just one UTF8
character.  The only reason we don't have a major security hole is that most
callers allocate worst-case output buffers; the sole exception in released
versions appears to be pre-8.2 iwchareq() (ie, ILIKE), which can be crashed
due to zeroing out its return address --- but AFAICS that can't be exploited
for anything more than a crash, due to inability to control what gets written
there.  Per report from James Russell and Michael Fuhr.

Pre-8.1 the risk is much less, but I still think pg_utf2wchar_with_len's
behavior given an incomplete final character risks buffer overrun, so
back-patch that logic change anyway.

This patch also makes sure that UTF8 sequences exceeding the supported
length (whichever it is) are consistently treated as error cases, rather
than being treated like a valid shorter sequence in some places.

18 years agoRelax an Assert() that has been found to be too strict in some situations
Tom Lane [Wed, 24 Jan 2007 01:26:08 +0000 (01:26 +0000)]
Relax an Assert() that has been found to be too strict in some situations
involving unions of types having typmods.  Variants of the failure are known
to occur in 8.1 and up; not sure if it's possible in 8.0 and 7.4, but since
the code exists that far back, I'll just patch 'em all.  Per report from
Brian Hurt.

18 years agoBack port patch.
Tatsuo Ishii [Sat, 13 Jan 2007 03:24:55 +0000 (03:24 +0000)]
Back port patch.

Call srandom() instead of srand().
pgbench calls random() later, so it should have called srandom().
On most platforms except Windows srandom() is actually identical
to srand(), so the bug only bites Windows users.
per bug report from Akio Ishida.

18 years agocommit before tag ... REL7_4_15
PostgreSQL Daemon [Sat, 6 Jan 2007 06:40:31 +0000 (06:40 +0000)]
commit before tag ...

18 years agoFix markup because older releases couldn't link to the reference section.
Bruce Momjian [Sat, 6 Jan 2007 04:17:15 +0000 (04:17 +0000)]
Fix markup because older releases couldn't link to the reference section.

18 years agoRemove extra character added to top.
Bruce Momjian [Sat, 6 Jan 2007 03:36:32 +0000 (03:36 +0000)]
Remove extra character added to top.

18 years agoFix markup because lc_numeric didn't have an SGML tag in this release.
Bruce Momjian [Sat, 6 Jan 2007 03:14:32 +0000 (03:14 +0000)]
Fix markup because lc_numeric didn't have an SGML tag in this release.

18 years agoMinor copy-editing for release note updates.
Tom Lane [Fri, 5 Jan 2007 22:35:13 +0000 (22:35 +0000)]
Minor copy-editing for release note updates.

18 years agoStamp release 7.4.15.
Bruce Momjian [Fri, 5 Jan 2007 20:53:11 +0000 (20:53 +0000)]
Stamp release 7.4.15.

18 years agoCreate release notes for 7.4.15.
Bruce Momjian [Fri, 5 Jan 2007 20:02:55 +0000 (20:02 +0000)]
Create release notes for 7.4.15.

18 years agoFix regex_fixed_prefix() to cope reasonably well with regex patterns of the
Tom Lane [Wed, 3 Jan 2007 22:39:57 +0000 (22:39 +0000)]
Fix regex_fixed_prefix() to cope reasonably well with regex patterns of the
form '^(foo)$'.  Before, these could never be optimized into indexscans.
The recent changes to make psql and pg_dump generate such patterns (for \d
commands and -t and related switches, respectively) therefore represented
a big performance hit for people with large pg_class catalogs, as seen in
recent gripe from Erik Jones.  While at it, be more paranoid about
case-sensitivity checking in multibyte encodings, and fix some other
corner cases in which a regex might be interpreted too liberally.

18 years agoRepair bug #2839: the various ExecReScan functions need to reset
Tom Lane [Tue, 26 Dec 2006 19:27:20 +0000 (19:27 +0000)]
Repair bug #2839: the various ExecReScan functions need to reset
ps_TupFromTlist in plan nodes that make use of it.  This was being done
correctly in join nodes and Result nodes but not in any relation-scan nodes.
Bug would lead to bogus results if a set-returning function appeared in the
targetlist of a subquery that could be rescanned after partial execution,
for example a subquery within EXISTS().  Bug has been around forever :-(
... surprising it wasn't reported before.

18 years agoMark to_number() and the numeric-type variants of to_char() as stable, not
Tom Lane [Tue, 28 Nov 2006 19:19:16 +0000 (19:19 +0000)]
Mark to_number() and the numeric-type variants of to_char() as stable, not
immutable, because their results depend on lc_numeric; this is a longstanding
oversight.  We cannot force initdb for this in the back branches, but we can
at least provide correct catalog entries for future installations.

18 years agoFix psql's \copy command to ensure that it cycles libpq back to the idle state
Tom Lane [Fri, 24 Nov 2006 23:07:07 +0000 (23:07 +0000)]
Fix psql's \copy command to ensure that it cycles libpq back to the idle state
(in particular, causing the ReadyForQuery message to be eaten) before
returning from do_copy.  The only known consequence of failing to do so is
that get_prompt might show a wrong result for the %x transaction status
escape, as reported by Bernd Helmle; but it's possible there are other issues.

Back-patch as far as 7.4, the oldest version supporting %x.

18 years agoFix 1-byte buffer overrun when OID exceeds 1 billion. This probably can't
Tom Lane [Wed, 22 Nov 2006 21:13:11 +0000 (21:13 +0000)]
Fix 1-byte buffer overrun when OID exceeds 1 billion.  This probably can't
cause any serious harm in normal cases, but if you have gcc buffer overrun
checking turned on, that will notice.  Found by Jack Orenstein.  Problem
was already fixed in CVS HEAD.

18 years agoRepair problems with hash indexes that span multiple segments: the hash code's
Tom Lane [Sun, 19 Nov 2006 21:33:46 +0000 (21:33 +0000)]
Repair problems with hash indexes that span multiple segments: the hash code's
preference for filling pages out-of-order tends to confuse the sanity checks
in md.c, as per report from Balazs Nagy in bug #2737.  The fix is to ensure
that the smgr-level code always has the same idea of the logical EOF as the
hash index code does, by using ReadBuffer(P_NEW) where we are adding a single
page to the end of the index, and using smgrextend() to reserve a large batch
of pages when creating a new splitpoint.  The patch is a bit ugly because it
avoids making any changes in md.c, which seems the most prudent approach for a
backpatchable beta-period fix.  After 8.3 development opens, I'll take a look
at a cleaner but more invasive patch, in particular getting rid of the now
unnecessary hack to allow reading beyond EOF in mdread().

Backpatch as far as 7.4.  The bug likely exists in 7.3 as well, but because
of the magnitude of the 7.3-to-7.4 changes in hash, the later-version patch
doesn't even begin to apply.  Given the other known bugs in the 7.3-era hash
code, it does not seem worth trying to develop a separate patch for 7.3.

18 years agoRepair bug #2694 concerning an ARRAY[] construct whose inputs are empty
Tom Lane [Mon, 6 Nov 2006 18:21:58 +0000 (18:21 +0000)]
Repair bug #2694 concerning an ARRAY[] construct whose inputs are empty
sub-arrays.  Per discussion, if all inputs are empty arrays then result
must be an empty array too, whereas a mix of empty and nonempty arrays
should (and already did) draw an error.  In the back branches, the
construct was strict: any NULL input immediately yielded a NULL output;
so I left that behavior alone.  HEAD was simply ignoring NULL sub-arrays,
which doesn't seem very sensible.  For lack of a better idea it now
treats NULL sub-arrays the same as empty ones.

18 years agoFix "failed to re-find parent key" btree VACUUM failure by tweaking
Tom Lane [Wed, 1 Nov 2006 19:50:15 +0000 (19:50 +0000)]
Fix "failed to re-find parent key" btree VACUUM failure by tweaking
_bt_pagedel to recover from the failure: just search the whole parent level
if searching to the right fails.  This does nothing for the underlying problem
that index keys became out-of-order in the grandparent level.  However, we
believe that there is no other consequence worse than slightly inefficient
searching, so this narrow patch seems like the safest solution for the back
branches.

18 years agoBack-patch second version of AIX getaddrinfo fix.
Tom Lane [Fri, 20 Oct 2006 01:10:40 +0000 (01:10 +0000)]
Back-patch second version of AIX getaddrinfo fix.

18 years agoWork around reported problem that AIX's getaddrinfo() doesn't seem to zero
Tom Lane [Thu, 19 Oct 2006 17:26:51 +0000 (17:26 +0000)]
Work around reported problem that AIX's getaddrinfo() doesn't seem to zero
sin_port in the returned IP address struct when servname is NULL.  This has
been observed to cause failure to bind the stats collection socket, and
could perhaps cause other issues too.  Per reports from Brad Nicholson
and Chris Browne.

18 years agoStamp 7.4.14. REL7_4_14
Tom Lane [Thu, 12 Oct 2006 19:42:03 +0000 (19:42 +0000)]
Stamp 7.4.14.

18 years agoA bit of copy-editing on back-branch release notes.
Tom Lane [Wed, 11 Oct 2006 20:56:21 +0000 (20:56 +0000)]
A bit of copy-editing on back-branch release notes.

18 years agoRepair incorrect check for coercion of unknown literal to ANYARRAY, a bug
Tom Lane [Wed, 11 Oct 2006 20:21:28 +0000 (20:21 +0000)]
Repair incorrect check for coercion of unknown literal to ANYARRAY, a bug
I introduced in 7.4.1 :-(.  It's correct to allow unknown to be coerced to
ANY or ANYELEMENT, since it's a real-enough data type, but it most certainly
isn't an array datatype.  This can cause a backend crash but AFAICT is not
exploitable as a security hole.  Per report from Michael Fuhr.

Note: as fixed in HEAD, this changes a constant in the pg_stats view,
resulting in a change in the expected regression outputs.  The back-branch
patches have been hacked to avoid that, so that pre-existing installations
won't start failing their regression tests.

18 years agoCREATE TABLE ... LIKE ... should mark the columns it creates with
Tom Lane [Wed, 11 Oct 2006 20:03:26 +0000 (20:03 +0000)]
CREATE TABLE ... LIKE ... should mark the columns it creates with
attislocal = true, since they are not really inherited but merely copied
from the original table.  I'm not sure if there are any cases where it makes
a real difference given the existing uses of the flag, but wrong is wrong.
This was fixed in passing in HEAD by the LIKE INCLUDING CONSTRAINTS patch,
but never back-patched.

18 years agoFix psql \d commands to behave properly when a pattern using regex | is given.
Tom Lane [Tue, 10 Oct 2006 16:15:37 +0000 (16:15 +0000)]
Fix psql \d commands to behave properly when a pattern using regex | is given.
Formerly they'd emit '^foo|bar$' which is wrong because the anchors are
parsed as part of the alternatives; must emit '^(foo|bar)$' to get expected
behavior.  Same as bug found previously in similar_escape().  Already fixed
in HEAD, this is just back-porting the part of that patch that was a bug fix.

18 years agoUpdate libpq.rc for 7.3.16 and 7.4.14. Later releases use libpq.rc.in,
Bruce Momjian [Tue, 10 Oct 2006 00:19:58 +0000 (00:19 +0000)]
Update libpq.rc for 7.3.16 and 7.4.14.  Later releases use libpq.rc.in,
which was already updated.

18 years agoStamp releases 7.3.16, 7.4.14, 8.0.9, and 8.1.5.
Bruce Momjian [Mon, 9 Oct 2006 23:38:34 +0000 (23:38 +0000)]
Stamp releases 7.3.16, 7.4.14, 8.0.9, and 8.1.5.

18 years agoUpdate release notes for releases 7.3.16, 7.4.14, 8.0.9, and 8.1.5.
Bruce Momjian [Mon, 9 Oct 2006 23:23:11 +0000 (23:23 +0000)]
Update release notes for releases 7.3.16, 7.4.14, 8.0.9, and 8.1.5.

18 years agoFix back-branch pg_regress scripts to try the "canonical" expected file if we
Tom Lane [Mon, 9 Oct 2006 01:45:57 +0000 (01:45 +0000)]
Fix back-branch pg_regress scripts to try the "canonical" expected file if we
tried a variant file from resultmap and it didn't match.  This is already done
in HEAD's C-code version, and is needed because OpenBSD has recently migrated
to a more standard handling of float underflow --- see buildfarm results
from emu.

18 years agoFix ancient oversight in psql's \d pattern processing code: when seeing two
Tom Lane [Sat, 7 Oct 2006 22:21:57 +0000 (22:21 +0000)]
Fix ancient oversight in psql's \d pattern processing code: when seeing two
quote chars inside quote marks, should emit one quote *and stay in inquotes
mode*.  No doubt the lack of reports of this have something to do with the
poor documentation of the feature ...

18 years agoFix string_to_array() to correctly handle the case where there are
Tom Lane [Sat, 7 Oct 2006 00:12:12 +0000 (00:12 +0000)]
Fix string_to_array() to correctly handle the case where there are
overlapping possible matches for the separator string, such as
string_to_array('123xx456xxx789', 'xx').
Also, revise the logic of replace(), split_part(), and string_to_array()
to avoid O(N^2) work from redundant searches and conversions to pg_wchar
format when there are N matches to the separator string.
Backpatched the full patch as far as 8.0.  7.4 also has the bug, but the
code has diverged a lot, so I just went for a quick-and-dirty fix of the
bug itself in that branch.

18 years agodate_trunc also accepts 'quarter'. Noted by Yoshihisa Nakano.
Tom Lane [Sun, 1 Oct 2006 18:54:57 +0000 (18:54 +0000)]
date_trunc also accepts 'quarter'.  Noted by Yoshihisa Nakano.

18 years agoClean up rather sloppy fix in HEAD for the ancient bug that CREATE CONVERSION
Tom Lane [Thu, 31 Aug 2006 17:31:55 +0000 (17:31 +0000)]
Clean up rather sloppy fix in HEAD for the ancient bug that CREATE CONVERSION
didn't create a dependency from the new conversion to its schema.  Back-patch
to all supported releases.

18 years agoFix mistyping
Teodor Sigaev [Tue, 29 Aug 2006 15:50:11 +0000 (15:50 +0000)]
Fix mistyping

18 years agoFix bug introduced by last patch, thanks again to Mario Weilguni <mweilguni@sime...
Teodor Sigaev [Tue, 8 Aug 2006 15:46:09 +0000 (15:46 +0000)]
Fix bug introduced by last patch, thanks again to Mario Weilguni <mweilguni@sime.com>

18 years agofix bug about modifying value in shared buffer,
Teodor Sigaev [Mon, 7 Aug 2006 17:42:12 +0000 (17:42 +0000)]
fix bug about modifying value in shared buffer,
what was a reason to corrupt index.
Thank to Mario Weilguni <mweilguni@sime.com> to
discover a bug.

18 years agoFix confusion between COPY FROM and COPY TO, per Gavin Sharry and Arul Shaji.
Alvaro Herrera [Mon, 31 Jul 2006 01:09:52 +0000 (01:09 +0000)]
Fix confusion between COPY FROM and COPY TO, per Gavin Sharry and Arul Shaji.

18 years agoFix bug corrupting query in gist consistent function.
Teodor Sigaev [Tue, 11 Jul 2006 16:09:47 +0000 (16:09 +0000)]
Fix bug corrupting query in gist consistent function.
Thank to Mario Weilguni <mweilguni@sime.com> to discover a bug.

18 years agoFix dbmirror for new backslash escaping:
Bruce Momjian [Thu, 6 Jul 2006 02:02:48 +0000 (02:02 +0000)]
Fix dbmirror for new backslash escaping:

Martin Pitt [2006-06-16  0:15 +0200]:
> Upstream confirmed my reply in the last mail in [1]: the complete
> escaping logic in DBMirror.pl is seriously screwew.
>
> [1] http://archives.postgresql.org/pgsql-bugs/2006-06/msg00065.php

I finally found some time to debug this, and I think I found a better
patch than the one you proposed. Mine is still hackish and is still a
workaround around a proper quoting solution, but at least it repairs
the parsing without introducing the \' quoting again.

I consider this a band-aid patch to fix the recent security update.
PostgreSQL gurus, would you consider applying this until a better
solution is found for DBMirror.pl?

Martin Pitt        http://www.piware.de

18 years agoDo not use already free'ed errmsg, bug found by Joachim Wieland
Michael Meskes [Mon, 19 Jun 2006 09:20:32 +0000 (09:20 +0000)]
Do not use already free'ed errmsg, bug found by Joachim Wieland
<joachim.wieland@credativ.de>

18 years agoFixed two memory leaks in ecpglib.
Michael Meskes [Tue, 6 Jun 2006 11:36:00 +0000 (11:36 +0000)]
Fixed two memory leaks in ecpglib.

18 years agoFix copy-and-pasteo in Russian translation: message complaining about
Tom Lane [Sat, 3 Jun 2006 16:49:46 +0000 (16:49 +0000)]
Fix copy-and-pasteo in Russian translation: message complaining about
HAVE_INT64_TIMESTAMP was mentioning PG_CONTROL_VERSION instead.
Victor Snezhko

18 years agoPre-8.0 branches need to cope with possibility that the system libc knows
Tom Lane [Thu, 1 Jun 2006 04:10:25 +0000 (04:10 +0000)]
Pre-8.0 branches need to cope with possibility that the system libc knows
about the recent changes in US DST law.  Add a variant horology file, so
that either the old or new rules will be considered valid test results.