Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH] rpm: fix the rpm addsign function
@ 2014-11-12  0:59 rongqing.li
  2014-11-12  1:03 ` Rongqing Li
  0 siblings, 1 reply; 2+ messages in thread
From: rongqing.li @ 2014-11-12  0:59 UTC (permalink / raw)
  To: openembedded-core

From: "Roy.Li" <rongqing.li@windriver.com>

Signed-off-by: Roy.Li <rongqing.li@windriver.com>
---
 ...arseArgvString-to-parse-the-_gpg_check_pa.patch | 49 ++++++++++++++++++++++
 meta/recipes-devtools/rpm/rpm_5.4.14.bb            |  1 +
 2 files changed, 50 insertions(+)
 create mode 100644 meta/recipes-devtools/rpm/rpm/0001-using-poptParseArgvString-to-parse-the-_gpg_check_pa.patch

diff --git a/meta/recipes-devtools/rpm/rpm/0001-using-poptParseArgvString-to-parse-the-_gpg_check_pa.patch b/meta/recipes-devtools/rpm/rpm/0001-using-poptParseArgvString-to-parse-the-_gpg_check_pa.patch
new file mode 100644
index 0000000..23bc336
--- /dev/null
+++ b/meta/recipes-devtools/rpm/rpm/0001-using-poptParseArgvString-to-parse-the-_gpg_check_pa.patch
@@ -0,0 +1,49 @@
+From 64851c6622aff64787a9fcea26cccde183b7c743 Mon Sep 17 00:00:00 2001
+From: "Roy.Li" <rongqing.li@windriver.com>
+Date: Tue, 11 Nov 2014 16:28:22 +0800
+Subject: [PATCH] using poptParseArgvString to parse the
+ _gpg_check_password_cmd
+
+Upstream-Status: Pending
+
+Both __gpg_check_password_cmd and __gpg_sign_cmd include "%{_gpg_name}", but
+strace shows that gpg_name has a quote when run _gpg_check_password,
+but not when run __gpg_sign_cmd; for example, if gpg_name is "tester"
+
+    execve("/usr/bin/gpg", ["gpg", "--batch", "--no-verbose",
+    "--passphrase-fd", "3", "-u", "\"tester\"", "-so", "-"], [/* 20 vars */]) = 0
+
+    execve("/usr/bin/gpg", ["gpg", "--batch", "--no-verbose", "--no-armor",
+    "--passphrase-fd", "3", "--no-secmem-warning", "-u", "tester", "-sbo"..,) = 0
+
+it can be fixed by removing the quote around %{gpg_name} when define
+__gpg_check_password_cmd in macros/macros, like below, but if gpg_name includes
+space, it will not work.
+
+     %__gpg_check_password_cmd       %{__gpg} \
+        gpg --batch --no-verbose --passphrase-fd 3 -u %{_gpg_name} -so -
+
+The poptParseArgvString function is used to parse _gpg_sign_cmd, so using
+poptParseArgvString to parse __gpg_check_password_cmd to fix this issue.
+
+Signed-off-by: Roy.Li <rongqing.li@windriver.com>
+---
+ rpmdb/signature.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/rpmdb/signature.c b/rpmdb/signature.c
+index c35e0ab..016e8d1 100644
+--- a/rpmdb/signature.c
++++ b/rpmdb/signature.c
+@@ -529,7 +529,7 @@ int rpmCheckPassPhrase(const char * passPhrase)
+   		(void) setenv("GNUPGHOME", gpg_path, 1);
+ 
+ 	    cmd = rpmExpand("%{?__gpg_check_password_cmd}", NULL);
+-	    rc = argvSplit(&av, cmd, NULL);
++	    rc = poptParseArgvString(cmd, NULL, (const char ***)&av);
+ 	    if (!rc)
+ 		rc = execve(av[0], (char *const *)av+1, environ);
+ 
+-- 
+1.9.1
+
diff --git a/meta/recipes-devtools/rpm/rpm_5.4.14.bb b/meta/recipes-devtools/rpm/rpm_5.4.14.bb
index fb8a507..c882251 100644
--- a/meta/recipes-devtools/rpm/rpm_5.4.14.bb
+++ b/meta/recipes-devtools/rpm/rpm_5.4.14.bb
@@ -93,6 +93,7 @@ SRC_URI = "http://www.rpm5.org/files/rpm/rpm-5.4/rpm-5.4.14-0.20131024.src.rpm;e
 	   file://rpm-db5-or-db6.patch \
 	   file://rpm-disable-Wno-override-init.patch \
 	   file://rpmqv_cc_b_gone.patch \
+	   file://0001-using-poptParseArgvString-to-parse-the-_gpg_check_pa.patch \
 	  "
 
 # Uncomment the following line to enable platform score debugging
-- 
2.1.0



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] rpm: fix the rpm addsign function
  2014-11-12  0:59 [PATCH] rpm: fix the rpm addsign function rongqing.li
@ 2014-11-12  1:03 ` Rongqing Li
  0 siblings, 0 replies; 2+ messages in thread
From: Rongqing Li @ 2014-11-12  1:03 UTC (permalink / raw)
  To: openembedded-core

