Whamcloud - gitweb
Land b_smallfix onto HEAD (20040330_2312)
[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  *  Copyright (c) 2002, 2003 Cluster File Systems, Inc.
5  *   Author: Peter Braam <braam@clusterfs.com>
6  *   Author: Phil Schwan <phil@clusterfs.com>
7  *   Author: Andreas Dilger <adilger@clusterfs.com>
8  *
9  *   This file is part of Lustre, http://www.lustre.org.
10  *
11  *   Lustre is free software; you can redistribute it and/or
12  *   modify it under the terms of version 2 of the GNU General Public
13  *   License as published by the Free Software Foundation.
14  *
15  *   Lustre is distributed in the hope that it will be useful,
16  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
17  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  *   GNU General Public License for more details.
19  *
20  *   You should have received a copy of the GNU General Public License
21  *   along with Lustre; if not, write to the Free Software
22  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23  */
24
25 #define DEBUG_SUBSYSTEM S_LLITE
26 #include <linux/lustre_dlm.h>
27 #include <linux/lustre_lite.h>
28 #include <linux/pagemap.h>
29 #include <linux/file.h>
30 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
31 #include <linux/lustre_compat25.h>
32 #endif
33 #include "llite_internal.h"
34
35 int ll_mdc_close(struct obd_export *mdc_exp, struct inode *inode,
36                         struct file *file)
37 {
38         struct ll_file_data *fd = file->private_data;
39         struct ptlrpc_request *req = NULL;
40         struct obd_client_handle *och = &fd->fd_mds_och;
41         struct obdo obdo;
42         int rc, valid;
43         ENTRY;
44
45         /* clear group lock, if present */
46         if (fd->fd_flags & LL_FILE_GROUP_LOCKED) {
47                 struct lov_stripe_md *lsm = ll_i2info(inode)->lli_smd;
48                 fd->fd_flags &= ~(LL_FILE_GROUP_LOCKED|LL_FILE_IGNORE_LOCK);
49                 rc = ll_extent_unlock(fd, inode, lsm, LCK_GROUP,
50                                       &fd->fd_cwlockh);
51         }
52
53         valid = OBD_MD_FLID;
54
55         memset(&obdo, 0, sizeof(obdo));
56         obdo.o_id = inode->i_ino;
57         obdo.o_mode = inode->i_mode;
58         obdo.o_size = inode->i_size;
59         obdo.o_blocks = inode->i_blocks;
60         if (0 /* ll_is_inode_dirty(inode) */) {
61                 obdo.o_flags = MDS_BFLAG_UNCOMMITTED_WRITES;
62                 valid |= OBD_MD_FLFLAGS;
63         }
64         obdo.o_valid = valid;
65         rc = mdc_close(mdc_exp, &obdo, och, &req);
66         if (rc == EAGAIN) {
67                 /* We are the last writer, so the MDS has instructed us to get
68                  * the file size and any write cookies, then close again. */
69                 //ll_queue_done_writing(inode);
70                 rc = 0;
71         } else if (rc) {
72                 CERROR("inode %lu mdc close failed: rc = %d\n",
73                        inode->i_ino, rc);
74         }
75         if (rc == 0) {
76                 rc = ll_objects_destroy(req, file->f_dentry->d_inode);
77                 if (rc)
78                         CERROR("inode %lu ll_objects destroy: rc = %d\n",
79                                inode->i_ino, rc);
80         }
81
82         mdc_clear_open_replay_data(och);
83         ptlrpc_req_finished(req);
84         och->och_fh.cookie = DEAD_HANDLE_MAGIC;
85         file->private_data = NULL;
86         OBD_SLAB_FREE(fd, ll_file_data_slab, sizeof *fd);
87
88         RETURN(rc);
89 }
90
91 /* While this returns an error code, fput() the caller does not, so we need
92  * to make every effort to clean up all of our state here.  Also, applications
93  * rarely check close errors and even if an error is returned they will not
94  * re-try the close call.
95  */
96 int ll_file_release(struct inode *inode, struct file *file)
97 {
98         struct ll_file_data *fd;
99         struct ll_sb_info *sbi = ll_i2sbi(inode);
100         int rc;
101
102         ENTRY;
103         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p)\n", inode->i_ino,
104                inode->i_generation, inode);
105
106         /* don't do anything for / */
107         if (inode->i_sb->s_root == file->f_dentry)
108                 RETURN(0);
109
110         lprocfs_counter_incr(sbi->ll_stats, LPROC_LL_RELEASE);
111         fd = (struct ll_file_data *)file->private_data;
112         LASSERT(fd != NULL);
113
114         rc = ll_mdc_close(sbi->ll_mdc_exp, inode, file);
115         RETURN(rc);
116 }
117
118 static int ll_intent_file_open(struct file *file, void *lmm,
119                                int lmmsize, struct lookup_intent *itp)
120 {
121         struct ll_sb_info *sbi = ll_i2sbi(file->f_dentry->d_inode);
122         struct lustre_handle lockh;
123         struct mdc_op_data data;
124         struct dentry *parent = file->f_dentry->d_parent;
125         const char *name = file->f_dentry->d_name.name;
126         const int len = file->f_dentry->d_name.len;
127         int rc;
128
129         if (!parent)
130                 RETURN(-ENOENT);
131
132         ll_prepare_mdc_op_data(&data, parent->d_inode, NULL, name, len, O_RDWR);
133
134         rc = mdc_enqueue(sbi->ll_mdc_exp, LDLM_PLAIN, itp, LCK_PR, &data,
135                          &lockh, lmm, lmmsize, ldlm_completion_ast,
136                          ll_mdc_blocking_ast, parent->d_inode);
137         if (rc < 0)
138                 CERROR("lock enqueue: err: %d\n", rc);
139         RETURN(rc);
140 }
141
142 int ll_local_open(struct file *file, struct lookup_intent *it)
143 {
144         struct ptlrpc_request *req = it->d.lustre.it_data;
145         struct ll_inode_info *lli = ll_i2info(file->f_dentry->d_inode);
146         struct ll_file_data *fd;
147         struct mds_body *body;
148         ENTRY;
149
150         body = lustre_msg_buf (req->rq_repmsg, 1, sizeof (*body));
151         LASSERT (body != NULL);                 /* reply already checked out */
152         LASSERT_REPSWABBED (req, 1);            /* and swabbed down */
153
154         LASSERT(!file->private_data);
155
156         OBD_SLAB_ALLOC(fd, ll_file_data_slab, SLAB_KERNEL, sizeof *fd);
157         /* We can't handle this well without reorganizing ll_file_open and
158          * ll_mdc_close, so don't even try right now. */
159         LASSERT(fd != NULL);
160
161         memcpy(&fd->fd_mds_och.och_fh, &body->handle, sizeof(body->handle));
162         fd->fd_mds_och.och_magic = OBD_CLIENT_HANDLE_MAGIC;
163         file->private_data = fd;
164         ll_readahead_init(file->f_dentry->d_inode, &fd->fd_ras);
165
166         lli->lli_io_epoch = body->io_epoch;
167
168         mdc_set_open_replay_data(&fd->fd_mds_och, it->d.lustre.it_data);
169
170         RETURN(0);
171 }
172
173 /* Open a file, and (for the very first open) create objects on the OSTs at
174  * this time.  If opened with O_LOV_DELAY_CREATE, then we don't do the object
175  * creation or open until ll_lov_setstripe() ioctl is called.  We grab
176  * lli_open_sem to ensure no other process will create objects, send the
177  * stripe MD to the MDS, or try to destroy the objects if that fails.
178  *
179  * If we already have the stripe MD locally then we don't request it in
180  * mdc_open(), by passing a lmm_size = 0.
181  *
182  * It is up to the application to ensure no other processes open this file
183  * in the O_LOV_DELAY_CREATE case, or the default striping pattern will be
184  * used.  We might be able to avoid races of that sort by getting lli_open_sem
185  * before returning in the O_LOV_DELAY_CREATE case and dropping it here
186  * or in ll_file_release(), but I'm not sure that is desirable/necessary.
187  */
188 int ll_file_open(struct inode *inode, struct file *file)
189 {
190         struct ll_inode_info *lli = ll_i2info(inode);
191         struct lookup_intent *it;
192         struct lov_stripe_md *lsm;
193         struct ptlrpc_request *req;
194         int rc = 0;
195         ENTRY;
196
197         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p)\n", inode->i_ino,
198                inode->i_generation, inode);
199
200         /* don't do anything for / */
201         if (inode->i_sb->s_root == file->f_dentry)
202                 RETURN(0);
203
204         it = file->f_it;
205
206         if (!it->d.lustre.it_disposition) {
207                 struct lookup_intent oit = { .it_op = IT_OPEN,
208                                              .it_flags = file->f_flags };
209                 it = &oit;
210                 rc = ll_intent_file_open(file, NULL, 0, it);
211                 if (rc)
212                         GOTO(out, rc);
213         }
214
215         lprocfs_counter_incr(ll_i2sbi(inode)->ll_stats, LPROC_LL_OPEN);
216         rc = it_open_error(DISP_OPEN_OPEN, it);
217         if (rc)
218                 GOTO(out, rc);
219
220         rc = ll_local_open(file, it);
221         if (rc)
222                 LBUG();
223
224         if (!S_ISREG(inode->i_mode))
225                 GOTO(out, rc);
226
227         lsm = lli->lli_smd;
228         if (lsm == NULL) {
229                 if (file->f_flags & O_LOV_DELAY_CREATE ||
230                     !(file->f_mode & FMODE_WRITE)) {
231                         CDEBUG(D_INODE, "object creation was delayed\n");
232                         GOTO(out, rc);
233                 }
234         }
235         file->f_flags &= ~O_LOV_DELAY_CREATE;
236         GOTO(out, rc);
237  out:
238         req = it->d.lustre.it_data;
239         ptlrpc_req_finished(req);
240         if (rc == 0)
241                 ll_open_complete(inode);
242         return rc;
243 }
244
245 /* Fills the obdo with the attributes for the inode defined by lsm */
246 int ll_lsm_getattr(struct obd_export *exp, struct lov_stripe_md *lsm,
247                    struct obdo *oa)
248 {
249         struct ptlrpc_request_set *set;
250         int rc;
251         ENTRY;
252
253         LASSERT(lsm != NULL);
254
255         memset(oa, 0, sizeof *oa);
256         oa->o_id = lsm->lsm_object_id;
257         oa->o_mode = S_IFREG;
258         oa->o_valid = OBD_MD_FLID | OBD_MD_FLTYPE | OBD_MD_FLSIZE |
259                 OBD_MD_FLBLOCKS | OBD_MD_FLBLKSZ | OBD_MD_FLMTIME |
260                 OBD_MD_FLCTIME;
261
262         set = ptlrpc_prep_set();
263         if (set == NULL) {
264                 CERROR ("ENOMEM allocing request set\n");
265                 rc = -ENOMEM;
266         } else {
267                 rc = obd_getattr_async(exp, oa, lsm, set);
268                 if (rc == 0)
269                         rc = ptlrpc_set_wait(set);
270                 ptlrpc_set_destroy(set);
271         }
272         if (rc)
273                 RETURN(rc);
274
275         oa->o_valid &= (OBD_MD_FLBLOCKS | OBD_MD_FLBLKSZ | OBD_MD_FLMTIME | 
276                         OBD_MD_FLCTIME | OBD_MD_FLSIZE);
277         RETURN(0);
278 }
279
280 static inline void ll_remove_suid(struct inode *inode)
281 {
282         unsigned int mode;
283
284         /* set S_IGID if S_IXGRP is set, and always set S_ISUID */
285         mode = (inode->i_mode & S_IXGRP)*(S_ISGID/S_IXGRP) | S_ISUID;
286
287         /* was any of the uid bits set? */
288         mode &= inode->i_mode;
289         if (mode && !capable(CAP_FSETID)) {
290                 inode->i_mode &= ~mode;
291                 // XXX careful here - we cannot change the size
292         }
293 }
294
295 static int ll_lock_to_stripe_offset(struct inode *inode, struct ldlm_lock *lock)
296 {
297         struct ll_inode_info *lli = ll_i2info(inode);
298         struct lov_stripe_md *lsm = lli->lli_smd;
299         struct obd_export *exp = ll_i2obdexp(inode);
300         struct {
301                 char name[16];
302                 struct ldlm_lock *lock;
303                 struct lov_stripe_md *lsm;
304         } key = { .name = "lock_to_stripe", .lock = lock, .lsm = lsm };
305         __u32 stripe, vallen = sizeof(stripe);
306         int rc;
307         ENTRY;
308
309         if (lsm->lsm_stripe_count == 1)
310                 RETURN(0);
311
312         /* get our offset in the lov */
313         rc = obd_get_info(exp, sizeof(key), &key, &vallen, &stripe);
314         if (rc != 0) {
315                 CERROR("obd_get_info: rc = %d\n", rc);
316                 LBUG();
317         }
318         LASSERT(stripe < lsm->lsm_stripe_count);
319         RETURN(stripe);
320 }
321
322 /* Flush the page cache for an extent as its canceled.  When we're on an LOV,
323  * we get a lock cancellation for each stripe, so we have to map the obd's
324  * region back onto the stripes in the file that it held.
325  *
326  * No one can dirty the extent until we've finished our work and they can
327  * enqueue another lock.  The DLM protects us from ll_file_read/write here,
328  * but other kernel actors could have pages locked.
329  *
330  * Called with the DLM lock held. */
331 void ll_pgcache_remove_extent(struct inode *inode, struct lov_stripe_md *lsm,
332                               struct ldlm_lock *lock, __u32 stripe)
333 {
334         ldlm_policy_data_t tmpex;
335         unsigned long start, end, count, skip, i, j;
336         struct page *page;
337         int rc, rc2, discard = lock->l_flags & LDLM_FL_DISCARD_DATA;
338         struct lustre_handle lockh;
339         ENTRY;
340
341         memcpy(&tmpex, &lock->l_policy_data, sizeof(tmpex));
342         CDEBUG(D_INODE|D_PAGE, "inode %lu(%p) ["LPU64"->"LPU64"] size: %llu\n",
343                inode->i_ino, inode, tmpex.l_extent.start, tmpex.l_extent.end,
344                inode->i_size);
345
346         /* our locks are page granular thanks to osc_enqueue, we invalidate the
347          * whole page. */
348         LASSERT((tmpex.l_extent.start & ~PAGE_CACHE_MASK) == 0);
349         LASSERT(((tmpex.l_extent.end + 1) & ~PAGE_CACHE_MASK) == 0);
350
351         count = ~0;
352         skip = 0;
353         start = tmpex.l_extent.start >> PAGE_CACHE_SHIFT;
354         end = tmpex.l_extent.end >> PAGE_CACHE_SHIFT;
355         if (lsm->lsm_stripe_count > 1) {
356                 count = lsm->lsm_stripe_size >> PAGE_CACHE_SHIFT;
357                 skip = (lsm->lsm_stripe_count - 1) * count;
358                 start += start/count * skip + stripe * count;
359                 if (end != ~0)
360                         end += end/count * skip + stripe * count;
361         }
362         if (end < tmpex.l_extent.end >> PAGE_CACHE_SHIFT)
363                 end = ~0;
364
365         i = (inode->i_size + PAGE_CACHE_SIZE-1) >> PAGE_CACHE_SHIFT;
366         if (i < end)
367                 end = i;
368
369         CDEBUG(D_INODE|D_PAGE, "walking page indices start: %lu j: %lu "
370                "count: %lu skip: %lu end: %lu%s\n", start, start % count,
371                count, skip, end, discard ? " (DISCARDING)" : "");
372
373         /* this is the simplistic implementation of page eviction at
374          * cancelation.  It is careful to get races with other page
375          * lockers handled correctly.  fixes from bug 20 will make it
376          * more efficient by associating locks with pages and with
377          * batching writeback under the lock explicitly. */
378         for (i = start, j = start % count; i <= end;
379              j++, i++, tmpex.l_extent.start += PAGE_CACHE_SIZE) {
380                 if (j == count) {
381                         CDEBUG(D_PAGE, "skip index %lu to %lu\n", i, i + skip);
382                         i += skip;
383                         j = 0;
384                         if (i > end)
385                                 break;
386                 }
387                 LASSERTF(tmpex.l_extent.start< lock->l_policy_data.l_extent.end,
388                          LPU64" >= "LPU64" start %lu i %lu end %lu\n",
389                          tmpex.l_extent.start, lock->l_policy_data.l_extent.end,
390                          start, i, end);
391
392                 ll_pgcache_lock(inode->i_mapping);
393                 if (list_empty(&inode->i_mapping->dirty_pages) &&
394                     list_empty(&inode->i_mapping->clean_pages) &&
395                     list_empty(&inode->i_mapping->locked_pages)) {
396                         CDEBUG(D_INODE|D_PAGE, "nothing left\n");
397                         ll_pgcache_unlock(inode->i_mapping);
398                         break;
399                 }
400                 ll_pgcache_unlock(inode->i_mapping);
401
402                 conditional_schedule();
403
404                 page = find_get_page(inode->i_mapping, i);
405                 if (page == NULL)
406                         continue;
407                 LL_CDEBUG_PAGE(D_PAGE, page, "lock page idx %lu ext "LPU64"\n",
408                                i, tmpex.l_extent.start);
409                 lock_page(page);
410
411                 /* page->mapping to check with racing against teardown */
412                 if (page->mapping && PageDirty(page) && !discard) {
413                         ClearPageDirty(page);
414                         LL_CDEBUG_PAGE(D_PAGE, page, "found dirty\n");
415                         ll_pgcache_lock(inode->i_mapping);
416                         list_del(&page->list);
417                         list_add(&page->list, &inode->i_mapping->locked_pages);
418                         ll_pgcache_unlock(inode->i_mapping);
419
420                         rc = ll_call_writepage(inode, page);
421                         if (rc != 0)
422                                 CERROR("writepage of page %p failed: %d\n",
423                                        page, rc);
424                         /* either waiting for io to complete or reacquiring
425                          * the lock that the failed writepage released */
426                         lock_page(page);
427                 }
428
429                 tmpex.l_extent.end = tmpex.l_extent.start + PAGE_CACHE_SIZE - 1;
430                 /* check to see if another DLM lock covers this page */
431                 ldlm_lock2handle(lock, &lockh);
432                 rc2 = ldlm_lock_match(NULL, 
433                                       LDLM_FL_BLOCK_GRANTED|LDLM_FL_CBPENDING |
434                                       LDLM_FL_TEST_LOCK,
435                                       NULL, 0, &tmpex, 0, &lockh);
436                 if (rc2 == 0 && page->mapping != NULL) {
437                         // checking again to account for writeback's lock_page()
438                         LL_CDEBUG_PAGE(D_PAGE, page, "truncating\n");
439                         ll_truncate_complete_page(page);
440                 }
441                 unlock_page(page);
442                 page_cache_release(page);
443         }
444         LASSERTF(tmpex.l_extent.start <=
445                  (lock->l_policy_data.l_extent.end == ~0ULL ? ~0ULL :
446                   lock->l_policy_data.l_extent.end + 1),
447                  "loop too long "LPU64" > "LPU64" start %lu i %lu end %lu\n",
448                  tmpex.l_extent.start, lock->l_policy_data.l_extent.end,
449                  start, i, end);
450         EXIT;
451 }
452
453 static int ll_extent_lock_callback(struct ldlm_lock *lock,
454                                    struct ldlm_lock_desc *new, void *data,
455                                    int flag)
456 {
457         struct lustre_handle lockh = { 0 };
458         int rc;
459         ENTRY;
460
461         if ((unsigned long)data > 0 && (unsigned long)data < 0x1000) {
462                 LDLM_ERROR(lock, "cancelling lock with bad data %p", data);
463                 LBUG();
464         }
465
466         switch (flag) {
467         case LDLM_CB_BLOCKING:
468                 ldlm_lock2handle(lock, &lockh);
469                 rc = ldlm_cli_cancel(&lockh);
470                 if (rc != ELDLM_OK)
471                         CERROR("ldlm_cli_cancel failed: %d\n", rc);
472                 break;
473         case LDLM_CB_CANCELING: {
474                 struct inode *inode;
475                 struct ll_inode_info *lli;
476                 struct lov_stripe_md *lsm;
477                 __u32 stripe;
478                 __u64 kms;
479
480                 /* This lock wasn't granted, don't try to evict pages */
481                 if (lock->l_req_mode != lock->l_granted_mode)
482                         RETURN(0);
483
484                 inode = ll_inode_from_lock(lock);
485                 if (inode == NULL)
486                         RETURN(0);
487                 lli = ll_i2info(inode);
488                 if (lli == NULL)
489                         goto iput;
490                 if (lli->lli_smd == NULL)
491                         goto iput;
492                 lsm = lli->lli_smd;
493
494                 stripe = ll_lock_to_stripe_offset(inode, lock);
495                 ll_pgcache_remove_extent(inode, lsm, lock, stripe);
496
497                 down(&inode->i_sem);
498                 kms = ldlm_extent_shift_kms(lock,
499                                             lsm->lsm_oinfo[stripe].loi_kms);
500                 if (lsm->lsm_oinfo[stripe].loi_kms != kms)
501                         LDLM_DEBUG(lock, "updating kms from "LPU64" to "LPU64,
502                                    lsm->lsm_oinfo[stripe].loi_kms, kms);
503                 lsm->lsm_oinfo[stripe].loi_kms = kms;
504                 up(&inode->i_sem);
505                 //ll_try_done_writing(inode);
506         iput:
507                 iput(inode);
508                 break;
509         }
510         default:
511                 LBUG();
512         }
513
514         RETURN(0);
515 }
516
517 #if 0
518 int ll_async_completion_ast(struct ldlm_lock *lock, int flags, void *data)
519 {
520         /* XXX ALLOCATE - 160 bytes */
521         struct inode *inode = ll_inode_from_lock(lock);
522         struct ll_inode_info *lli = ll_i2info(inode);
523         struct lustre_handle lockh = { 0 };
524         struct ost_lvb *lvb;
525         __u32 stripe;
526         ENTRY;
527
528         if (flags & (LDLM_FL_BLOCK_WAIT | LDLM_FL_BLOCK_GRANTED |
529                      LDLM_FL_BLOCK_CONV)) {
530                 LBUG(); /* not expecting any blocked async locks yet */
531                 LDLM_DEBUG(lock, "client-side async enqueue returned a blocked "
532                            "lock, returning");
533                 ldlm_lock_dump(D_OTHER, lock, 0);
534                 ldlm_reprocess_all(lock->l_resource);
535                 RETURN(0);
536         }
537
538         LDLM_DEBUG(lock, "client-side async enqueue: granted/glimpsed");
539
540         stripe = ll_lock_to_stripe_offset(inode, lock);
541
542         if (lock->l_lvb_len) {
543                 struct lov_stripe_md *lsm = lli->lli_smd;
544                 __u64 kms;
545                 lvb = lock->l_lvb_data;
546                 lsm->lsm_oinfo[stripe].loi_rss = lvb->lvb_size;
547
548                 down(&inode->i_sem);
549                 kms = MAX(lsm->lsm_oinfo[stripe].loi_kms, lvb->lvb_size);
550                 kms = ldlm_extent_shift_kms(NULL, kms);
551                 if (lsm->lsm_oinfo[stripe].loi_kms != kms)
552                         LDLM_DEBUG(lock, "updating kms from "LPU64" to "LPU64,
553                                    lsm->lsm_oinfo[stripe].loi_kms, kms);
554                 lsm->lsm_oinfo[stripe].loi_kms = kms;
555                 up(&inode->i_sem);
556         }
557
558         iput(inode);
559         wake_up(&lock->l_waitq);
560
561         ldlm_lock2handle(lock, &lockh);
562         ldlm_lock_decref(&lockh, LCK_PR);
563         RETURN(0);
564 }
565 #endif
566
567 static int ll_glimpse_callback(struct ldlm_lock *lock, void *reqp)
568 {
569         struct ptlrpc_request *req = reqp;
570         struct inode *inode = ll_inode_from_lock(lock);
571         struct ll_inode_info *lli;
572         struct ost_lvb *lvb;
573         int rc, size = sizeof(*lvb), stripe = 0;
574         ENTRY;
575
576         if (inode == NULL)
577                 GOTO(out, rc = -ELDLM_NO_LOCK_DATA);
578         lli = ll_i2info(inode);
579         if (lli == NULL)
580                 GOTO(iput, rc = -ELDLM_NO_LOCK_DATA);
581         if (lli->lli_smd == NULL)
582                 GOTO(iput, rc = -ELDLM_NO_LOCK_DATA);
583
584         /* First, find out which stripe index this lock corresponds to. */
585         if (lli->lli_smd->lsm_stripe_count > 1)
586                 stripe = ll_lock_to_stripe_offset(inode, lock);
587
588         rc = lustre_pack_reply(req, 1, &size, NULL);
589         if (rc) {
590                 CERROR("lustre_pack_reply: %d\n", rc);
591                 GOTO(iput, rc);
592         }
593
594         lvb = lustre_msg_buf(req->rq_repmsg, 0, sizeof(*lvb));
595         lvb->lvb_size = lli->lli_smd->lsm_oinfo[stripe].loi_kms;
596
597         LDLM_DEBUG(lock, "i_size: %llu -> stripe number %u -> kms "LPU64,
598                    inode->i_size, stripe, lvb->lvb_size);
599         GOTO(iput, 0);
600  iput:
601         iput(inode);
602
603  out:
604         /* These errors are normal races, so we don't want to fill the console
605          * with messages by calling ptlrpc_error() */
606         if (rc == -ELDLM_NO_LOCK_DATA)
607                 lustre_pack_reply(req, 0, NULL, NULL);
608
609         req->rq_status = rc;
610         return rc;
611 }
612
613 __u64 lov_merge_size(struct lov_stripe_md *lsm, int kms);
614 __u64 lov_merge_blocks(struct lov_stripe_md *lsm);
615 __u64 lov_merge_mtime(struct lov_stripe_md *lsm, __u64 current_time);
616
617 /* NB: lov_merge_size will prefer locally cached writes if they extend the
618  * file (because it prefers KMS over RSS when larger) */
619 int ll_glimpse_size(struct inode *inode, struct ost_lvb *lvb)
620 {
621         struct ll_inode_info *lli = ll_i2info(inode);
622         struct ll_sb_info *sbi = ll_i2sbi(inode);
623         ldlm_policy_data_t policy = { .l_extent = { 0, OBD_OBJECT_EOF } };
624         struct lustre_handle lockh;
625         int rc, flags = LDLM_FL_HAS_INTENT;
626         ENTRY;
627
628         CDEBUG(D_DLMTRACE, "Glimpsing inode %lu\n", inode->i_ino);
629
630         rc = obd_enqueue(sbi->ll_osc_exp, lli->lli_smd, LDLM_EXTENT, &policy,
631                          LCK_PR, &flags, ll_extent_lock_callback,
632                          ldlm_completion_ast, ll_glimpse_callback, inode,
633                          sizeof(*lvb), lustre_swab_ost_lvb, &lockh);
634         if (rc != 0) {
635                 CERROR("obd_enqueue returned rc %d, returning -EIO\n", rc);
636                 RETURN(rc > 0 ? -EIO : rc);
637         }
638
639         lvb->lvb_size = lov_merge_size(lli->lli_smd, 0);
640         inode->i_blocks = lov_merge_blocks(lli->lli_smd);
641         //inode->i_mtime = lov_merge_mtime(lli->lli_smd, inode->i_mtime);
642
643         CDEBUG(D_DLMTRACE, "glimpse: size: "LPU64", blocks: "LPU64"\n",
644                lvb->lvb_size, lvb->lvb_blocks);
645
646         obd_cancel(sbi->ll_osc_exp, lli->lli_smd, LCK_PR, &lockh);
647
648         RETURN(rc);
649 }
650
651 int ll_extent_lock(struct ll_file_data *fd, struct inode *inode,
652                    struct lov_stripe_md *lsm, int mode,
653                    ldlm_policy_data_t *policy, struct lustre_handle *lockh,
654                    int ast_flags)
655 {
656         struct ll_sb_info *sbi = ll_i2sbi(inode);
657         int rc;
658         ENTRY;
659
660         LASSERT(lockh->cookie == 0);
661
662         /* XXX phil: can we do this?  won't it screw the file size up? */
663         if ((fd && (fd->fd_flags & LL_FILE_IGNORE_LOCK)) ||
664             (sbi->ll_flags & LL_SBI_NOLCK))
665                 RETURN(0);
666
667         CDEBUG(D_DLMTRACE, "Locking inode %lu, start "LPU64" end "LPU64"\n",
668                inode->i_ino, policy->l_extent.start, policy->l_extent.end);
669
670         rc = obd_enqueue(sbi->ll_osc_exp, lsm, LDLM_EXTENT, policy, mode,
671                          &ast_flags, ll_extent_lock_callback,
672                          ldlm_completion_ast, ll_glimpse_callback, inode,
673                          sizeof(struct ost_lvb), lustre_swab_ost_lvb, lockh);
674         if (rc > 0)
675                 rc = -EIO;
676
677         if (policy->l_extent.start == 0 &&
678             policy->l_extent.end == OBD_OBJECT_EOF)
679                 inode->i_size = lov_merge_size(lsm, 1);
680
681         //inode->i_mtime = lov_merge_mtime(lsm, inode->i_mtime);
682
683         RETURN(rc);
684 }
685
686 int ll_extent_unlock(struct ll_file_data *fd, struct inode *inode,
687                      struct lov_stripe_md *lsm, int mode,
688                      struct lustre_handle *lockh)
689 {
690         struct ll_sb_info *sbi = ll_i2sbi(inode);
691         int rc;
692         ENTRY;
693
694         /* XXX phil: can we do this?  won't it screw the file size up? */
695         if ((fd && (fd->fd_flags & LL_FILE_IGNORE_LOCK)) ||
696             (sbi->ll_flags & LL_SBI_NOLCK))
697                 RETURN(0);
698
699         rc = obd_cancel(sbi->ll_osc_exp, lsm, mode, lockh);
700
701         RETURN(rc);
702 }
703
704 static ssize_t ll_file_read(struct file *filp, char *buf, size_t count,
705                             loff_t *ppos)
706 {
707         struct ll_file_data *fd = filp->private_data;
708         struct inode *inode = filp->f_dentry->d_inode;
709         struct ll_inode_info *lli = ll_i2info(inode);
710         struct lov_stripe_md *lsm = lli->lli_smd;
711         struct lustre_handle lockh = { 0 };
712         ldlm_policy_data_t policy;
713         ldlm_error_t err;
714         ssize_t retval;
715         __u64 kms;
716         ENTRY;
717         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p),size="LPSZ",offset=%Ld\n",
718                inode->i_ino, inode->i_generation, inode, count, *ppos);
719
720         /* "If nbyte is 0, read() will return 0 and have no other results."
721          *                      -- Single Unix Spec */
722         if (count == 0)
723                 RETURN(0);
724
725         lprocfs_counter_add(ll_i2sbi(inode)->ll_stats, LPROC_LL_READ_BYTES,
726                             count);
727
728         if (!lsm)
729                 RETURN(0);
730
731         policy.l_extent.start = *ppos;
732         policy.l_extent.end = *ppos + count - 1;
733
734         err = ll_extent_lock(fd, inode, lsm, LCK_PR, &policy, &lockh,
735                              (filp->f_flags & O_NONBLOCK)?LDLM_FL_BLOCK_NOWAIT:
736                                                           0);
737         if (err != ELDLM_OK)
738                 RETURN(err);
739
740         kms = lov_merge_size(lsm, 1);
741         if (policy.l_extent.end > kms) {
742                 /* A glimpse is necessary to determine whether we return a short
743                  * read or some zeroes at the end of the buffer */
744                 struct ost_lvb lvb;
745                 retval = ll_glimpse_size(inode, &lvb);
746                 if (retval)
747                         goto out;
748                 inode->i_size = lvb.lvb_size;
749         } else {
750                 inode->i_size = kms;
751         }
752
753         CDEBUG(D_INFO, "Read ino %lu, "LPSZ" bytes, offset %lld, i_size %llu\n",
754                inode->i_ino, count, *ppos, inode->i_size);
755
756         /* turn off the kernel's read-ahead */
757 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
758         filp->f_ramax = 0;
759 #else
760         filp->f_ra.ra_pages = 0;
761 #endif
762         retval = generic_file_read(filp, buf, count, ppos);
763
764  out:
765         ll_extent_unlock(fd, inode, lsm, LCK_PR, &lockh);
766         RETURN(retval);
767 }
768
769 /*
770  * Write to a file (through the page cache).
771  */
772 static ssize_t ll_file_write(struct file *file, const char *buf, size_t count,
773                              loff_t *ppos)
774 {
775         struct ll_file_data *fd = file->private_data;
776         struct inode *inode = file->f_dentry->d_inode;
777         struct lov_stripe_md *lsm = ll_i2info(inode)->lli_smd;
778         struct lustre_handle lockh = { 0 };
779         ldlm_policy_data_t policy;
780         loff_t maxbytes = ll_file_maxbytes(inode);
781         ldlm_error_t err;
782         ssize_t retval;
783         int nonblock = 0;
784         ENTRY;
785         if (file->f_flags & O_NONBLOCK)
786                 nonblock = LDLM_FL_BLOCK_NOWAIT;
787         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p),size="LPSZ",offset=%Ld\n",
788                inode->i_ino, inode->i_generation, inode, count, *ppos);
789
790         SIGNAL_MASK_ASSERT(); /* XXX BUG 1511 */
791
792         /* POSIX, but surprised the VFS doesn't check this already */
793         if (count == 0)
794                 RETURN(0);
795
796         /* If file was opened for LL_IOC_LOV_SETSTRIPE but the ioctl wasn't
797          * called on the file, don't fail the below assertion (bug 2388). */
798         if (file->f_flags & O_LOV_DELAY_CREATE && lsm == NULL)
799                 RETURN(-EBADF);
800
801         LASSERT(lsm);
802
803         if (file->f_flags & O_APPEND) {
804                 policy.l_extent.start = 0;
805                 policy.l_extent.end = OBD_OBJECT_EOF;
806         } else  {
807                 policy.l_extent.start = *ppos;
808                 policy.l_extent.end = *ppos + count - 1;
809         }
810
811         err = ll_extent_lock(fd, inode, lsm, LCK_PW, &policy, &lockh, nonblock);
812         if (err != ELDLM_OK)
813                 RETURN(err);
814
815         /* this is ok, g_f_w will overwrite this under i_sem if it races
816          * with a local truncate, it just makes our maxbyte checking easier */
817         if (file->f_flags & O_APPEND)
818                 *ppos = inode->i_size;
819
820         if (*ppos >= maxbytes) {
821                 if (count || *ppos > maxbytes) {
822                         send_sig(SIGXFSZ, current, 0);
823                         GOTO(out, retval = -EFBIG);
824                 }
825         }
826         if (*ppos + count > maxbytes)
827                 count = maxbytes - *ppos;
828
829         CDEBUG(D_INFO, "Writing inode %lu, "LPSZ" bytes, offset %Lu\n",
830                inode->i_ino, count, *ppos);
831
832         /* generic_file_write handles O_APPEND after getting i_sem */
833         retval = generic_file_write(file, buf, count, ppos);
834
835 out:
836         ll_extent_unlock(fd, inode, lsm, LCK_PW, &lockh);
837         lprocfs_counter_add(ll_i2sbi(inode)->ll_stats, LPROC_LL_WRITE_BYTES,
838                             retval > 0 ? retval : 0);
839         RETURN(retval);
840 }
841
842 static int ll_lov_recreate_obj(struct inode *inode, struct file *file,
843                                unsigned long arg)
844 {
845         struct ll_inode_info *lli = ll_i2info(inode);
846         struct obd_export *exp = ll_i2obdexp(inode);
847         struct ll_recreate_obj ucreatp;
848         struct obd_trans_info oti = { 0 };
849         struct obdo *oa = NULL;
850         int lsm_size;
851         int rc = 0;
852         struct lov_stripe_md *lsm, *lsm2;
853         ENTRY;
854
855         if (!capable (CAP_SYS_ADMIN))
856                 RETURN(-EPERM);
857
858         rc = copy_from_user(&ucreatp, (struct ll_recreate_obj *)arg, 
859                             sizeof(struct ll_recreate_obj));
860         if (rc) {
861                 RETURN(-EFAULT);
862         }
863         oa = obdo_alloc();
864         if (oa == NULL) {
865                 RETURN(-ENOMEM);
866         }
867
868         down(&lli->lli_open_sem);
869         lsm = lli->lli_smd;
870         if (lsm == NULL) {
871                 up(&lli->lli_open_sem);
872                 obdo_free(oa);
873                 RETURN (-ENOENT);
874         }
875         lsm_size = sizeof(*lsm) + (sizeof(struct lov_oinfo) *
876                    (lsm->lsm_stripe_count));
877
878         OBD_ALLOC(lsm2, lsm_size);
879         if (lsm2 == NULL) {
880                 up(&lli->lli_open_sem);
881                 obdo_free(oa);
882                 RETURN(-ENOMEM);
883         }
884
885         oa->o_id = ucreatp.lrc_id; 
886         oa->o_nlink = ucreatp.lrc_ost_idx;
887         oa->o_valid = OBD_MD_FLID | OBD_MD_FLFLAGS;
888         oa->o_flags |= OBD_FL_RECREATE_OBJS;
889         obdo_from_inode(oa, inode, OBD_MD_FLTYPE | OBD_MD_FLATIME |
890                                    OBD_MD_FLMTIME | OBD_MD_FLCTIME);
891
892         oti.oti_objid = NULL;
893         memcpy(lsm2, lsm, lsm_size);
894         rc = obd_create(exp, oa, &lsm2, &oti);
895
896         up(&lli->lli_open_sem);
897         OBD_FREE(lsm2, lsm_size);
898         obdo_free(oa);
899         RETURN (rc);
900 }
901
902 static int ll_lov_setstripe_ea_info(struct inode *inode, struct file *file,
903                                     int flags, struct lov_user_md *lum,
904                                     int lum_size)
905 {
906         struct ll_inode_info *lli = ll_i2info(inode);
907         struct file *f;
908         struct obd_export *exp = ll_i2obdexp(inode);
909         struct lov_stripe_md *lsm;
910         struct lookup_intent oit = {.it_op = IT_OPEN, .it_flags = flags};
911         struct ptlrpc_request *req = NULL;
912         int rc = 0;
913         struct lustre_md md;
914         ENTRY;
915
916         down(&lli->lli_open_sem);
917         lsm = lli->lli_smd;
918         if (lsm) {
919                 up(&lli->lli_open_sem);
920                 CDEBUG(D_IOCTL, "stripe already exists for ino %lu\n",
921                        inode->i_ino);
922                 RETURN(-EEXIST);
923         }
924
925         f = get_empty_filp();
926         if (!f)
927                 GOTO(out, -ENOMEM);
928
929         f->f_dentry = file->f_dentry;
930         f->f_vfsmnt = file->f_vfsmnt;
931
932         rc = ll_intent_file_open(f, lum, lum_size, &oit);
933         if (rc)
934                 GOTO(out, rc);
935         if (it_disposition(&oit, DISP_LOOKUP_NEG))
936                 GOTO(out, -ENOENT);
937         req = oit.d.lustre.it_data;
938         rc = oit.d.lustre.it_status;
939
940         if (rc < 0)
941                 GOTO(out, rc);
942
943         rc = mdc_req2lustre_md(req, 1, exp, &md);
944         if (rc)
945                 GOTO(out, rc);
946         ll_update_inode(f->f_dentry->d_inode, md.body, md.lsm);
947
948         rc = ll_local_open(f, &oit);
949         if (rc)
950                 GOTO(out, rc);
951         ll_intent_release(&oit);
952
953         rc = ll_file_release(f->f_dentry->d_inode, f);
954
955  out:
956         if (f)
957                 put_filp(f);
958         up(&lli->lli_open_sem);
959         if (req != NULL)
960                 ptlrpc_req_finished(req);
961         RETURN(rc);
962 }
963
964 static int ll_lov_setea(struct inode *inode, struct file *file,
965                             unsigned long arg)
966 {
967         int flags = MDS_OPEN_HAS_OBJS | FMODE_WRITE;
968         struct lov_user_md  *lump;
969         int lum_size = sizeof(struct lov_user_md) +
970                        sizeof(struct lov_user_ost_data);
971         int rc;
972         ENTRY;
973
974         if (!capable (CAP_SYS_ADMIN))
975                 RETURN(-EPERM);
976
977         OBD_ALLOC(lump, lum_size);
978         if (lump == NULL) {
979                 RETURN(-ENOMEM);
980         }
981         rc = copy_from_user(lump, (struct lov_user_md  *)arg, lum_size);
982         if (rc) {
983                 OBD_FREE(lump, lum_size);
984                 RETURN(-EFAULT);
985         }
986
987         rc = ll_lov_setstripe_ea_info(inode, file, flags, lump, lum_size);
988
989         OBD_FREE(lump, lum_size);
990         RETURN(rc);
991 }
992
993 static int ll_lov_setstripe(struct inode *inode, struct file *file,
994                             unsigned long arg)
995 {
996         struct lov_user_md lum, *lump = (struct lov_user_md *)arg;
997         int rc;
998         int flags = FMODE_WRITE;
999         ENTRY;
1000
1001         /* Bug 1152: copy properly when this is no longer true */
1002         LASSERT(sizeof(lum) == sizeof(*lump));
1003         LASSERT(sizeof(lum.lmm_objects[0]) == sizeof(lump->lmm_objects[0]));
1004         rc = copy_from_user(&lum, lump, sizeof(lum));
1005         if (rc)
1006                 RETURN(-EFAULT);
1007
1008         rc = ll_lov_setstripe_ea_info(inode, file, flags, &lum, sizeof(lum));
1009         RETURN(rc);
1010 }
1011
1012 static int ll_lov_getstripe(struct inode *inode, unsigned long arg)
1013 {
1014         struct lov_stripe_md *lsm = ll_i2info(inode)->lli_smd;
1015
1016         if (!lsm)
1017                 RETURN(-ENODATA);
1018
1019         return obd_iocontrol(LL_IOC_LOV_GETSTRIPE, ll_i2obdexp(inode), 0, lsm,
1020                             (void *)arg);
1021 }
1022
1023 static int ll_get_grouplock(struct inode *inode, struct file *file,
1024                          unsigned long arg)
1025 {
1026         struct ll_file_data *fd = file->private_data;
1027         ldlm_policy_data_t policy = { .l_extent = { .start = 0,
1028                                                     .end = OBD_OBJECT_EOF}};
1029         struct lustre_handle lockh = { 0 };
1030         struct ll_inode_info *lli = ll_i2info(inode);
1031         struct lov_stripe_md *lsm = lli->lli_smd;
1032         ldlm_error_t err;
1033         int flags = 0;
1034         ENTRY;
1035
1036         if (fd->fd_flags & LL_FILE_GROUP_LOCKED) {
1037                 RETURN(-EINVAL);
1038         }
1039
1040         policy.l_extent.gid = arg;
1041         if (file->f_flags & O_NONBLOCK)
1042                 flags = LDLM_FL_BLOCK_NOWAIT;
1043
1044         err = ll_extent_lock(fd, inode, lsm, LCK_GROUP, &policy, &lockh, flags);
1045         if (err)
1046                 RETURN(err);
1047
1048         fd->fd_flags |= LL_FILE_GROUP_LOCKED|LL_FILE_IGNORE_LOCK;
1049         fd->fd_gid = arg;
1050         memcpy(&fd->fd_cwlockh, &lockh, sizeof(lockh));
1051
1052         RETURN(0);
1053 }
1054
1055 static int ll_put_grouplock(struct inode *inode, struct file *file,
1056                          unsigned long arg)
1057 {
1058         struct ll_file_data *fd = file->private_data;
1059         struct ll_inode_info *lli = ll_i2info(inode);
1060         struct lov_stripe_md *lsm = lli->lli_smd;
1061         ldlm_error_t err;
1062         ENTRY;
1063
1064         if (!(fd->fd_flags & LL_FILE_GROUP_LOCKED)) {
1065                 /* Ugh, it's already unlocked. */
1066                 RETURN(-EINVAL);
1067         }
1068
1069         if (fd->fd_gid != arg) /* Ugh? Unlocking with different gid? */
1070                 RETURN(-EINVAL);
1071         
1072         fd->fd_flags &= ~(LL_FILE_GROUP_LOCKED|LL_FILE_IGNORE_LOCK);
1073
1074         err = ll_extent_unlock(fd, inode, lsm, LCK_GROUP, &fd->fd_cwlockh);
1075         if (err)
1076                 RETURN(err);
1077
1078         fd->fd_gid = 0;
1079         memset(&fd->fd_cwlockh, 0, sizeof(fd->fd_cwlockh));
1080
1081         RETURN(0);
1082 }       
1083
1084 int ll_file_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
1085                   unsigned long arg)
1086 {
1087         struct ll_file_data *fd = file->private_data;
1088         int flags;
1089         ENTRY;
1090
1091         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p),cmd=%x\n", inode->i_ino,
1092                inode->i_generation, inode, cmd);
1093
1094         if (_IOC_TYPE(cmd) == 'T') /* tty ioctls */
1095                 RETURN(-ENOTTY);
1096
1097         lprocfs_counter_incr(ll_i2sbi(inode)->ll_stats, LPROC_LL_IOCTL);
1098         switch(cmd) {
1099         case LL_IOC_GETFLAGS:
1100                 /* Get the current value of the file flags */
1101                 return put_user(fd->fd_flags, (int *)arg);
1102         case LL_IOC_SETFLAGS:
1103         case LL_IOC_CLRFLAGS:
1104                 /* Set or clear specific file flags */
1105                 /* XXX This probably needs checks to ensure the flags are
1106                  *     not abused, and to handle any flag side effects.
1107                  */
1108                 if (get_user(flags, (int *) arg))
1109                         RETURN(-EFAULT);
1110
1111                 if (cmd == LL_IOC_SETFLAGS)
1112                         fd->fd_flags |= flags;
1113                 else
1114                         fd->fd_flags &= ~flags;
1115                 RETURN(0);
1116         case LL_IOC_LOV_SETSTRIPE:
1117                 RETURN(ll_lov_setstripe(inode, file, arg));
1118         case LL_IOC_LOV_SETEA:
1119                 RETURN(ll_lov_setea(inode, file, arg));
1120         case LL_IOC_LOV_GETSTRIPE:
1121                 RETURN(ll_lov_getstripe(inode, arg));
1122         case LL_IOC_RECREATE_OBJ:
1123                 RETURN(ll_lov_recreate_obj(inode, file, arg));
1124         case EXT3_IOC_GETFLAGS:
1125         case EXT3_IOC_SETFLAGS:
1126                 RETURN( ll_iocontrol(inode, file, cmd, arg) );
1127         case LL_IOC_GROUP_LOCK:
1128                 RETURN(ll_get_grouplock(inode, file, arg));
1129         case LL_IOC_GROUP_UNLOCK:
1130                 RETURN(ll_put_grouplock(inode, file, arg));
1131         /* We need to special case any other ioctls we want to handle,
1132          * to send them to the MDS/OST as appropriate and to properly
1133          * network encode the arg field.
1134         case EXT2_IOC_GETVERSION_OLD:
1135         case EXT2_IOC_GETVERSION_NEW:
1136         case EXT2_IOC_SETVERSION_OLD:
1137         case EXT2_IOC_SETVERSION_NEW:
1138         */
1139         default:
1140                 RETURN( obd_iocontrol(cmd, ll_i2obdexp(inode), 0, NULL,
1141                                       (void *)arg) );
1142         }
1143 }
1144
1145 loff_t ll_file_seek(struct file *file, loff_t offset, int origin)
1146 {
1147         struct inode *inode = file->f_dentry->d_inode;
1148         struct ll_file_data *fd = file->private_data;
1149         struct lov_stripe_md *lsm = ll_i2info(inode)->lli_smd;
1150         struct lustre_handle lockh = {0};
1151         loff_t retval;
1152         ENTRY;
1153         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p),to=%llu\n", inode->i_ino,
1154                inode->i_generation, inode,
1155                offset + ((origin==2) ? inode->i_size : file->f_pos));
1156
1157         lprocfs_counter_incr(ll_i2sbi(inode)->ll_stats, LPROC_LL_LLSEEK);
1158         if (origin == 2) { /* SEEK_END */
1159                 ldlm_error_t err;
1160                 int nonblock = 0;
1161                 ldlm_policy_data_t policy = { .l_extent = {0, OBD_OBJECT_EOF }};
1162
1163                 if (file->f_flags & O_NONBLOCK)
1164                         nonblock = LDLM_FL_BLOCK_NOWAIT;
1165
1166                 err = ll_extent_lock(fd, inode, lsm, LCK_PR, &policy, &lockh,
1167                                      nonblock);
1168                 if (err != ELDLM_OK)
1169                         RETURN(err);
1170
1171                 offset += inode->i_size;
1172         } else if (origin == 1) { /* SEEK_CUR */
1173                 offset += file->f_pos;
1174         }
1175
1176         retval = -EINVAL;
1177         if (offset >= 0 && offset <= ll_file_maxbytes(inode)) {
1178                 if (offset != file->f_pos) {
1179                         file->f_pos = offset;
1180 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
1181                         file->f_reada = 0;
1182                         file->f_version = ++event;
1183 #endif
1184                 }
1185                 retval = offset;
1186         }
1187
1188         if (origin == 2)
1189                 ll_extent_unlock(fd, inode, lsm, LCK_PR, &lockh);
1190         RETURN(retval);
1191 }
1192
1193 int ll_fsync(struct file *file, struct dentry *dentry, int data)
1194 {
1195         struct inode *inode = dentry->d_inode;
1196         struct lov_stripe_md *lsm = ll_i2info(inode)->lli_smd;
1197         struct ll_fid fid;
1198         struct ptlrpc_request *req;
1199         int rc, err;
1200         ENTRY;
1201         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p)\n", inode->i_ino,
1202                inode->i_generation, inode);
1203
1204         lprocfs_counter_incr(ll_i2sbi(inode)->ll_stats, LPROC_LL_FSYNC);
1205
1206         /* fsync's caller has already called _fdata{sync,write}, we want
1207          * that IO to finish before calling the osc and mdc sync methods */
1208         rc = filemap_fdatawait(inode->i_mapping);
1209
1210         ll_inode2fid(&fid, inode);
1211         err = mdc_sync(ll_i2sbi(inode)->ll_mdc_exp, &fid, &req);
1212         if (!rc)
1213                 rc = err;
1214         if (!err)
1215                 ptlrpc_req_finished(req);
1216
1217         if (data && lsm) {
1218                 struct obdo *oa = obdo_alloc();
1219
1220                 if (!oa)
1221                         RETURN(rc ? rc : -ENOMEM);
1222
1223                 oa->o_id = lsm->lsm_object_id;
1224                 oa->o_valid = OBD_MD_FLID;
1225                 obdo_from_inode(oa, inode, OBD_MD_FLTYPE | OBD_MD_FLATIME |
1226                                            OBD_MD_FLMTIME | OBD_MD_FLCTIME);
1227
1228                 err = obd_sync(ll_i2sbi(inode)->ll_osc_exp, oa, lsm,
1229                                0, OBD_OBJECT_EOF);
1230                 if (!rc)
1231                         rc = err;
1232                 obdo_free(oa);
1233         }
1234
1235         RETURN(rc);
1236 }
1237
1238 int ll_file_flock(struct file *file, int cmd, struct file_lock *file_lock)
1239 {
1240         struct inode *inode = file->f_dentry->d_inode;
1241         struct ll_sb_info *sbi = ll_i2sbi(inode);
1242         struct obd_device *obddev;
1243         struct ldlm_res_id res_id =
1244                     { .name = {inode->i_ino, inode->i_generation, LDLM_FLOCK} };
1245         struct lustre_handle lockh = {0};
1246         ldlm_policy_data_t flock;
1247         ldlm_mode_t mode = 0;
1248         int flags = 0;
1249         int rc;
1250         ENTRY;
1251
1252         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu file_lock=%p\n",
1253                inode->i_ino, file_lock);
1254
1255         flock.l_flock.pid = file_lock->fl_pid;
1256         flock.l_flock.start = file_lock->fl_start;
1257         flock.l_flock.end = file_lock->fl_end;
1258
1259         switch (file_lock->fl_type) {
1260         case F_RDLCK:
1261                 mode = LCK_PR;
1262                 break;
1263         case F_UNLCK:
1264                 /* An unlock request may or may not have any relation to
1265                  * existing locks so we may not be able to pass a lock handle
1266                  * via a normal ldlm_lock_cancel() request. The request may even
1267                  * unlock a byte range in the middle of an existing lock. In
1268                  * order to process an unlock request we need all of the same
1269                  * information that is given with a normal read or write record
1270                  * lock request. To avoid creating another ldlm unlock (cancel)
1271                  * message we'll treat a LCK_NL flock request as an unlock. */
1272                 mode = LCK_NL;
1273                 break;
1274         case F_WRLCK:
1275                 mode = LCK_PW;
1276                 break;
1277         default:
1278                 CERROR("unknown fcntl lock type: %d\n", file_lock->fl_type);
1279                 LBUG();
1280         }
1281
1282         switch (cmd) {
1283         case F_SETLKW:
1284                 flags = 0;
1285                 break;
1286         case F_SETLK:
1287                 flags = LDLM_FL_BLOCK_NOWAIT;
1288                 break;
1289         case F_GETLK:
1290                 flags = LDLM_FL_TEST_LOCK;
1291                 /* Save the old mode so that if the mode in the lock changes we
1292                  * can decrement the appropriate reader or writer refcount. */
1293                 file_lock->fl_type = mode;
1294                 break;
1295         default:
1296                 CERROR("unknown fcntl lock command: %d\n", cmd);
1297                 LBUG();
1298         }
1299
1300         CDEBUG(D_DLMTRACE, "inode=%lu, pid="LPU64", flags=%#x, mode=%u, "
1301                "start="LPU64", end="LPU64"\n", inode->i_ino, flock.l_flock.pid,
1302                flags, mode, flock.l_flock.start, flock.l_flock.end);
1303
1304         obddev = sbi->ll_mdc_exp->exp_obd;
1305         rc = ldlm_cli_enqueue(sbi->ll_mdc_exp, NULL, obddev->obd_namespace,
1306                               res_id, LDLM_FLOCK, &flock, mode, &flags,
1307                               NULL, ldlm_flock_completion_ast, NULL, file_lock,
1308                               NULL, 0, NULL, &lockh);
1309         RETURN(rc);
1310 }
1311
1312 static int ll_have_md_lock(struct dentry *de)
1313 {
1314         struct ll_sb_info *sbi = ll_s2sbi(de->d_sb);
1315         struct lustre_handle lockh;
1316         struct ldlm_res_id res_id = { .name = {0} };
1317         struct obd_device *obddev;
1318         int flags;
1319         ENTRY;
1320
1321         if (!de->d_inode)
1322                RETURN(0);
1323
1324         obddev = sbi->ll_mdc_exp->exp_obd;
1325         res_id.name[0] = de->d_inode->i_ino;
1326         res_id.name[1] = de->d_inode->i_generation;
1327
1328         CDEBUG(D_INFO, "trying to match res "LPU64"\n", res_id.name[0]);
1329
1330         /* FIXME use LDLM_FL_TEST_LOCK instead */
1331         flags = LDLM_FL_BLOCK_GRANTED | LDLM_FL_CBPENDING;
1332         if (ldlm_lock_match(obddev->obd_namespace, flags, &res_id, LDLM_PLAIN,
1333                             NULL, LCK_PR, &lockh)) {
1334                 ldlm_lock_decref(&lockh, LCK_PR);
1335                 RETURN(1);
1336         }
1337
1338         if (ldlm_lock_match(obddev->obd_namespace, flags, &res_id, LDLM_PLAIN,
1339                             NULL, LCK_PW, &lockh)) {
1340                 ldlm_lock_decref(&lockh, LCK_PW);
1341                 RETURN(1);
1342         }
1343         RETURN(0);
1344 }
1345
1346 int ll_inode_revalidate_it(struct dentry *dentry, struct lookup_intent *it)
1347 {
1348         struct inode *inode = dentry->d_inode;
1349         struct ll_inode_info *lli;
1350         struct lov_stripe_md *lsm;
1351         int rc;
1352         ENTRY;
1353
1354         if (!inode) {
1355                 CERROR("REPORT THIS LINE TO PETER\n");
1356                 RETURN(0);
1357         }
1358         lli = ll_i2info(inode);
1359         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p),name=%s\n",
1360                inode->i_ino, inode->i_generation, inode, dentry->d_name.name);
1361 #if (LINUX_VERSION_CODE <= KERNEL_VERSION(2,5,0))
1362         lprocfs_counter_incr(ll_i2sbi(inode)->ll_stats, LPROC_LL_REVALIDATE);
1363 #endif
1364
1365         if (!ll_have_md_lock(dentry)) {
1366                 struct ptlrpc_request *req = NULL;
1367                 struct ll_sb_info *sbi = ll_i2sbi(dentry->d_inode);
1368                 struct ll_fid fid;
1369                 unsigned long valid = 0;
1370                 int ealen = 0;
1371
1372                 if (S_ISREG(inode->i_mode)) {
1373                         ealen = obd_size_diskmd(sbi->ll_osc_exp, NULL);
1374                         valid |= OBD_MD_FLEASIZE;
1375                 }
1376                 ll_inode2fid(&fid, inode);
1377                 rc = mdc_getattr(sbi->ll_mdc_exp, &fid, valid, ealen, &req);
1378                 if (rc) {
1379                         CERROR("failure %d inode %lu\n", rc, inode->i_ino);
1380                         RETURN(-abs(rc));
1381                 }
1382                 rc = ll_prep_inode(sbi->ll_osc_exp, &inode, req, 0, NULL);
1383                 if (rc) {
1384                         ptlrpc_req_finished(req);
1385                         RETURN(rc);
1386                 }
1387                 ptlrpc_req_finished(req);
1388         }
1389
1390         lsm = lli->lli_smd;
1391         if (lsm == NULL) /* object not yet allocated, don't validate size */
1392                 RETURN(0);
1393
1394         /* ll_glimpse_size will prefer locally cached writes if they extend
1395          * the file */
1396         {
1397                 struct ost_lvb lvb;
1398
1399                 rc = ll_glimpse_size(inode, &lvb);
1400                 inode->i_size = lvb.lvb_size;
1401         }
1402         RETURN(rc);
1403 }
1404
1405 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,5,0))
1406 int ll_getattr(struct vfsmount *mnt, struct dentry *de,
1407                struct lookup_intent *it, struct kstat *stat)
1408 {
1409         int res = 0;
1410         struct inode *inode = de->d_inode;
1411
1412         res = ll_inode_revalidate_it(de, it);
1413         lprocfs_counter_incr(ll_i2sbi(inode)->ll_stats, LPROC_LL_GETATTR);
1414
1415         if (res)
1416                 return res;
1417
1418         stat->dev = inode->i_sb->s_dev;
1419         stat->ino = inode->i_ino;
1420         stat->mode = inode->i_mode;
1421         stat->nlink = inode->i_nlink;
1422         stat->uid = inode->i_uid;
1423         stat->gid = inode->i_gid;
1424         stat->rdev = kdev_t_to_nr(inode->i_rdev);
1425         stat->atime = inode->i_atime;
1426         stat->mtime = inode->i_mtime;
1427         stat->ctime = inode->i_ctime;
1428         stat->size = inode->i_size;
1429         stat->blksize = inode->i_blksize;
1430         stat->blocks = inode->i_blocks;
1431         return 0;
1432 }
1433 #endif
1434
1435 struct file_operations ll_file_operations = {
1436         read:           ll_file_read,
1437         write:          ll_file_write,
1438         ioctl:          ll_file_ioctl,
1439         open:           ll_file_open,
1440         release:        ll_file_release,
1441         mmap:           generic_file_mmap,
1442         llseek:         ll_file_seek,
1443         fsync:          ll_fsync,
1444         //lock:           ll_file_flock
1445 };
1446
1447 struct inode_operations ll_file_inode_operations = {
1448         setattr_raw:    ll_setattr_raw,
1449         setattr:        ll_setattr,
1450         truncate:       ll_truncate,
1451 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,5,0))
1452         getattr_it:     ll_getattr,
1453 #else
1454         revalidate_it:  ll_inode_revalidate_it,
1455 #endif
1456 };
1457