LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Alexey Dobriyan <adobriyan@gmail.com>
To: akpm@linux-foundation.org
Cc: linux-kernel@vger.kernel.org, viro@zeniv.linux.org.uk
Subject: [PATCH] proc: restore seekdir("/proc", 256) semantics
Date: Tue, 24 Apr 2018 00:50:09 +0300 [thread overview]
Message-ID: <20180423215009.GE9043@avx2> (raw)
Long time ago "/proc/self" was an honest symlink and all not-PID entries
were output before /proc/$PID. To not lose /proc/self in readdir output
after it became permanently positive dentry it was stuck before /proc/1.
One side effect of the change was that the code
d = opendir("/proc");
seekdir(d, 256);
stopped pointing to the first PID for applications that want to skip all
the crap.
Later "/proc/thread-self" was added in the same way.
It looks like ps and top aren't seeking over /proc but are simply
skipping over so nobody noticed.
Restore old behaviour, make seekdir(254) point to /proc/self and
seekdir(255) point to /proc/thread-self.
Commit in question:
commit 021ada7dff22d0d9540ff596cb0f8bb866755ee1
procfs: switch /proc/self away from proc_dir_entry
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
---
fs/proc/base.c | 14 ++++++--------
fs/proc/root.c | 4 ++--
2 files changed, 8 insertions(+), 10 deletions(-)
--- a/fs/proc/base.c
+++ b/fs/proc/base.c
@@ -3230,8 +3230,6 @@ static struct tgid_iter next_tgid(struct pid_namespace *ns, struct tgid_iter ite
return iter;
}
-#define TGID_OFFSET (FIRST_PROCESS_ENTRY + 2)
-
/* for the /proc/ directory itself, after non-process stuff has been done */
int proc_pid_readdir(struct file *file, struct dir_context *ctx)
{
@@ -3239,22 +3237,22 @@ int proc_pid_readdir(struct file *file, struct dir_context *ctx)
struct pid_namespace *ns = file_inode(file)->i_sb->s_fs_info;
loff_t pos = ctx->pos;
- if (pos >= PID_MAX_LIMIT + TGID_OFFSET)
+ if (pos >= PID_MAX_LIMIT + FIRST_PROCESS_ENTRY)
return 0;
- if (pos == TGID_OFFSET - 2) {
+ if (pos == FIRST_PROCESS_ENTRY - 2) {
struct inode *inode = d_inode(ns->proc_self);
if (!dir_emit(ctx, "self", 4, inode->i_ino, DT_LNK))
return 0;
ctx->pos = pos = pos + 1;
}
- if (pos == TGID_OFFSET - 1) {
+ if (pos == FIRST_PROCESS_ENTRY - 1) {
struct inode *inode = d_inode(ns->proc_thread_self);
if (!dir_emit(ctx, "thread-self", 11, inode->i_ino, DT_LNK))
return 0;
ctx->pos = pos = pos + 1;
}
- iter.tgid = pos - TGID_OFFSET;
+ iter.tgid = pos - FIRST_PROCESS_ENTRY;
iter.task = NULL;
for (iter = next_tgid(ns, iter);
iter.task;
@@ -3267,14 +3265,14 @@ int proc_pid_readdir(struct file *file, struct dir_context *ctx)
continue;
len = snprintf(name, sizeof(name), "%u", iter.tgid);
- ctx->pos = iter.tgid + TGID_OFFSET;
+ ctx->pos = iter.tgid + FIRST_PROCESS_ENTRY;
if (!proc_fill_cache(file, ctx, name, len,
proc_pid_instantiate, iter.task, NULL)) {
put_task_struct(iter.task);
return 0;
}
}
- ctx->pos = PID_MAX_LIMIT + TGID_OFFSET;
+ ctx->pos = PID_MAX_LIMIT + FIRST_PROCESS_ENTRY;
return 0;
}
--- a/fs/proc/root.c
+++ b/fs/proc/root.c
@@ -162,11 +162,11 @@ static struct dentry *proc_root_lookup(struct inode * dir, struct dentry * dentr
static int proc_root_readdir(struct file *file, struct dir_context *ctx)
{
- if (ctx->pos < FIRST_PROCESS_ENTRY) {
+ if (ctx->pos < FIRST_PROCESS_ENTRY - 2) {
int error = proc_readdir(file, ctx);
if (unlikely(error <= 0))
return error;
- ctx->pos = FIRST_PROCESS_ENTRY;
+ ctx->pos = FIRST_PROCESS_ENTRY - 2;
}
return proc_pid_readdir(file, ctx);
next reply other threads:[~2018-04-23 21:50 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-04-23 21:50 Alexey Dobriyan [this message]
2018-05-01 22:23 ` Andrew Morton
2018-05-03 17:13 ` Alexey Dobriyan
2018-05-02 19:10 ` Pavel Machek
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=20180423215009.GE9043@avx2 \
--to=adobriyan@gmail.com \
--cc=akpm@linux-foundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=viro@zeniv.linux.org.uk \
--subject='Re: [PATCH] proc: restore seekdir("/proc", 256) semantics' \
/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
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).