All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] Document keyctl(KEYCTL_PKEY_QUERY) arguments correctly
@ 2020-05-16  0:39 ` Ben Boeckel
  0 siblings, 0 replies; 14+ messages in thread
From: Ben Boeckel @ 2020-05-16  0:39 UTC (permalink / raw)
  To: keyrings
  Cc: Ben Boeckel, dhowells, jarkko.sakkinen, corbet, linux-doc, linux-kernel

From: Ben Boeckel <mathstuf@gmail.com>

This is the way the code parses the arguments and libkeyutils calls the
syscall.

Note on the email split: I'm still in the process of migrating emails
for various usages hence the email From mismatch here (I've migrated my
list subscription, but not my general contribution email).

Ben Boeckel (1):
  Documentation: security: core.rst: add missing argument

 Documentation/security/keys/core.rst | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)


base-commit: 12bf0b632ed090358cbf03e323e5342212d0b2e4
-- 
2.25.4

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

* [PATCH 0/1] Document keyctl(KEYCTL_PKEY_QUERY) arguments correctly
@ 2020-05-16  0:39 ` Ben Boeckel
  0 siblings, 0 replies; 14+ messages in thread
From: Ben Boeckel @ 2020-05-16  0:39 UTC (permalink / raw)
  To: keyrings
  Cc: Ben Boeckel, dhowells, jarkko.sakkinen, corbet, linux-doc, linux-kernel

From: Ben Boeckel <mathstuf@gmail.com>

This is the way the code parses the arguments and libkeyutils calls the
syscall.

Note on the email split: I'm still in the process of migrating emails
for various usages hence the email From mismatch here (I've migrated my
list subscription, but not my general contribution email).

Ben Boeckel (1):
  Documentation: security: core.rst: add missing argument

 Documentation/security/keys/core.rst | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)


base-commit: 12bf0b632ed090358cbf03e323e5342212d0b2e4
-- 
2.25.4


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

* [PATCH 1/1] Documentation: security: core.rst: add missing argument
  2020-05-16  0:39 ` Ben Boeckel
@ 2020-05-16  0:39   ` Ben Boeckel
  -1 siblings, 0 replies; 14+ messages in thread
From: Ben Boeckel @ 2020-05-16  0:39 UTC (permalink / raw)
  To: keyrings
  Cc: Ben Boeckel, dhowells, jarkko.sakkinen, corbet, linux-doc, linux-kernel

From: Ben Boeckel <mathstuf@gmail.com>

This argument was just never documented in the first place.

Signed-off-by: Ben Boeckel <mathstuf@gmail.com>
---
 Documentation/security/keys/core.rst | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/Documentation/security/keys/core.rst b/Documentation/security/keys/core.rst
index d9b0b859018b..c26b9e7d47c2 100644
--- a/Documentation/security/keys/core.rst
+++ b/Documentation/security/keys/core.rst
@@ -920,10 +920,14 @@ The keyctl syscall functions are:
 
 	long keyctl(KEYCTL_PKEY_QUERY,
 		    key_serial_t key_id, unsigned long reserved,
+		    const char* params,
 		    struct keyctl_pkey_query *info);
 
-     Get information about an asymmetric key.  The information is returned in
-     the keyctl_pkey_query struct::
+     Get information about an asymmetric key.  Specific algorithms and
+     encodings may be queried by using the ``params`` argument.  This is a
+     string containing a space- or tab-separated string of key-value pairs.
+     Currently supported keys include ``enc`` and ``hash``.  The information
+     is returned in the keyctl_pkey_query struct::
 
 	__u32	supported_ops;
 	__u32	key_size;
-- 
2.25.4

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

* [PATCH 1/1] Documentation: security: core.rst: add missing argument
@ 2020-05-16  0:39   ` Ben Boeckel
  0 siblings, 0 replies; 14+ messages in thread
From: Ben Boeckel @ 2020-05-16  0:39 UTC (permalink / raw)
  To: keyrings
  Cc: Ben Boeckel, dhowells, jarkko.sakkinen, corbet, linux-doc, linux-kernel

From: Ben Boeckel <mathstuf@gmail.com>

This argument was just never documented in the first place.

Signed-off-by: Ben Boeckel <mathstuf@gmail.com>
---
 Documentation/security/keys/core.rst | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/Documentation/security/keys/core.rst b/Documentation/security/keys/core.rst
index d9b0b859018b..c26b9e7d47c2 100644
--- a/Documentation/security/keys/core.rst
+++ b/Documentation/security/keys/core.rst
@@ -920,10 +920,14 @@ The keyctl syscall functions are:
 
 	long keyctl(KEYCTL_PKEY_QUERY,
 		    key_serial_t key_id, unsigned long reserved,
+		    const char* params,
 		    struct keyctl_pkey_query *info);
 
-     Get information about an asymmetric key.  The information is returned in
-     the keyctl_pkey_query struct::
+     Get information about an asymmetric key.  Specific algorithms and
+     encodings may be queried by using the ``params`` argument.  This is a
+     string containing a space- or tab-separated string of key-value pairs.
+     Currently supported keys include ``enc`` and ``hash``.  The information
+     is returned in the keyctl_pkey_query struct::
 
 	__u32	supported_ops;
 	__u32	key_size;
-- 
2.25.4


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

* Re: [PATCH 1/1] Documentation: security: core.rst: add missing argument
  2020-05-16  0:39   ` Ben Boeckel
