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