]> granicus.if.org Git - php/commitdiff
Fix #62479: Some chars not parsed in passwords
authorWill Fitch <willfitch@php.net>
Sun, 19 Jan 2014 00:24:22 +0000 (19:24 -0500)
committerWill Fitch <willfitch@php.net>
Sun, 19 Jan 2014 00:27:00 +0000 (19:27 -0500)
This fixes an issue where backslashes and spaces aren't
correctly parsed for passwords.

NEWS
ext/pdo_pgsql/pgsql_driver.c
ext/pdo_pgsql/tests/bug62479.phpt [new file with mode: 0644]

diff --git a/NEWS b/NEWS
index 72c093992561048604f0d526a6e7655e3252bc8c..e05c987052b2aff45c833ceb16622afcdf17b01f 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,9 @@ PHP                                                                        NEWS
 |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
 ?? ??? 201?, PHP 5.3.29
 
+- PDO_pgsql:
+  . Fixed bug #62479 (PDO-psql cannot connect if password contains spaces)
+
 12 Dec 2013, PHP 5.3.28
 
 - Openssl:
index 55f441808e28da26eda7922e257021cda3222679..e2ad143acdfa3087e9a33ca58e40203be8fb2f34 100644 (file)
@@ -1029,6 +1029,7 @@ static int pdo_pgsql_handle_factory(pdo_dbh_t *dbh, zval *driver_options TSRMLS_
        pdo_pgsql_db_handle *H;
        int ret = 0;
        char *conn_str, *p, *e;
+       char *tmp_pass;
        long connect_timeout = 30;
 
        H = pecalloc(1, sizeof(pdo_pgsql_db_handle), dbh->is_persistent);
@@ -1050,18 +1051,44 @@ static int pdo_pgsql_handle_factory(pdo_dbh_t *dbh, zval *driver_options TSRMLS_
                connect_timeout = pdo_attr_lval(driver_options, PDO_ATTR_TIMEOUT, 30 TSRMLS_CC);
        }
 
+       if (dbh->password) {
+               if (dbh->password[0] != '\'' && dbh->password[strlen(dbh->password) - 1] != '\'') {
+                       char *pwd = dbh->password;
+                       int pos = 1;
+
+                       tmp_pass = safe_emalloc(2, strlen(dbh->password), 3);
+                       tmp_pass[0] = '\'';
+
+                       while (*pwd != '\0') {
+                               if (*pwd == '\\' || *pwd == '\'') {
+                                       tmp_pass[pos++] = '\\';
+                               }
+
+                               tmp_pass[pos++] = *pwd++;
+                       }
+
+                       tmp_pass[pos++] = '\'';
+                       tmp_pass[pos] = '\0';
+               } else {
+                       tmp_pass = dbh->password;
+               }
+       }
+
        /* support both full connection string & connection string + login and/or password */
        if (dbh->username && dbh->password) {
-               spprintf(&conn_str, 0, "%s user=%s password=%s connect_timeout=%ld", dbh->data_source, dbh->username, dbh->password, connect_timeout);
+               spprintf(&conn_str, 0, "%s user=%s password=%s connect_timeout=%ld", dbh->data_source, dbh->username, tmp_pass, connect_timeout);
        } else if (dbh->username) {
                spprintf(&conn_str, 0, "%s user=%s connect_timeout=%ld", dbh->data_source, dbh->username, connect_timeout);
        } else if (dbh->password) {
-               spprintf(&conn_str, 0, "%s password=%s connect_timeout=%ld", dbh->data_source, dbh->password, connect_timeout);
+               spprintf(&conn_str, 0, "%s password=%s connect_timeout=%ld", dbh->data_source, tmp_pass, connect_timeout);
        } else {
                spprintf(&conn_str, 0, "%s connect_timeout=%ld", (char *) dbh->data_source, connect_timeout);
        }
 
        H->server = PQconnectdb(conn_str);
+       if (dbh->password && tmp_pass != dbh->password) {
+               efree(tmp_pass);
+       }
 
        efree(conn_str);
 
diff --git a/ext/pdo_pgsql/tests/bug62479.phpt b/ext/pdo_pgsql/tests/bug62479.phpt
new file mode 100644 (file)
index 0000000..2e19f15
--- /dev/null
@@ -0,0 +1,56 @@
+--TEST--
+PDO PgSQL Bug #62479 (PDO-psql cannot connect if password contains spaces)
+--SKIPIF--
+<?php
+if (!extension_loaded('pdo') || !extension_loaded('pdo_pgsql')) die('skip not loaded');
+require dirname(__FILE__) . '/config.inc';
+require dirname(__FILE__) . '/../../../ext/pdo/tests/pdo_test.inc';
+PDOTest::skip();
+if (!isset($conf['ENV']['PDOTEST_DSN'])) die('no dsn found in env');
+$db = PDOTest::test_factory(dirname(__FILE__) . '/common.phpt');
+$rand = rand(5, 5);
+
+// Assume that if we can't create a user, this test needs to be skipped
+$testQuery = "CREATE USER pdo_$rand WITH PASSWORD 'testpass'";
+$db->query($testQuery);
+$testQuery = "DROP USER pdo_$rand";
+$db->query($testQuery);
+?>
+--FILE--
+<?php
+require dirname(__FILE__) . '/../../../ext/pdo/tests/pdo_test.inc';
+$pdo = PDOTest::test_factory(dirname(__FILE__) . '/common.phpt');
+$pdo->setAttribute(PDO::ATTR_EMULATE_PREPARES, true);
+$rand = rand(5, 400);
+$user = "pdo_$rand";
+$template = "CREATE USER $user WITH PASSWORD '%s'";
+$dropUser = "DROP USER $user";
+$testQuery = 'SELECT 1 as verification';
+
+// Create temp user with space in password
+$sql = sprintf($template, 'my password');
+$pdo->query($sql);
+$testConn = new PDO($_ENV['PDOTEST_DSN'], $user, "my password");
+$result = $testConn->query($testQuery)->fetch();
+$check = $result[0];
+var_dump($check);
+
+// Remove the user
+$pdo->query($dropUser);
+
+// Create a user with a space and single quote
+$sql = sprintf($template, "my pass''word");
+$pdo->query($sql);
+
+$testConn = new PDO($_ENV['PDOTEST_DSN'], $user, "my pass'word");
+$result = $testConn->query($testQuery)->fetch();
+$check = $result[0];
+var_dump($check);
+
+// Remove the user
+$pdo->query($dropUser);
+?>
+--EXPECT--
+int(1)
+int(1)
+