Whamcloud - gitweb
LU-673 llite: Add some metadata stats, fix some file stats.
[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  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
30  * Use is subject to license terms.
31  *
32  * Copyright (c) 2011, 2012, Whamcloud, Inc.
33  */
34 /*
35  * This file is part of Lustre, http://www.lustre.org/
36  * Lustre is a trademark of Sun Microsystems, Inc.
37  *
38  * lustre/llite/file.c
39  *
40  * Author: Peter Braam <braam@clusterfs.com>
41  * Author: Phil Schwan <phil@clusterfs.com>
42  * Author: Andreas Dilger <adilger@clusterfs.com>
43  */
44
45 #define DEBUG_SUBSYSTEM S_LLITE
46 #include <lustre_dlm.h>
47 #include <lustre_lite.h>
48 #include <linux/pagemap.h>
49 #include <linux/file.h>
50 #include "llite_internal.h"
51 #include <lustre/ll_fiemap.h>
52
53 #include "cl_object.h"
54
55 struct ll_file_data *ll_file_data_get(void)
56 {
57         struct ll_file_data *fd;
58
59         OBD_SLAB_ALLOC_PTR_GFP(fd, ll_file_data_slab, CFS_ALLOC_IO);
60         return fd;
61 }
62
63 static void ll_file_data_put(struct ll_file_data *fd)
64 {
65         if (fd != NULL)
66                 OBD_SLAB_FREE_PTR(fd, ll_file_data_slab);
67 }
68
69 void ll_pack_inode2opdata(struct inode *inode, struct md_op_data *op_data,
70                           struct lustre_handle *fh)
71 {
72         op_data->op_fid1 = ll_i2info(inode)->lli_fid;
73         op_data->op_attr.ia_mode = inode->i_mode;
74         op_data->op_attr.ia_atime = inode->i_atime;
75         op_data->op_attr.ia_mtime = inode->i_mtime;
76         op_data->op_attr.ia_ctime = inode->i_ctime;
77         op_data->op_attr.ia_size = i_size_read(inode);
78         op_data->op_attr_blocks = inode->i_blocks;
79         ((struct ll_iattr *)&op_data->op_attr)->ia_attr_flags =
80                                         ll_inode_to_ext_flags(inode->i_flags);
81         op_data->op_ioepoch = ll_i2info(inode)->lli_ioepoch;
82         if (fh)
83                 op_data->op_handle = *fh;
84         op_data->op_capa1 = ll_mdscapa_get(inode);
85 }
86
87 /**
88  * Closes the IO epoch and packs all the attributes into @op_data for
89  * the CLOSE rpc.
90  */
91 static void ll_prepare_close(struct inode *inode, struct md_op_data *op_data,
92                              struct obd_client_handle *och)
93 {
94         ENTRY;
95
96         op_data->op_attr.ia_valid = ATTR_MODE | ATTR_ATIME_SET |
97                                  ATTR_MTIME_SET | ATTR_CTIME_SET;
98
99         if (!(och->och_flags & FMODE_WRITE))
100                 goto out;
101
102         if (!exp_connect_som(ll_i2mdexp(inode)) || !S_ISREG(inode->i_mode))
103                 op_data->op_attr.ia_valid |= ATTR_SIZE | ATTR_BLOCKS;
104         else
105                 ll_ioepoch_close(inode, op_data, &och, 0);
106
107 out:
108         ll_pack_inode2opdata(inode, op_data, &och->och_fh);
109         ll_prep_md_op_data(op_data, inode, NULL, NULL,
110                            0, 0, LUSTRE_OPC_ANY, NULL);
111         EXIT;
112 }
113
114 static int ll_close_inode_openhandle(struct obd_export *md_exp,
115                                      struct inode *inode,
116                                      struct obd_client_handle *och)
117 {
118         struct obd_export *exp = ll_i2mdexp(inode);
119         struct md_op_data *op_data;
120         struct ptlrpc_request *req = NULL;
121         struct obd_device *obd = class_exp2obd(exp);
122         int epoch_close = 1;
123         int rc;
124         ENTRY;
125
126         if (obd == NULL) {
127                 /*
128                  * XXX: in case of LMV, is this correct to access
129                  * ->exp_handle?
130                  */
131                 CERROR("Invalid MDC connection handle "LPX64"\n",
132                        ll_i2mdexp(inode)->exp_handle.h_cookie);
133                 GOTO(out, rc = 0);
134         }
135
136         OBD_ALLOC_PTR(op_data);
137         if (op_data == NULL)
138                 GOTO(out, rc = -ENOMEM); // XXX We leak openhandle and request here.
139
140         ll_prepare_close(inode, op_data, och);
141         epoch_close = (op_data->op_flags & MF_EPOCH_CLOSE);
142         rc = md_close(md_exp, op_data, och->och_mod, &req);
143         if (rc == -EAGAIN) {
144                 /* This close must have the epoch closed. */
145                 LASSERT(epoch_close);
146                 /* MDS has instructed us to obtain Size-on-MDS attribute from
147                  * OSTs and send setattr to back to MDS. */
148                 rc = ll_som_update(inode, op_data);
149                 if (rc) {
150                         CERROR("inode %lu mdc Size-on-MDS update failed: "
151                                "rc = %d\n", inode->i_ino, rc);
152                         rc = 0;
153                 }
154         } else if (rc) {
155                 CERROR("inode %lu mdc close failed: rc = %d\n",
156                        inode->i_ino, rc);
157         }
158         ll_finish_md_op_data(op_data);
159
160         if (rc == 0) {
161                 rc = ll_objects_destroy(req, inode);
162                 if (rc)
163                         CERROR("inode %lu ll_objects destroy: rc = %d\n",
164                                inode->i_ino, rc);
165         }
166
167         EXIT;
168 out:
169
170         if (exp_connect_som(exp) && !epoch_close &&
171             S_ISREG(inode->i_mode) && (och->och_flags & FMODE_WRITE)) {
172                 ll_queue_done_writing(inode, LLIF_DONE_WRITING);
173         } else {
174                 md_clear_open_replay_data(md_exp, och);
175                 /* Free @och if it is not waiting for DONE_WRITING. */
176                 och->och_fh.cookie = DEAD_HANDLE_MAGIC;
177                 OBD_FREE_PTR(och);
178         }
179         if (req) /* This is close request */
180                 ptlrpc_req_finished(req);
181         return rc;
182 }
183
184 int ll_md_real_close(struct inode *inode, int flags)
185 {
186         struct ll_inode_info *lli = ll_i2info(inode);
187         struct obd_client_handle **och_p;
188         struct obd_client_handle *och;
189         __u64 *och_usecount;
190         int rc = 0;
191         ENTRY;
192
193         if (flags & FMODE_WRITE) {
194                 och_p = &lli->lli_mds_write_och;
195                 och_usecount = &lli->lli_open_fd_write_count;
196         } else if (flags & FMODE_EXEC) {
197                 och_p = &lli->lli_mds_exec_och;
198                 och_usecount = &lli->lli_open_fd_exec_count;
199         } else {
200                 LASSERT(flags & FMODE_READ);
201                 och_p = &lli->lli_mds_read_och;
202                 och_usecount = &lli->lli_open_fd_read_count;
203         }
204
205         cfs_mutex_lock(&lli->lli_och_mutex);
206         if (*och_usecount) { /* There are still users of this handle, so
207                                 skip freeing it. */
208                 cfs_mutex_unlock(&lli->lli_och_mutex);
209                 RETURN(0);
210         }
211         och=*och_p;
212         *och_p = NULL;
213         cfs_mutex_unlock(&lli->lli_och_mutex);
214
215         if (och) { /* There might be a race and somebody have freed this och
216                       already */
217                 rc = ll_close_inode_openhandle(ll_i2sbi(inode)->ll_md_exp,
218                                                inode, och);
219         }
220
221         RETURN(rc);
222 }
223
224 int ll_md_close(struct obd_export *md_exp, struct inode *inode,
225                 struct file *file)
226 {
227         struct ll_file_data *fd = LUSTRE_FPRIVATE(file);
228         struct ll_inode_info *lli = ll_i2info(inode);
229         int rc = 0;
230         ENTRY;
231
232         /* clear group lock, if present */
233         if (unlikely(fd->fd_flags & LL_FILE_GROUP_LOCKED))
234                 ll_put_grouplock(inode, file, fd->fd_grouplock.cg_gid);
235
236         /* Let's see if we have good enough OPEN lock on the file and if
237            we can skip talking to MDS */
238         if (file->f_dentry->d_inode) { /* Can this ever be false? */
239                 int lockmode;
240                 int flags = LDLM_FL_BLOCK_GRANTED | LDLM_FL_TEST_LOCK;
241                 struct lustre_handle lockh;
242                 struct inode *inode = file->f_dentry->d_inode;
243                 ldlm_policy_data_t policy = {.l_inodebits={MDS_INODELOCK_OPEN}};
244
245                 cfs_mutex_lock(&lli->lli_och_mutex);
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                 cfs_mutex_unlock(&lli->lli_och_mutex);
260
261                 if (!md_lock_match(md_exp, flags, ll_inode2fid(inode),
262                                    LDLM_IBITS, &policy, lockmode,
263                                    &lockh)) {
264                         rc = ll_md_real_close(file->f_dentry->d_inode,
265                                               fd->fd_omode);
266                 }
267         } else {
268                 CERROR("Releasing a file %p with negative dentry %p. Name %s",
269                        file, file->f_dentry, file->f_dentry->d_name.name);
270         }
271
272         LUSTRE_FPRIVATE(file) = NULL;
273         ll_file_data_put(fd);
274         ll_capa_close(inode);
275
276         RETURN(rc);
277 }
278
279 int lov_test_and_clear_async_rc(struct lov_stripe_md *lsm);
280
281 /* While this returns an error code, fput() the caller does not, so we need
282  * to make every effort to clean up all of our state here.  Also, applications
283  * rarely check close errors and even if an error is returned they will not
284  * re-try the close call.
285  */
286 int ll_file_release(struct inode *inode, struct file *file)
287 {
288         struct ll_file_data *fd;
289         struct ll_sb_info *sbi = ll_i2sbi(inode);
290         struct ll_inode_info *lli = ll_i2info(inode);
291         struct lov_stripe_md *lsm = lli->lli_smd;
292         int rc;
293         ENTRY;
294
295         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p)\n", inode->i_ino,
296                inode->i_generation, inode);
297
298 #ifdef CONFIG_FS_POSIX_ACL
299         if (sbi->ll_flags & LL_SBI_RMT_CLIENT &&
300             inode == inode->i_sb->s_root->d_inode) {
301                 struct ll_file_data *fd = LUSTRE_FPRIVATE(file);
302
303                 LASSERT(fd != NULL);
304                 if (unlikely(fd->fd_flags & LL_FILE_RMTACL)) {
305                         fd->fd_flags &= ~LL_FILE_RMTACL;
306                         rct_del(&sbi->ll_rct, cfs_curproc_pid());
307                         et_search_free(&sbi->ll_et, cfs_curproc_pid());
308                 }
309         }
310 #endif
311
312         if (inode->i_sb->s_root != file->f_dentry)
313                 ll_stats_ops_tally(sbi, LPROC_LL_RELEASE, 1);
314         fd = LUSTRE_FPRIVATE(file);
315         LASSERT(fd != NULL);
316
317         /* The last ref on @file, maybe not the the owner pid of statahead.
318          * Different processes can open the same dir, "ll_opendir_key" means:
319          * it is me that should stop the statahead thread. */
320         if (S_ISDIR(inode->i_mode) && lli->lli_opendir_key == fd &&
321             lli->lli_opendir_pid != 0)
322                 ll_stop_statahead(inode, lli->lli_opendir_key);
323
324         if (inode->i_sb->s_root == file->f_dentry) {
325                 LUSTRE_FPRIVATE(file) = NULL;
326                 ll_file_data_put(fd);
327                 RETURN(0);
328         }
329
330         if (!S_ISDIR(inode->i_mode)) {
331                 if (lsm)
332                         lov_test_and_clear_async_rc(lsm);
333                 lli->lli_async_rc = 0;
334         }
335
336         rc = ll_md_close(sbi->ll_md_exp, inode, file);
337
338         if (CFS_FAIL_TIMEOUT_MS(OBD_FAIL_PTLRPC_DUMP_LOG, cfs_fail_val))
339                 libcfs_debug_dumplog();
340
341         RETURN(rc);
342 }
343
344 static int ll_intent_file_open(struct file *file, void *lmm,
345                                int lmmsize, struct lookup_intent *itp)
346 {
347         struct ll_sb_info *sbi = ll_i2sbi(file->f_dentry->d_inode);
348         struct dentry *parent = file->f_dentry->d_parent;
349         const char *name = file->f_dentry->d_name.name;
350         const int len = file->f_dentry->d_name.len;
351         struct md_op_data *op_data;
352         struct ptlrpc_request *req;
353         __u32 opc = LUSTRE_OPC_ANY;
354         int rc;
355         ENTRY;
356
357         if (!parent)
358                 RETURN(-ENOENT);
359
360         /* Usually we come here only for NFSD, and we want open lock.
361            But we can also get here with pre 2.6.15 patchless kernels, and in
362            that case that lock is also ok */
363         /* We can also get here if there was cached open handle in revalidate_it
364          * but it disappeared while we were getting from there to ll_file_open.
365          * But this means this file was closed and immediatelly opened which
366          * makes a good candidate for using OPEN lock */
367         /* If lmmsize & lmm are not 0, we are just setting stripe info
368          * parameters. No need for the open lock */
369         if (lmm == NULL && lmmsize == 0) {
370                 itp->it_flags |= MDS_OPEN_LOCK;
371                 if (itp->it_flags & FMODE_WRITE)
372                         opc = LUSTRE_OPC_CREATE;
373         }
374
375         op_data  = ll_prep_md_op_data(NULL, parent->d_inode,
376                                       file->f_dentry->d_inode, name, len,
377                                       O_RDWR, opc, NULL);
378         if (IS_ERR(op_data))
379                 RETURN(PTR_ERR(op_data));
380
381         rc = md_intent_lock(sbi->ll_md_exp, op_data, lmm, lmmsize, itp,
382                             0 /*unused */, &req, ll_md_blocking_ast, 0);
383         ll_finish_md_op_data(op_data);
384         if (rc == -ESTALE) {
385                 /* reason for keep own exit path - don`t flood log
386                 * with messages with -ESTALE errors.
387                 */
388                 if (!it_disposition(itp, DISP_OPEN_OPEN) ||
389                      it_open_error(DISP_OPEN_OPEN, itp))
390                         GOTO(out, rc);
391                 ll_release_openhandle(file->f_dentry, itp);
392                 GOTO(out, rc);
393         }
394
395         if (it_disposition(itp, DISP_LOOKUP_NEG))
396                 GOTO(out, rc = -ENOENT);
397
398         if (rc != 0 || it_open_error(DISP_OPEN_OPEN, itp)) {
399                 rc = rc ? rc : it_open_error(DISP_OPEN_OPEN, itp);
400                 CDEBUG(D_VFSTRACE, "lock enqueue: err: %d\n", rc);
401                 GOTO(out, rc);
402         }
403
404         rc = ll_prep_inode(&file->f_dentry->d_inode, req, NULL);
405         if (!rc && itp->d.lustre.it_lock_mode)
406                 ll_set_lock_data(sbi->ll_md_exp, file->f_dentry->d_inode,
407                                  itp, NULL);
408
409 out:
410         ptlrpc_req_finished(itp->d.lustre.it_data);
411         it_clear_disposition(itp, DISP_ENQ_COMPLETE);
412         ll_intent_drop_lock(itp);
413
414         RETURN(rc);
415 }
416
417 /**
418  * Assign an obtained @ioepoch to client's inode. No lock is needed, MDS does
419  * not believe attributes if a few ioepoch holders exist. Attributes for
420  * previous ioepoch if new one is opened are also skipped by MDS.
421  */
422 void ll_ioepoch_open(struct ll_inode_info *lli, __u64 ioepoch)
423 {
424         if (ioepoch && lli->lli_ioepoch != ioepoch) {
425                 lli->lli_ioepoch = ioepoch;
426                 CDEBUG(D_INODE, "Epoch "LPU64" opened on "DFID"\n",
427                        ioepoch, PFID(&lli->lli_fid));
428         }
429 }
430
431 static int ll_och_fill(struct obd_export *md_exp, struct ll_inode_info *lli,
432                        struct lookup_intent *it, struct obd_client_handle *och)
433 {
434         struct ptlrpc_request *req = it->d.lustre.it_data;
435         struct mdt_body *body;
436
437         LASSERT(och);
438
439         body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
440         LASSERT(body != NULL);                      /* reply already checked out */
441
442         memcpy(&och->och_fh, &body->handle, sizeof(body->handle));
443         och->och_magic = OBD_CLIENT_HANDLE_MAGIC;
444         och->och_fid = lli->lli_fid;
445         och->och_flags = it->it_flags;
446         ll_ioepoch_open(lli, body->ioepoch);
447
448         return md_set_open_replay_data(md_exp, och, req);
449 }
450
451 int ll_local_open(struct file *file, struct lookup_intent *it,
452                   struct ll_file_data *fd, struct obd_client_handle *och)
453 {
454         struct inode *inode = file->f_dentry->d_inode;
455         struct ll_inode_info *lli = ll_i2info(inode);
456         ENTRY;
457
458         LASSERT(!LUSTRE_FPRIVATE(file));
459
460         LASSERT(fd != NULL);
461
462         if (och) {
463                 struct ptlrpc_request *req = it->d.lustre.it_data;
464                 struct mdt_body *body;
465                 int rc;
466
467                 rc = ll_och_fill(ll_i2sbi(inode)->ll_md_exp, lli, it, och);
468                 if (rc)
469                         RETURN(rc);
470
471                 body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
472                 if ((it->it_flags & FMODE_WRITE) &&
473                     (body->valid & OBD_MD_FLSIZE))
474                         CDEBUG(D_INODE, "Epoch "LPU64" opened on "DFID"\n",
475                                lli->lli_ioepoch, PFID(&lli->lli_fid));
476         }
477
478         LUSTRE_FPRIVATE(file) = fd;
479         ll_readahead_init(inode, &fd->fd_ras);
480         fd->fd_omode = it->it_flags;
481         RETURN(0);
482 }
483
484 /* Open a file, and (for the very first open) create objects on the OSTs at
485  * this time.  If opened with O_LOV_DELAY_CREATE, then we don't do the object
486  * creation or open until ll_lov_setstripe() ioctl is called.
487  *
488  * If we already have the stripe MD locally then we don't request it in
489  * md_open(), by passing a lmm_size = 0.
490  *
491  * It is up to the application to ensure no other processes open this file
492  * in the O_LOV_DELAY_CREATE case, or the default striping pattern will be
493  * used.  We might be able to avoid races of that sort by getting lli_open_sem
494  * before returning in the O_LOV_DELAY_CREATE case and dropping it here
495  * or in ll_file_release(), but I'm not sure that is desirable/necessary.
496  */
497 int ll_file_open(struct inode *inode, struct file *file)
498 {
499         struct ll_inode_info *lli = ll_i2info(inode);
500         struct lookup_intent *it, oit = { .it_op = IT_OPEN,
501                                           .it_flags = file->f_flags };
502         struct lov_stripe_md *lsm;
503         struct obd_client_handle **och_p = NULL;
504         __u64 *och_usecount = NULL;
505         struct ll_file_data *fd;
506         int rc = 0, opendir_set = 0;
507         ENTRY;
508
509         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p), flags %o\n", inode->i_ino,
510                inode->i_generation, inode, file->f_flags);
511
512         it = file->private_data; /* XXX: compat macro */
513         file->private_data = NULL; /* prevent ll_local_open assertion */
514
515         fd = ll_file_data_get();
516         if (fd == NULL)
517                 GOTO(out_och_free, rc = -ENOMEM);
518
519         fd->fd_file = file;
520         if (S_ISDIR(inode->i_mode)) {
521                 cfs_spin_lock(&lli->lli_sa_lock);
522                 if (lli->lli_opendir_key == NULL && lli->lli_sai == NULL &&
523                     lli->lli_opendir_pid == 0) {
524                         lli->lli_opendir_key = fd;
525                         lli->lli_opendir_pid = cfs_curproc_pid();
526                         opendir_set = 1;
527                 }
528                 cfs_spin_unlock(&lli->lli_sa_lock);
529         }
530
531         if (inode->i_sb->s_root == file->f_dentry) {
532                 LUSTRE_FPRIVATE(file) = fd;
533                 RETURN(0);
534         }
535
536         if (!it || !it->d.lustre.it_disposition) {
537                 /* Convert f_flags into access mode. We cannot use file->f_mode,
538                  * because everything but O_ACCMODE mask was stripped from
539                  * there */
540                 if ((oit.it_flags + 1) & O_ACCMODE)
541                         oit.it_flags++;
542                 if (file->f_flags & O_TRUNC)
543                         oit.it_flags |= FMODE_WRITE;
544
545                 /* kernel only call f_op->open in dentry_open.  filp_open calls
546                  * dentry_open after call to open_namei that checks permissions.
547                  * Only nfsd_open call dentry_open directly without checking
548                  * permissions and because of that this code below is safe. */
549                 if (oit.it_flags & (FMODE_WRITE | FMODE_READ))
550                         oit.it_flags |= MDS_OPEN_OWNEROVERRIDE;
551
552                 /* We do not want O_EXCL here, presumably we opened the file
553                  * already? XXX - NFS implications? */
554                 oit.it_flags &= ~O_EXCL;
555
556                 /* bug20584, if "it_flags" contains O_CREAT, the file will be
557                  * created if necessary, then "IT_CREAT" should be set to keep
558                  * consistent with it */
559                 if (oit.it_flags & O_CREAT)
560                         oit.it_op |= IT_CREAT;
561
562                 it = &oit;
563         }
564
565 restart:
566         /* Let's see if we have file open on MDS already. */
567         if (it->it_flags & FMODE_WRITE) {
568                 och_p = &lli->lli_mds_write_och;
569                 och_usecount = &lli->lli_open_fd_write_count;
570         } else if (it->it_flags & FMODE_EXEC) {
571                 och_p = &lli->lli_mds_exec_och;
572                 och_usecount = &lli->lli_open_fd_exec_count;
573          } else {
574                 och_p = &lli->lli_mds_read_och;
575                 och_usecount = &lli->lli_open_fd_read_count;
576         }
577
578         cfs_mutex_lock(&lli->lli_och_mutex);
579         if (*och_p) { /* Open handle is present */
580                 if (it_disposition(it, DISP_OPEN_OPEN)) {
581                         /* Well, there's extra open request that we do not need,
582                            let's close it somehow. This will decref request. */
583                         rc = it_open_error(DISP_OPEN_OPEN, it);
584                         if (rc) {
585                                 cfs_mutex_unlock(&lli->lli_och_mutex);
586                                 GOTO(out_openerr, rc);
587                         }
588
589                         ll_release_openhandle(file->f_dentry, it);
590                 }
591                 (*och_usecount)++;
592
593                 rc = ll_local_open(file, it, fd, NULL);
594                 if (rc) {
595                         (*och_usecount)--;
596                         cfs_mutex_unlock(&lli->lli_och_mutex);
597                         GOTO(out_openerr, rc);
598                 }
599         } else {
600                 LASSERT(*och_usecount == 0);
601                 if (!it->d.lustre.it_disposition) {
602                         /* We cannot just request lock handle now, new ELC code
603                            means that one of other OPEN locks for this file
604                            could be cancelled, and since blocking ast handler
605                            would attempt to grab och_mutex as well, that would
606                            result in a deadlock */
607                         cfs_mutex_unlock(&lli->lli_och_mutex);
608                         it->it_create_mode |= M_CHECK_STALE;
609                         rc = ll_intent_file_open(file, NULL, 0, it);
610                         it->it_create_mode &= ~M_CHECK_STALE;
611                         if (rc)
612                                 GOTO(out_openerr, rc);
613
614                         goto restart;
615                 }
616                 OBD_ALLOC(*och_p, sizeof (struct obd_client_handle));
617                 if (!*och_p)
618                         GOTO(out_och_free, rc = -ENOMEM);
619
620                 (*och_usecount)++;
621
622                 /* md_intent_lock() didn't get a request ref if there was an
623                  * open error, so don't do cleanup on the request here
624                  * (bug 3430) */
625                 /* XXX (green): Should not we bail out on any error here, not
626                  * just open error? */
627                 rc = it_open_error(DISP_OPEN_OPEN, it);
628                 if (rc)
629                         GOTO(out_och_free, rc);
630
631                 LASSERT(it_disposition(it, DISP_ENQ_OPEN_REF));
632
633                 rc = ll_local_open(file, it, fd, *och_p);
634                 if (rc)
635                         GOTO(out_och_free, rc);
636         }
637         cfs_mutex_unlock(&lli->lli_och_mutex);
638         fd = NULL;
639
640         /* Must do this outside lli_och_mutex lock to prevent deadlock where
641            different kind of OPEN lock for this same inode gets cancelled
642            by ldlm_cancel_lru */
643         if (!S_ISREG(inode->i_mode))
644                 GOTO(out_och_free, rc);
645
646         ll_capa_open(inode);
647
648         lsm = lli->lli_smd;
649         if (lsm == NULL) {
650                 if (file->f_flags & O_LOV_DELAY_CREATE ||
651                     !(file->f_mode & FMODE_WRITE)) {
652                         CDEBUG(D_INODE, "object creation was delayed\n");
653                         GOTO(out_och_free, rc);
654                 }
655         }
656         file->f_flags &= ~O_LOV_DELAY_CREATE;
657         GOTO(out_och_free, rc);
658
659 out_och_free:
660         if (it && it_disposition(it, DISP_ENQ_OPEN_REF)) {
661                 ptlrpc_req_finished(it->d.lustre.it_data);
662                 it_clear_disposition(it, DISP_ENQ_OPEN_REF);
663         }
664
665         if (rc) {
666                 if (och_p && *och_p) {
667                         OBD_FREE(*och_p, sizeof (struct obd_client_handle));
668                         *och_p = NULL; /* OBD_FREE writes some magic there */
669                         (*och_usecount)--;
670                 }
671                 cfs_mutex_unlock(&lli->lli_och_mutex);
672
673 out_openerr:
674                 if (opendir_set != 0)
675                         ll_stop_statahead(inode, lli->lli_opendir_key);
676                 if (fd != NULL)
677                         ll_file_data_put(fd);
678         } else {
679                 ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_OPEN, 1);
680         }
681
682         return rc;
683 }
684
685 /* Fills the obdo with the attributes for the lsm */
686 static int ll_lsm_getattr(struct lov_stripe_md *lsm, struct obd_export *exp,
687                           struct obd_capa *capa, struct obdo *obdo,
688                           __u64 ioepoch, int sync)
689 {
690         struct ptlrpc_request_set *set;
691         struct obd_info            oinfo = { { { 0 } } };
692         int                        rc;
693
694         ENTRY;
695
696         LASSERT(lsm != NULL);
697
698         oinfo.oi_md = lsm;
699         oinfo.oi_oa = obdo;
700         oinfo.oi_oa->o_id = lsm->lsm_object_id;
701         oinfo.oi_oa->o_seq = lsm->lsm_object_seq;
702         oinfo.oi_oa->o_mode = S_IFREG;
703         oinfo.oi_oa->o_ioepoch = ioepoch;
704         oinfo.oi_oa->o_valid = OBD_MD_FLID | OBD_MD_FLTYPE |
705                                OBD_MD_FLSIZE | OBD_MD_FLBLOCKS |
706                                OBD_MD_FLBLKSZ | OBD_MD_FLATIME |
707                                OBD_MD_FLMTIME | OBD_MD_FLCTIME |
708                                OBD_MD_FLGROUP | OBD_MD_FLEPOCH |
709                                OBD_MD_FLDATAVERSION;
710         oinfo.oi_capa = capa;
711         if (sync) {
712                 oinfo.oi_oa->o_valid |= OBD_MD_FLFLAGS;
713                 oinfo.oi_oa->o_flags |= OBD_FL_SRVLOCK;
714         }
715
716         set = ptlrpc_prep_set();
717         if (set == NULL) {
718                 CERROR("can't allocate ptlrpc set\n");
719                 rc = -ENOMEM;
720         } else {
721                 rc = obd_getattr_async(exp, &oinfo, set);
722                 if (rc == 0)
723                         rc = ptlrpc_set_wait(set);
724                 ptlrpc_set_destroy(set);
725         }
726         if (rc == 0)
727                 oinfo.oi_oa->o_valid &= (OBD_MD_FLBLOCKS | OBD_MD_FLBLKSZ |
728                                          OBD_MD_FLATIME | OBD_MD_FLMTIME |
729                                          OBD_MD_FLCTIME | OBD_MD_FLSIZE |
730                                          OBD_MD_FLDATAVERSION);
731         RETURN(rc);
732 }
733
734 /**
735   * Performs the getattr on the inode and updates its fields.
736   * If @sync != 0, perform the getattr under the server-side lock.
737   */
738 int ll_inode_getattr(struct inode *inode, struct obdo *obdo,
739                      __u64 ioepoch, int sync)
740 {
741         struct ll_inode_info *lli  = ll_i2info(inode);
742         struct obd_capa      *capa = ll_mdscapa_get(inode);
743         int rc;
744         ENTRY;
745
746         rc = ll_lsm_getattr(lli->lli_smd, ll_i2dtexp(inode),
747                             capa, obdo, ioepoch, sync);
748         capa_put(capa);
749         if (rc == 0) {
750                 obdo_refresh_inode(inode, obdo, obdo->o_valid);
751                 CDEBUG(D_INODE,
752                        "objid "LPX64" size %llu, blocks %llu, blksize %lu\n",
753                        lli->lli_smd->lsm_object_id, i_size_read(inode),
754                        (unsigned long long)inode->i_blocks,
755                        (unsigned long)ll_inode_blksize(inode));
756         }
757         RETURN(rc);
758 }
759
760 int ll_merge_lvb(struct inode *inode)
761 {
762         struct ll_inode_info *lli = ll_i2info(inode);
763         struct ll_sb_info *sbi = ll_i2sbi(inode);
764         struct ost_lvb lvb;
765         int rc;
766
767         ENTRY;
768
769         ll_inode_size_lock(inode, 1);
770         inode_init_lvb(inode, &lvb);
771
772         /* merge timestamps the most resently obtained from mds with
773            timestamps obtained from osts */
774         lvb.lvb_atime = lli->lli_lvb.lvb_atime;
775         lvb.lvb_mtime = lli->lli_lvb.lvb_mtime;
776         lvb.lvb_ctime = lli->lli_lvb.lvb_ctime;
777         rc = obd_merge_lvb(sbi->ll_dt_exp, lli->lli_smd, &lvb, 0);
778         cl_isize_write_nolock(inode, lvb.lvb_size);
779
780         CDEBUG(D_VFSTRACE, DFID" updating i_size "LPU64"\n",
781                PFID(&lli->lli_fid), lvb.lvb_size);
782         inode->i_blocks = lvb.lvb_blocks;
783
784         LTIME_S(inode->i_mtime) = lvb.lvb_mtime;
785         LTIME_S(inode->i_atime) = lvb.lvb_atime;
786         LTIME_S(inode->i_ctime) = lvb.lvb_ctime;
787         ll_inode_size_unlock(inode, 1);
788
789         RETURN(rc);
790 }
791
792 int ll_glimpse_ioctl(struct ll_sb_info *sbi, struct lov_stripe_md *lsm,
793                      lstat_t *st)
794 {
795         struct obdo obdo = { 0 };
796         int rc;
797
798         rc = ll_lsm_getattr(lsm, sbi->ll_dt_exp, NULL, &obdo, 0, 0);
799         if (rc == 0) {
800                 st->st_size   = obdo.o_size;
801                 st->st_blocks = obdo.o_blocks;
802                 st->st_mtime  = obdo.o_mtime;
803                 st->st_atime  = obdo.o_atime;
804                 st->st_ctime  = obdo.o_ctime;
805         }
806         return rc;
807 }
808
809 void ll_io_init(struct cl_io *io, const struct file *file, int write)
810 {
811         struct inode *inode = file->f_dentry->d_inode;
812
813         io->u.ci_rw.crw_nonblock = file->f_flags & O_NONBLOCK;
814         if (write)
815                 io->u.ci_wr.wr_append = !!(file->f_flags & O_APPEND);
816         io->ci_obj     = ll_i2info(inode)->lli_clob;
817         io->ci_lockreq = CILR_MAYBE;
818         if (ll_file_nolock(file)) {
819                 io->ci_lockreq = CILR_NEVER;
820                 io->ci_no_srvlock = 1;
821         } else if (file->f_flags & O_APPEND) {
822                 io->ci_lockreq = CILR_MANDATORY;
823         }
824 }
825
826 static ssize_t ll_file_io_generic(const struct lu_env *env,
827                 struct vvp_io_args *args, struct file *file,
828                 enum cl_io_type iot, loff_t *ppos, size_t count)
829 {
830         struct ll_inode_info *lli = ll_i2info(file->f_dentry->d_inode);
831         struct cl_io         *io;
832         ssize_t               result;
833         ENTRY;
834
835         io = ccc_env_thread_io(env);
836         ll_io_init(io, file, iot == CIT_WRITE);
837
838         if (cl_io_rw_init(env, io, iot, *ppos, count) == 0) {
839                 struct vvp_io *vio = vvp_env_io(env);
840                 struct ccc_io *cio = ccc_env_io(env);
841                 int write_mutex_locked = 0;
842
843                 cio->cui_fd  = LUSTRE_FPRIVATE(file);
844                 vio->cui_io_subtype = args->via_io_subtype;
845
846                 switch (vio->cui_io_subtype) {
847                 case IO_NORMAL:
848                         cio->cui_iov = args->u.normal.via_iov;
849                         cio->cui_nrsegs = args->u.normal.via_nrsegs;
850                         cio->cui_tot_nrsegs = cio->cui_nrsegs;
851 #ifndef HAVE_FILE_WRITEV
852                         cio->cui_iocb = args->u.normal.via_iocb;
853 #endif
854                         if ((iot == CIT_WRITE) &&
855                             !(cio->cui_fd->fd_flags & LL_FILE_GROUP_LOCKED)) {
856                                 if (cfs_mutex_lock_interruptible(&lli->
857                                                                lli_write_mutex))
858                                         GOTO(out, result = -ERESTARTSYS);
859                                 write_mutex_locked = 1;
860                         } else if (iot == CIT_READ) {
861                                 cfs_down_read(&lli->lli_trunc_sem);
862                         }
863                         break;
864                 case IO_SENDFILE:
865                         vio->u.sendfile.cui_actor = args->u.sendfile.via_actor;
866                         vio->u.sendfile.cui_target = args->u.sendfile.via_target;
867                         break;
868                 case IO_SPLICE:
869                         vio->u.splice.cui_pipe = args->u.splice.via_pipe;
870                         vio->u.splice.cui_flags = args->u.splice.via_flags;
871                         break;
872                 default:
873                         CERROR("Unknow IO type - %u\n", vio->cui_io_subtype);
874                         LBUG();
875                 }
876                 result = cl_io_loop(env, io);
877                 if (write_mutex_locked)
878                         cfs_mutex_unlock(&lli->lli_write_mutex);
879                 else if (args->via_io_subtype == IO_NORMAL && iot == CIT_READ)
880                         cfs_up_read(&lli->lli_trunc_sem);
881         } else {
882                 /* cl_io_rw_init() handled IO */
883                 result = io->ci_result;
884         }
885
886         if (io->ci_nob > 0) {
887                 result = io->ci_nob;
888                 *ppos = io->u.ci_wr.wr.crw_pos;
889         }
890         GOTO(out, result);
891 out:
892         cl_io_fini(env, io);
893
894         if (iot == CIT_READ) {
895                 if (result >= 0)
896                         ll_stats_ops_tally(ll_i2sbi(file->f_dentry->d_inode),
897                                            LPROC_LL_READ_BYTES, result);
898         } else if (iot == CIT_WRITE) {
899                 if (result >= 0) {
900                         ll_stats_ops_tally(ll_i2sbi(file->f_dentry->d_inode),
901                                            LPROC_LL_WRITE_BYTES, result);
902                         lli->lli_write_rc = 0;
903                 } else {
904                         lli->lli_write_rc = result;
905                 }
906         }
907
908         return result;
909 }
910
911
912 /*
913  * XXX: exact copy from kernel code (__generic_file_aio_write_nolock)
914  */
915 static int ll_file_get_iov_count(const struct iovec *iov,
916                                  unsigned long *nr_segs, size_t *count)
917 {
918         size_t cnt = 0;
919         unsigned long seg;
920
921         for (seg = 0; seg < *nr_segs; seg++) {
922                 const struct iovec *iv = &iov[seg];
923
924                 /*
925                  * If any segment has a negative length, or the cumulative
926                  * length ever wraps negative then return -EINVAL.
927                  */
928                 cnt += iv->iov_len;
929                 if (unlikely((ssize_t)(cnt|iv->iov_len) < 0))
930                         return -EINVAL;
931                 if (access_ok(VERIFY_READ, iv->iov_base, iv->iov_len))
932                         continue;
933                 if (seg == 0)
934                         return -EFAULT;
935                 *nr_segs = seg;
936                 cnt -= iv->iov_len;   /* This segment is no good */
937                 break;
938         }
939         *count = cnt;
940         return 0;
941 }
942
943 #ifdef HAVE_FILE_READV
944 static ssize_t ll_file_readv(struct file *file, const struct iovec *iov,
945                               unsigned long nr_segs, loff_t *ppos)
946 {
947         struct lu_env      *env;
948         struct vvp_io_args *args;
949         size_t              count;
950         ssize_t             result;
951         int                 refcheck;
952         ENTRY;
953
954         result = ll_file_get_iov_count(iov, &nr_segs, &count);
955         if (result)
956                 RETURN(result);
957
958         env = cl_env_get(&refcheck);
959         if (IS_ERR(env))
960                 RETURN(PTR_ERR(env));
961
962         args = vvp_env_args(env, IO_NORMAL);
963         args->u.normal.via_iov = (struct iovec *)iov;
964         args->u.normal.via_nrsegs = nr_segs;
965
966         result = ll_file_io_generic(env, args, file, CIT_READ, ppos, count);
967         cl_env_put(env, &refcheck);
968         RETURN(result);
969 }
970
971 static ssize_t ll_file_read(struct file *file, char *buf, size_t count,
972                             loff_t *ppos)
973 {
974         struct lu_env *env;
975         struct iovec  *local_iov;
976         ssize_t        result;
977         int            refcheck;
978         ENTRY;
979
980         env = cl_env_get(&refcheck);
981         if (IS_ERR(env))
982                 RETURN(PTR_ERR(env));
983
984         local_iov = &vvp_env_info(env)->vti_local_iov;
985         local_iov->iov_base = (void __user *)buf;
986         local_iov->iov_len = count;
987         result = ll_file_readv(file, local_iov, 1, ppos);
988         cl_env_put(env, &refcheck);
989         RETURN(result);
990 }
991
992 #else
993 static ssize_t ll_file_aio_read(struct kiocb *iocb, const struct iovec *iov,
994                                 unsigned long nr_segs, loff_t pos)
995 {
996         struct lu_env      *env;
997         struct vvp_io_args *args;
998         size_t              count;
999         ssize_t             result;
1000         int                 refcheck;
1001         ENTRY;
1002
1003         result = ll_file_get_iov_count(iov, &nr_segs, &count);
1004         if (result)
1005                 RETURN(result);
1006
1007         env = cl_env_get(&refcheck);
1008         if (IS_ERR(env))
1009                 RETURN(PTR_ERR(env));
1010
1011         args = vvp_env_args(env, IO_NORMAL);
1012         args->u.normal.via_iov = (struct iovec *)iov;
1013         args->u.normal.via_nrsegs = nr_segs;
1014         args->u.normal.via_iocb = iocb;
1015
1016         result = ll_file_io_generic(env, args, iocb->ki_filp, CIT_READ,
1017                                     &iocb->ki_pos, count);
1018         cl_env_put(env, &refcheck);
1019         RETURN(result);
1020 }
1021
1022 static ssize_t ll_file_read(struct file *file, char *buf, size_t count,
1023                             loff_t *ppos)
1024 {
1025         struct lu_env *env;
1026         struct iovec  *local_iov;
1027         struct kiocb  *kiocb;
1028         ssize_t        result;
1029         int            refcheck;
1030         ENTRY;
1031
1032         env = cl_env_get(&refcheck);
1033         if (IS_ERR(env))
1034                 RETURN(PTR_ERR(env));
1035
1036         local_iov = &vvp_env_info(env)->vti_local_iov;
1037         kiocb = &vvp_env_info(env)->vti_kiocb;
1038         local_iov->iov_base = (void __user *)buf;
1039         local_iov->iov_len = count;
1040         init_sync_kiocb(kiocb, file);
1041         kiocb->ki_pos = *ppos;
1042         kiocb->ki_left = count;
1043
1044         result = ll_file_aio_read(kiocb, local_iov, 1, kiocb->ki_pos);
1045         *ppos = kiocb->ki_pos;
1046
1047         cl_env_put(env, &refcheck);
1048         RETURN(result);
1049 }
1050 #endif
1051
1052 /*
1053  * Write to a file (through the page cache).
1054  */
1055 #ifdef HAVE_FILE_WRITEV
1056 static ssize_t ll_file_writev(struct file *file, const struct iovec *iov,
1057                               unsigned long nr_segs, loff_t *ppos)
1058 {
1059         struct lu_env      *env;
1060         struct vvp_io_args *args;
1061         size_t              count;
1062         ssize_t             result;
1063         int                 refcheck;
1064         ENTRY;
1065
1066         result = ll_file_get_iov_count(iov, &nr_segs, &count);
1067         if (result)
1068                 RETURN(result);
1069
1070         env = cl_env_get(&refcheck);
1071         if (IS_ERR(env))
1072                 RETURN(PTR_ERR(env));
1073
1074         args = vvp_env_args(env, IO_NORMAL);
1075         args->u.normal.via_iov = (struct iovec *)iov;
1076         args->u.normal.via_nrsegs = nr_segs;
1077
1078         result = ll_file_io_generic(env, args, file, CIT_WRITE, ppos, count);
1079         cl_env_put(env, &refcheck);
1080         RETURN(result);
1081 }
1082
1083 static ssize_t ll_file_write(struct file *file, const char *buf, size_t count,
1084                              loff_t *ppos)
1085 {
1086         struct lu_env    *env;
1087         struct iovec     *local_iov;
1088         ssize_t           result;
1089         int               refcheck;
1090         ENTRY;
1091
1092         env = cl_env_get(&refcheck);
1093         if (IS_ERR(env))
1094                 RETURN(PTR_ERR(env));
1095
1096         local_iov = &vvp_env_info(env)->vti_local_iov;
1097         local_iov->iov_base = (void __user *)buf;
1098         local_iov->iov_len = count;
1099
1100         result = ll_file_writev(file, local_iov, 1, ppos);
1101         cl_env_put(env, &refcheck);
1102         RETURN(result);
1103 }
1104
1105 #else /* AIO stuff */
1106 static ssize_t ll_file_aio_write(struct kiocb *iocb, const struct iovec *iov,
1107                                  unsigned long nr_segs, loff_t pos)
1108 {
1109         struct lu_env      *env;
1110         struct vvp_io_args *args;
1111         size_t              count;
1112         ssize_t             result;
1113         int                 refcheck;
1114         ENTRY;
1115
1116         result = ll_file_get_iov_count(iov, &nr_segs, &count);
1117         if (result)
1118                 RETURN(result);
1119
1120         env = cl_env_get(&refcheck);
1121         if (IS_ERR(env))
1122                 RETURN(PTR_ERR(env));
1123
1124         args = vvp_env_args(env, IO_NORMAL);
1125         args->u.normal.via_iov = (struct iovec *)iov;
1126         args->u.normal.via_nrsegs = nr_segs;
1127         args->u.normal.via_iocb = iocb;
1128
1129         result = ll_file_io_generic(env, args, iocb->ki_filp, CIT_WRITE,
1130                                   &iocb->ki_pos, count);
1131         cl_env_put(env, &refcheck);
1132         RETURN(result);
1133 }
1134
1135 static ssize_t ll_file_write(struct file *file, const char *buf, size_t count,
1136                              loff_t *ppos)
1137 {
1138         struct lu_env *env;
1139         struct iovec  *local_iov;
1140         struct kiocb  *kiocb;
1141         ssize_t        result;
1142         int            refcheck;
1143         ENTRY;
1144
1145         env = cl_env_get(&refcheck);
1146         if (IS_ERR(env))
1147                 RETURN(PTR_ERR(env));
1148
1149         local_iov = &vvp_env_info(env)->vti_local_iov;
1150         kiocb = &vvp_env_info(env)->vti_kiocb;
1151         local_iov->iov_base = (void __user *)buf;
1152         local_iov->iov_len = count;
1153         init_sync_kiocb(kiocb, file);
1154         kiocb->ki_pos = *ppos;
1155         kiocb->ki_left = count;
1156
1157         result = ll_file_aio_write(kiocb, local_iov, 1, kiocb->ki_pos);
1158         *ppos = kiocb->ki_pos;
1159
1160         cl_env_put(env, &refcheck);
1161         RETURN(result);
1162 }
1163 #endif
1164
1165
1166 #ifdef HAVE_KERNEL_SENDFILE
1167 /*
1168  * Send file content (through pagecache) somewhere with helper
1169  */
1170 static ssize_t ll_file_sendfile(struct file *in_file, loff_t *ppos,size_t count,
1171                                 read_actor_t actor, void *target)
1172 {
1173         struct lu_env      *env;
1174         struct vvp_io_args *args;
1175         ssize_t             result;
1176         int                 refcheck;
1177         ENTRY;
1178
1179         env = cl_env_get(&refcheck);
1180         if (IS_ERR(env))
1181                 RETURN(PTR_ERR(env));
1182
1183         args = vvp_env_args(env, IO_SENDFILE);
1184         args->u.sendfile.via_target = target;
1185         args->u.sendfile.via_actor = actor;
1186
1187         result = ll_file_io_generic(env, args, in_file, CIT_READ, ppos, count);
1188         cl_env_put(env, &refcheck);
1189         RETURN(result);
1190 }
1191 #endif
1192
1193 #ifdef HAVE_KERNEL_SPLICE_READ
1194 /*
1195  * Send file content (through pagecache) somewhere with helper
1196  */
1197 static ssize_t ll_file_splice_read(struct file *in_file, loff_t *ppos,
1198                                    struct pipe_inode_info *pipe, size_t count,
1199                                    unsigned int flags)
1200 {
1201         struct lu_env      *env;
1202         struct vvp_io_args *args;
1203         ssize_t             result;
1204         int                 refcheck;
1205         ENTRY;
1206
1207         env = cl_env_get(&refcheck);
1208         if (IS_ERR(env))
1209                 RETURN(PTR_ERR(env));
1210
1211         args = vvp_env_args(env, IO_SPLICE);
1212         args->u.splice.via_pipe = pipe;
1213         args->u.splice.via_flags = flags;
1214
1215         result = ll_file_io_generic(env, args, in_file, CIT_READ, ppos, count);
1216         cl_env_put(env, &refcheck);
1217         RETURN(result);
1218 }
1219 #endif
1220
1221 static int ll_lov_recreate(struct inode *inode, obd_id id, obd_seq seq,
1222                            obd_count ost_idx)
1223 {
1224         struct obd_export *exp = ll_i2dtexp(inode);
1225         struct obd_trans_info oti = { 0 };
1226         struct obdo *oa = NULL;
1227         int lsm_size;
1228         int rc = 0;
1229         struct lov_stripe_md *lsm, *lsm2;
1230         ENTRY;
1231
1232         OBDO_ALLOC(oa);
1233         if (oa == NULL)
1234                 RETURN(-ENOMEM);
1235
1236         ll_inode_size_lock(inode, 0);
1237         lsm = ll_i2info(inode)->lli_smd;
1238         if (lsm == NULL)
1239                 GOTO(out, rc = -ENOENT);
1240         lsm_size = sizeof(*lsm) + (sizeof(struct lov_oinfo) *
1241                    (lsm->lsm_stripe_count));
1242
1243         OBD_ALLOC_LARGE(lsm2, lsm_size);
1244         if (lsm2 == NULL)
1245                 GOTO(out, rc = -ENOMEM);
1246
1247         oa->o_id = id;
1248         oa->o_seq = seq;
1249         oa->o_nlink = ost_idx;
1250         oa->o_flags |= OBD_FL_RECREATE_OBJS;
1251         oa->o_valid = OBD_MD_FLID | OBD_MD_FLFLAGS | OBD_MD_FLGROUP;
1252         obdo_from_inode(oa, inode, &ll_i2info(inode)->lli_fid, OBD_MD_FLTYPE |
1253                         OBD_MD_FLATIME | OBD_MD_FLMTIME | OBD_MD_FLCTIME);
1254         memcpy(lsm2, lsm, lsm_size);
1255         rc = obd_create(exp, oa, &lsm2, &oti);
1256
1257         OBD_FREE_LARGE(lsm2, lsm_size);
1258         GOTO(out, rc);
1259 out:
1260         ll_inode_size_unlock(inode, 0);
1261         OBDO_FREE(oa);
1262         return rc;
1263 }
1264
1265 static int ll_lov_recreate_obj(struct inode *inode, unsigned long arg)
1266 {
1267         struct ll_recreate_obj ucreat;
1268         ENTRY;
1269
1270         if (!cfs_capable(CFS_CAP_SYS_ADMIN))
1271                 RETURN(-EPERM);
1272
1273         if (cfs_copy_from_user(&ucreat, (struct ll_recreate_obj *)arg,
1274                                sizeof(struct ll_recreate_obj)))
1275                 RETURN(-EFAULT);
1276
1277         RETURN(ll_lov_recreate(inode, ucreat.lrc_id, 0,
1278                                ucreat.lrc_ost_idx));
1279 }
1280
1281 static int ll_lov_recreate_fid(struct inode *inode, unsigned long arg)
1282 {
1283         struct lu_fid fid;
1284         obd_id id;
1285         obd_count ost_idx;
1286         ENTRY;
1287
1288         if (!cfs_capable(CFS_CAP_SYS_ADMIN))
1289                 RETURN(-EPERM);
1290
1291         if (cfs_copy_from_user(&fid, (struct lu_fid *)arg,
1292                                sizeof(struct lu_fid)))
1293                 RETURN(-EFAULT);
1294
1295         id = fid_oid(&fid) | ((fid_seq(&fid) & 0xffff) << 32);
1296         ost_idx = (fid_seq(&fid) >> 16) & 0xffff;
1297         RETURN(ll_lov_recreate(inode, id, 0, ost_idx));
1298 }
1299
1300 int ll_lov_setstripe_ea_info(struct inode *inode, struct file *file,
1301                              int flags, struct lov_user_md *lum, int lum_size)
1302 {
1303         struct lov_stripe_md *lsm;
1304         struct lookup_intent oit = {.it_op = IT_OPEN, .it_flags = flags};
1305         int rc = 0;
1306         ENTRY;
1307
1308         ll_inode_size_lock(inode, 0);
1309         lsm = ll_i2info(inode)->lli_smd;
1310         if (lsm) {
1311                 ll_inode_size_unlock(inode, 0);
1312                 CDEBUG(D_IOCTL, "stripe already exists for ino %lu\n",
1313                        inode->i_ino);
1314                 RETURN(-EEXIST);
1315         }
1316
1317         rc = ll_intent_file_open(file, lum, lum_size, &oit);
1318         if (rc)
1319                 GOTO(out, rc);
1320         rc = oit.d.lustre.it_status;
1321         if (rc < 0)
1322                 GOTO(out_req_free, rc);
1323
1324         ll_release_openhandle(file->f_dentry, &oit);
1325
1326  out:
1327         ll_inode_size_unlock(inode, 0);
1328         ll_intent_release(&oit);
1329         RETURN(rc);
1330 out_req_free:
1331         ptlrpc_req_finished((struct ptlrpc_request *) oit.d.lustre.it_data);
1332         goto out;
1333 }
1334
1335 int ll_lov_getstripe_ea_info(struct inode *inode, const char *filename,
1336                              struct lov_mds_md **lmmp, int *lmm_size,
1337                              struct ptlrpc_request **request)
1338 {
1339         struct ll_sb_info *sbi = ll_i2sbi(inode);
1340         struct mdt_body  *body;
1341         struct lov_mds_md *lmm = NULL;
1342         struct ptlrpc_request *req = NULL;
1343         struct md_op_data *op_data;
1344         int rc, lmmsize;
1345
1346         rc = ll_get_max_mdsize(sbi, &lmmsize);
1347         if (rc)
1348                 RETURN(rc);
1349
1350         op_data = ll_prep_md_op_data(NULL, inode, NULL, filename,
1351                                      strlen(filename), lmmsize,
1352                                      LUSTRE_OPC_ANY, NULL);
1353         if (IS_ERR(op_data))
1354                 RETURN(PTR_ERR(op_data));
1355
1356         op_data->op_valid = OBD_MD_FLEASIZE | OBD_MD_FLDIREA;
1357         rc = md_getattr_name(sbi->ll_md_exp, op_data, &req);
1358         ll_finish_md_op_data(op_data);
1359         if (rc < 0) {
1360                 CDEBUG(D_INFO, "md_getattr_name failed "
1361                        "on %s: rc %d\n", filename, rc);
1362                 GOTO(out, rc);
1363         }
1364
1365         body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
1366         LASSERT(body != NULL); /* checked by mdc_getattr_name */
1367
1368         lmmsize = body->eadatasize;
1369
1370         if (!(body->valid & (OBD_MD_FLEASIZE | OBD_MD_FLDIREA)) ||
1371                         lmmsize == 0) {
1372                 GOTO(out, rc = -ENODATA);
1373         }
1374
1375         lmm = req_capsule_server_sized_get(&req->rq_pill, &RMF_MDT_MD, lmmsize);
1376         LASSERT(lmm != NULL);
1377
1378         if ((lmm->lmm_magic != cpu_to_le32(LOV_MAGIC_V1)) &&
1379             (lmm->lmm_magic != cpu_to_le32(LOV_MAGIC_V3))) {
1380                 GOTO(out, rc = -EPROTO);
1381         }
1382
1383         /*
1384          * This is coming from the MDS, so is probably in
1385          * little endian.  We convert it to host endian before
1386          * passing it to userspace.
1387          */
1388         if (LOV_MAGIC != cpu_to_le32(LOV_MAGIC)) {
1389                 /* if function called for directory - we should
1390                  * avoid swab not existent lsm objects */
1391                 if (lmm->lmm_magic == cpu_to_le32(LOV_MAGIC_V1)) {
1392                         lustre_swab_lov_user_md_v1((struct lov_user_md_v1 *)lmm);
1393                         if (S_ISREG(body->mode))
1394                                 lustre_swab_lov_user_md_objects(
1395                                  ((struct lov_user_md_v1 *)lmm)->lmm_objects,
1396                                  ((struct lov_user_md_v1 *)lmm)->lmm_stripe_count);
1397                 } else if (lmm->lmm_magic == cpu_to_le32(LOV_MAGIC_V3)) {
1398                         lustre_swab_lov_user_md_v3((struct lov_user_md_v3 *)lmm);
1399                         if (S_ISREG(body->mode))
1400                                 lustre_swab_lov_user_md_objects(
1401                                  ((struct lov_user_md_v3 *)lmm)->lmm_objects,
1402                                  ((struct lov_user_md_v3 *)lmm)->lmm_stripe_count);
1403                 }
1404         }
1405
1406 out:
1407         *lmmp = lmm;
1408         *lmm_size = lmmsize;
1409         *request = req;
1410         return rc;
1411 }
1412
1413 static int ll_lov_setea(struct inode *inode, struct file *file,
1414                             unsigned long arg)
1415 {
1416         int flags = MDS_OPEN_HAS_OBJS | FMODE_WRITE;
1417         struct lov_user_md  *lump;
1418         int lum_size = sizeof(struct lov_user_md) +
1419                        sizeof(struct lov_user_ost_data);
1420         int rc;
1421         ENTRY;
1422
1423         if (!cfs_capable(CFS_CAP_SYS_ADMIN))
1424                 RETURN(-EPERM);
1425
1426         OBD_ALLOC_LARGE(lump, lum_size);
1427         if (lump == NULL) {
1428                 RETURN(-ENOMEM);
1429         }
1430         if (cfs_copy_from_user(lump, (struct lov_user_md  *)arg, lum_size)) {
1431                 OBD_FREE_LARGE(lump, lum_size);
1432                 RETURN(-EFAULT);
1433         }
1434
1435         rc = ll_lov_setstripe_ea_info(inode, file, flags, lump, lum_size);
1436
1437         OBD_FREE_LARGE(lump, lum_size);
1438         RETURN(rc);
1439 }
1440
1441 static int ll_lov_setstripe(struct inode *inode, struct file *file,
1442                             unsigned long arg)
1443 {
1444         struct lov_user_md_v3 lumv3;
1445         struct lov_user_md_v1 *lumv1 = (struct lov_user_md_v1 *)&lumv3;
1446         struct lov_user_md_v1 *lumv1p = (struct lov_user_md_v1 *)arg;
1447         struct lov_user_md_v3 *lumv3p = (struct lov_user_md_v3 *)arg;
1448         int lum_size;
1449         int rc;
1450         int flags = FMODE_WRITE;
1451         ENTRY;
1452
1453         /* first try with v1 which is smaller than v3 */
1454         lum_size = sizeof(struct lov_user_md_v1);
1455         if (cfs_copy_from_user(lumv1, lumv1p, lum_size))
1456                 RETURN(-EFAULT);
1457
1458         if (lumv1->lmm_magic == LOV_USER_MAGIC_V3) {
1459                 lum_size = sizeof(struct lov_user_md_v3);
1460                 if (cfs_copy_from_user(&lumv3, lumv3p, lum_size))
1461                         RETURN(-EFAULT);
1462         }
1463
1464         rc = ll_lov_setstripe_ea_info(inode, file, flags, lumv1, lum_size);
1465         if (rc == 0) {
1466                  put_user(0, &lumv1p->lmm_stripe_count);
1467                  rc = obd_iocontrol(LL_IOC_LOV_GETSTRIPE, ll_i2dtexp(inode),
1468                                     0, ll_i2info(inode)->lli_smd,
1469                                     (void *)arg);
1470         }
1471         RETURN(rc);
1472 }
1473
1474 static int ll_lov_getstripe(struct inode *inode, unsigned long arg)
1475 {
1476         struct lov_stripe_md *lsm = ll_i2info(inode)->lli_smd;
1477         int rc = -ENODATA;
1478         ENTRY;
1479
1480         if (lsm != NULL)
1481                 rc = obd_iocontrol(LL_IOC_LOV_GETSTRIPE, ll_i2dtexp(inode), 0,
1482                                    lsm, (void *)arg);
1483         RETURN(rc);
1484 }
1485
1486 int ll_get_grouplock(struct inode *inode, struct file *file, unsigned long arg)
1487 {
1488         struct ll_inode_info   *lli = ll_i2info(inode);
1489         struct ll_file_data    *fd = LUSTRE_FPRIVATE(file);
1490         struct ccc_grouplock    grouplock;
1491         int                     rc;
1492         ENTRY;
1493
1494         if (ll_file_nolock(file))
1495                 RETURN(-EOPNOTSUPP);
1496
1497         cfs_spin_lock(&lli->lli_lock);
1498         if (fd->fd_flags & LL_FILE_GROUP_LOCKED) {
1499                 CWARN("group lock already existed with gid %lu\n",
1500                        fd->fd_grouplock.cg_gid);
1501                 cfs_spin_unlock(&lli->lli_lock);
1502                 RETURN(-EINVAL);
1503         }
1504         LASSERT(fd->fd_grouplock.cg_lock == NULL);
1505         cfs_spin_unlock(&lli->lli_lock);
1506
1507         rc = cl_get_grouplock(cl_i2info(inode)->lli_clob,
1508                               arg, (file->f_flags & O_NONBLOCK), &grouplock);
1509         if (rc)
1510                 RETURN(rc);
1511
1512         cfs_spin_lock(&lli->lli_lock);
1513         if (fd->fd_flags & LL_FILE_GROUP_LOCKED) {
1514                 cfs_spin_unlock(&lli->lli_lock);
1515                 CERROR("another thread just won the race\n");
1516                 cl_put_grouplock(&grouplock);
1517                 RETURN(-EINVAL);
1518         }
1519
1520         fd->fd_flags |= LL_FILE_GROUP_LOCKED;
1521         fd->fd_grouplock = grouplock;
1522         cfs_spin_unlock(&lli->lli_lock);
1523
1524         CDEBUG(D_INFO, "group lock %lu obtained\n", arg);
1525         RETURN(0);
1526 }
1527
1528 int ll_put_grouplock(struct inode *inode, struct file *file, unsigned long arg)
1529 {
1530         struct ll_inode_info   *lli = ll_i2info(inode);
1531         struct ll_file_data    *fd = LUSTRE_FPRIVATE(file);
1532         struct ccc_grouplock    grouplock;
1533         ENTRY;
1534
1535         cfs_spin_lock(&lli->lli_lock);
1536         if (!(fd->fd_flags & LL_FILE_GROUP_LOCKED)) {
1537                 cfs_spin_unlock(&lli->lli_lock);
1538                 CWARN("no group lock held\n");
1539                 RETURN(-EINVAL);
1540         }
1541         LASSERT(fd->fd_grouplock.cg_lock != NULL);
1542
1543         if (fd->fd_grouplock.cg_gid != arg) {
1544                 CWARN("group lock %lu doesn't match current id %lu\n",
1545                        arg, fd->fd_grouplock.cg_gid);
1546                 cfs_spin_unlock(&lli->lli_lock);
1547                 RETURN(-EINVAL);
1548         }
1549
1550         grouplock = fd->fd_grouplock;
1551         memset(&fd->fd_grouplock, 0, sizeof(fd->fd_grouplock));
1552         fd->fd_flags &= ~LL_FILE_GROUP_LOCKED;
1553         cfs_spin_unlock(&lli->lli_lock);
1554
1555         cl_put_grouplock(&grouplock);
1556         CDEBUG(D_INFO, "group lock %lu released\n", arg);
1557         RETURN(0);
1558 }
1559
1560 /**
1561  * Close inode open handle
1562  *
1563  * \param dentry [in]     dentry which contains the inode
1564  * \param it     [in,out] intent which contains open info and result
1565  *
1566  * \retval 0     success
1567  * \retval <0    failure
1568  */
1569 int ll_release_openhandle(struct dentry *dentry, struct lookup_intent *it)
1570 {
1571         struct inode *inode = dentry->d_inode;
1572         struct obd_client_handle *och;
1573         int rc;
1574         ENTRY;
1575
1576         LASSERT(inode);
1577
1578         /* Root ? Do nothing. */
1579         if (dentry->d_inode->i_sb->s_root == dentry)
1580                 RETURN(0);
1581
1582         /* No open handle to close? Move away */
1583         if (!it_disposition(it, DISP_OPEN_OPEN))
1584                 RETURN(0);
1585
1586         LASSERT(it_open_error(DISP_OPEN_OPEN, it) == 0);
1587
1588         OBD_ALLOC(och, sizeof(*och));
1589         if (!och)
1590                 GOTO(out, rc = -ENOMEM);
1591
1592         ll_och_fill(ll_i2sbi(inode)->ll_md_exp,
1593                     ll_i2info(inode), it, och);
1594
1595         rc = ll_close_inode_openhandle(ll_i2sbi(inode)->ll_md_exp,
1596                                        inode, och);
1597  out:
1598         /* this one is in place of ll_file_open */
1599         if (it_disposition(it, DISP_ENQ_OPEN_REF)) {
1600                 ptlrpc_req_finished(it->d.lustre.it_data);
1601                 it_clear_disposition(it, DISP_ENQ_OPEN_REF);
1602         }
1603         RETURN(rc);
1604 }
1605
1606 /**
1607  * Get size for inode for which FIEMAP mapping is requested.
1608  * Make the FIEMAP get_info call and returns the result.
1609  */
1610 int ll_do_fiemap(struct inode *inode, struct ll_user_fiemap *fiemap,
1611               int num_bytes)
1612 {
1613         struct obd_export *exp = ll_i2dtexp(inode);
1614         struct lov_stripe_md *lsm = ll_i2info(inode)->lli_smd;
1615         struct ll_fiemap_info_key fm_key = { .name = KEY_FIEMAP, };
1616         int vallen = num_bytes;
1617         int rc;
1618         ENTRY;
1619
1620         /* Checks for fiemap flags */
1621         if (fiemap->fm_flags & ~LUSTRE_FIEMAP_FLAGS_COMPAT) {
1622                 fiemap->fm_flags &= ~LUSTRE_FIEMAP_FLAGS_COMPAT;
1623                 return -EBADR;
1624         }
1625
1626         /* Check for FIEMAP_FLAG_SYNC */
1627         if (fiemap->fm_flags & FIEMAP_FLAG_SYNC) {
1628                 rc = filemap_fdatawrite(inode->i_mapping);
1629                 if (rc)
1630                         return rc;
1631         }
1632
1633         /* If the stripe_count > 1 and the application does not understand
1634          * DEVICE_ORDER flag, then it cannot interpret the extents correctly.
1635          */
1636         if (lsm->lsm_stripe_count > 1 &&
1637             !(fiemap->fm_flags & FIEMAP_FLAG_DEVICE_ORDER))
1638                 return -EOPNOTSUPP;
1639
1640         fm_key.oa.o_id = lsm->lsm_object_id;
1641         fm_key.oa.o_seq = lsm->lsm_object_seq;
1642         fm_key.oa.o_valid = OBD_MD_FLID | OBD_MD_FLGROUP;
1643
1644         obdo_from_inode(&fm_key.oa, inode, &ll_i2info(inode)->lli_fid,
1645                         OBD_MD_FLSIZE);
1646         /* If filesize is 0, then there would be no objects for mapping */
1647         if (fm_key.oa.o_size == 0) {
1648                 fiemap->fm_mapped_extents = 0;
1649                 RETURN(0);
1650         }
1651
1652         memcpy(&fm_key.fiemap, fiemap, sizeof(*fiemap));
1653
1654         rc = obd_get_info(exp, sizeof(fm_key), &fm_key, &vallen, fiemap, lsm);
1655         if (rc)
1656                 CERROR("obd_get_info failed: rc = %d\n", rc);
1657
1658         RETURN(rc);
1659 }
1660
1661 int ll_fid2path(struct obd_export *exp, void *arg)
1662 {
1663         struct getinfo_fid2path *gfout, *gfin;
1664         int outsize, rc;
1665         ENTRY;
1666
1667         /* Need to get the buflen */
1668         OBD_ALLOC_PTR(gfin);
1669         if (gfin == NULL)
1670                 RETURN(-ENOMEM);
1671         if (cfs_copy_from_user(gfin, arg, sizeof(*gfin))) {
1672                 OBD_FREE_PTR(gfin);
1673                 RETURN(-EFAULT);
1674         }
1675
1676         outsize = sizeof(*gfout) + gfin->gf_pathlen;
1677         OBD_ALLOC(gfout, outsize);
1678         if (gfout == NULL) {
1679                 OBD_FREE_PTR(gfin);
1680                 RETURN(-ENOMEM);
1681         }
1682         memcpy(gfout, gfin, sizeof(*gfout));
1683         OBD_FREE_PTR(gfin);
1684
1685         /* Call mdc_iocontrol */
1686         rc = obd_iocontrol(OBD_IOC_FID2PATH, exp, outsize, gfout, NULL);
1687         if (rc)
1688                 GOTO(gf_free, rc);
1689         if (cfs_copy_to_user(arg, gfout, outsize))
1690                 rc = -EFAULT;
1691
1692 gf_free:
1693         OBD_FREE(gfout, outsize);
1694         RETURN(rc);
1695 }
1696
1697 static int ll_ioctl_fiemap(struct inode *inode, unsigned long arg)
1698 {
1699         struct ll_user_fiemap *fiemap_s;
1700         size_t num_bytes, ret_bytes;
1701         unsigned int extent_count;
1702         int rc = 0;
1703
1704         /* Get the extent count so we can calculate the size of
1705          * required fiemap buffer */
1706         if (get_user(extent_count,
1707             &((struct ll_user_fiemap __user *)arg)->fm_extent_count))
1708                 RETURN(-EFAULT);
1709         num_bytes = sizeof(*fiemap_s) + (extent_count *
1710                                          sizeof(struct ll_fiemap_extent));
1711
1712         OBD_ALLOC_LARGE(fiemap_s, num_bytes);
1713         if (fiemap_s == NULL)
1714                 RETURN(-ENOMEM);
1715
1716         /* get the fiemap value */
1717         if (copy_from_user(fiemap_s,(struct ll_user_fiemap __user *)arg,
1718                            sizeof(*fiemap_s)))
1719                 GOTO(error, rc = -EFAULT);
1720
1721         /* If fm_extent_count is non-zero, read the first extent since
1722          * it is used to calculate end_offset and device from previous
1723          * fiemap call. */
1724         if (extent_count) {
1725                 if (copy_from_user(&fiemap_s->fm_extents[0],
1726                     (char __user *)arg + sizeof(*fiemap_s),
1727                     sizeof(struct ll_fiemap_extent)))
1728                         GOTO(error, rc = -EFAULT);
1729         }
1730
1731         rc = ll_do_fiemap(inode, fiemap_s, num_bytes);
1732         if (rc)
1733                 GOTO(error, rc);
1734
1735         ret_bytes = sizeof(struct ll_user_fiemap);
1736
1737         if (extent_count != 0)
1738                 ret_bytes += (fiemap_s->fm_mapped_extents *
1739                                  sizeof(struct ll_fiemap_extent));
1740
1741         if (copy_to_user((void *)arg, fiemap_s, ret_bytes))
1742                 rc = -EFAULT;
1743
1744 error:
1745         OBD_FREE_LARGE(fiemap_s, num_bytes);
1746         RETURN(rc);
1747 }
1748
1749 /*
1750  * Read the data_version for inode.
1751  *
1752  * This value is computed using stripe object version on OST.
1753  * Version is computed using server side locking.
1754  *
1755  * @param extent_lock  Take extent lock. Not needed if a process is already
1756  *                     holding the OST object group locks.
1757  */
1758 static int ll_data_version(struct inode *inode, __u64 *data_version,
1759                            int extent_lock)
1760 {
1761         struct lov_stripe_md *lsm = ll_i2info(inode)->lli_smd;
1762         struct ll_sb_info    *sbi = ll_i2sbi(inode);
1763         struct obdo          *obdo = NULL;
1764         int                   rc;
1765         ENTRY;
1766
1767         /* If no stripe, we consider version is 0. */
1768         if (!lsm) {
1769                 *data_version = 0;
1770                 CDEBUG(D_INODE, "No object for inode\n");
1771                 RETURN(0);
1772         }
1773
1774         OBD_ALLOC_PTR(obdo);
1775         if (obdo == NULL)
1776                 RETURN(-ENOMEM);
1777
1778         rc = ll_lsm_getattr(lsm, sbi->ll_dt_exp, NULL, obdo, 0, extent_lock);
1779         if (!rc) {
1780                 if (!(obdo->o_valid & OBD_MD_FLDATAVERSION))
1781                         rc = -EOPNOTSUPP;
1782                 else
1783                         *data_version = obdo->o_data_version;
1784         }
1785
1786         OBD_FREE_PTR(obdo);
1787
1788         RETURN(rc);
1789 }
1790
1791 #ifdef HAVE_UNLOCKED_IOCTL
1792 long ll_file_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1793 {
1794         struct inode *inode = file->f_dentry->d_inode;
1795 #else
1796 int ll_file_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
1797                   unsigned long arg)
1798 {
1799 #endif
1800         struct ll_file_data *fd = LUSTRE_FPRIVATE(file);
1801         int flags;
1802
1803         ENTRY;
1804
1805         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p),cmd=%x\n", inode->i_ino,
1806                inode->i_generation, inode, cmd);
1807         ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_IOCTL, 1);
1808
1809         /* asm-ppc{,64} declares TCGETS, et. al. as type 't' not 'T' */
1810         if (_IOC_TYPE(cmd) == 'T' || _IOC_TYPE(cmd) == 't') /* tty ioctls */
1811                 RETURN(-ENOTTY);
1812
1813         switch(cmd) {
1814         case LL_IOC_GETFLAGS:
1815                 /* Get the current value of the file flags */
1816                 return put_user(fd->fd_flags, (int *)arg);
1817         case LL_IOC_SETFLAGS:
1818         case LL_IOC_CLRFLAGS:
1819                 /* Set or clear specific file flags */
1820                 /* XXX This probably needs checks to ensure the flags are
1821                  *     not abused, and to handle any flag side effects.
1822                  */
1823                 if (get_user(flags, (int *) arg))
1824                         RETURN(-EFAULT);
1825
1826                 if (cmd == LL_IOC_SETFLAGS) {
1827                         if ((flags & LL_FILE_IGNORE_LOCK) &&
1828                             !(file->f_flags & O_DIRECT)) {
1829                                 CERROR("%s: unable to disable locking on "
1830                                        "non-O_DIRECT file\n", current->comm);
1831                                 RETURN(-EINVAL);
1832                         }
1833
1834                         fd->fd_flags |= flags;
1835                 } else {
1836                         fd->fd_flags &= ~flags;
1837                 }
1838                 RETURN(0);
1839         case LL_IOC_LOV_SETSTRIPE:
1840                 RETURN(ll_lov_setstripe(inode, file, arg));
1841         case LL_IOC_LOV_SETEA:
1842                 RETURN(ll_lov_setea(inode, file, arg));
1843         case LL_IOC_LOV_GETSTRIPE:
1844                 RETURN(ll_lov_getstripe(inode, arg));
1845         case LL_IOC_RECREATE_OBJ:
1846                 RETURN(ll_lov_recreate_obj(inode, arg));
1847         case LL_IOC_RECREATE_FID:
1848                 RETURN(ll_lov_recreate_fid(inode, arg));
1849         case FSFILT_IOC_FIEMAP:
1850                 RETURN(ll_ioctl_fiemap(inode, arg));
1851         case FSFILT_IOC_GETFLAGS:
1852         case FSFILT_IOC_SETFLAGS:
1853                 RETURN(ll_iocontrol(inode, file, cmd, arg));
1854         case FSFILT_IOC_GETVERSION_OLD:
1855         case FSFILT_IOC_GETVERSION:
1856                 RETURN(put_user(inode->i_generation, (int *)arg));
1857         case LL_IOC_GROUP_LOCK:
1858                 RETURN(ll_get_grouplock(inode, file, arg));
1859         case LL_IOC_GROUP_UNLOCK:
1860                 RETURN(ll_put_grouplock(inode, file, arg));
1861         case IOC_OBD_STATFS:
1862                 RETURN(ll_obd_statfs(inode, (void *)arg));
1863
1864         /* We need to special case any other ioctls we want to handle,
1865          * to send them to the MDS/OST as appropriate and to properly
1866          * network encode the arg field.
1867         case FSFILT_IOC_SETVERSION_OLD:
1868         case FSFILT_IOC_SETVERSION:
1869         */
1870         case LL_IOC_FLUSHCTX:
1871                 RETURN(ll_flush_ctx(inode));
1872         case LL_IOC_PATH2FID: {
1873                 if (cfs_copy_to_user((void *)arg, ll_inode2fid(inode),
1874                                      sizeof(struct lu_fid)))
1875                         RETURN(-EFAULT);
1876
1877                 RETURN(0);
1878         }
1879         case OBD_IOC_FID2PATH:
1880                 RETURN(ll_fid2path(ll_i2mdexp(inode), (void *)arg));
1881         case LL_IOC_DATA_VERSION: {
1882                 struct ioc_data_version idv;
1883                 int rc;
1884
1885                 if (cfs_copy_from_user(&idv, (char *)arg, sizeof(idv)))
1886                         RETURN(-EFAULT);
1887
1888                 rc = ll_data_version(inode, &idv.idv_version,
1889                                      !(idv.idv_flags & LL_DV_NOFLUSH));
1890
1891                 if (rc == 0 &&
1892                     cfs_copy_to_user((char *) arg, &idv, sizeof(idv)))
1893                         RETURN(-EFAULT);
1894
1895                 RETURN(rc);
1896         }
1897
1898         case LL_IOC_GET_MDTIDX: {
1899                 int mdtidx;
1900
1901                 mdtidx = ll_get_mdt_idx(inode);
1902                 if (mdtidx < 0)
1903                         RETURN(mdtidx);
1904
1905                 if (put_user((int)mdtidx, (int*)arg))
1906                         RETURN(-EFAULT);
1907
1908                 RETURN(0);
1909         }
1910         case OBD_IOC_GETDTNAME:
1911         case OBD_IOC_GETMDNAME:
1912                 RETURN(ll_get_obd_name(inode, cmd, arg));
1913         default: {
1914                 int err;
1915
1916                 if (LLIOC_STOP ==
1917                     ll_iocontrol_call(inode, file, cmd, arg, &err))
1918                         RETURN(err);
1919
1920                 RETURN(obd_iocontrol(cmd, ll_i2dtexp(inode), 0, NULL,
1921                                      (void *)arg));
1922         }
1923         }
1924 }
1925
1926 loff_t ll_file_seek(struct file *file, loff_t offset, int origin)
1927 {
1928         struct inode *inode = file->f_dentry->d_inode;
1929         loff_t retval;
1930         ENTRY;
1931         retval = offset + ((origin == 2) ? i_size_read(inode) :
1932                            (origin == 1) ? file->f_pos : 0);
1933         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p), to=%llu=%#llx(%s)\n",
1934                inode->i_ino, inode->i_generation, inode, retval, retval,
1935                origin == 2 ? "SEEK_END": origin == 1 ? "SEEK_CUR" : "SEEK_SET");
1936         ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_LLSEEK, 1);
1937
1938         if (origin == 2) { /* SEEK_END */
1939                 int rc;
1940
1941                 rc = ll_glimpse_size(inode);
1942                 if (rc != 0)
1943                         RETURN(rc);
1944
1945                 offset += i_size_read(inode);
1946         } else if (origin == 1) { /* SEEK_CUR */
1947                 offset += file->f_pos;
1948         }
1949
1950         retval = -EINVAL;
1951         if (offset >= 0 && offset <= ll_file_maxbytes(inode)) {
1952                 if (offset != file->f_pos) {
1953                         file->f_pos = offset;
1954                 }
1955                 retval = offset;
1956         }
1957
1958         RETURN(retval);
1959 }
1960
1961 #ifdef HAVE_FLUSH_OWNER_ID
1962 int ll_flush(struct file *file, fl_owner_t id)
1963 #else
1964 int ll_flush(struct file *file)
1965 #endif
1966 {
1967         struct inode *inode = file->f_dentry->d_inode;
1968         struct ll_inode_info *lli = ll_i2info(inode);
1969         struct lov_stripe_md *lsm = lli->lli_smd;
1970         int rc, err;
1971
1972         LASSERT(!S_ISDIR(inode->i_mode));
1973
1974         /* the application should know write failure already. */
1975         if (lli->lli_write_rc)
1976                 return 0;
1977
1978         /* catch async errors that were recorded back when async writeback
1979          * failed for pages in this mapping. */
1980         rc = lli->lli_async_rc;
1981         lli->lli_async_rc = 0;
1982         if (lsm) {
1983                 err = lov_test_and_clear_async_rc(lsm);
1984                 if (rc == 0)
1985                         rc = err;
1986         }
1987
1988         return rc ? -EIO : 0;
1989 }
1990
1991 #ifdef HAVE_FILE_FSYNC_4ARGS
1992 int ll_fsync(struct file *file, loff_t start, loff_t end, int data)
1993 #elif defined(HAVE_FILE_FSYNC_2ARGS)
1994 int ll_fsync(struct file *file, int data)
1995 #else
1996 int ll_fsync(struct file *file, struct dentry *dentry, int data)
1997 #endif
1998 {
1999         struct inode *inode = file->f_dentry->d_inode;
2000         struct ll_inode_info *lli = ll_i2info(inode);
2001         struct lov_stripe_md *lsm = lli->lli_smd;
2002         struct ptlrpc_request *req;
2003         struct obd_capa *oc;
2004         int rc, err;
2005         ENTRY;
2006         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p)\n", inode->i_ino,
2007                inode->i_generation, inode);
2008         ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_FSYNC, 1);
2009
2010         /* fsync's caller has already called _fdata{sync,write}, we want
2011          * that IO to finish before calling the osc and mdc sync methods */
2012         rc = filemap_fdatawait(inode->i_mapping);
2013
2014         /* catch async errors that were recorded back when async writeback
2015          * failed for pages in this mapping. */
2016         if (!S_ISDIR(inode->i_mode)) {
2017                 err = lli->lli_async_rc;
2018                 lli->lli_async_rc = 0;
2019                 if (rc == 0)
2020                         rc = err;
2021                 if (lsm) {
2022                         err = lov_test_and_clear_async_rc(lsm);
2023                         if (rc == 0)
2024                                 rc = err;
2025                 }
2026         }
2027
2028         oc = ll_mdscapa_get(inode);
2029         err = md_sync(ll_i2sbi(inode)->ll_md_exp, ll_inode2fid(inode), oc,
2030                       &req);
2031         capa_put(oc);
2032         if (!rc)
2033                 rc = err;
2034         if (!err)
2035                 ptlrpc_req_finished(req);
2036
2037         if (data && lsm) {
2038                 struct obd_info *oinfo;
2039
2040                 OBD_ALLOC_PTR(oinfo);
2041                 if (!oinfo)
2042                         RETURN(rc ? rc : -ENOMEM);
2043                 OBDO_ALLOC(oinfo->oi_oa);
2044                 if (!oinfo->oi_oa) {
2045                         OBD_FREE_PTR(oinfo);
2046                         RETURN(rc ? rc : -ENOMEM);
2047                 }
2048                 oinfo->oi_oa->o_id = lsm->lsm_object_id;
2049                 oinfo->oi_oa->o_seq = lsm->lsm_object_seq;
2050                 oinfo->oi_oa->o_valid = OBD_MD_FLID | OBD_MD_FLGROUP;
2051                 obdo_from_inode(oinfo->oi_oa, inode, &ll_i2info(inode)->lli_fid,
2052                                 OBD_MD_FLTYPE | OBD_MD_FLATIME |
2053                                 OBD_MD_FLMTIME | OBD_MD_FLCTIME |
2054                                 OBD_MD_FLGROUP);
2055                 oinfo->oi_md = lsm;
2056                 oinfo->oi_capa = ll_osscapa_get(inode, CAPA_OPC_OSS_WRITE);
2057                 err = obd_sync_rqset(ll_i2sbi(inode)->ll_dt_exp, oinfo, 0,
2058                                      OBD_OBJECT_EOF);
2059                 capa_put(oinfo->oi_capa);
2060                 if (!rc)
2061                         rc = err;
2062                 OBDO_FREE(oinfo->oi_oa);
2063                 OBD_FREE_PTR(oinfo);
2064                 lli->lli_write_rc = rc < 0 ? rc : 0;
2065         }
2066
2067         RETURN(rc);
2068 }
2069
2070 int ll_file_flock(struct file *file, int cmd, struct file_lock *file_lock)
2071 {
2072         struct inode *inode = file->f_dentry->d_inode;
2073         struct ll_sb_info *sbi = ll_i2sbi(inode);
2074         struct ldlm_enqueue_info einfo = { .ei_type = LDLM_FLOCK,
2075                                            .ei_cb_cp =ldlm_flock_completion_ast,
2076                                            .ei_cbdata = file_lock };
2077         struct md_op_data *op_data;
2078         struct lustre_handle lockh = {0};
2079         ldlm_policy_data_t flock = {{0}};
2080         int flags = 0;
2081         int rc;
2082         ENTRY;
2083
2084         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu file_lock=%p\n",
2085                inode->i_ino, file_lock);
2086
2087         ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_FLOCK, 1);
2088
2089         if (file_lock->fl_flags & FL_FLOCK) {
2090                 LASSERT((cmd == F_SETLKW) || (cmd == F_SETLK));
2091                 /* flocks are whole-file locks */
2092                 flock.l_flock.end = OFFSET_MAX;
2093                 /* For flocks owner is determined by the local file desctiptor*/
2094                 flock.l_flock.owner = (unsigned long)file_lock->fl_file;
2095         } else if (file_lock->fl_flags & FL_POSIX) {
2096                 flock.l_flock.owner = (unsigned long)file_lock->fl_owner;
2097                 flock.l_flock.start = file_lock->fl_start;
2098                 flock.l_flock.end = file_lock->fl_end;
2099         } else {
2100                 RETURN(-EINVAL);
2101         }
2102         flock.l_flock.pid = file_lock->fl_pid;
2103
2104         /* Somewhat ugly workaround for svc lockd.
2105          * lockd installs custom fl_lmops->fl_compare_owner that checks
2106          * for the fl_owner to be the same (which it always is on local node
2107          * I guess between lockd processes) and then compares pid.
2108          * As such we assign pid to the owner field to make it all work,
2109          * conflict with normal locks is unlikely since pid space and
2110          * pointer space for current->files are not intersecting */
2111         if (file_lock->fl_lmops && file_lock->fl_lmops->fl_compare_owner)
2112                 flock.l_flock.owner = (unsigned long)file_lock->fl_pid;
2113
2114         switch (file_lock->fl_type) {
2115         case F_RDLCK:
2116                 einfo.ei_mode = LCK_PR;
2117                 break;
2118         case F_UNLCK:
2119                 /* An unlock request may or may not have any relation to
2120                  * existing locks so we may not be able to pass a lock handle
2121                  * via a normal ldlm_lock_cancel() request. The request may even
2122                  * unlock a byte range in the middle of an existing lock. In
2123                  * order to process an unlock request we need all of the same
2124                  * information that is given with a normal read or write record
2125                  * lock request. To avoid creating another ldlm unlock (cancel)
2126                  * message we'll treat a LCK_NL flock request as an unlock. */
2127                 einfo.ei_mode = LCK_NL;
2128                 break;
2129         case F_WRLCK:
2130                 einfo.ei_mode = LCK_PW;
2131                 break;
2132         default:
2133                 CDEBUG(D_INFO, "Unknown fcntl lock type: %d\n",
2134                         file_lock->fl_type);
2135                 RETURN (-ENOTSUPP);
2136         }
2137
2138         switch (cmd) {
2139         case F_SETLKW:
2140 #ifdef F_SETLKW64
2141         case F_SETLKW64:
2142 #endif
2143                 flags = 0;
2144                 break;
2145         case F_SETLK:
2146 #ifdef F_SETLK64
2147         case F_SETLK64:
2148 #endif
2149                 flags = LDLM_FL_BLOCK_NOWAIT;
2150                 break;
2151         case F_GETLK:
2152 #ifdef F_GETLK64
2153         case F_GETLK64:
2154 #endif
2155                 flags = LDLM_FL_TEST_LOCK;
2156                 /* Save the old mode so that if the mode in the lock changes we
2157                  * can decrement the appropriate reader or writer refcount. */
2158                 file_lock->fl_type = einfo.ei_mode;
2159                 break;
2160         default:
2161                 CERROR("unknown fcntl lock command: %d\n", cmd);
2162                 RETURN (-EINVAL);
2163         }
2164
2165         op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL, 0, 0,
2166                                      LUSTRE_OPC_ANY, NULL);
2167         if (IS_ERR(op_data))
2168                 RETURN(PTR_ERR(op_data));
2169
2170         CDEBUG(D_DLMTRACE, "inode=%lu, pid=%u, flags=%#x, mode=%u, "
2171                "start="LPU64", end="LPU64"\n", inode->i_ino, flock.l_flock.pid,
2172                flags, einfo.ei_mode, flock.l_flock.start, flock.l_flock.end);
2173
2174         rc = md_enqueue(sbi->ll_md_exp, &einfo, NULL,
2175                         op_data, &lockh, &flock, 0, NULL /* req */, flags);
2176
2177         ll_finish_md_op_data(op_data);
2178
2179         if ((file_lock->fl_flags & FL_FLOCK) &&
2180             (rc == 0 || file_lock->fl_type == F_UNLCK))
2181                 ll_flock_lock_file_wait(file, file_lock, (cmd == F_SETLKW));
2182 #ifdef HAVE_F_OP_FLOCK
2183         if ((file_lock->fl_flags & FL_POSIX) &&
2184             (rc == 0 || file_lock->fl_type == F_UNLCK) &&
2185             !(flags & LDLM_FL_TEST_LOCK))
2186                 posix_lock_file_wait(file, file_lock);
2187 #endif
2188
2189         RETURN(rc);
2190 }
2191
2192 int ll_file_noflock(struct file *file, int cmd, struct file_lock *file_lock)
2193 {
2194         ENTRY;
2195
2196         RETURN(-ENOSYS);
2197 }
2198
2199 /**
2200  * test if some locks matching bits and l_req_mode are acquired
2201  * - bits can be in different locks
2202  * - if found clear the common lock bits in *bits
2203  * - the bits not found, are kept in *bits
2204  * \param inode [IN]
2205  * \param bits [IN] searched lock bits [IN]
2206  * \param l_req_mode [IN] searched lock mode
2207  * \retval boolean, true iff all bits are found
2208  */
2209 int ll_have_md_lock(struct inode *inode, __u64 *bits,  ldlm_mode_t l_req_mode)
2210 {
2211         struct lustre_handle lockh;
2212         ldlm_policy_data_t policy;
2213         ldlm_mode_t mode = (l_req_mode == LCK_MINMODE) ?
2214                                 (LCK_CR|LCK_CW|LCK_PR|LCK_PW) : l_req_mode;
2215         struct lu_fid *fid;
2216         int flags;
2217         int i;
2218         ENTRY;
2219
2220         if (!inode)
2221                RETURN(0);
2222
2223         fid = &ll_i2info(inode)->lli_fid;
2224         CDEBUG(D_INFO, "trying to match res "DFID" mode %s\n", PFID(fid),
2225                ldlm_lockname[mode]);
2226
2227         flags = LDLM_FL_BLOCK_GRANTED | LDLM_FL_CBPENDING | LDLM_FL_TEST_LOCK;
2228         for (i = 0; i < MDS_INODELOCK_MAXSHIFT && *bits != 0; i++) {
2229                 policy.l_inodebits.bits = *bits & (1 << i);
2230                 if (policy.l_inodebits.bits == 0)
2231                         continue;
2232
2233                 if (md_lock_match(ll_i2mdexp(inode), flags, fid, LDLM_IBITS,
2234                                   &policy, mode, &lockh)) {
2235                         struct ldlm_lock *lock;
2236
2237                         lock = ldlm_handle2lock(&lockh);
2238                         if (lock) {
2239                                 *bits &=
2240                                       ~(lock->l_policy_data.l_inodebits.bits);
2241                                 LDLM_LOCK_PUT(lock);
2242                         } else {
2243                                 *bits &= ~policy.l_inodebits.bits;
2244                         }
2245                 }
2246         }
2247         RETURN(*bits == 0);
2248 }
2249
2250 ldlm_mode_t ll_take_md_lock(struct inode *inode, __u64 bits,
2251                             struct lustre_handle *lockh)
2252 {
2253         ldlm_policy_data_t policy = { .l_inodebits = {bits}};
2254         struct lu_fid *fid;
2255         ldlm_mode_t rc;
2256         int flags;
2257         ENTRY;
2258
2259         fid = &ll_i2info(inode)->lli_fid;
2260         CDEBUG(D_INFO, "trying to match res "DFID"\n", PFID(fid));
2261
2262         flags = LDLM_FL_BLOCK_GRANTED | LDLM_FL_CBPENDING;
2263         rc = md_lock_match(ll_i2mdexp(inode), flags, fid, LDLM_IBITS, &policy,
2264                            LCK_CR|LCK_CW|LCK_PR|LCK_PW, lockh);
2265         RETURN(rc);
2266 }
2267
2268 static int ll_inode_revalidate_fini(struct inode *inode, int rc) {
2269         if (rc == -ENOENT) { /* Already unlinked. Just update nlink
2270                               * and return success */
2271                 inode->i_nlink = 0;
2272                 /* This path cannot be hit for regular files unless in
2273                  * case of obscure races, so no need to to validate
2274                  * size. */
2275                 if (!S_ISREG(inode->i_mode) &&
2276                     !S_ISDIR(inode->i_mode))
2277                         return 0;
2278         }
2279
2280         if (rc) {
2281                 CERROR("failure %d inode %lu\n", rc, inode->i_ino);
2282                 return -abs(rc);
2283
2284         }
2285
2286         return 0;
2287 }
2288
2289 int __ll_inode_revalidate_it(struct dentry *dentry, struct lookup_intent *it,
2290                              __u64 ibits)
2291 {
2292         struct inode *inode = dentry->d_inode;
2293         struct ptlrpc_request *req = NULL;
2294         struct obd_export *exp;
2295         int rc = 0;
2296         ENTRY;
2297
2298         if (!inode) {
2299                 CERROR("REPORT THIS LINE TO PETER\n");
2300                 RETURN(0);
2301         }
2302
2303         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p),name=%s\n",
2304                inode->i_ino, inode->i_generation, inode, dentry->d_name.name);
2305
2306         exp = ll_i2mdexp(inode);
2307
2308         /* XXX: Enable OBD_CONNECT_ATTRFID to reduce unnecessary getattr RPC.
2309          *      But under CMD case, it caused some lock issues, should be fixed
2310          *      with new CMD ibits lock. See bug 12718 */
2311         if (exp->exp_connect_flags & OBD_CONNECT_ATTRFID) {
2312                 struct lookup_intent oit = { .it_op = IT_GETATTR };
2313                 struct md_op_data *op_data;
2314
2315                 if (ibits == MDS_INODELOCK_LOOKUP)
2316                         oit.it_op = IT_LOOKUP;
2317
2318                 /* Call getattr by fid, so do not provide name at all. */
2319                 op_data = ll_prep_md_op_data(NULL, dentry->d_parent->d_inode,
2320                                              dentry->d_inode, NULL, 0, 0,
2321                                              LUSTRE_OPC_ANY, NULL);
2322                 if (IS_ERR(op_data))
2323                         RETURN(PTR_ERR(op_data));
2324
2325                 oit.it_create_mode |= M_CHECK_STALE;
2326                 rc = md_intent_lock(exp, op_data, NULL, 0,
2327                                     /* we are not interested in name
2328                                        based lookup */
2329                                     &oit, 0, &req,
2330                                     ll_md_blocking_ast, 0);
2331                 ll_finish_md_op_data(op_data);
2332                 oit.it_create_mode &= ~M_CHECK_STALE;
2333                 if (rc < 0) {
2334                         rc = ll_inode_revalidate_fini(inode, rc);
2335                         GOTO (out, rc);
2336                 }
2337
2338                 rc = ll_revalidate_it_finish(req, &oit, dentry);
2339                 if (rc != 0) {
2340                         ll_intent_release(&oit);
2341                         GOTO(out, rc);
2342                 }
2343
2344                 /* Unlinked? Unhash dentry, so it is not picked up later by
2345                    do_lookup() -> ll_revalidate_it(). We cannot use d_drop
2346                    here to preserve get_cwd functionality on 2.6.
2347                    Bug 10503 */
2348                 if (!dentry->d_inode->i_nlink) {
2349                         cfs_spin_lock(&ll_lookup_lock);
2350                         spin_lock(&dcache_lock);
2351                         ll_drop_dentry(dentry);
2352                         spin_unlock(&dcache_lock);
2353                         cfs_spin_unlock(&ll_lookup_lock);
2354                 }
2355
2356                 ll_lookup_finish_locks(&oit, dentry);
2357         } else if (!ll_have_md_lock(dentry->d_inode, &ibits, LCK_MINMODE)) {
2358                 struct ll_sb_info *sbi = ll_i2sbi(dentry->d_inode);
2359                 obd_valid valid = OBD_MD_FLGETATTR;
2360                 struct md_op_data *op_data;
2361                 int ealen = 0;
2362
2363                 if (S_ISREG(inode->i_mode)) {
2364                         rc = ll_get_max_mdsize(sbi, &ealen);
2365                         if (rc)
2366                                 RETURN(rc);
2367                         valid |= OBD_MD_FLEASIZE | OBD_MD_FLMODEASIZE;
2368                 }
2369
2370                 op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL,
2371                                              0, ealen, LUSTRE_OPC_ANY,
2372                                              NULL);
2373                 if (IS_ERR(op_data))
2374                         RETURN(PTR_ERR(op_data));
2375
2376                 op_data->op_valid = valid;
2377                 /* Once OBD_CONNECT_ATTRFID is not supported, we can't find one
2378                  * capa for this inode. Because we only keep capas of dirs
2379                  * fresh. */
2380                 rc = md_getattr(sbi->ll_md_exp, op_data, &req);
2381                 ll_finish_md_op_data(op_data);
2382                 if (rc) {
2383                         rc = ll_inode_revalidate_fini(inode, rc);
2384                         RETURN(rc);
2385                 }
2386
2387                 rc = ll_prep_inode(&inode, req, NULL);
2388         }
2389 out:
2390         ptlrpc_req_finished(req);
2391         return rc;
2392 }
2393
2394 int ll_inode_revalidate_it(struct dentry *dentry, struct lookup_intent *it,
2395                            __u64 ibits)
2396 {
2397         struct inode *inode = dentry->d_inode;
2398         int rc;
2399         ENTRY;
2400
2401         rc = __ll_inode_revalidate_it(dentry, it, ibits);
2402
2403         /* if object not yet allocated, don't validate size */
2404         if (rc == 0 && ll_i2info(dentry->d_inode)->lli_smd == NULL) {
2405                 LTIME_S(inode->i_atime) = ll_i2info(inode)->lli_lvb.lvb_atime;
2406                 LTIME_S(inode->i_mtime) = ll_i2info(inode)->lli_lvb.lvb_mtime;
2407                 LTIME_S(inode->i_ctime) = ll_i2info(inode)->lli_lvb.lvb_ctime;
2408                 RETURN(0);
2409         }
2410
2411         /* ll_glimpse_size will prefer locally cached writes if they extend
2412          * the file */
2413
2414         if (rc == 0)
2415                 rc = ll_glimpse_size(inode);
2416
2417         RETURN(rc);
2418 }
2419
2420 int ll_getattr_it(struct vfsmount *mnt, struct dentry *de,
2421                   struct lookup_intent *it, struct kstat *stat)
2422 {
2423         struct inode *inode = de->d_inode;
2424         struct ll_sb_info *sbi = ll_i2sbi(inode);
2425         struct ll_inode_info *lli = ll_i2info(inode);
2426         int res = 0;
2427
2428         res = ll_inode_revalidate_it(de, it, MDS_INODELOCK_UPDATE |
2429                                              MDS_INODELOCK_LOOKUP);
2430         ll_stats_ops_tally(sbi, LPROC_LL_GETATTR, 1);
2431
2432         if (res)
2433                 return res;
2434
2435         stat->dev = inode->i_sb->s_dev;
2436         if (ll_need_32bit_api(sbi))
2437                 stat->ino = cl_fid_build_ino(&lli->lli_fid, 1);
2438         else
2439                 stat->ino = inode->i_ino;
2440         stat->mode = inode->i_mode;
2441         stat->nlink = inode->i_nlink;
2442         stat->uid = inode->i_uid;
2443         stat->gid = inode->i_gid;
2444         stat->rdev = kdev_t_to_nr(inode->i_rdev);
2445         stat->atime = inode->i_atime;
2446         stat->mtime = inode->i_mtime;
2447         stat->ctime = inode->i_ctime;
2448 #ifdef HAVE_INODE_BLKSIZE
2449         stat->blksize = inode->i_blksize;
2450 #else
2451         stat->blksize = 1 << inode->i_blkbits;
2452 #endif
2453
2454         stat->size = i_size_read(inode);
2455         stat->blocks = inode->i_blocks;
2456
2457         return 0;
2458 }
2459 int ll_getattr(struct vfsmount *mnt, struct dentry *de, struct kstat *stat)
2460 {
2461         struct lookup_intent it = { .it_op = IT_GETATTR };
2462
2463         return ll_getattr_it(mnt, de, &it, stat);
2464 }
2465
2466 #ifdef HAVE_LINUX_FIEMAP_H
2467 int ll_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
2468                 __u64 start, __u64 len)
2469 {
2470         int rc;
2471         size_t num_bytes;
2472         struct ll_user_fiemap *fiemap;
2473         unsigned int extent_count = fieinfo->fi_extents_max;
2474
2475         num_bytes = sizeof(*fiemap) + (extent_count *
2476                                        sizeof(struct ll_fiemap_extent));
2477         OBD_ALLOC_LARGE(fiemap, num_bytes);
2478
2479         if (fiemap == NULL)
2480                 RETURN(-ENOMEM);
2481
2482         fiemap->fm_flags = fieinfo->fi_flags;
2483         fiemap->fm_extent_count = fieinfo->fi_extents_max;
2484         fiemap->fm_start = start;
2485         fiemap->fm_length = len;
2486         memcpy(&fiemap->fm_extents[0], fieinfo->fi_extents_start,
2487                sizeof(struct ll_fiemap_extent));
2488
2489         rc = ll_do_fiemap(inode, fiemap, num_bytes);
2490
2491         fieinfo->fi_flags = fiemap->fm_flags;
2492         fieinfo->fi_extents_mapped = fiemap->fm_mapped_extents;
2493         memcpy(fieinfo->fi_extents_start, &fiemap->fm_extents[0],
2494                fiemap->fm_mapped_extents * sizeof(struct ll_fiemap_extent));
2495
2496         OBD_FREE_LARGE(fiemap, num_bytes);
2497         return rc;
2498 }
2499 #endif
2500
2501
2502 static int
2503 #ifdef HAVE_GENERIC_PERMISSION_4ARGS
2504 lustre_check_acl(struct inode *inode, int mask, unsigned int flags)
2505 #else
2506 lustre_check_acl(struct inode *inode, int mask)
2507 #endif
2508 {
2509 #ifdef CONFIG_FS_POSIX_ACL
2510         struct ll_inode_info *lli = ll_i2info(inode);
2511         struct posix_acl *acl;
2512         int rc;
2513         ENTRY;
2514
2515 #ifdef HAVE_GENERIC_PERMISSION_4ARGS
2516         if (flags & IPERM_FLAG_RCU)
2517                 return -ECHILD;
2518 #endif
2519         cfs_spin_lock(&lli->lli_lock);
2520         acl = posix_acl_dup(lli->lli_posix_acl);
2521         cfs_spin_unlock(&lli->lli_lock);
2522
2523         if (!acl)
2524                 RETURN(-EAGAIN);
2525
2526         rc = posix_acl_permission(inode, acl, mask);
2527         posix_acl_release(acl);
2528
2529         RETURN(rc);
2530 #else
2531         return -EAGAIN;
2532 #endif
2533 }
2534
2535 #ifdef HAVE_GENERIC_PERMISSION_4ARGS
2536 int ll_inode_permission(struct inode *inode, int mask, unsigned int flags)
2537 #else
2538 # ifdef HAVE_INODE_PERMISION_2ARGS
2539 int ll_inode_permission(struct inode *inode, int mask)
2540 # else
2541 int ll_inode_permission(struct inode *inode, int mask, struct nameidata *nd)
2542 # endif
2543 #endif
2544 {
2545         int rc = 0;
2546         ENTRY;
2547
2548        /* as root inode are NOT getting validated in lookup operation,
2549         * need to do it before permission check. */
2550
2551         if (inode == inode->i_sb->s_root->d_inode) {
2552                 struct lookup_intent it = { .it_op = IT_LOOKUP };
2553
2554                 rc = __ll_inode_revalidate_it(inode->i_sb->s_root, &it,
2555                                               MDS_INODELOCK_LOOKUP);
2556                 if (rc)
2557                         RETURN(rc);
2558         }
2559
2560         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p), inode mode %x mask %o\n",
2561                inode->i_ino, inode->i_generation, inode, inode->i_mode, mask);
2562
2563         if (ll_i2sbi(inode)->ll_flags & LL_SBI_RMT_CLIENT)
2564                 return lustre_check_remote_perm(inode, mask);
2565
2566         ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_INODE_PERM, 1);
2567         rc = ll_generic_permission(inode, mask, flags, lustre_check_acl);
2568
2569         RETURN(rc);
2570 }
2571
2572 #ifdef HAVE_FILE_READV
2573 #define READ_METHOD readv
2574 #define READ_FUNCTION ll_file_readv
2575 #define WRITE_METHOD writev
2576 #define WRITE_FUNCTION ll_file_writev
2577 #else
2578 #define READ_METHOD aio_read
2579 #define READ_FUNCTION ll_file_aio_read
2580 #define WRITE_METHOD aio_write
2581 #define WRITE_FUNCTION ll_file_aio_write
2582 #endif
2583
2584 /* -o localflock - only provides locally consistent flock locks */
2585 struct file_operations ll_file_operations = {
2586         .read           = ll_file_read,
2587         .READ_METHOD    = READ_FUNCTION,
2588         .write          = ll_file_write,
2589         .WRITE_METHOD   = WRITE_FUNCTION,
2590 #ifdef HAVE_UNLOCKED_IOCTL
2591         .unlocked_ioctl = ll_file_ioctl,
2592 #else
2593         .ioctl          = ll_file_ioctl,
2594 #endif
2595         .open           = ll_file_open,
2596         .release        = ll_file_release,
2597         .mmap           = ll_file_mmap,
2598         .llseek         = ll_file_seek,
2599 #ifdef HAVE_KERNEL_SENDFILE
2600         .sendfile       = ll_file_sendfile,
2601 #endif
2602 #ifdef HAVE_KERNEL_SPLICE_READ
2603         .splice_read    = ll_file_splice_read,
2604 #endif
2605         .fsync          = ll_fsync,
2606         .flush          = ll_flush
2607 };
2608
2609 struct file_operations ll_file_operations_flock = {
2610         .read           = ll_file_read,
2611         .READ_METHOD    = READ_FUNCTION,
2612         .write          = ll_file_write,
2613         .WRITE_METHOD   = WRITE_FUNCTION,
2614 #ifdef HAVE_UNLOCKED_IOCTL
2615         .unlocked_ioctl = ll_file_ioctl,
2616 #else
2617         .ioctl          = ll_file_ioctl,
2618 #endif
2619         .open           = ll_file_open,
2620         .release        = ll_file_release,
2621         .mmap           = ll_file_mmap,
2622         .llseek         = ll_file_seek,
2623 #ifdef HAVE_KERNEL_SENDFILE
2624         .sendfile       = ll_file_sendfile,
2625 #endif
2626 #ifdef HAVE_KERNEL_SPLICE_READ
2627         .splice_read    = ll_file_splice_read,
2628 #endif
2629         .fsync          = ll_fsync,
2630         .flush          = ll_flush,
2631 #ifdef HAVE_F_OP_FLOCK
2632         .flock          = ll_file_flock,
2633 #endif
2634         .lock           = ll_file_flock
2635 };
2636
2637 /* These are for -o noflock - to return ENOSYS on flock calls */
2638 struct file_operations ll_file_operations_noflock = {
2639         .read           = ll_file_read,
2640         .READ_METHOD    = READ_FUNCTION,
2641         .write          = ll_file_write,
2642         .WRITE_METHOD   = WRITE_FUNCTION,
2643 #ifdef HAVE_UNLOCKED_IOCTL
2644         .unlocked_ioctl = ll_file_ioctl,
2645 #else
2646         .ioctl          = ll_file_ioctl,
2647 #endif
2648         .open           = ll_file_open,
2649         .release        = ll_file_release,
2650         .mmap           = ll_file_mmap,
2651         .llseek         = ll_file_seek,
2652 #ifdef HAVE_KERNEL_SENDFILE
2653         .sendfile       = ll_file_sendfile,
2654 #endif
2655 #ifdef HAVE_KERNEL_SPLICE_READ
2656         .splice_read    = ll_file_splice_read,
2657 #endif
2658         .fsync          = ll_fsync,
2659         .flush          = ll_flush,
2660 #ifdef HAVE_F_OP_FLOCK
2661         .flock          = ll_file_noflock,
2662 #endif
2663         .lock           = ll_file_noflock
2664 };
2665
2666 struct inode_operations ll_file_inode_operations = {
2667         .setattr        = ll_setattr,
2668         .truncate       = ll_truncate,
2669         .getattr        = ll_getattr,
2670         .permission     = ll_inode_permission,
2671         .setxattr       = ll_setxattr,
2672         .getxattr       = ll_getxattr,
2673         .listxattr      = ll_listxattr,
2674         .removexattr    = ll_removexattr,
2675 #ifdef  HAVE_LINUX_FIEMAP_H
2676         .fiemap         = ll_fiemap,
2677 #endif
2678 };
2679
2680 /* dynamic ioctl number support routins */
2681 static struct llioc_ctl_data {
2682         cfs_rw_semaphore_t      ioc_sem;
2683         cfs_list_t              ioc_head;
2684 } llioc = {
2685         __RWSEM_INITIALIZER(llioc.ioc_sem),
2686         CFS_LIST_HEAD_INIT(llioc.ioc_head)
2687 };
2688
2689
2690 struct llioc_data {
2691         cfs_list_t              iocd_list;
2692         unsigned int            iocd_size;
2693         llioc_callback_t        iocd_cb;
2694         unsigned int            iocd_count;
2695         unsigned int            iocd_cmd[0];
2696 };
2697
2698 void *ll_iocontrol_register(llioc_callback_t cb, int count, unsigned int *cmd)
2699 {
2700         unsigned int size;
2701         struct llioc_data *in_data = NULL;
2702         ENTRY;
2703
2704         if (cb == NULL || cmd == NULL ||
2705             count > LLIOC_MAX_CMD || count < 0)
2706                 RETURN(NULL);
2707
2708         size = sizeof(*in_data) + count * sizeof(unsigned int);
2709         OBD_ALLOC(in_data, size);
2710         if (in_data == NULL)
2711                 RETURN(NULL);
2712
2713         memset(in_data, 0, sizeof(*in_data));
2714         in_data->iocd_size = size;
2715         in_data->iocd_cb = cb;
2716         in_data->iocd_count = count;
2717         memcpy(in_data->iocd_cmd, cmd, sizeof(unsigned int) * count);
2718
2719         cfs_down_write(&llioc.ioc_sem);
2720         cfs_list_add_tail(&in_data->iocd_list, &llioc.ioc_head);
2721         cfs_up_write(&llioc.ioc_sem);
2722
2723         RETURN(in_data);
2724 }
2725
2726 void ll_iocontrol_unregister(void *magic)
2727 {
2728         struct llioc_data *tmp;
2729
2730         if (magic == NULL)
2731                 return;
2732
2733         cfs_down_write(&llioc.ioc_sem);
2734         cfs_list_for_each_entry(tmp, &llioc.ioc_head, iocd_list) {
2735                 if (tmp == magic) {
2736                         unsigned int size = tmp->iocd_size;
2737
2738                         cfs_list_del(&tmp->iocd_list);
2739                         cfs_up_write(&llioc.ioc_sem);
2740
2741                         OBD_FREE(tmp, size);
2742                         return;
2743                 }
2744         }
2745         cfs_up_write(&llioc.ioc_sem);
2746
2747         CWARN("didn't find iocontrol register block with magic: %p\n", magic);
2748 }
2749
2750 EXPORT_SYMBOL(ll_iocontrol_register);
2751 EXPORT_SYMBOL(ll_iocontrol_unregister);
2752
2753 enum llioc_iter ll_iocontrol_call(struct inode *inode, struct file *file,
2754                         unsigned int cmd, unsigned long arg, int *rcp)
2755 {
2756         enum llioc_iter ret = LLIOC_CONT;
2757         struct llioc_data *data;
2758         int rc = -EINVAL, i;
2759
2760         cfs_down_read(&llioc.ioc_sem);
2761         cfs_list_for_each_entry(data, &llioc.ioc_head, iocd_list) {
2762                 for (i = 0; i < data->iocd_count; i++) {
2763                         if (cmd != data->iocd_cmd[i])
2764                                 continue;
2765
2766                         ret = data->iocd_cb(inode, file, cmd, arg, data, &rc);
2767                         break;
2768                 }
2769
2770                 if (ret == LLIOC_STOP)
2771                         break;
2772         }
2773         cfs_up_read(&llioc.ioc_sem);
2774
2775         if (rcp)
2776                 *rcp = rc;
2777         return ret;
2778 }