Update postgres80 to 8.0.1: Security issue as referenced by:

http://archives.postgresql.org/pgsql-announce/2005-02/msg00000.php
     * Disallow "LOAD" to non-superusers
       On platforms that will automatically execute initialization
       functions of a shared library (this includes at least Windows and
       ELF-based Unixen), "LOAD" can be used to make the server execute
       arbitrary code. Thanks to NGS Software for reporting this.
     * Check that creator of an aggregate function has the right to
       execute the specified transition functions
       This oversight made it possible to bypass denial of EXECUTE
       permission on a function.
     * Fix security and 64-bit issues in contrib/intagg
     * Add needed STRICT marking to some contrib functions (Kris Jurka)
     * Avoid buffer overrun when plpgsql cursor declaration has too many
       parameters (Neil)
     * Make "ALTER TABLE ADD COLUMN" enforce domain constraints in all
       cases
     * Fix planning error for FULL and RIGHT outer joins
       The result of the join was mistakenly supposed to be sorted the
       same as the left input. This could not only deliver mis-sorted
       output to the user, but in case of nested merge joins could give
       outright wrong answers.
     * Improve planning of grouped aggregate queries
     * "ROLLBACK TO savepoint" closes cursors created since the savepoint
     * Fix inadequate backend stack size on Windows
     * Avoid SHGetSpecialFolderPath() on Windows (Magnus)
     * Fix some problems in running pg_autovacuum as a Windows service
       (Dave Page)
     * Multiple minor bug fixes in pg_dump/pg_restore
     * Fix ecpg segfault with named structs used in typedefs (Michael)
This commit is contained in:
David Brownlee 2005-02-01 17:40:44 +00:00 committed by Thomas Klausner
parent a49ac9439f
commit e462fafcfa
6 changed files with 36 additions and 38 deletions

View file

@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.3 2005/01/29 05:26:28 schnoebe Exp $
@comment $NetBSD: PLIST,v 1.4 2005/02/01 17:40:45 absd Exp $
bin/clusterdb
bin/createdb
bin/createlang
@ -33,7 +33,6 @@ man/man1/pg_dump.1
man/man1/pg_dumpall.1
man/man1/pg_resetxlog.1
man/man1/pg_restore.1
man/man1/postgres.1
man/man1/vacuumdb.1
man/manl/abort.l
man/manl/alter_aggregate.l

View file

@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.2 2005/01/24 05:45:21 schnoebe Exp $
@comment $NetBSD: PLIST,v 1.3 2005/02/01 17:40:45 absd Exp $
share/doc/postgresql80/FAQ
share/doc/postgresql80/FAQ_AIX
share/doc/postgresql80/FAQ_CYGWIN
@ -162,9 +162,9 @@ share/doc/postgresql80/explicit-joins.html
share/doc/postgresql80/explicit-locking.html
share/doc/postgresql80/extend-type-system.html
share/doc/postgresql80/extend.html
share/doc/postgresql80/extensibility.html
share/doc/postgresql80/external-extensions.html
share/doc/postgresql80/external-projects.html
share/doc/postgresql80/extensibility.html
share/doc/postgresql80/features.html
share/doc/postgresql80/functions-admin.html
share/doc/postgresql80/functions-aggregate.html
@ -389,6 +389,7 @@ share/doc/postgresql80/release-7-2-3.html
share/doc/postgresql80/release-7-2-4.html
share/doc/postgresql80/release-7-2-5.html
share/doc/postgresql80/release-7-2-6.html
share/doc/postgresql80/release-7-2-7.html
share/doc/postgresql80/release-7-2.html
share/doc/postgresql80/release-7-3-1.html
share/doc/postgresql80/release-7-3-2.html
@ -398,6 +399,7 @@ share/doc/postgresql80/release-7-3-5.html
share/doc/postgresql80/release-7-3-6.html
share/doc/postgresql80/release-7-3-7.html
share/doc/postgresql80/release-7-3-8.html
share/doc/postgresql80/release-7-3-9.html
share/doc/postgresql80/release-7-3.html
share/doc/postgresql80/release-7-4-1.html
share/doc/postgresql80/release-7-4-2.html
@ -405,7 +407,9 @@ share/doc/postgresql80/release-7-4-3.html
share/doc/postgresql80/release-7-4-4.html
share/doc/postgresql80/release-7-4-5.html
share/doc/postgresql80/release-7-4-6.html
share/doc/postgresql80/release-7-4-7.html
share/doc/postgresql80/release-7-4.html
share/doc/postgresql80/release-8-0.html
share/doc/postgresql80/release.html
share/doc/postgresql80/resources.html
share/doc/postgresql80/routine-reindex.html

