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