Whamcloud - gitweb
It's been a good day: chmod/chown and friends now work for Lustre Light.
[fs/lustre-release.git] / lustre / llite / 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 #include <linux/obd_support.h>
38 #include <linux/lustre_light.h>
39
40 extern int ll_setattr(struct dentry *de, struct iattr *attr);
41
42 static inline void ll_remove_suid(struct inode *inode)
43 {
44         unsigned int mode;
45
46         /* set S_IGID if S_IXGRP is set, and always set S_ISUID */
47         mode = (inode->i_mode & S_IXGRP)*(S_ISGID/S_IXGRP) | S_ISUID;
48
49         /* was any of the uid bits set? */
50         mode &= inode->i_mode;
51         if (mode && !capable(CAP_FSETID)) {
52                 inode->i_mode &= ~mode;
53                 // XXX careful here - we cannot change the size
54         }
55 }
56
57 /*
58  * Write to a file (through the page cache).
59  */
60 static ssize_t
61 ll_file_write(struct file *file, const char *buf, size_t count, loff_t *ppos)
62 {
63         ssize_t retval;
64         CDEBUG(D_INFO, "Writing inode %ld, %d bytes, offset %Ld\n",
65                file->f_dentry->d_inode->i_ino, count, *ppos);
66
67         retval = generic_file_write(file, buf, count, ppos);
68         CDEBUG(D_INFO, "Wrote %d\n", retval);
69
70         /* update mtime/ctime/atime here, NOT size */
71         if (retval > 0) {
72                 struct iattr attr;
73                 attr.ia_valid = ATTR_MTIME | ATTR_CTIME | ATTR_ATIME;
74                 attr.ia_mtime = attr.ia_ctime = attr.ia_atime =
75                         CURRENT_TIME;
76                 ll_setattr(file->f_dentry, &attr);
77         }
78         EXIT;
79         return retval;
80 }
81
82
83 /* XXX this does not need to do anything for data, it _does_ need to
84    call setattr */ 
85 int ll_fsync(struct file *file, struct dentry *dentry, int data)
86 {
87         return 0;
88 }
89
90 struct file_operations ll_file_operations = {
91         read: generic_file_read,
92         write: ll_file_write,
93         mmap: generic_file_mmap,
94         fsync: NULL
95 };
96
97
98 struct inode_operations ll_file_inode_operations = {
99         truncate: ll_truncate,
100         setattr: ll_setattr
101 };
102