View file

@ -1,19 +1,9 @@
@comment $NetBSD: PLIST,v 1.3 2005/01/29 05:27:59 schnoebe Exp $
@comment $NetBSD: PLIST,v 1.4 2005/02/01 17:40:46 absd Exp $
bin/ecpg
include/ecpg_informix.h
include/ecpgerrno.h
include/ecpglib.h
include/ecpgtype.h
include/postgresql/informix/esql/datetime.h
include/postgresql/informix/esql/decimal.h
include/postgresql/informix/esql/sqlda.h
include/postgresql/informix/esql/sqltypes.h
include/postgresql/internal/c.h
include/postgresql/internal/libpq-int.h
include/postgresql/internal/libpq/pqcomm.h
include/postgresql/internal/port.h
include/postgresql/internal/postgres_fe.h
include/postgresql/internal/pqexpbuffer.h
include/libpq-fe.h
include/libpq/libpq-fs.h
include/pg_config.h
@ -25,6 +15,16 @@ include/pgtypes_interval.h
include/pgtypes_numeric.h
include/pgtypes_timestamp.h
include/postgres_ext.h
include/postgresql/informix/esql/datetime.h
include/postgresql/informix/esql/decimal.h
include/postgresql/informix/esql/sqlda.h
include/postgresql/informix/esql/sqltypes.h
include/postgresql/internal/c.h
include/postgresql/internal/libpq-int.h
include/postgresql/internal/libpq/pqcomm.h
include/postgresql/internal/port.h
include/postgresql/internal/postgres_fe.h
include/postgresql/internal/pqexpbuffer.h
include/postgresql/server/access/attnum.h
include/postgresql/server/access/clog.h
include/postgresql/server/access/genam.h
@ -255,6 +255,14 @@ include/postgresql/server/port/ultrix4.h
include/postgresql/server/port/univel.h
include/postgresql/server/port/unixware.h
include/postgresql/server/port/win32.h
include/postgresql/server/port/win32/arpa/inet.h
include/postgresql/server/port/win32/dlfcn.h
include/postgresql/server/port/win32/grp.h
include/postgresql/server/port/win32/netdb.h
include/postgresql/server/port/win32/netinet/in.h
include/postgresql/server/port/win32/pwd.h
include/postgresql/server/port/win32/sys/socket.h
include/postgresql/server/port/win32/sys/wait.h
include/postgresql/server/postgres.h
include/postgresql/server/postgres_ext.h
include/postgresql/server/postgres_fe.h
@ -406,6 +414,10 @@ share/postgresql/pg_service.conf.sample
@dirrm include/postgresql/server/storage
@dirrm include/postgresql/server/rewrite
@dirrm include/postgresql/server/regex
@dirrm include/postgresql/server/port/win32/sys
@dirrm include/postgresql/server/port/win32/netinet
@dirrm include/postgresql/server/port/win32/arpa
@dirrm include/postgresql/server/port/win32
@dirrm include/postgresql/server/port
@dirrm include/postgresql/server/parser
@dirrm include/postgresql/server/optimizer
@ -419,7 +431,6 @@ share/postgresql/pg_service.conf.sample
@dirrm include/postgresql/server/bootstrap
@dirrm include/postgresql/server/access
@dirrm include/postgresql/server
@dirrm include/postgresql/libpq
@dirrm include/postgresql/internal/libpq
@dirrm include/postgresql/internal
@dirrm include/postgresql/informix/esql

