linux-nfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Bryan Schumaker <bjschuma@netapp.com>
To: David Howells <dhowells@redhat.com>
Cc: Trond.Myklebust@netapp.com, linux-nfs@vger.kernel.org,
	steved@redhat.com, jlayton@redhat.com
Subject: Re: [PATCH 2/2] NFS: Combine the idmapper key types
Date: Wed, 25 Jul 2012 14:15:18 -0400	[thread overview]
Message-ID: <501037B6.9080800@netapp.com> (raw)
In-Reply-To: <20120725155347.24392.44505.stgit@warthog.procyon.org.uk>

Hi David,

On 07/25/2012 11:53 AM, David Howells wrote:
> The NFS idmapper has two key types (normal and legacy) but should only use one
> if it can - otherwise it risks having twice as many keys as it would otherwise
> need.
> 
> Get rid of the legacy key type and have the normal key type have a
> .request_key() op.  The choice of which instantiation method is then made by
> the upcaller, in order:
> 
>  (1) If there's no auxdata, the normal method is called, invoking
>      /sbin/request-key.
> 
>  (2) If there's something attached to the idmapper pipe (rpc.idmapd) then use
>      that.
> 
>  (3) Fall back to (1).
> 
> Note that this does change the prioritisation of normal vs legacy if both are
> available.
> 
> Signed-off-by: David Howells <dhowells@redhat.com>
> ---
> 
>  fs/nfs/idmap.c              |   61 ++++++++++++++++++-------------------------
>  include/linux/key-type.h    |    3 ++
>  security/keys/request_key.c |    6 ++--
>  3 files changed, 31 insertions(+), 39 deletions(-)
> 
> diff --git a/fs/nfs/idmap.c b/fs/nfs/idmap.c
> index 1b5058b..a021d93 100644
> --- a/fs/nfs/idmap.c
> +++ b/fs/nfs/idmap.c
> @@ -55,7 +55,6 @@
>  /* Default cache timeout is 10 minutes */
>  unsigned int nfs_idmap_cache_timeout = 600;
>  static const struct cred *id_resolver_cache;
> -static struct key_type key_type_id_resolver_legacy;
>  
>  struct idmap {
>  	struct rpc_pipe		*idmap_pipe;
> @@ -63,6 +62,8 @@ struct idmap {
>  	struct mutex		idmap_mutex;
>  };
>  
> +static int nfs_idmap_upcall(struct key_construction *, const char *, void *);
> +
>  /**
>   * nfs_fattr_init_names - initialise the nfs_fattr owner_name/group_name fields
>   * @fattr: fully initialised struct nfs_fattr
> @@ -173,6 +174,7 @@ static struct key_type key_type_id_resolver = {
>  	.destroy	= user_destroy,
>  	.describe	= user_describe,
>  	.read		= user_read,
> +	.request_key	= nfs_idmap_upcall,
>  };
>  
>  static int nfs_idmap_init_keyring(void)
> @@ -205,18 +207,12 @@ static int nfs_idmap_init_keyring(void)
>  	if (ret < 0)
>  		goto failed_put_key;
>  
> -	ret = register_key_type(&key_type_id_resolver_legacy);
> -	if (ret < 0)
> -		goto failed_reg_legacy;
> -
>  	set_bit(KEY_FLAG_ROOT_CAN_CLEAR, &keyring->flags);
>  	cred->thread_keyring = keyring;
>  	cred->jit_keyring = KEY_REQKEY_DEFL_THREAD_KEYRING;
>  	id_resolver_cache = cred;
>  	return 0;
>  
> -failed_reg_legacy:
> -	unregister_key_type(&key_type_id_resolver);
>  failed_put_key:
>  	key_put(keyring);
>  failed_put_cred:
> @@ -228,7 +224,6 @@ static void nfs_idmap_quit_keyring(void)
>  {
>  	key_revoke(id_resolver_cache->thread_keyring);
>  	unregister_key_type(&key_type_id_resolver);
> -	unregister_key_type(&key_type_id_resolver_legacy);
>  	put_cred(id_resolver_cache);
>  }
>  
> @@ -318,16 +313,12 @@ static ssize_t nfs_idmap_get_key(const char *name, size_t namelen,
>  				 const char *type, void *data,
>  				 size_t data_size, struct idmap *idmap)
>  {
> -	ssize_t ret = nfs_idmap_request_key(&key_type_id_resolver,
> -					    name, namelen, type, data,
> -					    data_size, NULL);
> -	if (ret < 0) {
> -		mutex_lock(&idmap->idmap_mutex);
> -		ret = nfs_idmap_request_key(&key_type_id_resolver_legacy,
> -					    name, namelen, type, data,
> -					    data_size, idmap);
> -		mutex_unlock(&idmap->idmap_mutex);
> -	}
> +	ssize_t ret;
> +	mutex_lock(&idmap->idmap_mutex);
> +	ret = nfs_idmap_request_key(&key_type_id_resolver,
> +				    name, namelen, type, data,
> +				    data_size, idmap);
> +	mutex_unlock(&idmap->idmap_mutex);
>  	return ret;
>  }
>  
> @@ -380,7 +371,6 @@ static const match_table_t nfs_idmap_tokens = {
>  	{ Opt_find_err, NULL }
>  };
>  
> -static int nfs_idmap_legacy_upcall(struct key_construction *, const char *, void *);
>  static ssize_t idmap_pipe_downcall(struct file *, const char __user *,
>  				   size_t);
>  static void idmap_pipe_destroy_msg(struct rpc_pipe_msg *);
> @@ -391,17 +381,6 @@ static const struct rpc_pipe_ops idmap_upcall_ops = {
>  	.destroy_msg	= idmap_pipe_destroy_msg,
>  };
>  
> -static struct key_type key_type_id_resolver_legacy = {
> -	.name		= "id_legacy",
> -	.instantiate	= user_instantiate,
> -	.match		= user_match,
> -	.revoke		= user_revoke,
> -	.destroy	= user_destroy,
> -	.describe	= user_describe,
> -	.read		= user_read,
> -	.request_key	= nfs_idmap_legacy_upcall,
> -};
> -
>  static void __nfs_idmap_unregister(struct rpc_pipe *pipe)
>  {
>  	if (pipe->dentry)
> @@ -658,9 +637,8 @@ out:
>  	return ret;
>  }
>  
> -static int nfs_idmap_legacy_upcall(struct key_construction *cons,
> -				   const char *op,
> -				   void *aux)
> +static int nfs_idmap_upcall(struct key_construction *cons,
> +			    const char *op, void *aux)
>  {
>  	struct rpc_pipe_msg *msg;
>  	struct idmap_msg *im;
> @@ -668,6 +646,10 @@ static int nfs_idmap_legacy_upcall(struct key_construction *cons,
>  	struct key *key = cons->key;
>  	int ret = -ENOMEM;
>  
> +	/* Use the non-legacy route unless given auxiliary data */
> +	if (!aux)
> +		return call_sbin_request_key(cons, op, aux);

struct idmap-s are created when the server is mounted, so I don't think "aux" will ever be null here.

- Bryan

> +
>  	/* msg and im are freed in idmap_pipe_destroy_msg */
>  	msg = kmalloc(sizeof(*msg), GFP_KERNEL);
>  	if (!msg)
> @@ -685,9 +667,16 @@ static int nfs_idmap_legacy_upcall(struct key_construction *cons,
>  	idmap->idmap_key_cons = cons;
>  
>  	ret = rpc_queue_upcall(idmap->idmap_pipe, msg);
> -	if (ret < 0)
> +	if (ret < 0) {
> +		idmap->idmap_key_cons = NULL;
> +		if (ret == -EPIPE) {
> +			/* rpc.idmapd is not listening */
> +			kfree(im);
> +			kfree(msg);
> +			return call_sbin_request_key(cons, op, NULL);
> +		}
>  		goto out2;
> -
> +	}
>  	return ret;
>  
>  out2:
> @@ -778,7 +767,7 @@ out_incomplete:
>  static void
>  idmap_pipe_destroy_msg(struct rpc_pipe_msg *msg)
>  {
> -	/* Free memory allocated in nfs_idmap_legacy_upcall() */
> +	/* Free memory allocated in the legacy side of nfs_idmap_upcall() */
>  	kfree(msg->data);
>  	kfree(msg);
>  }
> diff --git a/include/linux/key-type.h b/include/linux/key-type.h
> index 39e3c08..2d85202 100644
> --- a/include/linux/key-type.h
> +++ b/include/linux/key-type.h
> @@ -28,6 +28,9 @@ struct key_construction {
>  typedef int (*request_key_actor_t)(struct key_construction *key,
>  				   const char *op, void *aux);
>  
> +extern int call_sbin_request_key(struct key_construction *cons,
> +				 const char *op, void *aux);
> +
>  /*
>   * kernel managed key type definition
>   */
> diff --git a/security/keys/request_key.c b/security/keys/request_key.c
> index 275c4f9..bac83d1 100644
> --- a/security/keys/request_key.c
> +++ b/security/keys/request_key.c
> @@ -102,9 +102,8 @@ static int call_usermodehelper_keys(char *path, char **argv, char **envp,
>   * Request userspace finish the construction of a key
>   * - execute "/sbin/request-key <op> <key> <uid> <gid> <keyring> <keyring> <keyring>"
>   */
> -static int call_sbin_request_key(struct key_construction *cons,
> -				 const char *op,
> -				 void *aux)
> +int call_sbin_request_key(struct key_construction *cons,
> +			  const char *op, void *aux)
>  {
>  	const struct cred *cred = current_cred();
>  	key_serial_t prkey, sskey;
> @@ -204,6 +203,7 @@ error_alloc:
>  	kleave(" = %d", ret);
>  	return ret;
>  }
> +EXPORT_SYMBOL_GPL(call_sbin_request_key);
>  
>  /*
>   * Call out to userspace for key construction.
> 


  reply	other threads:[~2012-07-25 18:15 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-07-25 15:53 [PATCH 1/2] NFS: Fix a number of bugs in the idmapper David Howells
2012-07-25 15:53 ` [PATCH 2/2] NFS: Combine the idmapper key types David Howells
2012-07-25 18:15   ` Bryan Schumaker [this message]
2012-07-31 14:45   ` David Howells
2012-07-25 15:57 ` David Howells
  -- strict thread matches above, loose matches on Subject: below --
2012-07-31 14:42 [PATCH 1/2] NFS: Fix a number of bugs in the idmapper David Howells
2012-07-31 14:42 ` [PATCH 2/2] NFS: Combine the idmapper key types David Howells
2012-07-31 14:54   ` Myklebust, Trond
2012-07-31 15:05   ` David Howells

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=501037B6.9080800@netapp.com \
    --to=bjschuma@netapp.com \
    --cc=Trond.Myklebust@netapp.com \
    --cc=dhowells@redhat.com \
    --cc=jlayton@redhat.com \
    --cc=linux-nfs@vger.kernel.org \
    --cc=steved@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).