Whamcloud - gitweb
LU-13826 utils: fix compatibility for LL_IOC_MDC_GETINFO
[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, 2017, 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/security.h>
42 #include <linux/user_namespace.h>
43 #include <linux/uidgid.h>
44 #include <linux/uaccess.h>
45 #include <linux/buffer_head.h>   // for wait_on_buffer
46 #include <linux/pagevec.h>
47
48 #define DEBUG_SUBSYSTEM S_LLITE
49
50 #include <obd_support.h>
51 #include <obd_class.h>
52 #include <uapi/linux/lustre/lustre_ioctl.h>
53 #include <uapi/linux/llcrypt.h>
54 #include <lustre_lib.h>
55 #include <lustre_dlm.h>
56 #include <lustre_fid.h>
57 #include <lustre_kernelcomm.h>
58 #include <lustre_swab.h>
59
60 #include "llite_internal.h"
61
62 /*
63  * (new) readdir implementation overview.
64  *
65  * Original lustre readdir implementation cached exact copy of raw directory
66  * pages on the client. These pages were indexed in client page cache by
67  * logical offset in the directory file. This design, while very simple and
68  * intuitive had some inherent problems:
69  *
70  *     . it implies that byte offset to the directory entry serves as a
71  *     telldir(3)/seekdir(3) cookie, but that offset is not stable: in
72  *     ext3/htree directory entries may move due to splits, and more
73  *     importantly,
74  *
75  *     . it is incompatible with the design of split directories for cmd3,
76  *     that assumes that names are distributed across nodes based on their
77  *     hash, and so readdir should be done in hash order.
78  *
79  * New readdir implementation does readdir in hash order, and uses hash of a
80  * file name as a telldir/seekdir cookie. This led to number of complications:
81  *
82  *     . hash is not unique, so it cannot be used to index cached directory
83  *     pages on the client (note, that it requires a whole pageful of hash
84  *     collided entries to cause two pages to have identical hashes);
85  *
86  *     . hash is not unique, so it cannot, strictly speaking, be used as an
87  *     entry cookie. ext3/htree has the same problem and lustre implementation
88  *     mimics their solution: seekdir(hash) positions directory at the first
89  *     entry with the given hash.
90  *
91  * Client side.
92  *
93  * 0. caching
94  *
95  * Client caches directory pages using hash of the first entry as an index. As
96  * noted above hash is not unique, so this solution doesn't work as is:
97  * special processing is needed for "page hash chains" (i.e., sequences of
98  * pages filled with entries all having the same hash value).
99  *
100  * First, such chains have to be detected. To this end, server returns to the
101  * client the hash of the first entry on the page next to one returned. When
102  * client detects that this hash is the same as hash of the first entry on the
103  * returned page, page hash collision has to be handled. Pages in the
104  * hash chain, except first one, are termed "overflow pages".
105  *
106  * Solution to index uniqueness problem is to not cache overflow
107  * pages. Instead, when page hash collision is detected, all overflow pages
108  * from emerging chain are immediately requested from the server and placed in
109  * a special data structure (struct ll_dir_chain). This data structure is used
110  * by ll_readdir() to process entries from overflow pages. When readdir
111  * invocation finishes, overflow pages are discarded. If page hash collision
112  * chain weren't completely processed, next call to readdir will again detect
113  * page hash collision, again read overflow pages in, process next portion of
114  * entries and again discard the pages. This is not as wasteful as it looks,
115  * because, given reasonable hash, page hash collisions are extremely rare.
116  *
117  * 1. directory positioning
118  *
119  * When seekdir(hash) is called, original
120  *
121  *
122  *
123  *
124  *
125  *
126  *
127  *
128  * Server.
129  *
130  * identification of and access to overflow pages
131  *
132  * page format
133  *
134  * Page in MDS_READPAGE RPC is packed in LU_PAGE_SIZE, and each page contains
135  * a header lu_dirpage which describes the start/end hash, and whether this
136  * page is empty (contains no dir entry) or hash collide with next page.
137  * After client receives reply, several pages will be integrated into dir page
138  * in PAGE_SIZE (if PAGE_SIZE greater than LU_PAGE_SIZE), and the
139  * lu_dirpage for this integrated page will be adjusted. See
140  * mdc_adjust_dirpages().
141  *
142  */
143 struct page *ll_get_dir_page(struct inode *dir, struct md_op_data *op_data,
144                              __u64 offset, struct ll_dir_chain *chain)
145 {
146         struct md_callback      cb_op;
147         struct page             *page;
148         int                     rc;
149
150         cb_op.md_blocking_ast = ll_md_blocking_ast;
151         rc = md_read_page(ll_i2mdexp(dir), op_data, &cb_op, offset, &page);
152         if (rc != 0)
153                 return ERR_PTR(rc);
154
155         return page;
156 }
157
158 void ll_release_page(struct inode *inode, struct page *page,
159                      bool remove)
160 {
161         kunmap(page);
162
163         /* Always remove the page for striped dir, because the page is
164          * built from temporarily in LMV layer */
165         if (inode && ll_dir_striped(inode)) {
166                 __free_page(page);
167                 return;
168         }
169
170         if (remove) {
171                 lock_page(page);
172                 if (likely(page->mapping != NULL))
173                         delete_from_page_cache(page);
174                 unlock_page(page);
175         }
176         put_page(page);
177 }
178
179 #ifdef HAVE_DIR_CONTEXT
180 int ll_dir_read(struct inode *inode, __u64 *ppos, struct md_op_data *op_data,
181                 struct dir_context *ctx)
182 {
183 #else
184 int ll_dir_read(struct inode *inode, __u64 *ppos, struct md_op_data *op_data,
185                 void *cookie, filldir_t filldir)
186 {
187 #endif
188         struct ll_sb_info    *sbi        = ll_i2sbi(inode);
189         __u64                 pos        = *ppos;
190         bool                  is_api32 = ll_need_32bit_api(sbi);
191         bool                  is_hash64 = sbi->ll_flags & LL_SBI_64BIT_HASH;
192         struct page          *page;
193         struct ll_dir_chain   chain;
194         bool                  done = false;
195         int                   rc = 0;
196         ENTRY;
197
198         ll_dir_chain_init(&chain);
199
200         page = ll_get_dir_page(inode, op_data, pos, &chain);
201
202         while (rc == 0 && !done) {
203                 struct lu_dirpage *dp;
204                 struct lu_dirent  *ent;
205                 __u64 hash;
206                 __u64 next;
207
208                 if (IS_ERR(page)) {
209                         rc = PTR_ERR(page);
210                         break;
211                 }
212
213                 hash = MDS_DIR_END_OFF;
214                 dp = page_address(page);
215                 for (ent = lu_dirent_start(dp); ent != NULL && !done;
216                      ent = lu_dirent_next(ent)) {
217                         __u16          type;
218                         int            namelen;
219                         struct lu_fid  fid;
220                         __u64          lhash;
221                         __u64          ino;
222
223                         hash = le64_to_cpu(ent->lde_hash);
224                         if (hash < pos) /* Skip until we find target hash */
225                                 continue;
226
227                         namelen = le16_to_cpu(ent->lde_namelen);
228                         if (namelen == 0) /* Skip dummy record */
229                                 continue;
230
231                         if (is_api32 && is_hash64)
232                                 lhash = hash >> 32;
233                         else
234                                 lhash = hash;
235                         fid_le_to_cpu(&fid, &ent->lde_fid);
236                         ino = cl_fid_build_ino(&fid, is_api32);
237                         type = IFTODT(lu_dirent_type_get(ent));
238                         /* For ll_nfs_get_name_filldir(), it will try to access
239                          * 'ent' through 'lde_name', so the parameter 'name'
240                          * for 'filldir()' must be part of the 'ent'. */
241 #ifdef HAVE_DIR_CONTEXT
242                         ctx->pos = lhash;
243                         done = !dir_emit(ctx, ent->lde_name, namelen, ino,
244                                          type);
245 #else
246                         done = filldir(cookie, ent->lde_name, namelen, lhash,
247                                        ino, type);
248 #endif
249                 }
250
251                 if (done) {
252                         pos = hash;
253                         ll_release_page(inode, page, false);
254                         break;
255                 }
256
257                 next = le64_to_cpu(dp->ldp_hash_end);
258                 pos = next;
259                 if (pos == MDS_DIR_END_OFF) {
260                         /*
261                          * End of directory reached.
262                          */
263                         done = 1;
264                         ll_release_page(inode, page, false);
265                 } else {
266                         /*
267                          * Normal case: continue to the next
268                          * page.
269                          */
270                         ll_release_page(inode, page,
271                                         le32_to_cpu(dp->ldp_flags) &
272                                         LDF_COLLIDE);
273                         next = pos;
274                         page = ll_get_dir_page(inode, op_data, pos,
275                                                &chain);
276                 }
277         }
278 #ifdef HAVE_DIR_CONTEXT
279         ctx->pos = pos;
280 #else
281         *ppos = pos;
282 #endif
283         ll_dir_chain_fini(&chain);
284         RETURN(rc);
285 }
286
287 #ifdef HAVE_DIR_CONTEXT
288 static int ll_iterate(struct file *filp, struct dir_context *ctx)
289 #else
290 static int ll_readdir(struct file *filp, void *cookie, filldir_t filldir)
291 #endif
292 {
293         struct inode *inode = file_inode(filp);
294         struct ll_file_data *lfd = filp->private_data;
295         struct ll_sb_info *sbi = ll_i2sbi(inode);
296         int hash64 = sbi->ll_flags & LL_SBI_64BIT_HASH;
297         int api32 = ll_need_32bit_api(sbi);
298         struct md_op_data *op_data;
299         struct lu_fid pfid = { 0 };
300         ktime_t kstart = ktime_get();
301         __u64 pos;
302         int rc;
303         ENTRY;
304
305         if (lfd != NULL)
306                 pos = lfd->lfd_pos;
307         else
308                 pos = 0;
309
310         CDEBUG(D_VFSTRACE,
311                "VFS Op:inode="DFID"(%p) pos/size%lu/%llu 32bit_api %d\n",
312                PFID(ll_inode2fid(inode)),
313                inode, (unsigned long)pos, i_size_read(inode), api32);
314
315         if (pos == MDS_DIR_END_OFF)
316                 /*
317                  * end-of-file.
318                  */
319                 GOTO(out, rc = 0);
320
321         if (unlikely(ll_dir_striped(inode))) {
322                 /*
323                  * This is only needed for striped dir to fill ..,
324                  * see lmv_read_page()
325                  */
326                 if (file_dentry(filp)->d_parent != NULL &&
327                     file_dentry(filp)->d_parent->d_inode != NULL) {
328                         __u64 ibits = MDS_INODELOCK_LOOKUP;
329                         struct inode *parent =
330                                 file_dentry(filp)->d_parent->d_inode;
331
332                         if (ll_have_md_lock(parent, &ibits, LCK_MINMODE))
333                                 pfid = *ll_inode2fid(parent);
334                 }
335
336                 /* If it can not find in cache, do lookup .. on the master
337                  * object */
338                 if (fid_is_zero(&pfid)) {
339                         rc = ll_dir_get_parent_fid(inode, &pfid);
340                         if (rc != 0)
341                                 RETURN(rc);
342                 }
343         }
344
345         op_data = ll_prep_md_op_data(NULL, inode, inode, NULL, 0, 0,
346                                      LUSTRE_OPC_ANY, inode);
347         if (IS_ERR(op_data))
348                 GOTO(out, rc = PTR_ERR(op_data));
349
350         /* foreign dirs are browsed out of Lustre */
351         if (unlikely(op_data->op_mea1 != NULL &&
352                      op_data->op_mea1->lsm_md_magic == LMV_MAGIC_FOREIGN)) {
353                 ll_finish_md_op_data(op_data);
354                 RETURN(-ENODATA);
355         }
356
357         op_data->op_fid3 = pfid;
358
359 #ifdef HAVE_DIR_CONTEXT
360         ctx->pos = pos;
361         rc = ll_dir_read(inode, &pos, op_data, ctx);
362         pos = ctx->pos;
363 #else
364         rc = ll_dir_read(inode, &pos, op_data, cookie, filldir);
365 #endif
366         if (lfd != NULL)
367                 lfd->lfd_pos = pos;
368
369         if (pos == MDS_DIR_END_OFF) {
370                 if (api32)
371                         pos = LL_DIR_END_OFF_32BIT;
372                 else
373                         pos = LL_DIR_END_OFF;
374         } else {
375                 if (api32 && hash64)
376                         pos = pos >> 32;
377         }
378 #ifdef HAVE_DIR_CONTEXT
379         ctx->pos = pos;
380 #else
381         filp->f_pos = pos;
382 #endif
383         ll_finish_md_op_data(op_data);
384
385 out:
386         if (!rc)
387                 ll_stats_ops_tally(sbi, LPROC_LL_READDIR,
388                                    ktime_us_delta(ktime_get(), kstart));
389
390         RETURN(rc);
391 }
392
393 /**
394  * Create striped directory with specified stripe(@lump)
395  *
396  * \param[in] dparent   the parent of the directory.
397  * \param[in] lump      the specified stripes.
398  * \param[in] dirname   the name of the directory.
399  * \param[in] mode      the specified mode of the directory.
400  *
401  * \retval              =0 if striped directory is being created successfully.
402  *                      <0 if the creation is failed.
403  */
404 static int ll_dir_setdirstripe(struct dentry *dparent, struct lmv_user_md *lump,
405                                size_t len, const char *dirname, umode_t mode)
406 {
407         struct inode *parent = dparent->d_inode;
408         struct ptlrpc_request *request = NULL;
409         struct md_op_data *op_data;
410         struct ll_sb_info *sbi = ll_i2sbi(parent);
411         struct inode *inode = NULL;
412         struct dentry dentry = {
413                 .d_parent = dparent,
414                 .d_name = {
415                         .name = dirname,
416                         .len = strlen(dirname),
417                         .hash = ll_full_name_hash(dparent, dirname,
418                                                   strlen(dirname)),
419                 },
420         };
421         bool encrypt = false;
422         int err;
423         ENTRY;
424
425         if (unlikely(!lmv_user_magic_supported(lump->lum_magic)))
426                 RETURN(-EINVAL);
427
428         if (lump->lum_magic != LMV_MAGIC_FOREIGN) {
429                 CDEBUG(D_VFSTRACE,
430                        "VFS Op:inode="DFID"(%p) name %s stripe_offset %d, stripe_count: %u\n",
431                        PFID(ll_inode2fid(parent)), parent, dirname,
432                        (int)lump->lum_stripe_offset, lump->lum_stripe_count);
433         } else {
434                 struct lmv_foreign_md *lfm = (struct lmv_foreign_md *)lump;
435
436                 CDEBUG(D_VFSTRACE,
437                        "VFS Op:inode="DFID"(%p) name %s foreign, length %u, value '%.*s'\n",
438                        PFID(ll_inode2fid(parent)), parent, dirname,
439                        lfm->lfm_length, lfm->lfm_length, lfm->lfm_value);
440         }
441
442         if (lump->lum_stripe_count > 1 &&
443             !(exp_connect_flags(sbi->ll_md_exp) & OBD_CONNECT_DIR_STRIPE))
444                 RETURN(-EINVAL);
445
446         if (IS_DEADDIR(parent) &&
447             !OBD_FAIL_CHECK(OBD_FAIL_LLITE_NO_CHECK_DEAD))
448                 RETURN(-ENOENT);
449
450         if (!(exp_connect_flags2(sbi->ll_md_exp) & OBD_CONNECT2_CRUSH)) {
451                 if ((lump->lum_hash_type & LMV_HASH_TYPE_MASK) ==
452                      LMV_HASH_TYPE_CRUSH) {
453                         /* if server doesn't support 'crush' hash type,
454                          * switch to fnv_1a_64.
455                          */
456                         lump->lum_hash_type &= ~LMV_HASH_TYPE_MASK;
457                         lump->lum_hash_type |= LMV_HASH_TYPE_FNV_1A_64;
458                 } else if ((lump->lum_hash_type & LMV_HASH_TYPE_MASK) ==
459                      LMV_HASH_TYPE_UNKNOWN) {
460                         /* from 2.14 MDT will choose default hash type if client
461                          * doesn't set a valid one, while old server doesn't
462                          * handle it.
463                          */
464                         lump->lum_hash_type &= ~LMV_HASH_TYPE_MASK;
465                         lump->lum_hash_type |= LMV_HASH_TYPE_DEFAULT;
466                 }
467         }
468
469         if (unlikely(!lmv_user_magic_supported(cpu_to_le32(lump->lum_magic))))
470                 lustre_swab_lmv_user_md(lump);
471
472         if (!IS_POSIXACL(parent) || !exp_connect_umask(ll_i2mdexp(parent)))
473                 mode &= ~current_umask();
474         mode = (mode & (S_IRWXUGO | S_ISVTX)) | S_IFDIR;
475         op_data = ll_prep_md_op_data(NULL, parent, NULL, dirname,
476                                      strlen(dirname), mode, LUSTRE_OPC_MKDIR,
477                                      lump);
478         if (IS_ERR(op_data))
479                 RETURN(PTR_ERR(op_data));
480
481         if (ll_sbi_has_encrypt(sbi) &&
482             (IS_ENCRYPTED(parent) ||
483             unlikely(llcrypt_dummy_context_enabled(parent)))) {
484                 err = llcrypt_get_encryption_info(parent);
485                 if (err)
486                         GOTO(out_op_data, err);
487                 if (!llcrypt_has_encryption_key(parent))
488                         GOTO(out_op_data, err = -ENOKEY);
489                 encrypt = true;
490         }
491
492         if (sbi->ll_flags & LL_SBI_FILE_SECCTX) {
493                 /* selinux_dentry_init_security() uses dentry->d_parent and name
494                  * to determine the security context for the file. So our fake
495                  * dentry should be real enough for this purpose. */
496                 err = ll_dentry_init_security(&dentry, mode, &dentry.d_name,
497                                               &op_data->op_file_secctx_name,
498                                               &op_data->op_file_secctx,
499                                               &op_data->op_file_secctx_size);
500                 if (err < 0)
501                         GOTO(out_op_data, err);
502         }
503
504         if (encrypt) {
505                 err = llcrypt_inherit_context(parent, NULL, op_data, false);
506                 if (err)
507                         GOTO(out_op_data, err);
508         }
509
510         op_data->op_cli_flags |= CLI_SET_MEA;
511         err = md_create(sbi->ll_md_exp, op_data, lump, len, mode,
512                         from_kuid(&init_user_ns, current_fsuid()),
513                         from_kgid(&init_user_ns, current_fsgid()),
514                         cfs_curproc_cap_pack(), 0, &request);
515         if (err)
516                 GOTO(out_request, err);
517
518         CFS_FAIL_TIMEOUT(OBD_FAIL_LLITE_SETDIRSTRIPE_PAUSE, cfs_fail_val);
519
520         err = ll_prep_inode(&inode, request, parent->i_sb, NULL);
521         if (err)
522                 GOTO(out_inode, err);
523
524         dentry.d_inode = inode;
525
526         if (sbi->ll_flags & LL_SBI_FILE_SECCTX) {
527                 /* no need to protect selinux_inode_setsecurity() by
528                  * inode_lock. Taking it would lead to a client deadlock
529                  * LU-13617
530                  */
531                 err = security_inode_notifysecctx(inode,
532                                                   op_data->op_file_secctx,
533                                                   op_data->op_file_secctx_size);
534         } else {
535                 err = ll_inode_init_security(&dentry, inode, parent);
536         }
537         if (err)
538                 GOTO(out_inode, err);
539
540         if (encrypt) {
541                 err = ll_set_encflags(inode, op_data->op_file_encctx,
542                                       op_data->op_file_encctx_size, false);
543                 if (err)
544                         GOTO(out_inode, err);
545         }
546
547 out_inode:
548         if (inode != NULL)
549                 iput(inode);
550 out_request:
551         ptlrpc_req_finished(request);
552 out_op_data:
553         ll_finish_md_op_data(op_data);
554
555         return err;
556 }
557
558 int ll_dir_setstripe(struct inode *inode, struct lov_user_md *lump,
559                      int set_default)
560 {
561         struct ll_sb_info *sbi = ll_i2sbi(inode);
562         struct md_op_data *op_data;
563         struct ptlrpc_request *req = NULL;
564         int rc = 0;
565         int lum_size;
566         ENTRY;
567
568         if (lump != NULL) {
569                 switch (lump->lmm_magic) {
570                 case LOV_USER_MAGIC_V1:
571                         lum_size = sizeof(struct lov_user_md_v1);
572                         break;
573                 case LOV_USER_MAGIC_V3:
574                         lum_size = sizeof(struct lov_user_md_v3);
575                         break;
576                 case LOV_USER_MAGIC_COMP_V1:
577                         lum_size = ((struct lov_comp_md_v1 *)lump)->lcm_size;
578                         break;
579                 case LMV_USER_MAGIC:
580                         if (lump->lmm_magic != cpu_to_le32(LMV_USER_MAGIC))
581                                 lustre_swab_lmv_user_md(
582                                         (struct lmv_user_md *)lump);
583                         lum_size = sizeof(struct lmv_user_md);
584                         break;
585                 case LOV_USER_MAGIC_SPECIFIC: {
586                         struct lov_user_md_v3 *v3 =
587                                 (struct lov_user_md_v3 *)lump;
588                         if (v3->lmm_stripe_count > LOV_MAX_STRIPE_COUNT)
589                                 RETURN(-EINVAL);
590                         lum_size = lov_user_md_size(v3->lmm_stripe_count,
591                                                     LOV_USER_MAGIC_SPECIFIC);
592                         break;
593                 }
594                 default:
595                         CDEBUG(D_IOCTL, "bad userland LOV MAGIC:"
596                                         " %#08x != %#08x nor %#08x\n",
597                                         lump->lmm_magic, LOV_USER_MAGIC_V1,
598                                         LOV_USER_MAGIC_V3);
599                         RETURN(-EINVAL);
600                 }
601
602                 /*
603                  * This is coming from userspace, so should be in
604                  * local endian.  But the MDS would like it in little
605                  * endian, so we swab it before we send it.
606                  */
607                 if ((__swab32(lump->lmm_magic) & le32_to_cpu(LOV_MAGIC_MASK)) ==
608                     le32_to_cpu(LOV_MAGIC_MAGIC))
609                         lustre_swab_lov_user_md(lump, 0);
610         } else {
611                 lum_size = sizeof(struct lov_user_md_v1);
612         }
613
614         op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL, 0, 0,
615                                      LUSTRE_OPC_ANY, NULL);
616         if (IS_ERR(op_data))
617                 RETURN(PTR_ERR(op_data));
618
619         /* swabbing is done in lov_setstripe() on server side */
620         rc = md_setattr(sbi->ll_md_exp, op_data, lump, lum_size, &req);
621         ll_finish_md_op_data(op_data);
622         ptlrpc_req_finished(req);
623         if (rc)
624                 RETURN(rc);
625
626         RETURN(rc);
627 }
628
629 static int ll_dir_get_default_layout(struct inode *inode, void **plmm,
630                                      int *plmm_size,
631                                      struct ptlrpc_request **request, u64 valid,
632                                      enum get_default_layout_type type)
633 {
634         struct ll_sb_info *sbi = ll_i2sbi(inode);
635         struct mdt_body   *body;
636         struct lov_mds_md *lmm = NULL;
637         struct ptlrpc_request *req = NULL;
638         int rc, lmm_size;
639         struct md_op_data *op_data;
640         struct lu_fid fid;
641         ENTRY;
642
643         rc = ll_get_default_mdsize(sbi, &lmm_size);
644         if (rc)
645                 RETURN(rc);
646
647         op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL,
648                                      0, lmm_size, LUSTRE_OPC_ANY,
649                                      NULL);
650         if (IS_ERR(op_data))
651                 RETURN(PTR_ERR(op_data));
652
653         op_data->op_valid = valid | OBD_MD_FLEASIZE | OBD_MD_FLDIREA;
654
655         if (type == GET_DEFAULT_LAYOUT_ROOT) {
656                 lu_root_fid(&op_data->op_fid1);
657                 fid = op_data->op_fid1;
658         } else {
659                 fid = *ll_inode2fid(inode);
660         }
661
662         rc = md_getattr(sbi->ll_md_exp, op_data, &req);
663         ll_finish_md_op_data(op_data);
664         if (rc < 0) {
665                 CDEBUG(D_INFO, "md_getattr failed on inode "DFID": rc %d\n",
666                        PFID(&fid), rc);
667                 GOTO(out, rc);
668         }
669
670         body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
671         LASSERT(body != NULL);
672
673         lmm_size = body->mbo_eadatasize;
674
675         if (!(body->mbo_valid & (OBD_MD_FLEASIZE | OBD_MD_FLDIREA)) ||
676             lmm_size == 0) {
677                 GOTO(out, rc = -ENODATA);
678         }
679
680         lmm = req_capsule_server_sized_get(&req->rq_pill,
681                                            &RMF_MDT_MD, lmm_size);
682         LASSERT(lmm != NULL);
683
684         /*
685          * This is coming from the MDS, so is probably in
686          * little endian.  We convert it to host endian before
687          * passing it to userspace.
688          */
689         /* We don't swab objects for directories */
690         switch (le32_to_cpu(lmm->lmm_magic)) {
691         case LOV_MAGIC_V1:
692         case LOV_MAGIC_V3:
693         case LOV_MAGIC_COMP_V1:
694         case LOV_USER_MAGIC_SPECIFIC:
695                 if (LOV_MAGIC != cpu_to_le32(LOV_MAGIC))
696                         lustre_swab_lov_user_md((struct lov_user_md *)lmm, 0);
697                 break;
698         case LMV_MAGIC_V1:
699                 if (LMV_MAGIC != cpu_to_le32(LMV_MAGIC))
700                         lustre_swab_lmv_mds_md((union lmv_mds_md *)lmm);
701                 break;
702         case LMV_USER_MAGIC:
703                 if (LMV_USER_MAGIC != cpu_to_le32(LMV_USER_MAGIC))
704                         lustre_swab_lmv_user_md((struct lmv_user_md *)lmm);
705                 break;
706         case LMV_MAGIC_FOREIGN: {
707                 struct lmv_foreign_md *lfm = (struct lmv_foreign_md *)lmm;
708
709                 if (LMV_MAGIC_FOREIGN != cpu_to_le32(LMV_MAGIC_FOREIGN)) {
710                         __swab32s(&lfm->lfm_magic);
711                         __swab32s(&lfm->lfm_length);
712                         __swab32s(&lfm->lfm_type);
713                         __swab32s(&lfm->lfm_flags);
714                 }
715                 break;
716         }
717         default:
718                 CERROR("unknown magic: %lX\n", (unsigned long)lmm->lmm_magic);
719                 rc = -EPROTO;
720         }
721 out:
722         *plmm = lmm;
723         *plmm_size = lmm_size;
724         *request = req;
725         return rc;
726 }
727
728 /**
729  * This function will be used to get default LOV/LMV/Default LMV
730  * @valid will be used to indicate which stripe it will retrieve.
731  * If the directory does not have its own default layout, then the
732  * function will request the default layout from root FID.
733  *      OBD_MD_MEA              LMV stripe EA
734  *      OBD_MD_DEFAULT_MEA      Default LMV stripe EA
735  *      otherwise               Default LOV EA.
736  * Each time, it can only retrieve 1 stripe EA
737  **/
738 int ll_dir_getstripe_default(struct inode *inode, void **plmm, int *plmm_size,
739                              struct ptlrpc_request **request,
740                              struct ptlrpc_request **root_request,
741                              u64 valid)
742 {
743         struct ptlrpc_request *req = NULL;
744         struct ptlrpc_request *root_req = NULL;
745         struct lov_mds_md *lmm = NULL;
746         int lmm_size = 0;
747         int rc = 0;
748         ENTRY;
749
750         rc = ll_dir_get_default_layout(inode, (void **)&lmm, &lmm_size,
751                                        &req, valid, 0);
752         if (rc == -ENODATA && !fid_is_root(ll_inode2fid(inode)) &&
753             !(valid & (OBD_MD_MEA|OBD_MD_DEFAULT_MEA)) && root_request != NULL){
754                 int rc2 = ll_dir_get_default_layout(inode, (void **)&lmm,
755                                                     &lmm_size, &root_req, valid,
756                                                     GET_DEFAULT_LAYOUT_ROOT);
757                 if (rc2 == 0)
758                         rc = 0;
759         }
760
761         *plmm = lmm;
762         *plmm_size = lmm_size;
763         *request = req;
764         if (root_request != NULL)
765                 *root_request = root_req;
766
767         RETURN(rc);
768 }
769
770 /**
771  * This function will be used to get default LOV/LMV/Default LMV
772  * @valid will be used to indicate which stripe it will retrieve
773  *      OBD_MD_MEA              LMV stripe EA
774  *      OBD_MD_DEFAULT_MEA      Default LMV stripe EA
775  *      otherwise               Default LOV EA.
776  * Each time, it can only retrieve 1 stripe EA
777  **/
778 int ll_dir_getstripe(struct inode *inode, void **plmm, int *plmm_size,
779                      struct ptlrpc_request **request, u64 valid)
780 {
781         struct ptlrpc_request *req = NULL;
782         struct lov_mds_md *lmm = NULL;
783         int lmm_size = 0;
784         int rc = 0;
785         ENTRY;
786
787         rc = ll_dir_get_default_layout(inode, (void **)&lmm, &lmm_size,
788                                        &req, valid, 0);
789
790         *plmm = lmm;
791         *plmm_size = lmm_size;
792         *request = req;
793
794         RETURN(rc);
795 }
796
797 int ll_get_mdt_idx_by_fid(struct ll_sb_info *sbi, const struct lu_fid *fid)
798 {
799         struct md_op_data       *op_data;
800         int                     rc;
801         int                     mdt_index;
802         ENTRY;
803
804         OBD_ALLOC_PTR(op_data);
805         if (op_data == NULL)
806                 RETURN(-ENOMEM);
807
808         op_data->op_flags |= MF_GET_MDT_IDX;
809         op_data->op_fid1 = *fid;
810         rc = md_getattr(sbi->ll_md_exp, op_data, NULL);
811         mdt_index = op_data->op_mds;
812         OBD_FREE_PTR(op_data);
813         if (rc < 0)
814                 RETURN(rc);
815
816         RETURN(mdt_index);
817 }
818
819 /*
820  *  Get MDT index for the inode.
821  */
822 int ll_get_mdt_idx(struct inode *inode)
823 {
824         return ll_get_mdt_idx_by_fid(ll_i2sbi(inode), ll_inode2fid(inode));
825 }
826
827 /**
828  * Generic handler to do any pre-copy work.
829  *
830  * It sends a first hsm_progress (with extent length == 0) to coordinator as a
831  * first information for it that real work has started.
832  *
833  * Moreover, for a ARCHIVE request, it will sample the file data version and
834  * store it in \a copy.
835  *
836  * \return 0 on success.
837  */
838 static int ll_ioc_copy_start(struct super_block *sb, struct hsm_copy *copy)
839 {
840         struct ll_sb_info               *sbi = ll_s2sbi(sb);
841         struct hsm_progress_kernel       hpk;
842         int                              rc = 0;
843         int                              rc2;
844         ENTRY;
845
846         /* Forge a hsm_progress based on data from copy. */
847         hpk.hpk_fid = copy->hc_hai.hai_fid;
848         hpk.hpk_cookie = copy->hc_hai.hai_cookie;
849         hpk.hpk_extent.offset = copy->hc_hai.hai_extent.offset;
850         hpk.hpk_extent.length = 0;
851         hpk.hpk_flags = 0;
852         hpk.hpk_errval = 0;
853         hpk.hpk_data_version = 0;
854
855
856         /* For archive request, we need to read the current file version. */
857         if (copy->hc_hai.hai_action == HSMA_ARCHIVE) {
858                 struct inode    *inode;
859                 __u64            data_version = 0;
860
861                 /* Get inode for this fid */
862                 inode = search_inode_for_lustre(sb, &copy->hc_hai.hai_fid);
863                 if (IS_ERR(inode)) {
864                         hpk.hpk_flags |= HP_FLAG_RETRY;
865                         /* hpk_errval is >= 0 */
866                         hpk.hpk_errval = -PTR_ERR(inode);
867                         GOTO(progress, rc = PTR_ERR(inode));
868                 }
869
870                 /* Read current file data version */
871                 rc = ll_data_version(inode, &data_version, LL_DV_RD_FLUSH);
872                 iput(inode);
873                 if (rc != 0) {
874                         CDEBUG(D_HSM, "Could not read file data version of "
875                                       DFID" (rc = %d). Archive request ("
876                                       "%#llx) could not be done.\n",
877                                       PFID(&copy->hc_hai.hai_fid), rc,
878                                       copy->hc_hai.hai_cookie);
879                         hpk.hpk_flags |= HP_FLAG_RETRY;
880                         /* hpk_errval must be >= 0 */
881                         hpk.hpk_errval = -rc;
882                         GOTO(progress, rc);
883                 }
884
885                 /* Store in the hsm_copy for later copytool use.
886                  * Always modified even if no lsm. */
887                 copy->hc_data_version = data_version;
888         }
889
890 progress:
891         /* On error, the request should be considered as completed */
892         if (hpk.hpk_errval > 0)
893                 hpk.hpk_flags |= HP_FLAG_COMPLETED;
894
895         rc2 = obd_iocontrol(LL_IOC_HSM_PROGRESS, sbi->ll_md_exp, sizeof(hpk),
896                             &hpk, NULL);
897
898         /* Return first error */
899         RETURN(rc != 0 ? rc : rc2);
900 }
901
902 /**
903  * Generic handler to do any post-copy work.
904  *
905  * It will send the last hsm_progress update to coordinator to inform it
906  * that copy is finished and whether it was successful or not.
907  *
908  * Moreover,
909  * - for ARCHIVE request, it will sample the file data version and compare it
910  *   with the version saved in ll_ioc_copy_start(). If they do not match, copy
911  *   will be considered as failed.
912  * - for RESTORE request, it will sample the file data version and send it to
913  *   coordinator which is useful if the file was imported as 'released'.
914  *
915  * \return 0 on success.
916  */
917 static int ll_ioc_copy_end(struct super_block *sb, struct hsm_copy *copy)
918 {
919         struct ll_sb_info               *sbi = ll_s2sbi(sb);
920         struct hsm_progress_kernel       hpk;
921         int                              rc = 0;
922         int                              rc2;
923         ENTRY;
924
925         /* If you modify the logic here, also check llapi_hsm_copy_end(). */
926         /* Take care: copy->hc_hai.hai_action, len, gid and data are not
927          * initialized if copy_end was called with copy == NULL.
928          */
929
930         /* Forge a hsm_progress based on data from copy. */
931         hpk.hpk_fid = copy->hc_hai.hai_fid;
932         hpk.hpk_cookie = copy->hc_hai.hai_cookie;
933         hpk.hpk_extent = copy->hc_hai.hai_extent;
934         hpk.hpk_flags = copy->hc_flags | HP_FLAG_COMPLETED;
935         hpk.hpk_errval = copy->hc_errval;
936         hpk.hpk_data_version = 0;
937
938         /* For archive request, we need to check the file data was not changed.
939          *
940          * For restore request, we need to send the file data version, this is
941          * useful when the file was created using hsm_import.
942          */
943         if (((copy->hc_hai.hai_action == HSMA_ARCHIVE) ||
944              (copy->hc_hai.hai_action == HSMA_RESTORE)) &&
945             (copy->hc_errval == 0)) {
946                 struct inode    *inode;
947                 __u64            data_version = 0;
948
949                 /* Get lsm for this fid */
950                 inode = search_inode_for_lustre(sb, &copy->hc_hai.hai_fid);
951                 if (IS_ERR(inode)) {
952                         hpk.hpk_flags |= HP_FLAG_RETRY;
953                         /* hpk_errval must be >= 0 */
954                         hpk.hpk_errval = -PTR_ERR(inode);
955                         GOTO(progress, rc = PTR_ERR(inode));
956                 }
957
958                 rc = ll_data_version(inode, &data_version, LL_DV_RD_FLUSH);
959                 iput(inode);
960                 if (rc) {
961                         CDEBUG(D_HSM, "Could not read file data version. "
962                                       "Request could not be confirmed.\n");
963                         if (hpk.hpk_errval == 0)
964                                 hpk.hpk_errval = -rc;
965                         GOTO(progress, rc);
966                 }
967
968                 /* Store in the hsm_copy for later copytool use.
969                  * Always modified even if no lsm. */
970                 hpk.hpk_data_version = data_version;
971
972                 /* File could have been stripped during archiving, so we need
973                  * to check anyway. */
974                 if ((copy->hc_hai.hai_action == HSMA_ARCHIVE) &&
975                     (copy->hc_data_version != data_version)) {
976                         CDEBUG(D_HSM, "File data version mismatched. "
977                               "File content was changed during archiving. "
978                                DFID", start:%#llx current:%#llx\n",
979                                PFID(&copy->hc_hai.hai_fid),
980                                copy->hc_data_version, data_version);
981                         /* File was changed, send error to cdt. Do not ask for
982                          * retry because if a file is modified frequently,
983                          * the cdt will loop on retried archive requests.
984                          * The policy engine will ask for a new archive later
985                          * when the file will not be modified for some tunable
986                          * time */
987                         hpk.hpk_flags &= ~HP_FLAG_RETRY;
988                         rc = -EBUSY;
989                         /* hpk_errval must be >= 0 */
990                         hpk.hpk_errval = -rc;
991                         GOTO(progress, rc);
992                 }
993
994         }
995
996 progress:
997         rc2 = obd_iocontrol(LL_IOC_HSM_PROGRESS, sbi->ll_md_exp, sizeof(hpk),
998                             &hpk, NULL);
999
1000         /* Return first error */
1001         RETURN(rc != 0 ? rc : rc2);
1002 }
1003
1004
1005 static int copy_and_ct_start(int cmd, struct obd_export *exp,
1006                              const struct lustre_kernelcomm __user *data)
1007 {
1008         struct lustre_kernelcomm *lk;
1009         struct lustre_kernelcomm *tmp;
1010         size_t size = sizeof(*lk);
1011         size_t new_size;
1012         int i;
1013         int rc;
1014
1015         /* copy data from userspace to get numbers of archive_id */
1016         OBD_ALLOC(lk, size);
1017         if (lk == NULL)
1018                 return -ENOMEM;
1019
1020         if (copy_from_user(lk, data, size))
1021                 GOTO(out_lk, rc = -EFAULT);
1022
1023         if (lk->lk_flags & LK_FLG_STOP)
1024                 goto do_ioctl;
1025
1026         if (!(lk->lk_flags & LK_FLG_DATANR)) {
1027                 __u32 archive_mask = lk->lk_data_count;
1028                 int count;
1029
1030                 /* old hsm agent to old MDS */
1031                 if (!exp_connect_archive_id_array(exp))
1032                         goto do_ioctl;
1033
1034                 /* old hsm agent to new MDS */
1035                 lk->lk_flags |= LK_FLG_DATANR;
1036
1037                 if (archive_mask == 0)
1038                         goto do_ioctl;
1039
1040                 count = hweight32(archive_mask);
1041                 new_size = offsetof(struct lustre_kernelcomm, lk_data[count]);
1042                 OBD_ALLOC(tmp, new_size);
1043                 if (tmp == NULL)
1044                         GOTO(out_lk, rc = -ENOMEM);
1045
1046                 memcpy(tmp, lk, size);
1047                 tmp->lk_data_count = count;
1048                 OBD_FREE(lk, size);
1049                 lk = tmp;
1050                 size = new_size;
1051
1052                 count = 0;
1053                 for (i = 0; i < sizeof(archive_mask) * 8; i++) {
1054                         if (BIT(i) & archive_mask) {
1055                                 lk->lk_data[count] = i + 1;
1056                                 count++;
1057                         }
1058                 }
1059                 goto do_ioctl;
1060         }
1061
1062         /* new hsm agent to new mds */
1063         if (lk->lk_data_count > 0) {
1064                 new_size = offsetof(struct lustre_kernelcomm,
1065                                     lk_data[lk->lk_data_count]);
1066                 OBD_ALLOC(tmp, new_size);
1067                 if (tmp == NULL)
1068                         GOTO(out_lk, rc = -ENOMEM);
1069
1070                 OBD_FREE(lk, size);
1071                 lk = tmp;
1072                 size = new_size;
1073
1074                 if (copy_from_user(lk, data, size))
1075                         GOTO(out_lk, rc = -EFAULT);
1076         }
1077
1078         /* new hsm agent to old MDS */
1079         if (!exp_connect_archive_id_array(exp)) {
1080                 __u32 archives = 0;
1081
1082                 if (lk->lk_data_count > LL_HSM_ORIGIN_MAX_ARCHIVE)
1083                         GOTO(out_lk, rc = -EINVAL);
1084
1085                 for (i = 0; i < lk->lk_data_count; i++) {
1086                         if (lk->lk_data[i] > LL_HSM_ORIGIN_MAX_ARCHIVE) {
1087                                 rc = -EINVAL;
1088                                 CERROR("%s: archive id %d requested but only "
1089                                        "[0 - %zu] supported: rc = %d\n",
1090                                        exp->exp_obd->obd_name, lk->lk_data[i],
1091                                        LL_HSM_ORIGIN_MAX_ARCHIVE, rc);
1092                                 GOTO(out_lk, rc);
1093                         }
1094
1095                         if (lk->lk_data[i] == 0) {
1096                                 archives = 0;
1097                                 break;
1098                         }
1099
1100                         archives |= (1 << (lk->lk_data[i] - 1));
1101                 }
1102                 lk->lk_flags &= ~LK_FLG_DATANR;
1103                 lk->lk_data_count = archives;
1104         }
1105 do_ioctl:
1106         rc = obd_iocontrol(cmd, exp, size, lk, NULL);
1107 out_lk:
1108         OBD_FREE(lk, size);
1109         return rc;
1110 }
1111
1112 static int check_owner(int type, int id)
1113 {
1114         switch (type) {
1115         case USRQUOTA:
1116                 if (!uid_eq(current_euid(), make_kuid(&init_user_ns, id)))
1117                         return -EPERM;
1118                 break;
1119         case GRPQUOTA:
1120                 if (!in_egroup_p(make_kgid(&init_user_ns, id)))
1121                         return -EPERM;
1122                 break;
1123         case PRJQUOTA:
1124                 break;
1125         }
1126         return 0;
1127 }
1128
1129 int quotactl_ioctl(struct ll_sb_info *sbi, struct if_quotactl *qctl)
1130 {
1131         int cmd = qctl->qc_cmd;
1132         int type = qctl->qc_type;
1133         int id = qctl->qc_id;
1134         int valid = qctl->qc_valid;
1135         int rc = 0;
1136
1137         ENTRY;
1138
1139         switch (cmd) {
1140         case Q_SETQUOTA:
1141         case Q_SETINFO:
1142         case LUSTRE_Q_SETDEFAULT:
1143         case LUSTRE_Q_SETQUOTAPOOL:
1144         case LUSTRE_Q_SETINFOPOOL:
1145                 if (!cfs_capable(CFS_CAP_SYS_ADMIN))
1146                         RETURN(-EPERM);
1147                 break;
1148         case Q_GETQUOTA:
1149         case LUSTRE_Q_GETDEFAULT:
1150         case LUSTRE_Q_GETQUOTAPOOL:
1151                 if (check_owner(type, id) &&
1152                     (!cfs_capable(CFS_CAP_SYS_ADMIN)))
1153                         RETURN(-EPERM);
1154                 break;
1155         case Q_GETINFO:
1156         case LUSTRE_Q_GETINFOPOOL:
1157                 break;
1158         default:
1159                 CERROR("unsupported quotactl op: %#x\n", cmd);
1160                 RETURN(-ENOTSUPP);
1161         }
1162
1163         if (valid != QC_GENERAL) {
1164                 if (cmd == Q_GETINFO)
1165                         qctl->qc_cmd = Q_GETOINFO;
1166                 else if (cmd == Q_GETQUOTA ||
1167                          cmd == LUSTRE_Q_GETQUOTAPOOL)
1168                         qctl->qc_cmd = Q_GETOQUOTA;
1169                 else
1170                         RETURN(-EINVAL);
1171
1172                 switch (valid) {
1173                 case QC_MDTIDX:
1174                         rc = obd_iocontrol(OBD_IOC_QUOTACTL, sbi->ll_md_exp,
1175                                            sizeof(*qctl), qctl, NULL);
1176                         break;
1177                 case QC_OSTIDX:
1178                         rc = obd_iocontrol(OBD_IOC_QUOTACTL, sbi->ll_dt_exp,
1179                                            sizeof(*qctl), qctl, NULL);
1180                         break;
1181                 case QC_UUID:
1182                         rc = obd_iocontrol(OBD_IOC_QUOTACTL, sbi->ll_md_exp,
1183                                            sizeof(*qctl), qctl, NULL);
1184                         if (rc == -EAGAIN)
1185                                 rc = obd_iocontrol(OBD_IOC_QUOTACTL,
1186                                                    sbi->ll_dt_exp,
1187                                                    sizeof(*qctl), qctl, NULL);
1188                         break;
1189                 default:
1190                         rc = -EINVAL;
1191                         break;
1192                 }
1193
1194                 if (rc)
1195                         RETURN(rc);
1196
1197                 qctl->qc_cmd = cmd;
1198         } else {
1199                 struct obd_quotactl *oqctl;
1200                 int oqctl_len = sizeof(*oqctl);
1201
1202                 if (LUSTRE_Q_CMD_IS_POOL(cmd))
1203                         oqctl_len += LOV_MAXPOOLNAME + 1;
1204
1205                 OBD_ALLOC(oqctl, oqctl_len);
1206                 if (oqctl == NULL)
1207                         RETURN(-ENOMEM);
1208
1209                 QCTL_COPY(oqctl, qctl);
1210                 rc = obd_quotactl(sbi->ll_md_exp, oqctl);
1211                 if (rc) {
1212                         OBD_FREE(oqctl, oqctl_len);
1213                         RETURN(rc);
1214                 }
1215                 /* If QIF_SPACE is not set, client should collect the
1216                  * space usage from OSSs by itself */
1217                 if ((cmd == Q_GETQUOTA || cmd == LUSTRE_Q_GETQUOTAPOOL) &&
1218                     !(oqctl->qc_dqblk.dqb_valid & QIF_SPACE) &&
1219                     !oqctl->qc_dqblk.dqb_curspace) {
1220                         struct obd_quotactl *oqctl_tmp;
1221                         int qctl_len = sizeof(*oqctl_tmp) + LOV_MAXPOOLNAME + 1;
1222
1223                         OBD_ALLOC(oqctl_tmp, qctl_len);
1224                         if (oqctl_tmp == NULL)
1225                                 GOTO(out, rc = -ENOMEM);
1226
1227                         if (cmd == LUSTRE_Q_GETQUOTAPOOL) {
1228                                 oqctl_tmp->qc_cmd = LUSTRE_Q_GETQUOTAPOOL;
1229                                 memcpy(oqctl_tmp->qc_poolname,
1230                                        qctl->qc_poolname,
1231                                        LOV_MAXPOOLNAME + 1);
1232                         } else {
1233                                 oqctl_tmp->qc_cmd = Q_GETOQUOTA;
1234                         }
1235                         oqctl_tmp->qc_id = oqctl->qc_id;
1236                         oqctl_tmp->qc_type = oqctl->qc_type;
1237
1238                         /* collect space usage from OSTs */
1239                         oqctl_tmp->qc_dqblk.dqb_curspace = 0;
1240                         rc = obd_quotactl(sbi->ll_dt_exp, oqctl_tmp);
1241                         if (!rc || rc == -EREMOTEIO) {
1242                                 oqctl->qc_dqblk.dqb_curspace =
1243                                         oqctl_tmp->qc_dqblk.dqb_curspace;
1244                                 oqctl->qc_dqblk.dqb_valid |= QIF_SPACE;
1245                         }
1246
1247                         /* collect space & inode usage from MDTs */
1248                         oqctl_tmp->qc_cmd = Q_GETOQUOTA;
1249                         oqctl_tmp->qc_dqblk.dqb_curspace = 0;
1250                         oqctl_tmp->qc_dqblk.dqb_curinodes = 0;
1251                         rc = obd_quotactl(sbi->ll_md_exp, oqctl_tmp);
1252                         if (!rc || rc == -EREMOTEIO) {
1253                                 oqctl->qc_dqblk.dqb_curspace +=
1254                                         oqctl_tmp->qc_dqblk.dqb_curspace;
1255                                 oqctl->qc_dqblk.dqb_curinodes =
1256                                         oqctl_tmp->qc_dqblk.dqb_curinodes;
1257                                 oqctl->qc_dqblk.dqb_valid |= QIF_INODES;
1258                         } else {
1259                                 oqctl->qc_dqblk.dqb_valid &= ~QIF_SPACE;
1260                         }
1261
1262                         OBD_FREE(oqctl_tmp, qctl_len);
1263                 }
1264 out:
1265                 QCTL_COPY(qctl, oqctl);
1266                 OBD_FREE(oqctl, oqctl_len);
1267         }
1268
1269         RETURN(rc);
1270 }
1271
1272 int ll_rmfid(struct file *file, void __user *arg)
1273 {
1274         const struct fid_array __user *ufa = arg;
1275         struct fid_array *lfa = NULL;
1276         size_t size;
1277         unsigned nr;
1278         int i, rc, *rcs = NULL;
1279         ENTRY;
1280
1281         if (!cfs_capable(CFS_CAP_DAC_READ_SEARCH) &&
1282             !(ll_i2sbi(file_inode(file))->ll_flags & LL_SBI_USER_FID2PATH))
1283                 RETURN(-EPERM);
1284         /* Only need to get the buflen */
1285         if (get_user(nr, &ufa->fa_nr))
1286                 RETURN(-EFAULT);
1287         /* DoS protection */
1288         if (nr > OBD_MAX_FIDS_IN_ARRAY)
1289                 RETURN(-E2BIG);
1290
1291         size = offsetof(struct fid_array, fa_fids[nr]);
1292         OBD_ALLOC(lfa, size);
1293         if (!lfa)
1294                 RETURN(-ENOMEM);
1295         OBD_ALLOC_PTR_ARRAY(rcs, nr);
1296         if (!rcs)
1297                 GOTO(free_lfa, rc = -ENOMEM);
1298
1299         if (copy_from_user(lfa, arg, size))
1300                 GOTO(free_rcs, rc = -EFAULT);
1301
1302         /* Call mdc_iocontrol */
1303         rc = md_rmfid(ll_i2mdexp(file_inode(file)), lfa, rcs, NULL);
1304         if (!rc) {
1305                 for (i = 0; i < nr; i++)
1306                         if (rcs[i])
1307                                 lfa->fa_fids[i].f_ver = rcs[i];
1308                 if (copy_to_user(arg, lfa, size))
1309                         rc = -EFAULT;
1310         }
1311
1312 free_rcs:
1313         OBD_FREE_PTR_ARRAY(rcs, nr);
1314 free_lfa:
1315         OBD_FREE(lfa, size);
1316
1317         RETURN(rc);
1318 }
1319
1320 /* This function tries to get a single name component,
1321  * to send to the server. No actual path traversal involved,
1322  * so we limit to NAME_MAX */
1323 static char *ll_getname(const char __user *filename)
1324 {
1325         int ret = 0, len;
1326         char *tmp;
1327
1328         OBD_ALLOC(tmp, NAME_MAX + 1);
1329
1330         if (!tmp)
1331                 return ERR_PTR(-ENOMEM);
1332
1333         len = strncpy_from_user(tmp, filename, NAME_MAX + 1);
1334         if (len < 0)
1335                 ret = -ENOENT;
1336         else if (len > NAME_MAX)
1337                 ret = -ENAMETOOLONG;
1338
1339         if (ret) {
1340                 OBD_FREE(tmp, NAME_MAX + 1);
1341                 tmp =  ERR_PTR(ret);
1342         }
1343         return tmp;
1344 }
1345
1346 #define ll_putname(filename) OBD_FREE(filename, NAME_MAX + 1);
1347
1348 static long ll_dir_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1349 {
1350         struct dentry *dentry = file_dentry(file);
1351         struct inode *inode = file_inode(file);
1352         struct ll_sb_info *sbi = ll_i2sbi(inode);
1353         struct obd_ioctl_data *data;
1354         int rc = 0;
1355         ENTRY;
1356
1357         CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID"(%p), cmd=%#x\n",
1358                PFID(ll_inode2fid(inode)), inode, cmd);
1359
1360         /* asm-ppc{,64} declares TCGETS, et. al. as type 't' not 'T' */
1361         if (_IOC_TYPE(cmd) == 'T' || _IOC_TYPE(cmd) == 't') /* tty ioctls */
1362                 return -ENOTTY;
1363
1364         ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_IOCTL, 1);
1365         switch (cmd) {
1366         case FS_IOC_GETFLAGS:
1367         case FS_IOC_SETFLAGS:
1368                 RETURN(ll_iocontrol(inode, file, cmd, arg));
1369         case FSFILT_IOC_GETVERSION:
1370         case FS_IOC_GETVERSION:
1371                 RETURN(put_user(inode->i_generation, (int __user *)arg));
1372         /* We need to special case any other ioctls we want to handle,
1373          * to send them to the MDS/OST as appropriate and to properly
1374          * network encode the arg field. */
1375         case FS_IOC_SETVERSION:
1376                 RETURN(-ENOTSUPP);
1377
1378         case LL_IOC_GET_MDTIDX: {
1379                 int mdtidx;
1380
1381                 mdtidx = ll_get_mdt_idx(inode);
1382                 if (mdtidx < 0)
1383                         RETURN(mdtidx);
1384
1385                 if (put_user((int)mdtidx, (int __user *)arg))
1386                         RETURN(-EFAULT);
1387
1388                 return 0;
1389         }
1390         case IOC_MDC_LOOKUP: {
1391                                      int namelen, len = 0;
1392                 char *buf = NULL;
1393                 char *filename;
1394
1395                 rc = obd_ioctl_getdata(&buf, &len, (void __user *)arg);
1396                 if (rc != 0)
1397                         RETURN(rc);
1398                 data = (void *)buf;
1399
1400                 filename = data->ioc_inlbuf1;
1401                 namelen = strlen(filename);
1402                 if (namelen < 1) {
1403                         CDEBUG(D_INFO, "IOC_MDC_LOOKUP missing filename\n");
1404                         GOTO(out_free, rc = -EINVAL);
1405                 }
1406
1407                 rc = ll_get_fid_by_name(inode, filename, namelen, NULL, NULL);
1408                 if (rc < 0) {
1409                         CERROR("%s: lookup %.*s failed: rc = %d\n",
1410                                sbi->ll_fsname, namelen, filename, rc);
1411                         GOTO(out_free, rc);
1412                 }
1413 out_free:
1414                 OBD_FREE_LARGE(buf, len);
1415                 return rc;
1416         }
1417         case LL_IOC_LMV_SETSTRIPE: {
1418                 struct lmv_user_md  *lum;
1419                 char            *buf = NULL;
1420                 char            *filename;
1421                 int              namelen = 0;
1422                 int              lumlen = 0;
1423                 umode_t          mode;
1424                 int              len;
1425                 int              rc;
1426
1427                 rc = obd_ioctl_getdata(&buf, &len, (void __user *)arg);
1428                 if (rc)
1429                         RETURN(rc);
1430
1431                 data = (void *)buf;
1432                 if (data->ioc_inlbuf1 == NULL || data->ioc_inlbuf2 == NULL ||
1433                     data->ioc_inllen1 == 0 || data->ioc_inllen2 == 0)
1434                         GOTO(lmv_out_free, rc = -EINVAL);
1435
1436                 filename = data->ioc_inlbuf1;
1437                 namelen = data->ioc_inllen1;
1438
1439                 if (namelen < 1) {
1440                         CDEBUG(D_INFO, "IOC_MDC_LOOKUP missing filename\n");
1441                         GOTO(lmv_out_free, rc = -EINVAL);
1442                 }
1443                 lum = (struct lmv_user_md *)data->ioc_inlbuf2;
1444                 lumlen = data->ioc_inllen2;
1445
1446                 if (!lmv_user_magic_supported(lum->lum_magic)) {
1447                         CERROR("%s: wrong lum magic %x : rc = %d\n", filename,
1448                                lum->lum_magic, -EINVAL);
1449                         GOTO(lmv_out_free, rc = -EINVAL);
1450                 }
1451
1452                 if ((lum->lum_magic == LMV_USER_MAGIC ||
1453                      lum->lum_magic == LMV_USER_MAGIC_SPECIFIC) &&
1454                     lumlen < sizeof(*lum)) {
1455                         CERROR("%s: wrong lum size %d for magic %x : rc = %d\n",
1456                                filename, lumlen, lum->lum_magic, -EINVAL);
1457                         GOTO(lmv_out_free, rc = -EINVAL);
1458                 }
1459
1460                 if (lum->lum_magic == LMV_MAGIC_FOREIGN &&
1461                     lumlen < sizeof(struct lmv_foreign_md)) {
1462                         CERROR("%s: wrong lum magic %x or size %d: rc = %d\n",
1463                                filename, lum->lum_magic, lumlen, -EFAULT);
1464                         GOTO(lmv_out_free, rc = -EINVAL);
1465                 }
1466
1467                 mode = data->ioc_type;
1468                 rc = ll_dir_setdirstripe(dentry, lum, lumlen, filename, mode);
1469 lmv_out_free:
1470                 OBD_FREE_LARGE(buf, len);
1471                 RETURN(rc);
1472
1473         }
1474         case LL_IOC_LMV_SET_DEFAULT_STRIPE: {
1475                 struct lmv_user_md        lum;
1476                 struct lmv_user_md __user *ulump =
1477                                         (struct lmv_user_md __user *)arg;
1478                 int                       rc;
1479
1480                 if (copy_from_user(&lum, ulump, sizeof(lum)))
1481                         RETURN(-EFAULT);
1482
1483                 if (lum.lum_magic != LMV_USER_MAGIC)
1484                         RETURN(-EINVAL);
1485
1486                 rc = ll_dir_setstripe(inode, (struct lov_user_md *)&lum, 0);
1487
1488                 RETURN(rc);
1489         }
1490         case LL_IOC_LOV_SETSTRIPE_NEW:
1491         case LL_IOC_LOV_SETSTRIPE: {
1492                 struct lov_user_md_v3 *lumv3 = NULL;
1493                 struct lov_user_md_v1 lumv1;
1494                 struct lov_user_md_v1 *lumv1_ptr = &lumv1;
1495                 struct lov_user_md_v1 __user *lumv1p =
1496                         (struct lov_user_md_v1 __user *)arg;
1497                 struct lov_user_md_v3 __user *lumv3p =
1498                         (struct lov_user_md_v3 __user *)arg;
1499                 int lum_size = 0;
1500
1501                 int set_default = 0;
1502
1503                 BUILD_BUG_ON(sizeof(struct lov_user_md_v3) <=
1504                              sizeof(struct lov_comp_md_v1));
1505                 BUILD_BUG_ON(sizeof(*lumv3) != sizeof(*lumv3p));
1506                 /* first try with v1 which is smaller than v3 */
1507                 if (copy_from_user(&lumv1, lumv1p, sizeof(lumv1)))
1508                         RETURN(-EFAULT);
1509
1510                 if (inode->i_sb->s_root == file_dentry(file))
1511                         set_default = 1;
1512
1513                 switch (lumv1.lmm_magic) {
1514                 case LOV_USER_MAGIC_V3:
1515                 case LOV_USER_MAGIC_SPECIFIC:
1516                         lum_size = ll_lov_user_md_size(&lumv1);
1517                         if (lum_size < 0)
1518                                 RETURN(lum_size);
1519                         OBD_ALLOC(lumv3, lum_size);
1520                         if (!lumv3)
1521                                 RETURN(-ENOMEM);
1522                         if (copy_from_user(lumv3, lumv3p, lum_size))
1523                                 GOTO(out, rc = -EFAULT);
1524                         lumv1_ptr = (struct lov_user_md_v1 *)lumv3;
1525                         break;
1526                 case LOV_USER_MAGIC_V1:
1527                         break;
1528                 default:
1529                         GOTO(out, rc = -ENOTSUPP);
1530                 }
1531
1532                 /* in v1 and v3 cases lumv1 points to data */
1533                 rc = ll_dir_setstripe(inode, lumv1_ptr, set_default);
1534 out:
1535                 if (lumv3)
1536                         OBD_FREE(lumv3, lum_size);
1537                 RETURN(rc);
1538         }
1539         case LL_IOC_LMV_GETSTRIPE: {
1540                 struct lmv_user_md __user *ulmv =
1541                                         (struct lmv_user_md __user *)arg;
1542                 struct lmv_user_md      lum;
1543                 struct ptlrpc_request   *request = NULL;
1544                 struct ptlrpc_request   *root_request = NULL;
1545                 union lmv_mds_md        *lmm = NULL;
1546                 int                     lmmsize;
1547                 u64                     valid = 0;
1548                 struct lmv_user_md      *tmp = NULL;
1549                 int                     mdt_index;
1550                 int                     lum_size;
1551                 int                     stripe_count;
1552                 int                     max_stripe_count;
1553                 int                     i;
1554                 int                     rc;
1555
1556                 if (copy_from_user(&lum, ulmv, sizeof(*ulmv)))
1557                         RETURN(-EFAULT);
1558
1559                 max_stripe_count = lum.lum_stripe_count;
1560                 /* lum_magic will indicate which stripe the ioctl will like
1561                  * to get, LMV_MAGIC_V1 is for normal LMV stripe, LMV_USER_MAGIC
1562                  * is for default LMV stripe */
1563                 if (lum.lum_magic == LMV_MAGIC_V1)
1564                         valid |= OBD_MD_MEA;
1565                 else if (lum.lum_magic == LMV_USER_MAGIC)
1566                         valid |= OBD_MD_DEFAULT_MEA;
1567                 else
1568                         RETURN(-EINVAL);
1569
1570                 rc = ll_dir_getstripe_default(inode, (void **)&lmm, &lmmsize,
1571                                               &request, &root_request, valid);
1572                 if (rc != 0)
1573                         GOTO(finish_req, rc);
1574
1575                 /* Get default LMV EA */
1576                 if (lum.lum_magic == LMV_USER_MAGIC) {
1577                         if (lmmsize > sizeof(*ulmv))
1578                                 GOTO(finish_req, rc = -EINVAL);
1579
1580                         if (copy_to_user(ulmv, lmm, lmmsize))
1581                                 GOTO(finish_req, rc = -EFAULT);
1582
1583                         GOTO(finish_req, rc);
1584                 }
1585
1586                 /* if foreign LMV case, fake stripes number */
1587                 if (lmm->lmv_magic == LMV_MAGIC_FOREIGN) {
1588                         struct lmv_foreign_md *lfm;
1589
1590                         lfm = (struct lmv_foreign_md *)lmm;
1591                         if (lfm->lfm_length < XATTR_SIZE_MAX -
1592                             offsetof(typeof(*lfm), lfm_value)) {
1593                                 __u32 size = lfm->lfm_length +
1594                                              offsetof(typeof(*lfm), lfm_value);
1595
1596                                 stripe_count = lmv_foreign_to_md_stripes(size);
1597                         } else {
1598                                 CERROR("invalid %d foreign size returned\n",
1599                                             lfm->lfm_length);
1600                                 return -EINVAL;
1601                         }
1602                 } else {
1603                         stripe_count = lmv_mds_md_stripe_count_get(lmm);
1604                 }
1605                 if (max_stripe_count < stripe_count) {
1606                         lum.lum_stripe_count = stripe_count;
1607                         if (copy_to_user(ulmv, &lum, sizeof(lum)))
1608                                 GOTO(finish_req, rc = -EFAULT);
1609                         GOTO(finish_req, rc = -E2BIG);
1610                 }
1611
1612                 /* enough room on user side and foreign case */
1613                 if (lmm->lmv_magic == LMV_MAGIC_FOREIGN) {
1614                         struct lmv_foreign_md *lfm;
1615                         __u32 size;
1616
1617                         lfm = (struct lmv_foreign_md *)lmm;
1618                         size = lfm->lfm_length +
1619                                offsetof(struct lmv_foreign_md, lfm_value);
1620                         if (copy_to_user(ulmv, lfm, size))
1621                                 GOTO(finish_req, rc = -EFAULT);
1622                         GOTO(finish_req, rc);
1623                 }
1624
1625                 lum_size = lmv_user_md_size(stripe_count,
1626                                             LMV_USER_MAGIC_SPECIFIC);
1627                 OBD_ALLOC(tmp, lum_size);
1628                 if (tmp == NULL)
1629                         GOTO(finish_req, rc = -ENOMEM);
1630
1631                 mdt_index = ll_get_mdt_idx(inode);
1632                 if (mdt_index < 0)
1633                         GOTO(out_tmp, rc = -ENOMEM);
1634
1635                 tmp->lum_magic = LMV_MAGIC_V1;
1636                 tmp->lum_stripe_count = 0;
1637                 tmp->lum_stripe_offset = mdt_index;
1638                 tmp->lum_hash_type = lmv_mds_md_hash_type_get(lmm);
1639                 for (i = 0; i < stripe_count; i++) {
1640                         struct lu_fid   fid;
1641
1642                         fid_le_to_cpu(&fid, &lmm->lmv_md_v1.lmv_stripe_fids[i]);
1643                         if (fid_is_sane(&fid)) {
1644                                 mdt_index = ll_get_mdt_idx_by_fid(sbi, &fid);
1645                                 if (mdt_index < 0)
1646                                         GOTO(out_tmp, rc = mdt_index);
1647
1648                                 tmp->lum_objects[i].lum_mds = mdt_index;
1649                                 tmp->lum_objects[i].lum_fid = fid;
1650                         }
1651
1652                         tmp->lum_stripe_count++;
1653                 }
1654
1655                 if (copy_to_user(ulmv, tmp, lum_size))
1656                         GOTO(out_tmp, rc = -EFAULT);
1657 out_tmp:
1658                 OBD_FREE(tmp, lum_size);
1659 finish_req:
1660                 ptlrpc_req_finished(request);
1661                 ptlrpc_req_finished(root_request);
1662                 return rc;
1663         }
1664
1665         case LL_IOC_REMOVE_ENTRY: {
1666                 char            *filename = NULL;
1667                 int              namelen = 0;
1668                 int              rc;
1669
1670                 /* Here is a little hack to avoid sending REINT_RMENTRY to
1671                  * unsupported server, which might crash the server(LU-2730),
1672                  * Because both LVB_TYPE and REINT_RMENTRY will be supported
1673                  * on 2.4, we use OBD_CONNECT_LVB_TYPE to detect whether the
1674                  * server will support REINT_RMENTRY XXX*/
1675                 if (!(exp_connect_flags(sbi->ll_md_exp) & OBD_CONNECT_LVB_TYPE))
1676                         RETURN(-ENOTSUPP);
1677
1678                 filename = ll_getname((const char __user *)arg);
1679                 if (IS_ERR(filename))
1680                         RETURN(PTR_ERR(filename));
1681
1682                 namelen = strlen(filename);
1683                 if (namelen < 1)
1684                         GOTO(out_rmdir, rc = -EINVAL);
1685
1686                 rc = ll_rmdir_entry(inode, filename, namelen);
1687 out_rmdir:
1688                 if (filename)
1689                         ll_putname(filename);
1690                 RETURN(rc);
1691         }
1692         case LL_IOC_RMFID:
1693                 RETURN(ll_rmfid(file, (void __user *)arg));
1694         case LL_IOC_LOV_SWAP_LAYOUTS:
1695                 RETURN(-EPERM);
1696         case IOC_OBD_STATFS:
1697                 RETURN(ll_obd_statfs(inode, (void __user *)arg));
1698         case LL_IOC_LOV_GETSTRIPE:
1699         case LL_IOC_LOV_GETSTRIPE_NEW:
1700         case LL_IOC_MDC_GETINFO_V1:
1701         case LL_IOC_MDC_GETINFO_V2:
1702         case IOC_MDC_GETFILEINFO_V1:
1703         case IOC_MDC_GETFILEINFO_V2:
1704         case IOC_MDC_GETFILESTRIPE: {
1705                 struct ptlrpc_request *request = NULL;
1706                 struct ptlrpc_request *root_request = NULL;
1707                 struct lov_user_md __user *lump;
1708                 struct lov_mds_md *lmm = NULL;
1709                 struct mdt_body *body;
1710                 char *filename = NULL;
1711                 lstat_t __user *statp = NULL;
1712                 lstatx_t __user *stxp = NULL;
1713                 __u64 __user *flagsp = NULL;
1714                 __u32 __user *lmmsizep = NULL;
1715                 struct lu_fid __user *fidp = NULL;
1716                 int lmmsize;
1717
1718                 if (cmd == IOC_MDC_GETFILEINFO_V1 ||
1719                     cmd == IOC_MDC_GETFILEINFO_V2 ||
1720                     cmd == IOC_MDC_GETFILESTRIPE) {
1721                         filename = ll_getname((const char __user *)arg);
1722                         if (IS_ERR(filename))
1723                                 RETURN(PTR_ERR(filename));
1724
1725                         rc = ll_lov_getstripe_ea_info(inode, filename, &lmm,
1726                                                       &lmmsize, &request);
1727                 } else {
1728                         rc = ll_dir_getstripe_default(inode, (void **)&lmm,
1729                                                       &lmmsize, &request,
1730                                                       &root_request, 0);
1731                 }
1732
1733                 if (request) {
1734                         body = req_capsule_server_get(&request->rq_pill,
1735                                                       &RMF_MDT_BODY);
1736                         LASSERT(body != NULL);
1737                 } else {
1738                         GOTO(out_req, rc);
1739                 }
1740
1741                 if (rc == -ENODATA && (cmd == IOC_MDC_GETFILEINFO_V1 ||
1742                                        cmd == LL_IOC_MDC_GETINFO_V1 ||
1743                                        cmd == IOC_MDC_GETFILEINFO_V2 ||
1744                                        cmd == LL_IOC_MDC_GETINFO_V2)) {
1745                         lmmsize = 0;
1746                         rc = 0;
1747                 }
1748
1749                 if (rc < 0)
1750                         GOTO(out_req, rc);
1751
1752                 if (cmd == IOC_MDC_GETFILESTRIPE ||
1753                     cmd == LL_IOC_LOV_GETSTRIPE ||
1754                     cmd == LL_IOC_LOV_GETSTRIPE_NEW) {
1755                         lump = (struct lov_user_md __user *)arg;
1756                 } else if (cmd == IOC_MDC_GETFILEINFO_V1 ||
1757                            cmd == LL_IOC_MDC_GETINFO_V1){
1758                         struct lov_user_mds_data_v1 __user *lmdp;
1759
1760                         lmdp = (struct lov_user_mds_data_v1 __user *)arg;
1761                         statp = &lmdp->lmd_st;
1762                         lump = &lmdp->lmd_lmm;
1763                 } else {
1764                         struct lov_user_mds_data __user *lmdp;
1765
1766                         lmdp = (struct lov_user_mds_data __user *)arg;
1767                         fidp = &lmdp->lmd_fid;
1768                         stxp = &lmdp->lmd_stx;
1769                         flagsp = &lmdp->lmd_flags;
1770                         lmmsizep = &lmdp->lmd_lmmsize;
1771                         lump = &lmdp->lmd_lmm;
1772                 }
1773
1774                 if (lmmsize == 0) {
1775                         /* If the file has no striping then zero out *lump so
1776                          * that the caller isn't confused by garbage. */
1777                         if (clear_user(lump, sizeof(*lump)))
1778                                 GOTO(out_req, rc = -EFAULT);
1779                 } else if (copy_to_user(lump, lmm, lmmsize)) {
1780                         if (copy_to_user(lump, lmm, sizeof(*lump)))
1781                                 GOTO(out_req, rc = -EFAULT);
1782                         rc = -EOVERFLOW;
1783                 }
1784
1785                 if (cmd == IOC_MDC_GETFILEINFO_V1 ||
1786                     cmd == LL_IOC_MDC_GETINFO_V1) {
1787                         lstat_t st = { 0 };
1788
1789                         st.st_dev       = inode->i_sb->s_dev;
1790                         st.st_mode      = body->mbo_mode;
1791                         st.st_nlink     = body->mbo_nlink;
1792                         st.st_uid       = body->mbo_uid;
1793                         st.st_gid       = body->mbo_gid;
1794                         st.st_rdev      = body->mbo_rdev;
1795                         st.st_size      = body->mbo_size;
1796                         st.st_blksize   = PAGE_SIZE;
1797                         st.st_blocks    = body->mbo_blocks;
1798                         st.st_atime     = body->mbo_atime;
1799                         st.st_mtime     = body->mbo_mtime;
1800                         st.st_ctime     = body->mbo_ctime;
1801                         st.st_ino       = cl_fid_build_ino(&body->mbo_fid1,
1802                                                 sbi->ll_flags &
1803                                                 LL_SBI_32BIT_API);
1804
1805                         if (copy_to_user(statp, &st, sizeof(st)))
1806                                 GOTO(out_req, rc = -EFAULT);
1807                 } else if (cmd == IOC_MDC_GETFILEINFO_V2 ||
1808                            cmd == LL_IOC_MDC_GETINFO_V2) {
1809                         lstatx_t stx = { 0 };
1810                         __u64 valid = body->mbo_valid;
1811
1812                         stx.stx_blksize = PAGE_SIZE;
1813                         stx.stx_nlink = body->mbo_nlink;
1814                         stx.stx_uid = body->mbo_uid;
1815                         stx.stx_gid = body->mbo_gid;
1816                         stx.stx_mode = body->mbo_mode;
1817                         stx.stx_ino = cl_fid_build_ino(&body->mbo_fid1,
1818                                                        sbi->ll_flags &
1819                                                        LL_SBI_32BIT_API);
1820                         stx.stx_size = body->mbo_size;
1821                         stx.stx_blocks = body->mbo_blocks;
1822                         stx.stx_atime.tv_sec = body->mbo_atime;
1823                         stx.stx_ctime.tv_sec = body->mbo_ctime;
1824                         stx.stx_mtime.tv_sec = body->mbo_mtime;
1825                         stx.stx_btime.tv_sec = body->mbo_btime;
1826                         stx.stx_rdev_major = MAJOR(body->mbo_rdev);
1827                         stx.stx_rdev_minor = MINOR(body->mbo_rdev);
1828                         stx.stx_dev_major = MAJOR(inode->i_sb->s_dev);
1829                         stx.stx_dev_minor = MINOR(inode->i_sb->s_dev);
1830                         stx.stx_mask |= STATX_BASIC_STATS | STATX_BTIME;
1831
1832                         /*
1833                          * For a striped directory, the size and blocks returned
1834                          * from MDT is not correct.
1835                          * The size and blocks are aggregated by client across
1836                          * all stripes.
1837                          * Thus for a striped directory, do not return the valid
1838                          * FLSIZE and FLBLOCKS flags to the caller.
1839                          * However, this whould be better decided by the MDS
1840                          * instead of the client.
1841                          */
1842                         if (cmd == LL_IOC_MDC_GETINFO_V2 &&
1843                             ll_i2info(inode)->lli_lsm_md != NULL)
1844                                 valid &= ~(OBD_MD_FLSIZE | OBD_MD_FLBLOCKS);
1845
1846                         if (flagsp && copy_to_user(flagsp, &valid,
1847                                                    sizeof(*flagsp)))
1848                                 GOTO(out_req, rc = -EFAULT);
1849
1850                         if (fidp && copy_to_user(fidp, &body->mbo_fid1,
1851                                                  sizeof(*fidp)))
1852                                 GOTO(out_req, rc = -EFAULT);
1853
1854                         if (!(valid & OBD_MD_FLSIZE))
1855                                 stx.stx_mask &= ~STATX_SIZE;
1856                         if (!(valid & OBD_MD_FLBLOCKS))
1857                                 stx.stx_mask &= ~STATX_BLOCKS;
1858
1859                         if (stxp && copy_to_user(stxp, &stx, sizeof(stx)))
1860                                 GOTO(out_req, rc = -EFAULT);
1861
1862                         if (lmmsizep && copy_to_user(lmmsizep, &lmmsize,
1863                                                      sizeof(*lmmsizep)))
1864                                 GOTO(out_req, rc = -EFAULT);
1865                 }
1866
1867                 EXIT;
1868 out_req:
1869                 ptlrpc_req_finished(request);
1870                 ptlrpc_req_finished(root_request);
1871                 if (filename)
1872                         ll_putname(filename);
1873                 return rc;
1874         }
1875         case OBD_IOC_QUOTACTL: {
1876                 struct if_quotactl *qctl;
1877                 int qctl_len = sizeof(*qctl) + LOV_MAXPOOLNAME + 1;
1878
1879                 OBD_ALLOC(qctl, qctl_len);
1880                 if (!qctl)
1881                         RETURN(-ENOMEM);
1882
1883                 if (copy_from_user(qctl, (void __user *)arg, sizeof(*qctl)))
1884                         GOTO(out_quotactl, rc = -EFAULT);
1885
1886                 if (LUSTRE_Q_CMD_IS_POOL(qctl->qc_cmd)) {
1887                         char __user *from = (char __user *)arg +
1888                                         offsetof(typeof(*qctl), qc_poolname);
1889                         if (copy_from_user(qctl->qc_poolname, from,
1890                                            LOV_MAXPOOLNAME + 1))
1891                                 GOTO(out_quotactl, rc = -EFAULT);
1892                 }
1893
1894                 rc = quotactl_ioctl(sbi, qctl);
1895                 if (rc == 0 &&
1896                     copy_to_user((void __user *)arg, qctl, sizeof(*qctl)))
1897                         rc = -EFAULT;
1898
1899 out_quotactl:
1900                 OBD_FREE(qctl, qctl_len);
1901                 RETURN(rc);
1902         }
1903         case OBD_IOC_GETDTNAME:
1904         case OBD_IOC_GETMDNAME:
1905                 RETURN(ll_get_obd_name(inode, cmd, arg));
1906         case LL_IOC_FLUSHCTX:
1907                 RETURN(ll_flush_ctx(inode));
1908         case LL_IOC_GETOBDCOUNT: {
1909                 u32 count, vallen;
1910                 struct obd_export *exp;
1911
1912                 if (copy_from_user(&count, (int __user *)arg, sizeof(int)))
1913                         RETURN(-EFAULT);
1914
1915                 /* get ost count when count is zero, get mdt count otherwise */
1916                 exp = count ? sbi->ll_md_exp : sbi->ll_dt_exp;
1917                 vallen = sizeof(count);
1918                 rc = obd_get_info(NULL, exp, sizeof(KEY_TGT_COUNT),
1919                                   KEY_TGT_COUNT, &vallen, &count);
1920                 if (rc) {
1921                         CERROR("get target count failed: %d\n", rc);
1922                         RETURN(rc);
1923                 }
1924
1925                 if (copy_to_user((int __user *)arg, &count, sizeof(int)))
1926                         RETURN(-EFAULT);
1927
1928                 RETURN(0);
1929         }
1930         case LL_IOC_PATH2FID:
1931                 if (copy_to_user((void __user *)arg, ll_inode2fid(inode),
1932                                      sizeof(struct lu_fid)))
1933                         RETURN(-EFAULT);
1934                 RETURN(0);
1935         case LL_IOC_GET_CONNECT_FLAGS: {
1936                 RETURN(obd_iocontrol(cmd, sbi->ll_md_exp, 0, NULL,
1937                                      (void __user *)arg));
1938         }
1939         case OBD_IOC_FID2PATH:
1940                 RETURN(ll_fid2path(inode, (void __user *)arg));
1941         case LL_IOC_GETPARENT:
1942                 RETURN(ll_getparent(file, (void __user *)arg));
1943         case LL_IOC_FID2MDTIDX: {
1944                 struct obd_export *exp = ll_i2mdexp(inode);
1945                 struct lu_fid     fid;
1946                 __u32             index;
1947
1948                 if (copy_from_user(&fid, (const struct lu_fid __user *)arg,
1949                                    sizeof(fid)))
1950                         RETURN(-EFAULT);
1951
1952                 /* Call mdc_iocontrol */
1953                 rc = obd_iocontrol(LL_IOC_FID2MDTIDX, exp, sizeof(fid), &fid,
1954                                    (__u32 __user *)&index);
1955                 if (rc != 0)
1956                         RETURN(rc);
1957
1958                 RETURN(index);
1959         }
1960         case LL_IOC_HSM_REQUEST: {
1961                 struct hsm_user_request *hur;
1962                 ssize_t                  totalsize;
1963
1964                 OBD_ALLOC_PTR(hur);
1965                 if (hur == NULL)
1966                         RETURN(-ENOMEM);
1967
1968                 /* We don't know the true size yet; copy the fixed-size part */
1969                 if (copy_from_user(hur, (void __user *)arg, sizeof(*hur))) {
1970                         OBD_FREE_PTR(hur);
1971                         RETURN(-EFAULT);
1972                 }
1973
1974                 /* Compute the whole struct size */
1975                 totalsize = hur_len(hur);
1976                 OBD_FREE_PTR(hur);
1977                 if (totalsize < 0)
1978                         RETURN(-E2BIG);
1979
1980                 /* Final size will be more than double totalsize */
1981                 if (totalsize >= MDS_MAXREQSIZE / 3)
1982                         RETURN(-E2BIG);
1983
1984                 OBD_ALLOC_LARGE(hur, totalsize);
1985                 if (hur == NULL)
1986                         RETURN(-ENOMEM);
1987
1988                 /* Copy the whole struct */
1989                 if (copy_from_user(hur, (void __user *)arg, totalsize))
1990                         GOTO(out_hur, rc = -EFAULT);
1991
1992                 if (hur->hur_request.hr_action == HUA_RELEASE) {
1993                         const struct lu_fid *fid;
1994                         struct inode *f;
1995                         int i;
1996
1997                         for (i = 0; i < hur->hur_request.hr_itemcount; i++) {
1998                                 fid = &hur->hur_user_item[i].hui_fid;
1999                                 f = search_inode_for_lustre(inode->i_sb, fid);
2000                                 if (IS_ERR(f)) {
2001                                         rc = PTR_ERR(f);
2002                                         break;
2003                                 }
2004
2005                                 rc = ll_hsm_release(f);
2006                                 iput(f);
2007                                 if (rc != 0)
2008                                         break;
2009                         }
2010                 } else {
2011                         rc = obd_iocontrol(cmd, ll_i2mdexp(inode), totalsize,
2012                                            hur, NULL);
2013                 }
2014
2015 out_hur:
2016                 OBD_FREE_LARGE(hur, totalsize);
2017
2018                 RETURN(rc);
2019         }
2020         case LL_IOC_HSM_PROGRESS: {
2021                 struct hsm_progress_kernel      hpk;
2022                 struct hsm_progress             hp;
2023
2024                 if (copy_from_user(&hp, (void __user *)arg, sizeof(hp)))
2025                         RETURN(-EFAULT);
2026
2027                 hpk.hpk_fid = hp.hp_fid;
2028                 hpk.hpk_cookie = hp.hp_cookie;
2029                 hpk.hpk_extent = hp.hp_extent;
2030                 hpk.hpk_flags = hp.hp_flags;
2031                 hpk.hpk_errval = hp.hp_errval;
2032                 hpk.hpk_data_version = 0;
2033
2034                 /* File may not exist in Lustre; all progress
2035                  * reported to Lustre root */
2036                 rc = obd_iocontrol(cmd, sbi->ll_md_exp, sizeof(hpk), &hpk,
2037                                    NULL);
2038                 RETURN(rc);
2039         }
2040         case LL_IOC_HSM_CT_START:
2041                 if (!cfs_capable(CFS_CAP_SYS_ADMIN))
2042                         RETURN(-EPERM);
2043
2044                 rc = copy_and_ct_start(cmd, sbi->ll_md_exp,
2045                                        (struct lustre_kernelcomm __user *)arg);
2046                 RETURN(rc);
2047
2048         case LL_IOC_HSM_COPY_START: {
2049                 struct hsm_copy *copy;
2050                 int              rc;
2051
2052                 OBD_ALLOC_PTR(copy);
2053                 if (copy == NULL)
2054                         RETURN(-ENOMEM);
2055                 if (copy_from_user(copy, (char __user *)arg, sizeof(*copy))) {
2056                         OBD_FREE_PTR(copy);
2057                         RETURN(-EFAULT);
2058                 }
2059
2060                 rc = ll_ioc_copy_start(inode->i_sb, copy);
2061                 if (copy_to_user((char __user *)arg, copy, sizeof(*copy)))
2062                         rc = -EFAULT;
2063
2064                 OBD_FREE_PTR(copy);
2065                 RETURN(rc);
2066         }
2067         case LL_IOC_HSM_COPY_END: {
2068                 struct hsm_copy *copy;
2069                 int              rc;
2070
2071                 OBD_ALLOC_PTR(copy);
2072                 if (copy == NULL)
2073                         RETURN(-ENOMEM);
2074                 if (copy_from_user(copy, (char __user *)arg, sizeof(*copy))) {
2075                         OBD_FREE_PTR(copy);
2076                         RETURN(-EFAULT);
2077                 }
2078
2079                 rc = ll_ioc_copy_end(inode->i_sb, copy);
2080                 if (copy_to_user((char __user *)arg, copy, sizeof(*copy)))
2081                         rc = -EFAULT;
2082
2083                 OBD_FREE_PTR(copy);
2084                 RETURN(rc);
2085         }
2086         case LL_IOC_MIGRATE: {
2087                 struct lmv_user_md *lum;
2088                 char *buf = NULL;
2089                 int len;
2090                 char *filename;
2091                 int namelen = 0;
2092                 int rc;
2093
2094                 rc = obd_ioctl_getdata(&buf, &len, (void __user *)arg);
2095                 if (rc)
2096                         RETURN(rc);
2097
2098                 data = (struct obd_ioctl_data *)buf;
2099                 if (data->ioc_inlbuf1 == NULL || data->ioc_inlbuf2 == NULL ||
2100                     data->ioc_inllen1 == 0 || data->ioc_inllen2 == 0)
2101                         GOTO(migrate_free, rc = -EINVAL);
2102
2103                 filename = data->ioc_inlbuf1;
2104                 namelen = data->ioc_inllen1;
2105
2106                 if (namelen < 1 || namelen != strlen(filename) + 1) {
2107                         CDEBUG(D_INFO, "IOC_MDC_LOOKUP missing filename\n");
2108                         GOTO(migrate_free, rc = -EINVAL);
2109                 }
2110
2111                 lum = (struct lmv_user_md *)data->ioc_inlbuf2;
2112                 if (lum->lum_magic != LMV_USER_MAGIC &&
2113                     lum->lum_magic != LMV_USER_MAGIC_SPECIFIC) {
2114                         rc = -EINVAL;
2115                         CERROR("%s: wrong lum magic %x: rc = %d\n",
2116                                filename, lum->lum_magic, rc);
2117                         GOTO(migrate_free, rc);
2118                 }
2119
2120                 rc = ll_migrate(inode, file, lum, filename);
2121 migrate_free:
2122                 OBD_FREE_LARGE(buf, len);
2123
2124                 RETURN(rc);
2125         }
2126         case FS_IOC_FSGETXATTR:
2127                 RETURN(ll_ioctl_fsgetxattr(inode, cmd, arg));
2128         case FS_IOC_FSSETXATTR:
2129                 RETURN(ll_ioctl_fssetxattr(inode, cmd, arg));
2130         case LL_IOC_PCC_DETACH_BY_FID: {
2131                 struct lu_pcc_detach_fid *detach;
2132                 struct lu_fid *fid;
2133                 struct inode *inode2;
2134                 unsigned long ino;
2135
2136                 OBD_ALLOC_PTR(detach);
2137                 if (detach == NULL)
2138                         RETURN(-ENOMEM);
2139
2140                 if (copy_from_user(detach,
2141                                    (const struct lu_pcc_detach_fid __user *)arg,
2142                                    sizeof(*detach)))
2143                         GOTO(out_detach, rc = -EFAULT);
2144
2145                 fid = &detach->pccd_fid;
2146                 ino = cl_fid_build_ino(fid, ll_need_32bit_api(sbi));
2147                 inode2 = ilookup5(inode->i_sb, ino, ll_test_inode_by_fid, fid);
2148                 if (inode2 == NULL)
2149                         /* Target inode is not in inode cache, and PCC file
2150                          * has aleady released, return immdiately.
2151                          */
2152                         GOTO(out_detach, rc = 0);
2153
2154                 if (!S_ISREG(inode2->i_mode))
2155                         GOTO(out_iput, rc = -EINVAL);
2156
2157                 if (!inode_owner_or_capable(inode2))
2158                         GOTO(out_iput, rc = -EPERM);
2159
2160                 rc = pcc_ioctl_detach(inode2, detach->pccd_opt);
2161 out_iput:
2162                 iput(inode2);
2163 out_detach:
2164                 OBD_FREE_PTR(detach);
2165                 RETURN(rc);
2166         }
2167 #ifdef HAVE_LUSTRE_CRYPTO
2168         case LL_IOC_SET_ENCRYPTION_POLICY:
2169                 if (!ll_sbi_has_encrypt(ll_i2sbi(inode)))
2170                         return -EOPNOTSUPP;
2171                 return llcrypt_ioctl_set_policy(file, (const void __user *)arg);
2172         case LL_IOC_GET_ENCRYPTION_POLICY_EX:
2173                 if (!ll_sbi_has_encrypt(ll_i2sbi(inode)))
2174                         return -EOPNOTSUPP;
2175                 return llcrypt_ioctl_get_policy_ex(file, (void __user *)arg);
2176         case LL_IOC_ADD_ENCRYPTION_KEY:
2177                 if (!ll_sbi_has_encrypt(ll_i2sbi(inode)))
2178                         return -EOPNOTSUPP;
2179                 return llcrypt_ioctl_add_key(file, (void __user *)arg);
2180         case LL_IOC_REMOVE_ENCRYPTION_KEY:
2181                 if (!ll_sbi_has_encrypt(ll_i2sbi(inode)))
2182                         return -EOPNOTSUPP;
2183                 return llcrypt_ioctl_remove_key(file, (void __user *)arg);
2184         case LL_IOC_REMOVE_ENCRYPTION_KEY_ALL_USERS:
2185                 if (!ll_sbi_has_encrypt(ll_i2sbi(inode)))
2186                         return -EOPNOTSUPP;
2187                 return llcrypt_ioctl_remove_key_all_users(file,
2188                                                           (void __user *)arg);
2189         case LL_IOC_GET_ENCRYPTION_KEY_STATUS:
2190                 if (!ll_sbi_has_encrypt(ll_i2sbi(inode)))
2191                         return -EOPNOTSUPP;
2192                 return llcrypt_ioctl_get_key_status(file, (void __user *)arg);
2193 #endif
2194         default:
2195                 RETURN(obd_iocontrol(cmd, sbi->ll_dt_exp, 0, NULL,
2196                                      (void __user *)arg));
2197         }
2198 }
2199
2200 static loff_t ll_dir_seek(struct file *file, loff_t offset, int origin)
2201 {
2202         struct inode *inode = file->f_mapping->host;
2203         struct ll_file_data *fd = file->private_data;
2204         struct ll_sb_info *sbi = ll_i2sbi(inode);
2205         int api32 = ll_need_32bit_api(sbi);
2206         loff_t ret = -EINVAL;
2207         ENTRY;
2208
2209         inode_lock(inode);
2210         switch (origin) {
2211         case SEEK_SET:
2212                 break;
2213         case SEEK_CUR:
2214                 offset += file->f_pos;
2215                 break;
2216         case SEEK_END:
2217                 if (offset > 0)
2218                         GOTO(out, ret);
2219                 if (api32)
2220                         offset += LL_DIR_END_OFF_32BIT;
2221                 else
2222                         offset += LL_DIR_END_OFF;
2223                 break;
2224         default:
2225                 GOTO(out, ret);
2226         }
2227
2228         if (offset >= 0 &&
2229             ((api32 && offset <= LL_DIR_END_OFF_32BIT) ||
2230              (!api32 && offset <= LL_DIR_END_OFF))) {
2231                 if (offset != file->f_pos) {
2232                         if ((api32 && offset == LL_DIR_END_OFF_32BIT) ||
2233                             (!api32 && offset == LL_DIR_END_OFF))
2234                                 fd->lfd_pos = MDS_DIR_END_OFF;
2235                         else if (api32 && sbi->ll_flags & LL_SBI_64BIT_HASH)
2236                                 fd->lfd_pos = offset << 32;
2237                         else
2238                                 fd->lfd_pos = offset;
2239                         file->f_pos = offset;
2240                         file->f_version = 0;
2241                 }
2242                 ret = offset;
2243         }
2244         GOTO(out, ret);
2245
2246 out:
2247         inode_unlock(inode);
2248         return ret;
2249 }
2250
2251 static int ll_dir_open(struct inode *inode, struct file *file)
2252 {
2253         ENTRY;
2254         RETURN(ll_file_open(inode, file));
2255 }
2256
2257 static int ll_dir_release(struct inode *inode, struct file *file)
2258 {
2259         ENTRY;
2260         RETURN(ll_file_release(inode, file));
2261 }
2262
2263 const struct file_operations ll_dir_operations = {
2264         .llseek         = ll_dir_seek,
2265         .open           = ll_dir_open,
2266         .release        = ll_dir_release,
2267         .read           = generic_read_dir,
2268 #ifdef HAVE_DIR_CONTEXT
2269         .iterate_shared = ll_iterate,
2270 #else
2271         .readdir        = ll_readdir,
2272 #endif
2273         .unlocked_ioctl = ll_dir_ioctl,
2274         .fsync          = ll_fsync,
2275 };