public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: "Serge E. Hallyn" <serge@hallyn.com>
To: Richard Guy Briggs <rgb@redhat.com>
Cc: linux-audit@redhat.com, linux-kernel@vger.kernel.org,
	containers@lists.linux-foundation.org, eparis@redhat.com,
	sgrubb@redhat.com, aviro@redhat.com, pmoore@redhat.com,
	arozansk@redhat.com, ebiederm@xmission.com, serge@hallyn.com
Subject: Re: [PATCH V5 12/13] namespaces: expose ns instance serial numbers in proc
Date: Mon, 13 Oct 2014 15:41:03 +0200	[thread overview]
Message-ID: <20141013134103.GK24703@mail.hallyn.com> (raw)
In-Reply-To: <53b81e89f7179ef8569409293f990b3ac7deac61.1412543112.git.rgb@redhat.com>

Quoting Richard Guy Briggs (rgb@redhat.com):
> Expose the namespace instace serial numbers in the proc filesystem at

(s/stac/stanc/)

> /proc/<pid>/ns/<ns>_snum.  The link text gives the serial number in hex.
> 
> "snum" was chosen instead of "seq" for consistency with inum and there are a
> number of other uses of "seq" in the namespace code.
> 
> Suggested-by: Serge E. Hallyn <serge@hallyn.com>

Acked-by: Serge Hallyn <serge.hallyn@canonical.com>

