Whamcloud - gitweb
- Added DEBUG_SUBSYSTEMs
[fs/lustre-release.git] / lustre / obdfs / file.c
1 /*
2  *  linux/fs/ext2/file.c
3  *
4  * This code is issued under the GNU General Public License.
5  * See the file COPYING in this distribution
6  *
7  * Copyright (C) 1992, 1993, 1994, 1995
8  * Remy Card (card@masi.ibp.fr)
9  * Laboratoire MASI - Institut Blaise Pascal
10  * Universite Pierre et Marie Curie (Paris VI)
11  *
12  *  from
13  *
14  *  linux/fs/minix/file.c
15  *
16  *  Copyright (C) 1991, 1992  Linus Torvalds
17  *
18  *  ext2 fs regular file handling primitives
19  *
20  *  64-bit file support on 64-bit platforms by Jakub Jelinek
21  *      (jj@sunsite.ms.mff.cuni.cz)
22  */
23
24 #include <asm/uaccess.h>
25 #include <asm/system.h>
26
27 #include <linux/errno.h>
28 #include <linux/fs.h>
29 #include <linux/fcntl.h>
30 #include <linux/sched.h>
31 #include <linux/stat.h>
32 #include <linux/locks.h>
33 #include <linux/mm.h>
34 #include <linux/pagemap.h>
35 #include <linux/smp_lock.h>
36
37 #define DEBUG_SUBSYSTEM S_OBDFS
38
39 #include <linux/obd_support.h>
40 #include <linux/obdfs.h>
41
42 extern int obdfs_setattr(struct dentry *de, struct iattr *attr);
43 void obdfs_change_inode(struct inode *inode);
44
45 static inline void obdfs_remove_suid(struct inode *inode)
46 {
47         unsigned int mode;
48
49         /* set S_IGID if S_IXGRP is set, and always set S_ISUID */
50         mode = (inode->i_mode & S_IXGRP)*(S_ISGID/S_IXGRP) | S_ISUID;
51
52         /* was any of the uid bits set? */
53         mode &= inode->i_mode;
54         if (mode && !capable(CAP_FSETID)) {
55                 inode->i_mode &= ~mode;
56                 // XXX careful here - we cannot change the size
57                 //obdfs_change_inode(inode);
58         }
59 }
60
61 /*
62  * Write to a file (through the page cache).
63  */
64 static ssize_t
65 obdfs_file_write(struct file *file, const char *buf, size_t count, loff_t *ppos)
66 {
67         ssize_t retval;
68         CDEBUG(D_INFO, "Writing inode %ld, %d bytes, offset %Ld\n",
69                file->f_dentry->d_inode->i_ino, count, *ppos);
70
71         retval = generic_file_write(file, buf, count, ppos);
72         CDEBUG(D_INFO, "Wrote %d\n", retval);
73
74         /* update mtime/ctime/atime here, NOT size */
75         if (retval > 0) {
76                 struct iattr attr;
77                 attr.ia_valid = ATTR_MTIME | ATTR_CTIME | ATTR_ATIME;
78                 attr.ia_mtime = attr.ia_ctime = attr.ia_atime =
79                         CURRENT_TIME;
80                 obdfs_setattr(file->f_dentry, &attr);
81         }
82         EXIT;
83         return retval;
84 }
85
86
87 /* XXX this does not need to do anything for data, it _does_ need to
88    call setattr */ 
89 int obdfs_fsync(struct file *file, struct dentry *dentry, int data)
90 {
91         return 0;
92 }
93
94 struct file_operations obdfs_file_operations = {
95         read: generic_file_read,
96         write: obdfs_file_write,
97         mmap: generic_file_mmap,
98         fsync: NULL
99 };
100
101
102 struct inode_operations obdfs_file_inode_operations = {
103         truncate: obdfs_truncate,
104         setattr: obdfs_setattr
105 };
106