Whamcloud - gitweb
578e610a2cd2f0109624380702d9f1aab1f76bd2
[fs/lustre-release.git] / lustre / llite / dir.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2016, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * lustre/llite/dir.c
33  *
34  * Directory code for lustre client.
35  */
36
37 #include <linux/fs.h>
38 #include <linux/pagemap.h>
39 #include <linux/mm.h>
40 #include <linux/version.h>
41 #include <linux/user_namespace.h>
42 #ifdef HAVE_UIDGID_HEADER
43 # include <linux/uidgid.h>
44 #endif
45 #include <asm/uaccess.h>
46 #include <linux/buffer_head.h>   // for wait_on_buffer
47 #include <linux/pagevec.h>
48
49 #define DEBUG_SUBSYSTEM S_LLITE
50
51 #include <lustre/lustre_idl.h>
52
53 #include <obd_support.h>
54 #include <obd_class.h>
55 #include <lustre_ioctl.h>
56 #include <lustre_lib.h>
57 #include <lustre_dlm.h>
58 #include <lustre_fid.h>
59 #include <lustre_kernelcomm.h>
60 #include <lustre_swab.h>
61
62 #include "llite_internal.h"
63
64 /*
65  * (new) readdir implementation overview.
66  *
67  * Original lustre readdir implementation cached exact copy of raw directory
68  * pages on the client. These pages were indexed in client page cache by
69  * logical offset in the directory file. This design, while very simple and
70  * intuitive had some inherent problems:
71  *
72  *     . it implies that byte offset to the directory entry serves as a
73  *     telldir(3)/seekdir(3) cookie, but that offset is not stable: in
74  *     ext3/htree directory entries may move due to splits, and more
75  *     importantly,
76  *
77  *     . it is incompatible with the design of split directories for cmd3,
78  *     that assumes that names are distributed across nodes based on their
79  *     hash, and so readdir should be done in hash order.
80  *
81  * New readdir implementation does readdir in hash order, and uses hash of a
82  * file name as a telldir/seekdir cookie. This led to number of complications:
83  *
84  *     . hash is not unique, so it cannot be used to index cached directory
85  *     pages on the client (note, that it requires a whole pageful of hash
86  *     collided entries to cause two pages to have identical hashes);
87  *
88  *     . hash is not unique, so it cannot, strictly speaking, be used as an
89  *     entry cookie. ext3/htree has the same problem and lustre implementation
90  *     mimics their solution: seekdir(hash) positions directory at the first
91  *     entry with the given hash.
92  *
93  * Client side.
94  *
95  * 0. caching
96  *
97  * Client caches directory pages using hash of the first entry as an index. As
98  * noted above hash is not unique, so this solution doesn't work as is:
99  * special processing is needed for "page hash chains" (i.e., sequences of
100  * pages filled with entries all having the same hash value).
101  *
102  * First, such chains have to be detected. To this end, server returns to the
103  * client the hash of the first entry on the page next to one returned. When
104  * client detects that this hash is the same as hash of the first entry on the
105  * returned page, page hash collision has to be handled. Pages in the
106  * hash chain, except first one, are termed "overflow pages".
107  *
108  * Solution to index uniqueness problem is to not cache overflow
109  * pages. Instead, when page hash collision is detected, all overflow pages
110  * from emerging chain are immediately requested from the server and placed in
111  * a special data structure (struct ll_dir_chain). This data structure is used
112  * by ll_readdir() to process entries from overflow pages. When readdir
113  * invocation finishes, overflow pages are discarded. If page hash collision
114  * chain weren't completely processed, next call to readdir will again detect
115  * page hash collision, again read overflow pages in, process next portion of
116  * entries and again discard the pages. This is not as wasteful as it looks,
117  * because, given reasonable hash, page hash collisions are extremely rare.
118  *
119  * 1. directory positioning
120  *
121  * When seekdir(hash) is called, original
122  *
123  *
124  *
125  *
126  *
127  *
128  *
129  *
130  * Server.
131  *
132  * identification of and access to overflow pages
133  *
134  * page format
135  *
136  * Page in MDS_READPAGE RPC is packed in LU_PAGE_SIZE, and each page contains
137  * a header lu_dirpage which describes the start/end hash, and whether this
138  * page is empty (contains no dir entry) or hash collide with next page.
139  * After client receives reply, several pages will be integrated into dir page
140  * in PAGE_SIZE (if PAGE_SIZE greater than LU_PAGE_SIZE), and the
141  * lu_dirpage for this integrated page will be adjusted. See
142  * mdc_adjust_dirpages().
143  *
144  */
145 struct page *ll_get_dir_page(struct inode *dir, struct md_op_data *op_data,
146                              __u64 offset, struct ll_dir_chain *chain)
147 {
148         struct md_callback      cb_op;
149         struct page             *page;
150         int                     rc;
151
152         cb_op.md_blocking_ast = ll_md_blocking_ast;
153         rc = md_read_page(ll_i2mdexp(dir), op_data, &cb_op, offset, &page);
154         if (rc != 0)
155                 return ERR_PTR(rc);
156
157         return page;
158 }
159
160 void ll_release_page(struct inode *inode, struct page *page,
161                      bool remove)
162 {
163         kunmap(page);
164
165         /* Always remove the page for striped dir, because the page is
166          * built from temporarily in LMV layer */
167         if (inode != NULL && S_ISDIR(inode->i_mode) &&
168             ll_i2info(inode)->lli_lsm_md != NULL) {
169                 __free_page(page);
170                 return;
171         }
172
173         if (remove) {
174                 lock_page(page);
175                 if (likely(page->mapping != NULL))
176                         truncate_complete_page(page->mapping, page);
177                 unlock_page(page);
178         }
179         put_page(page);
180 }
181
182 /**
183  * return IF_* type for given lu_dirent entry.
184  * IF_* flag shld be converted to particular OS file type in
185  * platform llite module.
186  */
187 static u16 ll_dirent_type_get(struct lu_dirent *ent)
188 {
189         u16 type = 0;
190         struct luda_type *lt;
191         int len = 0;
192
193         if (le32_to_cpu(ent->lde_attrs) & LUDA_TYPE) {
194                 const unsigned align = sizeof(struct luda_type) - 1;
195
196                 len = le16_to_cpu(ent->lde_namelen);
197                 len = (len + align) & ~align;
198                 lt = (void *)ent->lde_name + len;
199                 type = IFTODT(le16_to_cpu(lt->lt_type));
200         }
201
202         return type;
203 }
204
205 #ifdef HAVE_DIR_CONTEXT
206 int ll_dir_read(struct inode *inode, __u64 *ppos, struct md_op_data *op_data,
207                 struct dir_context *ctx)
208 {
209 #else
210 int ll_dir_read(struct inode *inode, __u64 *ppos, struct md_op_data *op_data,
211                 void *cookie, filldir_t filldir)
212 {
213 #endif
214         struct ll_sb_info    *sbi        = ll_i2sbi(inode);
215         __u64                 pos        = *ppos;
216         bool                  is_api32 = ll_need_32bit_api(sbi);
217         bool                  is_hash64 = sbi->ll_flags & LL_SBI_64BIT_HASH;
218         struct page          *page;
219         struct ll_dir_chain   chain;
220         bool                  done = false;
221         int                   rc = 0;
222         ENTRY;
223
224         ll_dir_chain_init(&chain);
225
226         page = ll_get_dir_page(inode, op_data, pos, &chain);
227
228         while (rc == 0 && !done) {
229                 struct lu_dirpage *dp;
230                 struct lu_dirent  *ent;
231                 __u64 hash;
232                 __u64 next;
233
234                 if (IS_ERR(page)) {
235                         rc = PTR_ERR(page);
236                         break;
237                 }
238
239                 hash = MDS_DIR_END_OFF;
240                 dp = page_address(page);
241                 for (ent = lu_dirent_start(dp); ent != NULL && !done;
242                      ent = lu_dirent_next(ent)) {
243                         __u16          type;
244                         int            namelen;
245                         struct lu_fid  fid;
246                         __u64          lhash;
247                         __u64          ino;
248
249                         hash = le64_to_cpu(ent->lde_hash);
250                         if (hash < pos)
251                                 /*
252                                  * Skip until we find target hash
253                                  * value.
254                                  */
255                                 continue;
256
257                         namelen = le16_to_cpu(ent->lde_namelen);
258                         if (namelen == 0)
259                                 /*
260                                  * Skip dummy record.
261                                  */
262                                 continue;
263
264                         if (is_api32 && is_hash64)
265                                 lhash = hash >> 32;
266                         else
267                                 lhash = hash;
268                         fid_le_to_cpu(&fid, &ent->lde_fid);
269                         ino = cl_fid_build_ino(&fid, is_api32);
270                         type = ll_dirent_type_get(ent);
271                         /* For 'll_nfs_get_name_filldir()', it will try
272                          * to access the 'ent' through its 'lde_name',
273                          * so the parameter 'name' for 'filldir()' must
274                          * be part of the 'ent'. */
275 #ifdef HAVE_DIR_CONTEXT
276                         ctx->pos = lhash;
277                         done = !dir_emit(ctx, ent->lde_name, namelen, ino,
278                                          type);
279 #else
280                         done = filldir(cookie, ent->lde_name, namelen, lhash,
281                                        ino, type);
282 #endif
283                 }
284
285                 if (done) {
286                         pos = hash;
287                         ll_release_page(inode, page, false);
288                         break;
289                 }
290
291                 next = le64_to_cpu(dp->ldp_hash_end);
292                 pos = next;
293                 if (pos == MDS_DIR_END_OFF) {
294                         /*
295                          * End of directory reached.
296                          */
297                         done = 1;
298                         ll_release_page(inode, page, false);
299                 } else {
300                         /*
301                          * Normal case: continue to the next
302                          * page.
303                          */
304                         ll_release_page(inode, page,
305                                         le32_to_cpu(dp->ldp_flags) &
306                                         LDF_COLLIDE);
307                         next = pos;
308                         page = ll_get_dir_page(inode, op_data, pos,
309                                                &chain);
310                 }
311         }
312 #ifdef HAVE_DIR_CONTEXT
313         ctx->pos = pos;
314 #else
315         *ppos = pos;
316 #endif
317         ll_dir_chain_fini(&chain);
318         RETURN(rc);
319 }
320
321 #ifdef HAVE_DIR_CONTEXT
322 static int ll_iterate(struct file *filp, struct dir_context *ctx)
323 #else
324 static int ll_readdir(struct file *filp, void *cookie, filldir_t filldir)
325 #endif
326 {
327         struct inode            *inode  = file_inode(filp);
328         struct ll_file_data     *lfd    = LUSTRE_FPRIVATE(filp);
329         struct ll_sb_info       *sbi    = ll_i2sbi(inode);
330         int                     hash64  = sbi->ll_flags & LL_SBI_64BIT_HASH;
331         int                     api32   = ll_need_32bit_api(sbi);
332         struct md_op_data       *op_data;
333         __u64                   pos;
334         int                     rc;
335         ENTRY;
336
337         if (lfd != NULL)
338                 pos = lfd->lfd_pos;
339         else
340                 pos = 0;
341
342         CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID"(%p) pos/size"
343                "%lu/%llu 32bit_api %d\n", PFID(ll_inode2fid(inode)),
344                inode, (unsigned long)pos, i_size_read(inode), api32);
345
346         if (pos == MDS_DIR_END_OFF)
347                 /*
348                  * end-of-file.
349                  */
350                 GOTO(out, rc = 0);
351
352         op_data = ll_prep_md_op_data(NULL, inode, inode, NULL, 0, 0,
353                                      LUSTRE_OPC_ANY, inode);
354         if (IS_ERR(op_data))
355                 GOTO(out, rc = PTR_ERR(op_data));
356
357         if (unlikely(op_data->op_mea1 != NULL)) {
358                 /* This is only needed for striped dir to fill ..,
359                  * see lmv_read_entry */
360                 if (file_dentry(filp)->d_parent != NULL &&
361                     file_dentry(filp)->d_parent->d_inode != NULL) {
362                         __u64 ibits = MDS_INODELOCK_UPDATE;
363                         struct inode *parent =
364                                 file_dentry(filp)->d_parent->d_inode;
365
366                         if (ll_have_md_lock(parent, &ibits, LCK_MINMODE))
367                                 op_data->op_fid3 = *ll_inode2fid(parent);
368                 }
369
370                 /* If it can not find in cache, do lookup .. on the master
371                  * object */
372                 if (fid_is_zero(&op_data->op_fid3)) {
373                         rc = ll_dir_get_parent_fid(inode, &op_data->op_fid3);
374                         if (rc != 0) {
375                                 ll_finish_md_op_data(op_data);
376                                 RETURN(rc);
377                         }
378                 }
379         }
380         op_data->op_max_pages = sbi->ll_md_brw_pages;
381 #ifdef HAVE_DIR_CONTEXT
382         ctx->pos = pos;
383         rc = ll_dir_read(inode, &pos, op_data, ctx);
384         pos = ctx->pos;
385 #else
386         rc = ll_dir_read(inode, &pos, op_data, cookie, filldir);
387 #endif
388         if (lfd != NULL)
389                 lfd->lfd_pos = pos;
390
391         if (pos == MDS_DIR_END_OFF) {
392                 if (api32)
393                         pos = LL_DIR_END_OFF_32BIT;
394                 else
395                         pos = LL_DIR_END_OFF;
396         } else {
397                 if (api32 && hash64)
398                         pos = pos >> 32;
399         }
400 #ifdef HAVE_DIR_CONTEXT
401         ctx->pos = pos;
402 #else
403         filp->f_pos = pos;
404 #endif
405         ll_finish_md_op_data(op_data);
406         filp->f_version = inode->i_version;
407
408 out:
409         if (!rc)
410                 ll_stats_ops_tally(sbi, LPROC_LL_READDIR, 1);
411
412         RETURN(rc);
413 }
414
415 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2, 13, 53, 0)
416 static int ll_send_mgc_param(struct obd_export *mgc, char *string)
417 {
418         struct mgs_send_param *msp;
419         int rc = 0;
420
421         OBD_ALLOC_PTR(msp);
422         if (!msp)
423                 return -ENOMEM;
424
425         strlcpy(msp->mgs_param, string, sizeof(msp->mgs_param));
426         rc = obd_set_info_async(NULL, mgc, sizeof(KEY_SET_INFO), KEY_SET_INFO,
427                                 sizeof(struct mgs_send_param), msp, NULL);
428         if (rc)
429                 CERROR("Failed to set parameter: %d\n", rc);
430         OBD_FREE_PTR(msp);
431
432         return rc;
433 }
434 #endif
435
436 /**
437  * Create striped directory with specified stripe(@lump)
438  *
439  * \param[in] dparent   the parent of the directory.
440  * \param[in] lump      the specified stripes.
441  * \param[in] dirname   the name of the directory.
442  * \param[in] mode      the specified mode of the directory.
443  *
444  * \retval              =0 if striped directory is being created successfully.
445  *                      <0 if the creation is failed.
446  */
447 static int ll_dir_setdirstripe(struct dentry *dparent, struct lmv_user_md *lump,
448                                const char *dirname, umode_t mode)
449 {
450         struct inode *parent = dparent->d_inode;
451         struct ptlrpc_request *request = NULL;
452         struct md_op_data *op_data;
453         struct ll_sb_info *sbi = ll_i2sbi(parent);
454         struct inode *inode = NULL;
455         struct dentry dentry = {
456                 .d_parent = dparent,
457                 .d_name = {
458                         .name = dirname,
459                         .len = strlen(dirname),
460                         .hash = full_name_hash(dirname, strlen(dirname)),
461                 },
462         };
463         int err;
464         ENTRY;
465
466         if (unlikely(lump->lum_magic != LMV_USER_MAGIC))
467                 RETURN(-EINVAL);
468
469         CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID"(%p) name %s "
470                "stripe_offset %d, stripe_count: %u\n",
471                PFID(ll_inode2fid(parent)), parent, dirname,
472                (int)lump->lum_stripe_offset, lump->lum_stripe_count);
473
474         if (lump->lum_stripe_count > 1 &&
475             !(exp_connect_flags(sbi->ll_md_exp) & OBD_CONNECT_DIR_STRIPE))
476                 RETURN(-EINVAL);
477
478         if (IS_DEADDIR(parent) &&
479             !OBD_FAIL_CHECK(OBD_FAIL_LLITE_NO_CHECK_DEAD))
480                 RETURN(-ENOENT);
481
482         if (lump->lum_magic != cpu_to_le32(LMV_USER_MAGIC))
483                 lustre_swab_lmv_user_md(lump);
484
485         if (!IS_POSIXACL(parent) || !exp_connect_umask(ll_i2mdexp(parent)))
486                 mode &= ~current_umask();
487         mode = (mode & (S_IRWXUGO | S_ISVTX)) | S_IFDIR;
488         op_data = ll_prep_md_op_data(NULL, parent, NULL, dirname,
489                                      strlen(dirname), mode, LUSTRE_OPC_MKDIR,
490                                      lump);
491         if (IS_ERR(op_data))
492                 RETURN(PTR_ERR(op_data));
493
494         if (sbi->ll_flags & LL_SBI_FILE_SECCTX) {
495                 /* selinux_dentry_init_security() uses dentry->d_parent and name
496                  * to determine the security context for the file. So our fake
497                  * dentry should be real enough for this purpose. */
498                 err = ll_dentry_init_security(&dentry, mode, &dentry.d_name,
499                                               &op_data->op_file_secctx_name,
500                                               &op_data->op_file_secctx,
501                                               &op_data->op_file_secctx_size);
502                 if (err < 0)
503                         GOTO(out_op_data, err);
504         }
505
506         op_data->op_cli_flags |= CLI_SET_MEA;
507         err = md_create(sbi->ll_md_exp, op_data, lump, sizeof(*lump), mode,
508                         from_kuid(&init_user_ns, current_fsuid()),
509                         from_kgid(&init_user_ns, current_fsgid()),
510                         cfs_curproc_cap_pack(), 0, &request);
511         if (err)
512                 GOTO(out_request, err);
513
514         CFS_FAIL_TIMEOUT(OBD_FAIL_LLITE_SETDIRSTRIPE_PAUSE, cfs_fail_val);
515
516         err = ll_prep_inode(&inode, request, parent->i_sb, NULL);
517         if (err)
518                 GOTO(out_inode, err);
519
520         dentry.d_inode = inode;
521
522         if (!(sbi->ll_flags & LL_SBI_FILE_SECCTX)) {
523                 err = ll_inode_init_security(&dentry, inode, parent);
524                 if (err)
525                         GOTO(out_inode, err);
526         }
527
528 out_inode:
529         if (inode != NULL)
530                 iput(inode);
531 out_request:
532         ptlrpc_req_finished(request);
533 out_op_data:
534         ll_finish_md_op_data(op_data);
535
536         return err;
537 }
538
539 int ll_dir_setstripe(struct inode *inode, struct lov_user_md *lump,
540                      int set_default)
541 {
542         struct ll_sb_info *sbi = ll_i2sbi(inode);
543         struct md_op_data *op_data;
544         struct ptlrpc_request *req = NULL;
545         int rc = 0;
546 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2, 13, 53, 0)
547         struct lustre_sb_info *lsi = s2lsi(inode->i_sb);
548         struct obd_device *mgc = lsi->lsi_mgc;
549 #endif
550         int lum_size;
551         ENTRY;
552
553         if (lump != NULL) {
554                 /*
555                  * This is coming from userspace, so should be in
556                  * local endian.  But the MDS would like it in little
557                  * endian, so we swab it before we send it.
558                  */
559                 switch (lump->lmm_magic) {
560                 case LOV_USER_MAGIC_V1: {
561                         if (lump->lmm_magic != cpu_to_le32(LOV_USER_MAGIC_V1))
562                                 lustre_swab_lov_user_md_v1(lump);
563                         lum_size = sizeof(struct lov_user_md_v1);
564                         break;
565                 }
566                 case LOV_USER_MAGIC_V3: {
567                         if (lump->lmm_magic != cpu_to_le32(LOV_USER_MAGIC_V3))
568                                 lustre_swab_lov_user_md_v3(
569                                         (struct lov_user_md_v3 *)lump);
570                         lum_size = sizeof(struct lov_user_md_v3);
571                         break;
572                 }
573                 case LOV_USER_MAGIC_COMP_V1: {
574                         if (lump->lmm_magic !=
575                             cpu_to_le32(LOV_USER_MAGIC_COMP_V1))
576                                 lustre_swab_lov_comp_md_v1(
577                                         (struct lov_comp_md_v1 *)lump);
578                         lum_size = le32_to_cpu(
579                                 ((struct lov_comp_md_v1 *)lump)->lcm_size);
580                         break;
581                 }
582                 case LMV_USER_MAGIC: {
583                         if (lump->lmm_magic != cpu_to_le32(LMV_USER_MAGIC))
584                                 lustre_swab_lmv_user_md(
585                                         (struct lmv_user_md *)lump);
586                         lum_size = sizeof(struct lmv_user_md);
587                         break;
588                 }
589                 default: {
590                         CDEBUG(D_IOCTL, "bad userland LOV MAGIC:"
591                                         " %#08x != %#08x nor %#08x\n",
592                                         lump->lmm_magic, LOV_USER_MAGIC_V1,
593                                         LOV_USER_MAGIC_V3);
594                         RETURN(-EINVAL);
595                 }
596                 }
597         } else {
598                 lum_size = sizeof(struct lov_user_md_v1);
599         }
600
601         op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL, 0, 0,
602                                      LUSTRE_OPC_ANY, NULL);
603         if (IS_ERR(op_data))
604                 RETURN(PTR_ERR(op_data));
605
606         /* swabbing is done in lov_setstripe() on server side */
607         rc = md_setattr(sbi->ll_md_exp, op_data, lump, lum_size, &req);
608         ll_finish_md_op_data(op_data);
609         ptlrpc_req_finished(req);
610         if (rc)
611                 RETURN(rc);
612
613 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2, 13, 53, 0)
614         /*
615          * 2.9 server has stored filesystem default stripe in ROOT xattr,
616          * and it's stored into system config for backward compatibility.
617          *
618          * In the following we use the fact that LOV_USER_MAGIC_V1 and
619          * LOV_USER_MAGIC_V3 have the same initial fields so we do not
620          * need the make the distiction between the 2 versions
621          */
622         if (set_default && mgc->u.cli.cl_mgc_mgsexp &&
623             (lump == NULL ||
624              le32_to_cpu(lump->lmm_magic) == LOV_USER_MAGIC_V1 ||
625              le32_to_cpu(lump->lmm_magic) == LOV_USER_MAGIC_V3)) {
626                 char *param = NULL;
627                 char *buf;
628
629                 OBD_ALLOC(param, MGS_PARAM_MAXLEN);
630                 if (param == NULL)
631                         GOTO(end, rc = -ENOMEM);
632
633                 buf = param;
634                 /* Get fsname and assume devname to be -MDT0000. */
635                 ll_get_fsname(inode->i_sb, buf, MTI_NAME_MAXLEN);
636                 strcat(buf, "-MDT0000.lov");
637                 buf += strlen(buf);
638
639                 /* Set root stripesize */
640                 snprintf(buf, MGS_PARAM_MAXLEN, ".stripesize=%u",
641                          lump ? le32_to_cpu(lump->lmm_stripe_size) : 0);
642                 rc = ll_send_mgc_param(mgc->u.cli.cl_mgc_mgsexp, param);
643                 if (rc)
644                         GOTO(end, rc);
645
646                 /* Set root stripecount */
647                 snprintf(buf, MGS_PARAM_MAXLEN, ".stripecount=%hd",
648                          lump ? le16_to_cpu(lump->lmm_stripe_count) : 0);
649                 rc = ll_send_mgc_param(mgc->u.cli.cl_mgc_mgsexp, param);
650                 if (rc)
651                         GOTO(end, rc);
652
653                 /* Set root stripeoffset */
654                 snprintf(buf, MGS_PARAM_MAXLEN, ".stripeoffset=%hd",
655                          lump ? le16_to_cpu(lump->lmm_stripe_offset) :
656                                 (typeof(lump->lmm_stripe_offset))(-1));
657                 rc = ll_send_mgc_param(mgc->u.cli.cl_mgc_mgsexp, param);
658
659 end:
660                 if (param != NULL)
661                         OBD_FREE(param, MGS_PARAM_MAXLEN);
662         }
663 #endif
664         RETURN(rc);
665 }
666
667 /**
668  * This function will be used to get default LOV/LMV/Default LMV
669  * @valid will be used to indicate which stripe it will retrieve
670  *      OBD_MD_MEA              LMV stripe EA
671  *      OBD_MD_DEFAULT_MEA      Default LMV stripe EA
672  *      otherwise               Default LOV EA.
673  * Each time, it can only retrieve 1 stripe EA
674  **/
675 int ll_dir_getstripe(struct inode *inode, void **plmm, int *plmm_size,
676                      struct ptlrpc_request **request, u64 valid)
677 {
678         struct ll_sb_info *sbi = ll_i2sbi(inode);
679         struct mdt_body   *body;
680         struct lov_mds_md *lmm = NULL;
681         struct ptlrpc_request *req = NULL;
682         int rc, lmm_size;
683         struct md_op_data *op_data;
684         ENTRY;
685
686         rc = ll_get_default_mdsize(sbi, &lmm_size);
687         if (rc)
688                 RETURN(rc);
689
690         op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL,
691                                      0, lmm_size, LUSTRE_OPC_ANY,
692                                      NULL);
693         if (IS_ERR(op_data))
694                 RETURN(PTR_ERR(op_data));
695
696         op_data->op_valid = valid | OBD_MD_FLEASIZE | OBD_MD_FLDIREA;
697         rc = md_getattr(sbi->ll_md_exp, op_data, &req);
698         ll_finish_md_op_data(op_data);
699         if (rc < 0) {
700                 CDEBUG(D_INFO, "md_getattr failed on inode "
701                        DFID": rc %d\n", PFID(ll_inode2fid(inode)), rc);
702                 GOTO(out, rc);
703         }
704
705         body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
706         LASSERT(body != NULL);
707
708         lmm_size = body->mbo_eadatasize;
709
710         if (!(body->mbo_valid & (OBD_MD_FLEASIZE | OBD_MD_FLDIREA)) ||
711             lmm_size == 0) {
712                 GOTO(out, rc = -ENODATA);
713         }
714
715         lmm = req_capsule_server_sized_get(&req->rq_pill,
716                                            &RMF_MDT_MD, lmm_size);
717         LASSERT(lmm != NULL);
718
719         /*
720          * This is coming from the MDS, so is probably in
721          * little endian.  We convert it to host endian before
722          * passing it to userspace.
723          */
724         /* We don't swab objects for directories */
725         switch (le32_to_cpu(lmm->lmm_magic)) {
726         case LOV_MAGIC_V1:
727                 if (LOV_MAGIC != cpu_to_le32(LOV_MAGIC))
728                         lustre_swab_lov_user_md_v1((struct lov_user_md_v1 *)lmm);
729                 break;
730         case LOV_MAGIC_V3:
731                 if (LOV_MAGIC != cpu_to_le32(LOV_MAGIC))
732                         lustre_swab_lov_user_md_v3((struct lov_user_md_v3 *)lmm);
733                 break;
734         case LOV_MAGIC_COMP_V1:
735                 if (LOV_MAGIC != cpu_to_le32(LOV_MAGIC))
736                         lustre_swab_lov_comp_md_v1(
737                                         (struct lov_comp_md_v1 *)lmm);
738                 break;
739         case LMV_MAGIC_V1:
740                 if (LMV_MAGIC != cpu_to_le32(LMV_MAGIC))
741                         lustre_swab_lmv_mds_md((union lmv_mds_md *)lmm);
742                 break;
743         case LMV_USER_MAGIC:
744                 if (LMV_USER_MAGIC != cpu_to_le32(LMV_USER_MAGIC))
745                         lustre_swab_lmv_user_md((struct lmv_user_md *)lmm);
746                 break;
747         default:
748                 CERROR("unknown magic: %lX\n", (unsigned long)lmm->lmm_magic);
749                 rc = -EPROTO;
750         }
751 out:
752         *plmm = lmm;
753         *plmm_size = lmm_size;
754         *request = req;
755         return rc;
756 }
757
758 int ll_get_mdt_idx_by_fid(struct ll_sb_info *sbi, const struct lu_fid *fid)
759 {
760         struct md_op_data       *op_data;
761         int                     rc;
762         int                     mdt_index;
763         ENTRY;
764
765         OBD_ALLOC_PTR(op_data);
766         if (op_data == NULL)
767                 RETURN(-ENOMEM);
768
769         op_data->op_flags |= MF_GET_MDT_IDX;
770         op_data->op_fid1 = *fid;
771         rc = md_getattr(sbi->ll_md_exp, op_data, NULL);
772         mdt_index = op_data->op_mds;
773         OBD_FREE_PTR(op_data);
774         if (rc < 0)
775                 RETURN(rc);
776
777         RETURN(mdt_index);
778 }
779
780 /*
781  *  Get MDT index for the inode.
782  */
783 int ll_get_mdt_idx(struct inode *inode)
784 {
785         return ll_get_mdt_idx_by_fid(ll_i2sbi(inode), ll_inode2fid(inode));
786 }
787
788 /**
789  * Generic handler to do any pre-copy work.
790  *
791  * It sends a first hsm_progress (with extent length == 0) to coordinator as a
792  * first information for it that real work has started.
793  *
794  * Moreover, for a ARCHIVE request, it will sample the file data version and
795  * store it in \a copy.
796  *
797  * \return 0 on success.
798  */
799 static int ll_ioc_copy_start(struct super_block *sb, struct hsm_copy *copy)
800 {
801         struct ll_sb_info               *sbi = ll_s2sbi(sb);
802         struct hsm_progress_kernel       hpk;
803         int                              rc = 0;
804         int                              rc2;
805         ENTRY;
806
807         /* Forge a hsm_progress based on data from copy. */
808         hpk.hpk_fid = copy->hc_hai.hai_fid;
809         hpk.hpk_cookie = copy->hc_hai.hai_cookie;
810         hpk.hpk_extent.offset = copy->hc_hai.hai_extent.offset;
811         hpk.hpk_extent.length = 0;
812         hpk.hpk_flags = 0;
813         hpk.hpk_errval = 0;
814         hpk.hpk_data_version = 0;
815
816
817         /* For archive request, we need to read the current file version. */
818         if (copy->hc_hai.hai_action == HSMA_ARCHIVE) {
819                 struct inode    *inode;
820                 __u64            data_version = 0;
821
822                 /* Get inode for this fid */
823                 inode = search_inode_for_lustre(sb, &copy->hc_hai.hai_fid);
824                 if (IS_ERR(inode)) {
825                         hpk.hpk_flags |= HP_FLAG_RETRY;
826                         /* hpk_errval is >= 0 */
827                         hpk.hpk_errval = -PTR_ERR(inode);
828                         GOTO(progress, rc = PTR_ERR(inode));
829                 }
830
831                 /* Read current file data version */
832                 rc = ll_data_version(inode, &data_version, LL_DV_RD_FLUSH);
833                 iput(inode);
834                 if (rc != 0) {
835                         CDEBUG(D_HSM, "Could not read file data version of "
836                                       DFID" (rc = %d). Archive request ("
837                                       "%#llx) could not be done.\n",
838                                       PFID(&copy->hc_hai.hai_fid), rc,
839                                       copy->hc_hai.hai_cookie);
840                         hpk.hpk_flags |= HP_FLAG_RETRY;
841                         /* hpk_errval must be >= 0 */
842                         hpk.hpk_errval = -rc;
843                         GOTO(progress, rc);
844                 }
845
846                 /* Store in the hsm_copy for later copytool use.
847                  * Always modified even if no lsm. */
848                 copy->hc_data_version = data_version;
849         }
850
851 progress:
852         /* On error, the request should be considered as completed */
853         if (hpk.hpk_errval > 0)
854                 hpk.hpk_flags |= HP_FLAG_COMPLETED;
855
856         rc2 = obd_iocontrol(LL_IOC_HSM_PROGRESS, sbi->ll_md_exp, sizeof(hpk),
857                             &hpk, NULL);
858
859         /* Return first error */
860         RETURN(rc != 0 ? rc : rc2);
861 }
862
863 /**
864  * Generic handler to do any post-copy work.
865  *
866  * It will send the last hsm_progress update to coordinator to inform it
867  * that copy is finished and whether it was successful or not.
868  *
869  * Moreover,
870  * - for ARCHIVE request, it will sample the file data version and compare it
871  *   with the version saved in ll_ioc_copy_start(). If they do not match, copy
872  *   will be considered as failed.
873  * - for RESTORE request, it will sample the file data version and send it to
874  *   coordinator which is useful if the file was imported as 'released'.
875  *
876  * \return 0 on success.
877  */
878 static int ll_ioc_copy_end(struct super_block *sb, struct hsm_copy *copy)
879 {
880         struct ll_sb_info               *sbi = ll_s2sbi(sb);
881         struct hsm_progress_kernel       hpk;
882         int                              rc = 0;
883         int                              rc2;
884         ENTRY;
885
886         /* If you modify the logic here, also check llapi_hsm_copy_end(). */
887         /* Take care: copy->hc_hai.hai_action, len, gid and data are not
888          * initialized if copy_end was called with copy == NULL.
889          */
890
891         /* Forge a hsm_progress based on data from copy. */
892         hpk.hpk_fid = copy->hc_hai.hai_fid;
893         hpk.hpk_cookie = copy->hc_hai.hai_cookie;
894         hpk.hpk_extent = copy->hc_hai.hai_extent;
895         hpk.hpk_flags = copy->hc_flags | HP_FLAG_COMPLETED;
896         hpk.hpk_errval = copy->hc_errval;
897         hpk.hpk_data_version = 0;
898
899         /* For archive request, we need to check the file data was not changed.
900          *
901          * For restore request, we need to send the file data version, this is
902          * useful when the file was created using hsm_import.
903          */
904         if (((copy->hc_hai.hai_action == HSMA_ARCHIVE) ||
905              (copy->hc_hai.hai_action == HSMA_RESTORE)) &&
906             (copy->hc_errval == 0)) {
907                 struct inode    *inode;
908                 __u64            data_version = 0;
909
910                 /* Get lsm for this fid */
911                 inode = search_inode_for_lustre(sb, &copy->hc_hai.hai_fid);
912                 if (IS_ERR(inode)) {
913                         hpk.hpk_flags |= HP_FLAG_RETRY;
914                         /* hpk_errval must be >= 0 */
915                         hpk.hpk_errval = -PTR_ERR(inode);
916                         GOTO(progress, rc = PTR_ERR(inode));
917                 }
918
919                 rc = ll_data_version(inode, &data_version, LL_DV_RD_FLUSH);
920                 iput(inode);
921                 if (rc) {
922                         CDEBUG(D_HSM, "Could not read file data version. "
923                                       "Request could not be confirmed.\n");
924                         if (hpk.hpk_errval == 0)
925                                 hpk.hpk_errval = -rc;
926                         GOTO(progress, rc);
927                 }
928
929                 /* Store in the hsm_copy for later copytool use.
930                  * Always modified even if no lsm. */
931                 hpk.hpk_data_version = data_version;
932
933                 /* File could have been stripped during archiving, so we need
934                  * to check anyway. */
935                 if ((copy->hc_hai.hai_action == HSMA_ARCHIVE) &&
936                     (copy->hc_data_version != data_version)) {
937                         CDEBUG(D_HSM, "File data version mismatched. "
938                               "File content was changed during archiving. "
939                                DFID", start:%#llx current:%#llx\n",
940                                PFID(&copy->hc_hai.hai_fid),
941                                copy->hc_data_version, data_version);
942                         /* File was changed, send error to cdt. Do not ask for
943                          * retry because if a file is modified frequently,
944                          * the cdt will loop on retried archive requests.
945                          * The policy engine will ask for a new archive later
946                          * when the file will not be modified for some tunable
947                          * time */
948                         hpk.hpk_flags &= ~HP_FLAG_RETRY;
949                         rc = -EBUSY;
950                         /* hpk_errval must be >= 0 */
951                         hpk.hpk_errval = -rc;
952                         GOTO(progress, rc);
953                 }
954
955         }
956
957 progress:
958         rc2 = obd_iocontrol(LL_IOC_HSM_PROGRESS, sbi->ll_md_exp, sizeof(hpk),
959                             &hpk, NULL);
960
961         /* Return first error */
962         RETURN(rc != 0 ? rc : rc2);
963 }
964
965
966 static int copy_and_ioctl(int cmd, struct obd_export *exp,
967                           const void __user *data, size_t size)
968 {
969         void *copy;
970         int rc;
971
972         OBD_ALLOC(copy, size);
973         if (copy == NULL)
974                 return -ENOMEM;
975
976         if (copy_from_user(copy, data, size)) {
977                 rc = -EFAULT;
978                 goto out;
979         }
980
981         rc = obd_iocontrol(cmd, exp, size, copy, NULL);
982 out:
983         OBD_FREE(copy, size);
984
985         return rc;
986 }
987
988 static inline int check_owner(int type, int id)
989 {
990         switch (type) {
991         case USRQUOTA:
992                 if (!uid_eq(current_euid(), make_kuid(&init_user_ns, id)))
993                         return -EPERM;
994                 break;
995         case GRPQUOTA:
996                 if (!in_egroup_p(make_kgid(&init_user_ns, id)))
997                         return -EPERM;
998                 break;
999         }
1000         return 0;
1001 }
1002
1003 static int quotactl_ioctl(struct ll_sb_info *sbi, struct if_quotactl *qctl)
1004 {
1005         int cmd = qctl->qc_cmd;
1006         int type = qctl->qc_type;
1007         int id = qctl->qc_id;
1008         int valid = qctl->qc_valid;
1009         int rc = 0;
1010         ENTRY;
1011
1012         switch (cmd) {
1013         case Q_SETQUOTA:
1014         case Q_SETINFO:
1015                 if (!cfs_capable(CFS_CAP_SYS_ADMIN))
1016                         RETURN(-EPERM);
1017                 break;
1018         case Q_GETQUOTA:
1019                 if (check_owner(type, id) &&
1020                     (!cfs_capable(CFS_CAP_SYS_ADMIN)))
1021                         RETURN(-EPERM);
1022                 break;
1023         case Q_GETINFO:
1024                 break;
1025         default:
1026                 CERROR("unsupported quotactl op: %#x\n", cmd);
1027                 RETURN(-ENOTTY);
1028         }
1029
1030         if (valid != QC_GENERAL) {
1031                 if (cmd == Q_GETINFO)
1032                         qctl->qc_cmd = Q_GETOINFO;
1033                 else if (cmd == Q_GETQUOTA)
1034                         qctl->qc_cmd = Q_GETOQUOTA;
1035                 else
1036                         RETURN(-EINVAL);
1037
1038                 switch (valid) {
1039                 case QC_MDTIDX:
1040                         rc = obd_iocontrol(OBD_IOC_QUOTACTL, sbi->ll_md_exp,
1041                                            sizeof(*qctl), qctl, NULL);
1042                         break;
1043                 case QC_OSTIDX:
1044                         rc = obd_iocontrol(OBD_IOC_QUOTACTL, sbi->ll_dt_exp,
1045                                            sizeof(*qctl), qctl, NULL);
1046                         break;
1047                 case QC_UUID:
1048                         rc = obd_iocontrol(OBD_IOC_QUOTACTL, sbi->ll_md_exp,
1049                                            sizeof(*qctl), qctl, NULL);
1050                         if (rc == -EAGAIN)
1051                                 rc = obd_iocontrol(OBD_IOC_QUOTACTL,
1052                                                    sbi->ll_dt_exp,
1053                                                    sizeof(*qctl), qctl, NULL);
1054                         break;
1055                 default:
1056                         rc = -EINVAL;
1057                         break;
1058                 }
1059
1060                 if (rc)
1061                         RETURN(rc);
1062
1063                 qctl->qc_cmd = cmd;
1064         } else {
1065                 struct obd_quotactl *oqctl;
1066
1067                 OBD_ALLOC_PTR(oqctl);
1068                 if (oqctl == NULL)
1069                         RETURN(-ENOMEM);
1070
1071                 QCTL_COPY(oqctl, qctl);
1072                 rc = obd_quotactl(sbi->ll_md_exp, oqctl);
1073                 if (rc) {
1074                         OBD_FREE_PTR(oqctl);
1075                         RETURN(rc);
1076                 }
1077                 /* If QIF_SPACE is not set, client should collect the
1078                  * space usage from OSSs by itself */
1079                 if (cmd == Q_GETQUOTA &&
1080                     !(oqctl->qc_dqblk.dqb_valid & QIF_SPACE) &&
1081                     !oqctl->qc_dqblk.dqb_curspace) {
1082                         struct obd_quotactl *oqctl_tmp;
1083
1084                         OBD_ALLOC_PTR(oqctl_tmp);
1085                         if (oqctl_tmp == NULL)
1086                                 GOTO(out, rc = -ENOMEM);
1087
1088                         oqctl_tmp->qc_cmd = Q_GETOQUOTA;
1089                         oqctl_tmp->qc_id = oqctl->qc_id;
1090                         oqctl_tmp->qc_type = oqctl->qc_type;
1091
1092                         /* collect space usage from OSTs */
1093                         oqctl_tmp->qc_dqblk.dqb_curspace = 0;
1094                         rc = obd_quotactl(sbi->ll_dt_exp, oqctl_tmp);
1095                         if (!rc || rc == -EREMOTEIO) {
1096                                 oqctl->qc_dqblk.dqb_curspace =
1097                                         oqctl_tmp->qc_dqblk.dqb_curspace;
1098                                 oqctl->qc_dqblk.dqb_valid |= QIF_SPACE;
1099                         }
1100
1101                         /* collect space & inode usage from MDTs */
1102                         oqctl_tmp->qc_dqblk.dqb_curspace = 0;
1103                         oqctl_tmp->qc_dqblk.dqb_curinodes = 0;
1104                         rc = obd_quotactl(sbi->ll_md_exp, oqctl_tmp);
1105                         if (!rc || rc == -EREMOTEIO) {
1106                                 oqctl->qc_dqblk.dqb_curspace +=
1107                                         oqctl_tmp->qc_dqblk.dqb_curspace;
1108                                 oqctl->qc_dqblk.dqb_curinodes =
1109                                         oqctl_tmp->qc_dqblk.dqb_curinodes;
1110                                 oqctl->qc_dqblk.dqb_valid |= QIF_INODES;
1111                         } else {
1112                                 oqctl->qc_dqblk.dqb_valid &= ~QIF_SPACE;
1113                         }
1114
1115                         OBD_FREE_PTR(oqctl_tmp);
1116                 }
1117 out:
1118                 QCTL_COPY(qctl, oqctl);
1119                 OBD_FREE_PTR(oqctl);
1120         }
1121
1122         RETURN(rc);
1123 }
1124
1125 /* This function tries to get a single name component,
1126  * to send to the server. No actual path traversal involved,
1127  * so we limit to NAME_MAX */
1128 static char *ll_getname(const char __user *filename)
1129 {
1130         int ret = 0, len;
1131         char *tmp;
1132
1133         OBD_ALLOC(tmp, NAME_MAX + 1);
1134
1135         if (!tmp)
1136                 return ERR_PTR(-ENOMEM);
1137
1138         len = strncpy_from_user(tmp, filename, NAME_MAX + 1);
1139         if (len < 0)
1140                 ret = -ENOENT;
1141         else if (len > NAME_MAX)
1142                 ret = -ENAMETOOLONG;
1143
1144         if (ret) {
1145                 OBD_FREE(tmp, NAME_MAX + 1);
1146                 tmp =  ERR_PTR(ret);
1147         }
1148         return tmp;
1149 }
1150
1151 #define ll_putname(filename) OBD_FREE(filename, NAME_MAX + 1);
1152
1153 static long ll_dir_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1154 {
1155         struct dentry *dentry = file_dentry(file);
1156         struct inode *inode = file_inode(file);
1157         struct ll_sb_info *sbi = ll_i2sbi(inode);
1158         struct obd_ioctl_data *data;
1159         int rc = 0;
1160         ENTRY;
1161
1162         CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID"(%p), cmd=%#x\n",
1163                PFID(ll_inode2fid(inode)), inode, cmd);
1164
1165         /* asm-ppc{,64} declares TCGETS, et. al. as type 't' not 'T' */
1166         if (_IOC_TYPE(cmd) == 'T' || _IOC_TYPE(cmd) == 't') /* tty ioctls */
1167                 return -ENOTTY;
1168
1169         ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_IOCTL, 1);
1170         switch(cmd) {
1171         case FSFILT_IOC_GETFLAGS:
1172         case FSFILT_IOC_SETFLAGS:
1173                 RETURN(ll_iocontrol(inode, file, cmd, arg));
1174         case FSFILT_IOC_GETVERSION_OLD:
1175         case FSFILT_IOC_GETVERSION:
1176                 RETURN(put_user(inode->i_generation, (int __user *)arg));
1177         /* We need to special case any other ioctls we want to handle,
1178          * to send them to the MDS/OST as appropriate and to properly
1179          * network encode the arg field.
1180         case FSFILT_IOC_SETVERSION_OLD:
1181         case FSFILT_IOC_SETVERSION:
1182         */
1183         case LL_IOC_GET_MDTIDX: {
1184                 int mdtidx;
1185
1186                 mdtidx = ll_get_mdt_idx(inode);
1187                 if (mdtidx < 0)
1188                         RETURN(mdtidx);
1189
1190                 if (put_user((int)mdtidx, (int __user *)arg))
1191                         RETURN(-EFAULT);
1192
1193                 return 0;
1194         }
1195         case IOC_MDC_LOOKUP: {
1196                 int namelen, len = 0;
1197                 char *buf = NULL;
1198                 char *filename;
1199
1200                 rc = obd_ioctl_getdata(&buf, &len, (void __user *)arg);
1201                 if (rc != 0)
1202                         RETURN(rc);
1203                 data = (void *)buf;
1204
1205                 filename = data->ioc_inlbuf1;
1206                 namelen = strlen(filename);
1207                 if (namelen < 1) {
1208                         CDEBUG(D_INFO, "IOC_MDC_LOOKUP missing filename\n");
1209                         GOTO(out_free, rc = -EINVAL);
1210                 }
1211
1212                 rc = ll_get_fid_by_name(inode, filename, namelen, NULL, NULL);
1213                 if (rc < 0) {
1214                         CERROR("%s: lookup %.*s failed: rc = %d\n",
1215                                ll_get_fsname(inode->i_sb, NULL, 0), namelen,
1216                                filename, rc);
1217                         GOTO(out_free, rc);
1218                 }
1219 out_free:
1220                 obd_ioctl_freedata(buf, len);
1221                 return rc;
1222         }
1223         case LL_IOC_LMV_SETSTRIPE: {
1224                 struct lmv_user_md  *lum;
1225                 char            *buf = NULL;
1226                 char            *filename;
1227                 int              namelen = 0;
1228                 int              lumlen = 0;
1229                 umode_t          mode;
1230                 int              len;
1231                 int              rc;
1232
1233                 rc = obd_ioctl_getdata(&buf, &len, (void __user *)arg);
1234                 if (rc)
1235                         RETURN(rc);
1236
1237                 data = (void *)buf;
1238                 if (data->ioc_inlbuf1 == NULL || data->ioc_inlbuf2 == NULL ||
1239                     data->ioc_inllen1 == 0 || data->ioc_inllen2 == 0)
1240                         GOTO(lmv_out_free, rc = -EINVAL);
1241
1242                 filename = data->ioc_inlbuf1;
1243                 namelen = data->ioc_inllen1;
1244
1245                 if (namelen < 1) {
1246                         CDEBUG(D_INFO, "IOC_MDC_LOOKUP missing filename\n");
1247                         GOTO(lmv_out_free, rc = -EINVAL);
1248                 }
1249                 lum = (struct lmv_user_md *)data->ioc_inlbuf2;
1250                 lumlen = data->ioc_inllen2;
1251
1252                 if (lum->lum_magic != LMV_USER_MAGIC ||
1253                     lumlen != sizeof(*lum)) {
1254                         CERROR("%s: wrong lum magic %x or size %d: rc = %d\n",
1255                                filename, lum->lum_magic, lumlen, -EFAULT);
1256                         GOTO(lmv_out_free, rc = -EINVAL);
1257                 }
1258
1259 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2, 9, 50, 0)
1260                 mode = data->ioc_type != 0 ? data->ioc_type : S_IRWXUGO;
1261 #else
1262                 mode = data->ioc_type;
1263 #endif
1264                 rc = ll_dir_setdirstripe(dentry, lum, filename, mode);
1265 lmv_out_free:
1266                 obd_ioctl_freedata(buf, len);
1267                 RETURN(rc);
1268
1269         }
1270         case LL_IOC_LMV_SET_DEFAULT_STRIPE: {
1271                 struct lmv_user_md        lum;
1272                 struct lmv_user_md __user *ulump =
1273                                         (struct lmv_user_md __user *)arg;
1274                 int                       rc;
1275
1276                 if (copy_from_user(&lum, ulump, sizeof(lum)))
1277                         RETURN(-EFAULT);
1278
1279                 if (lum.lum_magic != LMV_USER_MAGIC)
1280                         RETURN(-EINVAL);
1281
1282                 rc = ll_dir_setstripe(inode, (struct lov_user_md *)&lum, 0);
1283
1284                 RETURN(rc);
1285         }
1286         case LL_IOC_LOV_SETSTRIPE: {
1287                 struct lov_user_md_v3 lumv3;
1288                 struct lov_user_md_v1 *lumv1 = (struct lov_user_md_v1 *)&lumv3;
1289                 struct lov_user_md_v1 __user *lumv1p =
1290                         (struct lov_user_md_v1 __user *)arg;
1291                 struct lov_user_md_v3 __user *lumv3p =
1292                         (struct lov_user_md_v3 __user *)arg;
1293
1294                 int set_default = 0;
1295
1296                 CLASSERT(sizeof(struct lov_user_md_v3) >
1297                          sizeof(struct lov_comp_md_v1));
1298                 LASSERT(sizeof(lumv3) == sizeof(*lumv3p));
1299                 LASSERT(sizeof(lumv3.lmm_objects[0]) ==
1300                                 sizeof(lumv3p->lmm_objects[0]));
1301                 /* first try with v1 which is smaller than v3 */
1302                 if (copy_from_user(lumv1, lumv1p, sizeof(*lumv1)))
1303                         RETURN(-EFAULT);
1304
1305                 if (lumv1->lmm_magic == LOV_USER_MAGIC_V3)
1306                         if (copy_from_user(&lumv3, lumv3p, sizeof(lumv3)))
1307                                 RETURN(-EFAULT);
1308
1309                 if (inode->i_sb->s_root == file_dentry(file))
1310                         set_default = 1;
1311
1312                 /* in v1 and v3 cases lumv1 points to data */
1313                 rc = ll_dir_setstripe(inode, lumv1, set_default);
1314
1315                 RETURN(rc);
1316         }
1317         case LL_IOC_LMV_GETSTRIPE: {
1318                 struct lmv_user_md __user *ulmv =
1319                                         (struct lmv_user_md __user *)arg;
1320                 struct lmv_user_md      lum;
1321                 struct ptlrpc_request   *request = NULL;
1322                 union lmv_mds_md        *lmm = NULL;
1323                 int                     lmmsize;
1324                 u64                     valid = 0;
1325                 struct lmv_user_md      *tmp = NULL;
1326                 int                     mdt_index;
1327                 int                     lum_size;
1328                 int                     stripe_count;
1329                 int                     max_stripe_count;
1330                 int                     i;
1331                 int                     rc;
1332
1333                 if (copy_from_user(&lum, ulmv, sizeof(*ulmv)))
1334                         RETURN(-EFAULT);
1335
1336                 max_stripe_count = lum.lum_stripe_count;
1337                 /* lum_magic will indicate which stripe the ioctl will like
1338                  * to get, LMV_MAGIC_V1 is for normal LMV stripe, LMV_USER_MAGIC
1339                  * is for default LMV stripe */
1340                 if (lum.lum_magic == LMV_MAGIC_V1)
1341                         valid |= OBD_MD_MEA;
1342                 else if (lum.lum_magic == LMV_USER_MAGIC)
1343                         valid |= OBD_MD_DEFAULT_MEA;
1344                 else
1345                         RETURN(-EINVAL);
1346
1347                 rc = ll_dir_getstripe(inode, (void **)&lmm, &lmmsize, &request,
1348                                       valid);
1349                 if (rc != 0)
1350                         GOTO(finish_req, rc);
1351
1352                 /* Get default LMV EA */
1353                 if (lum.lum_magic == LMV_USER_MAGIC) {
1354                         if (lmmsize > sizeof(*ulmv))
1355                                 GOTO(finish_req, rc = -EINVAL);
1356
1357                         if (copy_to_user(ulmv, lmm, lmmsize))
1358                                 GOTO(finish_req, rc = -EFAULT);
1359
1360                         GOTO(finish_req, rc);
1361                 }
1362
1363                 stripe_count = lmv_mds_md_stripe_count_get(lmm);
1364                 if (max_stripe_count < stripe_count) {
1365                         lum.lum_stripe_count = stripe_count;
1366                         if (copy_to_user(ulmv, &lum, sizeof(lum)))
1367                                 GOTO(finish_req, rc = -EFAULT);
1368                         GOTO(finish_req, rc = -E2BIG);
1369                 }
1370
1371                 lum_size = lmv_user_md_size(stripe_count, LMV_MAGIC_V1);
1372                 OBD_ALLOC(tmp, lum_size);
1373                 if (tmp == NULL)
1374                         GOTO(finish_req, rc = -ENOMEM);
1375
1376                 mdt_index = ll_get_mdt_idx(inode);
1377                 if (mdt_index < 0)
1378                         GOTO(out_tmp, rc = -ENOMEM);
1379
1380                 tmp->lum_magic = LMV_MAGIC_V1;
1381                 tmp->lum_stripe_count = 0;
1382                 tmp->lum_stripe_offset = mdt_index;
1383                 tmp->lum_hash_type = lmv_mds_md_hash_type_get(lmm);
1384                 for (i = 0; i < stripe_count; i++) {
1385                         struct lu_fid   fid;
1386
1387                         fid_le_to_cpu(&fid, &lmm->lmv_md_v1.lmv_stripe_fids[i]);
1388                         mdt_index = ll_get_mdt_idx_by_fid(sbi, &fid);
1389                         if (mdt_index < 0)
1390                                 GOTO(out_tmp, rc = mdt_index);
1391
1392                         tmp->lum_objects[i].lum_mds = mdt_index;
1393                         tmp->lum_objects[i].lum_fid = fid;
1394                         tmp->lum_stripe_count++;
1395                 }
1396
1397                 if (copy_to_user(ulmv, tmp, lum_size))
1398                         GOTO(out_tmp, rc = -EFAULT);
1399 out_tmp:
1400                 OBD_FREE(tmp, lum_size);
1401 finish_req:
1402                 ptlrpc_req_finished(request);
1403                 return rc;
1404         }
1405
1406         case LL_IOC_REMOVE_ENTRY: {
1407                 char            *filename = NULL;
1408                 int              namelen = 0;
1409                 int              rc;
1410
1411                 /* Here is a little hack to avoid sending REINT_RMENTRY to
1412                  * unsupported server, which might crash the server(LU-2730),
1413                  * Because both LVB_TYPE and REINT_RMENTRY will be supported
1414                  * on 2.4, we use OBD_CONNECT_LVB_TYPE to detect whether the
1415                  * server will support REINT_RMENTRY XXX*/
1416                 if (!(exp_connect_flags(sbi->ll_md_exp) & OBD_CONNECT_LVB_TYPE))
1417                         RETURN(-ENOTSUPP);
1418
1419                 filename = ll_getname((const char __user *)arg);
1420                 if (IS_ERR(filename))
1421                         RETURN(PTR_ERR(filename));
1422
1423                 namelen = strlen(filename);
1424                 if (namelen < 1)
1425                         GOTO(out_rmdir, rc = -EINVAL);
1426
1427                 rc = ll_rmdir_entry(inode, filename, namelen);
1428 out_rmdir:
1429                 if (filename)
1430                         ll_putname(filename);
1431                 RETURN(rc);
1432         }
1433         case LL_IOC_LOV_SWAP_LAYOUTS:
1434                 RETURN(-EPERM);
1435         case IOC_OBD_STATFS:
1436                 RETURN(ll_obd_statfs(inode, (void __user *)arg));
1437         case LL_IOC_LOV_GETSTRIPE:
1438         case LL_IOC_MDC_GETINFO:
1439         case IOC_MDC_GETFILEINFO:
1440         case IOC_MDC_GETFILESTRIPE: {
1441                 struct ptlrpc_request *request = NULL;
1442                 struct lov_user_md __user *lump;
1443                 struct lov_mds_md *lmm = NULL;
1444                 struct mdt_body *body;
1445                 char *filename = NULL;
1446                 int lmmsize;
1447
1448                 if (cmd == IOC_MDC_GETFILEINFO ||
1449                     cmd == IOC_MDC_GETFILESTRIPE) {
1450                         filename = ll_getname((const char __user *)arg);
1451                         if (IS_ERR(filename))
1452                                 RETURN(PTR_ERR(filename));
1453
1454                         rc = ll_lov_getstripe_ea_info(inode, filename, &lmm,
1455                                                       &lmmsize, &request);
1456                 } else {
1457                         rc = ll_dir_getstripe(inode, (void **)&lmm, &lmmsize,
1458                                               &request, 0);
1459                 }
1460
1461                 if (request) {
1462                         body = req_capsule_server_get(&request->rq_pill,
1463                                                       &RMF_MDT_BODY);
1464                         LASSERT(body != NULL);
1465                 } else {
1466                         GOTO(out_req, rc);
1467                 }
1468
1469                 if (rc < 0) {
1470                         if (rc == -ENODATA && (cmd == IOC_MDC_GETFILEINFO ||
1471                                                cmd == LL_IOC_MDC_GETINFO))
1472                                 GOTO(skip_lmm, rc = 0);
1473                         else
1474                                 GOTO(out_req, rc);
1475                 }
1476
1477                 if (cmd == IOC_MDC_GETFILESTRIPE ||
1478                     cmd == LL_IOC_LOV_GETSTRIPE) {
1479                         lump = (struct lov_user_md __user *)arg;
1480                 } else {
1481                         struct lov_user_mds_data __user *lmdp;
1482                         lmdp = (struct lov_user_mds_data __user *)arg;
1483                         lump = &lmdp->lmd_lmm;
1484                 }
1485                 if (copy_to_user(lump, lmm, lmmsize)) {
1486                         if (copy_to_user(lump, lmm, sizeof(*lump)))
1487                                 GOTO(out_req, rc = -EFAULT);
1488                         rc = -EOVERFLOW;
1489                 }
1490         skip_lmm:
1491                 if (cmd == IOC_MDC_GETFILEINFO || cmd == LL_IOC_MDC_GETINFO) {
1492                         struct lov_user_mds_data __user *lmdp;
1493                         lstat_t st = { 0 };
1494
1495                         st.st_dev       = inode->i_sb->s_dev;
1496                         st.st_mode      = body->mbo_mode;
1497                         st.st_nlink     = body->mbo_nlink;
1498                         st.st_uid       = body->mbo_uid;
1499                         st.st_gid       = body->mbo_gid;
1500                         st.st_rdev      = body->mbo_rdev;
1501                         st.st_size      = body->mbo_size;
1502                         st.st_blksize   = PAGE_SIZE;
1503                         st.st_blocks    = body->mbo_blocks;
1504                         st.st_atime     = body->mbo_atime;
1505                         st.st_mtime     = body->mbo_mtime;
1506                         st.st_ctime     = body->mbo_ctime;
1507                         st.st_ino       = cl_fid_build_ino(&body->mbo_fid1,
1508                                                 sbi->ll_flags &
1509                                                 LL_SBI_32BIT_API);
1510
1511                         lmdp = (struct lov_user_mds_data __user *)arg;
1512                         if (copy_to_user(&lmdp->lmd_st, &st, sizeof(st)))
1513                                 GOTO(out_req, rc = -EFAULT);
1514                 }
1515
1516                 EXIT;
1517         out_req:
1518                 ptlrpc_req_finished(request);
1519                 if (filename)
1520                         ll_putname(filename);
1521                 return rc;
1522         }
1523         case OBD_IOC_QUOTACTL: {
1524                 struct if_quotactl *qctl;
1525
1526                 OBD_ALLOC_PTR(qctl);
1527                 if (!qctl)
1528                         RETURN(-ENOMEM);
1529
1530                 if (copy_from_user(qctl, (void __user *)arg, sizeof(*qctl)))
1531                         GOTO(out_quotactl, rc = -EFAULT);
1532
1533                 rc = quotactl_ioctl(sbi, qctl);
1534
1535                 if (rc == 0 &&
1536                     copy_to_user((void __user *)arg, qctl, sizeof(*qctl)))
1537                         rc = -EFAULT;
1538
1539         out_quotactl:
1540                 OBD_FREE_PTR(qctl);
1541                 RETURN(rc);
1542         }
1543         case OBD_IOC_GETDTNAME:
1544         case OBD_IOC_GETMDNAME:
1545                 RETURN(ll_get_obd_name(inode, cmd, arg));
1546         case LL_IOC_FLUSHCTX:
1547                 RETURN(ll_flush_ctx(inode));
1548         case LL_IOC_GETOBDCOUNT: {
1549                 u32 count, vallen;
1550                 struct obd_export *exp;
1551
1552                 if (copy_from_user(&count, (int __user *)arg, sizeof(int)))
1553                         RETURN(-EFAULT);
1554
1555                 /* get ost count when count is zero, get mdt count otherwise */
1556                 exp = count ? sbi->ll_md_exp : sbi->ll_dt_exp;
1557                 vallen = sizeof(count);
1558                 rc = obd_get_info(NULL, exp, sizeof(KEY_TGT_COUNT),
1559                                   KEY_TGT_COUNT, &vallen, &count);
1560                 if (rc) {
1561                         CERROR("get target count failed: %d\n", rc);
1562                         RETURN(rc);
1563                 }
1564
1565                 if (copy_to_user((int __user *)arg, &count, sizeof(int)))
1566                         RETURN(-EFAULT);
1567
1568                 RETURN(0);
1569         }
1570         case LL_IOC_PATH2FID:
1571                 if (copy_to_user((void __user *)arg, ll_inode2fid(inode),
1572                                      sizeof(struct lu_fid)))
1573                         RETURN(-EFAULT);
1574                 RETURN(0);
1575         case LL_IOC_GET_CONNECT_FLAGS: {
1576                 RETURN(obd_iocontrol(cmd, sbi->ll_md_exp, 0, NULL,
1577                                      (void __user *)arg));
1578         }
1579         case OBD_IOC_FID2PATH:
1580                 RETURN(ll_fid2path(inode, (void __user *)arg));
1581         case LL_IOC_GETPARENT:
1582                 RETURN(ll_getparent(file, (void __user *)arg));
1583         case LL_IOC_FID2MDTIDX: {
1584                 struct obd_export *exp = ll_i2mdexp(inode);
1585                 struct lu_fid     fid;
1586                 __u32             index;
1587
1588                 if (copy_from_user(&fid, (const struct lu_fid __user *)arg,
1589                                    sizeof(fid)))
1590                         RETURN(-EFAULT);
1591
1592                 /* Call mdc_iocontrol */
1593                 rc = obd_iocontrol(LL_IOC_FID2MDTIDX, exp, sizeof(fid), &fid,
1594                                    (__u32 __user *)&index);
1595                 if (rc != 0)
1596                         RETURN(rc);
1597
1598                 RETURN(index);
1599         }
1600         case LL_IOC_HSM_REQUEST: {
1601                 struct hsm_user_request *hur;
1602                 ssize_t                  totalsize;
1603
1604                 OBD_ALLOC_PTR(hur);
1605                 if (hur == NULL)
1606                         RETURN(-ENOMEM);
1607
1608                 /* We don't know the true size yet; copy the fixed-size part */
1609                 if (copy_from_user(hur, (void __user *)arg, sizeof(*hur))) {
1610                         OBD_FREE_PTR(hur);
1611                         RETURN(-EFAULT);
1612                 }
1613
1614                 /* Compute the whole struct size */
1615                 totalsize = hur_len(hur);
1616                 OBD_FREE_PTR(hur);
1617                 if (totalsize < 0)
1618                         RETURN(-E2BIG);
1619
1620                 /* Final size will be more than double totalsize */
1621                 if (totalsize >= MDS_MAXREQSIZE / 3)
1622                         RETURN(-E2BIG);
1623
1624                 OBD_ALLOC_LARGE(hur, totalsize);
1625                 if (hur == NULL)
1626                         RETURN(-ENOMEM);
1627
1628                 /* Copy the whole struct */
1629                 if (copy_from_user(hur, (void __user *)arg, totalsize))
1630                         GOTO(out_hur, rc = -EFAULT);
1631
1632                 if (hur->hur_request.hr_action == HUA_RELEASE) {
1633                         const struct lu_fid *fid;
1634                         struct inode *f;
1635                         int i;
1636
1637                         for (i = 0; i < hur->hur_request.hr_itemcount; i++) {
1638                                 fid = &hur->hur_user_item[i].hui_fid;
1639                                 f = search_inode_for_lustre(inode->i_sb, fid);
1640                                 if (IS_ERR(f)) {
1641                                         rc = PTR_ERR(f);
1642                                         break;
1643                                 }
1644
1645                                 rc = ll_hsm_release(f);
1646                                 iput(f);
1647                                 if (rc != 0)
1648                                         break;
1649                         }
1650                 } else {
1651                         rc = obd_iocontrol(cmd, ll_i2mdexp(inode), totalsize,
1652                                            hur, NULL);
1653                 }
1654
1655 out_hur:
1656                 OBD_FREE_LARGE(hur, totalsize);
1657
1658                 RETURN(rc);
1659         }
1660         case LL_IOC_HSM_PROGRESS: {
1661                 struct hsm_progress_kernel      hpk;
1662                 struct hsm_progress             hp;
1663
1664                 if (copy_from_user(&hp, (void __user *)arg, sizeof(hp)))
1665                         RETURN(-EFAULT);
1666
1667                 hpk.hpk_fid = hp.hp_fid;
1668                 hpk.hpk_cookie = hp.hp_cookie;
1669                 hpk.hpk_extent = hp.hp_extent;
1670                 hpk.hpk_flags = hp.hp_flags;
1671                 hpk.hpk_errval = hp.hp_errval;
1672                 hpk.hpk_data_version = 0;
1673
1674                 /* File may not exist in Lustre; all progress
1675                  * reported to Lustre root */
1676                 rc = obd_iocontrol(cmd, sbi->ll_md_exp, sizeof(hpk), &hpk,
1677                                    NULL);
1678                 RETURN(rc);
1679         }
1680         case LL_IOC_HSM_CT_START:
1681                 if (!cfs_capable(CFS_CAP_SYS_ADMIN))
1682                         RETURN(-EPERM);
1683
1684                 rc = copy_and_ioctl(cmd, sbi->ll_md_exp, (void __user *)arg,
1685                                     sizeof(struct lustre_kernelcomm));
1686                 RETURN(rc);
1687
1688         case LL_IOC_HSM_COPY_START: {
1689                 struct hsm_copy *copy;
1690                 int              rc;
1691
1692                 OBD_ALLOC_PTR(copy);
1693                 if (copy == NULL)
1694                         RETURN(-ENOMEM);
1695                 if (copy_from_user(copy, (char __user *)arg, sizeof(*copy))) {
1696                         OBD_FREE_PTR(copy);
1697                         RETURN(-EFAULT);
1698                 }
1699
1700                 rc = ll_ioc_copy_start(inode->i_sb, copy);
1701                 if (copy_to_user((char __user *)arg, copy, sizeof(*copy)))
1702                         rc = -EFAULT;
1703
1704                 OBD_FREE_PTR(copy);
1705                 RETURN(rc);
1706         }
1707         case LL_IOC_HSM_COPY_END: {
1708                 struct hsm_copy *copy;
1709                 int              rc;
1710
1711                 OBD_ALLOC_PTR(copy);
1712                 if (copy == NULL)
1713                         RETURN(-ENOMEM);
1714                 if (copy_from_user(copy, (char __user *)arg, sizeof(*copy))) {
1715                         OBD_FREE_PTR(copy);
1716                         RETURN(-EFAULT);
1717                 }
1718
1719                 rc = ll_ioc_copy_end(inode->i_sb, copy);
1720                 if (copy_to_user((char __user *)arg, copy, sizeof(*copy)))
1721                         rc = -EFAULT;
1722
1723                 OBD_FREE_PTR(copy);
1724                 RETURN(rc);
1725         }
1726         case LL_IOC_MIGRATE: {
1727                 char            *buf = NULL;
1728                 const char      *filename;
1729                 int             namelen = 0;
1730                 int             len;
1731                 int             rc;
1732                 int             mdtidx;
1733
1734                 rc = obd_ioctl_getdata(&buf, &len, (void __user *)arg);
1735                 if (rc < 0)
1736                         RETURN(rc);
1737
1738                 data = (struct obd_ioctl_data *)buf;
1739                 if (data->ioc_inlbuf1 == NULL || data->ioc_inlbuf2 == NULL ||
1740                     data->ioc_inllen1 == 0 || data->ioc_inllen2 == 0)
1741                         GOTO(migrate_free, rc = -EINVAL);
1742
1743                 filename = data->ioc_inlbuf1;
1744                 namelen = data->ioc_inllen1;
1745                 /* \0 is packed at the end of filename */
1746                 if (namelen < 1 || namelen != strlen(filename) + 1)
1747                         GOTO(migrate_free, rc = -EINVAL);
1748
1749                 if (data->ioc_inllen2 != sizeof(mdtidx))
1750                         GOTO(migrate_free, rc = -EINVAL);
1751                 mdtidx = *(int *)data->ioc_inlbuf2;
1752
1753                 rc = ll_migrate(inode, file, mdtidx, filename, namelen - 1);
1754 migrate_free:
1755                 obd_ioctl_freedata(buf, len);
1756
1757                 RETURN(rc);
1758         }
1759         case LL_IOC_FSGETXATTR:
1760         case LL_IOC_FSSETXATTR:
1761                 RETURN(ll_ioctl_projid(inode, cmd, arg));
1762         default:
1763                 RETURN(obd_iocontrol(cmd, sbi->ll_dt_exp, 0, NULL,
1764                                      (void __user *)arg));
1765         }
1766 }
1767
1768 static loff_t ll_dir_seek(struct file *file, loff_t offset, int origin)
1769 {
1770         struct inode *inode = file->f_mapping->host;
1771         struct ll_file_data *fd = LUSTRE_FPRIVATE(file);
1772         struct ll_sb_info *sbi = ll_i2sbi(inode);
1773         int api32 = ll_need_32bit_api(sbi);
1774         loff_t ret = -EINVAL;
1775         ENTRY;
1776
1777         inode_lock(inode);
1778         switch (origin) {
1779                 case SEEK_SET:
1780                         break;
1781                 case SEEK_CUR:
1782                         offset += file->f_pos;
1783                         break;
1784                 case SEEK_END:
1785                         if (offset > 0)
1786                                 GOTO(out, ret);
1787                         if (api32)
1788                                 offset += LL_DIR_END_OFF_32BIT;
1789                         else
1790                                 offset += LL_DIR_END_OFF;
1791                         break;
1792                 default:
1793                         GOTO(out, ret);
1794         }
1795
1796         if (offset >= 0 &&
1797             ((api32 && offset <= LL_DIR_END_OFF_32BIT) ||
1798              (!api32 && offset <= LL_DIR_END_OFF))) {
1799                 if (offset != file->f_pos) {
1800                         if ((api32 && offset == LL_DIR_END_OFF_32BIT) ||
1801                             (!api32 && offset == LL_DIR_END_OFF))
1802                                 fd->lfd_pos = MDS_DIR_END_OFF;
1803                         else if (api32 && sbi->ll_flags & LL_SBI_64BIT_HASH)
1804                                 fd->lfd_pos = offset << 32;
1805                         else
1806                                 fd->lfd_pos = offset;
1807                         file->f_pos = offset;
1808                         file->f_version = 0;
1809                 }
1810                 ret = offset;
1811         }
1812         GOTO(out, ret);
1813
1814 out:
1815         inode_unlock(inode);
1816         return ret;
1817 }
1818
1819 static int ll_dir_open(struct inode *inode, struct file *file)
1820 {
1821         ENTRY;
1822         RETURN(ll_file_open(inode, file));
1823 }
1824
1825 static int ll_dir_release(struct inode *inode, struct file *file)
1826 {
1827         ENTRY;
1828         RETURN(ll_file_release(inode, file));
1829 }
1830
1831 const struct file_operations ll_dir_operations = {
1832         .llseek         = ll_dir_seek,
1833         .open           = ll_dir_open,
1834         .release        = ll_dir_release,
1835         .read           = generic_read_dir,
1836 #ifdef HAVE_DIR_CONTEXT
1837         .iterate        = ll_iterate,
1838 #else
1839         .readdir        = ll_readdir,
1840 #endif
1841         .unlocked_ioctl = ll_dir_ioctl,
1842         .fsync          = ll_fsync,
1843 };