From a199f97600bce7d48a523ca3e7c1196edf12c222 Mon Sep 17 00:00:00 2001 From: Lorin Hochstein Date: Mon, 25 Mar 2013 09:53:04 -0400 Subject: [PATCH] Strip quotes when parsing my.cnf MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove leading/trailing single or double quotes when parsing the my.cnf file in mysql_user and mysql_db. Do this so that these modules parse the my.cnf file the same way that the mysql client does. From: http://dev.mysql.com/doc/refman/5.0/en/option-files.html You can optionally enclose the value within single quotation marks or double quotation marks, which is useful if the value contains a “#” comment character. Fixes #2405 --- mysql_db | 37 ++++++++++++++++++++++++++++++++++--- mysql_user | 38 +++++++++++++++++++++++++++++++++++--- 2 files changed, 69 insertions(+), 6 deletions(-) diff --git a/mysql_db b/mysql_db index 7e35ff8172b..df180b34b73 100644 --- a/mysql_db +++ b/mysql_db @@ -129,6 +129,37 @@ def db_create(cursor, db, encoding, collation): res = cursor.execute(query) return True +def strip_quotes(s): + """ Remove surrounding single or double quotes + + >>> print strip_quotes('hello') + hello + >>> print strip_quotes('"hello"') + hello + >>> print strip_quotes("'hello'") + hello + >>> print strip_quotes("'hello") + 'hello + + """ + single_quote = "'" + double_quote = '"' + + if s.startswith(single_quote) and s.endswith(single_quote): + s = s.strip(single_quote) + elif s.startswith(double_quote) and s.endswith(double_quote): + s = s.strip(double_quote) + return s + + +def config_get(config, section, option): + """ Calls ConfigParser.get and strips quotes + + See: http://dev.mysql.com/doc/refman/5.0/en/option-files.html + """ + return strip_quotes(config.get(section, option)) + + def load_mycnf(): config = ConfigParser.RawConfigParser() mycnf = os.path.expanduser('~/.my.cnf') @@ -141,14 +172,14 @@ def load_mycnf(): # We support two forms of passwords in .my.cnf, both pass= and password=, # as these are both supported by MySQL. try: - passwd = config.get('client', 'password') + passwd = config_get(config, 'client', 'password') except (ConfigParser.NoOptionError): try: - passwd = config.get('client', 'pass') + passwd = config_get(config, 'client', 'pass') except (ConfigParser.NoOptionError): return False try: - creds = dict(user=config.get('client', 'user'),passwd=passwd) + creds = dict(user=config_get(config, 'client', 'user'),passwd=passwd) except (ConfigParser.NoOptionError): return False return creds diff --git a/mysql_user b/mysql_user index 274a8e8c56d..9c61e7a6be6 100644 --- a/mysql_user +++ b/mysql_user @@ -252,6 +252,38 @@ def privileges_grant(cursor, user,host,db_table,priv): query = query + " WITH GRANT OPTION" cursor.execute(query) + +def strip_quotes(s): + """ Remove surrounding single or double quotes + + >>> print strip_quotes('hello') + hello + >>> print strip_quotes('"hello"') + hello + >>> print strip_quotes("'hello'") + hello + >>> print strip_quotes("'hello") + 'hello + + """ + single_quote = "'" + double_quote = '"' + + if s.startswith(single_quote) and s.endswith(single_quote): + s = s.strip(single_quote) + elif s.startswith(double_quote) and s.endswith(double_quote): + s = s.strip(double_quote) + return s + + +def config_get(config, section, option): + """ Calls ConfigParser.get and strips quotes + + See: http://dev.mysql.com/doc/refman/5.0/en/option-files.html + """ + return strip_quotes(config.get(section, option)) + + def load_mycnf(): config = ConfigParser.RawConfigParser() mycnf = os.path.expanduser('~/.my.cnf') @@ -264,16 +296,16 @@ def load_mycnf(): # We support two forms of passwords in .my.cnf, both pass= and password=, # as these are both supported by MySQL. try: - passwd = config.get('client', 'password') + passwd = config_get(config, 'client', 'password') except (ConfigParser.NoOptionError): try: - passwd = config.get('client', 'pass') + passwd = config_get(config, 'client', 'pass') except (ConfigParser.NoOptionError): return False # If .my.cnf doesn't specify a user, default to user login name try: - user = config.get('client', 'user') + user = config_get(config, 'client', 'user') except (ConfigParser.NoOptionError): user = getpass.getuser() creds = dict(user=user,passwd=passwd)