Whamcloud - gitweb
- Adds an int 'local_only' to the cancel_unused function and methods.
[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 lov_stripe_md *lsm = NULL;
41         struct ll_sb_info *sbi = ll_i2sbi(inode);
42         struct ll_inode_info *lli = ll_i2info(inode);
43         ENTRY;
44
45         if (file->private_data)
46                 LBUG();
47
48         lsm = lli->lli_smd;
49
50         /*  delayed create of object (intent created inode) */
51         /*  XXX object needs to be cleaned up if mdc_open fails */
52         /*  XXX error handling appropriate here? */
53         if (lsm == NULL) {
54                 struct inode *inode = file->f_dentry->d_inode;
55
56                 down(&lli->lli_open_sem);
57                 /* Check to see if we lost the race */
58                 if (lli->lli_smd == NULL) {
59                         oa = obdo_alloc();
60                         if (!oa) {
61                                 up(&lli->lli_open_sem);
62                                 RETURN(-ENOMEM);
63                         }
64                         oa->o_mode = S_IFREG | 0600;
65                         oa->o_easize = ll_mds_easize(inode->i_sb);
66                         oa->o_id = inode->i_ino;
67                         oa->o_valid = OBD_MD_FLMODE | OBD_MD_FLEASIZE |
68                                         OBD_MD_FLID;
69                         rc = obd_create(ll_i2obdconn(inode), oa, &lli->lli_smd);
70
71                         if (rc) {
72                                 obdo_free(oa);
73                                 up(&lli->lli_open_sem);
74                                 RETURN(rc);
75                         }
76                 }
77                 if (lli->lli_smd->lsm_object_id == 0)
78                         LBUG();
79                 up(&lli->lli_open_sem);
80                 lsm = lli->lli_smd;
81         }
82
83         fd = kmem_cache_alloc(ll_file_data_slab, SLAB_KERNEL);
84         if (!fd)
85                 GOTO(out, rc = -ENOMEM);
86         memset(fd, 0, sizeof(*fd));
87
88         rc = mdc_open(&sbi->ll_mdc_conn, inode->i_ino, S_IFREG | inode->i_mode,
89                       file->f_flags, lsm, (__u64)(unsigned long)file,
90                       &fd->fd_mdshandle, &req);
91         fd->fd_req = req;
92         ptlrpc_req_finished(req);
93         if (rc)
94                 GOTO(out_req, -abs(rc));
95         if (!fd->fd_mdshandle) {
96                 CERROR("mdc_open didn't assign fd_mdshandle\n");
97                 /* XXX handle this how, abort or is it non-fatal? */
98         }
99
100         if (oa == NULL && (oa = obdo_alloc()) == NULL)
101                 GOTO(out_mdc, rc = -EINVAL);
102
103         oa->o_id = lsm->lsm_object_id;
104         oa->o_mode = S_IFREG | inode->i_mode;
105         oa->o_valid = OBD_MD_FLMODE | OBD_MD_FLID | OBD_MD_FLSIZE;
106         rc = obd_open(ll_i2obdconn(inode), oa, lsm);
107         obdo_free(oa);
108         oa = NULL;
109
110         if (rc)
111                 GOTO(out_mdc, rc = -abs(rc));
112
113         file->private_data = fd;
114
115         EXIT;
116
117         return 0;
118 out_mdc:
119         mdc_close(&sbi->ll_mdc_conn, inode->i_ino,
120                   S_IFREG, fd->fd_mdshandle, &req);
121 out_req:
122         ptlrpc_free_req(req);
123 //out_fd:
124         obdo_free(oa);
125         kmem_cache_free(ll_file_data_slab, fd);
126         file->private_data = NULL;
127 out:
128         return rc;
129 }
130
131 int ll_size_lock(struct inode *inode, struct lov_stripe_md *lsm, __u64 start,
132                  int mode, struct lustre_handle **lockhs_p)
133 {
134         struct ll_sb_info *sbi = ll_i2sbi(inode);
135         struct ldlm_extent extent;
136         struct lustre_handle *lockhs = NULL;
137         int rc, flags = 0, stripe_count;
138
139         if (sbi->ll_flags & LL_SBI_NOLCK) {
140                 *lockhs_p = NULL;
141                 RETURN(0);
142         }
143
144         stripe_count = lsm->lsm_stripe_count;
145         if (!stripe_count)
146                 stripe_count = 1;
147
148         OBD_ALLOC(lockhs, stripe_count * sizeof(*lockhs));
149         if (lockhs == NULL)
150                 RETURN(-ENOMEM);
151
152         extent.start = start;
153         extent.end = ~0;
154
155         rc = obd_enqueue(&sbi->ll_osc_conn, lsm, NULL, LDLM_EXTENT, &extent,
156                          sizeof(extent), mode, &flags, ll_lock_callback,
157                          inode, sizeof(*inode), lockhs);
158         if (rc != ELDLM_OK) {
159                 CERROR("lock enqueue: %d\n", rc);
160                 OBD_FREE(lockhs, stripe_count * sizeof(*lockhs));
161         } else
162                 *lockhs_p = lockhs;
163         RETURN(rc);
164 }
165
166 int ll_size_unlock(struct inode *inode, struct lov_stripe_md *lsm, int mode,
167                    struct lustre_handle *lockhs)
168 {
169         struct ll_sb_info *sbi = ll_i2sbi(inode);
170         int rc, stripe_count;
171
172         if (sbi->ll_flags & LL_SBI_NOLCK)
173                 RETURN(0);
174
175         if (lockhs == NULL) {
176                 LBUG();
177                 RETURN(-EINVAL);
178         }
179
180         rc = obd_cancel(&sbi->ll_osc_conn, lsm, mode, lockhs);
181         if (rc != ELDLM_OK) {
182                 CERROR("lock cancel: %d\n", rc);
183                 LBUG();
184         }
185
186         stripe_count = lsm->lsm_stripe_count;
187         if (!stripe_count)
188                 stripe_count = 1;
189
190         OBD_FREE(lockhs, stripe_count * sizeof(*lockhs));
191         RETURN(rc);
192 }
193
194 int ll_file_size(struct inode *inode, struct lov_stripe_md *lsm)
195 {
196         struct ll_sb_info *sbi = ll_i2sbi(inode);
197         struct lustre_handle *lockhs;
198         struct obdo oa;
199         int err, rc;
200
201         rc = ll_size_lock(inode, lsm, 0, LCK_PR, &lockhs);
202         if (rc != ELDLM_OK) {
203                 CERROR("lock enqueue: %d\n", rc);
204                 RETURN(rc);
205         }
206
207         oa.o_id = lsm->lsm_object_id;
208         oa.o_mode = S_IFREG;
209         oa.o_valid = OBD_MD_FLID|OBD_MD_FLSIZE|OBD_MD_FLBLOCKS;
210         rc = obd_getattr(&sbi->ll_osc_conn, &oa, lsm);
211         if (!rc)
212                 obdo_to_inode(inode, &oa, oa.o_valid);
213
214         err = ll_size_unlock(inode, lsm, LCK_PR, lockhs);
215         if (err != ELDLM_OK) {
216                 CERROR("lock cancel: %d\n", err);
217                 LBUG();
218         }
219         RETURN(rc);
220 }
221
222 static int ll_file_release(struct inode *inode, struct file *file)
223 {
224         int rc;
225         struct ptlrpc_request *req = NULL;
226         struct ll_file_data *fd;
227         struct obdo oa;
228         struct ll_sb_info *sbi = ll_i2sbi(inode);
229         struct ll_inode_info *lli = ll_i2info(inode);
230
231         ENTRY;
232
233         fd = (struct ll_file_data *)file->private_data;
234         if (!fd || !fd->fd_mdshandle) {
235                 LBUG();
236                 GOTO(out, rc = -EINVAL);
237         }
238
239         memset(&oa, 0, sizeof(oa));
240         oa.o_id = lli->lli_smd->lsm_object_id;
241         oa.o_mode = S_IFREG;
242         oa.o_valid = (OBD_MD_FLMODE | OBD_MD_FLID);
243         rc = obd_close(ll_i2obdconn(inode), &oa, lli->lli_smd);
244         if (rc)
245                 GOTO(out_fd, abs(rc));
246
247         /* If this fails and we goto out_fd, the file size on the MDS is out of
248          * date.  Is that a big deal? */
249         if (file->f_mode & FMODE_WRITE) {
250                 struct lustre_handle *lockhs;
251
252                 rc = ll_size_lock(inode, lli->lli_smd, 0, LCK_PR, &lockhs);
253                 if (rc)
254                         GOTO(out_fd, abs(rc));
255
256                 oa.o_id = lli->lli_smd->lsm_object_id;
257                 oa.o_mode = S_IFREG;
258                 oa.o_valid = OBD_MD_FLID | OBD_MD_FLMODE | OBD_MD_FLSIZE |
259                         OBD_MD_FLBLOCKS;
260                 rc = obd_getattr(&sbi->ll_osc_conn, &oa, lli->lli_smd);
261                 if (!rc) {
262                         struct iattr attr;
263                         attr.ia_valid = (ATTR_MTIME | ATTR_CTIME | ATTR_ATIME |
264                                          ATTR_SIZE);
265                         attr.ia_mtime = inode->i_mtime;
266                         attr.ia_ctime = inode->i_ctime;
267                         attr.ia_atime = inode->i_atime;
268                         attr.ia_size = oa.o_size;
269
270                         inode->i_blocks = oa.o_blocks;
271
272                         /* XXX: this introduces a small race that we should
273                          * evaluate */
274                         rc = ll_inode_setattr(inode, &attr, 0);
275                         if (rc) {
276                                 CERROR("failed - %d.\n", rc);
277                                 rc = -EIO; /* XXX - GOTO(out)? -phil */
278                         }
279                 }
280                 rc = ll_size_unlock(inode, lli->lli_smd, LCK_PR, lockhs);
281                 if (rc) {
282                         CERROR("lock cancel: %d\n", rc);
283                         LBUG();
284                 }
285         }
286
287         rc = mdc_close(&sbi->ll_mdc_conn, inode->i_ino,
288                        S_IFREG, fd->fd_mdshandle, &req);
289         ptlrpc_req_finished(req);
290         if (rc) {
291                 if (rc > 0)
292                         rc = -rc;
293                 GOTO(out, rc);
294         }
295         ptlrpc_req_finished(fd->fd_req);
296
297         rc = obd_cancel_unused(ll_i2obdconn(inode), lli->lli_smd, 0);
298         if (rc)
299                 CERROR("obd_cancel_unused: %d\n", rc);
300
301         EXIT;
302
303 out_fd:
304         kmem_cache_free(ll_file_data_slab, fd);
305         file->private_data = NULL;
306 out:
307         return rc;
308 }
309
310
311 static inline void ll_remove_suid(struct inode *inode)
312 {
313         unsigned int mode;
314
315         /* set S_IGID if S_IXGRP is set, and always set S_ISUID */
316         mode = (inode->i_mode & S_IXGRP)*(S_ISGID/S_IXGRP) | S_ISUID;
317
318         /* was any of the uid bits set? */
319         mode &= inode->i_mode;
320         if (mode && !capable(CAP_FSETID)) {
321                 inode->i_mode &= ~mode;
322                 // XXX careful here - we cannot change the size
323         }
324 }
325
326 static void ll_update_atime(struct inode *inode)
327 {
328         struct iattr attr;
329
330         attr.ia_atime = CURRENT_TIME;
331         attr.ia_valid = ATTR_ATIME;
332
333         if (inode->i_atime == attr.ia_atime) return;
334         if (IS_RDONLY(inode)) return;
335         if (IS_NOATIME(inode)) return;
336
337         /* ll_inode_setattr() sets inode->i_atime from attr.ia_atime */
338         ll_inode_setattr(inode, &attr, 0);
339 }
340
341 int ll_lock_callback(struct ldlm_lock *lock, struct ldlm_lock_desc *new,
342                      void *data, __u32 data_len, int flag)
343 {
344         struct inode *inode = data;
345         struct lustre_handle lockh;
346         int rc;
347         ENTRY;
348
349         if (data_len != sizeof(struct inode))
350                 LBUG();
351
352         if (inode == NULL)
353                 LBUG();
354
355         switch (flag) {
356         case LDLM_CB_BLOCKING:
357                 ldlm_lock2handle(lock, &lockh);
358                 rc = ldlm_cli_cancel(&lockh);
359                 if (rc != ELDLM_OK)
360                         CERROR("ldlm_cli_cancel failed: %d\n", rc);
361                 break;
362         case LDLM_CB_DYING:
363                 down(&inode->i_sem);
364                 CDEBUG(D_INODE, "invalidating obdo/inode %ld\n", inode->i_ino);
365                 /* FIXME: do something better than throwing away everything */
366                 invalidate_inode_pages(inode);
367                 up(&inode->i_sem);
368                 break;
369         default:
370                 LBUG();
371         }
372
373         RETURN(0);
374 }
375
376 static ssize_t ll_file_read(struct file *filp, char *buf, size_t count,
377                             loff_t *ppos)
378 {
379         struct ll_file_data *fd = (struct ll_file_data *)filp->private_data;
380         struct inode *inode = filp->f_dentry->d_inode;
381         struct ll_sb_info *sbi = ll_i2sbi(inode);
382         struct ldlm_extent extent;
383         struct lustre_handle *lockhs = NULL;
384         struct lov_stripe_md *lsm = ll_i2info(inode)->lli_smd;
385         int flags = 0;
386         ldlm_error_t err;
387         ssize_t retval;
388         ENTRY;
389
390         if (!(fd->fd_flags & LL_FILE_IGNORE_LOCK) ||
391             sbi->ll_flags & LL_SBI_NOLCK) {
392                 OBD_ALLOC(lockhs, lsm->lsm_stripe_count * sizeof(*lockhs));
393                 if (!lockhs)
394                         RETURN(-ENOMEM);
395
396                 extent.start = *ppos;
397                 extent.end = *ppos + count;
398                 CDEBUG(D_INFO, "Locking inode %ld, start "LPU64" end "LPU64"\n",
399                        inode->i_ino, extent.start, extent.end);
400
401                 err = obd_enqueue(&sbi->ll_osc_conn, lsm, NULL, LDLM_EXTENT,
402                                   &extent, sizeof(extent), LCK_PR, &flags,
403                                   ll_lock_callback, inode, sizeof(*inode),
404                                   lockhs);
405                 if (err != ELDLM_OK) {
406                         OBD_FREE(lockhs, lsm->lsm_stripe_count*sizeof(*lockhs));
407                         CERROR("lock enqueue: err: %d\n", err);
408                         RETURN(err);
409                 }
410         }
411
412         CDEBUG(D_INFO, "Reading inode %ld, %d bytes, offset %Ld\n",
413                inode->i_ino, count, *ppos);
414         retval = generic_file_read(filp, buf, count, ppos);
415
416         if (retval > 0)
417                 ll_update_atime(inode);
418
419         if (!(fd->fd_flags & LL_FILE_IGNORE_LOCK) ||
420             sbi->ll_flags & LL_SBI_NOLCK) {
421                 err = obd_cancel(&sbi->ll_osc_conn, lsm, LCK_PR, lockhs);
422                 if (err != ELDLM_OK) {
423                         CERROR("lock cancel: err: %d\n", err);
424                         retval = err;
425                 }
426         }
427
428         if (lockhs)
429                 OBD_FREE(lockhs, lsm->lsm_stripe_count * sizeof(*lockhs));
430         RETURN(retval);
431 }
432
433 /*
434  * Write to a file (through the page cache).
435  */
436 static ssize_t
437 ll_file_write(struct file *file, const char *buf, size_t count, loff_t *ppos)
438 {
439         struct ll_file_data *fd = (struct ll_file_data *)file->private_data;
440         struct inode *inode = file->f_dentry->d_inode;
441         struct ll_sb_info *sbi = ll_i2sbi(inode);
442         struct ldlm_extent extent;
443         struct lustre_handle *lockhs = NULL, *eof_lockhs = NULL;
444         struct lov_stripe_md *lsm = ll_i2info(inode)->lli_smd;
445         int flags = 0;
446         ldlm_error_t err;
447         ssize_t retval;
448         ENTRY;
449
450         if (!S_ISBLK(inode->i_mode) && file->f_flags & O_APPEND) {
451                 struct obdo oa;
452                 err = ll_size_lock(inode, lsm, 0, LCK_PW, &eof_lockhs);
453                 if (err)
454                         RETURN(err);
455
456                 oa.o_id = lsm->lsm_object_id;
457                 oa.o_mode = inode->i_mode;
458                 oa.o_valid = OBD_MD_FLID | OBD_MD_FLMODE | OBD_MD_FLSIZE |
459                         OBD_MD_FLBLOCKS;
460                 retval = obd_getattr(&sbi->ll_osc_conn, &oa, lsm);
461                 if (retval)
462                         GOTO(out_eof, retval);
463
464                 *ppos = oa.o_size;
465                 obdo_to_inode(inode, &oa, oa.o_valid);
466         }
467
468         if (!(fd->fd_flags & LL_FILE_IGNORE_LOCK) ||
469             sbi->ll_flags & LL_SBI_NOLCK) {
470                 OBD_ALLOC(lockhs, lsm->lsm_stripe_count * sizeof(*lockhs));
471                 if (!lockhs)
472                         GOTO(out_eof, retval = -ENOMEM);
473                 extent.start = *ppos;
474                 extent.end = *ppos + count;
475                 CDEBUG(D_INFO, "Locking inode %ld, start "LPU64" end "LPU64"\n",
476                        inode->i_ino, extent.start, extent.end);
477
478                 err = obd_enqueue(&sbi->ll_osc_conn, lsm, NULL, LDLM_EXTENT,
479                                   &extent, sizeof(extent), LCK_PW, &flags,
480                                   ll_lock_callback, inode, sizeof(*inode),
481                                   lockhs);
482                 if (err != ELDLM_OK) {
483                         CERROR("lock enqueue: err: %d\n", err);
484                         GOTO(out_free, retval = err);
485                 }
486         }
487
488         CDEBUG(D_INFO, "Writing inode %ld, %ld bytes, offset "LPD64"\n",
489                inode->i_ino, (long)count, *ppos);
490
491         retval = generic_file_write(file, buf, count, ppos);
492
493         if (!(fd->fd_flags & LL_FILE_IGNORE_LOCK) ||
494             sbi->ll_flags & LL_SBI_NOLCK) {
495                 err = obd_cancel(&sbi->ll_osc_conn, lsm, LCK_PW, lockhs);
496                 if (err != ELDLM_OK) {
497                         CERROR("lock cancel: err: %d\n", err);
498                         GOTO(out_free, retval = err);
499                 }
500         }
501
502         EXIT;
503  out_free:
504         if (lockhs)
505                 OBD_FREE(lockhs, lsm->lsm_stripe_count * sizeof(*lockhs));
506
507  out_eof:
508         if (!S_ISBLK(inode->i_mode) && file->f_flags & O_APPEND) {
509                 err = ll_size_unlock(inode, lsm, LCK_PW, eof_lockhs);
510                 if (err && !retval)
511                         retval = err;
512         }
513
514         return retval;
515 }
516
517 int ll_file_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
518                   unsigned long arg)
519 {
520         struct ll_file_data *fd = (struct ll_file_data *)file->private_data;
521         int flags;
522
523         switch(cmd) {
524         case LL_IOC_GETFLAGS:
525                 /* Get the current value of the file flags */
526                 return put_user(fd->fd_flags, (int *)arg);
527         case LL_IOC_SETFLAGS:
528         case LL_IOC_CLRFLAGS:
529                 /* Set or clear specific file flags */
530                 /* XXX This probably needs checks to ensure the flags are
531                  *     not abused, and to handle any flag side effects.
532                  */
533                 if (get_user(flags, (int *) arg))
534                         return -EFAULT;
535
536                 if (cmd == LL_IOC_SETFLAGS)
537                         fd->fd_flags |= flags;
538                 else
539                         fd->fd_flags &= ~flags;
540                 return 0;
541
542         /* We need to special case any other ioctls we want to handle,
543          * to send them to the MDS/OST as appropriate and to properly
544          * network encode the arg field.
545         case EXT2_IOC_GETFLAGS:
546         case EXT2_IOC_SETFLAGS:
547         case EXT2_IOC_GETVERSION_OLD:
548         case EXT2_IOC_GETVERSION_NEW:
549         case EXT2_IOC_SETVERSION_OLD:
550         case EXT2_IOC_SETVERSION_NEW:
551         */
552         default:
553                 return -ENOTTY;
554         }
555 }
556
557 loff_t ll_file_seek(struct file *file, loff_t offset, int origin)
558 {
559         struct inode *inode = file->f_dentry->d_inode;
560         long long retval;
561         ENTRY;
562
563         switch (origin) {
564         case 2: {
565                 struct ll_inode_info *lli = ll_i2info(inode);
566
567                 retval = ll_file_size(inode, lli->lli_smd);
568                 if (retval)
569                         RETURN(retval);
570
571                 offset += inode->i_size;
572                 break;
573         }
574         case 1:
575                 offset += file->f_pos;
576         }
577         retval = -EINVAL;
578         if (offset >= 0 && offset <= inode->i_sb->s_maxbytes) {
579                 if (offset != file->f_pos) {
580                         file->f_pos = offset;
581                         file->f_reada = 0;
582                         file->f_version = ++event;
583                 }
584                 retval = offset;
585         }
586         RETURN(retval);
587 }
588
589 /* XXX this does not need to do anything for data, it _does_ need to
590    call setattr */
591 int ll_fsync(struct file *file, struct dentry *dentry, int data)
592 {
593         return 0;
594 }
595
596 static int ll_inode_revalidate(struct dentry *dentry)
597 {
598         struct inode *inode = dentry->d_inode;
599         ENTRY;
600
601         if (!inode)
602                 RETURN(0);
603
604         RETURN(ll_file_size(inode, ll_i2info(inode)->lli_smd));
605 }
606
607 struct file_operations ll_file_operations = {
608         read:           ll_file_read,
609         write:          ll_file_write,
610         ioctl:          ll_file_ioctl,
611         open:           ll_file_open,
612         release:        ll_file_release,
613         mmap:           generic_file_mmap,
614         llseek:         ll_file_seek,
615         fsync:          NULL
616 };
617
618 struct inode_operations ll_file_inode_operations = {
619         truncate:   ll_truncate,
620         setattr:    ll_setattr,
621         revalidate: ll_inode_revalidate
622 };