Whamcloud - gitweb
Back out the piece of the locking fix that caused the problem, until I can
[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)
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         down(&inode->i_sem);
356         CDEBUG(D_INODE, "invalidating obdo/inode %ld\n", inode->i_ino);
357         /* FIXME: do something better than throwing away everything */
358         invalidate_inode_pages(inode);
359         up(&inode->i_sem);
360
361         ldlm_lock2handle(lock, &lockh);
362         rc = ldlm_cli_cancel(&lockh);
363         if (rc != ELDLM_OK)
364                 CERROR("ldlm_cli_cancel failed: %d\n", rc);
365         RETURN(0);
366 }
367
368 static ssize_t ll_file_read(struct file *filp, char *buf, size_t count,
369                             loff_t *ppos)
370 {
371         struct ll_file_data *fd = (struct ll_file_data *)filp->private_data;
372         struct inode *inode = filp->f_dentry->d_inode;
373         struct ll_sb_info *sbi = ll_i2sbi(inode);
374         struct ldlm_extent extent;
375         struct lustre_handle *lockhs = NULL;
376         struct lov_stripe_md *lsm = ll_i2info(inode)->lli_smd;
377         int flags = 0;
378         ldlm_error_t err;
379         ssize_t retval;
380         ENTRY;
381
382         if (!(fd->fd_flags & LL_FILE_IGNORE_LOCK) ||
383             sbi->ll_flags & LL_SBI_NOLCK) {
384                 OBD_ALLOC(lockhs, lsm->lsm_stripe_count * sizeof(*lockhs));
385                 if (!lockhs)
386                         RETURN(-ENOMEM);
387
388                 extent.start = *ppos;
389                 extent.end = *ppos + count;
390                 CDEBUG(D_INFO, "Locking inode %ld, start "LPU64" end "LPU64"\n",
391                        inode->i_ino, extent.start, extent.end);
392
393                 err = obd_enqueue(&sbi->ll_osc_conn, lsm, NULL, LDLM_EXTENT,
394                                   &extent, sizeof(extent), LCK_PR, &flags,
395                                   ll_lock_callback, inode, sizeof(*inode),
396                                   lockhs);
397                 if (err != ELDLM_OK) {
398                         OBD_FREE(lockhs, lsm->lsm_stripe_count*sizeof(*lockhs));
399                         CERROR("lock enqueue: err: %d\n", err);
400                         RETURN(err);
401                 }
402         }
403
404         CDEBUG(D_INFO, "Reading inode %ld, %d bytes, offset %Ld\n",
405                inode->i_ino, count, *ppos);
406         retval = generic_file_read(filp, buf, count, ppos);
407
408         if (retval > 0)
409                 ll_update_atime(inode);
410
411         if (!(fd->fd_flags & LL_FILE_IGNORE_LOCK) ||
412             sbi->ll_flags & LL_SBI_NOLCK) {
413                 err = obd_cancel(&sbi->ll_osc_conn, lsm, LCK_PR, lockhs);
414                 if (err != ELDLM_OK) {
415                         CERROR("lock cancel: err: %d\n", err);
416                         retval = err;
417                 }
418         }
419
420         if (lockhs)
421                 OBD_FREE(lockhs, lsm->lsm_stripe_count * sizeof(*lockhs));
422         RETURN(retval);
423 }
424
425 /*
426  * Write to a file (through the page cache).
427  */
428 static ssize_t
429 ll_file_write(struct file *file, const char *buf, size_t count, loff_t *ppos)
430 {
431         struct ll_file_data *fd = (struct ll_file_data *)file->private_data;
432         struct inode *inode = file->f_dentry->d_inode;
433         struct ll_sb_info *sbi = ll_i2sbi(inode);
434         struct ldlm_extent extent;
435         struct lustre_handle *lockhs = NULL, *eof_lockhs = NULL;
436         struct lov_stripe_md *lsm = ll_i2info(inode)->lli_smd;
437         int flags = 0;
438         ldlm_error_t err;
439         ssize_t retval;
440         ENTRY;
441
442         if (!S_ISBLK(inode->i_mode) && file->f_flags & O_APPEND) {
443                 struct obdo oa;
444                 err = ll_size_lock(inode, lsm, 0, LCK_PW, &eof_lockhs);
445                 if (err)
446                         RETURN(err);
447
448                 oa.o_id = lsm->lsm_object_id;
449                 oa.o_mode = inode->i_mode;
450                 oa.o_valid = OBD_MD_FLID | OBD_MD_FLMODE | OBD_MD_FLSIZE |
451                         OBD_MD_FLBLOCKS;
452                 retval = obd_getattr(&sbi->ll_osc_conn, &oa, lsm);
453                 if (retval)
454                         GOTO(out_eof, retval);
455
456                 *ppos = oa.o_size;
457                 obdo_to_inode(inode, &oa, oa.o_valid);
458         }
459
460         if (!(fd->fd_flags & LL_FILE_IGNORE_LOCK) ||
461             sbi->ll_flags & LL_SBI_NOLCK) {
462                 OBD_ALLOC(lockhs, lsm->lsm_stripe_count * sizeof(*lockhs));
463                 if (!lockhs)
464                         GOTO(out_eof, retval = -ENOMEM);
465                 extent.start = *ppos;
466                 extent.end = *ppos + count;
467                 CDEBUG(D_INFO, "Locking inode %ld, start "LPU64" end "LPU64"\n",
468                        inode->i_ino, extent.start, extent.end);
469
470                 err = obd_enqueue(&sbi->ll_osc_conn, lsm, NULL, LDLM_EXTENT,
471                                   &extent, sizeof(extent), LCK_PW, &flags,
472                                   ll_lock_callback, inode, sizeof(*inode),
473                                   lockhs);
474                 if (err != ELDLM_OK) {
475                         CERROR("lock enqueue: err: %d\n", err);
476                         GOTO(out_free, retval = err);
477                 }
478         }
479
480         CDEBUG(D_INFO, "Writing inode %ld, %ld bytes, offset "LPD64"\n",
481                inode->i_ino, (long)count, *ppos);
482
483         retval = generic_file_write(file, buf, count, ppos);
484
485         if (!(fd->fd_flags & LL_FILE_IGNORE_LOCK) ||
486             sbi->ll_flags & LL_SBI_NOLCK) {
487                 err = obd_cancel(&sbi->ll_osc_conn, lsm, LCK_PW, lockhs);
488                 if (err != ELDLM_OK) {
489                         CERROR("lock cancel: err: %d\n", err);
490                         GOTO(out_free, retval = err);
491                 }
492         }
493
494         EXIT;
495  out_free:
496         if (lockhs)
497                 OBD_FREE(lockhs, lsm->lsm_stripe_count * sizeof(*lockhs));
498
499  out_eof:
500         if (!S_ISBLK(inode->i_mode) && file->f_flags & O_APPEND) {
501                 err = ll_size_unlock(inode, lsm, LCK_PW, eof_lockhs);
502                 if (err && !retval)
503                         retval = err;
504         }
505
506         return retval;
507 }
508
509 int ll_file_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
510                   unsigned long arg)
511 {
512         struct ll_file_data *fd = (struct ll_file_data *)file->private_data;
513         int flags;
514
515         switch(cmd) {
516         case LL_IOC_GETFLAGS:
517                 /* Get the current value of the file flags */
518                 return put_user(fd->fd_flags, (int *)arg);
519         case LL_IOC_SETFLAGS:
520         case LL_IOC_CLRFLAGS:
521                 /* Set or clear specific file flags */
522                 /* XXX This probably needs checks to ensure the flags are
523                  *     not abused, and to handle any flag side effects.
524                  */
525                 if (get_user(flags, (int *) arg))
526                         return -EFAULT;
527
528                 if (cmd == LL_IOC_SETFLAGS)
529                         fd->fd_flags |= flags;
530                 else
531                         fd->fd_flags &= ~flags;
532                 return 0;
533
534         /* We need to special case any other ioctls we want to handle,
535          * to send them to the MDS/OST as appropriate and to properly
536          * network encode the arg field.
537         case EXT2_IOC_GETFLAGS:
538         case EXT2_IOC_SETFLAGS:
539         case EXT2_IOC_GETVERSION_OLD:
540         case EXT2_IOC_GETVERSION_NEW:
541         case EXT2_IOC_SETVERSION_OLD:
542         case EXT2_IOC_SETVERSION_NEW:
543         */
544         default:
545                 return -ENOTTY;
546         }
547 }
548
549 loff_t ll_file_seek(struct file *file, loff_t offset, int origin)
550 {
551         struct inode *inode = file->f_dentry->d_inode;
552         long long retval;
553         ENTRY;
554
555         switch (origin) {
556         case 2: {
557                 struct ll_inode_info *lli = ll_i2info(inode);
558
559                 retval = ll_file_size(inode, lli->lli_smd);
560                 if (retval)
561                         RETURN(retval);
562
563                 offset += inode->i_size;
564                 break;
565         }
566         case 1:
567                 offset += file->f_pos;
568         }
569         retval = -EINVAL;
570         if (offset >= 0 && offset <= inode->i_sb->s_maxbytes) {
571                 if (offset != file->f_pos) {
572                         file->f_pos = offset;
573                         file->f_reada = 0;
574                         file->f_version = ++event;
575                 }
576                 retval = offset;
577         }
578         RETURN(retval);
579 }
580
581 /* XXX this does not need to do anything for data, it _does_ need to
582    call setattr */
583 int ll_fsync(struct file *file, struct dentry *dentry, int data)
584 {
585         return 0;
586 }
587
588 static int ll_inode_revalidate(struct dentry *dentry)
589 {
590         struct inode *inode = dentry->d_inode;
591         ENTRY;
592
593         if (!inode)
594                 RETURN(0);
595
596         RETURN(ll_file_size(inode, ll_i2info(inode)->lli_smd));
597 }
598
599 struct file_operations ll_file_operations = {
600         read:           ll_file_read,
601         write:          ll_file_write,
602         ioctl:          ll_file_ioctl,
603         open:           ll_file_open,
604         release:        ll_file_release,
605         mmap:           generic_file_mmap,
606         llseek:         ll_file_seek,
607         fsync:          NULL
608 };
609
610 struct inode_operations ll_file_inode_operations = {
611         truncate:   ll_truncate,
612         setattr:    ll_setattr,
613         revalidate: ll_inode_revalidate
614 };