View file

@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.2 2005/01/24 05:45:21 schnoebe Exp $
@comment $NetBSD: PLIST,v 1.3 2005/02/01 17:40:46 absd Exp $
bin/postgres
bin/postmaster
lib/postgresql/ascii_and_mic.so
@ -55,22 +55,6 @@ share/postgresql/postgresql.conf.sample
share/postgresql/recovery.conf.sample
share/postgresql/sql_features.txt
share/postgresql/system_views.sql
@dirrm ${PKGLOCALEDIR}/locale/zh_TW/LC_MESSAGES
@dirrm ${PKGLOCALEDIR}/locale/zh_CN/LC_MESSAGES
@dirrm ${PKGLOCALEDIR}/locale/tr/LC_MESSAGES
@dirrm ${PKGLOCALEDIR}/locale/sv/LC_MESSAGES
@dirrm ${PKGLOCALEDIR}/locale/sk/LC_MESSAGES
@dirrm ${PKGLOCALEDIR}/locale/ru/LC_MESSAGES
@dirrm ${PKGLOCALEDIR}/locale/pt_BR/LC_MESSAGES
@dirrm ${PKGLOCALEDIR}/locale/nb/LC_MESSAGES
@dirrm ${PKGLOCALEDIR}/locale/it/LC_MESSAGES
@dirrm ${PKGLOCALEDIR}/locale/hu/LC_MESSAGES
@dirrm ${PKGLOCALEDIR}/locale/hr/LC_MESSAGES
@dirrm ${PKGLOCALEDIR}/locale/fr/LC_MESSAGES
@dirrm ${PKGLOCALEDIR}/locale/es/LC_MESSAGES
@dirrm ${PKGLOCALEDIR}/locale/de/LC_MESSAGES
@dirrm ${PKGLOCALEDIR}/locale/cs/LC_MESSAGES
@dirrm ${PKGLOCALEDIR}/locale/af/LC_MESSAGES
@comment in postgresql80-client: @dirrm share
@comment in postgresql80-lib: @dirrm man/man1
@comment in postgresql80-lib: @dirrm lib/postgresql

View file

@ -1,4 +1,4 @@
# $NetBSD: Makefile.common,v 1.3 2005/01/24 05:45:20 schnoebe Exp $
# $NetBSD: Makefile.common,v 1.4 2005/02/01 17:40:44 absd Exp $
#
# This Makefile fragment is included by all PostgreSQL packages built from
# the main sources of the PostgreSQL distribution except jdbc-postgresql.
@ -36,7 +36,7 @@ PATCHDIR?= ${.CURDIR}/../postgresql80/patches
# BASE_VERS pkgsrc-mangled version number (convert pl -> .)
#
# Note: Do not forget jdbc-postgresql when updating version
DIST_VERS?= 8.0.0
DIST_VERS?= 8.0.1
BASE_VERS?= ${DIST_VERS}
BUILDLINK_DEPENDS.postgresql80-lib?= postgresql80-lib>=${BASE_VERS}

View file

@ -1,5 +1,5 @@
$NetBSD: distinfo,v 1.2 2005/01/22 20:43:15 schnoebe Exp $
$NetBSD: distinfo,v 1.3 2005/02/01 17:40:44 absd Exp $
SHA1 (postgresql-8.0.0.tar.bz2) = b3c0a557e431de7d2b15385eda222b0ba2cc213f
Size (postgresql-8.0.0.tar.bz2) = 11052910 bytes
SHA1 (postgresql-8.0.1.tar.bz2) = 42a16fe13a6271b1612fb0a9f41f7da0a2e307b6
Size (postgresql-8.0.1.tar.bz2) = 11049626 bytes
SHA1 (patch-aa) = 20492216de0e5238a02b4cdd18c297731cf6462a