Skip to content
Snippets Groups Projects
  1. Aug 15, 2012
    • Tom Lane's avatar
      Prevent access to external files/URLs via XML entity references. · aa2bc1f2
      Tom Lane authored
      xml_parse() would attempt to fetch external files or URLs as needed to
      resolve DTD and entity references in an XML value, thus allowing
      unprivileged database users to attempt to fetch data with the privileges
      of the database server.  While the external data wouldn't get returned
      directly to the user, portions of it could be exposed in error messages
      if the data didn't parse as valid XML; and in any case the mere ability
      to check existence of a file might be useful to an attacker.
      
      The ideal solution to this would still allow fetching of references that
      are listed in the host system's XML catalogs, so that documents can be
      validated according to installed DTDs.  However, doing that with the
      available libxml2 APIs appears complex and error-prone, so we're not going
      to risk it in a security patch that necessarily hasn't gotten wide review.
      So this patch merely shuts off all access, causing any external fetch to
      silently expand to an empty string.  A future patch may improve this.
      
      In HEAD and 9.2, also suppress warnings about undefined entities, which
      would otherwise occur as a result of not loading referenced DTDs.  Previous
      branches don't show such warnings anyway, due to different error handling
      arrangements.
      
      Credit to Noah Misch for first reporting the problem, and for much work
      towards a solution, though this simplistic approach was not his preference.
      Also thanks to Daniel Veillard for consultation.
      
      Security: CVE-2012-3489
      aa2bc1f2
  2. Aug 14, 2012
    • Peter Eisentraut's avatar
      Translation updates · 21520017
      Peter Eisentraut authored
      21520017
    • Tom Lane's avatar
      Update time zone data files to tzdata release 2012e. · dabbd3ee
      Tom Lane authored
      DST law changes in Morocco; Tokelau has relocated to the other side of
      the International Date Line; and apparently Olson had Tokelau's GMT
      offset wrong by an hour even before that.
      
      There are also a large number of non-significant changes in this update.
      Upstream took the opportunity to remove trailing whitespace, and the
      SCCS-style version numbers on the individual files are gone too.
      dabbd3ee
  3. Aug 11, 2012
    • Tom Lane's avatar
      Fix dependencies generated during ALTER TABLE ADD CONSTRAINT USING INDEX. · ca07d7eb
      Tom Lane authored
      This command generated new pg_depend entries linking the index to the
      constraint and the constraint to the table, which match the entries made
      when a unique or primary key constraint is built de novo.  However, it did
      not bother to get rid of the entries linking the index directly to the
      table.  We had considered the issue when the ADD CONSTRAINT USING INDEX
      patch was written, and concluded that we didn't need to get rid of the
      extra entries.  But this is wrong: ALTER COLUMN TYPE wasn't expecting such
      redundant dependencies to exist, as reported by Hubert Depesz Lubaczewski.
      On reflection it seems rather likely to break other things as well, since
      there are many bits of code that crawl pg_depend for one purpose or
      another, and most of them are pretty naive about what relationships they're
      expecting to find.  Fortunately it's not that hard to get rid of the extra
      dependency entries, so let's do that.
      
      Back-patch to 9.1, where ALTER TABLE ADD CONSTRAINT USING INDEX was added.
      ca07d7eb
  4. Aug 10, 2012
  5. Aug 09, 2012
  6. Aug 08, 2012
    • Alvaro Herrera's avatar
      Fix typo in comment · 7c055d64
      Alvaro Herrera authored
      7c055d64
    • Simon Riggs's avatar
      Fix minor bug in XLogFileRead() that accidentally worked. · df09dbbc
      Simon Riggs authored
      Cascading replication copied the incoming file into pg_xlog but
      didn't set path correctly, so the first attempt to open file failed
      causing it to loop around and look for file in pg_xlog. So the
      earlier coding worked, but accidentally rather than by design.
      
      Spotted by Fujii Masao, fix by Fujii Masao and Simon Riggs
      df09dbbc
    • Tom Lane's avatar
      Update isolation tests' README file. · 4bf70f22
      Tom Lane authored
      The directions explaining about running the prepared-transactions test
      were not updated in commit ae55d9fb.
      4bf70f22
    • Tom Lane's avatar
      Fix TwoPhaseGetDummyBackendId(). · 5cf2307c
      Tom Lane authored
      This was broken in commit ed0b409d,
      which revised the GlobalTransactionData struct to not include the
      associated PGPROC as its first member, but overlooked one place where
      a cast was used in reliance on that equivalence.
      
      The most effective way of fixing this seems to be to create a new function
      that looks up the GlobalTransactionData struct given the XID, and make
      both TwoPhaseGetDummyBackendId and TwoPhaseGetDummyProc rely on that.
      
      Per report from Robert Ross.
      5cf2307c
  7. Aug 07, 2012
  8. Aug 06, 2012
    • Alvaro Herrera's avatar
      Make strings identical · da003a5a
      Alvaro Herrera authored
      da003a5a
    • Magnus Hagander's avatar
      Complain with proper error message if streaming stops prematurely · 0b4660b5
      Magnus Hagander authored
      In particular, with a controlled shutdown of the master, pg_basebackup
      with streaming log could terminate without an error message, even though
      the backup is not consistent.
      
      In passing, fix a few cases where walfile wasn't properly set to -1 after
      closing.
      
      Fujii Masao
      0b4660b5
    • Heikki Linnakangas's avatar
      Perform conversion from Python unicode to string/bytes object via UTF-8. · d9c77e24
      Heikki Linnakangas authored
      We used to convert the unicode object directly to a string in the server
      encoding by calling Python's PyUnicode_AsEncodedString function. In other
      words, we used Python's routines to do the encoding. However, that has a
      few problems. First of all, it required keeping a mapping table of Python
      encoding names and PostgreSQL encodings. But the real killer was that Python
      doesn't support EUC_TW and MULE_INTERNAL encodings at all.
      
      Instead, convert the Python unicode object to UTF-8, and use PostgreSQL's
      encoding conversion functions to convert from UTF-8 to server encoding. We
      were already doing the same in the other direction in PLyUnicode_FromString,
      so this is more consistent, too.
      
      Note: This makes SQL_ASCII to behave more leniently. We used to map
      SQL_ASCII to Python's 'ascii', which on Python means strict 7-bit ASCII
      only, so you got an error if the python string contained anything but pure
      ASCII. You no longer get an error; you get the UTF-8 representation of the
      string instead.
      
      Backpatch to 9.0, where these conversions were introduced.
      
      Jan Urbański
      d9c77e24
  9. Aug 03, 2012
    • Tom Lane's avatar
      Fix bugs with parsing signed hh:mm and hh:mm:ss fields in interval input. · 225fe68c
      Tom Lane authored
      DecodeInterval() failed to honor the "range" parameter (the special SQL
      syntax for indicating which fields appear in the literal string) if the
      time was signed.  This seems inappropriate, so make it work like the
      not-signed case.  The inconsistency was introduced in my commit
      f867339c, which as noted in its log message
      was only really focused on making SQL-compliant literals work per spec.
      Including a sign here is not per spec, but if we're going to allow it
      then it's reasonable to expect it to work like the not-signed case.
      
      Also, remove bogus setting of tmask, which caused subsequent processing to
      think that what had been given was a timezone and not an hh:mm(:ss) field,
      thus confusing checks for redundant fields.  This seems to be an aboriginal
      mistake in Lockhart's commit 2cf16424.
      
      Add regression test cases to illustrate the changed behaviors.
      
      Back-patch as far as 8.4, where support for spec-compliant interval
      literals was added.
      
      Range problem reported and diagnosed by Amit Kapila, tmask problem by me.
      225fe68c
    • Tom Lane's avatar
      Improve underdocumented btree_xlog_delete_get_latestRemovedXid() code. · 11de73b2
      Tom Lane authored
      As noted by Noah Misch, btree_xlog_delete_get_latestRemovedXid is
      critically dependent on the assumption that it's examining a consistent
      state of the database.  This was undocumented though, so the
      seemingly-unrelated check for no active HS sessions might be thought to be
      merely an optional optimization.  Improve comments, and add an explicit
      check of reachedConsistency just to be sure.
      
      This function returns InvalidTransactionId (thereby killing all HS
      transactions) in several cases that are not nearly unlikely enough for my
      taste.  This commit doesn't attempt to fix those deficiencies, just
      document them.
      
      Back-patch to 9.2, not from any real functional need but just to keep the
      branches more closely synced to simplify possible future back-patching.
      11de73b2
    • Tom Lane's avatar
      In SPGiST replay, do conflict resolution before modifying the page. · dd6947aa
      Tom Lane authored
      In yesterday's commit 962e0cc7, I added the
      ResolveRecoveryConflictWithSnapshot call in the wrong place.  I correctly
      put it before spgRedoVacuumRedirect itself would modify the index page ---
      but not before RestoreBkpBlocks, so replay of a record with a full-page
      image would modify the page before kicking off any conflicting HS
      transactions.  Oops.
      dd6947aa
    • Tom Lane's avatar
  10. Aug 02, 2012
    • Peter Eisentraut's avatar
      Translation updates · 095bcf93
      Peter Eisentraut authored
      095bcf93
    • Tom Lane's avatar
      Fix race conditions associated with SPGiST redirection tuples. · 7f7c93f8
      Tom Lane authored
      The correct test for whether a redirection tuple is removable is whether
      tuple's xid < RecentGlobalXmin, not OldestXmin; the previous coding
      failed to protect index searches being done in concurrent transactions that
      have no XID.  This mirrors the recent fix in btree's page recycling logic
      made in commit d3abbbeb.
      
      Also, WAL-log the newest XID of any removed redirection tuple on an index
      page, and apply ResolveRecoveryConflictWithSnapshot during InHotStandby WAL
      replay.  This protects against concurrent Hot Standby transactions possibly
      needing to see the redirection tuple(s).
      
      Per my query of 2012-03-12 and subsequent discussion.
      7f7c93f8
    • Tom Lane's avatar
      Replace libpq's "row processor" API with a "single row" mode. · ea56ed9a
      Tom Lane authored
      After taking awhile to digest the row-processor feature that was added to
      libpq in commit 92785dac, we've concluded
      it is over-complicated and too hard to use.  Leave the core infrastructure
      changes in place (that is, there's still a row processor function inside
      libpq), but remove the exposed API pieces, and instead provide a "single
      row" mode switch that causes PQgetResult to return one row at a time in
      separate PGresult objects.
      
      This approach incurs more overhead than proper use of a row processor
      callback would, since construction of a PGresult per row adds extra cycles.
      However, it is far easier to use and harder to break.  The single-row mode
      still affords applications the primary benefit that the row processor API
      was meant to provide, namely not having to accumulate large result sets in
      memory before processing them.  Preliminary testing suggests that we can
      probably buy back most of the extra cycles by micro-optimizing construction
      of the extra results, but that task will be left for another day.
      
      Marko Kreen
      ea56ed9a
  11. Jul 31, 2012
    • Tom Lane's avatar
      Fix WITH attached to a nested set operation (UNION/INTERSECT/EXCEPT). · 3786b9b4
      Tom Lane authored
      Parse analysis neglected to cover the case of a WITH clause attached to an
      intermediate-level set operation; it only handled WITH at the top level
      or WITH attached to a leaf-level SELECT.  Per report from Adam Mackler.
      
      In HEAD, I rearranged the order of SelectStmt's fields to put withClause
      with the other fields that can appear on non-leaf SelectStmts.  In back
      branches, leave it alone to avoid a possible ABI break for third-party
      code.
      
      Back-patch to 8.4 where WITH support was added.
      3786b9b4
    • Tom Lane's avatar
      Fix syslogger so that log_truncate_on_rotation works in the first rotation. · 63aba79c
      Tom Lane authored
      In the original coding of the log rotation stuff, we did not bother to make
      the truncation logic work for the very first rotation after postmaster
      start (or after a syslogger crash and restart).  It just always appended
      in that case.  It did not seem terribly important at the time, but we've
      recently had two separate complaints from people who expected it to work
      unsurprisingly.  (Both users tend to restart the postmaster about as often
      as a log rotation is configured to happen, which is maybe not typical use,
      but still...)  Since the initial log file is opened in the postmaster,
      fixing this requires passing down some more state to the syslogger child
      process.
      
      It's always been like this, so back-patch to all supported branches.
      63aba79c
    • Alvaro Herrera's avatar
      pg_basebackup: stylistic adjustments · 65f33352
      Alvaro Herrera authored
      The most user-visible part of this is to change the long options
      --statusint and --noloop to --status-interval and --no-loop,
      respectively, per discussion.
      
      Also, consistently enclose file names in double quotes, per our
      conventions; and consistently use the term "transaction log file" to
      talk about WAL segments.  (Someday we may need to go over this
      terminology and make it consistent across the whole source code.)
      
      Finally, reflow the code to better fit in 80 columns, and have pgindent
      fix it up some more.
      65f33352
    • Alvaro Herrera's avatar
      Fix memory and file descriptor leaks in pg_receivexlog/pg_basebackup · 776bdc4c
      Alvaro Herrera authored
      When the internal loop mode was added, freeing memory and closing
      filedescriptors before returning became important, and a few cases
      in the code missed that.
      
      This is a backpatch of commit 058a050e to the 9.2 branch, which seems to
      have been neglected (in error, because the bugs it fixes were introduced
      in commit 16282ae6 which is present in both master and 9.2).
      
      Fujii Masao
      776bdc4c
  12. Jul 28, 2012
    • Tom Lane's avatar
      Improve reporting of error situations in find_other_exec(). · 62d69045
      Tom Lane authored
      This function suppressed any stderr output from the called program, which
      is unnecessary in the normal case and unhelpful in error cases.  It also
      gave a rather opaque message along the lines of "fgets failure: Success"
      in case the called program failed to return anything on stdout.  Since
      we've seen multiple reports of people not understanding what's wrong when
      pg_ctl reports this, improve the message.
      
      Back-patch to all active branches.
      62d69045
  13. Jul 26, 2012
    • Tom Lane's avatar
      Only allow autovacuum to be auto-canceled by a directly blocked process. · 07399f44
      Tom Lane authored
      In the original coding of the autovacuum cancel feature, commit
      acac68b2, an autovacuum process was
      considered a target for cancellation if it was found to hard-block any
      process examined in the deadlock search.  This patch tightens the test so
      that the autovacuum must directly hard-block the current process.  This
      should make the behavior more predictable in general, and in particular
      it ensures that an autovacuum will not be canceled with less than
      deadlock_timeout grace period.  In the old coding, it was possible for an
      autovacuum to be canceled almost instantly, given unfortunate timing of two
      or more other processes' lock attempts.
      
      This also justifies the logging methodology in the recent commit
      d7318d43; without this restriction, that
      patch isn't providing enough information to see the connection of the
      canceling process to the autovacuum.  Like that one, patch all the way
      back.
      07399f44
    • Robert Haas's avatar
      Log a better message when canceling autovacuum. · a5bca248
      Robert Haas authored
      The old message was at DEBUG2, so typically it didn't show up in the
      log at all.  As a result, in most cases where autovacuum was canceled,
      the only information that was logged was the table being vacuumed,
      with no indication as to what problem caused the cancel.  Crank up
      the level to LOG and add some more details to assist with debugging.
      
      Back-patch all the way, per discussion on pgsql-hackers.
      a5bca248
  14. Jul 25, 2012
    • Tom Lane's avatar
      Fix longstanding crash-safety bug with newly-created-or-reset sequences. · a4a7eb37
      Tom Lane authored
      If a crash occurred immediately after the first nextval() call for a serial
      column, WAL replay would restore the sequence to a state in which it
      appeared that no nextval() had been done, thus allowing the first sequence
      value to be returned again by the next nextval() call; as reported in
      bug #6748 from Xiangming Mei.
      
      More generally, the problem would occur if an ALTER SEQUENCE was executed
      on a freshly created or reset sequence.  (The manifestation with serial
      columns was introduced in 8.2 when we added an ALTER SEQUENCE OWNED BY step
      to serial column creation.)  The cause is that sequence creation attempted
      to save one WAL entry by writing out a WAL record that made it appear that
      the first nextval() had already happened (viz, with is_called = true),
      while marking the sequence's in-database state with log_cnt = 1 to show
      that the first nextval() need not emit a WAL record.  However, ALTER
      SEQUENCE would emit a new WAL entry reflecting the actual in-database state
      (with is_called = false).  Then, nextval would allocate the first sequence
      value and set is_called = true, but it would trust the log_cnt value and
      not emit any WAL record.  A crash at this point would thus restore the
      sequence to its post-ALTER state, causing the next nextval() call to return
      the first sequence value again.
      
      To fix, get rid of the idea of logging an is_called status different from
      reality.  This means that the first nextval-driven WAL record will happen
      at the first nextval call not the second, but the marginal cost of that is
      pretty negligible.  In addition, make sure that ALTER SEQUENCE resets
      log_cnt to zero in any case where it touches sequence parameters that
      affect future nextval results.  This will result in some user-visible
      changes in the contents of a sequence's log_cnt column, as reflected in the
      patch's regression test changes; but no application should be depending on
      that anyway, since it was already true that log_cnt changes rather
      unpredictably depending on checkpoint timing.
      
      In addition, make some basically-cosmetic improvements to get rid of
      sequence.c's undesirable intimacy with page layout details.  It was always
      really trying to WAL-log the contents of the sequence tuple, so we should
      have it do that directly using a HeapTuple's t_data and t_len, rather than
      backing into it with some magic assumptions about where the tuple would be
      on the sequence's page.
      
      Back-patch to all supported branches.
      a4a7eb37
    • Alvaro Herrera's avatar
      Add translator comments to module names · 408e82c2
      Alvaro Herrera authored
      408e82c2
  15. Jul 24, 2012
    • Alvaro Herrera's avatar
      Change syntax of new CHECK NO INHERIT constraints · 68043258
      Alvaro Herrera authored
      The initially implemented syntax, "CHECK NO INHERIT (expr)" was not
      deemed very good, so switch to "CHECK (expr) NO INHERIT" instead.  This
      way it looks similar to SQL-standards compliant constraint attribute.
      
      Backport to 9.2 where the new syntax and feature was introduced.
      
      Per discussion.
      68043258
  16. Jul 22, 2012
    • Tom Lane's avatar
      Fix name collision between concurrent regression tests. · d86fb72c
      Tom Lane authored
      Commit f5bcd398 introduced a test using
      a table named "circles" in inherit.sql.  Unfortunately, the concurrently
      executed constraints test was already using that table name, so the
      parallel regression tests would sometimes fail.  Rename table to dodge
      the problem.  Per buildfarm.
      d86fb72c
  17. Jul 21, 2012
    • Tom Lane's avatar
      Account for SRFs in targetlists in planner rowcount estimates. · 641054ad
      Tom Lane authored
      We made use of the ROWS estimate for set-returning functions used in FROM,
      but not for those used in SELECT targetlists; which is a bit of an
      oversight considering there are common usages that require the latter
      approach.  Improve that.  (I had initially thought it might be worth
      folding this into cost_qual_eval, but after investigation concluded that
      that wouldn't be very helpful, so just do it separately.)  Per complaint
      from David Johnston.
      
      Back-patch to 9.2, but not further, for fear of destabilizing plan choices
      in existing releases.
      641054ad
  18. Jul 20, 2012
Loading