* [RFD/PATCH] push: heed user.signingkey for signed pushes
@ 2014-10-22 14:47 Michael J Gruber
2014-10-22 14:57 ` [PATCHv2] " Michael J Gruber
0 siblings, 1 reply; 9+ messages in thread
From: Michael J Gruber @ 2014-10-22 14:47 UTC (permalink / raw)
To: git; +Cc: Junio C Hamano
push --signed promises to take user.signingkey as the signing key but
fails to read the config.
Make it do so.
Signed-off-by: Michael J Gruber <git@drmicha.warpmail.net>
---
Interestingly, when I wrote the test I had the impression that user.email
is not heeded either - or do we have GIT_COMMITTER_EMAIL in the environment
of the tests by default?
In any case, that is why the test looks the way it looks and why this is RFD.
1 file changed, 12 insertions(+), 1 deletion(-)
diff --git a/builtin/push.c b/builtin/push.c
index ae56f73..a076b19 100644
--- a/builtin/push.c
+++ b/builtin/push.c
@@ -471,6 +471,17 @@ static int option_parse_recurse_submodules(const struct option *opt,
return 0;
}
+static int git_push_config(const char *k, const char *v, void *cb)
+{
+ struct wt_status *s = cb;
+ int status;
+
+ status = git_gpg_config(k, v, NULL);
+ if (status)
+ return status;
+ return git_default_config(k, v, s);
+}
+
int cmd_push(int argc, const char **argv, const char *prefix)
{
int flags = 0;
@@ -511,7 +522,7 @@ int cmd_push(int argc, const char **argv, const char *prefix)
};
packet_trace_identity("push");
- git_config(git_default_config, NULL);
+ git_config(git_push_config, NULL);
argc = parse_options(argc, argv, prefix, options, push_usage, 0);
if (deleterefs && (tags || (flags & (TRANSPORT_PUSH_ALL | TRANSPORT_PUSH_MIRROR))))
--
2.1.2.756.gfa53a0a
builtin/push.c | 13 ++++++++++++-
t/lib-gpg/trustdb.gpg | Bin 1360 -> 1360 bytes
t/t5534-push-signed.sh | 43 +++++++++++++++++++++++++++++++++++++++++++
3 files changed, 55 insertions(+), 1 deletion(-)
diff --git a/builtin/push.c b/builtin/push.c
index ae56f73..a076b19 100644
--- a/builtin/push.c
+++ b/builtin/push.c
@@ -471,6 +471,17 @@ static int option_parse_recurse_submodules(const struct option *opt,
return 0;
}
+static int git_push_config(const char *k, const char *v, void *cb)
+{
+ struct wt_status *s = cb;
+ int status;
+
+ status = git_gpg_config(k, v, NULL);
+ if (status)
+ return status;
+ return git_default_config(k, v, s);
+}
+
int cmd_push(int argc, const char **argv, const char *prefix)
{
int flags = 0;
@@ -511,7 +522,7 @@ int cmd_push(int argc, const char **argv, const char *prefix)
};
packet_trace_identity("push");
- git_config(git_default_config, NULL);
+ git_config(git_push_config, NULL);
argc = parse_options(argc, argv, prefix, options, push_usage, 0);
if (deleterefs && (tags || (flags & (TRANSPORT_PUSH_ALL | TRANSPORT_PUSH_MIRROR))))
diff --git a/t/lib-gpg/trustdb.gpg b/t/lib-gpg/trustdb.gpg
index 4879ae9a84650a93a4d15bd6560c5d1b89eb4c2f..c11b1464b3d13b45966a493e2174fc0e253ddd0c 100644
GIT binary patch
delta 47
ncmcb>b%9HOF})z2nVFH5k%@sJ#C^}~iH71E)x}wb7%%_;=xPS!
delta 51
tcmcb>b%9HSF})z2nVFH5k%@sJ&}Z5*1_lPkiGso#)x}wb*nk{V008$D2C@JE
diff --git a/t/t5534-push-signed.sh b/t/t5534-push-signed.sh
index 2786346..c68867d 100755
--- a/t/t5534-push-signed.sh
+++ b/t/t5534-push-signed.sh
@@ -124,4 +124,47 @@ test_expect_success GPG 'signed push sends push certificate' '
test_cmp expect dst/push-cert-status
'
+test_expect_success GPG 'fail without key and heed user.signingkey' '
+ prepare_dst &&
+ mkdir -p dst/.git/hooks &&
+ git -C dst config receive.certnonceseed sekrit &&
+ write_script dst/.git/hooks/post-receive <<-\EOF &&
+ # discard the update list
+ cat >/dev/null
+ # record the push certificate
+ if test -n "${GIT_PUSH_CERT-}"
+ then
+ git cat-file blob $GIT_PUSH_CERT >../push-cert
+ fi &&
+
+ cat >../push-cert-status <<E_O_F
+ SIGNER=${GIT_PUSH_CERT_SIGNER-nobody}
+ KEY=${GIT_PUSH_CERT_KEY-nokey}
+ STATUS=${GIT_PUSH_CERT_STATUS-nostatus}
+ NONCE_STATUS=${GIT_PUSH_CERT_NONCE_STATUS-nononcestatus}
+ NONCE=${GIT_PUSH_CERT_NONCE-nononce}
+ E_O_F
+
+ EOF
+
+ git config user.email hasnokey@nowhere.com &&
+ test_must_fail env GIT_COMMITTER_EMAIL=hasnokey@nowhere.com git push --signed dst noop ff +noff &&
+ git config user.signingkey committer@example.com &&
+ GIT_COMMITTER_EMAIL=hasnokey@nowhere.com git push --signed dst noop ff +noff &&
+
+ (
+ cat <<-\EOF &&
+ SIGNER=C O Mitter <committer@example.com>
+ KEY=13B6F51ECDDE430D
+ STATUS=G
+ NONCE_STATUS=OK
+ EOF
+ sed -n -e "s/^nonce /NONCE=/p" -e "/^$/q" dst/push-cert
+ ) >expect &&
+
+ grep "$(git rev-parse noop ff) refs/heads/ff" dst/push-cert &&
+ grep "$(git rev-parse noop noff) refs/heads/noff" dst/push-cert &&
+ test_cmp expect dst/push-cert-status
+'
+
test_done
--
2.1.2.756.gfa53a0a
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCHv2] push: heed user.signingkey for signed pushes
2014-10-22 14:47 [RFD/PATCH] push: heed user.signingkey for signed pushes Michael J Gruber
@ 2014-10-22 14:57 ` Michael J Gruber
2014-10-22 22:05 ` Junio C Hamano
0 siblings, 1 reply; 9+ messages in thread
From: Michael J Gruber @ 2014-10-22 14:57 UTC (permalink / raw)
To: git; +Cc: Junio C Hamano
push --signed promises to take user.signingkey as the signing key but
fails to read the config.
Make it do so.
Signed-off-by: Michael J Gruber <git@drmicha.warpmail.net>
---
Okay, I guess this is nicer. We do have the committer info in the env. Sorry.
builtin/push.c | 13 ++++++++++++-
t/lib-gpg/trustdb.gpg | Bin 1360 -> 1360 bytes
t/t5534-push-signed.sh | 44 ++++++++++++++++++++++++++++++++++++++++++++
3 files changed, 56 insertions(+), 1 deletion(-)
diff --git a/builtin/push.c b/builtin/push.c
index ae56f73..a076b19 100644
--- a/builtin/push.c
+++ b/builtin/push.c
@@ -471,6 +471,17 @@ static int option_parse_recurse_submodules(const struct option *opt,
return 0;
}
+static int git_push_config(const char *k, const char *v, void *cb)
+{
+ struct wt_status *s = cb;
+ int status;
+
+ status = git_gpg_config(k, v, NULL);
+ if (status)
+ return status;
+ return git_default_config(k, v, s);
+}
+
int cmd_push(int argc, const char **argv, const char *prefix)
{
int flags = 0;
@@ -511,7 +522,7 @@ int cmd_push(int argc, const char **argv, const char *prefix)
};
packet_trace_identity("push");
- git_config(git_default_config, NULL);
+ git_config(git_push_config, NULL);
argc = parse_options(argc, argv, prefix, options, push_usage, 0);
if (deleterefs && (tags || (flags & (TRANSPORT_PUSH_ALL | TRANSPORT_PUSH_MIRROR))))
diff --git a/t/lib-gpg/trustdb.gpg b/t/lib-gpg/trustdb.gpg
index 4879ae9a84650a93a4d15bd6560c5d1b89eb4c2f..c11b1464b3d13b45966a493e2174fc0e253ddd0c 100644
GIT binary patch
delta 47
ncmcb>b%9HOF})z2nVFH5k%@sJ#C^}~iH71E)x}wb7%%_;=xPS!
delta 51
tcmcb>b%9HSF})z2nVFH5k%@sJ&}Z5*1_lPkiGso#)x}wb*nk{V008$D2C@JE
diff --git a/t/t5534-push-signed.sh b/t/t5534-push-signed.sh
index 2786346..ecb8d44 100755
--- a/t/t5534-push-signed.sh
+++ b/t/t5534-push-signed.sh
@@ -124,4 +124,48 @@ test_expect_success GPG 'signed push sends push certificate' '
test_cmp expect dst/push-cert-status
'
+test_expect_success GPG 'fail without key and heed user.signingkey' '
+ prepare_dst &&
+ mkdir -p dst/.git/hooks &&
+ git -C dst config receive.certnonceseed sekrit &&
+ write_script dst/.git/hooks/post-receive <<-\EOF &&
+ # discard the update list
+ cat >/dev/null
+ # record the push certificate
+ if test -n "${GIT_PUSH_CERT-}"
+ then
+ git cat-file blob $GIT_PUSH_CERT >../push-cert
+ fi &&
+
+ cat >../push-cert-status <<E_O_F
+ SIGNER=${GIT_PUSH_CERT_SIGNER-nobody}
+ KEY=${GIT_PUSH_CERT_KEY-nokey}
+ STATUS=${GIT_PUSH_CERT_STATUS-nostatus}
+ NONCE_STATUS=${GIT_PUSH_CERT_NONCE_STATUS-nononcestatus}
+ NONCE=${GIT_PUSH_CERT_NONCE-nononce}
+ E_O_F
+
+ EOF
+
+ unset GIT_COMMITTER_EMAIL &&
+ git config user.email hasnokey@nowhere.com &&
+ test_must_fail git push --signed dst noop ff +noff &&
+ git config user.signingkey committer@example.com &&
+ git push --signed dst noop ff +noff &&
+
+ (
+ cat <<-\EOF &&
+ SIGNER=C O Mitter <committer@example.com>
+ KEY=13B6F51ECDDE430D
+ STATUS=G
+ NONCE_STATUS=OK
+ EOF
+ sed -n -e "s/^nonce /NONCE=/p" -e "/^$/q" dst/push-cert
+ ) >expect &&
+
+ grep "$(git rev-parse noop ff) refs/heads/ff" dst/push-cert &&
+ grep "$(git rev-parse noop noff) refs/heads/noff" dst/push-cert &&
+ test_cmp expect dst/push-cert-status
+'
+
test_done
--
2.1.2.756.gfa53a0a
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCHv2] push: heed user.signingkey for signed pushes
2014-10-22 14:57 ` [PATCHv2] " Michael J Gruber
@ 2014-10-22 22:05 ` Junio C Hamano
2014-10-22 23:47 ` Junio C Hamano
2014-10-24 15:03 ` Michael J Gruber
0 siblings, 2 replies; 9+ messages in thread
From: Junio C Hamano @ 2014-10-22 22:05 UTC (permalink / raw)
To: Michael J Gruber; +Cc: git
Michael J Gruber <git@drmicha.warpmail.net> writes:
> push --signed promises to take user.signingkey as the signing key but
> fails to read the config.
>
> Make it do so.
>
> Signed-off-by: Michael J Gruber <git@drmicha.warpmail.net>
> ---
> Okay, I guess this is nicer. We do have the committer info in the env. Sorry.
>
> builtin/push.c | 13 ++++++++++++-
> t/lib-gpg/trustdb.gpg | Bin 1360 -> 1360 bytes
> t/t5534-push-signed.sh | 44 ++++++++++++++++++++++++++++++++++++++++++++
> 3 files changed, 56 insertions(+), 1 deletion(-)
Hmph, I simply forgot about that configuration, I guess.
What is this change to trustdb about, though? The log message does
not say anything about it.
>
> diff --git a/builtin/push.c b/builtin/push.c
> index ae56f73..a076b19 100644
> --- a/builtin/push.c
> +++ b/builtin/push.c
> @@ -471,6 +471,17 @@ static int option_parse_recurse_submodules(const struct option *opt,
> return 0;
> }
>
> +static int git_push_config(const char *k, const char *v, void *cb)
> +{
> + struct wt_status *s = cb;
> + int status;
> +
> + status = git_gpg_config(k, v, NULL);
> + if (status)
> + return status;
> + return git_default_config(k, v, s);
> +}
> +
> int cmd_push(int argc, const char **argv, const char *prefix)
> {
> int flags = 0;
> @@ -511,7 +522,7 @@ int cmd_push(int argc, const char **argv, const char *prefix)
> };
>
> packet_trace_identity("push");
> - git_config(git_default_config, NULL);
> + git_config(git_push_config, NULL);
> argc = parse_options(argc, argv, prefix, options, push_usage, 0);
>
> if (deleterefs && (tags || (flags & (TRANSPORT_PUSH_ALL | TRANSPORT_PUSH_MIRROR))))
> diff --git a/t/lib-gpg/trustdb.gpg b/t/lib-gpg/trustdb.gpg
> index 4879ae9a84650a93a4d15bd6560c5d1b89eb4c2f..c11b1464b3d13b45966a493e2174fc0e253ddd0c 100644
> GIT binary patch
> delta 47
> ncmcb>b%9HOF})z2nVFH5k%@sJ#C^}~iH71E)x}wb7%%_;=xPS!
>
> delta 51
> tcmcb>b%9HSF})z2nVFH5k%@sJ&}Z5*1_lPkiGso#)x}wb*nk{V008$D2C@JE
>
> diff --git a/t/t5534-push-signed.sh b/t/t5534-push-signed.sh
> index 2786346..ecb8d44 100755
> --- a/t/t5534-push-signed.sh
> +++ b/t/t5534-push-signed.sh
> @@ -124,4 +124,48 @@ test_expect_success GPG 'signed push sends push certificate' '
> test_cmp expect dst/push-cert-status
> '
>
> +test_expect_success GPG 'fail without key and heed user.signingkey' '
> + prepare_dst &&
> + mkdir -p dst/.git/hooks &&
> + git -C dst config receive.certnonceseed sekrit &&
> + write_script dst/.git/hooks/post-receive <<-\EOF &&
> + # discard the update list
> + cat >/dev/null
> + # record the push certificate
> + if test -n "${GIT_PUSH_CERT-}"
> + then
> + git cat-file blob $GIT_PUSH_CERT >../push-cert
> + fi &&
> +
> + cat >../push-cert-status <<E_O_F
> + SIGNER=${GIT_PUSH_CERT_SIGNER-nobody}
> + KEY=${GIT_PUSH_CERT_KEY-nokey}
> + STATUS=${GIT_PUSH_CERT_STATUS-nostatus}
> + NONCE_STATUS=${GIT_PUSH_CERT_NONCE_STATUS-nononcestatus}
> + NONCE=${GIT_PUSH_CERT_NONCE-nononce}
> + E_O_F
> +
> + EOF
> +
> + unset GIT_COMMITTER_EMAIL &&
> + git config user.email hasnokey@nowhere.com &&
> + test_must_fail git push --signed dst noop ff +noff &&
> + git config user.signingkey committer@example.com &&
> + git push --signed dst noop ff +noff &&
> +
> + (
> + cat <<-\EOF &&
> + SIGNER=C O Mitter <committer@example.com>
> + KEY=13B6F51ECDDE430D
> + STATUS=G
> + NONCE_STATUS=OK
> + EOF
> + sed -n -e "s/^nonce /NONCE=/p" -e "/^$/q" dst/push-cert
> + ) >expect &&
> +
> + grep "$(git rev-parse noop ff) refs/heads/ff" dst/push-cert &&
> + grep "$(git rev-parse noop noff) refs/heads/noff" dst/push-cert &&
> + test_cmp expect dst/push-cert-status
> +'
> +
> test_done
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCHv2] push: heed user.signingkey for signed pushes
2014-10-22 22:05 ` Junio C Hamano
@ 2014-10-22 23:47 ` Junio C Hamano
2014-10-24 15:16 ` Michael J Gruber
2014-10-24 15:03 ` Michael J Gruber
1 sibling, 1 reply; 9+ messages in thread
From: Junio C Hamano @ 2014-10-22 23:47 UTC (permalink / raw)
To: Michael J Gruber; +Cc: git
Junio C Hamano <gitster@pobox.com> writes:
> Michael J Gruber <git@drmicha.warpmail.net> writes:
>
>> push --signed promises to take user.signingkey as the signing key but
>> fails to read the config.
>>
>> Make it do so.
>>
>> Signed-off-by: Michael J Gruber <git@drmicha.warpmail.net>
>> ---
>> Okay, I guess this is nicer. We do have the committer info in the env. Sorry.
>>
>> builtin/push.c | 13 ++++++++++++-
>> t/lib-gpg/trustdb.gpg | Bin 1360 -> 1360 bytes
>> t/t5534-push-signed.sh | 44 ++++++++++++++++++++++++++++++++++++++++++++
>> 3 files changed, 56 insertions(+), 1 deletion(-)
>
> Hmph, I simply forgot about that configuration, I guess.
>
> What is this change to trustdb about, though? The log message does
> not say anything about it.
This is a related tangent, but I just tried this:
$ git clone ... git.git
$ cd git.git
$ chmod a-w t/lib-gpg/* t/lib-gpg
$ make test
which makes GPG related tests to fail, as running GPG with the GNUPGHOME
set there involves writing into the files in the directory (or
removing and recreating).
Perhaps GPG tests should create their own copy in the playpen (aka
"trash directory") and use that as GNUPGHOME so that we do not have
to write into the single shared directory? I wonder if automated
parallel tests can intermittently fail because of this...
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCHv2] push: heed user.signingkey for signed pushes
2014-10-22 22:05 ` Junio C Hamano
2014-10-22 23:47 ` Junio C Hamano
@ 2014-10-24 15:03 ` Michael J Gruber
2014-10-24 16:49 ` Junio C Hamano
1 sibling, 1 reply; 9+ messages in thread
From: Michael J Gruber @ 2014-10-24 15:03 UTC (permalink / raw)
To: Junio C Hamano, Michael J Gruber; +Cc: git
Junio C Hamano schrieb am 23.10.2014 um 00:05:
> Michael J Gruber <git@drmicha.warpmail.net> writes:
>
>> push --signed promises to take user.signingkey as the signing key but
>> fails to read the config.
>>
>> Make it do so.
>>
>> Signed-off-by: Michael J Gruber <git@drmicha.warpmail.net>
>> ---
>> Okay, I guess this is nicer. We do have the committer info in the env. Sorry.
>>
>> builtin/push.c | 13 ++++++++++++-
>> t/lib-gpg/trustdb.gpg | Bin 1360 -> 1360 bytes
>> t/t5534-push-signed.sh | 44 ++++++++++++++++++++++++++++++++++++++++++++
>> 3 files changed, 56 insertions(+), 1 deletion(-)
>
> Hmph, I simply forgot about that configuration, I guess.
It's easy to overlook: user.email is picked up by git_default_config,
but user.signingkey is not. In hindsight, gpg.signingkey might have been
a good choice, too.
> What is this change to trustdb about, though? The log message does
> not say anything about it.
Ooops, I'm sorry. That must have sneaked in from running gpg with that
home to see which keys we have in the test env. No change in trustdb
intended. Probably gpg did some automatic trustdb recalculations, even
though all I did was gpg --list-key.
>>
>> diff --git a/builtin/push.c b/builtin/push.c
>> index ae56f73..a076b19 100644
>> --- a/builtin/push.c
>> +++ b/builtin/push.c
>> @@ -471,6 +471,17 @@ static int option_parse_recurse_submodules(const struct option *opt,
>> return 0;
>> }
>>
>> +static int git_push_config(const char *k, const char *v, void *cb)
>> +{
>> + struct wt_status *s = cb;
>> + int status;
>> +
>> + status = git_gpg_config(k, v, NULL);
>> + if (status)
>> + return status;
>> + return git_default_config(k, v, s);
>> +}
>> +
>> int cmd_push(int argc, const char **argv, const char *prefix)
>> {
>> int flags = 0;
>> @@ -511,7 +522,7 @@ int cmd_push(int argc, const char **argv, const char *prefix)
>> };
>>
>> packet_trace_identity("push");
>> - git_config(git_default_config, NULL);
>> + git_config(git_push_config, NULL);
>> argc = parse_options(argc, argv, prefix, options, push_usage, 0);
>>
>> if (deleterefs && (tags || (flags & (TRANSPORT_PUSH_ALL | TRANSPORT_PUSH_MIRROR))))
>> diff --git a/t/lib-gpg/trustdb.gpg b/t/lib-gpg/trustdb.gpg
>> index 4879ae9a84650a93a4d15bd6560c5d1b89eb4c2f..c11b1464b3d13b45966a493e2174fc0e253ddd0c 100644
>> GIT binary patch
>> delta 47
>> ncmcb>b%9HOF})z2nVFH5k%@sJ#C^}~iH71E)x}wb7%%_;=xPS!
>>
>> delta 51
>> tcmcb>b%9HSF})z2nVFH5k%@sJ&}Z5*1_lPkiGso#)x}wb*nk{V008$D2C@JE
>>
>> diff --git a/t/t5534-push-signed.sh b/t/t5534-push-signed.sh
>> index 2786346..ecb8d44 100755
>> --- a/t/t5534-push-signed.sh
>> +++ b/t/t5534-push-signed.sh
>> @@ -124,4 +124,48 @@ test_expect_success GPG 'signed push sends push certificate' '
>> test_cmp expect dst/push-cert-status
>> '
>>
>> +test_expect_success GPG 'fail without key and heed user.signingkey' '
>> + prepare_dst &&
>> + mkdir -p dst/.git/hooks &&
>> + git -C dst config receive.certnonceseed sekrit &&
>> + write_script dst/.git/hooks/post-receive <<-\EOF &&
>> + # discard the update list
>> + cat >/dev/null
>> + # record the push certificate
>> + if test -n "${GIT_PUSH_CERT-}"
>> + then
>> + git cat-file blob $GIT_PUSH_CERT >../push-cert
>> + fi &&
>> +
>> + cat >../push-cert-status <<E_O_F
>> + SIGNER=${GIT_PUSH_CERT_SIGNER-nobody}
>> + KEY=${GIT_PUSH_CERT_KEY-nokey}
>> + STATUS=${GIT_PUSH_CERT_STATUS-nostatus}
>> + NONCE_STATUS=${GIT_PUSH_CERT_NONCE_STATUS-nononcestatus}
>> + NONCE=${GIT_PUSH_CERT_NONCE-nononce}
>> + E_O_F
>> +
>> + EOF
>> +
>> + unset GIT_COMMITTER_EMAIL &&
>> + git config user.email hasnokey@nowhere.com &&
>> + test_must_fail git push --signed dst noop ff +noff &&
>> + git config user.signingkey committer@example.com &&
>> + git push --signed dst noop ff +noff &&
>> +
>> + (
>> + cat <<-\EOF &&
>> + SIGNER=C O Mitter <committer@example.com>
>> + KEY=13B6F51ECDDE430D
>> + STATUS=G
>> + NONCE_STATUS=OK
>> + EOF
>> + sed -n -e "s/^nonce /NONCE=/p" -e "/^$/q" dst/push-cert
>> + ) >expect &&
>> +
>> + grep "$(git rev-parse noop ff) refs/heads/ff" dst/push-cert &&
>> + grep "$(git rev-parse noop noff) refs/heads/noff" dst/push-cert &&
>> + test_cmp expect dst/push-cert-status
>> +'
>> +
>> test_done
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCHv2] push: heed user.signingkey for signed pushes
2014-10-22 23:47 ` Junio C Hamano
@ 2014-10-24 15:16 ` Michael J Gruber
2014-10-24 15:23 ` [PATCH] t/lib-gpg: make gpghome files writable Michael J Gruber
2014-10-24 16:48 ` [PATCHv2] push: heed user.signingkey for signed pushes Junio C Hamano
0 siblings, 2 replies; 9+ messages in thread
From: Michael J Gruber @ 2014-10-24 15:16 UTC (permalink / raw)
To: Junio C Hamano, Git Mailing List
Junio C Hamano schrieb am 23.10.2014 um 01:47:
> Junio C Hamano <gitster@pobox.com> writes:
>
>> Michael J Gruber <git@drmicha.warpmail.net> writes:
>>
>>> push --signed promises to take user.signingkey as the signing key but
>>> fails to read the config.
>>>
>>> Make it do so.
>>>
>>> Signed-off-by: Michael J Gruber <git@drmicha.warpmail.net>
>>> ---
>>> Okay, I guess this is nicer. We do have the committer info in the env. Sorry.
>>>
>>> builtin/push.c | 13 ++++++++++++-
>>> t/lib-gpg/trustdb.gpg | Bin 1360 -> 1360 bytes
>>> t/t5534-push-signed.sh | 44 ++++++++++++++++++++++++++++++++++++++++++++
>>> 3 files changed, 56 insertions(+), 1 deletion(-)
>>
>> Hmph, I simply forgot about that configuration, I guess.
>>
>> What is this change to trustdb about, though? The log message does
>> not say anything about it.
>
> This is a related tangent, but I just tried this:
>
> $ git clone ... git.git
> $ cd git.git
> $ chmod a-w t/lib-gpg/* t/lib-gpg
> $ make test
>
> which makes GPG related tests to fail, as running GPG with the GNUPGHOME
> set there involves writing into the files in the directory (or
> removing and recreating).
>
> Perhaps GPG tests should create their own copy in the playpen (aka
> "trash directory") and use that as GNUPGHOME so that we do not have
> to write into the single shared directory? I wonder if automated
> parallel tests can intermittently fail because of this...
If I do that, I get:
gpg: can't create `/home/mjg/src/git/t/trash
directory.t5534-push-signed/gpghome/random_seed': Permission denied
So I we do copy the env around. Problems arise only when the original
copy ends up ro. We can guard against that by doing:
diff --git i/t/lib-gpg.sh w/t/lib-gpg.sh
index fd499e7..972f10e 100755
--- i/t/lib-gpg.sh
+++ w/t/lib-gpg.sh
@@ -17,7 +17,7 @@ else
# Name and email: C O Mitter <committer@example.com>
# No password given, to enable non-interactive operation.
cp -R "$TEST_DIRECTORY"/lib-gpg ./gpghome
- chmod 0700 gpghome
+ chmod 0700 gpghome gpghome/*
GNUPGHOME="$(pwd)/gpghome"
export GNUPGHOME
test_set_prereq GPG
That is we have partial guard in place already.
I'll resend in proper format.
Michael
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH] t/lib-gpg: make gpghome files writable
2014-10-24 15:16 ` Michael J Gruber
@ 2014-10-24 15:23 ` Michael J Gruber
2014-10-24 16:48 ` [PATCHv2] push: heed user.signingkey for signed pushes Junio C Hamano
1 sibling, 0 replies; 9+ messages in thread
From: Michael J Gruber @ 2014-10-24 15:23 UTC (permalink / raw)
To: git; +Cc: Junio C Hamano
t/lib-gpg.sh copies the test environment's gpg home to the trash
directory and makes sure the directoty is writable.
Make sure the copied files are writable, too.
Signed-off-by: Michael J Gruber <git@drmicha.warpmail.net>
---
t/lib-gpg.sh | 1 +
1 file changed, 1 insertion(+)
diff --git a/t/lib-gpg.sh b/t/lib-gpg.sh
index fd499e7..cd2baef 100755
--- a/t/lib-gpg.sh
+++ b/t/lib-gpg.sh
@@ -18,6 +18,7 @@ else
# No password given, to enable non-interactive operation.
cp -R "$TEST_DIRECTORY"/lib-gpg ./gpghome
chmod 0700 gpghome
+ chmod 0600 gpghome/*
GNUPGHOME="$(pwd)/gpghome"
export GNUPGHOME
test_set_prereq GPG
--
2.1.2.756.gfa53a0a
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCHv2] push: heed user.signingkey for signed pushes
2014-10-24 15:16 ` Michael J Gruber
2014-10-24 15:23 ` [PATCH] t/lib-gpg: make gpghome files writable Michael J Gruber
@ 2014-10-24 16:48 ` Junio C Hamano
1 sibling, 0 replies; 9+ messages in thread
From: Junio C Hamano @ 2014-10-24 16:48 UTC (permalink / raw)
To: Michael J Gruber; +Cc: Git Mailing List
Michael J Gruber <git@drmicha.warpmail.net> writes:
> If I do that, I get:
>
> gpg: can't create `/home/mjg/src/git/t/trash
> directory.t5534-push-signed/gpghome/random_seed': Permission denied
>
> So I we do copy the env around. Problems arise only when the original
> copy ends up ro. We can guard against that by doing:
Ah, thanks for digging it further.
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCHv2] push: heed user.signingkey for signed pushes
2014-10-24 15:03 ` Michael J Gruber
@ 2014-10-24 16:49 ` Junio C Hamano
0 siblings, 0 replies; 9+ messages in thread
From: Junio C Hamano @ 2014-10-24 16:49 UTC (permalink / raw)
To: Michael J Gruber; +Cc: git
Michael J Gruber <git@drmicha.warpmail.net> writes:
> Ooops, I'm sorry. That must have sneaked in from running gpg with that
> home to see which keys we have in the test env. No change in trustdb
> intended. Probably gpg did some automatic trustdb recalculations, even
> though all I did was gpg --list-key.
OK, so it will be fine to queue the patch without the trustdb bits,
I guess.
Thanks.
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2014-10-24 16:49 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-22 14:47 [RFD/PATCH] push: heed user.signingkey for signed pushes Michael J Gruber
2014-10-22 14:57 ` [PATCHv2] " Michael J Gruber
2014-10-22 22:05 ` Junio C Hamano
2014-10-22 23:47 ` Junio C Hamano
2014-10-24 15:16 ` Michael J Gruber
2014-10-24 15:23 ` [PATCH] t/lib-gpg: make gpghome files writable Michael J Gruber
2014-10-24 16:48 ` [PATCHv2] push: heed user.signingkey for signed pushes Junio C Hamano
2014-10-24 15:03 ` Michael J Gruber
2014-10-24 16:49 ` Junio C Hamano
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).