Whamcloud - gitweb
Branch: 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 #include <linux/lustre_acl.h>
31 #include <linux/lustre_sec.h>
32 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
33 #include <linux/lustre_compat25.h>
34 #endif
35 #include <linux/obd_lov.h>
36 #include <linux/lustre_audit.h>
37 #include "llite_internal.h"
38
39 __u64 lov_merge_size(struct lov_stripe_md *lsm, int kms);
40 __u64 lov_merge_blocks(struct lov_stripe_md *lsm);
41 __u64 lov_merge_mtime(struct lov_stripe_md *lsm, __u64 current_time);
42
43 int ll_validate_size(struct inode *inode, __u64 *size, __u64 *blocks)
44 {
45         ldlm_policy_data_t extent = { .l_extent = { 0, OBD_OBJECT_EOF } };
46         struct obd_export *exp = ll_i2sbi(inode)->ll_dt_exp;
47         struct ll_inode_info *lli = ll_i2info(inode);
48         struct lustre_handle match_lockh = {0};
49         int rc, flags;
50         ENTRY;
51
52         if (lli->lli_smd == NULL)
53                 RETURN(0);
54
55         LASSERT(size != NULL && blocks != NULL);
56
57         flags = LDLM_FL_TEST_LOCK | LDLM_FL_CBPENDING | LDLM_FL_BLOCK_GRANTED;
58         rc = obd_match(exp, lli->lli_smd, LDLM_EXTENT, &extent,
59                        LCK_PR | LCK_PW, &flags, inode, &match_lockh);
60         if (rc == 0) {
61                 /* we have no all needed locks,
62                  * so we don't know actual size */
63                 GOTO(finish, rc);
64         }
65
66         /* we know actual size! */
67         down(&lli->lli_size_sem);
68         *size = lov_merge_size(lli->lli_smd, 0);
69         *blocks = lov_merge_blocks(lli->lli_smd);
70         up(&lli->lli_size_sem);
71
72 finish:
73         RETURN(rc);
74 }
75
76 int ll_md_och_close(struct obd_export *md_exp, struct inode *inode,
77                     struct obd_client_handle *och, int dirty)
78 {
79         struct ptlrpc_request *req = NULL;
80         struct mdc_op_data *op_data;
81         struct obd_device *obd;
82         obd_valid valid;
83         int rc;
84         ENTRY;
85
86         obd = class_exp2obd(md_exp);
87         if (obd == NULL) {
88                 CERROR("Invalid MDC connection handle "LPX64"\n",
89                        md_exp->exp_handle.h_cookie);
90                 RETURN(0);
91         }
92
93         /* here we check if this is forced umount. If so this is called on
94          * canceling "open lock" and we do not call md_close() in this case , as
95          * it will not successful, as import is already deactivated. */
96         if (obd->obd_no_recov)
97                 GOTO(out, rc = 0);
98
99         /* prepare @op_data for close request */
100         OBD_ALLOC(op_data, sizeof(*op_data));
101         if (!op_data)
102                 RETURN(-ENOMEM);
103
104         memset(op_data, 0, sizeof(*op_data));
105
106         valid = (OBD_MD_FLATIME | OBD_MD_FLMTIME | OBD_MD_FLCTIME |
107                  OBD_MD_FLTYPE | OBD_MD_FLMODE | OBD_MD_FLEPOCH |
108                  OBD_MD_FLID);
109         
110         ll_inode2mdc_data(op_data, inode, valid);
111
112         if (0 /* ll_is_inode_dirty(inode) */) {
113                 op_data->flags = MDS_BFLAG_UNCOMMITTED_WRITES;
114                 op_data->valid |= OBD_MD_FLFLAGS;
115         }
116
117         if (dirty) {
118                 /* we modified data through this handle */
119                 op_data->flags |= MDS_BFLAG_DIRTY_EPOCH;
120                 op_data->valid |= OBD_MD_FLFLAGS;
121                 if (ll_validate_size(inode, &op_data->size, &op_data->blocks))
122                         op_data->valid |= OBD_MD_FLSIZE | OBD_MD_FLBLOCKS;
123         }
124
125         rc = md_close(md_exp, op_data, och, &req);
126         OBD_FREE(op_data, sizeof(*op_data));
127
128         if (rc == EAGAIN) {
129                 /* we are the last writer, so the MDS has instructed us to get
130                  * the file size and any write cookies, then close again. */
131
132                 //ll_queue_done_writing(inode);
133                 rc = 0;
134         } else if (rc) {
135                 CERROR("inode %lu mdc close failed: rc = %d\n",
136                        (unsigned long)inode->i_ino, rc);
137         }
138
139         ptlrpc_req_finished(req);
140         EXIT;
141 out:
142         mdc_clear_open_replay_data(md_exp, och);
143         if (och->och_capa)
144                 capa_put(och->och_capa, CLIENT_CAPA);
145         och->och_fh.cookie = DEAD_HANDLE_MAGIC;
146         OBD_FREE(och, sizeof *och);
147         return rc;
148 }
149
150 int ll_md_real_close(struct obd_export *md_exp,
151                      struct inode *inode, int flags)
152 {
153         struct ll_inode_info *lli = ll_i2info(inode);
154         int freeing = inode->i_state & I_FREEING;
155         struct obd_client_handle **och_p;
156         struct obd_client_handle *och;
157         __u64 *och_usecount;
158         int rc = 0, dirty = 0;
159         ENTRY;
160
161         if (flags & FMODE_WRITE) {
162                 och_p = &lli->lli_mds_write_och;
163                 och_usecount = &lli->lli_open_fd_write_count;
164         } else if (flags & FMODE_EXEC) {
165                 och_p = &lli->lli_mds_exec_och;
166                 och_usecount = &lli->lli_open_fd_exec_count;
167          } else {
168                 och_p = &lli->lli_mds_read_och;
169                 och_usecount = &lli->lli_open_fd_read_count;
170         }
171
172         down(&lli->lli_och_sem);
173         if (*och_usecount) { /* There are still users of this handle, so
174                                 skip freeing it. */
175                 up(&lli->lli_och_sem);
176                 RETURN(0);
177         }
178         if (ll_is_inode_dirty(inode)) {
179                 /* the inode still has dirty pages, let's close later */
180                 CDEBUG(D_INODE, "inode %lu/%u still has dirty pages\n",
181                        inode->i_ino, inode->i_generation);
182                 LASSERT(freeing == 0);
183                 ll_queue_done_writing(inode);
184                 up(&lli->lli_och_sem);
185                 RETURN(0);
186         }
187         
188         if (LLI_DIRTY_HANDLE(inode) && (flags & FMODE_WRITE)) {
189                 clear_bit(LLI_F_DIRTY_HANDLE,  &lli->lli_flags);
190                 dirty = 1;
191         } else if (0 && !(flags & FMODE_SYNC) && !freeing) {
192                 /* in order to speed up creation rate we pass
193                  * closing to dedicated thread so we don't need
194                  * to wait for close reply here -bzzz */
195                 ll_queue_done_writing(inode);
196                 up(&lli->lli_och_sem);
197                 RETURN(0);
198         }
199
200         och = *och_p;
201         *och_p = NULL;
202
203
204         up(&lli->lli_och_sem);
205
206         /*
207          * there might be a race and somebody have freed this och
208          * already. Another way to have this twice called is if file closing
209          * will fail due to netwok problems and on umount lock will be canceled
210          * and this will be called from block_ast callack.
211         */
212         if (och && och->och_fh.cookie != DEAD_HANDLE_MAGIC)
213                 rc = ll_md_och_close(md_exp, inode, och, dirty);
214         
215         RETURN(rc);
216 }
217
218 int ll_md_close(struct obd_export *md_exp, struct inode *inode,
219                 struct file *file)
220 {
221         struct ll_file_data *fd = file->private_data;
222         struct ll_inode_info *lli = ll_i2info(inode);
223         int rc = 0;
224         ENTRY;
225
226         /* clear group lock, if present */
227         if (fd->fd_flags & LL_FILE_GROUP_LOCKED) {
228                 struct lov_stripe_md *lsm = ll_i2info(inode)->lli_smd;
229                 fd->fd_flags &= ~(LL_FILE_GROUP_LOCKED|LL_FILE_IGNORE_LOCK);
230                 rc = ll_extent_unlock(fd, inode, lsm, LCK_GROUP,
231                                       &fd->fd_cwlockh);
232         }
233
234         /* Let's see if we have good enough OPEN lock on the file and if
235            we can skip talking to MDS */
236         if (file->f_dentry->d_inode) {
237                 int lockmode;
238                 struct obd_device *obddev;
239                 struct lustre_handle lockh;
240                 int flags = LDLM_FL_BLOCK_GRANTED;
241                 struct ldlm_res_id file_res_id = {.name = {id_fid(&lli->lli_id), 
242                                                            id_group(&lli->lli_id)}};
243                 ldlm_policy_data_t policy = {.l_inodebits={MDS_INODELOCK_OPEN}};
244
245                 down(&lli->lli_och_sem);
246                 if (fd->fd_omode & FMODE_WRITE) {
247                         lockmode = LCK_CW;
248                         LASSERT(lli->lli_open_fd_write_count);
249                         lli->lli_open_fd_write_count--;
250                 } else if (fd->fd_omode & FMODE_EXEC) {
251                         lockmode = LCK_PR;
252                         LASSERT(lli->lli_open_fd_exec_count);
253                         lli->lli_open_fd_exec_count--;
254                 } else {
255                         lockmode = LCK_CR;
256                         LASSERT(lli->lli_open_fd_read_count);
257                         lli->lli_open_fd_read_count--;
258                 }
259                 up(&lli->lli_och_sem);
260                 
261                 obddev = md_get_real_obd(md_exp, &lli->lli_id);
262                 if (!ldlm_lock_match(obddev->obd_namespace, flags, &file_res_id,
263                                      LDLM_IBITS, &policy, lockmode, &lockh))
264                 {
265                         rc = ll_md_real_close(md_exp, file->f_dentry->d_inode,
266                                               fd->fd_omode);
267                 } else {
268                         ldlm_lock_decref(&lockh, lockmode);
269                 }
270         }
271
272         file->private_data = NULL;
273         OBD_SLAB_FREE(fd, ll_file_data_slab, sizeof(*fd));
274         RETURN(rc);
275 }
276
277 /* While this returns an error code, fput() the caller does not, so we need
278  * to make every effort to clean up all of our state here.  Also, applications
279  * rarely check close errors and even if an error is returned they will not
280  * re-try the close call.
281  */
282 int ll_file_release(struct inode *inode, struct file *file)
283 {
284         struct ll_file_data *fd;
285         struct ll_sb_info *sbi = ll_i2sbi(inode);
286         int rc;
287
288         ENTRY;
289         CDEBUG(D_VFSTRACE, "VFS Op:inode="DLID4"(%p)\n",
290                OLID4(&ll_i2info(inode)->lli_id), inode);
291
292         /* don't do anything for / */
293         if (inode->i_sb->s_root == file->f_dentry)
294                 RETURN(0);
295
296         lprocfs_counter_incr(sbi->ll_stats, LPROC_LL_RELEASE);
297         fd = (struct ll_file_data *)file->private_data;
298         LASSERT(fd != NULL);
299
300         rc = ll_md_close(sbi->ll_md_exp, inode, file);
301         RETURN(rc);
302 }
303
304 static int ll_intent_file_open(struct file *file, void *lmm,
305                                int lmmsize, struct lookup_intent *itp)
306 {
307         struct ll_sb_info *sbi = ll_i2sbi(file->f_dentry->d_inode);
308         const char *name = (char *)file->f_dentry->d_name.name;
309         struct dentry *parent = file->f_dentry->d_parent;
310         const int len = file->f_dentry->d_name.len;
311         struct lustre_handle lockh;
312         struct mdc_op_data *op_data;
313         int rc;
314
315         if (!parent)
316                 RETURN(-ENOENT);
317
318         OBD_ALLOC(op_data, sizeof(*op_data));
319         if (op_data == NULL)
320                 RETURN(-ENOMEM);
321         
322         ll_prepare_mdc_data(op_data, parent->d_inode, NULL,
323                             name, len, O_RDWR);
324
325         rc = md_enqueue(sbi->ll_md_exp, LDLM_IBITS, itp, LCK_PR, op_data,
326                         &lockh, lmm, lmmsize, ldlm_completion_ast,
327                         ll_mdc_blocking_ast, NULL);
328         OBD_FREE(op_data, sizeof(*op_data));
329         if (rc == 0) {
330                 if (LUSTRE_IT(itp)->it_lock_mode)
331                         memcpy(&LUSTRE_IT(itp)->it_lock_handle,
332                                &lockh, sizeof(lockh));
333
334         } else if (rc < 0) {
335                 CERROR("lock enqueue: err: %d\n", rc);
336         }
337         RETURN(rc);
338 }
339
340 int ll_och_fill(struct inode *inode, struct lookup_intent *it,
341                  struct obd_client_handle *och)
342 {
343         struct ptlrpc_request *req = LUSTRE_IT(it)->it_data;
344         struct ll_inode_info *lli = ll_i2info(inode);
345         struct mds_body *body;
346         int rc = 0;
347         ENTRY;
348         LASSERT(och);
349
350         body = lustre_msg_buf (req->rq_repmsg, 1, sizeof (*body));
351         LASSERT (body != NULL);          /* reply already checked out */
352         LASSERT_REPSWABBED (req, 1);     /* and swabbed down */
353
354         memcpy(&och->och_fh, &body->handle, sizeof(body->handle));
355         och->och_magic = OBD_CLIENT_HANDLE_MAGIC;
356         lli->lli_io_epoch = body->io_epoch;
357         mdc_set_open_replay_data(ll_i2mdexp(inode), och, 
358                                  LUSTRE_IT(it)->it_data);
359
360         if (S_ISREG(inode->i_mode) && (body->valid & OBD_MD_CAPA))
361                 rc = ll_set_och_capa(inode, it, och);
362         RETURN(rc);
363 }
364
365 int ll_local_open(struct file *file, struct lookup_intent *it,
366                   struct obd_client_handle *och)
367 {
368         struct ll_file_data *fd;
369         int rc = 0;
370         ENTRY;
371
372         if (och) {
373                 rc = ll_och_fill(file->f_dentry->d_inode, it, och);
374                 if (rc)
375                         RETURN(rc);
376         }
377
378         LASSERTF(file->private_data == NULL, "file %.*s/%.*s ino %lu/%u (%o)\n",
379                  file->f_dentry->d_name.len, file->f_dentry->d_name.name,
380                  file->f_dentry->d_parent->d_name.len,
381                  file->f_dentry->d_parent->d_name.name,
382                  file->f_dentry->d_inode->i_ino,
383                  file->f_dentry->d_inode->i_generation,
384                  file->f_dentry->d_inode->i_mode);
385
386         OBD_SLAB_ALLOC(fd, ll_file_data_slab, SLAB_KERNEL, sizeof *fd);
387         
388         /* We can't handle this well without reorganizing ll_file_open and
389          * ll_md_close(), so don't even try right now. */
390         LASSERT(fd != NULL);
391
392         file->private_data = fd;
393         ll_readahead_init(file->f_dentry->d_inode, &fd->fd_ras);
394         fd->fd_omode = it->it_flags;
395
396         RETURN(0);
397 }
398
399 /* Open a file, and (for the very first open) create objects on the OSTs at
400  * this time.  If opened with O_LOV_DELAY_CREATE, then we don't do the object
401  * creation or open until ll_lov_setstripe() ioctl is called.  We grab
402  * lli_open_sem to ensure no other process will create objects, send the
403  * stripe MD to the MDS, or try to destroy the objects if that fails.
404  *
405  * If we already have the stripe MD locally then we don't request it in
406  * mdc_open(), by passing a lmm_size = 0.
407  *
408  * It is up to the application to ensure no other processes open this file
409  * in the O_LOV_DELAY_CREATE case, or the default striping pattern will be
410  * used.  We might be able to avoid races of that sort by getting lli_open_sem
411  * before returning in the O_LOV_DELAY_CREATE case and dropping it here
412  * or in ll_file_release(), but I'm not sure that is desirable/necessary.
413  */
414 int ll_file_open(struct inode *inode, struct file *file)
415 {
416         struct ll_inode_info *lli = ll_i2info(inode);
417         struct lookup_intent *it, oit = { .it_op = IT_OPEN,
418                                           .it_flags = file->f_flags };
419         struct lov_stripe_md *lsm;
420         struct ptlrpc_request *req;
421         int rc = 0;
422         struct obd_client_handle **och_p = NULL;
423         __u64 *och_usecount = NULL;
424         ENTRY;
425
426         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p), flags %o\n",
427                inode->i_ino, inode->i_generation, inode, file->f_flags);
428
429         /* don't do anything for / */
430         if (inode->i_sb->s_root == file->f_dentry)
431                 RETURN(0);
432
433         if ((file->f_flags+1) & O_ACCMODE)
434                 oit.it_flags++;
435         if (file->f_flags & O_TRUNC)
436                 oit.it_flags |= 2;
437
438         it = file->f_it;
439         /*
440          * sometimes LUSTRE_IT(it) may not be allocated like opening file by
441          * dentry_open() from GNS stuff.
442          */
443         if (!it || !LUSTRE_IT(it)) {
444                 it = &oit;
445                 rc = ll_intent_alloc(it);
446                 if (rc)
447                         GOTO(out, rc);
448         }
449
450         lprocfs_counter_incr(ll_i2sbi(inode)->ll_stats, LPROC_LL_OPEN);
451         
452         /*
453          * mdc_intent_lock() didn't get a request ref if there was an open
454          * error, so don't do cleanup on the * request here (bug 3430)
455          */
456         if (LUSTRE_IT(it)->it_disposition) {
457                 rc = it_open_error(DISP_OPEN_OPEN, it);
458                 if (rc)
459                         RETURN(rc);
460         }
461
462         /* Let's see if we have file open on MDS already. */
463         if (it->it_flags & FMODE_WRITE) {
464                 och_p = &lli->lli_mds_write_och;
465                 och_usecount = &lli->lli_open_fd_write_count;
466         } else if (it->it_flags & FMODE_EXEC) {
467                 och_p = &lli->lli_mds_exec_och;
468                 och_usecount = &lli->lli_open_fd_exec_count;
469         } else {
470                 och_p = &lli->lli_mds_read_och;
471                 och_usecount = &lli->lli_open_fd_read_count;
472         }
473
474         rc = ll_crypto_decrypt_key(inode, it);
475         if (rc)
476                 GOTO(out, rc);
477
478         down(&lli->lli_och_sem);
479         if (*och_p) { /* Open handle is present */
480                 if (it_disposition(it, DISP_LOOKUP_POS) && /* Positive lookup */
481                     it_disposition(it, DISP_OPEN_OPEN)) { /* & OPEN happened */
482                         struct obd_client_handle *och;
483                         /* Well, there's extra open request that we do not need,
484                            let's close it somehow*/
485                         OBD_ALLOC(och, sizeof (struct obd_client_handle));
486                         if (!och) {
487                                 up(&lli->lli_och_sem);
488                                 RETURN(-ENOMEM);
489                         }
490
491                         rc = ll_och_fill(inode, it, och);
492                         if (rc) {
493                                 up(&lli->lli_och_sem);
494                                 RETURN(rc);
495                         }
496                         
497                         /* ll_md_och_close() will free och */
498                         ll_md_och_close(ll_i2mdexp(inode), inode, och, 0);
499                 }
500                 (*och_usecount)++;
501                         
502                 rc = ll_local_open(file, it, NULL);
503                 if (rc)
504                         LBUG();
505         } else {
506                 LASSERT(*och_usecount == 0);
507                 OBD_ALLOC(*och_p, sizeof (struct obd_client_handle));
508                 if (!*och_p)
509                         GOTO(out, rc = -ENOMEM);
510                 (*och_usecount)++;
511
512                 if (!it || !LUSTRE_IT(it) || !LUSTRE_IT(it)->it_disposition) {
513                         /*
514                          * we are going to replace intent here, and that may
515                          * possibly change access mode (FMODE_EXEC can only be
516                          * set in intent), but I hope it never happens (I was
517                          * not able to trigger it yet at least) -- green
518                          */
519                         
520                         /* FIXME: FMODE_EXEC is not covered by O_ACCMODE! */
521                         LASSERT(!(it->it_flags & FMODE_EXEC));
522                         LASSERTF((it->it_flags & O_ACCMODE) ==
523                                  (oit.it_flags & O_ACCMODE), "Changing intent "
524                                  "flags %x to incompatible %x\n", it->it_flags,
525                                  oit.it_flags);
526                         it = &oit;
527                         rc = ll_intent_file_open(file, NULL, 0, it);
528                         if (rc)
529                                 GOTO(out, rc);
530                         rc = it_open_error(DISP_OPEN_OPEN, it);
531                         if (rc)
532                                 GOTO(out_och_free, rc);
533
534                         mdc_set_lock_data(NULL, &LUSTRE_IT(it)->it_lock_handle,
535                                           file->f_dentry->d_inode);
536                 }
537                 lprocfs_counter_incr(ll_i2sbi(inode)->ll_stats, LPROC_LL_OPEN);
538                 rc = ll_local_open(file, it, *och_p);
539                 LASSERTF(rc == 0, "rc = %d\n", rc);
540         }
541         up(&lli->lli_och_sem);
542         
543         /*
544          * must do this outside lli_och_sem lock to prevent deadlock where
545          * different kind of OPEN lock for this same inode gets cancelled by
546          * ldlm_cancel_lru
547          */
548         if (!S_ISREG(inode->i_mode))
549                 GOTO(out, rc);
550
551         lsm = lli->lli_smd;
552         if (lsm == NULL) {
553                 if (file->f_flags & O_LOV_DELAY_CREATE ||
554                     !(file->f_mode & FMODE_WRITE)) {
555                         CDEBUG(D_INODE, "object creation was delayed\n");
556                         GOTO(out, rc);
557                 }
558         }
559         file->f_flags &= ~O_LOV_DELAY_CREATE;
560         GOTO(out, rc);
561  out:
562         /* audit stuff if there was no RPC */
563         if (LUSTRE_IT(it)->it_data == 0) {
564                 ll_audit_log(inode, AUDIT_OPEN, rc);
565         }
566
567         req = LUSTRE_IT(it)->it_data;
568         ll_intent_drop_lock(it);
569         ll_intent_release(it);
570         ptlrpc_req_finished(req);
571         if (rc == 0) {
572                 ll_open_complete(inode);
573         } else {
574 out_och_free:
575                 if (*och_p) {
576                         OBD_FREE(*och_p, sizeof (struct obd_client_handle));
577                         *och_p = NULL; /* OBD_FREE writes some magic there */
578                         (*och_usecount)--;
579                 }
580                 up(&lli->lli_och_sem);
581         }
582                 
583         return rc;
584 }
585
586 /* Fills the obdo with the attributes for the inode defined by lsm */
587 int ll_lsm_getattr(struct obd_export *exp, struct lov_stripe_md *lsm,
588                    struct obdo *oa)
589 {
590         struct ptlrpc_request_set *set;
591         int rc;
592         ENTRY;
593
594         LASSERT(lsm != NULL);
595
596         memset(oa, 0, sizeof *oa);
597         oa->o_id = lsm->lsm_object_id;
598         oa->o_gr = lsm->lsm_object_gr;
599         oa->o_mode = S_IFREG;
600         oa->o_valid = OBD_MD_FLID | OBD_MD_FLTYPE | OBD_MD_FLSIZE |
601                 OBD_MD_FLBLOCKS | OBD_MD_FLBLKSZ | OBD_MD_FLMTIME |
602                 OBD_MD_FLCTIME | OBD_MD_FLGROUP;
603
604         set = ptlrpc_prep_set();
605         if (set == NULL) {
606                 rc = -ENOMEM;
607         } else {
608                 rc = obd_getattr_async(exp, oa, lsm, set);
609                 if (rc == 0)
610                         rc = ptlrpc_set_wait(set);
611                 ptlrpc_set_destroy(set);
612         }
613         if (rc)
614                 RETURN(rc);
615
616         oa->o_valid &= (OBD_MD_FLBLOCKS | OBD_MD_FLBLKSZ | OBD_MD_FLMTIME |
617                         OBD_MD_FLCTIME | OBD_MD_FLSIZE);
618         RETURN(0);
619 }
620
621 static inline void ll_remove_suid(struct inode *inode)
622 {
623         unsigned int mode;
624
625         /* set S_IGID if S_IXGRP is set, and always set S_ISUID */
626         mode = (inode->i_mode & S_IXGRP)*(S_ISGID/S_IXGRP) | S_ISUID;
627
628         /* was any of the uid bits set? */
629         mode &= inode->i_mode;
630         if (mode && !capable(CAP_FSETID)) {
631                 inode->i_mode &= ~mode;
632                 // XXX careful here - we cannot change the size
633         }
634 }
635
636 static int ll_lock_to_stripe_offset(struct inode *inode, struct ldlm_lock *lock)
637 {
638         struct ll_inode_info *lli = ll_i2info(inode);
639         struct lov_stripe_md *lsm = lli->lli_smd;
640         struct obd_export *exp = ll_i2dtexp(inode);
641         struct {
642                 char name[16];
643                 struct ldlm_lock *lock;
644                 struct lov_stripe_md *lsm;
645         } key = { .name = "lock_to_stripe", .lock = lock, .lsm = lsm };
646         __u32 stripe, vallen = sizeof(stripe);
647         int rc;
648         ENTRY;
649
650         if (lsm->lsm_stripe_count == 1)
651                 GOTO(check, stripe = 0);
652
653         /* get our offset in the lov */
654         rc = obd_get_info(exp, sizeof(key), &key, &vallen, &stripe);
655         if (rc != 0) {
656                 CERROR("obd_get_info: rc = %d\n", rc);
657                 RETURN(rc);
658         }
659         LASSERT(stripe < lsm->lsm_stripe_count);
660         EXIT;
661 check:
662         if (lsm->lsm_oinfo[stripe].loi_id != lock->l_resource->lr_name.name[0]||
663             lsm->lsm_oinfo[stripe].loi_gr != lock->l_resource->lr_name.name[2]){
664                 LDLM_ERROR(lock, "resource doesn't match object "LPU64"/"LPU64
665                            " inode=%lu/%u (%p)\n",
666                            lsm->lsm_oinfo[stripe].loi_id,
667                            lsm->lsm_oinfo[stripe].loi_gr,
668                            inode->i_ino, inode->i_generation, inode);
669                 return -ELDLM_NO_LOCK_DATA;
670         }
671
672         return stripe;
673 }
674
675 /* Flush the page cache for an extent as its canceled.  When we're on an LOV,
676  * we get a lock cancellation for each stripe, so we have to map the obd's
677  * region back onto the stripes in the file that it held.
678  *
679  * No one can dirty the extent until we've finished our work and they can
680  * enqueue another lock.  The DLM protects us from ll_file_read/write here,
681  * but other kernel actors could have pages locked.
682  *
683  * Called with the DLM lock held. */
684 void ll_pgcache_remove_extent(struct inode *inode, struct lov_stripe_md *lsm,
685                               struct ldlm_lock *lock, __u32 stripe)
686 {
687         ldlm_policy_data_t tmpex;
688         unsigned long start, end, count, skip, i, j;
689         struct page *page;
690         int rc, rc2, discard = lock->l_flags & LDLM_FL_DISCARD_DATA;
691         struct lustre_handle lockh;
692         ENTRY;
693
694         memcpy(&tmpex, &lock->l_policy_data, sizeof(tmpex));
695         CDEBUG(D_INODE|D_PAGE, "inode %lu(%p) ["LPU64"->"LPU64"] size: %llu\n",
696                inode->i_ino, inode, tmpex.l_extent.start, tmpex.l_extent.end,
697                inode->i_size);
698
699         /* our locks are page granular thanks to osc_enqueue, we invalidate the
700          * whole page. */
701         LASSERT((tmpex.l_extent.start & ~PAGE_CACHE_MASK) == 0);
702         LASSERT(((tmpex.l_extent.end + 1) & ~PAGE_CACHE_MASK) == 0);
703
704         count = ~0;
705         skip = 0;
706         start = tmpex.l_extent.start >> PAGE_CACHE_SHIFT;
707         end = tmpex.l_extent.end >> PAGE_CACHE_SHIFT;
708         if (lsm->lsm_stripe_count > 1) {
709                 count = lsm->lsm_stripe_size >> PAGE_CACHE_SHIFT;
710                 skip = (lsm->lsm_stripe_count - 1) * count;
711                 start += start/count * skip + stripe * count;
712                 if (end != ~0)
713                         end += end/count * skip + stripe * count;
714         }
715         if (end < tmpex.l_extent.end >> PAGE_CACHE_SHIFT)
716                 end = ~0;
717
718         i = inode->i_size ? (inode->i_size - 1) >> PAGE_CACHE_SHIFT : 0;
719         if (i < end)
720                 end = i;
721
722         CDEBUG(D_INODE|D_PAGE, "walking page indices start: %lu j: %lu "
723                "count: %lu skip: %lu end: %lu%s\n", start, start % count,
724                count, skip, end, discard ? " (DISCARDING)" : "");
725         
726         /* walk through the vmas on the inode and tear down mmaped pages that
727          * intersect with the lock.  this stops immediately if there are no
728          * mmap()ed regions of the file.  This is not efficient at all and
729          * should be short lived. We'll associate mmap()ed pages with the lock
730          * and will be able to find them directly */
731         
732         for (i = start; i <= end; i += (j + skip)) {
733                 j = min(count - (i % count), end - i + 1);
734                 LASSERT(j > 0);
735                 LASSERT(inode->i_mapping);
736                 if (ll_teardown_mmaps(inode->i_mapping, 
737                                       (__u64)i << PAGE_CACHE_SHIFT,
738                                       ((__u64)(i+j) << PAGE_CACHE_SHIFT) - 1) )
739                         break;
740         }
741
742         /* this is the simplistic implementation of page eviction at
743          * cancelation.  It is careful to get races with other page
744          * lockers handled correctly.  fixes from bug 20 will make it
745          * more efficient by associating locks with pages and with
746          * batching writeback under the lock explicitly. */
747         for (i = start, j = start % count; i <= end;
748              j++, i++, tmpex.l_extent.start += PAGE_CACHE_SIZE) {
749                 if (j == count) {
750                         CDEBUG(D_PAGE, "skip index %lu to %lu\n", i, i + skip);
751                         i += skip;
752                         j = 0;
753                         if (i > end)
754                                 break;
755                 }
756                 LASSERTF(tmpex.l_extent.start< lock->l_policy_data.l_extent.end,
757                          LPU64" >= "LPU64" start %lu i %lu end %lu\n",
758                          tmpex.l_extent.start, lock->l_policy_data.l_extent.end,
759                          start, i, end);
760
761                 if (!mapping_has_pages(inode->i_mapping)) {
762                         CDEBUG(D_INODE|D_PAGE, "nothing left\n");
763                         break;
764                 }
765
766                 cond_resched();
767
768                 page = find_get_page(inode->i_mapping, i);
769                 if (page == NULL)
770                         continue;
771                 LL_CDEBUG_PAGE(D_PAGE, page, "lock page idx %lu ext "LPU64"\n",
772                                i, tmpex.l_extent.start);
773                 lock_page(page);
774
775                 /* page->mapping to check with racing against teardown */
776                 if (!discard && clear_page_dirty_for_io(page)) {
777                         rc = ll_call_writepage(inode, page);
778                         if (rc != 0)
779                                 CERROR("writepage of page %p failed: %d\n",
780                                        page, rc);
781                         /* either waiting for io to complete or reacquiring
782                          * the lock that the failed writepage released */
783                         lock_page(page);
784                 }
785
786                 tmpex.l_extent.end = tmpex.l_extent.start + PAGE_CACHE_SIZE - 1;
787                 /* check to see if another DLM lock covers this page */
788                 rc2 = ldlm_lock_match(lock->l_resource->lr_namespace,
789                                       LDLM_FL_BLOCK_GRANTED|LDLM_FL_CBPENDING |
790                                       LDLM_FL_TEST_LOCK,
791                                       &lock->l_resource->lr_name, LDLM_EXTENT,
792                                       &tmpex, LCK_PR | LCK_PW, &lockh);
793                 if (rc2 == 0 && page->mapping != NULL) {
794                         // checking again to account for writeback's lock_page()
795                         LL_CDEBUG_PAGE(D_PAGE, page, "truncating\n");
796                         ll_ra_accounting(page, inode->i_mapping);
797                         ll_truncate_complete_page(page);
798                 }
799                 unlock_page(page);
800                 page_cache_release(page);
801         }
802         LASSERTF(tmpex.l_extent.start <=
803                  (lock->l_policy_data.l_extent.end == ~0ULL ? ~0ULL :
804                   lock->l_policy_data.l_extent.end + 1),
805                  "loop too long "LPU64" > "LPU64" start %lu i %lu end %lu\n",
806                  tmpex.l_extent.start, lock->l_policy_data.l_extent.end,
807                  start, i, end);
808         EXIT;
809 }
810
811 static int ll_extent_lock_callback(struct ldlm_lock *lock,
812                                    struct ldlm_lock_desc *new, void *data,
813                                    int flag)
814 {
815         struct lustre_handle lockh = { 0 };
816         int rc;
817         ENTRY;
818
819         if ((unsigned long)data > 0 && (unsigned long)data < 0x1000) {
820                 LDLM_ERROR(lock, "cancelling lock with bad data %p", data);
821                 LBUG();
822         }
823
824         switch (flag) {
825         case LDLM_CB_BLOCKING:
826                 ldlm_lock2handle(lock, &lockh);
827                 rc = ldlm_cli_cancel(&lockh);
828                 if (rc != ELDLM_OK)
829                         CERROR("ldlm_cli_cancel failed: %d\n", rc);
830                 break;
831         case LDLM_CB_CANCELING: {
832                 struct inode *inode;
833                 struct ll_inode_info *lli;
834                 struct lov_stripe_md *lsm;
835                 __u32 stripe;
836                 __u64 kms;
837
838                 /* This lock wasn't granted, don't try to evict pages */
839                 if (lock->l_req_mode != lock->l_granted_mode)
840                         RETURN(0);
841
842                 inode = ll_inode_from_lock(lock);
843                 if (inode == NULL)
844                         RETURN(0);
845                 lli = ll_i2info(inode);
846                 if (lli == NULL)
847                         goto iput;
848                 if (lli->lli_smd == NULL)
849                         goto iput;
850                 lsm = lli->lli_smd;
851
852                 stripe = ll_lock_to_stripe_offset(inode, lock);
853                 if (stripe < 0) {
854                         CERROR("ll_lock_to_stripe_offset failed: %d\n", stripe);
855                         goto iput;
856                 }
857
858                 ll_pgcache_remove_extent(inode, lsm, lock, stripe);
859
860                 down(&lli->lli_size_sem);
861                 lock_res_and_lock(lock);
862                 kms = ldlm_extent_shift_kms(lock,
863                                             lsm->lsm_oinfo[stripe].loi_kms);
864                 
865                 if (lsm->lsm_oinfo[stripe].loi_kms != kms)
866                         LDLM_DEBUG(lock, "updating kms from "LPU64" to "LPU64,
867                                    lsm->lsm_oinfo[stripe].loi_kms, kms);
868                 lsm->lsm_oinfo[stripe].loi_kms = kms;
869                 unlock_res_and_lock(lock);
870                 up(&lli->lli_size_sem);
871                 //ll_try_done_writing(inode);
872         iput:
873                 iput(inode);
874                 break;
875         }
876         default:
877                 LBUG();
878         }
879
880         RETURN(0);
881 }
882
883 #if 0
884 int ll_async_completion_ast(struct ldlm_lock *lock, int flags, void *data)
885 {
886         /* XXX ALLOCATE - 160 bytes */
887         struct inode *inode = ll_inode_from_lock(lock);
888         struct ll_inode_info *lli = ll_i2info(inode);
889         struct lustre_handle lockh = { 0 };
890         struct ost_lvb *lvb;
891         __u32 stripe;
892         ENTRY;
893
894         if (flags & (LDLM_FL_BLOCK_WAIT | LDLM_FL_BLOCK_GRANTED |
895                      LDLM_FL_BLOCK_CONV)) {
896                 LBUG(); /* not expecting any blocked async locks yet */
897                 LDLM_DEBUG(lock, "client-side async enqueue returned a blocked "
898                            "lock, returning");
899                 ldlm_lock_dump(D_OTHER, lock, 0);
900                 ldlm_reprocess_all(lock->l_resource);
901                 RETURN(0);
902         }
903
904         LDLM_DEBUG(lock, "client-side async enqueue: granted/glimpsed");
905
906         stripe = ll_lock_to_stripe_offset(inode, lock);
907         if (stripe < 0) {
908                 CERROR("ll_lock_to_stripe_offset failed: %d\n", stripe);
909                 goto iput;
910         }
911
912         if (lock->l_lvb_len) {
913                 struct lov_stripe_md *lsm = lli->lli_smd;
914                 __u64 kms;
915                 lvb = lock->l_lvb_data;
916                 lsm->lsm_oinfo[stripe].loi_rss = lvb->lvb_size;
917
918                 down(&inode->i_sem);
919                 lock_res_and_lock(lock);
920                 kms = MAX(lsm->lsm_oinfo[stripe].loi_kms, lvb->lvb_size);
921                 kms = ldlm_extent_shift_kms(NULL, kms);
922                 if (lsm->lsm_oinfo[stripe].loi_kms != kms)
923                         LDLM_DEBUG(lock, "updating kms from "LPU64" to "LPU64,
924                                    lsm->lsm_oinfo[stripe].loi_kms, kms);
925                 lsm->lsm_oinfo[stripe].loi_kms = kms;
926                 unlock_res_and_lock(lock);
927                 up(&inode->i_sem);
928         }
929
930 iput:
931         iput(inode);
932         wake_up(&lock->l_waitq);
933
934         ldlm_lock2handle(lock, &lockh);
935         ldlm_lock_decref(&lockh, LCK_PR);
936         RETURN(0);
937 }
938 #endif
939
940 static int ll_glimpse_callback(struct ldlm_lock *lock, void *reqp)
941 {
942         struct ptlrpc_request *req = reqp;
943         struct inode *inode = ll_inode_from_lock(lock);
944         struct ll_inode_info *lli;
945         struct ost_lvb *lvb;
946         struct lov_stripe_md *lsm;
947         int rc, size = sizeof(*lvb), stripe;
948         ENTRY;
949
950         if (inode == NULL)
951                 GOTO(out, rc = -ELDLM_NO_LOCK_DATA);
952         lli = ll_i2info(inode);
953         if (lli == NULL)
954                 GOTO(iput, rc = -ELDLM_NO_LOCK_DATA);
955
956         lsm = lli->lli_smd;
957         if (lsm == NULL)
958                 GOTO(iput, rc = -ELDLM_NO_LOCK_DATA);
959
960         /* First, find out which stripe index this lock corresponds to. */
961         stripe = ll_lock_to_stripe_offset(inode, lock);
962         if (stripe < 0) {
963                 CERROR("ll_lock_to_stripe_offset failed: %d\n", stripe);
964                 GOTO(iput, rc = -ELDLM_NO_LOCK_DATA);
965         }
966
967         rc = lustre_pack_reply(req, 1, &size, NULL);
968         if (rc) {
969                 CERROR("lustre_pack_reply: %d\n", rc);
970                 GOTO(iput, rc);
971         }
972
973         lvb = lustre_msg_buf(req->rq_repmsg, 0, sizeof(*lvb));
974         lvb->lvb_size = lli->lli_smd->lsm_oinfo[stripe].loi_kms;
975         lvb->lvb_mtime = LTIME_S(inode->i_mtime);
976         lvb->lvb_atime = LTIME_S(inode->i_atime);
977         lvb->lvb_ctime = LTIME_S(inode->i_ctime);
978
979         LDLM_DEBUG(lock, "i_size: %llu -> stripe number %u -> kms "LPU64,
980                    inode->i_size, stripe, lvb->lvb_size);
981         GOTO(iput, 0);
982  iput:
983         iput(inode);
984
985  out:
986         /* These errors are normal races, so we don't want to fill the console
987          * with messages by calling ptlrpc_error() */
988         if (rc == -ELDLM_NO_LOCK_DATA)
989                 lustre_pack_reply(req, 0, NULL, NULL);
990
991         req->rq_status = rc;
992         return rc;
993 }
994
995 /* NB: lov_merge_size will prefer locally cached writes if they extend the
996  * file (because it prefers KMS over RSS when larger) */
997 int ll_glimpse_size(struct inode *inode)
998 {
999         struct ll_inode_info *lli = ll_i2info(inode);
1000         struct ll_sb_info *sbi = ll_i2sbi(inode);
1001         ldlm_policy_data_t policy = { .l_extent = { 0, OBD_OBJECT_EOF } };
1002         struct lustre_handle lockh = { 0 };
1003         int rc, flags = LDLM_FL_HAS_INTENT;
1004         ENTRY;
1005
1006         CDEBUG(D_DLMTRACE, "Glimpsing inode %lu\n", inode->i_ino);
1007
1008         rc = obd_enqueue(sbi->ll_dt_exp, lli->lli_smd, LDLM_EXTENT, &policy,
1009                          LCK_PR, &flags, ll_extent_lock_callback,
1010                          ldlm_completion_ast, ll_glimpse_callback, inode,
1011                          sizeof(struct ost_lvb), lustre_swab_ost_lvb, &lockh);
1012         if (rc == -ENOENT)
1013                 RETURN(rc);
1014
1015         if (rc != 0) {
1016                 CERROR("obd_enqueue returned rc %d, returning -EIO\n", rc);
1017                 RETURN(rc > 0 ? -EIO : rc);
1018         }
1019
1020         down(&lli->lli_size_sem);
1021         inode->i_size = lov_merge_size(lli->lli_smd, 0);
1022         inode->i_blocks = lov_merge_blocks(lli->lli_smd);
1023         up(&lli->lli_size_sem);
1024
1025         LTIME_S(inode->i_mtime) = lov_merge_mtime(lli->lli_smd,
1026                                                   LTIME_S(inode->i_mtime));
1027
1028         CDEBUG(D_DLMTRACE, "glimpse: size: "LPU64", blocks: "LPU64"\n",
1029                (__u64)inode->i_size, (__u64)inode->i_blocks);
1030         
1031         obd_cancel(sbi->ll_dt_exp, lli->lli_smd, LCK_PR, &lockh);
1032         RETURN(rc);
1033 }
1034
1035 void ll_stime_record(struct ll_sb_info *sbi, struct timeval *start,
1036                     struct obd_service_time *stime)
1037 {
1038         struct timeval stop;
1039         do_gettimeofday(&stop);
1040                                                                                                                                                                                                      
1041         spin_lock(&sbi->ll_lock);
1042         lprocfs_stime_record(stime, &stop, start);
1043         spin_unlock(&sbi->ll_lock);
1044 }
1045
1046 int ll_extent_lock(struct ll_file_data *fd, struct inode *inode,
1047                    struct lov_stripe_md *lsm, int mode,
1048                    ldlm_policy_data_t *policy, struct lustre_handle *lockh,
1049                    int ast_flags, struct obd_service_time *stime)
1050 {
1051         struct ll_inode_info *lli = ll_i2info(inode);
1052         struct ll_sb_info *sbi = ll_i2sbi(inode);
1053         struct timeval start;
1054         int rc;
1055         ENTRY;
1056
1057         LASSERT(lockh->cookie == 0);
1058
1059         /* XXX phil: can we do this?  won't it screw the file size up? */
1060         if ((fd && (fd->fd_flags & LL_FILE_IGNORE_LOCK)) ||
1061             (sbi->ll_flags & LL_SBI_NOLCK))
1062                 RETURN(0);
1063
1064         CDEBUG(D_DLMTRACE, "Locking inode %lu, start "LPU64" end "LPU64"\n",
1065                inode->i_ino, policy->l_extent.start, policy->l_extent.end);
1066
1067         do_gettimeofday(&start);        
1068         rc = obd_enqueue(sbi->ll_dt_exp, lsm, LDLM_EXTENT, policy, mode,
1069                          &ast_flags, ll_extent_lock_callback,
1070                          ldlm_completion_ast, ll_glimpse_callback, inode,
1071                          sizeof(struct ost_lvb), lustre_swab_ost_lvb, lockh);
1072         if (rc > 0)
1073                 rc = -EIO;
1074         
1075         ll_stime_record(sbi, &start, stime);
1076
1077         if (policy->l_extent.start == 0 &&
1078             policy->l_extent.end == OBD_OBJECT_EOF) {
1079                 /* vmtruncate()->ll_truncate() first sets the i_size and then
1080                  * the kms under both a DLM lock and the i_sem.  If we don't
1081                  * get the i_sem here we can match the DLM lock and reset
1082                  * i_size from the kms before the truncating path has updated
1083                  * the kms.  generic_file_write can then trust the stale i_size
1084                  * when doing appending writes and effectively cancel the
1085                  * result of the truncate.  Getting the i_sem after the enqueue
1086                  * maintains the DLM -> i_sem acquiry order. */
1087                 down(&lli->lli_size_sem);
1088                 inode->i_size = lov_merge_size(lsm, 1);
1089                 up(&lli->lli_size_sem);
1090         }
1091         
1092         if (rc == 0) {
1093                 LTIME_S(inode->i_mtime) =
1094                         lov_merge_mtime(lsm, LTIME_S(inode->i_mtime));
1095         }
1096
1097         RETURN(rc);
1098 }
1099
1100 int ll_extent_unlock(struct ll_file_data *fd, struct inode *inode,
1101                      struct lov_stripe_md *lsm, int mode,
1102                      struct lustre_handle *lockh)
1103 {
1104         struct ll_sb_info *sbi = ll_i2sbi(inode);
1105         int rc;
1106         ENTRY;
1107
1108         /* XXX phil: can we do this?  won't it screw the file size up? */
1109         if ((fd && (fd->fd_flags & LL_FILE_IGNORE_LOCK)) ||
1110             (sbi->ll_flags & LL_SBI_NOLCK))
1111                 RETURN(0);
1112
1113         rc = obd_cancel(sbi->ll_dt_exp, lsm, mode, lockh);
1114
1115         RETURN(rc);
1116 }
1117
1118 static ssize_t ll_file_read(struct file *file, char *buf, size_t count,
1119                             loff_t *ppos)
1120 {
1121         struct inode *inode = file->f_dentry->d_inode;
1122         struct ll_inode_info *lli = ll_i2info(inode);
1123         struct lov_stripe_md *lsm = lli->lli_smd;
1124         struct ll_lock_tree tree;
1125         struct ll_lock_tree_node *node;
1126         int rc;
1127         ssize_t retval;
1128         __u64 kms;
1129         ENTRY;
1130         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p),size="LPSZ",offset=%Ld\n",
1131                inode->i_ino, inode->i_generation, inode, count, *ppos);
1132
1133         /* "If nbyte is 0, read() will return 0 and have no other results."
1134          *                      -- Single Unix Spec */
1135         if (count == 0)
1136                 RETURN(0);
1137
1138         lprocfs_counter_add(ll_i2sbi(inode)->ll_stats, LPROC_LL_READ_BYTES,
1139                             count);
1140
1141         if (!lsm)
1142                 RETURN(0);
1143
1144         node = ll_node_from_inode(inode, *ppos, *ppos  + count - 1,
1145                                   LCK_PR);
1146
1147         tree.lt_fd = file->private_data;
1148         
1149         rc = ll_tree_lock(&tree, node, inode, buf, count,
1150                           file->f_flags & O_NONBLOCK ? LDLM_FL_BLOCK_NOWAIT :0);
1151         if (rc != 0)
1152                 RETURN(rc);
1153
1154         down(&lli->lli_size_sem);
1155         kms = lov_merge_size(lsm, 1);
1156         if (*ppos + count - 1 > kms) {
1157                 /* A glimpse is necessary to determine whether we return a short
1158                  * read or some zeroes at the end of the buffer */
1159                 up(&lli->lli_size_sem);
1160                 retval = ll_glimpse_size(inode);
1161                 if (retval)
1162                         goto out;
1163         } else {
1164                 inode->i_size = kms;
1165                 up(&lli->lli_size_sem);
1166         }
1167
1168         CDEBUG(D_INFO, "Read ino %lu, "LPSZ" bytes, offset %lld, i_size %llu\n",
1169                inode->i_ino, count, *ppos, inode->i_size);
1170         
1171         /* turn off the kernel's read-ahead */
1172 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
1173         file->f_ramax = 0;
1174 #else
1175         file->f_ra.ra_pages = 0;
1176 #endif
1177         retval = generic_file_read(file, buf, count, ppos);
1178         ll_audit_log(inode, AUDIT_READ, retval);
1179
1180  out:
1181         ll_tree_unlock(&tree, inode);
1182         RETURN(retval);
1183 }
1184
1185 /*
1186  * Write to a file (through the page cache).
1187  */
1188 static ssize_t ll_file_write(struct file *file, const char *buf,
1189                              size_t count, loff_t *ppos)
1190 {
1191         struct inode *inode = file->f_dentry->d_inode;
1192         loff_t maxbytes = ll_file_maxbytes(inode);
1193         struct ll_lock_tree tree;
1194         struct ll_lock_tree_node *node;
1195         ssize_t retval;
1196         int rc;
1197
1198         ENTRY;
1199         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p),size="LPSZ",offset=%Ld\n",
1200                inode->i_ino, inode->i_generation, inode, count, *ppos);
1201
1202         SIGNAL_MASK_ASSERT(); /* XXX BUG 1511 */
1203
1204         /* POSIX, but surprised the VFS doesn't check this already */
1205         if (count == 0)
1206                 RETURN(0);
1207
1208         /* If file was opened for LL_IOC_LOV_SETSTRIPE but the ioctl wasn't
1209          * called on the file, don't fail the below assertion (bug 2388). */
1210         if (file->f_flags & O_LOV_DELAY_CREATE &&
1211             ll_i2info(inode)->lli_smd == NULL)
1212                 RETURN(-EBADF);
1213
1214         LASSERT(ll_i2info(inode)->lli_smd != NULL);
1215         
1216         if (file->f_flags & O_APPEND)
1217                 node = ll_node_from_inode(inode, 0, OBD_OBJECT_EOF, LCK_PW);
1218         else
1219                 node = ll_node_from_inode(inode, *ppos, *ppos  + count - 1,
1220                                           LCK_PW);
1221
1222         if (IS_ERR(node))
1223                 RETURN(PTR_ERR(node));
1224
1225         tree.lt_fd = file->private_data;
1226         
1227         rc = ll_tree_lock(&tree, node, inode, buf, count,
1228                           file->f_flags & O_NONBLOCK ? LDLM_FL_BLOCK_NOWAIT :0);
1229         if (rc != 0)
1230                 RETURN(rc);
1231
1232         /* this is ok, g_f_w will overwrite this under i_sem if it races
1233          * with a local truncate, it just makes our maxbyte checking easier */
1234         if (file->f_flags & O_APPEND)
1235                 *ppos = inode->i_size;
1236
1237         if (*ppos >= maxbytes) {
1238                 if (count || *ppos > maxbytes) {
1239                         send_sig(SIGXFSZ, current, 0);
1240                         GOTO(out, retval = -EFBIG);
1241                 }
1242         }
1243         if (*ppos + count > maxbytes)
1244                 count = maxbytes - *ppos;
1245
1246         CDEBUG(D_INFO, "Writing inode %lu, "LPSZ" bytes, offset %Lu\n",
1247                inode->i_ino, count, *ppos);
1248
1249         /* mark open handle dirty */
1250         set_bit(LLI_F_DIRTY_HANDLE, &(ll_i2info(inode)->lli_flags));
1251
1252         /* generic_file_write handles O_APPEND after getting i_sem */
1253         retval = generic_file_write(file, buf, count, ppos);
1254
1255         EXIT;
1256 out:
1257         ll_audit_log(inode, AUDIT_WRITE, retval);
1258
1259         ll_tree_unlock(&tree, inode);
1260         /* serialize with mmap/munmap/mremap */
1261         lprocfs_counter_add(ll_i2sbi(inode)->ll_stats, LPROC_LL_WRITE_BYTES,
1262                             retval > 0 ? retval : 0);
1263         return retval;
1264 }
1265
1266 static int ll_lov_setstripe_ea_info(struct inode *inode, struct file *file,
1267                                     int flags, struct lov_user_md *lum,
1268                                     int lum_size)
1269 {
1270         struct lookup_intent oit = {.it_op = IT_OPEN, .it_flags = flags};
1271         struct ll_inode_info *lli = ll_i2info(inode);
1272         struct ptlrpc_request *req = NULL;
1273         struct obd_client_handle *och;
1274         struct lov_stripe_md *lsm;
1275         struct lustre_md md;
1276         struct file *f;
1277         int rc = 0;
1278         ENTRY;
1279
1280         
1281         if ((file->f_flags+1) & O_ACCMODE)
1282                 oit.it_flags++;
1283         if (file->f_flags & O_TRUNC)
1284                 oit.it_flags |= 2;
1285
1286         down(&lli->lli_open_sem);
1287         lsm = lli->lli_smd;
1288         if (lsm) {
1289                 up(&lli->lli_open_sem);
1290                 CDEBUG(D_IOCTL, "stripe already exists for ino %lu\n",
1291                        inode->i_ino);
1292                 RETURN(-EEXIST);
1293         }
1294
1295         f = get_empty_filp();
1296         if (!f)
1297                 GOTO(out, -ENOMEM);
1298
1299         f->f_dentry = file->f_dentry;
1300         f->f_vfsmnt = file->f_vfsmnt;
1301         f->f_flags = flags;
1302
1303         rc = ll_intent_alloc(&oit);
1304         if (rc)
1305                 GOTO(out, rc);
1306
1307         rc = ll_intent_file_open(f, lum, lum_size, &oit);
1308         if (rc)
1309                 GOTO(out, rc);
1310         if (it_disposition(&oit, DISP_LOOKUP_NEG))
1311                 GOTO(out, -ENOENT);
1312         
1313         req = LUSTRE_IT(&oit)->it_data;
1314         rc = LUSTRE_IT(&oit)->it_status;
1315
1316         if (rc < 0)
1317                 GOTO(out, rc);
1318
1319         rc = mdc_req2lustre_md(ll_i2mdexp(inode), req, 1,
1320                                ll_i2dtexp(inode), &md);
1321         if (rc)
1322                 GOTO(out, rc);
1323         ll_update_inode(f->f_dentry->d_inode, &md);
1324
1325         OBD_ALLOC(och, sizeof(struct obd_client_handle));
1326         if (!och)
1327                 GOTO(out, rc = -ENOMEM);
1328         
1329          /* actually ll_local_open() cannot fail! */
1330         rc = ll_local_open(f, &oit, och);
1331         if (rc)
1332                 GOTO(out, rc);
1333
1334         if (LUSTRE_IT(&oit)->it_lock_mode) {
1335                 ldlm_lock_decref_and_cancel((struct lustre_handle *)
1336                                             &LUSTRE_IT(&oit)->it_lock_handle,
1337                                             LUSTRE_IT(&oit)->it_lock_mode);
1338                 LUSTRE_IT(&oit)->it_lock_mode = 0;
1339         }
1340
1341         ll_intent_release(&oit);
1342
1343         /* ll_file_release() will decrease the count, but won't free anything
1344          * because we have at least one more reference coming from actual
1345          * open. */
1346         down(&lli->lli_och_sem);
1347         lli->lli_open_fd_write_count++;
1348         up(&lli->lli_och_sem);
1349         rc = ll_file_release(f->f_dentry->d_inode, f);
1350         
1351         /* Now also destroy our supplemental och */
1352         ll_md_och_close(ll_i2mdexp(inode), f->f_dentry->d_inode, och, 0);
1353         EXIT;
1354 out:
1355         ll_intent_release(&oit);
1356         if (f)
1357                 put_filp(f);
1358         up(&lli->lli_open_sem);
1359         if (req != NULL)
1360                 ptlrpc_req_finished(req);
1361         return rc;
1362 }
1363
1364 static int ll_lov_setea(struct inode *inode, struct file *file,
1365                         unsigned long arg)
1366 {
1367         int flags = MDS_OPEN_HAS_OBJS | FMODE_WRITE;
1368         int lum_size = sizeof(struct lov_user_md) +
1369                 sizeof(struct lov_user_ost_data);
1370         struct lov_user_md  *lump;
1371         int rc;
1372         ENTRY;
1373
1374         if (!capable(CAP_SYS_ADMIN))
1375                 RETURN(-EPERM);
1376
1377         OBD_ALLOC(lump, lum_size);
1378         if (lump == NULL)
1379                 RETURN(-ENOMEM);
1380         
1381         rc = copy_from_user(lump, (struct lov_user_md  *)arg, lum_size);
1382         if (rc)
1383                 GOTO(out_free_lump, rc = -EFAULT);
1384
1385         rc = ll_lov_setstripe_ea_info(inode, file, flags, lump, lum_size);
1386         EXIT;
1387 out_free_lump:
1388         OBD_FREE(lump, lum_size);
1389         return rc;
1390 }
1391
1392 static int ll_lov_setstripe(struct inode *inode, struct file *file,
1393                             unsigned long arg)
1394 {
1395         struct lov_user_md lum, *lump = (struct lov_user_md *)arg;
1396         int rc, flags = FMODE_WRITE;
1397         ENTRY;
1398
1399         /* Bug 1152: copy properly when this is no longer true */
1400         LASSERT(sizeof(lum) == sizeof(*lump));
1401         LASSERT(sizeof(lum.lmm_objects[0]) == sizeof(lump->lmm_objects[0]));
1402         rc = copy_from_user(&lum, lump, sizeof(lum));
1403         if (rc)
1404                 RETURN(-EFAULT);
1405
1406         rc = ll_lov_setstripe_ea_info(inode, file, flags, &lum, sizeof(lum));
1407         if (rc == 0) {
1408                  put_user(0, &lump->lmm_stripe_count);
1409                  rc = obd_iocontrol(LL_IOC_LOV_GETSTRIPE, ll_i2dtexp(inode),
1410                                     0, ll_i2info(inode)->lli_smd, lump);
1411         }
1412         RETURN(rc);
1413 }
1414
1415 static int ll_lov_getstripe(struct inode *inode, unsigned long arg)
1416 {
1417         struct lov_stripe_md *lsm = ll_i2info(inode)->lli_smd;
1418
1419         if (!lsm)
1420                 RETURN(-ENODATA);
1421
1422         return obd_iocontrol(LL_IOC_LOV_GETSTRIPE, ll_i2dtexp(inode), 0, lsm,
1423                              (void *)arg);
1424 }
1425
1426 static int ll_get_grouplock(struct inode *inode, struct file *file,
1427                          unsigned long arg)
1428 {
1429         struct ll_file_data *fd = file->private_data;
1430         ldlm_policy_data_t policy = { .l_extent = { .start = 0,
1431                                                     .end = OBD_OBJECT_EOF}};
1432         struct lustre_handle lockh = { 0 };
1433         struct ll_inode_info *lli = ll_i2info(inode);
1434         struct lov_stripe_md *lsm = lli->lli_smd;
1435         int flags = 0, rc;
1436         ENTRY;
1437
1438         if (fd->fd_flags & LL_FILE_GROUP_LOCKED) {
1439                 RETURN(-EINVAL);
1440         }
1441
1442         policy.l_extent.gid = arg;
1443         if (file->f_flags & O_NONBLOCK)
1444                 flags = LDLM_FL_BLOCK_NOWAIT;
1445
1446         rc = ll_extent_lock(fd, inode, lsm, LCK_GROUP, &policy, &lockh, flags,
1447                             &ll_i2sbi(inode)->ll_grouplock_stime);
1448         if (rc != 0)
1449                 RETURN(rc);
1450
1451         fd->fd_flags |= LL_FILE_GROUP_LOCKED|LL_FILE_IGNORE_LOCK;
1452         fd->fd_gid = arg;
1453         memcpy(&fd->fd_cwlockh, &lockh, sizeof(lockh));
1454
1455         RETURN(0);
1456 }
1457
1458 static int ll_put_grouplock(struct inode *inode, struct file *file,
1459                          unsigned long arg)
1460 {
1461         struct ll_file_data *fd = file->private_data;
1462         struct ll_inode_info *lli = ll_i2info(inode);
1463         struct lov_stripe_md *lsm = lli->lli_smd;
1464         int rc;
1465         ENTRY;
1466
1467         if (!(fd->fd_flags & LL_FILE_GROUP_LOCKED)) {
1468                 /* Ugh, it's already unlocked. */
1469                 RETURN(-EINVAL);
1470         }
1471
1472         if (fd->fd_gid != arg) /* Ugh? Unlocking with different gid? */
1473                 RETURN(-EINVAL);
1474
1475         fd->fd_flags &= ~(LL_FILE_GROUP_LOCKED|LL_FILE_IGNORE_LOCK);
1476
1477         rc = ll_extent_unlock(fd, inode, lsm, LCK_GROUP, &fd->fd_cwlockh);
1478         if (rc)
1479                 RETURN(rc);
1480
1481         fd->fd_gid = 0;
1482         memset(&fd->fd_cwlockh, 0, sizeof(fd->fd_cwlockh));
1483
1484         RETURN(0);
1485 }
1486
1487 int ll_file_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
1488                   unsigned long arg)
1489 {
1490         struct ll_file_data *fd = file->private_data;
1491         struct ll_sb_info *sbi = ll_i2sbi(inode);
1492         int flags;
1493         ENTRY;
1494
1495         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p),cmd=%x\n", inode->i_ino,
1496                inode->i_generation, inode, cmd);
1497
1498         if (_IOC_TYPE(cmd) == 'T') /* tty ioctls */
1499                 RETURN(-ENOTTY);
1500
1501         lprocfs_counter_incr(ll_i2sbi(inode)->ll_stats, LPROC_LL_IOCTL);
1502         switch(cmd) {
1503         case LL_IOC_GETFLAGS:
1504                 /* Get the current value of the file flags */
1505                 return put_user(fd->fd_flags, (int *)arg);
1506         case LL_IOC_SETFLAGS:
1507         case LL_IOC_CLRFLAGS:
1508                 /* Set or clear specific file flags */
1509                 /* XXX This probably needs checks to ensure the flags are
1510                  *     not abused, and to handle any flag side effects.
1511                  */
1512                 if (get_user(flags, (int *) arg))
1513                         RETURN(-EFAULT);
1514
1515                 if (cmd == LL_IOC_SETFLAGS)
1516                         fd->fd_flags |= flags;
1517                 else
1518                         fd->fd_flags &= ~flags;
1519                 RETURN(0);
1520         case LL_IOC_LOV_SETSTRIPE:
1521                 RETURN(ll_lov_setstripe(inode, file, arg));
1522         case LL_IOC_LOV_SETEA:
1523                 RETURN(ll_lov_setea(inode, file, arg));
1524         case IOC_MDC_SHOWFID: {
1525                 struct lustre_id *idp = (struct lustre_id *)arg;
1526                 struct lustre_id id;
1527                 char *filename;
1528                 int rc;
1529
1530                 filename = getname((const char *)arg);
1531                 if (IS_ERR(filename))
1532                         RETURN(PTR_ERR(filename));
1533
1534                 ll_inode2id(&id, inode);
1535
1536                 rc = ll_get_fid(sbi->ll_md_exp, &id, filename, &id);
1537                 if (rc < 0)
1538                         GOTO(out_filename, rc);
1539
1540                 rc = copy_to_user(idp, &id, sizeof(*idp));
1541                 if (rc)
1542                         GOTO(out_filename, rc = -EFAULT);
1543
1544                 EXIT;
1545         out_filename:
1546                 putname(filename);
1547                 return rc;
1548         }
1549         case LL_IOC_KEY_TYPE: {
1550                 struct obd_ioctl_data *data;
1551                 char *buf = NULL;
1552                 char *type;
1553                 int typelen, rc, len = 0;
1554
1555                 rc = obd_ioctl_getdata(&buf, &len, (void *)arg);
1556                 if (rc)
1557                         RETURN(rc);
1558                 data = (void *)buf;
1559
1560                 type = data->ioc_inlbuf1;
1561                 typelen = data->ioc_inllen1;
1562
1563                 if (typelen < 1) {
1564                         CDEBUG(D_INFO, "LL_IOC_KEY_TYPE missing filename\n");
1565                         GOTO(out, rc = -EINVAL);
1566                 }
1567                 ll_set_sb_gksinfo(inode->i_sb, type);
1568                 EXIT;
1569         out:
1570                 obd_ioctl_freedata(buf, len);
1571                 return rc;
1572         }
1573
1574         case LL_IOC_LOV_GETSTRIPE:
1575                 RETURN(ll_lov_getstripe(inode, arg));
1576         case EXT3_IOC_GETFLAGS:
1577         case EXT3_IOC_SETFLAGS:
1578                 RETURN( ll_iocontrol(inode, file, cmd, arg) );
1579         case LL_IOC_GROUP_LOCK:
1580                 RETURN(ll_get_grouplock(inode, file, arg));
1581         case LL_IOC_GROUP_UNLOCK:
1582                 RETURN(ll_put_grouplock(inode, file, arg));
1583         case EXT3_IOC_GETVERSION_OLD:
1584         case EXT3_IOC_GETVERSION:
1585                 return put_user(inode->i_generation, (int *) arg);
1586         /* We need to special case any other ioctls we want to handle,
1587          * to send them to the MDS/OST as appropriate and to properly
1588          * network encode the arg field.
1589         case EXT2_IOC_GETVERSION_OLD:
1590         case EXT2_IOC_GETVERSION_NEW:
1591         case EXT2_IOC_SETVERSION_OLD:
1592         case EXT2_IOC_SETVERSION_NEW:
1593         case EXT3_IOC_SETVERSION_OLD:
1594         case EXT3_IOC_SETVERSION:
1595         */
1596         case LL_IOC_FLUSH_CRED:
1597                 RETURN(ll_flush_cred(inode));
1598         case LL_IOC_AUDIT:
1599                 RETURN(ll_set_audit(inode, arg));
1600         default:
1601                 RETURN( obd_iocontrol(cmd, ll_i2dtexp(inode), 0, NULL,
1602                                       (void *)arg) );
1603         }
1604 }
1605
1606 loff_t ll_file_seek(struct file *file, loff_t offset, int origin)
1607 {
1608         struct inode *inode = file->f_dentry->d_inode;
1609         struct ll_file_data *fd = file->private_data;
1610         struct lov_stripe_md *lsm = ll_i2info(inode)->lli_smd;
1611         struct lustre_handle lockh = {0};
1612         loff_t retval;
1613         ENTRY;
1614         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p),to=%llu\n", inode->i_ino,
1615                inode->i_generation, inode,
1616                offset + ((origin==2) ? inode->i_size : file->f_pos));
1617
1618         lprocfs_counter_incr(ll_i2sbi(inode)->ll_stats, LPROC_LL_LLSEEK);
1619         if (origin == 2) { /* SEEK_END */
1620                 ldlm_policy_data_t policy = { .l_extent = {0, OBD_OBJECT_EOF }};
1621                 struct ll_inode_info *lli = ll_i2info(inode);
1622                 int nonblock = 0, rc;
1623
1624                 if (file->f_flags & O_NONBLOCK)
1625                         nonblock = LDLM_FL_BLOCK_NOWAIT;
1626
1627                 rc = ll_extent_lock(fd, inode, lsm, LCK_PR, &policy, &lockh,
1628                                     nonblock, &ll_i2sbi(inode)->ll_seek_stime);
1629                 if (rc != 0)
1630                         RETURN(rc);
1631
1632                 down(&lli->lli_size_sem);
1633                 offset += inode->i_size;
1634                 up(&lli->lli_size_sem);
1635         } else if (origin == 1) { /* SEEK_CUR */
1636                 offset += file->f_pos;
1637         }
1638
1639         retval = -EINVAL;
1640         if (offset >= 0 && offset <= ll_file_maxbytes(inode)) {
1641                 if (offset != file->f_pos) {
1642                         file->f_pos = offset;
1643 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
1644                         file->f_reada = 0;
1645                         file->f_version = ++event;
1646 #endif
1647                 }
1648                 retval = offset;
1649         }
1650
1651         if (origin == 2)
1652                 ll_extent_unlock(fd, inode, lsm, LCK_PR, &lockh);
1653         RETURN(retval);
1654 }
1655
1656 int ll_fsync(struct file *file, struct dentry *dentry, int data)
1657 {
1658         struct inode *inode = dentry->d_inode;
1659         struct lov_stripe_md *lsm = ll_i2info(inode)->lli_smd;
1660         struct lustre_id id;
1661         struct ptlrpc_request *req;
1662         int rc, err;
1663         ENTRY;
1664         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p)\n", inode->i_ino,
1665                inode->i_generation, inode);
1666
1667         lprocfs_counter_incr(ll_i2sbi(inode)->ll_stats, LPROC_LL_FSYNC);
1668
1669         /* fsync's caller has already called _fdata{sync,write}, we want
1670          * that IO to finish before calling the osc and mdc sync methods */
1671         rc = filemap_fdatawait(inode->i_mapping);
1672
1673         ll_inode2id(&id, inode);
1674         err = md_sync(ll_i2sbi(inode)->ll_md_exp, &id, &req);
1675         if (!rc)
1676                 rc = err;
1677         if (!err)
1678                 ptlrpc_req_finished(req);
1679
1680         if (data && lsm) {
1681                 struct obdo *oa = obdo_alloc();
1682
1683                 if (!oa)
1684                         RETURN(rc ? rc : -ENOMEM);
1685
1686                 oa->o_id = lsm->lsm_object_id;
1687                 oa->o_gr = lsm->lsm_object_gr;
1688                 oa->o_valid = OBD_MD_FLID | OBD_MD_FLGROUP;
1689
1690                 obdo_from_inode(oa, inode, (OBD_MD_FLTYPE | OBD_MD_FLATIME |
1691                                             OBD_MD_FLMTIME | OBD_MD_FLCTIME |
1692                                             OBD_MD_FLGROUP));
1693
1694                 err = obd_sync(ll_i2sbi(inode)->ll_dt_exp, oa, lsm,
1695                                0, OBD_OBJECT_EOF);
1696                 if (!rc)
1697                         rc = err;
1698                 obdo_free(oa);
1699         }
1700
1701         RETURN(rc);
1702 }
1703
1704 int ll_file_flock(struct file *file, int cmd, struct file_lock *file_lock)
1705 {
1706         struct inode *inode = file->f_dentry->d_inode;
1707         struct ll_inode_info *li = ll_i2info(inode);
1708         struct ll_sb_info *sbi = ll_i2sbi(inode);
1709         struct obd_device *obddev;
1710         struct ldlm_res_id res_id =
1711                 { .name = {id_fid(&li->lli_id), id_group(&li->lli_id), LDLM_FLOCK} };
1712         struct lustre_handle lockh = {0};
1713         ldlm_policy_data_t flock;
1714         ldlm_mode_t mode = 0;
1715         int flags = 0;
1716         int rc;
1717         ENTRY;
1718
1719         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu file_lock=%p\n",
1720                inode->i_ino, file_lock);
1721
1722         flock.l_flock.pid = file_lock->fl_pid;
1723         flock.l_flock.start = file_lock->fl_start;
1724         flock.l_flock.end = file_lock->fl_end;
1725
1726         switch (file_lock->fl_type) {
1727         case F_RDLCK:
1728                 mode = LCK_PR;
1729                 break;
1730         case F_UNLCK:
1731                 /* An unlock request may or may not have any relation to
1732                  * existing locks so we may not be able to pass a lock handle
1733                  * via a normal ldlm_lock_cancel() request. The request may even
1734                  * unlock a byte range in the middle of an existing lock. In
1735                  * order to process an unlock request we need all of the same
1736                  * information that is given with a normal read or write record
1737                  * lock request. To avoid creating another ldlm unlock (cancel)
1738                  * message we'll treat a LCK_NL flock request as an unlock. */
1739                 mode = LCK_NL;
1740                 break;
1741         case F_WRLCK:
1742                 mode = LCK_PW;
1743                 break;
1744         default:
1745                 CERROR("unknown fcntl lock type: %d\n", file_lock->fl_type);
1746                 LBUG();
1747         }
1748
1749         switch (cmd) {
1750         case F_SETLKW:
1751 #ifdef F_SETLKW64
1752         case F_SETLKW64:
1753 #endif
1754                 flags = 0;
1755                 break;
1756         case F_SETLK:
1757 #ifdef F_SETLK64
1758         case F_SETLK64:
1759 #endif
1760                 flags = LDLM_FL_BLOCK_NOWAIT;
1761                 break;
1762         case F_GETLK:
1763 #ifdef F_GETLK64
1764         case F_GETLK64:
1765 #endif
1766                 flags = LDLM_FL_TEST_LOCK;
1767                 /* Save the old mode so that if the mode in the lock changes we
1768                  * can decrement the appropriate reader or writer refcount. */
1769                 file_lock->fl_type = mode;
1770                 break;
1771         default:
1772                 CERROR("unknown fcntl lock command: %d\n", cmd);
1773                 LBUG();
1774         }
1775
1776         CDEBUG(D_DLMTRACE, "inode=%lu, pid="LPU64", flags=%#x, mode=%u, "
1777                "start="LPU64", end="LPU64"\n", inode->i_ino, flock.l_flock.pid,
1778                flags, mode, flock.l_flock.start, flock.l_flock.end);
1779
1780         obddev = md_get_real_obd(sbi->ll_md_exp, &li->lli_id);
1781         rc = ldlm_cli_enqueue(obddev->obd_self_export, NULL,
1782                               obddev->obd_namespace,
1783                               res_id, LDLM_FLOCK, &flock, mode, &flags,
1784                               NULL, ldlm_flock_completion_ast, NULL, file_lock,
1785                               NULL, 0, NULL, &lockh);
1786         RETURN(rc);
1787 }
1788
1789 int ll_inode_revalidate_it(struct dentry *dentry)
1790 {
1791         struct lookup_intent oit = { .it_op = IT_GETATTR };
1792         struct inode *inode = dentry->d_inode;
1793         struct ptlrpc_request *req = NULL;
1794         struct ll_inode_info *lli;
1795         struct lov_stripe_md *lsm;
1796         struct ll_sb_info *sbi;
1797         struct lustre_id id;
1798         int rc;
1799         ENTRY;
1800
1801         if (!inode) {
1802                 CERROR("REPORT THIS LINE TO PETER\n");
1803                 RETURN(0);
1804         }
1805         
1806         sbi = ll_i2sbi(inode);
1807         
1808         ll_inode2id(&id, inode);
1809         lli = ll_i2info(inode);
1810         LASSERT(id_fid(&id) != 0);
1811
1812         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p), name=%s(%p)\n",
1813                inode->i_ino, inode->i_generation, inode, dentry->d_name.name,
1814                dentry);
1815
1816 #if (LINUX_VERSION_CODE <= KERNEL_VERSION(2,5,0))
1817         lprocfs_counter_incr(ll_i2sbi(inode)->ll_stats, LPROC_LL_REVALIDATE);
1818 #endif
1819
1820         rc = ll_intent_alloc(&oit);
1821         if (rc)
1822                 RETURN(-ENOMEM);
1823         
1824         rc = ll_crypto_init_it_key(inode, &oit);
1825         if (rc)
1826                 GOTO(out, rc);
1827
1828         rc = md_intent_lock(sbi->ll_md_exp, &id, NULL, 0, NULL, 0, &id,
1829                             &oit, 0, &req, ll_mdc_blocking_ast);
1830         if (rc < 0)
1831                 GOTO(out, rc);
1832
1833         rc = revalidate_it_finish(req, 1, &oit, dentry);
1834         if (rc) {
1835                 GOTO(out, rc);
1836         }
1837
1838         ll_lookup_finish_locks(&oit, dentry);
1839
1840         if (!LLI_HAVE_FLSIZE(inode)) {
1841                 /* if object not yet allocated, don't validate size */
1842                 lsm = lli->lli_smd;
1843                 if (lsm != NULL) {
1844                         /* ll_glimpse_size() will prefer locally cached
1845                          * writes if they extend the file */
1846                         rc = ll_glimpse_size(inode);
1847                 }
1848         }
1849         EXIT;
1850 out:
1851         ll_intent_release(&oit);
1852         if (req)
1853                 ptlrpc_req_finished(req);
1854         return rc;
1855 }
1856
1857 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,5,0))
1858 int ll_getattr(struct vfsmount *mnt, struct dentry *de, struct kstat *stat)
1859 {
1860         int res = 0;
1861         struct inode *inode = de->d_inode;
1862         struct ll_inode_info *lli = ll_i2info(inode);
1863
1864         res = ll_inode_revalidate_it(de);
1865         lprocfs_counter_incr(ll_i2sbi(inode)->ll_stats, LPROC_LL_GETATTR);
1866
1867         if (res)
1868                 return res;
1869
1870         stat->ino = inode->i_ino;
1871         stat->mode = inode->i_mode;
1872         stat->nlink = inode->i_nlink;
1873         stat->uid = inode->i_uid;
1874         stat->gid = inode->i_gid;
1875         stat->atime = inode->i_atime;
1876         stat->mtime = inode->i_mtime;
1877         stat->ctime = inode->i_ctime;
1878         stat->blksize = inode->i_blksize;
1879
1880         down(&lli->lli_size_sem);
1881         stat->size = inode->i_size;
1882         stat->blocks = inode->i_blocks;
1883         up(&lli->lli_size_sem);
1884         
1885         stat->rdev = kdev_t_to_nr(inode->i_rdev);
1886         stat->dev = id_group(&ll_i2info(inode)->lli_id);
1887         return 0;
1888 }
1889 #endif
1890
1891 static
1892 int ll_setxattr_internal(struct inode *inode, const char *name,
1893                          const void *value, size_t size, int flags, 
1894                          __u64 valid)
1895 {
1896         struct ll_sb_info *sbi = ll_i2sbi(inode);
1897         struct ptlrpc_request *request = NULL;
1898         struct mdc_op_data *op_data;
1899         struct iattr attr;
1900         void *key = NULL;
1901         int rc = 0, key_size = 0;
1902         ENTRY;
1903
1904         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu\n", inode->i_ino);
1905         lprocfs_counter_incr(ll_i2sbi(inode)->ll_stats, LPROC_LL_SETXATTR);
1906
1907         if (sbi->ll_remote && !strcmp(name, XATTR_NAME_ACL_ACCESS))
1908                 RETURN(-EOPNOTSUPP);
1909
1910         memset(&attr, 0x0, sizeof(attr));
1911         attr.ia_valid |= valid;
1912         attr.ia_attr_flags = flags;
1913
1914         if (strcmp(name, XATTR_NAME_ACL_ACCESS) == 0) {
1915                 rc = ll_crypto_get_mac(inode, &attr, (void *)value, size, 
1916                                        &key, &key_size);
1917                 if (rc) {
1918                         CERROR("can not get right mac, rc=%d\n", rc);
1919                         GOTO(out, rc);
1920                 }
1921         }
1922
1923         OBD_ALLOC(op_data, sizeof(*op_data));
1924         if (!op_data)
1925                 RETURN(-ENOMEM);
1926         
1927         ll_inode2mdc_data(op_data, inode, (OBD_MD_FLID | OBD_MD_MEA));
1928
1929         rc = md_setattr(sbi->ll_md_exp, op_data, &attr,
1930                         (void *)name, strnlen(name, XATTR_NAME_MAX) + 1, 
1931                         (void *)value,  size, key, key_size, &request);
1932         OBD_FREE(op_data, sizeof(*op_data));
1933         
1934         if (rc) {
1935                 CDEBUG(D_SEC, "md_setattr fails: rc = %d\n", rc);
1936                 GOTO(out, rc);
1937         }
1938 out:
1939         if (key && key_size) 
1940                 OBD_FREE(key, key_size);
1941         ptlrpc_req_finished(request);
1942         RETURN(rc);
1943 }
1944
1945 int ll_setxattr(struct dentry *dentry, const char *name, const void *value,
1946                 size_t size, int flags)
1947 {
1948         int rc, error;
1949         struct posix_acl *acl;
1950         struct ll_inode_info *lli;
1951         ENTRY;
1952
1953         rc = ll_setxattr_internal(dentry->d_inode, name, value, size, 
1954                                   flags, ATTR_EA);
1955
1956         /* update inode's acl info */
1957         if (rc == 0 && strcmp(name, XATTR_NAME_ACL_ACCESS) == 0) {
1958                 if (value) {
1959                         acl = posix_acl_from_xattr(value, size);
1960                         if (IS_ERR(acl)) {
1961                                 CERROR("convert from xattr to acl error: %ld",
1962                                         PTR_ERR(acl));
1963                                 GOTO(out, rc);
1964                         } else if (acl) {
1965                                 error = posix_acl_valid(acl);
1966                                 if (error) {
1967                                         CERROR("acl valid error: %d", error);
1968                                         posix_acl_release(acl);
1969                                         GOTO(out, rc);
1970                                 }
1971                         }
1972                 } else {
1973                         acl = NULL;
1974                 }
1975                                         
1976                 lli = ll_i2info(dentry->d_inode);
1977                 spin_lock(&lli->lli_lock);
1978                 if (lli->lli_posix_acl != NULL)
1979                         posix_acl_release(lli->lli_posix_acl);
1980                 lli->lli_posix_acl = acl;
1981                 spin_unlock(&lli->lli_lock);
1982         }
1983         EXIT;
1984 out:
1985         return(rc);
1986 }
1987
1988 int ll_removexattr(struct dentry *dentry, const char *name)
1989 {
1990         return ll_setxattr_internal(dentry->d_inode, name, NULL, 0, 0,
1991                                     ATTR_EA_RM);
1992 }
1993
1994 int ll_getxattr_internal(struct inode *inode, const char *name,
1995                          void *value, size_t size, __u64 valid)
1996 {
1997         struct ptlrpc_request *request = NULL;
1998         struct ll_sb_info *sbi = ll_i2sbi(inode);
1999         struct lustre_id id;
2000         struct mds_body *body;
2001         void *ea_data; 
2002         int rc, ea_size;
2003         ENTRY;
2004
2005         lprocfs_counter_incr(ll_i2sbi(inode)->ll_stats, LPROC_LL_GETXATTR);
2006
2007         if (sbi->ll_remote && !strcmp(name, XATTR_NAME_ACL_ACCESS))
2008                 RETURN(-EOPNOTSUPP);
2009
2010         ll_inode2id(&id, inode);
2011         rc = md_getattr(sbi->ll_md_exp, &id, valid, name, NULL, 0,
2012                         size, NULL, &request);
2013         if (rc) {
2014                 if (rc != -ENODATA && rc != -EOPNOTSUPP)
2015                         CERROR("rc = %d\n", rc);
2016                 GOTO(out, rc);
2017         }
2018
2019         body = lustre_msg_buf(request->rq_repmsg, 0, sizeof(*body));
2020         LASSERT(body != NULL);
2021         LASSERT_REPSWABBED(request, 0);
2022
2023         ea_size = body->eadatasize;
2024         if (size == 0) 
2025                 GOTO(out, rc = ea_size);
2026
2027         LASSERT(ea_size <= request->rq_repmsg->buflens[1]);
2028         ea_data = lustre_msg_buf(request->rq_repmsg, 1, ea_size);
2029         LASSERT(ea_data != NULL);
2030         LASSERT_REPSWABBED(request, 1);
2031
2032         if (value)
2033                 memcpy(value, ea_data, ea_size);
2034         rc = ea_size;
2035
2036  out:
2037         ptlrpc_req_finished(request);
2038         RETURN(rc);
2039 }
2040
2041 int ll_getxattr(struct dentry *dentry, const char *name, void *value,
2042                 size_t size)
2043 {
2044         return ll_getxattr_internal(dentry->d_inode, name,
2045                                     value, size, OBD_MD_FLXATTR);
2046 }
2047
2048 int ll_listxattr(struct dentry *dentry, char *list, size_t size)
2049 {
2050         return ll_getxattr_internal(dentry->d_inode, NULL, list, size,
2051                                     OBD_MD_FLXATTRLIST);
2052 }
2053
2054 /*
2055  * Here we hold DLM lock across permission check, to get better
2056  * conformance especially for remote acl. will introduce certain
2057  * overhead, maybe need a profile.
2058  */
2059 static int
2060 lustre_check_acl(struct inode *inode, int mask)
2061 {
2062         struct lookup_intent it = { .it_op = IT_GETATTR };
2063         struct dentry de = { .d_inode = inode };
2064         struct ll_sb_info *sbi;
2065         struct lustre_id id;
2066         struct ptlrpc_request *req = NULL;
2067         struct ll_inode_info *lli = ll_i2info(inode);
2068         struct posix_acl *acl;
2069         int rc = 0;
2070         ENTRY;
2071
2072         sbi = ll_i2sbi(inode);
2073         ll_inode2id(&id, inode);
2074
2075         if (ll_intent_alloc(&it))
2076                 return -EACCES;
2077
2078         rc = md_intent_lock(sbi->ll_md_exp, &id, NULL, 0, NULL, 0, &id,
2079                             &it, 0, &req, ll_mdc_blocking_ast);
2080         if (rc < 0) {
2081                 ll_intent_free(&it);
2082                 GOTO(out, rc);
2083         }
2084
2085         rc = revalidate_it_finish(req, 1, &it, &de);
2086         if (rc) {
2087                 ll_intent_release(&it);
2088                 GOTO(out, rc);
2089         }
2090
2091         if (sbi->ll_remote) {
2092                 rc = ll_remote_acl_permission(inode, mask);
2093         } else {
2094                 spin_lock(&lli->lli_lock);
2095                 acl = posix_acl_dup(ll_i2info(inode)->lli_posix_acl);
2096                 spin_unlock(&lli->lli_lock);
2097
2098                 if (!acl)
2099                         rc = -EAGAIN;
2100                 else {
2101                         rc = posix_acl_permission(inode, acl, mask);
2102                         posix_acl_release(acl);
2103                 }
2104         }
2105
2106         ll_lookup_finish_locks(&it, &de);
2107         ll_intent_free(&it);
2108
2109 out:
2110         if (req)
2111                 ptlrpc_req_finished(req);
2112
2113         RETURN(rc);
2114 }
2115
2116 int ll_inode_permission(struct inode *inode, int mask, struct nameidata *nd)
2117 {
2118         struct ll_sb_info *sbi = ll_i2sbi(inode);
2119
2120         /* for remote client, permission bits in inode doesn't
2121          * play a role anymore.
2122          */
2123         if (sbi->ll_remote)
2124                 return lustre_check_acl(inode, mask);
2125
2126         return generic_permission(inode, mask, lustre_check_acl);
2127 }
2128
2129 struct file_operations ll_file_operations = {
2130         .read           = ll_file_read,
2131         .write          = ll_file_write,
2132         .ioctl          = ll_file_ioctl,
2133         .open           = ll_file_open,
2134         .release        = ll_file_release,
2135         .mmap           = ll_file_mmap,
2136         .llseek         = ll_file_seek,
2137 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
2138         .sendfile       = generic_file_sendfile,
2139 #endif
2140         .fsync          = ll_fsync,
2141         .lock           = ll_file_flock
2142 };
2143
2144 struct inode_operations ll_file_inode_operations = {
2145         .setattr        = ll_setattr,
2146         .truncate       = ll_truncate,
2147 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,5,0))
2148         .getattr        = ll_getattr,
2149 #else
2150         .revalidate_it  = ll_inode_revalidate_it,
2151 #endif
2152         .setxattr       = ll_setxattr,
2153         .getxattr       = ll_getxattr,
2154         .listxattr      = ll_listxattr,
2155         .removexattr    = ll_removexattr,
2156         .permission     = ll_inode_permission,
2157 };
2158