sorry, Please drop it.

I will resend it.

-Roy

On 2014年11月12日 08:59, rongqing.li@windriver.com wrote:
> From: "Roy.Li" <rongqing.li@windriver.com>
>
> Signed-off-by: Roy.Li <rongqing.li@windriver.com>
> ---
>   ...arseArgvString-to-parse-the-_gpg_check_pa.patch | 49 ++++++++++++++++++++++
>   meta/recipes-devtools/rpm/rpm_5.4.14.bb            |  1 +
>   2 files changed, 50 insertions(+)
>   create mode 100644 meta/recipes-devtools/rpm/rpm/0001-using-poptParseArgvString-to-parse-the-_gpg_check_pa.patch
>
> diff --git a/meta/recipes-devtools/rpm/rpm/0001-using-poptParseArgvString-to-parse-the-_gpg_check_pa.patch b/meta/recipes-devtools/rpm/rpm/0001-using-poptParseArgvString-to-parse-the-_gpg_check_pa.patch
> new file mode 100644
> index 0000000..23bc336
> --- /dev/null
> +++ b/meta/recipes-devtools/rpm/rpm/0001-using-poptParseArgvString-to-parse-the-_gpg_check_pa.patch
> @@ -0,0 +1,49 @@
> +From 64851c6622aff64787a9fcea26cccde183b7c743 Mon Sep 17 00:00:00 2001
> +From: "Roy.Li" <rongqing.li@windriver.com>
> +Date: Tue, 11 Nov 2014 16:28:22 +0800
> +Subject: [PATCH] using poptParseArgvString to parse the
> + _gpg_check_password_cmd
> +
> +Upstream-Status: Pending
> +
> +Both __gpg_check_password_cmd and __gpg_sign_cmd include "%{_gpg_name}", but
> +strace shows that gpg_name has a quote when run _gpg_check_password,
> +but not when run __gpg_sign_cmd; for example, if gpg_name is "tester"
> +
> +    execve("/usr/bin/gpg", ["gpg", "--batch", "--no-verbose",
> +    "--passphrase-fd", "3", "-u", "\"tester\"", "-so", "-"], [/* 20 vars */]) = 0
> +
> +    execve("/usr/bin/gpg", ["gpg", "--batch", "--no-verbose", "--no-armor",
> +    "--passphrase-fd", "3", "--no-secmem-warning", "-u", "tester", "-sbo"..,) = 0
> +
> +it can be fixed by removing the quote around %{gpg_name} when define
> +__gpg_check_password_cmd in macros/macros, like below, but if gpg_name includes
> +space, it will not work.
> +
> +     %__gpg_check_password_cmd       %{__gpg} \
> +        gpg --batch --no-verbose --passphrase-fd 3 -u %{_gpg_name} -so -
> +
> +The poptParseArgvString function is used to parse _gpg_sign_cmd, so using
> +poptParseArgvString to parse __gpg_check_password_cmd to fix this issue.
> +
> +Signed-off-by: Roy.Li <rongqing.li@windriver.com>
> +---
> + rpmdb/signature.c | 2 +-
> + 1 file changed, 1 insertion(+), 1 deletion(-)
> +
> +diff --git a/rpmdb/signature.c b/rpmdb/signature.c
> +index c35e0ab..016e8d1 100644
> +--- a/rpmdb/signature.c
> ++++ b/rpmdb/signature.c
> +@@ -529,7 +529,7 @@ int rpmCheckPassPhrase(const char * passPhrase)
> +   		(void) setenv("GNUPGHOME", gpg_path, 1);
> +
> + 	    cmd = rpmExpand("%{?__gpg_check_password_cmd}", NULL);
> +-	    rc = argvSplit(&av, cmd, NULL);
> ++	    rc = poptParseArgvString(cmd, NULL, (const char ***)&av);
> + 	    if (!rc)
> + 		rc = execve(av[0], (char *const *)av+1, environ);
> +
> +--
> +1.9.1
> +
> diff --git a/meta/recipes-devtools/rpm/rpm_5.4.14.bb b/meta/recipes-devtools/rpm/rpm_5.4.14.bb
> index fb8a507..c882251 100644
> --- a/meta/recipes-devtools/rpm/rpm_5.4.14.bb
> +++ b/meta/recipes-devtools/rpm/rpm_5.4.14.bb
> @@ -93,6 +93,7 @@ SRC_URI = "http://www.rpm5.org/files/rpm/rpm-5.4/rpm-5.4.14-0.20131024.src.rpm;e
>   	   file://rpm-db5-or-db6.patch \
>   	   file://rpm-disable-Wno-override-init.patch \
>   	   file://rpmqv_cc_b_gone.patch \
> +	   file://0001-using-poptParseArgvString-to-parse-the-_gpg_check_pa.patch \
>   	  "
>
>   # Uncomment the following line to enable platform score debugging
>

-- 
Best Reagrds,
Roy | RongQing Li


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-11-12  1:03 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-12  0:59 [PATCH] rpm: fix the rpm addsign function rongqing.li
2014-11-12  1:03 ` Rongqing Li

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox