From: "John McCutchan" <john@johnmccutchan.com>
To: mtk.manpages@gmail.com
Cc: "Andrew Morton" <akpm@linux-foundation.org>,
lkml <linux-kernel@vger.kernel.org>,
"Robert Love" <rlove@google.com>,
"Vegard Nossum" <vegard.nossum@gmail.com>,
"Ulrich Drepper" <drepper@redhat.com>
Subject: Re: [patch] Fix type errors in inotify interfaces
Date: Wed, 19 Nov 2008 11:24:51 -0800 [thread overview]
Message-ID: <cfec22b10811191124g7fcafbdbx827311c04c0fae3f@mail.gmail.com> (raw)
In-Reply-To: <cfd18e0f0811191110t792cc9a4i5869bee0fb3d759c@mail.gmail.com>
On Wed, Nov 19, 2008 at 11:10 AM, Michael Kerrisk
<mtk.manpages@googlemail.com> wrote:
> (Would be nice to see an Aacked-by from Robert or John on this patch.)
>
> On Wed, Nov 19, 2008 at 3:03 AM, Andrew Morton
> <akpm@linux-foundation.org> wrote:
>> On Tue, 18 Nov 2008 15:18:21 -0500 Michael Kerrisk <mtk.manpages@googlemail.com> wrote:
>>
>>> Andrew,
>>>
>>> Vegard reminded me of an issue with the inotify interface
>>> that I raised quite a while ago, offlist, with Robert; Robert
>>> acknowledged that things should be fixed, but then neither of
>>> us actually did anything :-{.
>>>
>>> The problems lie in the types used for some inotify interfaces, both
>>> at the kernel level and at the glibc level. This mail addresses the
>>> kernel problem. I will follow up with some suggestions for glibc
>>> changes.
>>>
>>> For the sys_inotify_rm_watch() interface, the type of the 'wd' argument
>>> is currently 'u32', it should be '__s32' . That is Robert's suggestion,
>>> and is consistent with the other declarations of watch descriptors in
>>> the kernel source, in particular, the inotify_event structure in
>>> include/linux/inotify.h:
>>>
>>> struct inotify_event {
>>> __s32 wd; /* watch descriptor */
>>> __u32 mask; /* watch mask */
>>> __u32 cookie; /* cookie to synchronize two events */
>>> __u32 len; /* length (including nulls) of name */
>>> char name[0]; /* stub for possible name */
>>> };
>>>
>>> The patch below makes the changes needed for inotify_rm_watch().
>>>
>>> Thanks
>>>
>>> Michael
>>>
>>>
>>> diff --git a/fs/inotify_user.c b/fs/inotify_user.c
>>> index d367e9b..a71f764 100644
>>> --- a/fs/inotify_user.c
>>> +++ b/fs/inotify_user.c
>>> @@ -704,7 +704,7 @@ fput_and_out:
>>> return ret;
>>> }
>>>
>>> -asmlinkage long sys_inotify_rm_watch(int fd, u32 wd)
>>> +asmlinkage long sys_inotify_rm_watch(int fd, __s32 wd)
>>> {
>>> struct file *filp;
>>> struct inotify_device *dev;
>>> diff --git a/include/linux/syscalls.h b/include/linux/syscalls.h
>>> index d6ff145..36983a5 100644
>>> --- a/include/linux/syscalls.h
>>> +++ b/include/linux/syscalls.h
>>> @@ -550,7 +550,7 @@ asmlinkage long sys_inotify_init(void);
>>> asmlinkage long sys_inotify_init1(int flags);
>>> asmlinkage long sys_inotify_add_watch(int fd, const char __user *path,
>>> u32 mask);
>>> -asmlinkage long sys_inotify_rm_watch(int fd, u32 wd);
>>> +asmlinkage long sys_inotify_rm_watch(int fd, __s32 wd);
>>>
>>> asmlinkage long sys_spu_run(int fd, __u32 __user *unpc,
>>> __u32 __user *ustatus);
>>
>
> Yes -- there is no sane reason for a negative watch descriptor to
> inotify_rm_watch(); this change is mainly about consistency. (The
> glibc change is probably more important.)
>
>> otoh, the system call via which one _obtains_ watch descriptors most
>> certainly wants to return -ve nunmbers, to signify errors.
>>
>> All too hard. I think I'll stop thinking about it and merge the patch ;)
>
Seems sane enough.
Acked-by: John McCutchan <john@johnmccutchan.com>
--
John McCutchan <john@johnmccutchan.com>
prev parent reply other threads:[~2008-11-19 19:25 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-11-18 20:18 Michael Kerrisk
2008-11-18 20:22 ` Michael Kerrisk
2008-11-18 20:39 ` Michael Kerrisk
2008-11-19 8:03 ` Andrew Morton
2008-11-19 19:10 ` Michael Kerrisk
2008-11-19 19:13 ` Robert Love
2008-11-19 19:24 ` John McCutchan [this message]
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=cfec22b10811191124g7fcafbdbx827311c04c0fae3f@mail.gmail.com \
--to=john@johnmccutchan.com \
--cc=akpm@linux-foundation.org \
--cc=drepper@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mtk.manpages@gmail.com \
--cc=rlove@google.com \
--cc=vegard.nossum@gmail.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
all inboxes | Powered by JetHome®