Whamcloud - gitweb
Revert "LU-1756 kernel: cleanup lustre_compat25.h"
[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, 2012, Whamcloud, Inc.
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 <asm/uaccess.h>
46 #include <linux/buffer_head.h>   // for wait_on_buffer
47 #include <linux/pagevec.h>
48
49 #define DEBUG_SUBSYSTEM S_LLITE
50
51 #include <lustre/lustre_idl.h>
52 #include <obd_support.h>
53 #include <obd_class.h>
54 #include <lustre_lib.h>
55 #include <lustre/lustre_idl.h>
56 #include <lustre_lite.h>
57 #include <lustre_dlm.h>
58 #include <lustre_fid.h>
59 #include "llite_internal.h"
60
61 /*
62  * (new) readdir implementation overview.
63  *
64  * Original lustre readdir implementation cached exact copy of raw directory
65  * pages on the client. These pages were indexed in client page cache by
66  * logical offset in the directory file. This design, while very simple and
67  * intuitive had some inherent problems:
68  *
69  *     . it implies that byte offset to the directory entry serves as a
70  *     telldir(3)/seekdir(3) cookie, but that offset is not stable: in
71  *     ext3/htree directory entries may move due to splits, and more
72  *     importantly,
73  *
74  *     . it is incompatible with the design of split directories for cmd3,
75  *     that assumes that names are distributed across nodes based on their
76  *     hash, and so readdir should be done in hash order.
77  *
78  * New readdir implementation does readdir in hash order, and uses hash of a
79  * file name as a telldir/seekdir cookie. This led to number of complications:
80  *
81  *     . hash is not unique, so it cannot be used to index cached directory
82  *     pages on the client (note, that it requires a whole pageful of hash
83  *     collided entries to cause two pages to have identical hashes);
84  *
85  *     . hash is not unique, so it cannot, strictly speaking, be used as an
86  *     entry cookie. ext3/htree has the same problem and lustre implementation
87  *     mimics their solution: seekdir(hash) positions directory at the first
88  *     entry with the given hash.
89  *
90  * Client side.
91  *
92  * 0. caching
93  *
94  * Client caches directory pages using hash of the first entry as an index. As
95  * noted above hash is not unique, so this solution doesn't work as is:
96  * special processing is needed for "page hash chains" (i.e., sequences of
97  * pages filled with entries all having the same hash value).
98  *
99  * First, such chains have to be detected. To this end, server returns to the
100  * client the hash of the first entry on the page next to one returned. When
101  * client detects that this hash is the same as hash of the first entry on the
102  * returned page, page hash collision has to be handled. Pages in the
103  * hash chain, except first one, are termed "overflow pages".
104  *
105  * Solution to index uniqueness problem is to not cache overflow
106  * pages. Instead, when page hash collision is detected, all overflow pages
107  * from emerging chain are immediately requested from the server and placed in
108  * a special data structure (struct ll_dir_chain). This data structure is used
109  * by ll_readdir() to process entries from overflow pages. When readdir
110  * invocation finishes, overflow pages are discarded. If page hash collision
111  * chain weren't completely processed, next call to readdir will again detect
112  * page hash collision, again read overflow pages in, process next portion of
113  * entries and again discard the pages. This is not as wasteful as it looks,
114  * because, given reasonable hash, page hash collisions are extremely rare.
115  *
116  * 1. directory positioning
117  *
118  * When seekdir(hash) is called, original
119  *
120  *
121  *
122  *
123  *
124  *
125  *
126  *
127  * Server.
128  *
129  * identification of and access to overflow pages
130  *
131  * page format
132  *
133  * Page in MDS_READPAGE RPC is packed in LU_PAGE_SIZE, and each page contains
134  * a header lu_dirpage which describes the start/end hash, and whether this
135  * page is empty (contains no dir entry) or hash collide with next page.
136  * After client receives reply, several pages will be integrated into dir page
137  * in CFS_PAGE_SIZE (if CFS_PAGE_SIZE greater than LU_PAGE_SIZE), and the
138  * lu_dirpage for this integrated page will be adjusted.
139  *
140  */
141
142 /* returns the page unlocked, but with a reference */
143 static int ll_dir_filler(void *_hash, struct page *page0)
144 {
145         struct inode *inode = page0->mapping->host;
146         int hash64 = ll_i2sbi(inode)->ll_flags & LL_SBI_64BIT_HASH;
147         struct obd_export *exp = ll_i2sbi(inode)->ll_md_exp;
148         struct ptlrpc_request *request;
149         struct mdt_body *body;
150         struct md_op_data *op_data;
151         __u64 hash = *((__u64 *)_hash);
152         struct page **page_pool;
153         struct page *page;
154 #ifndef HAVE_ADD_TO_PAGE_CACHE_LRU
155         struct pagevec lru_pvec;
156 #endif
157         struct lu_dirpage *dp;
158         int max_pages = ll_i2sbi(inode)->ll_md_brw_size >> CFS_PAGE_SHIFT;
159         int nrdpgs = 0; /* number of pages read actually */
160         int npages;
161         int i;
162         int rc;
163         ENTRY;
164
165         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p) hash "LPU64"\n",
166                inode->i_ino, inode->i_generation, inode, hash);
167
168         LASSERT(max_pages > 0 && max_pages <= PTLRPC_MAX_BRW_PAGES);
169
170         OBD_ALLOC(page_pool, sizeof(page) * max_pages);
171         if (page_pool != NULL) {
172                 page_pool[0] = page0;
173         } else {
174                 page_pool = &page0;
175                 max_pages = 1;
176         }
177         for (npages = 1; npages < max_pages; npages++) {
178                 page = page_cache_alloc_cold(inode->i_mapping);
179                 if (!page)
180                         break;
181                 page_pool[npages] = page;
182         }
183
184         op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL, 0, 0,
185                                      LUSTRE_OPC_ANY, NULL);
186         op_data->op_npages = npages;
187         op_data->op_offset = hash;
188         rc = md_readpage(exp, op_data, page_pool, &request);
189         ll_finish_md_op_data(op_data);
190         if (rc == 0) {
191                 body = req_capsule_server_get(&request->rq_pill, &RMF_MDT_BODY);
192                 /* Checked by mdc_readpage() */
193                 LASSERT(body != NULL);
194
195                 if (body->valid & OBD_MD_FLSIZE)
196                         cl_isize_write(inode, body->size);
197
198                 nrdpgs = (request->rq_bulk->bd_nob_transferred+CFS_PAGE_SIZE-1)
199                          >> CFS_PAGE_SHIFT;
200                 SetPageUptodate(page0);
201         }
202         unlock_page(page0);
203         ptlrpc_req_finished(request);
204
205         CDEBUG(D_VFSTRACE, "read %d/%d pages\n", nrdpgs, npages);
206
207         ll_pagevec_init(&lru_pvec, 0);
208         for (i = 1; i < npages; i++) {
209                 unsigned long offset;
210                 int ret;
211
212                 page = page_pool[i];
213
214                 if (rc < 0 || i >= nrdpgs) {
215                         page_cache_release(page);
216                         continue;
217                 }
218
219                 SetPageUptodate(page);
220
221                 dp = cfs_kmap(page);
222                 hash = le64_to_cpu(dp->ldp_hash_start);
223                 cfs_kunmap(page);
224
225                 offset = hash_x_index(hash, hash64);
226
227                 prefetchw(&page->flags);
228                 ret = ll_add_to_page_cache_lru(page, inode->i_mapping, offset,
229                                                GFP_KERNEL);
230                 if (ret == 0) {
231                         unlock_page(page);
232                         if (ll_pagevec_add(&lru_pvec, page) == 0)
233                                 ll_pagevec_lru_add_file(&lru_pvec);
234                 } else {
235                         CDEBUG(D_VFSTRACE, "page %lu add to page cache failed:"
236                                " %d\n", offset, ret);
237                 }
238                 page_cache_release(page);
239         }
240         ll_pagevec_lru_add_file(&lru_pvec);
241
242         if (page_pool != &page0)
243                 OBD_FREE(page_pool, sizeof(struct page *) * max_pages);
244         EXIT;
245         return rc;
246 }
247
248 static void ll_check_page(struct inode *dir, struct page *page)
249 {
250         /* XXX: check page format later */
251         SetPageChecked(page);
252 }
253
254 void ll_release_page(struct page *page, int remove)
255 {
256         kunmap(page);
257         if (remove) {
258                 lock_page(page);
259                 if (likely(page->mapping != NULL))
260                         truncate_complete_page(page->mapping, page);
261                 unlock_page(page);
262         }
263         page_cache_release(page);
264 }
265
266 /*
267  * Find, kmap and return page that contains given hash.
268  */
269 static struct page *ll_dir_page_locate(struct inode *dir, __u64 *hash,
270                                        __u64 *start, __u64 *end)
271 {
272         int hash64 = ll_i2sbi(dir)->ll_flags & LL_SBI_64BIT_HASH;
273         struct address_space *mapping = dir->i_mapping;
274         /*
275          * Complement of hash is used as an index so that
276          * radix_tree_gang_lookup() can be used to find a page with starting
277          * hash _smaller_ than one we are looking for.
278          */
279         unsigned long offset = hash_x_index(*hash, hash64);
280         struct page *page;
281         int found;
282
283         TREE_READ_LOCK_IRQ(mapping);
284         found = radix_tree_gang_lookup(&mapping->page_tree,
285                                        (void **)&page, offset, 1);
286         if (found > 0) {
287                 struct lu_dirpage *dp;
288
289                 page_cache_get(page);
290                 TREE_READ_UNLOCK_IRQ(mapping);
291                 /*
292                  * In contrast to find_lock_page() we are sure that directory
293                  * page cannot be truncated (while DLM lock is held) and,
294                  * hence, can avoid restart.
295                  *
296                  * In fact, page cannot be locked here at all, because
297                  * ll_dir_filler() does synchronous io.
298                  */
299                 wait_on_page(page);
300                 if (PageUptodate(page)) {
301                         dp = cfs_kmap(page);
302                         if (BITS_PER_LONG == 32 && hash64) {
303                                 *start = le64_to_cpu(dp->ldp_hash_start) >> 32;
304                                 *end   = le64_to_cpu(dp->ldp_hash_end) >> 32;
305                                 *hash  = *hash >> 32;
306                         } else {
307                                 *start = le64_to_cpu(dp->ldp_hash_start);
308                                 *end   = le64_to_cpu(dp->ldp_hash_end);
309                         }
310                         LASSERTF(*start <= *hash, "start = "LPX64",end = "
311                                  LPX64",hash = "LPX64"\n", *start, *end, *hash);
312                         CDEBUG(D_VFSTRACE, "page %lu [%llu %llu], hash "LPU64"\n",
313                                offset, *start, *end, *hash);
314                         if (*hash > *end) {
315                                 ll_release_page(page, 0);
316                                 page = NULL;
317                         } else if (*end != *start && *hash == *end) {
318                                 /*
319                                  * upon hash collision, remove this page,
320                                  * otherwise put page reference, and
321                                  * ll_get_dir_page() will issue RPC to fetch
322                                  * the page we want.
323                                  */
324                                 ll_release_page(page,
325                                     le32_to_cpu(dp->ldp_flags) & LDF_COLLIDE);
326                                 page = NULL;
327                         }
328                 } else {
329                         page_cache_release(page);
330                         page = ERR_PTR(-EIO);
331                 }
332
333         } else {
334                 TREE_READ_UNLOCK_IRQ(mapping);
335                 page = NULL;
336         }
337         return page;
338 }
339
340 struct page *ll_get_dir_page(struct inode *dir, __u64 hash,
341                              struct ll_dir_chain *chain)
342 {
343         ldlm_policy_data_t policy = {.l_inodebits = {MDS_INODELOCK_UPDATE} };
344         struct address_space *mapping = dir->i_mapping;
345         struct lustre_handle lockh;
346         struct lu_dirpage *dp;
347         struct page *page;
348         ldlm_mode_t mode;
349         int rc;
350         __u64 start = 0;
351         __u64 end = 0;
352         __u64 lhash = hash;
353         struct ll_inode_info *lli = ll_i2info(dir);
354         int hash64 = ll_i2sbi(dir)->ll_flags & LL_SBI_64BIT_HASH;
355
356         mode = LCK_PR;
357         rc = md_lock_match(ll_i2sbi(dir)->ll_md_exp, LDLM_FL_BLOCK_GRANTED,
358                            ll_inode2fid(dir), LDLM_IBITS, &policy, mode, &lockh);
359         if (!rc) {
360                 struct ldlm_enqueue_info einfo = { LDLM_IBITS, mode,
361                        ll_md_blocking_ast, ldlm_completion_ast,
362                        NULL, NULL, dir };
363                 struct lookup_intent it = { .it_op = IT_READDIR };
364                 struct ptlrpc_request *request;
365                 struct md_op_data *op_data;
366
367                 op_data = ll_prep_md_op_data(NULL, dir, NULL, NULL, 0, 0,
368                                              LUSTRE_OPC_ANY, NULL);
369                 if (IS_ERR(op_data))
370                         return (void *)op_data;
371
372                 rc = md_enqueue(ll_i2sbi(dir)->ll_md_exp, &einfo, &it,
373                                 op_data, &lockh, NULL, 0, NULL, 0);
374
375                 ll_finish_md_op_data(op_data);
376
377                 request = (struct ptlrpc_request *)it.d.lustre.it_data;
378                 if (request)
379                         ptlrpc_req_finished(request);
380                 if (rc < 0) {
381                         CERROR("lock enqueue: "DFID" at "LPU64": rc %d\n",
382                                PFID(ll_inode2fid(dir)), hash, rc);
383                         return ERR_PTR(rc);
384                 }
385         } else {
386                 /* for cross-ref object, l_ast_data of the lock may not be set,
387                  * we reset it here */
388                 md_set_lock_data(ll_i2sbi(dir)->ll_md_exp, &lockh.cookie,
389                                  dir, NULL);
390         }
391         ldlm_lock_dump_handle(D_OTHER, &lockh);
392
393         cfs_mutex_lock(&lli->lli_readdir_mutex);
394         page = ll_dir_page_locate(dir, &lhash, &start, &end);
395         if (IS_ERR(page)) {
396                 CERROR("dir page locate: "DFID" at "LPU64": rc %ld\n",
397                        PFID(ll_inode2fid(dir)), lhash, PTR_ERR(page));
398                 GOTO(out_unlock, page);
399         } else if (page != NULL) {
400                 /*
401                  * XXX nikita: not entirely correct handling of a corner case:
402                  * suppose hash chain of entries with hash value HASH crosses
403                  * border between pages P0 and P1. First both P0 and P1 are
404                  * cached, seekdir() is called for some entry from the P0 part
405                  * of the chain. Later P0 goes out of cache. telldir(HASH)
406                  * happens and finds P1, as it starts with matching hash
407                  * value. Remaining entries from P0 part of the chain are
408                  * skipped. (Is that really a bug?)
409                  *
410                  * Possible solutions: 0. don't cache P1 is such case, handle
411                  * it as an "overflow" page. 1. invalidate all pages at
412                  * once. 2. use HASH|1 as an index for P1.
413                  */
414                 GOTO(hash_collision, page);
415         }
416
417         page = read_cache_page(mapping, hash_x_index(hash, hash64),
418                                ll_dir_filler, &lhash);
419         if (IS_ERR(page)) {
420                 CERROR("read cache page: "DFID" at "LPU64": rc %ld\n",
421                        PFID(ll_inode2fid(dir)), hash, PTR_ERR(page));
422                 GOTO(out_unlock, page);
423         }
424
425         wait_on_page(page);
426         (void)kmap(page);
427         if (!PageUptodate(page)) {
428                 CERROR("page not updated: "DFID" at "LPU64": rc %d\n",
429                        PFID(ll_inode2fid(dir)), hash, -5);
430                 goto fail;
431         }
432         if (!PageChecked(page))
433                 ll_check_page(dir, page);
434         if (PageError(page)) {
435                 CERROR("page error: "DFID" at "LPU64": rc %d\n",
436                        PFID(ll_inode2fid(dir)), hash, -5);
437                 goto fail;
438         }
439 hash_collision:
440         dp = page_address(page);
441         if (BITS_PER_LONG == 32 && hash64) {
442                 start = le64_to_cpu(dp->ldp_hash_start) >> 32;
443                 end   = le64_to_cpu(dp->ldp_hash_end) >> 32;
444                 lhash = hash >> 32;
445         } else {
446                 start = le64_to_cpu(dp->ldp_hash_start);
447                 end   = le64_to_cpu(dp->ldp_hash_end);
448                 lhash = hash;
449         }
450         if (end == start) {
451                 LASSERT(start == lhash);
452                 CWARN("Page-wide hash collision: "LPU64"\n", end);
453                 if (BITS_PER_LONG == 32 && hash64)
454                         CWARN("Real page-wide hash collision at ["LPU64" "LPU64
455                               "] with hash "LPU64"\n",
456                               le64_to_cpu(dp->ldp_hash_start),
457                               le64_to_cpu(dp->ldp_hash_end), hash);
458                 /*
459                  * Fetch whole overflow chain...
460                  *
461                  * XXX not yet.
462                  */
463                 goto fail;
464         }
465 out_unlock:
466         cfs_mutex_unlock(&lli->lli_readdir_mutex);
467         ldlm_lock_decref(&lockh, mode);
468         return page;
469
470 fail:
471         ll_release_page(page, 1);
472         page = ERR_PTR(-EIO);
473         goto out_unlock;
474 }
475
476 int ll_dir_read(struct inode *inode, __u64 *_pos, void *cookie,
477                 filldir_t filldir)
478 {
479         struct ll_inode_info *info       = ll_i2info(inode);
480         struct ll_sb_info    *sbi        = ll_i2sbi(inode);
481         __u64                 pos        = *_pos;
482         int                   api32      = ll_need_32bit_api(sbi);
483         int                   hash64     = sbi->ll_flags & LL_SBI_64BIT_HASH;
484         struct page          *page;
485         struct ll_dir_chain   chain;
486         int                   done = 0;
487         int                   rc = 0;
488         ENTRY;
489
490         ll_dir_chain_init(&chain);
491
492         page = ll_get_dir_page(inode, pos, &chain);
493
494         while (rc == 0 && !done) {
495                 struct lu_dirpage *dp;
496                 struct lu_dirent  *ent;
497
498                 if (!IS_ERR(page)) {
499                         /*
500                          * If page is empty (end of directory is reached),
501                          * use this value.
502                          */
503                         __u64 hash = MDS_DIR_END_OFF;
504                         __u64 next;
505
506                         dp = page_address(page);
507                         for (ent = lu_dirent_start(dp); ent != NULL && !done;
508                              ent = lu_dirent_next(ent)) {
509                                 __u16          type;
510                                 int            namelen;
511                                 struct lu_fid  fid;
512                                 __u64          lhash;
513                                 __u64          ino;
514
515                                 /*
516                                  * XXX: implement correct swabbing here.
517                                  */
518
519                                 hash = le64_to_cpu(ent->lde_hash);
520                                 if (hash < pos)
521                                         /*
522                                          * Skip until we find target hash
523                                          * value.
524                                          */
525                                         continue;
526
527                                 namelen = le16_to_cpu(ent->lde_namelen);
528                                 if (namelen == 0)
529                                         /*
530                                          * Skip dummy record.
531                                          */
532                                         continue;
533
534                                 if (api32 && hash64)
535                                         lhash = hash >> 32;
536                                 else
537                                         lhash = hash;
538                                 fid_le_to_cpu(&fid, &ent->lde_fid);
539                                 ino = cl_fid_build_ino(&fid, api32);
540                                 type = ll_dirent_type_get(ent);
541                                 /* For 'll_nfs_get_name_filldir()', it will try
542                                  * to access the 'ent' through its 'lde_name',
543                                  * so the parameter 'name' for 'filldir()' must
544                                  * be part of the 'ent'. */
545                                 done = filldir(cookie, ent->lde_name, namelen,
546                                                lhash, ino, type);
547                         }
548                         next = le64_to_cpu(dp->ldp_hash_end);
549                         if (!done) {
550                                 pos = next;
551                                 if (pos == MDS_DIR_END_OFF) {
552                                         /*
553                                          * End of directory reached.
554                                          */
555                                         done = 1;
556                                         ll_release_page(page, 0);
557                                 } else if (1 /* chain is exhausted*/) {
558                                         /*
559                                          * Normal case: continue to the next
560                                          * page.
561                                          */
562                                         ll_release_page(page,
563                                             le32_to_cpu(dp->ldp_flags) &
564                                                         LDF_COLLIDE);
565                                         next = pos;
566                                         page = ll_get_dir_page(inode, pos,
567                                                                &chain);
568                                 } else {
569                                         /*
570                                          * go into overflow page.
571                                          */
572                                         LASSERT(le32_to_cpu(dp->ldp_flags) &
573                                                 LDF_COLLIDE);
574                                         ll_release_page(page, 1);
575                                 }
576                         } else {
577                                 pos = hash;
578                                 ll_release_page(page, 0);
579                         }
580                 } else {
581                         rc = PTR_ERR(page);
582                         CERROR("error reading dir "DFID" at %lu: rc %d\n",
583                                PFID(&info->lli_fid), (unsigned long)pos, rc);
584                 }
585         }
586
587         *_pos = pos;
588         ll_dir_chain_fini(&chain);
589         RETURN(rc);
590 }
591
592 static int ll_readdir(struct file *filp, void *cookie, filldir_t filldir)
593 {
594         struct inode            *inode  = filp->f_dentry->d_inode;
595         struct ll_file_data     *lfd    = LUSTRE_FPRIVATE(filp);
596         struct ll_sb_info       *sbi    = ll_i2sbi(inode);
597         __u64                   pos     = lfd->lfd_pos;
598         int                     hash64  = sbi->ll_flags & LL_SBI_64BIT_HASH;
599         int                     api32   = ll_need_32bit_api(sbi);
600         int                     rc;
601         ENTRY;
602
603         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p) pos %lu/%llu "
604                " 32bit_api %d\n", inode->i_ino, inode->i_generation,
605                inode, (unsigned long)pos, i_size_read(inode), api32);
606
607         if (pos == MDS_DIR_END_OFF)
608                 /*
609                  * end-of-file.
610                  */
611                 GOTO(out, rc = 0);
612
613         rc = ll_dir_read(inode, &pos, cookie, filldir);
614         lfd->lfd_pos = pos;
615         if (pos == MDS_DIR_END_OFF) {
616                 if (api32)
617                         filp->f_pos = LL_DIR_END_OFF_32BIT;
618                 else
619                         filp->f_pos = LL_DIR_END_OFF;
620         } else {
621                 if (api32 && hash64)
622                         filp->f_pos = pos >> 32;
623                 else
624                         filp->f_pos = pos;
625         }
626         filp->f_version = inode->i_version;
627         touch_atime(filp->f_vfsmnt, filp->f_dentry);
628
629 out:
630         if (!rc)
631                 ll_stats_ops_tally(sbi, LPROC_LL_READDIR, 1);
632
633         RETURN(rc);
634 }
635
636 int ll_send_mgc_param(struct obd_export *mgc, char *string)
637 {
638         struct mgs_send_param *msp;
639         int rc = 0;
640
641         OBD_ALLOC_PTR(msp);
642         if (!msp)
643                 return -ENOMEM;
644
645         strncpy(msp->mgs_param, string, MGS_PARAM_MAXLEN);
646         rc = obd_set_info_async(NULL, mgc, sizeof(KEY_SET_INFO), KEY_SET_INFO,
647                                 sizeof(struct mgs_send_param), msp, NULL);
648         if (rc)
649                 CERROR("Failed to set parameter: %d\n", rc);
650         OBD_FREE_PTR(msp);
651
652         return rc;
653 }
654
655 int ll_dir_setstripe(struct inode *inode, struct lov_user_md *lump,
656                      int set_default)
657 {
658         struct ll_sb_info *sbi = ll_i2sbi(inode);
659         struct md_op_data *op_data;
660         struct ptlrpc_request *req = NULL;
661         int rc = 0;
662         struct lustre_sb_info *lsi = s2lsi(inode->i_sb);
663         struct obd_device *mgc = lsi->lsi_mgc;
664         int lum_size;
665         ENTRY;
666
667         if (lump != NULL) {
668                 /*
669                  * This is coming from userspace, so should be in
670                  * local endian.  But the MDS would like it in little
671                  * endian, so we swab it before we send it.
672                  */
673                 switch (lump->lmm_magic) {
674                 case LOV_USER_MAGIC_V1: {
675                         if (lump->lmm_magic != cpu_to_le32(LOV_USER_MAGIC_V1))
676                                 lustre_swab_lov_user_md_v1(lump);
677                         lum_size = sizeof(struct lov_user_md_v1);
678                         break;
679                         }
680                 case LOV_USER_MAGIC_V3: {
681                         if (lump->lmm_magic != cpu_to_le32(LOV_USER_MAGIC_V3))
682                                 lustre_swab_lov_user_md_v3(
683                                         (struct lov_user_md_v3 *)lump);
684                         lum_size = sizeof(struct lov_user_md_v3);
685                         break;
686                         }
687                 default: {
688                         CDEBUG(D_IOCTL, "bad userland LOV MAGIC:"
689                                         " %#08x != %#08x nor %#08x\n",
690                                         lump->lmm_magic, LOV_USER_MAGIC_V1,
691                                         LOV_USER_MAGIC_V3);
692                         RETURN(-EINVAL);
693                         }
694                }
695         } else {
696                 lum_size = sizeof(struct lov_user_md_v1);
697         }
698
699         op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL, 0, 0,
700                                      LUSTRE_OPC_ANY, NULL);
701         if (IS_ERR(op_data))
702                 RETURN(PTR_ERR(op_data));
703
704         /* swabbing is done in lov_setstripe() on server side */
705         rc = md_setattr(sbi->ll_md_exp, op_data, lump, lum_size,
706                         NULL, 0, &req, NULL);
707         ll_finish_md_op_data(op_data);
708         ptlrpc_req_finished(req);
709         if (rc) {
710                 if (rc != -EPERM && rc != -EACCES)
711                         CERROR("mdc_setattr fails: rc = %d\n", rc);
712         }
713
714         /* In the following we use the fact that LOV_USER_MAGIC_V1 and
715          LOV_USER_MAGIC_V3 have the same initial fields so we do not
716          need the make the distiction between the 2 versions */
717         if (set_default && mgc->u.cli.cl_mgc_mgsexp) {
718                 char *param = NULL;
719                 char *buf;
720
721                 OBD_ALLOC(param, MGS_PARAM_MAXLEN);
722                 if (param == NULL)
723                         GOTO(end, rc = -ENOMEM);
724
725                 buf = param;
726                 /* Get fsname and assume devname to be -MDT0000. */
727                 ll_get_fsname(inode->i_sb, buf, MTI_NAME_MAXLEN);
728                 strcat(buf, "-MDT0000.lov");
729                 buf += strlen(buf);
730
731                 /* Set root stripesize */
732                 sprintf(buf, ".stripesize=%u",
733                         lump ? le32_to_cpu(lump->lmm_stripe_size) : 0);
734                 rc = ll_send_mgc_param(mgc->u.cli.cl_mgc_mgsexp, param);
735                 if (rc)
736                         GOTO(end, rc);
737
738                 /* Set root stripecount */
739                 sprintf(buf, ".stripecount=%hd",
740                         lump ? le16_to_cpu(lump->lmm_stripe_count) : 0);
741                 rc = ll_send_mgc_param(mgc->u.cli.cl_mgc_mgsexp, param);
742                 if (rc)
743                         GOTO(end, rc);
744
745                 /* Set root stripeoffset */
746                 sprintf(buf, ".stripeoffset=%hd",
747                         lump ? le16_to_cpu(lump->lmm_stripe_offset) :
748                         (typeof(lump->lmm_stripe_offset))(-1));
749                 rc = ll_send_mgc_param(mgc->u.cli.cl_mgc_mgsexp, param);
750
751 end:
752                 if (param != NULL)
753                         OBD_FREE(param, MGS_PARAM_MAXLEN);
754         }
755         RETURN(rc);
756 }
757
758 int ll_dir_getstripe(struct inode *inode, struct lov_mds_md **lmmp,
759                      int *lmm_size, struct ptlrpc_request **request)
760 {
761         struct ll_sb_info *sbi = ll_i2sbi(inode);
762         struct mdt_body   *body;
763         struct lov_mds_md *lmm = NULL;
764         struct ptlrpc_request *req = NULL;
765         int rc, lmmsize;
766         struct md_op_data *op_data;
767
768         rc = ll_get_max_mdsize(sbi, &lmmsize);
769         if (rc)
770                 RETURN(rc);
771
772         op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL,
773                                      0, lmmsize, LUSTRE_OPC_ANY,
774                                      NULL);
775         if (IS_ERR(op_data))
776                 RETURN(PTR_ERR(op_data));
777
778         op_data->op_valid = OBD_MD_FLEASIZE | OBD_MD_FLDIREA;
779         rc = md_getattr(sbi->ll_md_exp, op_data, &req);
780         ll_finish_md_op_data(op_data);
781         if (rc < 0) {
782                 CDEBUG(D_INFO, "md_getattr failed on inode "
783                        "%lu/%u: rc %d\n", inode->i_ino,
784                        inode->i_generation, rc);
785                 GOTO(out, rc);
786         }
787
788         body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
789         LASSERT(body != NULL);
790
791         lmmsize = body->eadatasize;
792
793         if (!(body->valid & (OBD_MD_FLEASIZE | OBD_MD_FLDIREA)) ||
794             lmmsize == 0) {
795                 GOTO(out, rc = -ENODATA);
796         }
797
798         lmm = req_capsule_server_sized_get(&req->rq_pill,
799                                            &RMF_MDT_MD, lmmsize);
800         LASSERT(lmm != NULL);
801
802         /*
803          * This is coming from the MDS, so is probably in
804          * little endian.  We convert it to host endian before
805          * passing it to userspace.
806          */
807         /* We don't swab objects for directories */
808         switch (le32_to_cpu(lmm->lmm_magic)) {
809         case LOV_MAGIC_V1:
810                 if (LOV_MAGIC != cpu_to_le32(LOV_MAGIC))
811                         lustre_swab_lov_user_md_v1((struct lov_user_md_v1 *)lmm);
812                 break;
813         case LOV_MAGIC_V3:
814                 if (LOV_MAGIC != cpu_to_le32(LOV_MAGIC))
815                         lustre_swab_lov_user_md_v3((struct lov_user_md_v3 *)lmm);
816                 break;
817         default:
818                 CERROR("unknown magic: %lX\n", (unsigned long)lmm->lmm_magic);
819                 rc = -EPROTO;
820         }
821 out:
822         *lmmp = lmm;
823         *lmm_size = lmmsize;
824         *request = req;
825         return rc;
826 }
827
828 /*
829  *  Get MDT index for the inode.
830  */
831 int ll_get_mdt_idx(struct inode *inode)
832 {
833         struct ll_sb_info *sbi = ll_i2sbi(inode);
834         struct md_op_data *op_data;
835         int rc, mdtidx;
836         ENTRY;
837
838         op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL, 0,
839                                      0, LUSTRE_OPC_ANY, NULL);
840         if (IS_ERR(op_data))
841                 RETURN(PTR_ERR(op_data));
842
843         op_data->op_valid |= OBD_MD_MDTIDX;
844         rc = md_getattr(sbi->ll_md_exp, op_data, NULL);
845         mdtidx = op_data->op_mds;
846         ll_finish_md_op_data(op_data);
847         if (rc < 0) {
848                 CDEBUG(D_INFO, "md_getattr_name: %d\n", rc);
849                 RETURN(rc);
850         }
851         return mdtidx;
852 }
853
854 static int copy_and_ioctl(int cmd, struct obd_export *exp, void *data, int len)
855 {
856         void *ptr;
857         int rc;
858
859         OBD_ALLOC(ptr, len);
860         if (ptr == NULL)
861                 return -ENOMEM;
862         if (cfs_copy_from_user(ptr, data, len)) {
863                 OBD_FREE(ptr, len);
864                 return -EFAULT;
865         }
866         rc = obd_iocontrol(cmd, exp, len, data, NULL);
867         OBD_FREE(ptr, len);
868         return rc;
869 }
870
871 static int quotactl_ioctl(struct ll_sb_info *sbi, struct if_quotactl *qctl)
872 {
873         int cmd = qctl->qc_cmd;
874         int type = qctl->qc_type;
875         int id = qctl->qc_id;
876         int valid = qctl->qc_valid;
877         int rc = 0;
878         ENTRY;
879
880         switch (cmd) {
881         case LUSTRE_Q_INVALIDATE:
882         case LUSTRE_Q_FINVALIDATE:
883         case Q_QUOTAON:
884         case Q_QUOTAOFF:
885         case Q_SETQUOTA:
886         case Q_SETINFO:
887                 if (!cfs_capable(CFS_CAP_SYS_ADMIN) ||
888                     sbi->ll_flags & LL_SBI_RMT_CLIENT)
889                         RETURN(-EPERM);
890                 break;
891         case Q_GETQUOTA:
892                 if (((type == USRQUOTA && cfs_curproc_euid() != id) ||
893                      (type == GRPQUOTA && !in_egroup_p(id))) &&
894                     (!cfs_capable(CFS_CAP_SYS_ADMIN) ||
895                      sbi->ll_flags & LL_SBI_RMT_CLIENT))
896                         RETURN(-EPERM);
897                 break;
898         case Q_GETINFO:
899                 break;
900         default:
901                 CERROR("unsupported quotactl op: %#x\n", cmd);
902                 RETURN(-ENOTTY);
903         }
904
905         if (valid != QC_GENERAL) {
906                 if (sbi->ll_flags & LL_SBI_RMT_CLIENT)
907                         RETURN(-EOPNOTSUPP);
908
909                 if (cmd == Q_GETINFO)
910                         qctl->qc_cmd = Q_GETOINFO;
911                 else if (cmd == Q_GETQUOTA)
912                         qctl->qc_cmd = Q_GETOQUOTA;
913                 else
914                         RETURN(-EINVAL);
915
916                 switch (valid) {
917                 case QC_MDTIDX:
918                         rc = obd_iocontrol(OBD_IOC_QUOTACTL, sbi->ll_md_exp,
919                                            sizeof(*qctl), qctl, NULL);
920                         break;
921                 case QC_OSTIDX:
922                         rc = obd_iocontrol(OBD_IOC_QUOTACTL, sbi->ll_dt_exp,
923                                            sizeof(*qctl), qctl, NULL);
924                         break;
925                 case QC_UUID:
926                         rc = obd_iocontrol(OBD_IOC_QUOTACTL, sbi->ll_md_exp,
927                                            sizeof(*qctl), qctl, NULL);
928                         if (rc == -EAGAIN)
929                                 rc = obd_iocontrol(OBD_IOC_QUOTACTL,
930                                                    sbi->ll_dt_exp,
931                                                    sizeof(*qctl), qctl, NULL);
932                         break;
933                 default:
934                         rc = -EINVAL;
935                         break;
936                 }
937
938                 if (rc)
939                         RETURN(rc);
940
941                 qctl->qc_cmd = cmd;
942         } else {
943                 struct obd_quotactl *oqctl;
944
945                 OBD_ALLOC_PTR(oqctl);
946                 if (oqctl == NULL)
947                         RETURN(-ENOMEM);
948
949                 QCTL_COPY(oqctl, qctl);
950                 rc = obd_quotactl(sbi->ll_md_exp, oqctl);
951                 if (rc) {
952                         if (rc != -EALREADY && cmd == Q_QUOTAON) {
953                                 oqctl->qc_cmd = Q_QUOTAOFF;
954                                 obd_quotactl(sbi->ll_md_exp, oqctl);
955                         }
956                         OBD_FREE_PTR(oqctl);
957                         RETURN(rc);
958                 }
959                 /* If QIF_SPACE is not set, client should collect the
960                  * space usage from OSSs by itself */
961                 if (cmd == Q_GETQUOTA &&
962                     !(oqctl->qc_dqblk.dqb_valid & QIF_SPACE) &&
963                     !oqctl->qc_dqblk.dqb_curspace) {
964                         struct obd_quotactl *oqctl_tmp;
965
966                         OBD_ALLOC_PTR(oqctl_tmp);
967                         if (oqctl_tmp == NULL)
968                                 GOTO(out, rc = -ENOMEM);
969
970                         oqctl_tmp->qc_cmd = Q_GETOQUOTA;
971                         oqctl_tmp->qc_id = oqctl->qc_id;
972                         oqctl_tmp->qc_type = oqctl->qc_type;
973
974                         /* collect space usage from OSTs */
975                         oqctl_tmp->qc_dqblk.dqb_curspace = 0;
976                         rc = obd_quotactl(sbi->ll_dt_exp, oqctl_tmp);
977                         if (!rc || rc == -EREMOTEIO) {
978                                 oqctl->qc_dqblk.dqb_curspace =
979                                         oqctl_tmp->qc_dqblk.dqb_curspace;
980                                 oqctl->qc_dqblk.dqb_valid |= QIF_SPACE;
981                         }
982
983                         /* collect space & inode usage from MDTs */
984                         oqctl_tmp->qc_dqblk.dqb_curspace = 0;
985                         oqctl_tmp->qc_dqblk.dqb_curinodes = 0;
986                         rc = obd_quotactl(sbi->ll_md_exp, oqctl_tmp);
987                         if (!rc || rc == -EREMOTEIO) {
988                                 oqctl->qc_dqblk.dqb_curspace +=
989                                         oqctl_tmp->qc_dqblk.dqb_curspace;
990                                 oqctl->qc_dqblk.dqb_curinodes =
991                                         oqctl_tmp->qc_dqblk.dqb_curinodes;
992                                 oqctl->qc_dqblk.dqb_valid |= QIF_INODES;
993                         } else {
994                                 oqctl->qc_dqblk.dqb_valid &= ~QIF_SPACE;
995                         }
996
997                         OBD_FREE_PTR(oqctl_tmp);
998                 }
999 out:
1000                 QCTL_COPY(qctl, oqctl);
1001                 OBD_FREE_PTR(oqctl);
1002         }
1003
1004         RETURN(rc);
1005 }
1006
1007 static long ll_dir_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1008 {
1009         struct inode *inode = file->f_dentry->d_inode;
1010         struct ll_sb_info *sbi = ll_i2sbi(inode);
1011         struct obd_ioctl_data *data;
1012         int rc = 0;
1013         ENTRY;
1014
1015         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p), cmd=%#x\n",
1016                inode->i_ino, inode->i_generation, inode, cmd);
1017
1018         /* asm-ppc{,64} declares TCGETS, et. al. as type 't' not 'T' */
1019         if (_IOC_TYPE(cmd) == 'T' || _IOC_TYPE(cmd) == 't') /* tty ioctls */
1020                 return -ENOTTY;
1021
1022         ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_IOCTL, 1);
1023         switch(cmd) {
1024         case FSFILT_IOC_GETFLAGS:
1025         case FSFILT_IOC_SETFLAGS:
1026                 RETURN(ll_iocontrol(inode, file, cmd, arg));
1027         case FSFILT_IOC_GETVERSION_OLD:
1028         case FSFILT_IOC_GETVERSION:
1029                 RETURN(put_user(inode->i_generation, (int *)arg));
1030         /* We need to special case any other ioctls we want to handle,
1031          * to send them to the MDS/OST as appropriate and to properly
1032          * network encode the arg field.
1033         case FSFILT_IOC_SETVERSION_OLD:
1034         case FSFILT_IOC_SETVERSION:
1035         */
1036         case LL_IOC_GET_MDTIDX: {
1037                 int mdtidx;
1038
1039                 mdtidx = ll_get_mdt_idx(inode);
1040                 if (mdtidx < 0)
1041                         RETURN(mdtidx);
1042
1043                 if (put_user((int)mdtidx, (int*)arg))
1044                         RETURN(-EFAULT);
1045
1046                 return 0;
1047         }
1048         case IOC_MDC_LOOKUP: {
1049                 struct ptlrpc_request *request = NULL;
1050                 int namelen, len = 0;
1051                 char *buf = NULL;
1052                 char *filename;
1053                 struct md_op_data *op_data;
1054
1055                 rc = obd_ioctl_getdata(&buf, &len, (void *)arg);
1056                 if (rc)
1057                         RETURN(rc);
1058                 data = (void *)buf;
1059
1060                 filename = data->ioc_inlbuf1;
1061                 namelen = strlen(filename);
1062
1063                 if (namelen < 1) {
1064                         CDEBUG(D_INFO, "IOC_MDC_LOOKUP missing filename\n");
1065                         GOTO(out_free, rc = -EINVAL);
1066                 }
1067
1068                 op_data = ll_prep_md_op_data(NULL, inode, NULL, filename, namelen,
1069                                              0, LUSTRE_OPC_ANY, NULL);
1070                 if (IS_ERR(op_data))
1071                         GOTO(out_free, rc = PTR_ERR(op_data));
1072
1073                 op_data->op_valid = OBD_MD_FLID;
1074                 rc = md_getattr_name(sbi->ll_md_exp, op_data, &request);
1075                 ll_finish_md_op_data(op_data);
1076                 if (rc < 0) {
1077                         CDEBUG(D_INFO, "md_getattr_name: %d\n", rc);
1078                         GOTO(out_free, rc);
1079                 }
1080                 ptlrpc_req_finished(request);
1081                 EXIT;
1082 out_free:
1083                 obd_ioctl_freedata(buf, len);
1084                 return rc;
1085         }
1086         case LL_IOC_LOV_SETSTRIPE: {
1087                 struct lov_user_md_v3 lumv3;
1088                 struct lov_user_md_v1 *lumv1 = (struct lov_user_md_v1 *)&lumv3;
1089                 struct lov_user_md_v1 *lumv1p = (struct lov_user_md_v1 *)arg;
1090                 struct lov_user_md_v3 *lumv3p = (struct lov_user_md_v3 *)arg;
1091
1092                 int set_default = 0;
1093
1094                 LASSERT(sizeof(lumv3) == sizeof(*lumv3p));
1095                 LASSERT(sizeof(lumv3.lmm_objects[0]) ==
1096                         sizeof(lumv3p->lmm_objects[0]));
1097                 /* first try with v1 which is smaller than v3 */
1098                 if (cfs_copy_from_user(lumv1, lumv1p, sizeof(*lumv1)))
1099                         RETURN(-EFAULT);
1100
1101                 if (lumv1->lmm_magic == LOV_USER_MAGIC_V3) {
1102                         if (cfs_copy_from_user(&lumv3, lumv3p, sizeof(lumv3)))
1103                                 RETURN(-EFAULT);
1104                 }
1105
1106                 if (inode->i_sb->s_root == file->f_dentry)
1107                         set_default = 1;
1108
1109                 /* in v1 and v3 cases lumv1 points to data */
1110                 rc = ll_dir_setstripe(inode, lumv1, set_default);
1111
1112                 RETURN(rc);
1113         }
1114         case LL_IOC_OBD_STATFS:
1115                 RETURN(ll_obd_statfs(inode, (void *)arg));
1116         case LL_IOC_LOV_GETSTRIPE:
1117         case LL_IOC_MDC_GETINFO:
1118         case IOC_MDC_GETFILEINFO:
1119         case IOC_MDC_GETFILESTRIPE: {
1120                 struct ptlrpc_request *request = NULL;
1121                 struct lov_user_md *lump;
1122                 struct lov_mds_md *lmm = NULL;
1123                 struct mdt_body *body;
1124                 char *filename = NULL;
1125                 int lmmsize;
1126
1127                 if (cmd == IOC_MDC_GETFILEINFO ||
1128                     cmd == IOC_MDC_GETFILESTRIPE) {
1129                         filename = getname((const char *)arg);
1130                         if (IS_ERR(filename))
1131                                 RETURN(PTR_ERR(filename));
1132
1133                         rc = ll_lov_getstripe_ea_info(inode, filename, &lmm,
1134                                                       &lmmsize, &request);
1135                 } else {
1136                         rc = ll_dir_getstripe(inode, &lmm, &lmmsize, &request);
1137                 }
1138
1139                 if (request) {
1140                         body = req_capsule_server_get(&request->rq_pill,
1141                                                       &RMF_MDT_BODY);
1142                         LASSERT(body != NULL);
1143                 } else {
1144                         GOTO(out_req, rc);
1145                 }
1146
1147                 if (rc < 0) {
1148                         if (rc == -ENODATA && (cmd == IOC_MDC_GETFILEINFO ||
1149                                                cmd == LL_IOC_MDC_GETINFO))
1150                                 GOTO(skip_lmm, rc = 0);
1151                         else
1152                                 GOTO(out_req, rc);
1153                 }
1154
1155                 if (cmd == IOC_MDC_GETFILESTRIPE ||
1156                     cmd == LL_IOC_LOV_GETSTRIPE) {
1157                         lump = (struct lov_user_md *)arg;
1158                 } else {
1159                         struct lov_user_mds_data *lmdp;
1160                         lmdp = (struct lov_user_mds_data *)arg;
1161                         lump = &lmdp->lmd_lmm;
1162                 }
1163                 if (cfs_copy_to_user(lump, lmm, lmmsize)) {
1164                         if (cfs_copy_to_user(lump, lmm, sizeof(*lump)))
1165                                 GOTO(out_req, rc = -EFAULT);
1166                         rc = -EOVERFLOW;
1167                 }
1168         skip_lmm:
1169                 if (cmd == IOC_MDC_GETFILEINFO || cmd == LL_IOC_MDC_GETINFO) {
1170                         struct lov_user_mds_data *lmdp;
1171                         lstat_t st = { 0 };
1172
1173                         st.st_dev     = inode->i_sb->s_dev;
1174                         st.st_mode    = body->mode;
1175                         st.st_nlink   = body->nlink;
1176                         st.st_uid     = body->uid;
1177                         st.st_gid     = body->gid;
1178                         st.st_rdev    = body->rdev;
1179                         st.st_size    = body->size;
1180                         st.st_blksize = CFS_PAGE_SIZE;
1181                         st.st_blocks  = body->blocks;
1182                         st.st_atime   = body->atime;
1183                         st.st_mtime   = body->mtime;
1184                         st.st_ctime   = body->ctime;
1185                         st.st_ino     = inode->i_ino;
1186
1187                         lmdp = (struct lov_user_mds_data *)arg;
1188                         if (cfs_copy_to_user(&lmdp->lmd_st, &st, sizeof(st)))
1189                                 GOTO(out_req, rc = -EFAULT);
1190                 }
1191
1192                 EXIT;
1193         out_req:
1194                 ptlrpc_req_finished(request);
1195                 if (filename)
1196                         putname(filename);
1197                 return rc;
1198         }
1199         case IOC_LOV_GETINFO: {
1200                 struct lov_user_mds_data *lumd;
1201                 struct lov_stripe_md *lsm;
1202                 struct lov_user_md *lum;
1203                 struct lov_mds_md *lmm;
1204                 int lmmsize;
1205                 lstat_t st;
1206
1207                 lumd = (struct lov_user_mds_data *)arg;
1208                 lum = &lumd->lmd_lmm;
1209
1210                 rc = ll_get_max_mdsize(sbi, &lmmsize);
1211                 if (rc)
1212                         RETURN(rc);
1213
1214                 OBD_ALLOC_LARGE(lmm, lmmsize);
1215                 if (cfs_copy_from_user(lmm, lum, lmmsize))
1216                         GOTO(free_lmm, rc = -EFAULT);
1217
1218                 switch (lmm->lmm_magic) {
1219                 case LOV_USER_MAGIC_V1:
1220                         if (LOV_USER_MAGIC_V1 == cpu_to_le32(LOV_USER_MAGIC_V1))
1221                                 break;
1222                         /* swab objects first so that stripes num will be sane */
1223                         lustre_swab_lov_user_md_objects(
1224                                 ((struct lov_user_md_v1 *)lmm)->lmm_objects,
1225                                 ((struct lov_user_md_v1 *)lmm)->lmm_stripe_count);
1226                         lustre_swab_lov_user_md_v1((struct lov_user_md_v1 *)lmm);
1227                         break;
1228                 case LOV_USER_MAGIC_V3:
1229                         if (LOV_USER_MAGIC_V3 == cpu_to_le32(LOV_USER_MAGIC_V3))
1230                                 break;
1231                         /* swab objects first so that stripes num will be sane */
1232                         lustre_swab_lov_user_md_objects(
1233                                 ((struct lov_user_md_v3 *)lmm)->lmm_objects,
1234                                 ((struct lov_user_md_v3 *)lmm)->lmm_stripe_count);
1235                         lustre_swab_lov_user_md_v3((struct lov_user_md_v3 *)lmm);
1236                         break;
1237                 default:
1238                         GOTO(free_lmm, rc = -EINVAL);
1239                 }
1240
1241                 rc = obd_unpackmd(sbi->ll_dt_exp, &lsm, lmm, lmmsize);
1242                 if (rc < 0)
1243                         GOTO(free_lmm, rc = -ENOMEM);
1244
1245                 /* Perform glimpse_size operation. */
1246                 memset(&st, 0, sizeof(st));
1247
1248                 rc = ll_glimpse_ioctl(sbi, lsm, &st);
1249                 if (rc)
1250                         GOTO(free_lsm, rc);
1251
1252                 if (cfs_copy_to_user(&lumd->lmd_st, &st, sizeof(st)))
1253                         GOTO(free_lsm, rc = -EFAULT);
1254
1255                 EXIT;
1256         free_lsm:
1257                 obd_free_memmd(sbi->ll_dt_exp, &lsm);
1258         free_lmm:
1259                 OBD_FREE_LARGE(lmm, lmmsize);
1260                 return rc;
1261         }
1262         case OBD_IOC_LLOG_CATINFO: {
1263                 RETURN(-EOPNOTSUPP);
1264         }
1265         case OBD_IOC_QUOTACHECK: {
1266                 struct obd_quotactl *oqctl;
1267                 int error = 0;
1268
1269                 if (!cfs_capable(CFS_CAP_SYS_ADMIN) ||
1270                     sbi->ll_flags & LL_SBI_RMT_CLIENT)
1271                         RETURN(-EPERM);
1272
1273                 OBD_ALLOC_PTR(oqctl);
1274                 if (!oqctl)
1275                         RETURN(-ENOMEM);
1276                 oqctl->qc_type = arg;
1277                 rc = obd_quotacheck(sbi->ll_md_exp, oqctl);
1278                 if (rc < 0) {
1279                         CDEBUG(D_INFO, "md_quotacheck failed: rc %d\n", rc);
1280                         error = rc;
1281                 }
1282
1283                 rc = obd_quotacheck(sbi->ll_dt_exp, oqctl);
1284                 if (rc < 0)
1285                         CDEBUG(D_INFO, "obd_quotacheck failed: rc %d\n", rc);
1286
1287                 OBD_FREE_PTR(oqctl);
1288                 return error ?: rc;
1289         }
1290         case OBD_IOC_POLL_QUOTACHECK: {
1291                 struct if_quotacheck *check;
1292
1293                 if (!cfs_capable(CFS_CAP_SYS_ADMIN) ||
1294                     sbi->ll_flags & LL_SBI_RMT_CLIENT)
1295                         RETURN(-EPERM);
1296
1297                 OBD_ALLOC_PTR(check);
1298                 if (!check)
1299                         RETURN(-ENOMEM);
1300
1301                 rc = obd_iocontrol(cmd, sbi->ll_md_exp, 0, (void *)check,
1302                                    NULL);
1303                 if (rc) {
1304                         CDEBUG(D_QUOTA, "mdc ioctl %d failed: %d\n", cmd, rc);
1305                         if (cfs_copy_to_user((void *)arg, check,
1306                                              sizeof(*check)))
1307                                 CDEBUG(D_QUOTA, "cfs_copy_to_user failed\n");
1308                         GOTO(out_poll, rc);
1309                 }
1310
1311                 rc = obd_iocontrol(cmd, sbi->ll_dt_exp, 0, (void *)check,
1312                                    NULL);
1313                 if (rc) {
1314                         CDEBUG(D_QUOTA, "osc ioctl %d failed: %d\n", cmd, rc);
1315                         if (cfs_copy_to_user((void *)arg, check,
1316                                              sizeof(*check)))
1317                                 CDEBUG(D_QUOTA, "cfs_copy_to_user failed\n");
1318                         GOTO(out_poll, rc);
1319                 }
1320         out_poll:
1321                 OBD_FREE_PTR(check);
1322                 RETURN(rc);
1323         }
1324 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2, 7, 50, 0)
1325         case LL_IOC_QUOTACTL_18: {
1326                 /* copy the old 1.x quota struct for internal use, then copy
1327                  * back into old format struct.  For 1.8 compatibility. */
1328                 struct if_quotactl_18 *qctl_18;
1329                 struct if_quotactl *qctl_20;
1330
1331                 OBD_ALLOC_PTR(qctl_18);
1332                 if (!qctl_18)
1333                         RETURN(-ENOMEM);
1334
1335                 OBD_ALLOC_PTR(qctl_20);
1336                 if (!qctl_20)
1337                         GOTO(out_quotactl_18, rc = -ENOMEM);
1338
1339                 if (cfs_copy_from_user(qctl_18, (void *)arg, sizeof(*qctl_18)))
1340                         GOTO(out_quotactl_20, rc = -ENOMEM);
1341
1342                 QCTL_COPY(qctl_20, qctl_18);
1343                 qctl_20->qc_idx = 0;
1344
1345                 /* XXX: dqb_valid was borrowed as a flag to mark that
1346                  *      only mds quota is wanted */
1347                 if (qctl_18->qc_cmd == Q_GETQUOTA &&
1348                     qctl_18->qc_dqblk.dqb_valid) {
1349                         qctl_20->qc_valid = QC_MDTIDX;
1350                         qctl_20->qc_dqblk.dqb_valid = 0;
1351                 } else if (qctl_18->obd_uuid.uuid[0] != '\0') {
1352                         qctl_20->qc_valid = QC_UUID;
1353                         qctl_20->obd_uuid = qctl_18->obd_uuid;
1354                 } else {
1355                         qctl_20->qc_valid = QC_GENERAL;
1356                 }
1357
1358                 rc = quotactl_ioctl(sbi, qctl_20);
1359
1360                 if (rc == 0) {
1361                         QCTL_COPY(qctl_18, qctl_20);
1362                         qctl_18->obd_uuid = qctl_20->obd_uuid;
1363
1364                         if (cfs_copy_to_user((void *)arg, qctl_18,
1365                                              sizeof(*qctl_18)))
1366                                 rc = -EFAULT;
1367                 }
1368
1369         out_quotactl_20:
1370                 OBD_FREE_PTR(qctl_20);
1371         out_quotactl_18:
1372                 OBD_FREE_PTR(qctl_18);
1373                 RETURN(rc);
1374         }
1375 #else
1376 #warning "remove old LL_IOC_QUOTACTL_18 compatibility code"
1377 #endif /* LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2, 7, 50, 0) */
1378         case LL_IOC_QUOTACTL: {
1379                 struct if_quotactl *qctl;
1380
1381                 OBD_ALLOC_PTR(qctl);
1382                 if (!qctl)
1383                         RETURN(-ENOMEM);
1384
1385                 if (cfs_copy_from_user(qctl, (void *)arg, sizeof(*qctl)))
1386                         GOTO(out_quotactl, rc = -EFAULT);
1387
1388                 rc = quotactl_ioctl(sbi, qctl);
1389
1390                 if (rc == 0 && cfs_copy_to_user((void *)arg,qctl,sizeof(*qctl)))
1391                         rc = -EFAULT;
1392
1393         out_quotactl:
1394                 OBD_FREE_PTR(qctl);
1395                 RETURN(rc);
1396         }
1397         case OBD_IOC_GETDTNAME:
1398         case OBD_IOC_GETMDNAME:
1399                 RETURN(ll_get_obd_name(inode, cmd, arg));
1400         case LL_IOC_FLUSHCTX:
1401                 RETURN(ll_flush_ctx(inode));
1402 #ifdef CONFIG_FS_POSIX_ACL
1403         case LL_IOC_RMTACL: {
1404             if (sbi->ll_flags & LL_SBI_RMT_CLIENT &&
1405                 inode == inode->i_sb->s_root->d_inode) {
1406                 struct ll_file_data *fd = LUSTRE_FPRIVATE(file);
1407
1408                 LASSERT(fd != NULL);
1409                 rc = rct_add(&sbi->ll_rct, cfs_curproc_pid(), arg);
1410                 if (!rc)
1411                         fd->fd_flags |= LL_FILE_RMTACL;
1412                 RETURN(rc);
1413             } else
1414                 RETURN(0);
1415         }
1416 #endif
1417         case LL_IOC_GETOBDCOUNT: {
1418                 int count, vallen;
1419                 struct obd_export *exp;
1420
1421                 if (cfs_copy_from_user(&count, (int *)arg, sizeof(int)))
1422                         RETURN(-EFAULT);
1423
1424                 /* get ost count when count is zero, get mdt count otherwise */
1425                 exp = count ? sbi->ll_md_exp : sbi->ll_dt_exp;
1426                 vallen = sizeof(count);
1427                 rc = obd_get_info(NULL, exp, sizeof(KEY_TGT_COUNT),
1428                                   KEY_TGT_COUNT, &vallen, &count, NULL);
1429                 if (rc) {
1430                         CERROR("get target count failed: %d\n", rc);
1431                         RETURN(rc);
1432                 }
1433
1434                 if (cfs_copy_to_user((int *)arg, &count, sizeof(int)))
1435                         RETURN(-EFAULT);
1436
1437                 RETURN(0);
1438         }
1439         case LL_IOC_PATH2FID:
1440                 if (cfs_copy_to_user((void *)arg, ll_inode2fid(inode),
1441                                      sizeof(struct lu_fid)))
1442                         RETURN(-EFAULT);
1443                 RETURN(0);
1444         case LL_IOC_GET_CONNECT_FLAGS: {
1445                 RETURN(obd_iocontrol(cmd, sbi->ll_md_exp, 0, NULL, (void*)arg));
1446         }
1447         case OBD_IOC_CHANGELOG_SEND:
1448         case OBD_IOC_CHANGELOG_CLEAR:
1449                 rc = copy_and_ioctl(cmd, sbi->ll_md_exp, (void *)arg,
1450                                     sizeof(struct ioc_changelog));
1451                 RETURN(rc);
1452         case OBD_IOC_FID2PATH:
1453                 RETURN(ll_fid2path(inode, (void *)arg));
1454         case LL_IOC_HSM_CT_START:
1455                 rc = copy_and_ioctl(cmd, sbi->ll_md_exp, (void *)arg,
1456                                     sizeof(struct lustre_kernelcomm));
1457                 RETURN(rc);
1458
1459         default:
1460                 RETURN(obd_iocontrol(cmd, sbi->ll_dt_exp,0,NULL,(void *)arg));
1461         }
1462 }
1463
1464 static loff_t ll_dir_seek(struct file *file, loff_t offset, int origin)
1465 {
1466         struct inode *inode = file->f_mapping->host;
1467         struct ll_file_data *fd = LUSTRE_FPRIVATE(file);
1468         struct ll_sb_info *sbi = ll_i2sbi(inode);
1469         int api32 = ll_need_32bit_api(sbi);
1470         loff_t ret = -EINVAL;
1471         ENTRY;
1472
1473         cfs_mutex_lock(&inode->i_mutex);
1474         switch (origin) {
1475                 case SEEK_SET:
1476                         break;
1477                 case SEEK_CUR:
1478                         offset += file->f_pos;
1479                         break;
1480                 case SEEK_END:
1481                         if (offset > 0)
1482                                 GOTO(out, ret);
1483                         if (api32)
1484                                 offset += LL_DIR_END_OFF_32BIT;
1485                         else
1486                                 offset += LL_DIR_END_OFF;
1487                         break;
1488                 default:
1489                         GOTO(out, ret);
1490         }
1491
1492         if (offset >= 0 &&
1493             ((api32 && offset <= LL_DIR_END_OFF_32BIT) ||
1494              (!api32 && offset <= LL_DIR_END_OFF))) {
1495                 if (offset != file->f_pos) {
1496                         if ((api32 && offset == LL_DIR_END_OFF_32BIT) ||
1497                             (!api32 && offset == LL_DIR_END_OFF))
1498                                 fd->lfd_pos = MDS_DIR_END_OFF;
1499                         else if (api32 && sbi->ll_flags & LL_SBI_64BIT_HASH)
1500                                 fd->lfd_pos = offset << 32;
1501                         else
1502                                 fd->lfd_pos = offset;
1503                         file->f_pos = offset;
1504                         file->f_version = 0;
1505                 }
1506                 ret = offset;
1507         }
1508         GOTO(out, ret);
1509
1510 out:
1511         cfs_mutex_unlock(&inode->i_mutex);
1512         return ret;
1513 }
1514
1515 int ll_dir_open(struct inode *inode, struct file *file)
1516 {
1517         ENTRY;
1518         RETURN(ll_file_open(inode, file));
1519 }
1520
1521 int ll_dir_release(struct inode *inode, struct file *file)
1522 {
1523         ENTRY;
1524         RETURN(ll_file_release(inode, file));
1525 }
1526
1527 struct file_operations ll_dir_operations = {
1528         .llseek   = ll_dir_seek,
1529         .open     = ll_dir_open,
1530         .release  = ll_dir_release,
1531         .read     = generic_read_dir,
1532         .readdir  = ll_readdir,
1533         .unlocked_ioctl   = ll_dir_ioctl,
1534         .fsync    = ll_fsync,
1535 };