Whamcloud - gitweb
Landing the mds_lock_devel branch on the trunk. Notables:
[fs/lustre-release.git] / lustre / llite / file.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  linux/fs/ext2/file.c
5  *
6  * This code is issued under the GNU General Public License.
7  * See the file COPYING in this distribution
8  *
9  * Copyright (C) 1992, 1993, 1994, 1995
10  * Remy Card (card@masi.ibp.fr)
11  * Laboratoire MASI - Institut Blaise Pascal
12  * Universite Pierre et Marie Curie (Paris VI)
13  *
14  *  from
15  *
16  *  linux/fs/minix/file.c
17  *
18  *  Copyright (C) 1991, 1992  Linus Torvalds
19  *
20  *  ext2 fs regular file handling primitives
21  *
22  *  64-bit file support on 64-bit platforms by Jakub Jelinek
23  *      (jj@sunsite.ms.mff.cuni.cz)
24  */
25
26 #define DEBUG_SUBSYSTEM S_LLITE
27
28 #include <linux/lustre_dlm.h>
29 #include <linux/lustre_lite.h>
30
31 int ll_inode_setattr(struct inode *inode, struct iattr *attr, int do_trunc);
32 extern int ll_setattr(struct dentry *de, struct iattr *attr);
33
34 static int ll_file_open(struct inode *inode, struct file *file)
35 {
36         int rc;
37         struct ptlrpc_request *req = NULL;
38         struct ll_file_data *fd;
39         struct obdo *oa;
40         struct ll_sb_info *sbi = ll_i2sbi(inode);
41         struct ll_inode_info *lli = ll_i2info(inode);
42         __u64 id = 0;
43         ENTRY;
44
45         if (file->private_data)
46                 LBUG();
47
48         /*  delayed create of object (intent created inode) */
49         /*  XXX object needs to be cleaned up if mdc_open fails */
50         /*  XXX error handling appropriate here? */
51         if (lli->lli_obdo == NULL) {
52                 struct inode * inode = file->f_dentry->d_inode;
53
54                 oa = lli->lli_obdo = obdo_alloc();
55                 oa->o_valid = OBD_MD_FLMODE;
56                 oa->o_mode = S_IFREG | 0600;
57                 rc = obd_create(ll_i2obdconn(inode), oa);
58                 if (rc)
59                         RETURN(rc);
60                 lli->lli_flags &= ~OBD_FL_CREATEONOPEN;
61         }
62
63         oa = lli->lli_obdo;
64         if (oa == NULL) {
65                 LBUG();
66                 GOTO(out_mdc, rc = -EINVAL);
67         }
68
69         fd = kmem_cache_alloc(ll_file_data_slab, SLAB_KERNEL);
70         if (!fd)
71                 GOTO(out, rc = -ENOMEM);
72         memset(fd, 0, sizeof(*fd));
73
74         rc = mdc_open(&sbi->ll_mdc_conn, inode->i_ino, S_IFREG, file->f_flags,
75                       id, (__u64)(unsigned long)file, &fd->fd_mdshandle, &req);
76         fd->fd_req = req;
77         ptlrpc_req_finished(req);
78         if (rc)
79                 GOTO(out_req, -abs(rc));
80         if (!fd->fd_mdshandle) {
81                 CERROR("mdc_open didn't assign fd_mdshandle\n");
82                 /* XXX handle this how, abort or is it non-fatal? */
83         }
84         if (!fd->fd_mdshandle)
85                 CERROR("mdc_open didn't assign fd_mdshandle\n");
86
87         rc = obd_open(ll_i2obdconn(inode), oa);
88         if (rc)
89                 GOTO(out_mdc, rc = -abs(rc));
90
91         file->private_data = fd;
92
93         EXIT;
94
95         return 0;
96 out_mdc:
97         mdc_close(&sbi->ll_mdc_conn, inode->i_ino,
98                   S_IFREG, fd->fd_mdshandle, &req);
99 out_req:
100         ptlrpc_free_req(req);
101 //out_fd:
102         kmem_cache_free(ll_file_data_slab, fd);
103         file->private_data = NULL;
104 out:
105         return rc;
106 }
107
108 static int ll_file_release(struct inode *inode, struct file *file)
109 {
110         int rc;
111         struct ptlrpc_request *req = NULL;
112         struct ll_file_data *fd;
113         struct obdo *oa;
114         struct ll_sb_info *sbi = ll_i2sbi(inode);
115
116         ENTRY;
117
118         fd = (struct ll_file_data *)file->private_data;
119         if (!fd || !fd->fd_mdshandle) {
120                 LBUG();
121                 GOTO(out, rc = -EINVAL);
122         }
123
124         oa = ll_i2info(inode)->lli_obdo;
125         if (oa == NULL) {
126                 LBUG();
127                 GOTO(out_fd, rc = -ENOENT);
128         }
129         rc = obd_close(ll_i2obdconn(inode), oa);
130         if (rc)
131                 GOTO(out_fd, abs(rc));
132
133         if (file->f_mode & FMODE_WRITE) {
134                 struct iattr attr;
135                 attr.ia_valid = ATTR_MTIME | ATTR_CTIME | ATTR_ATIME | ATTR_SIZE;
136                 attr.ia_mtime = inode->i_mtime;
137                 attr.ia_ctime = inode->i_ctime;
138                 attr.ia_atime = inode->i_atime;
139                 attr.ia_size = inode->i_size;
140
141                 /* XXX: this introduces a small race that we should evaluate */
142                 rc = ll_inode_setattr(inode, &attr, 0);
143                 if (rc) {
144                         CERROR("failed - %d.\n", rc);
145                         rc = -EIO; /* XXX - GOTO(out)? -phil */
146                 }
147         }
148
149         rc = mdc_close(&sbi->ll_mdc_conn, inode->i_ino,
150                        S_IFREG, fd->fd_mdshandle, &req);
151         ptlrpc_req_finished(req);
152         if (rc) {
153                 if (rc > 0)
154                         rc = -rc;
155                 GOTO(out, rc);
156         }
157         ptlrpc_free_req(fd->fd_req);
158
159         EXIT;
160
161 out_fd:
162         kmem_cache_free(ll_file_data_slab, fd);
163         file->private_data = NULL;
164 out:
165         return rc;
166 }
167
168
169 static inline void ll_remove_suid(struct inode *inode)
170 {
171         unsigned int mode;
172
173         /* set S_IGID if S_IXGRP is set, and always set S_ISUID */
174         mode = (inode->i_mode & S_IXGRP)*(S_ISGID/S_IXGRP) | S_ISUID;
175
176         /* was any of the uid bits set? */
177         mode &= inode->i_mode;
178         if (mode && !capable(CAP_FSETID)) {
179                 inode->i_mode &= ~mode;
180                 // XXX careful here - we cannot change the size
181         }
182 }
183
184 static void ll_update_atime(struct inode *inode)
185 {
186         struct iattr attr;
187
188         attr.ia_atime = CURRENT_TIME;
189         attr.ia_valid = ATTR_ATIME;
190
191         if (inode->i_atime == attr.ia_atime) return;
192         if (IS_RDONLY(inode)) return;
193         if (IS_NOATIME(inode)) return;
194
195         /* ll_inode_setattr() sets inode->i_atime from attr.ia_atime */
196         ll_inode_setattr(inode, &attr, 0);
197 }
198
199 static int ll_lock_callback(struct ldlm_lock *lock, struct ldlm_lock *new,
200                             void *data, __u32 data_len)
201 {
202         struct inode *inode = lock->l_data;
203         ENTRY;
204
205         if (new == NULL) {
206                 /* Completion AST.  Do nothing. */
207                 RETURN(0);
208         }
209
210         if (data_len != sizeof(struct inode))
211                 LBUG();
212
213         /* FIXME: do something better than throwing away everything */
214         if (inode == NULL)
215                 LBUG();
216         down(&inode->i_sem);
217         invalidate_inode_pages(inode);
218         up(&inode->i_sem);
219
220         if (ldlm_cli_cancel(lock->l_client, lock) < 0)
221                 LBUG();
222         RETURN(0);
223 }
224
225 static ssize_t ll_file_read(struct file *filp, char *buf, size_t count,
226                             loff_t *ppos)
227 {
228         struct ll_file_data *fd = (struct ll_file_data *)filp->private_data;
229         struct inode *inode = filp->f_dentry->d_inode;
230         struct ll_sb_info *sbi = ll_i2sbi(inode);
231         struct ldlm_extent extent;
232         struct lustre_handle lockh;
233         __u64 res_id[RES_NAME_SIZE] = {inode->i_ino};
234         int flags = 0;
235         ldlm_error_t err;
236         ssize_t retval;
237         ENTRY;
238
239         if (!(fd->fd_flags & LL_FILE_IGNORE_LOCK)) {
240                 extent.start = *ppos;
241                 extent.end = *ppos + count;
242                 CDEBUG(D_INFO, "Locking inode %ld, start %Lu end %Lu\n",
243                        inode->i_ino, extent.start, extent.end);
244
245                 err = obd_enqueue(&sbi->ll_osc_conn, NULL, res_id, LDLM_EXTENT,
246                                   &extent, sizeof(extent), LCK_PR, &flags,
247                                   ll_lock_callback, inode, sizeof(*inode),
248                                   &lockh);
249                 if (err != ELDLM_OK)
250                         CERROR("lock enqueue: err: %d\n", err);
251                 ldlm_lock_dump((void *)(unsigned long)lockh.addr);
252         }
253
254         CDEBUG(D_INFO, "Reading inode %ld, %d bytes, offset %Ld\n",
255                inode->i_ino, count, *ppos);
256         retval = generic_file_read(filp, buf, count, ppos);
257
258         if (retval > 0)
259                 ll_update_atime(inode);
260
261         if (!(fd->fd_flags & LL_FILE_IGNORE_LOCK)) {
262                 err = obd_cancel(&sbi->ll_osc_conn, LCK_PR, &lockh);
263                 if (err != ELDLM_OK)
264                         CERROR("lock cancel: err: %d\n", err);
265         }
266
267         RETURN(retval);
268 }
269
270 /*
271  * Write to a file (through the page cache).
272  */
273 static ssize_t
274 ll_file_write(struct file *file, const char *buf, size_t count, loff_t *ppos)
275 {
276         struct ll_file_data *fd = (struct ll_file_data *)file->private_data;
277         struct inode *inode = file->f_dentry->d_inode;
278         struct ll_sb_info *sbi = ll_i2sbi(inode);
279         struct ldlm_extent extent;
280         struct lustre_handle lockh;
281         __u64 res_id[RES_NAME_SIZE] = {inode->i_ino};
282         int flags = 0;
283         ldlm_error_t err;
284         ssize_t retval;
285         ENTRY;
286
287         if (!(fd->fd_flags & LL_FILE_IGNORE_LOCK)) {
288                 extent.start = *ppos;
289                 extent.end = *ppos + count;
290                 CDEBUG(D_INFO, "Locking inode %ld, start %Lu end %Lu\n",
291                        inode->i_ino, extent.start, extent.end);
292
293                 err = obd_enqueue(&sbi->ll_osc_conn, NULL, res_id, LDLM_EXTENT,
294                                   &extent, sizeof(extent), LCK_PW, &flags,
295                                   ll_lock_callback, inode, sizeof(*inode),
296                                   &lockh);
297                 if (err != ELDLM_OK)
298                         CERROR("lock enqueue: err: %d\n", err);
299                 ldlm_lock_dump((void *)(unsigned long)lockh.addr);
300         }
301
302         CDEBUG(D_INFO, "Writing inode %ld, %ld bytes, offset %Ld\n",
303                inode->i_ino, (long)count, *ppos);
304
305         retval = generic_file_write(file, buf, count, ppos);
306
307         if (!(fd->fd_flags & LL_FILE_IGNORE_LOCK)) {
308                 err = obd_cancel(&sbi->ll_osc_conn, LCK_PW, &lockh);
309                 if (err != ELDLM_OK)
310                         CERROR("lock cancel: err: %d\n", err);
311         }
312
313         RETURN(retval);
314 }
315
316 int ll_file_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
317                   unsigned long arg)
318 {
319         struct ll_file_data *fd = (struct ll_file_data *)file->private_data;
320         int flags;
321
322         switch(cmd) {
323         case LL_IOC_GETFLAGS:
324                 /* Get the current value of the file flags */
325                 return put_user(fd->fd_flags, (int *)arg);
326         case LL_IOC_SETFLAGS:
327         case LL_IOC_CLRFLAGS:
328                 /* Set or clear specific file flags */
329                 /* XXX This probably needs checks to ensure the flags are
330                  *     not abused, and to handle any flag side effects.
331                  */
332                 if (get_user(flags, (int *) arg))
333                         return -EFAULT;
334
335                 if (cmd == LL_IOC_SETFLAGS)
336                         fd->fd_flags |= flags;
337                 else
338                         fd->fd_flags &= ~flags;
339                 return 0;
340
341         /* We need to special case any other ioctls we want to handle,
342          * to send them to the MDS/OST as appropriate and to properly
343          * network encode the arg field.
344         case EXT2_IOC_GETFLAGS:
345         case EXT2_IOC_SETFLAGS:
346         case EXT2_IOC_GETVERSION_OLD:
347         case EXT2_IOC_GETVERSION_NEW:
348         case EXT2_IOC_SETVERSION_OLD:
349         case EXT2_IOC_SETVERSION_NEW:
350         */
351         default:
352                 return -ENOTTY;
353         }
354 }
355
356 /* XXX this does not need to do anything for data, it _does_ need to
357    call setattr */
358 int ll_fsync(struct file *file, struct dentry *dentry, int data)
359 {
360         return 0;
361 }
362
363 struct file_operations ll_file_operations = {
364         read:           ll_file_read,
365         write:          ll_file_write,
366         ioctl:          ll_file_ioctl,
367         open:           ll_file_open,
368         release:        ll_file_release,
369         mmap:           generic_file_mmap,
370         fsync:          NULL
371 };
372
373 struct inode_operations ll_file_inode_operations = {
374         truncate: ll_truncate,
375         setattr: ll_setattr
376 };