[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20171018230521.GP21978@ZenIV.linux.org.uk>
Date: Thu, 19 Oct 2017 00:05:21 +0100
From: Al Viro <viro@...IV.linux.org.uk>
To: Krzysztof Opasiak <k.opasiak@...sung.com>
Cc: gregkh@...uxfoundation.org, arnd@...db.de,
linux-kernel@...r.kernel.org, linux-fsdevel@...r.kernel.org,
linux-arch@...r.kernel.org, k.lewandowsk@...sung.com,
l.stelmach@...sung.com, p.szewczyk@...sung.com,
b.zolnierkie@...sung.com, andrzej.p@...sung.com,
kopasiak90@...il.com
Subject: Re: [PATCH 4/4][PoC][RFC] Allow to trace fd usage with rlimit-events
On Wed, Oct 18, 2017 at 10:32:30PM +0200, Krzysztof Opasiak wrote:
> @@ -417,7 +417,7 @@ static int task_get_unused_fd_flags(struct binder_proc *proc, int flags)
> rlim_cur = task_rlimit(proc->tsk, RLIMIT_NOFILE);
> unlock_task_sighand(proc->tsk, &irqs);
>
> - return __alloc_fd(files, 0, rlim_cur, flags);
> + return __alloc_fd(proc->tsk, 0, rlim_cur, flags);
Who said that proc->files will remain equal to proc->tsk->files?
> -static void __put_unused_fd(struct files_struct *files, unsigned int fd)
> +static void __put_unused_fd(struct task_struct *owner, unsigned int fd)
> {
> + struct files_struct *files = owner->files;
> struct fdtable *fdt = files_fdtable(files);
> __clear_open_fd(fd, fdt);
> if (fd < files->next_fd)
> files->next_fd = fd;
> +
> + if (rlimit_noti_watch_active(owner, RLIMIT_NOFILE)) {
> + unsigned int count;
> +
> + count = count_open_fds(fdt);
> + rlimit_noti_res_changed(owner, RLIMIT_NOFILE, count + 1, count);
> + }
> }
[... and similar for other __...fd() primitives]
This is blatantly wrong - you *CAN'T* modify files_struct unless it's
a) yours (i.e. current->files) or
b) you've had its refcount incremented for you by some process that
did, at the time, have current->files pointing to it.
There is a reason why binder keeps ->files explicitly, rather than going through
->tsk->files.
Powered by blists - more mailing lists