> Signed-off-by: Richard Guy Briggs <rgb@redhat.com>
> ---
>  fs/proc/namespaces.c |   33 +++++++++++++++++++++++++--------
>  1 files changed, 25 insertions(+), 8 deletions(-)
> 
> diff --git a/fs/proc/namespaces.c b/fs/proc/namespaces.c
> index 310da74..29c3909 100644
> --- a/fs/proc/namespaces.c
> +++ b/fs/proc/namespaces.c
> @@ -47,12 +47,15 @@ static char *ns_dname(struct dentry *dentry, char *buffer, int buflen)
>  	struct inode *inode = dentry->d_inode;
>  	const struct proc_ns_operations *ns_ops = PROC_I(inode)->ns.ns_ops;
>  
> -	return dynamic_dname(dentry, buffer, buflen, "%s:[%lu]",
> -		ns_ops->name, inode->i_ino);
> +	if (strstr(dentry->d_iname, "_snum"))
> +		return dynamic_dname(dentry, buffer, buflen, "%s_snum:[%llx]",
> +			ns_ops->name, ns_ops->snum(PROC_I(inode)->ns.ns));
> +	else
> +		return dynamic_dname(dentry, buffer, buflen, "%s:[%lu]",
> +			ns_ops->name, inode->i_ino);
>  }
>  
> -const struct dentry_operations ns_dentry_operations =
> -{
> +const struct dentry_operations ns_dentry_operations = {
>  	.d_delete	= always_delete_dentry,
>  	.d_dname	= ns_dname,
>  };
> @@ -160,7 +163,10 @@ static int proc_ns_readlink(struct dentry *dentry, char __user *buffer, int bufl
>  	if (!ns)
>  		goto out_put_task;
>  
> -	snprintf(name, sizeof(name), "%s:[%u]", ns_ops->name, ns_ops->inum(ns));
> +	if (strstr(dentry->d_iname, "_snum"))
> +		snprintf(name, sizeof(name), "%s_snum:[%llx]", ns_ops->name, ns_ops->snum(ns));
> +	else
> +		snprintf(name, sizeof(name), "%s:[%u]", ns_ops->name, ns_ops->inum(ns));
>  	res = readlink_copy(buffer, buflen, name);
>  	ns_ops->put(ns);
>  out_put_task:
> @@ -210,16 +216,23 @@ static int proc_ns_dir_readdir(struct file *file, struct dir_context *ctx)
>  
>  	if (!dir_emit_dots(file, ctx))
>  		goto out;
> -	if (ctx->pos >= 2 + ARRAY_SIZE(ns_entries))
> +	if (ctx->pos >= 2 + 2 * ARRAY_SIZE(ns_entries))
>  		goto out;
>  	entry = ns_entries + (ctx->pos - 2);
>  	last = &ns_entries[ARRAY_SIZE(ns_entries) - 1];
>  	while (entry <= last) {
>  		const struct proc_ns_operations *ops = *entry;
> +		char name[50];
> +
>  		if (!proc_fill_cache(file, ctx, ops->name, strlen(ops->name),
>  				     proc_ns_instantiate, task, ops))
>  			break;
>  		ctx->pos++;
> +		snprintf(name, sizeof(name), "%s_snum", ops->name);
> +		if (!proc_fill_cache(file, ctx, name, strlen(name),
> +				     proc_ns_instantiate, task, ops))
> +			break;
> +		ctx->pos++;
>  		entry++;
>  	}
>  out:
> @@ -247,9 +260,13 @@ static struct dentry *proc_ns_dir_lookup(struct inode *dir,
>  
>  	last = &ns_entries[ARRAY_SIZE(ns_entries)];
>  	for (entry = ns_entries; entry < last; entry++) {
> -		if (strlen((*entry)->name) != len)
> +		char name[50];
> +
> +		snprintf(name, sizeof(name), "%s_snum", (*entry)->name);
> +		if (strlen((*entry)->name) != len && strlen(name) != len)
>  			continue;
> -		if (!memcmp(dentry->d_name.name, (*entry)->name, len))
> +		if (!memcmp(dentry->d_name.name, (*entry)->name, len)
> +		    || !memcmp(dentry->d_name.name, name, len))
>  			break;
>  	}
>  	if (entry == last)
> -- 
> 1.7.1

  reply	other threads:[~2014-10-13 13:41 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-10-06  5:08 [PATCH V5 00/13] namespaces: log namespaces per task Richard Guy Briggs
2014-10-06  5:08 ` [PATCH V5 01/13] namespaces: assign each namespace instance a serial number Richard Guy Briggs
2014-10-06  9:16   ` Chen, Hanxiao
2014-10-06 12:46     ` Richard Guy Briggs
2014-10-13 10:30   ` Serge E. Hallyn
2014-10-06  5:08 ` [PATCH V5 02/13] namespaces: expose namespace instance serial number in proc_ns_operations Richard Guy Briggs
2014-10-13 10:32   ` Serge E. Hallyn
2014-10-06  5:08 ` [PATCH V5 03/13] namespaces: expose ns_entries Richard Guy Briggs
2014-10-13 10:33   ` Serge E. Hallyn
2014-10-06  5:08 ` [PATCH V5 04/13] audit: log namespace serial numbers Richard Guy Briggs
2014-10-06  5:08 ` [PATCH V5 05/13] audit: initialize at subsystem time rather than device time Richard Guy Briggs
2014-10-13 12:30   ` Serge E. Hallyn
2014-10-06  5:08 ` [PATCH V5 06/13] audit: log creation and deletion of namespace instances Richard Guy Briggs
2014-10-13 12:26   ` Serge E. Hallyn
2014-10-06  5:08 ` [PATCH V5 07/13] audit: dump namespace IDs for pid on receipt of AUDIT_NS_INFO Richard Guy Briggs
2014-10-13 12:30   ` Serge E. Hallyn
2014-10-06  5:08 ` [PATCH V5 08/13] sched: add a macro to ref all CLONE_NEW* flags Richard Guy Briggs
2014-10-06  9:21   ` Chen, Hanxiao
2014-10-06 12:47     ` Richard Guy Briggs
2014-10-13 13:15   ` Serge E. Hallyn
2014-10-06  5:08 ` [PATCH V5 09/13] fork: audit on creation of new namespace(s) Richard Guy Briggs
2014-10-13 13:14   ` Serge E. Hallyn
2014-10-06  5:08 ` [PATCH V5 10/13] audit: log on switching namespace (setns) Richard Guy Briggs
2014-10-13 13:22   ` Serge E. Hallyn
2014-10-06  5:08 ` [PATCH V5 11/13] audit: emit AUDIT_NS_INFO record with AUDIT_VIRT_CONTROL record Richard Guy Briggs
2014-10-13 13:34   ` Serge E. Hallyn
2014-10-06  5:08 ` [PATCH V5 12/13] namespaces: expose ns instance serial numbers in proc Richard Guy Briggs
2014-10-13 13:41   ` Serge E. Hallyn [this message]
2014-10-06  5:08 ` [PATCH V5 13/13] Documentation: add a section for /proc/<pid>/ns/ Richard Guy Briggs
2014-10-13 13:46   ` Serge E. Hallyn
2014-10-14 14:25     ` Richard Guy Briggs
2014-10-14 22:03     ` Serge E. Hallyn

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=20141013134103.GK24703@mail.hallyn.com \
    --to=serge@hallyn.com \
    --cc=arozansk@redhat.com \
    --cc=aviro@redhat.com \
    --cc=containers@lists.linux-foundation.org \
    --cc=ebiederm@xmission.com \
    --cc=eparis@redhat.com \
    --cc=linux-audit@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=pmoore@redhat.com \
    --cc=rgb@redhat.com \
    --cc=sgrubb@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