@ 2020-05-16 21:18     ` Jarkko Sakkinen
  -1 siblings, 0 replies; 14+ messages in thread
From: Jarkko Sakkinen @ 2020-05-16 21:18 UTC (permalink / raw)
  To: Ben Boeckel, keyrings
  Cc: Ben Boeckel, dhowells, corbet, linux-doc, linux-kernel

On Fri, 2020-05-15 at 20:39 -0400, Ben Boeckel wrote:
> From: Ben Boeckel <mathstuf@gmail.com>
> 
> This argument was just never documented in the first place.
> 
> Signed-off-by: Ben Boeckel <mathstuf@gmail.com>

Reviewed-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>

/Jarkko

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

* Re: [PATCH 1/1] Documentation: security: core.rst: add missing argument
@ 2020-05-16 21:18     ` Jarkko Sakkinen
  0 siblings, 0 replies; 14+ messages in thread
From: Jarkko Sakkinen @ 2020-05-16 21:18 UTC (permalink / raw)
  To: Ben Boeckel, keyrings
  Cc: Ben Boeckel, dhowells, corbet, linux-doc, linux-kernel

On Fri, 2020-05-15 at 20:39 -0400, Ben Boeckel wrote:
> From: Ben Boeckel <mathstuf@gmail.com>
> 
> This argument was just never documented in the first place.
> 
> Signed-off-by: Ben Boeckel <mathstuf@gmail.com>

Reviewed-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>

/Jarkko


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

* Re: [PATCH 1/1] Documentation: security: core.rst: add missing argument
  2020-05-16  0:39 ` Ben Boeckel
@ 2020-05-18 14:09   ` David Howells
  -1 siblings, 0 replies; 14+ messages in thread
From: David Howells @ 2020-05-18 14:09 UTC (permalink / raw)
  To: Ben Boeckel
  Cc: dhowells, keyrings, Ben Boeckel, jarkko.sakkinen, corbet,
	linux-doc, linux-kernel

Ben Boeckel <me@benboeckel.net> wrote:

>  	long keyctl(KEYCTL_PKEY_QUERY,
>  		    key_serial_t key_id, unsigned long reserved,
> +		    const char* params,
>  		    struct keyctl_pkey_query *info);

"const char *params".  I fixed that and applied it.

David

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

* Re: [PATCH 1/1] Documentation: security: core.rst: add missing argument
@ 2020-05-18 14:09   ` David Howells
  0 siblings, 0 replies; 14+ messages in thread
From: David Howells @ 2020-05-18 14:09 UTC (permalink / raw)
  To: Ben Boeckel
  Cc: dhowells, keyrings, Ben Boeckel, jarkko.sakkinen, corbet,
	linux-doc, linux-kernel

Ben Boeckel <me@benboeckel.net> wrote:

>  	long keyctl(KEYCTL_PKEY_QUERY,
>  		    key_serial_t key_id, unsigned long reserved,
> +		    const char* params,
>  		    struct keyctl_pkey_query *info);

"const char *params".  I fixed that and applied it.

David


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

* Re: [PATCH 1/1] Documentation: security: core.rst: add missing argument
  2020-05-16  0:39   ` Ben Boeckel
@ 2020-05-25 16:33     ` Jonathan Corbet
  -1 siblings, 0 replies; 14+ messages in thread
From: Jonathan Corbet @ 2020-05-25 16:33 UTC (permalink / raw)
  To: Ben Boeckel
  Cc: keyrings, Ben Boeckel, dhowells, jarkko.sakkinen, linux-doc,
	linux-kernel

On Fri, 15 May 2020 20:39:17 -0400
Ben Boeckel <me@benboeckel.net> wrote:

> From: Ben Boeckel <mathstuf@gmail.com>
> 
> This argument was just never documented in the first place.
> 
> Signed-off-by: Ben Boeckel <mathstuf@gmail.com>
> ---
>  Documentation/security/keys/core.rst | 8 ++++++--
>  1 file changed, 6 insertions(+), 2 deletions(-)

Applied, thanks.

jon

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

* Re: [PATCH 1/1] Documentation: security: core.rst: add missing argument
@ 2020-05-25 16:33     ` Jonathan Corbet
  0 siblings, 0 replies; 14+ messages in thread
From: Jonathan Corbet @ 2020-05-25 16:33 UTC (permalink / raw)
  To: Ben Boeckel
  Cc: keyrings, Ben Boeckel, dhowells, jarkko.sakkinen, linux-doc,
	linux-kernel

On Fri, 15 May 2020 20:39:17 -0400
Ben Boeckel <me@benboeckel.net> wrote:

