[prev in list] [next in list] [prev in thread] [next in thread] 

List:       linux-security-module
Subject:    Re: [PATCH v2 0/2] vfs: truncate bug fixes
From:       "Kasatkin, Dmitry" <dmitry.kasatkin () intel ! com>
Date:       2011-12-22 10:29:49
Message-ID: CALLzPKYNGbksuMNKPBr-G-YVW8by3QQfx1rudf8pwqMxs=fotA () mail ! gmail ! com
[Download RAW message or body]

On Thu, Dec 22, 2011 at 11:10 AM, Al Viro <viro@zeniv.linux.org.uk> wrote:
> On Thu, Dec 22, 2011 at 10:55:24AM +0200, Dmitry Kasatkin wrote:
>> When a file is opened with O_TRUNC or truncated with truncate()/ftruncate(),
>> and then closed, iversion is not updated. This patch uses ATTR_OPEN flag,
>> which is currently used to identify files opened with O_TRUNC,
>> as an indication to increment iversion.
>> Also it adds passing of this flag from do_sys_truncate and do_sys_ftruncate.
>> To reflect real meaning, ATTR_OPEN is suggested to be renamed to ATTR_TRUNC.
>
> Um...   Is there any difference left between that and ATTR_SIZE, then?

Oops. Indeed. It becomes simpler..

Comments and using ATTR_OPEN in fs/fuse/dir.c confused me.

update_mtime()
{
	/* If it's an open(O_TRUNC) or an ftruncate(), don't update */
	if ((ivalid & ATTR_SIZE) && (ivalid & (ATTR_OPEN | ATTR_FILE)))
}

do_sys_truncate() calls do_truncate(path.dentry, length, 0, NULL);
while do_sys_ftruncate calls do_truncate(dentry, length,
ATTR_MTIME|ATTR_CTIME, file);

Notice the last file parameter... NULL or file..

As truncate and ftruncate syscalls should do the same job as fstat or stat.
It will lead to different results for FUSE.
Following will be 0: (ivalid & (ATTR_OPEN | ATTR_FILE)

FUSE comments says.. OR
/* If it's an open(O_TRUNC) or an ftruncate(), don't update */

Will make new version..

- Dmitry
--
To unsubscribe from this list: send the line "unsubscribe linux-security-module" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic