prestogres 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +4 -0
- data/Gemfile +2 -0
- data/Gemfile.lock +20 -0
- data/LICENSE +202 -0
- data/NOTICE +22 -0
- data/README.md +217 -0
- data/Rakefile +13 -0
- data/VERSION +1 -0
- data/bin/prestogres +254 -0
- data/config/pcp.conf.sample +28 -0
- data/config/pgpool.conf +678 -0
- data/config/pool_hba.conf +84 -0
- data/config/pool_passwd +0 -0
- data/config/postgresql.conf +2 -0
- data/ext/.gitignore +6 -0
- data/ext/depend +26 -0
- data/ext/extconf.rb +4 -0
- data/ext/prestogres_config.c +12 -0
- data/pgpool2/.gitignore +36 -0
- data/pgpool2/AUTHORS +4 -0
- data/pgpool2/COPYING +12 -0
- data/pgpool2/ChangeLog +1 -0
- data/pgpool2/INSTALL +1 -0
- data/pgpool2/Makefile.am +159 -0
- data/pgpool2/Makefile.in +1187 -0
- data/pgpool2/NEWS +4960 -0
- data/pgpool2/README +1 -0
- data/pgpool2/README.euc_jp +1 -0
- data/pgpool2/README.online-recovery +62 -0
- data/pgpool2/TODO +103 -0
- data/pgpool2/ac_func_accept_argtypes.m4 +85 -0
- data/pgpool2/aclocal.m4 +1088 -0
- data/pgpool2/c-compiler.m4 +134 -0
- data/pgpool2/c-library.m4 +325 -0
- data/pgpool2/child.c +2097 -0
- data/pgpool2/config.guess +1532 -0
- data/pgpool2/config.h.in +332 -0
- data/pgpool2/config.sub +1640 -0
- data/pgpool2/configure +15752 -0
- data/pgpool2/configure.in +392 -0
- data/pgpool2/depcomp +522 -0
- data/pgpool2/doc/basebackup.sh +17 -0
- data/pgpool2/doc/pgpool-de.html +4220 -0
- data/pgpool2/doc/pgpool-en.html +5738 -0
- data/pgpool2/doc/pgpool-fr.html +4118 -0
- data/pgpool2/doc/pgpool-ja.css +198 -0
- data/pgpool2/doc/pgpool-ja.html +11279 -0
- data/pgpool2/doc/pgpool-zh_cn.html +4445 -0
- data/pgpool2/doc/pgpool.css +280 -0
- data/pgpool2/doc/pgpool_remote_start +13 -0
- data/pgpool2/doc/recovery.conf.sample +117 -0
- data/pgpool2/doc/tutorial-en.html +707 -0
- data/pgpool2/doc/tutorial-ja.html +422 -0
- data/pgpool2/doc/tutorial-memqcache-en.html +325 -0
- data/pgpool2/doc/tutorial-memqcache-ja.html +370 -0
- data/pgpool2/doc/tutorial-memqcache-zh_cn.html +322 -0
- data/pgpool2/doc/tutorial-watchdog-en.html +306 -0
- data/pgpool2/doc/tutorial-watchdog-ja.html +343 -0
- data/pgpool2/doc/tutorial-watchdog-zh_cn.html +301 -0
- data/pgpool2/doc/tutorial-zh_cn.html +537 -0
- data/pgpool2/doc/watchdog.png +0 -0
- data/pgpool2/doc/wd-en.html +236 -0
- data/pgpool2/doc/wd-en.jpg +0 -0
- data/pgpool2/doc/wd-ja.html +219 -0
- data/pgpool2/doc/wd-ja.jpg +0 -0
- data/pgpool2/doc/wd-zh_cn.html +201 -0
- data/pgpool2/doc/where_to_send_queries.odg +0 -0
- data/pgpool2/doc/where_to_send_queries.pdf +0 -0
- data/pgpool2/general.m4 +166 -0
- data/pgpool2/getopt_long.c +200 -0
- data/pgpool2/getopt_long.h +44 -0
- data/pgpool2/install-sh +251 -0
- data/pgpool2/ltmain.sh +8406 -0
- data/pgpool2/m4/libtool.m4 +7360 -0
- data/pgpool2/m4/ltoptions.m4 +368 -0
- data/pgpool2/m4/ltsugar.m4 +123 -0
- data/pgpool2/m4/ltversion.m4 +23 -0
- data/pgpool2/m4/lt~obsolete.m4 +92 -0
- data/pgpool2/main.c +2971 -0
- data/pgpool2/md5.c +444 -0
- data/pgpool2/md5.h +28 -0
- data/pgpool2/missing +360 -0
- data/pgpool2/mkinstalldirs +40 -0
- data/pgpool2/parser/Makefile.am +50 -0
- data/pgpool2/parser/Makefile.in +559 -0
- data/pgpool2/parser/copyfuncs.c +3310 -0
- data/pgpool2/parser/gram.c +39100 -0
- data/pgpool2/parser/gram.h +940 -0
- data/pgpool2/parser/gram.y +13408 -0
- data/pgpool2/parser/gramparse.h +74 -0
- data/pgpool2/parser/keywords.c +32 -0
- data/pgpool2/parser/keywords.h +39 -0
- data/pgpool2/parser/kwlist.h +425 -0
- data/pgpool2/parser/kwlookup.c +88 -0
- data/pgpool2/parser/list.c +1156 -0
- data/pgpool2/parser/makefuncs.c +518 -0
- data/pgpool2/parser/makefuncs.h +83 -0
- data/pgpool2/parser/memnodes.h +79 -0
- data/pgpool2/parser/nodes.c +29 -0
- data/pgpool2/parser/nodes.h +609 -0
- data/pgpool2/parser/outfuncs.c +5790 -0
- data/pgpool2/parser/parsenodes.h +2615 -0
- data/pgpool2/parser/parser.c +262 -0
- data/pgpool2/parser/parser.h +46 -0
- data/pgpool2/parser/pg_class.h +158 -0
- data/pgpool2/parser/pg_config_manual.h +273 -0
- data/pgpool2/parser/pg_list.h +352 -0
- data/pgpool2/parser/pg_trigger.h +147 -0
- data/pgpool2/parser/pg_wchar.h +492 -0
- data/pgpool2/parser/pool_memory.c +342 -0
- data/pgpool2/parser/pool_memory.h +77 -0
- data/pgpool2/parser/pool_parser.h +222 -0
- data/pgpool2/parser/pool_string.c +121 -0
- data/pgpool2/parser/pool_string.h +37 -0
- data/pgpool2/parser/primnodes.h +1280 -0
- data/pgpool2/parser/scan.c +4094 -0
- data/pgpool2/parser/scan.l +1451 -0
- data/pgpool2/parser/scanner.h +120 -0
- data/pgpool2/parser/scansup.c +221 -0
- data/pgpool2/parser/scansup.h +28 -0
- data/pgpool2/parser/snprintf.c +1102 -0
- data/pgpool2/parser/stringinfo.c +294 -0
- data/pgpool2/parser/stringinfo.h +178 -0
- data/pgpool2/parser/value.c +78 -0
- data/pgpool2/parser/value.h +62 -0
- data/pgpool2/parser/wchar.c +2048 -0
- data/pgpool2/pcp.conf.sample +28 -0
- data/pgpool2/pcp/Makefile.am +40 -0
- data/pgpool2/pcp/Makefile.in +771 -0
- data/pgpool2/pcp/libpcp_ext.h +250 -0
- data/pgpool2/pcp/md5.c +444 -0
- data/pgpool2/pcp/md5.h +28 -0
- data/pgpool2/pcp/pcp.c +1652 -0
- data/pgpool2/pcp/pcp.h +61 -0
- data/pgpool2/pcp/pcp_attach_node.c +172 -0
- data/pgpool2/pcp/pcp_detach_node.c +185 -0
- data/pgpool2/pcp/pcp_error.c +87 -0
- data/pgpool2/pcp/pcp_node_count.c +160 -0
- data/pgpool2/pcp/pcp_node_info.c +198 -0
- data/pgpool2/pcp/pcp_pool_status.c +166 -0
- data/pgpool2/pcp/pcp_proc_count.c +166 -0
- data/pgpool2/pcp/pcp_proc_info.c +261 -0
- data/pgpool2/pcp/pcp_promote_node.c +185 -0
- data/pgpool2/pcp/pcp_recovery_node.c +172 -0
- data/pgpool2/pcp/pcp_stop_pgpool.c +179 -0
- data/pgpool2/pcp/pcp_stream.c +385 -0
- data/pgpool2/pcp/pcp_stream.h +52 -0
- data/pgpool2/pcp/pcp_systemdb_info.c +194 -0
- data/pgpool2/pcp/pcp_watchdog_info.c +211 -0
- data/pgpool2/pcp_child.c +1493 -0
- data/pgpool2/pg_md5.c +305 -0
- data/pgpool2/pgpool.8.in +121 -0
- data/pgpool2/pgpool.conf +553 -0
- data/pgpool2/pgpool.conf.sample +666 -0
- data/pgpool2/pgpool.conf.sample-master-slave +665 -0
- data/pgpool2/pgpool.conf.sample-replication +664 -0
- data/pgpool2/pgpool.conf.sample-stream +664 -0
- data/pgpool2/pgpool.spec +264 -0
- data/pgpool2/pgpool_adm/TODO +7 -0
- data/pgpool2/pgpool_adm/pgpool_adm--1.0.sql +85 -0
- data/pgpool2/pgpool_adm/pgpool_adm.c +558 -0
- data/pgpool2/pgpool_adm/pgpool_adm.control +5 -0
- data/pgpool2/pgpool_adm/pgpool_adm.h +46 -0
- data/pgpool2/pgpool_adm/pgpool_adm.sql.in +85 -0
- data/pgpool2/pool.h +655 -0
- data/pgpool2/pool_auth.c +1390 -0
- data/pgpool2/pool_config.c +5007 -0
- data/pgpool2/pool_config.h +284 -0
- data/pgpool2/pool_config.l +3281 -0
- data/pgpool2/pool_config_md5.c +29 -0
- data/pgpool2/pool_connection_pool.c +812 -0
- data/pgpool2/pool_error.c +242 -0
- data/pgpool2/pool_globals.c +27 -0
- data/pgpool2/pool_hba.c +1723 -0
- data/pgpool2/pool_hba.conf.sample +67 -0
- data/pgpool2/pool_ip.c +567 -0
- data/pgpool2/pool_ip.h +65 -0
- data/pgpool2/pool_ipc.h +38 -0
- data/pgpool2/pool_lobj.c +242 -0
- data/pgpool2/pool_lobj.h +32 -0
- data/pgpool2/pool_memqcache.c +3818 -0
- data/pgpool2/pool_memqcache.h +268 -0
- data/pgpool2/pool_params.c +163 -0
- data/pgpool2/pool_passwd.c +249 -0
- data/pgpool2/pool_passwd.h +41 -0
- data/pgpool2/pool_path.c +193 -0
- data/pgpool2/pool_path.h +81 -0
- data/pgpool2/pool_process_context.c +247 -0
- data/pgpool2/pool_process_context.h +62 -0
- data/pgpool2/pool_process_query.c +5001 -0
- data/pgpool2/pool_process_reporting.c +1671 -0
- data/pgpool2/pool_process_reporting.h +44 -0
- data/pgpool2/pool_proto2.c +671 -0
- data/pgpool2/pool_proto_modules.c +3524 -0
- data/pgpool2/pool_proto_modules.h +185 -0
- data/pgpool2/pool_query_cache.c +1020 -0
- data/pgpool2/pool_query_context.c +1871 -0
- data/pgpool2/pool_query_context.h +105 -0
- data/pgpool2/pool_relcache.c +284 -0
- data/pgpool2/pool_relcache.h +78 -0
- data/pgpool2/pool_rewrite_outfuncs.c +9060 -0
- data/pgpool2/pool_rewrite_query.c +715 -0
- data/pgpool2/pool_rewrite_query.h +192 -0
- data/pgpool2/pool_select_walker.c +1150 -0
- data/pgpool2/pool_select_walker.h +68 -0
- data/pgpool2/pool_sema.c +161 -0
- data/pgpool2/pool_session_context.c +952 -0
- data/pgpool2/pool_session_context.h +203 -0
- data/pgpool2/pool_shmem.c +185 -0
- data/pgpool2/pool_signal.c +158 -0
- data/pgpool2/pool_signal.h +61 -0
- data/pgpool2/pool_ssl.c +339 -0
- data/pgpool2/pool_stream.c +962 -0
- data/pgpool2/pool_stream.h +61 -0
- data/pgpool2/pool_system.c +659 -0
- data/pgpool2/pool_timestamp.c +1215 -0
- data/pgpool2/pool_timestamp.h +38 -0
- data/pgpool2/pool_type.h +171 -0
- data/pgpool2/pool_worker_child.c +384 -0
- data/pgpool2/ps_status.c +404 -0
- data/pgpool2/recovery.c +435 -0
- data/pgpool2/redhat/pgpool.conf.sample.patch +52 -0
- data/pgpool2/redhat/pgpool.init +201 -0
- data/pgpool2/redhat/pgpool.sysconfig +7 -0
- data/pgpool2/redhat/rpm_installer/basebackup-replication.sh +53 -0
- data/pgpool2/redhat/rpm_installer/basebackup-stream.sh +55 -0
- data/pgpool2/redhat/rpm_installer/config_for_script +17 -0
- data/pgpool2/redhat/rpm_installer/failover.sh +64 -0
- data/pgpool2/redhat/rpm_installer/getsources.sh +141 -0
- data/pgpool2/redhat/rpm_installer/install.sh +1363 -0
- data/pgpool2/redhat/rpm_installer/pgpool_recovery_pitr +47 -0
- data/pgpool2/redhat/rpm_installer/pgpool_remote_start +15 -0
- data/pgpool2/redhat/rpm_installer/recovery.conf +4 -0
- data/pgpool2/redhat/rpm_installer/uninstall.sh +57 -0
- data/pgpool2/sample/dist_def_pgbench.sql +73 -0
- data/pgpool2/sample/pgpool.pam +3 -0
- data/pgpool2/sample/pgpool_recovery +20 -0
- data/pgpool2/sample/pgpool_recovery_pitr +19 -0
- data/pgpool2/sample/pgpool_remote_start +13 -0
- data/pgpool2/sample/replicate_def_pgbench.sql +18 -0
- data/pgpool2/sql/insert_lock.sql +15 -0
- data/pgpool2/sql/pgpool-recovery/pgpool-recovery.c +280 -0
- data/pgpool2/sql/pgpool-recovery/pgpool-recovery.sql.in +19 -0
- data/pgpool2/sql/pgpool-recovery/pgpool_recovery--1.0.sql +24 -0
- data/pgpool2/sql/pgpool-recovery/pgpool_recovery.control +5 -0
- data/pgpool2/sql/pgpool-recovery/uninstall_pgpool-recovery.sql +3 -0
- data/pgpool2/sql/pgpool-regclass/pgpool-regclass.c +206 -0
- data/pgpool2/sql/pgpool-regclass/pgpool-regclass.sql.in +4 -0
- data/pgpool2/sql/pgpool-regclass/pgpool_regclass--1.0.sql +7 -0
- data/pgpool2/sql/pgpool-regclass/pgpool_regclass.control +5 -0
- data/pgpool2/sql/pgpool-regclass/uninstall_pgpool-regclass.sql +1 -0
- data/pgpool2/sql/system_db.sql +38 -0
- data/pgpool2/strlcpy.c +85 -0
- data/pgpool2/test/C/test_extended.c +98 -0
- data/pgpool2/test/jdbc/.cvsignore +2 -0
- data/pgpool2/test/jdbc/AutoCommitTest.java +45 -0
- data/pgpool2/test/jdbc/BatchTest.java +55 -0
- data/pgpool2/test/jdbc/ColumnTest.java +60 -0
- data/pgpool2/test/jdbc/CreateTempTableTest.java +48 -0
- data/pgpool2/test/jdbc/InsertTest.java +34 -0
- data/pgpool2/test/jdbc/LockTest.java +36 -0
- data/pgpool2/test/jdbc/PgpoolTest.java +75 -0
- data/pgpool2/test/jdbc/README.euc_jp +73 -0
- data/pgpool2/test/jdbc/RunTest.java +83 -0
- data/pgpool2/test/jdbc/SelectTest.java +37 -0
- data/pgpool2/test/jdbc/UpdateTest.java +32 -0
- data/pgpool2/test/jdbc/expected/CreateTempTable +1 -0
- data/pgpool2/test/jdbc/expected/autocommit +10 -0
- data/pgpool2/test/jdbc/expected/batch +1 -0
- data/pgpool2/test/jdbc/expected/column +100 -0
- data/pgpool2/test/jdbc/expected/insert +1 -0
- data/pgpool2/test/jdbc/expected/lock +100 -0
- data/pgpool2/test/jdbc/expected/select +2 -0
- data/pgpool2/test/jdbc/expected/update +1 -0
- data/pgpool2/test/jdbc/pgpool.properties +7 -0
- data/pgpool2/test/jdbc/prepare.sql +54 -0
- data/pgpool2/test/jdbc/run.sh +6 -0
- data/pgpool2/test/parser/.cvsignore +6 -0
- data/pgpool2/test/parser/README +32 -0
- data/pgpool2/test/parser/expected/copy.out +17 -0
- data/pgpool2/test/parser/expected/create.out +64 -0
- data/pgpool2/test/parser/expected/cursor.out +37 -0
- data/pgpool2/test/parser/expected/delete.out +10 -0
- data/pgpool2/test/parser/expected/drop.out +12 -0
- data/pgpool2/test/parser/expected/insert.out +13 -0
- data/pgpool2/test/parser/expected/misc.out +28 -0
- data/pgpool2/test/parser/expected/prepare.out +4 -0
- data/pgpool2/test/parser/expected/privileges.out +31 -0
- data/pgpool2/test/parser/expected/scanner.out +30 -0
- data/pgpool2/test/parser/expected/select.out +89 -0
- data/pgpool2/test/parser/expected/transaction.out +38 -0
- data/pgpool2/test/parser/expected/update.out +11 -0
- data/pgpool2/test/parser/expected/v84.out +37 -0
- data/pgpool2/test/parser/expected/v90.out +25 -0
- data/pgpool2/test/parser/expected/var.out +22 -0
- data/pgpool2/test/parser/input/alter.sql +2 -0
- data/pgpool2/test/parser/input/copy.sql +17 -0
- data/pgpool2/test/parser/input/create.sql +64 -0
- data/pgpool2/test/parser/input/cursor.sql +37 -0
- data/pgpool2/test/parser/input/delete.sql +10 -0
- data/pgpool2/test/parser/input/drop.sql +12 -0
- data/pgpool2/test/parser/input/insert.sql +13 -0
- data/pgpool2/test/parser/input/misc.sql +28 -0
- data/pgpool2/test/parser/input/prepare.sql +4 -0
- data/pgpool2/test/parser/input/privileges.sql +31 -0
- data/pgpool2/test/parser/input/scanner.sql +34 -0
- data/pgpool2/test/parser/input/select.sql +89 -0
- data/pgpool2/test/parser/input/transaction.sql +38 -0
- data/pgpool2/test/parser/input/update.sql +11 -0
- data/pgpool2/test/parser/input/v84.sql +37 -0
- data/pgpool2/test/parser/input/v90.sql +38 -0
- data/pgpool2/test/parser/input/var.sql +22 -0
- data/pgpool2/test/parser/main.c +96 -0
- data/pgpool2/test/parser/parse_schedule +16 -0
- data/pgpool2/test/parser/pool.h +13 -0
- data/pgpool2/test/parser/run-test +62 -0
- data/pgpool2/test/pdo-test/README.euc_jp +58 -0
- data/pgpool2/test/pdo-test/SQLlist/test1.sql +3 -0
- data/pgpool2/test/pdo-test/SQLlist/test2.sql +3 -0
- data/pgpool2/test/pdo-test/collections.inc +11 -0
- data/pgpool2/test/pdo-test/def.inc +7 -0
- data/pgpool2/test/pdo-test/log.txt +0 -0
- data/pgpool2/test/pdo-test/mod/database.inc +36 -0
- data/pgpool2/test/pdo-test/mod/def.inc +0 -0
- data/pgpool2/test/pdo-test/mod/errorhandler.inc +27 -0
- data/pgpool2/test/pdo-test/pdotest.php +11 -0
- data/pgpool2/test/pdo-test/regsql.inc +56 -0
- data/pgpool2/test/pgpool_setup +898 -0
- data/pgpool2/test/regression/README +39 -0
- data/pgpool2/test/regression/clean.sh +21 -0
- data/pgpool2/test/regression/libs.sh +16 -0
- data/pgpool2/test/regression/regress.sh +166 -0
- data/pgpool2/test/regression/tests/001.load_balance/test.sh +128 -0
- data/pgpool2/test/regression/tests/002.native_replication/PgTester.java +47 -0
- data/pgpool2/test/regression/tests/002.native_replication/create.sql +6 -0
- data/pgpool2/test/regression/tests/002.native_replication/test.sh +71 -0
- data/pgpool2/test/regression/tests/003.failover/expected.r +6 -0
- data/pgpool2/test/regression/tests/003.failover/expected.s +6 -0
- data/pgpool2/test/regression/tests/003.failover/test.sh +45 -0
- data/pgpool2/test/regression/tests/004.watchdog/master.conf +12 -0
- data/pgpool2/test/regression/tests/004.watchdog/standby.conf +19 -0
- data/pgpool2/test/regression/tests/004.watchdog/test.sh +52 -0
- data/pgpool2/test/regression/tests/050.bug58/test.sh +50 -0
- data/pgpool2/test/regression/tests/051.bug60/bug.sql +12 -0
- data/pgpool2/test/regression/tests/051.bug60/database-clean.sql +6 -0
- data/pgpool2/test/regression/tests/051.bug60/database-setup.sql +28 -0
- data/pgpool2/test/regression/tests/051.bug60/test.sh +79 -0
- data/pgpool2/test/regression/tests/052.do_query/test.sh +44 -0
- data/pgpool2/test/regression/tests/053.insert_lock_hangs/test.sh +81 -0
- data/pgpool2/test/regression/tests/054.postgres_fdw/test.sh +67 -0
- data/pgpool2/test/regression/tests/055.backend_all_down/test.sh +52 -0
- data/pgpool2/test/regression/tests/056.bug63/jdbctest2.java +66 -0
- data/pgpool2/test/regression/tests/056.bug63/test.sh +47 -0
- data/pgpool2/test/regression/tests/057.bug61/test.sh +40 -0
- data/pgpool2/test/regression/tests/058.bug68/jdbctest3.java +45 -0
- data/pgpool2/test/regression/tests/058.bug68/test.sh +47 -0
- data/pgpool2/test/timestamp/expected/insert.out +16 -0
- data/pgpool2/test/timestamp/expected/misc.out +3 -0
- data/pgpool2/test/timestamp/expected/update.out +6 -0
- data/pgpool2/test/timestamp/input/insert.sql +16 -0
- data/pgpool2/test/timestamp/input/misc.sql +3 -0
- data/pgpool2/test/timestamp/input/update.sql +6 -0
- data/pgpool2/test/timestamp/main.c +129 -0
- data/pgpool2/test/timestamp/parse_schedule +3 -0
- data/pgpool2/test/timestamp/run-test +69 -0
- data/pgpool2/version.h +1 -0
- data/pgpool2/watchdog/Makefile.am +17 -0
- data/pgpool2/watchdog/Makefile.in +505 -0
- data/pgpool2/watchdog/test/stab.c +266 -0
- data/pgpool2/watchdog/test/test.c +85 -0
- data/pgpool2/watchdog/test/wd_child_t.c +87 -0
- data/pgpool2/watchdog/test/wd_lifecheck_t.c +87 -0
- data/pgpool2/watchdog/test/wd_packet_t.c +87 -0
- data/pgpool2/watchdog/test/wd_ping_t.c +20 -0
- data/pgpool2/watchdog/watchdog.c +408 -0
- data/pgpool2/watchdog/watchdog.h +209 -0
- data/pgpool2/watchdog/wd_child.c +444 -0
- data/pgpool2/watchdog/wd_ext.h +123 -0
- data/pgpool2/watchdog/wd_heartbeat.c +577 -0
- data/pgpool2/watchdog/wd_if.c +216 -0
- data/pgpool2/watchdog/wd_init.c +126 -0
- data/pgpool2/watchdog/wd_interlock.c +347 -0
- data/pgpool2/watchdog/wd_lifecheck.c +512 -0
- data/pgpool2/watchdog/wd_list.c +429 -0
- data/pgpool2/watchdog/wd_packet.c +1159 -0
- data/pgpool2/watchdog/wd_ping.c +330 -0
- data/pgpool2/ylwrap +223 -0
- data/pgsql/presto_client.py +346 -0
- data/pgsql/prestogres.py +156 -0
- data/pgsql/setup_functions.sql +21 -0
- data/pgsql/setup_language.sql +3 -0
- data/prestogres.gemspec +23 -0
- metadata +496 -0
data/pgpool2/md5.c
ADDED
|
@@ -0,0 +1,444 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* md5.c
|
|
3
|
+
*
|
|
4
|
+
* Implements the MD5 Message-Digest Algorithm as specified in
|
|
5
|
+
* RFC 1321. This implementation is a simple one, in that it
|
|
6
|
+
* needs every input byte to be buffered before doing any
|
|
7
|
+
* calculations. I do not expect this file to be used for
|
|
8
|
+
* general purpose MD5'ing of large amounts of data, only for
|
|
9
|
+
* generating hashed passwords from limited input.
|
|
10
|
+
*
|
|
11
|
+
* Sverre H. Huseby <sverrehu@online.no>
|
|
12
|
+
*
|
|
13
|
+
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
|
|
14
|
+
* Portions Copyright (c) 1994, Regents of the University of California
|
|
15
|
+
*
|
|
16
|
+
* This file is imported from PostgreSQL 8.1.3., and modified by
|
|
17
|
+
* Taiki Yamaguchi <yamaguchi@sraoss.co.jp>
|
|
18
|
+
*
|
|
19
|
+
* IDENTIFICATION
|
|
20
|
+
* $Header$
|
|
21
|
+
*/
|
|
22
|
+
|
|
23
|
+
#include <stdio.h>
|
|
24
|
+
#include <stdlib.h>
|
|
25
|
+
#include <string.h>
|
|
26
|
+
#include <ctype.h>
|
|
27
|
+
#include "pool.h"
|
|
28
|
+
#include "md5.h"
|
|
29
|
+
|
|
30
|
+
#ifdef NOT_USED
|
|
31
|
+
typedef unsigned char uint8; /* == 8 bits */
|
|
32
|
+
typedef unsigned int uint32; /* == 32 bits */
|
|
33
|
+
#endif
|
|
34
|
+
|
|
35
|
+
#define S11 7
|
|
36
|
+
#define S12 12
|
|
37
|
+
#define S13 17
|
|
38
|
+
#define S14 22
|
|
39
|
+
#define S21 5
|
|
40
|
+
#define S22 9
|
|
41
|
+
#define S23 14
|
|
42
|
+
#define S24 20
|
|
43
|
+
#define S31 4
|
|
44
|
+
#define S32 11
|
|
45
|
+
#define S33 16
|
|
46
|
+
#define S34 23
|
|
47
|
+
#define S41 6
|
|
48
|
+
#define S42 10
|
|
49
|
+
#define S43 15
|
|
50
|
+
#define S44 21
|
|
51
|
+
|
|
52
|
+
#define F(x, y, z) (((x) & (y)) | ((~x) & (z)))
|
|
53
|
+
#define G(x, y, z) (((x) & (z)) | ((y) & (~z)))
|
|
54
|
+
#define H(x, y, z) ((x) ^ (y) ^ (z))
|
|
55
|
+
#define I(x, y, z) ((y) ^ ((x) | (~z)))
|
|
56
|
+
|
|
57
|
+
#define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32 - (n))))
|
|
58
|
+
|
|
59
|
+
#define FF(a, b, c, d, x, s, ac) { \
|
|
60
|
+
(a) += F((b), (c), (d)) + (x) + (uint32)(ac); \
|
|
61
|
+
(a) = ROTATE_LEFT((a), (s)); \
|
|
62
|
+
(a) += (b); \
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
#define GG(a, b, c, d, x, s, ac) { \
|
|
66
|
+
(a) += G((b), (c), (d)) + (x) + (uint32)(ac); \
|
|
67
|
+
(a) = ROTATE_LEFT((a), (s)); \
|
|
68
|
+
(a) += (b); \
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
#define HH(a, b, c, d, x, s, ac) { \
|
|
72
|
+
(a) += H((b), (c), (d)) + (x) + (uint32)(ac); \
|
|
73
|
+
(a) = ROTATE_LEFT((a), (s)); \
|
|
74
|
+
(a) += (b); \
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
#define II(a, b, c, d, x, s, ac) { \
|
|
78
|
+
(a) += I((b), (c), (d)) + (x) + (uint32)(ac); \
|
|
79
|
+
(a) = ROTATE_LEFT((a), (s)); \
|
|
80
|
+
(a) += (b); \
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
const uint32 T[64] =
|
|
84
|
+
{
|
|
85
|
+
0xd76aa478, 0xe8c7b756, 0x242070db, 0xc1bdceee, 0xf57c0faf, 0x4787c62a, 0xa8304613, 0xfd469501,
|
|
86
|
+
0x698098d8, 0x8b44f7af, 0xffff5bb1, 0x895cd7be, 0x6b901122, 0xfd987193, 0xa679438e, 0x49b40821,
|
|
87
|
+
|
|
88
|
+
0xf61e2562, 0xc040b340, 0x265e5a51, 0xe9b6c7aa, 0xd62f105d, 0x02441453, 0xd8a1e681, 0xe7d3fbc8,
|
|
89
|
+
0x21e1cde6, 0xc33707d6, 0xf4d50d87, 0x455a14ed, 0xa9e3e905, 0xfcefa3f8, 0x676f02d9, 0x8d2a4c8a,
|
|
90
|
+
|
|
91
|
+
0xfffa3942, 0x8771f681, 0x6d9d6122, 0xfde5380c, 0xa4beea44, 0x4bdecfa9, 0xf6bb4b60, 0xbebfbc70,
|
|
92
|
+
0x289b7ec6, 0xeaa127fa, 0xd4ef3085, 0x04881d05, 0xd9d4d039, 0xe6db99e5, 0x1fa27cf8, 0xc4ac5665,
|
|
93
|
+
|
|
94
|
+
0xf4292244, 0x432aff97, 0xab9423a7, 0xfc93a039, 0x655b59c3, 0x8f0ccc92, 0xffeff47d, 0x85845dd1,
|
|
95
|
+
0x6fa87e4f, 0xfe2ce6e0, 0xa3014314, 0x4e0811a1, 0xf7537e82, 0xbd3af235, 0x2ad7d2bb, 0xeb86d391
|
|
96
|
+
};
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
/*
|
|
100
|
+
* PRIVATE FUNCTIONS
|
|
101
|
+
*/
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
/*
|
|
105
|
+
* The returned array is allocated using malloc. the caller should free it
|
|
106
|
+
* when it is no longer needed.
|
|
107
|
+
*/
|
|
108
|
+
static uint8 *
|
|
109
|
+
createPaddedCopyWithLength(uint8 *b, uint32 *l)
|
|
110
|
+
{
|
|
111
|
+
/*
|
|
112
|
+
* uint8 *b - message to be digested
|
|
113
|
+
* uint32 *l - length of b
|
|
114
|
+
*/
|
|
115
|
+
uint8 *ret;
|
|
116
|
+
uint32 q;
|
|
117
|
+
uint32 len,
|
|
118
|
+
newLen448;
|
|
119
|
+
uint32 len_high,
|
|
120
|
+
len_low; /* 64-bit value split into 32-bit sections */
|
|
121
|
+
|
|
122
|
+
len = ((b == NULL) ? 0 : *l);
|
|
123
|
+
newLen448 = len + 64 - (len % 64) - 8;
|
|
124
|
+
if (newLen448 <= len)
|
|
125
|
+
newLen448 += 64;
|
|
126
|
+
|
|
127
|
+
*l = newLen448 + 8;
|
|
128
|
+
if ((ret = (uint8 *) malloc(sizeof(uint8) * *l)) == NULL)
|
|
129
|
+
return NULL;
|
|
130
|
+
|
|
131
|
+
if (b != NULL)
|
|
132
|
+
memcpy(ret, b, sizeof(uint8) * len);
|
|
133
|
+
|
|
134
|
+
/* pad */
|
|
135
|
+
ret[len] = 0x80;
|
|
136
|
+
for (q = len + 1; q < newLen448; q++)
|
|
137
|
+
ret[q] = 0x00;
|
|
138
|
+
|
|
139
|
+
/* append length as a 64 bit bitcount */
|
|
140
|
+
len_low = len;
|
|
141
|
+
/* split into two 32-bit values */
|
|
142
|
+
/* we only look at the bottom 32-bits */
|
|
143
|
+
len_high = len >> 29;
|
|
144
|
+
len_low <<= 3;
|
|
145
|
+
q = newLen448;
|
|
146
|
+
ret[q++] = (len_low & 0xff);
|
|
147
|
+
len_low >>= 8;
|
|
148
|
+
ret[q++] = (len_low & 0xff);
|
|
149
|
+
len_low >>= 8;
|
|
150
|
+
ret[q++] = (len_low & 0xff);
|
|
151
|
+
len_low >>= 8;
|
|
152
|
+
ret[q++] = (len_low & 0xff);
|
|
153
|
+
ret[q++] = (len_high & 0xff);
|
|
154
|
+
len_high >>= 8;
|
|
155
|
+
ret[q++] = (len_high & 0xff);
|
|
156
|
+
len_high >>= 8;
|
|
157
|
+
ret[q++] = (len_high & 0xff);
|
|
158
|
+
len_high >>= 8;
|
|
159
|
+
ret[q] = (len_high & 0xff);
|
|
160
|
+
|
|
161
|
+
return ret;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
static void
|
|
165
|
+
doTheRounds(uint32 X[16], uint32 state[4])
|
|
166
|
+
{
|
|
167
|
+
uint32 a,
|
|
168
|
+
b,
|
|
169
|
+
c,
|
|
170
|
+
d;
|
|
171
|
+
|
|
172
|
+
a = state[0];
|
|
173
|
+
b = state[1];
|
|
174
|
+
c = state[2];
|
|
175
|
+
d = state[3];
|
|
176
|
+
|
|
177
|
+
/* round 1 */
|
|
178
|
+
FF(a, b, c, d, X[ 0], S11, T[ 0]);
|
|
179
|
+
FF(d, a, b, c, X[ 1], S12, T[ 1]);
|
|
180
|
+
FF(c, d, a, b, X[ 2], S13, T[ 2]);
|
|
181
|
+
FF(b, c, d, a, X[ 3], S14, T[ 3]);
|
|
182
|
+
FF(a, b, c, d, X[ 4], S11, T[ 4]);
|
|
183
|
+
FF(d, a, b, c, X[ 5], S12, T[ 5]);
|
|
184
|
+
FF(c, d, a, b, X[ 6], S13, T[ 6]);
|
|
185
|
+
FF(b, c, d, a, X[ 7], S14, T[ 7]);
|
|
186
|
+
FF(a, b, c, d, X[ 8], S11, T[ 8]);
|
|
187
|
+
FF(d, a, b, c, X[ 9], S12, T[ 9]);
|
|
188
|
+
FF(c, d, a, b, X[10], S13, T[10]);
|
|
189
|
+
FF(b, c, d, a, X[11], S14, T[11]);
|
|
190
|
+
FF(a, b, c, d, X[12], S11, T[12]);
|
|
191
|
+
FF(d, a, b, c, X[13], S12, T[13]);
|
|
192
|
+
FF(c, d, a, b, X[14], S13, T[14]);
|
|
193
|
+
FF(b, c, d, a, X[15], S14, T[15]);
|
|
194
|
+
|
|
195
|
+
GG(a, b, c, d, X[ 1], S21, T[16]);
|
|
196
|
+
GG(d, a, b, c, X[ 6], S22, T[17]);
|
|
197
|
+
GG(c, d, a, b, X[11], S23, T[18]);
|
|
198
|
+
GG(b, c, d, a, X[ 0], S24, T[19]);
|
|
199
|
+
GG(a, b, c, d, X[ 5], S21, T[20]);
|
|
200
|
+
GG(d, a, b, c, X[10], S22, T[21]);
|
|
201
|
+
GG(c, d, a, b, X[15], S23, T[22]);
|
|
202
|
+
GG(b, c, d, a, X[ 4], S24, T[23]);
|
|
203
|
+
GG(a, b, c, d, X[ 9], S21, T[24]);
|
|
204
|
+
GG(d, a, b, c, X[14], S22, T[25]);
|
|
205
|
+
GG(c, d, a, b, X[ 3], S23, T[26]);
|
|
206
|
+
GG(b, c, d, a, X[ 8], S24, T[27]);
|
|
207
|
+
GG(a, b, c, d, X[13], S21, T[28]);
|
|
208
|
+
GG(d, a, b, c, X[ 2], S22, T[29]);
|
|
209
|
+
GG(c, d, a, b, X[ 7], S23, T[30]);
|
|
210
|
+
GG(b, c, d, a, X[12], S24, T[31]);
|
|
211
|
+
|
|
212
|
+
HH(a, b, c, d, X[ 5], S31, T[32]);
|
|
213
|
+
HH(d, a, b, c, X[ 8], S32, T[33]);
|
|
214
|
+
HH(c, d, a, b, X[11], S33, T[34]);
|
|
215
|
+
HH(b, c, d, a, X[14], S34, T[35]);
|
|
216
|
+
HH(a, b, c, d, X[ 1], S31, T[36]);
|
|
217
|
+
HH(d, a, b, c, X[ 4], S32, T[37]);
|
|
218
|
+
HH(c, d, a, b, X[ 7], S33, T[38]);
|
|
219
|
+
HH(b, c, d, a, X[10], S34, T[39]);
|
|
220
|
+
HH(a, b, c, d, X[13], S31, T[40]);
|
|
221
|
+
HH(d, a, b, c, X[ 0], S32, T[41]);
|
|
222
|
+
HH(c, d, a, b, X[ 3], S33, T[42]);
|
|
223
|
+
HH(b, c, d, a, X[ 6], S34, T[43]);
|
|
224
|
+
HH(a, b, c, d, X[ 9], S31, T[44]);
|
|
225
|
+
HH(d, a, b, c, X[12], S32, T[45]);
|
|
226
|
+
HH(c, d, a, b, X[15], S33, T[46]);
|
|
227
|
+
HH(b, c, d, a, X[ 2], S34, T[47]);
|
|
228
|
+
|
|
229
|
+
II(a, b, c, d, X[ 0], S41, T[48]);
|
|
230
|
+
II(d, a, b, c, X[ 7], S42, T[49]);
|
|
231
|
+
II(c, d, a, b, X[14], S43, T[50]);
|
|
232
|
+
II(b, c, d, a, X[ 5], S44, T[51]);
|
|
233
|
+
II(a, b, c, d, X[12], S41, T[52]);
|
|
234
|
+
II(d, a, b, c, X[ 3], S42, T[53]);
|
|
235
|
+
II(c, d, a, b, X[10], S43, T[54]);
|
|
236
|
+
II(b, c, d, a, X[ 1], S44, T[55]);
|
|
237
|
+
II(a, b, c, d, X[ 8], S41, T[56]);
|
|
238
|
+
II(d, a, b, c, X[15], S42, T[57]);
|
|
239
|
+
II(c, d, a, b, X[ 6], S43, T[58]);
|
|
240
|
+
II(b, c, d, a, X[13], S44, T[59]);
|
|
241
|
+
II(a, b, c, d, X[ 4], S41, T[60]);
|
|
242
|
+
II(d, a, b, c, X[11], S42, T[61]);
|
|
243
|
+
II(c, d, a, b, X[ 2], S43, T[62]);
|
|
244
|
+
II(b, c, d, a, X[ 9], S44, T[63]);
|
|
245
|
+
|
|
246
|
+
state[0] += a;
|
|
247
|
+
state[1] += b;
|
|
248
|
+
state[2] += c;
|
|
249
|
+
state[3] += d;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
static int
|
|
253
|
+
calculateDigestFromBuffer(uint8 *b, uint32 len, uint8 sum[16])
|
|
254
|
+
{
|
|
255
|
+
/*
|
|
256
|
+
* uint8 *b - message to be digested
|
|
257
|
+
* uint32 len - length of b
|
|
258
|
+
* uint8 sum[16] - md5 digest calculated from b
|
|
259
|
+
*/
|
|
260
|
+
|
|
261
|
+
register uint32 i,
|
|
262
|
+
j,
|
|
263
|
+
k,
|
|
264
|
+
newI;
|
|
265
|
+
uint32 l;
|
|
266
|
+
uint8 *input;
|
|
267
|
+
register uint32 *wbp;
|
|
268
|
+
uint32 workBuff[16],
|
|
269
|
+
state[4];
|
|
270
|
+
|
|
271
|
+
l = len;
|
|
272
|
+
|
|
273
|
+
state[0] = 0x67452301;
|
|
274
|
+
state[1] = 0xEFCDAB89;
|
|
275
|
+
state[2] = 0x98BADCFE;
|
|
276
|
+
state[3] = 0x10325476;
|
|
277
|
+
|
|
278
|
+
if ((input = createPaddedCopyWithLength(b, &l)) == NULL)
|
|
279
|
+
return 0;
|
|
280
|
+
|
|
281
|
+
for (i = 0;;)
|
|
282
|
+
{
|
|
283
|
+
if ((newI = i + 16 * 4) > l)
|
|
284
|
+
break;
|
|
285
|
+
k = i + 3;
|
|
286
|
+
for (j = 0; j < 16; j++)
|
|
287
|
+
{
|
|
288
|
+
wbp = (workBuff + j);
|
|
289
|
+
*wbp = input[k--];
|
|
290
|
+
*wbp <<= 8;
|
|
291
|
+
*wbp |= input[k--];
|
|
292
|
+
*wbp <<= 8;
|
|
293
|
+
*wbp |= input[k--];
|
|
294
|
+
*wbp <<= 8;
|
|
295
|
+
*wbp |= input[k];
|
|
296
|
+
k += 7;
|
|
297
|
+
}
|
|
298
|
+
doTheRounds(workBuff, state);
|
|
299
|
+
i = newI;
|
|
300
|
+
}
|
|
301
|
+
free(input);
|
|
302
|
+
|
|
303
|
+
j = 0;
|
|
304
|
+
for (i = 0; i < 4; i++)
|
|
305
|
+
{
|
|
306
|
+
k = state[i];
|
|
307
|
+
sum[j++] = (k & 0xff);
|
|
308
|
+
k >>= 8;
|
|
309
|
+
sum[j++] = (k & 0xff);
|
|
310
|
+
k >>= 8;
|
|
311
|
+
sum[j++] = (k & 0xff);
|
|
312
|
+
k >>= 8;
|
|
313
|
+
sum[j++] = (k & 0xff);
|
|
314
|
+
}
|
|
315
|
+
return 1;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
static void
|
|
319
|
+
bytesToHex(uint8 b[16], char *s)
|
|
320
|
+
{
|
|
321
|
+
static const char *hex = "0123456789abcdef";
|
|
322
|
+
int q,
|
|
323
|
+
w;
|
|
324
|
+
|
|
325
|
+
for (q = 0, w = 0; q < 16; q++)
|
|
326
|
+
{
|
|
327
|
+
s[w++] = hex[(b[q] >> 4) & 0x0F];
|
|
328
|
+
s[w++] = hex[b[q] & 0x0F];
|
|
329
|
+
}
|
|
330
|
+
s[w] = '\0';
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
/*
|
|
334
|
+
* PUBLIC FUNCTIONS
|
|
335
|
+
*/
|
|
336
|
+
|
|
337
|
+
/*
|
|
338
|
+
* pool_md5_hash
|
|
339
|
+
*
|
|
340
|
+
* Calculates the MD5 sum of the bytes in a buffer.
|
|
341
|
+
*
|
|
342
|
+
* SYNOPSIS int pool_md5_hash(const void *buff, size_t len, char *hexsum)
|
|
343
|
+
*
|
|
344
|
+
* INPUT buff the buffer containing the bytes that you want
|
|
345
|
+
* the MD5 sum of.
|
|
346
|
+
* len number of bytes in the buffer.
|
|
347
|
+
*
|
|
348
|
+
* OUTPUT hexsum the MD5 sum as a '\0'-terminated string of
|
|
349
|
+
* hexadecimal digits. an MD5 sum is 16 bytes long.
|
|
350
|
+
* each byte is represented by two heaxadecimal
|
|
351
|
+
* characters. you thus need to provide an array
|
|
352
|
+
* of 33 characters, including the trailing '\0'.
|
|
353
|
+
*
|
|
354
|
+
* RETURNS false on failure (out of memory for internal buffers) or
|
|
355
|
+
* true on success.
|
|
356
|
+
*
|
|
357
|
+
* STANDARDS MD5 is described in RFC 1321.
|
|
358
|
+
*
|
|
359
|
+
* AUTHOR Sverre H. Huseby <sverrehu@online.no>
|
|
360
|
+
* MODIFIED by Taiki Yamaguchi <yamaguchi@sraoss.co.jp>
|
|
361
|
+
*
|
|
362
|
+
*/
|
|
363
|
+
int
|
|
364
|
+
pool_md5_hash(const void *buff, size_t len, char *hexsum)
|
|
365
|
+
{
|
|
366
|
+
uint8 sum[16];
|
|
367
|
+
|
|
368
|
+
if (!calculateDigestFromBuffer((uint8 *) buff, len, sum))
|
|
369
|
+
return 0; /* failed */
|
|
370
|
+
|
|
371
|
+
bytesToHex(sum, hexsum);
|
|
372
|
+
return 1; /* success */
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
/*
|
|
376
|
+
* Computes MD5 checksum of "passwd" (a null-terminated string) followed
|
|
377
|
+
* by "salt" (which need not be null-terminated).
|
|
378
|
+
*
|
|
379
|
+
* Output format is a 32-hex-digit MD5 checksum.
|
|
380
|
+
* Hence, the output buffer "buf" must be at least 33 bytes long.
|
|
381
|
+
*
|
|
382
|
+
* Returns 1 if okay, 0 on error (out of memory).
|
|
383
|
+
*/
|
|
384
|
+
int
|
|
385
|
+
pool_md5_encrypt(const char *passwd, const char *salt, size_t salt_len,
|
|
386
|
+
char *buf)
|
|
387
|
+
{
|
|
388
|
+
size_t passwd_len = strlen(passwd);
|
|
389
|
+
char *crypt_buf = malloc(passwd_len + salt_len);
|
|
390
|
+
int ret;
|
|
391
|
+
|
|
392
|
+
if (!crypt_buf)
|
|
393
|
+
return 0; /* failed */
|
|
394
|
+
|
|
395
|
+
/*
|
|
396
|
+
* Place salt at the end because it may be known by users trying to crack
|
|
397
|
+
* the MD5 output.
|
|
398
|
+
*/
|
|
399
|
+
strcpy(crypt_buf, passwd);
|
|
400
|
+
memcpy(crypt_buf + passwd_len, salt, salt_len);
|
|
401
|
+
|
|
402
|
+
ret = pool_md5_hash(crypt_buf, passwd_len + salt_len, buf);
|
|
403
|
+
|
|
404
|
+
free(crypt_buf);
|
|
405
|
+
|
|
406
|
+
return ret;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
/*
|
|
410
|
+
* Computes MD5 checksum of "passwd" (a null-terminated string) followed
|
|
411
|
+
* by "salt" (which need not be null-terminated).
|
|
412
|
+
*
|
|
413
|
+
* Output format is "md5" followed by a 32-hex-digit MD5 checksum.
|
|
414
|
+
* Hence, the output buffer "buf" must be at least 36 bytes long.
|
|
415
|
+
*
|
|
416
|
+
* Returns TRUE if okay, FALSE on error (out of memory).
|
|
417
|
+
*/
|
|
418
|
+
bool
|
|
419
|
+
pg_md5_encrypt(const char *passwd, const char *salt, size_t salt_len,
|
|
420
|
+
char *buf)
|
|
421
|
+
{
|
|
422
|
+
size_t passwd_len = strlen(passwd);
|
|
423
|
+
|
|
424
|
+
/* +1 here is just to avoid risk of unportable malloc(0) */
|
|
425
|
+
char *crypt_buf = malloc(passwd_len + salt_len + 1);
|
|
426
|
+
bool ret;
|
|
427
|
+
|
|
428
|
+
if (!crypt_buf)
|
|
429
|
+
return false;
|
|
430
|
+
|
|
431
|
+
/*
|
|
432
|
+
* Place salt at the end because it may be known by users trying to crack
|
|
433
|
+
* the MD5 output.
|
|
434
|
+
*/
|
|
435
|
+
memcpy(crypt_buf, passwd, passwd_len);
|
|
436
|
+
memcpy(crypt_buf + passwd_len, salt, salt_len);
|
|
437
|
+
|
|
438
|
+
strcpy(buf, "md5");
|
|
439
|
+
ret = pool_md5_hash(crypt_buf, passwd_len + salt_len, buf + 3);
|
|
440
|
+
|
|
441
|
+
free(crypt_buf);
|
|
442
|
+
|
|
443
|
+
return ret;
|
|
444
|
+
}
|
data/pgpool2/md5.h
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/*-------------------------------------------------------------------------
|
|
2
|
+
*
|
|
3
|
+
* md5.h
|
|
4
|
+
* Interface to md5.c
|
|
5
|
+
*
|
|
6
|
+
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
|
|
7
|
+
* Portions Copyright (c) 1994, Regents of the University of California
|
|
8
|
+
*
|
|
9
|
+
* $Header$
|
|
10
|
+
*
|
|
11
|
+
*-------------------------------------------------------------------------
|
|
12
|
+
*/
|
|
13
|
+
|
|
14
|
+
/*
|
|
15
|
+
* This file is imported from PostgreSQL 8.1.3.
|
|
16
|
+
* Modified by Taiki Yamaguchi <yamaguchi@sraoss.co.jp>
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
#ifndef MD5_H
|
|
20
|
+
#define MD5_H
|
|
21
|
+
|
|
22
|
+
#define MAX_USER_NAME_LEN 128
|
|
23
|
+
#define MD5_PASSWD_LEN 32
|
|
24
|
+
|
|
25
|
+
extern int pool_md5_hash(const void *buff, size_t len, char *hexsum);
|
|
26
|
+
extern int pool_md5_encrypt(const char *passwd, const char *salt, size_t salt_len, char *buf);
|
|
27
|
+
|
|
28
|
+
#endif
|