Whamcloud - gitweb
- remainder of rmdir changes
[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 = NULL;
40         struct ll_sb_info *sbi = ll_i2sbi(inode);
41         struct ll_inode_info *lli = ll_i2info(inode);
42         ENTRY;
43
44         if (file->private_data)
45                 LBUG();
46
47         /*  delayed create of object (intent created inode) */
48         /*  XXX object needs to be cleaned up if mdc_open fails */
49         /*  XXX error handling appropriate here? */
50         if (lli->lli_obdo == NULL) {
51                 struct inode * inode = file->f_dentry->d_inode;
52
53                 oa = lli->lli_obdo = obdo_alloc();
54                 oa->o_valid = OBD_MD_FLMODE;
55                 oa->o_mode = S_IFREG | 0600;
56                 rc = obd_create(ll_i2obdconn(inode), oa);
57                 if (rc)
58                         RETURN(rc);
59                 lli->lli_flags &= ~OBD_FL_CREATEONOPEN;
60         }
61
62         fd = kmem_cache_alloc(ll_file_data_slab, SLAB_KERNEL);
63         if (!fd)
64                 GOTO(out, rc = -ENOMEM);
65         memset(fd, 0, sizeof(*fd));
66
67         rc = mdc_open(&sbi->ll_mdc_conn, inode->i_ino, S_IFREG | inode->i_mode,
68                       file->f_flags,
69                       oa, (__u64)(unsigned long)file, &fd->fd_mdshandle, &req);
70         fd->fd_req = req;
71         ptlrpc_req_finished(req);
72         if (rc)
73                 GOTO(out_req, -abs(rc));
74         if (!fd->fd_mdshandle) {
75                 CERROR("mdc_open didn't assign fd_mdshandle\n");
76                 /* XXX handle this how, abort or is it non-fatal? */
77         }
78         if (!fd->fd_mdshandle)
79                 CERROR("mdc_open didn't assign fd_mdshandle\n");
80
81         oa = lli->lli_obdo;
82         if (oa == NULL) {
83                 LBUG();
84                 GOTO(out_mdc, rc = -EINVAL);
85         }
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                             struct ptlrpc_request **reqp)
202 {
203         struct inode *inode = lock->l_data;
204         ENTRY;
205
206         if (new == NULL) {
207                 /* Completion AST.  Do nothing. */
208                 RETURN(0);
209         }
210
211         if (data_len != sizeof(struct inode))
212                 LBUG();
213
214         /* FIXME: do something better than throwing away everything */
215         if (inode == NULL)
216                 LBUG();
217         down(&inode->i_sem);
218         CDEBUG(D_INODE, "invalidating obdo/inode %ld\n", inode->i_ino);
219         invalidate_inode_pages(inode);
220         up(&inode->i_sem);
221
222         if (ldlm_cli_cancel(lock->l_client, lock) < 0)
223                 LBUG();
224         RETURN(0);
225 }
226
227 static ssize_t ll_file_read(struct file *filp, char *buf, size_t count,
228                             loff_t *ppos)
229 {
230         struct ll_file_data *fd = (struct ll_file_data *)filp->private_data;
231         struct inode *inode = filp->f_dentry->d_inode;
232         struct ll_sb_info *sbi = ll_i2sbi(inode);
233         struct ldlm_extent extent;
234         struct lustre_handle lockh;
235         __u64 res_id[RES_NAME_SIZE] = {inode->i_ino};
236         int flags = 0;
237         ldlm_error_t err;
238         ssize_t retval;
239         ENTRY;
240
241         if (!(fd->fd_flags & LL_FILE_IGNORE_LOCK)) {
242                 extent.start = *ppos;
243                 extent.end = *ppos + count;
244                 CDEBUG(D_INFO, "Locking inode %ld, start %Lu end %Lu\n",
245                        inode->i_ino, extent.start, extent.end);
246
247                 err = obd_enqueue(&sbi->ll_osc_conn, NULL, res_id, LDLM_EXTENT,
248                                   &extent, sizeof(extent), LCK_PR, &flags,
249                                   ll_lock_callback, inode, sizeof(*inode),
250                                   &lockh);
251                 if (err != ELDLM_OK)
252                         CERROR("lock enqueue: err: %d\n", err);
253                 ldlm_lock_dump((void *)(unsigned long)lockh.addr);
254         }
255
256         CDEBUG(D_INFO, "Reading inode %ld, %d bytes, offset %Ld\n",
257                inode->i_ino, count, *ppos);
258         retval = generic_file_read(filp, buf, count, ppos);
259
260         if (retval > 0)
261                 ll_update_atime(inode);
262
263         if (!(fd->fd_flags & LL_FILE_IGNORE_LOCK)) {
264                 err = obd_cancel(&sbi->ll_osc_conn, LCK_PR, &lockh);
265                 if (err != ELDLM_OK)
266                         CERROR("lock cancel: err: %d\n", err);
267         }
268
269         RETURN(retval);
270 }
271
272 /*
273  * Write to a file (through the page cache).
274  */
275 static ssize_t
276 ll_file_write(struct file *file, const char *buf, size_t count, loff_t *ppos)
277 {
278         struct ll_file_data *fd = (struct ll_file_data *)file->private_data;
279         struct inode *inode = file->f_dentry->d_inode;
280         struct ll_sb_info *sbi = ll_i2sbi(inode);
281         struct ldlm_extent extent;
282         struct lustre_handle lockh;
283         __u64 res_id[RES_NAME_SIZE] = {inode->i_ino};
284         int flags = 0;
285         ldlm_error_t err;
286         ssize_t retval;
287         ENTRY;
288
289         if (!(fd->fd_flags & LL_FILE_IGNORE_LOCK)) {
290                 /* FIXME: this should check whether O_APPEND is set and adjust
291                  * extent.start accordingly */
292                 extent.start = *ppos;
293                 extent.end = *ppos + count;
294                 CDEBUG(D_INFO, "Locking inode %ld, start %Lu end %Lu\n",
295                        inode->i_ino, extent.start, extent.end);
296
297                 err = obd_enqueue(&sbi->ll_osc_conn, NULL, res_id, LDLM_EXTENT,
298                                   &extent, sizeof(extent), LCK_PW, &flags,
299                                   ll_lock_callback, inode, sizeof(*inode),
300                                   &lockh);
301                 if (err != ELDLM_OK)
302                         CERROR("lock enqueue: err: %d\n", err);
303                 ldlm_lock_dump((void *)(unsigned long)lockh.addr);
304         }
305
306         CDEBUG(D_INFO, "Writing inode %ld, %ld bytes, offset %Ld\n",
307                inode->i_ino, (long)count, *ppos);
308
309         retval = generic_file_write(file, buf, count, ppos);
310
311         if (!(fd->fd_flags & LL_FILE_IGNORE_LOCK)) {
312                 err = obd_cancel(&sbi->ll_osc_conn, LCK_PW, &lockh);
313                 if (err != ELDLM_OK)
314                         CERROR("lock cancel: err: %d\n", err);
315         }
316
317         RETURN(retval);
318 }
319
320 int ll_file_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
321                   unsigned long arg)
322 {
323         struct ll_file_data *fd = (struct ll_file_data *)file->private_data;
324         int flags;
325
326         switch(cmd) {
327         case LL_IOC_GETFLAGS:
328                 /* Get the current value of the file flags */
329                 return put_user(fd->fd_flags, (int *)arg);
330         case LL_IOC_SETFLAGS:
331         case LL_IOC_CLRFLAGS:
332                 /* Set or clear specific file flags */
333                 /* XXX This probably needs checks to ensure the flags are
334                  *     not abused, and to handle any flag side effects.
335                  */
336                 if (get_user(flags, (int *) arg))
337                         return -EFAULT;
338
339                 if (cmd == LL_IOC_SETFLAGS)
340                         fd->fd_flags |= flags;
341                 else
342                         fd->fd_flags &= ~flags;
343                 return 0;
344
345         /* We need to special case any other ioctls we want to handle,
346          * to send them to the MDS/OST as appropriate and to properly
347          * network encode the arg field.
348         case EXT2_IOC_GETFLAGS:
349         case EXT2_IOC_SETFLAGS:
350         case EXT2_IOC_GETVERSION_OLD:
351         case EXT2_IOC_GETVERSION_NEW:
352         case EXT2_IOC_SETVERSION_OLD:
353         case EXT2_IOC_SETVERSION_NEW:
354         */
355         default:
356                 return -ENOTTY;
357         }
358 }
359
360 /* XXX this does not need to do anything for data, it _does_ need to
361    call setattr */
362 int ll_fsync(struct file *file, struct dentry *dentry, int data)
363 {
364         return 0;
365 }
366
367 struct file_operations ll_file_operations = {
368         read:           ll_file_read,
369         write:          ll_file_write,
370         ioctl:          ll_file_ioctl,
371         open:           ll_file_open,
372         release:        ll_file_release,
373         mmap:           generic_file_mmap,
374         fsync:          NULL
375 };
376
377 struct inode_operations ll_file_inode_operations = {
378         truncate: ll_truncate,
379         setattr: ll_setattr
380 };