Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 106369
b: refs/heads/master
c: b1da47e
h: refs/heads/master
i:
  106367: 736060b
v: v3
  • Loading branch information
Miklos Szeredi authored and Al Viro committed Jul 27, 2008
1 parent 5f88473 commit 128b55f
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e9b76fedc61235da80b6b7f81dfd67ec224dfb49
refs/heads/master: b1da47e29e467f1ec36dc78d009bfb109fd533c7
15 changes: 14 additions & 1 deletion trunk/fs/fat/file.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
#include <linux/writeback.h>
#include <linux/backing-dev.h>
#include <linux/blkdev.h>
#include <linux/fsnotify.h>
#include <linux/security.h>

int fat_generic_ioctl(struct inode *inode, struct file *filp,
unsigned int cmd, unsigned long arg)
Expand Down Expand Up @@ -64,6 +66,7 @@ int fat_generic_ioctl(struct inode *inode, struct file *filp,

/* Equivalent to a chmod() */
ia.ia_valid = ATTR_MODE | ATTR_CTIME;
ia.ia_ctime = current_fs_time(inode->i_sb);
if (is_dir) {
ia.ia_mode = MSDOS_MKMODE(attr,
S_IRWXUGO & ~sbi->options.fs_dmask)
Expand All @@ -90,11 +93,21 @@ int fat_generic_ioctl(struct inode *inode, struct file *filp,
}
}

/*
* The security check is questionable... We single
* out the RO attribute for checking by the security
* module, just because it maps to a file mode.
*/
err = security_inode_setattr(filp->f_path.dentry, &ia);
if (err)
goto up;

/* This MUST be done before doing anything irreversible... */
err = notify_change(filp->f_path.dentry, &ia);
err = fat_setattr(filp->f_path.dentry, &ia);
if (err)
goto up;

fsnotify_change(filp->f_path.dentry, ia.ia_valid);
if (sbi->options.sys_immutable) {
if (attr & ATTR_SYS)
inode->i_flags |= S_IMMUTABLE;
Expand Down
1 change: 1 addition & 0 deletions trunk/security/security.c
Original file line number Diff line number Diff line change
Expand Up @@ -442,6 +442,7 @@ int security_inode_setattr(struct dentry *dentry, struct iattr *attr)
return 0;
return security_ops->inode_setattr(dentry, attr);
}
EXPORT_SYMBOL_GPL(security_inode_setattr);

int security_inode_getattr(struct vfsmount *mnt, struct dentry *dentry)
{
Expand Down

0 comments on commit 128b55f

Please sign in to comment.