diff options
Diffstat (limited to 'fs/fat/file.c')
| -rw-r--r-- | fs/fat/file.c | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/fs/fat/file.c b/fs/fat/file.c index c672df4036e9..ddde37025ca6 100644 --- a/fs/fat/file.c +++ b/fs/fat/file.c | |||
| @@ -15,6 +15,8 @@ | |||
| 15 | #include <linux/writeback.h> | 15 | #include <linux/writeback.h> |
| 16 | #include <linux/backing-dev.h> | 16 | #include <linux/backing-dev.h> |
| 17 | #include <linux/blkdev.h> | 17 | #include <linux/blkdev.h> |
| 18 | #include <linux/fsnotify.h> | ||
| 19 | #include <linux/security.h> | ||
| 18 | 20 | ||
| 19 | int fat_generic_ioctl(struct inode *inode, struct file *filp, | 21 | int fat_generic_ioctl(struct inode *inode, struct file *filp, |
| 20 | unsigned int cmd, unsigned long arg) | 22 | unsigned int cmd, unsigned long arg) |
| @@ -64,6 +66,7 @@ int fat_generic_ioctl(struct inode *inode, struct file *filp, | |||
| 64 | 66 | ||
| 65 | /* Equivalent to a chmod() */ | 67 | /* Equivalent to a chmod() */ |
| 66 | ia.ia_valid = ATTR_MODE | ATTR_CTIME; | 68 | ia.ia_valid = ATTR_MODE | ATTR_CTIME; |
| 69 | ia.ia_ctime = current_fs_time(inode->i_sb); | ||
| 67 | if (is_dir) { | 70 | if (is_dir) { |
| 68 | ia.ia_mode = MSDOS_MKMODE(attr, | 71 | ia.ia_mode = MSDOS_MKMODE(attr, |
| 69 | S_IRWXUGO & ~sbi->options.fs_dmask) | 72 | S_IRWXUGO & ~sbi->options.fs_dmask) |
| @@ -90,11 +93,21 @@ int fat_generic_ioctl(struct inode *inode, struct file *filp, | |||
| 90 | } | 93 | } |
| 91 | } | 94 | } |
| 92 | 95 | ||
| 96 | /* | ||
| 97 | * The security check is questionable... We single | ||
| 98 | * out the RO attribute for checking by the security | ||
| 99 | * module, just because it maps to a file mode. | ||
| 100 | */ | ||
| 101 | err = security_inode_setattr(filp->f_path.dentry, &ia); | ||
| 102 | if (err) | ||
| 103 | goto up; | ||
| 104 | |||
| 93 | /* This MUST be done before doing anything irreversible... */ | 105 | /* This MUST be done before doing anything irreversible... */ |
| 94 | err = notify_change(filp->f_path.dentry, &ia); | 106 | err = fat_setattr(filp->f_path.dentry, &ia); |
| 95 | if (err) | 107 | if (err) |
| 96 | goto up; | 108 | goto up; |
| 97 | 109 | ||
| 110 | fsnotify_change(filp->f_path.dentry, ia.ia_valid); | ||
| 98 | if (sbi->options.sys_immutable) { | 111 | if (sbi->options.sys_immutable) { |
| 99 | if (attr & ATTR_SYS) | 112 | if (attr & ATTR_SYS) |
| 100 | inode->i_flags |= S_IMMUTABLE; | 113 | inode->i_flags |= S_IMMUTABLE; |
| @@ -300,6 +313,8 @@ static int fat_allow_set_time(struct msdos_sb_info *sbi, struct inode *inode) | |||
| 300 | return 0; | 313 | return 0; |
| 301 | } | 314 | } |
| 302 | 315 | ||
| 316 | #define TIMES_SET_FLAGS (ATTR_MTIME_SET | ATTR_ATIME_SET | ATTR_TIMES_SET) | ||
| 317 | |||
| 303 | int fat_setattr(struct dentry *dentry, struct iattr *attr) | 318 | int fat_setattr(struct dentry *dentry, struct iattr *attr) |
| 304 | { | 319 | { |
| 305 | struct msdos_sb_info *sbi = MSDOS_SB(dentry->d_sb); | 320 | struct msdos_sb_info *sbi = MSDOS_SB(dentry->d_sb); |
| @@ -323,9 +338,9 @@ int fat_setattr(struct dentry *dentry, struct iattr *attr) | |||
| 323 | 338 | ||
| 324 | /* Check for setting the inode time. */ | 339 | /* Check for setting the inode time. */ |
| 325 | ia_valid = attr->ia_valid; | 340 | ia_valid = attr->ia_valid; |
| 326 | if (ia_valid & (ATTR_MTIME_SET | ATTR_ATIME_SET)) { | 341 | if (ia_valid & TIMES_SET_FLAGS) { |
| 327 | if (fat_allow_set_time(sbi, inode)) | 342 | if (fat_allow_set_time(sbi, inode)) |
| 328 | attr->ia_valid &= ~(ATTR_MTIME_SET | ATTR_ATIME_SET); | 343 | attr->ia_valid &= ~TIMES_SET_FLAGS; |
| 329 | } | 344 | } |
| 330 | 345 | ||
| 331 | error = inode_change_ok(inode, attr); | 346 | error = inode_change_ok(inode, attr); |