> From: Ben Boeckel <mathstuf@gmail.com>
> 
> This argument was just never documented in the first place.
> 
> Signed-off-by: Ben Boeckel <mathstuf@gmail.com>
> ---
>  Documentation/security/keys/core.rst | 8 ++++++--
>  1 file changed, 6 insertions(+), 2 deletions(-)

Applied, thanks.

jon

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

* Re: [PATCH 1/1] Documentation: security: core.rst: add missing argument
  2020-05-25 16:33     ` Jonathan Corbet
@ 2020-05-25 16:43       ` Jonathan Corbet
  -1 siblings, 0 replies; 14+ messages in thread
From: Jonathan Corbet @ 2020-05-25 16:43 UTC (permalink / raw)
  To: Ben Boeckel
  Cc: keyrings, Ben Boeckel, dhowells, jarkko.sakkinen, linux-doc,
	linux-kernel

On Mon, 25 May 2020 10:33:10 -0600
Jonathan Corbet <corbet@lwn.net> wrote:

> On Fri, 15 May 2020 20:39:17 -0400
> Ben Boeckel <me@benboeckel.net> wrote:
> 
> > From: Ben Boeckel <mathstuf@gmail.com>
> > 
> > This argument was just never documented in the first place.
> > 
> > Signed-off-by: Ben Boeckel <mathstuf@gmail.com>
> > ---
> >  Documentation/security/keys/core.rst | 8 ++++++--
> >  1 file changed, 6 insertions(+), 2 deletions(-)  
> 
> Applied, thanks.

...or not...looks like David got there first.  Sorry for the noise.

jon

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

* Re: [PATCH 1/1] Documentation: security: core.rst: add missing argument
@ 2020-05-25 16:43       ` Jonathan Corbet
  0 siblings, 0 replies; 14+ messages in thread
From: Jonathan Corbet @ 2020-05-25 16:43 UTC (permalink / raw)
  To: Ben Boeckel
  Cc: keyrings, Ben Boeckel, dhowells, jarkko.sakkinen, linux-doc,
	linux-kernel

On Mon, 25 May 2020 10:33:10 -0600
Jonathan Corbet <corbet@lwn.net> wrote:

> On Fri, 15 May 2020 20:39:17 -0400
> Ben Boeckel <me@benboeckel.net> wrote:
> 
> > From: Ben Boeckel <mathstuf@gmail.com>
> > 
> > This argument was just never documented in the first place.
> > 
> > Signed-off-by: Ben Boeckel <mathstuf@gmail.com>
> > ---
> >  Documentation/security/keys/core.rst | 8 ++++++--
> >  1 file changed, 6 insertions(+), 2 deletions(-)  
> 
> Applied, thanks.

...or not...looks like David got there first.  Sorry for the noise.

jon

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

* Re: [PATCH 1/1] Documentation: security: core.rst: add missing argument
  2020-05-16  0:39   ` Ben Boeckel
@ 2020-05-26 16:07     ` David Howells
  -1 siblings, 0 replies; 14+ messages in thread
From: David Howells @ 2020-05-26 16:07 UTC (permalink / raw)
  To: Jonathan Corbet
  Cc: dhowells, Ben Boeckel, keyrings, Ben Boeckel, jarkko.sakkinen,
	linux-doc, linux-kernel

Jonathan Corbet <corbet@lwn.net> wrote:

> Applied, thanks.

Ah - I've applied it to my keys-next branch.

David

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

* Re: [PATCH 1/1] Documentation: security: core.rst: add missing argument
@ 2020-05-26 16:07     ` David Howells
  0 siblings, 0 replies; 14+ messages in thread
From: David Howells @ 2020-05-26 16:07 UTC (permalink / raw)
  To: Jonathan Corbet
  Cc: dhowells, Ben Boeckel, keyrings, Ben Boeckel, jarkko.sakkinen,
	linux-doc, linux-kernel

Jonathan Corbet <corbet@lwn.net> wrote:

> Applied, thanks.

Ah - I've applied it to my keys-next branch.

David


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

end of thread, other threads:[~2020-05-26 16:07 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-16  0:39 [PATCH 0/1] Document keyctl(KEYCTL_PKEY_QUERY) arguments correctly Ben Boeckel
2020-05-16  0:39 ` Ben Boeckel
2020-05-16  0:39 ` [PATCH 1/1] Documentation: security: core.rst: add missing argument Ben Boeckel
2020-05-16  0:39   ` Ben Boeckel
2020-05-16 21:18   ` Jarkko Sakkinen
2020-05-16 21:18     ` Jarkko Sakkinen
2020-05-25 16:33   ` Jonathan Corbet
2020-05-25 16:33     ` Jonathan Corbet
2020-05-25 16:43     ` Jonathan Corbet
2020-05-25 16:43       ` Jonathan Corbet
2020-05-26 16:07   ` David Howells
2020-05-26 16:07     ` David Howells
2020-05-18 14:09 ` David Howells
2020-05-18 14:09   ` David Howells

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.