staging: lustre: Coalesce string fragments
[deliverable/linux.git] / drivers / staging / lustre / lustre / llite / dir.c
CommitLineData
d7e09d03
PT
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, 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>
d7e09d03 44#include <asm/uaccess.h>
995c8b4a 45#include <linux/buffer_head.h> /* for wait_on_buffer */
d7e09d03 46#include <linux/pagevec.h>
2870cd10 47#include <linux/prefetch.h>
d7e09d03
PT
48
49#define DEBUG_SUBSYSTEM S_LLITE
50
67a235f5
GKH
51#include "../include/obd_support.h"
52#include "../include/obd_class.h"
53#include "../include/lustre_lib.h"
54#include "../include/lustre/lustre_idl.h"
55#include "../include/lustre_lite.h"
56#include "../include/lustre_dlm.h"
57#include "../include/lustre_fid.h"
d7e09d03
PT
58#include "llite_internal.h"
59
60/*
61 * (new) readdir implementation overview.
62 *
63 * Original lustre readdir implementation cached exact copy of raw directory
64 * pages on the client. These pages were indexed in client page cache by
65 * logical offset in the directory file. This design, while very simple and
66 * intuitive had some inherent problems:
67 *
68 * . it implies that byte offset to the directory entry serves as a
69 * telldir(3)/seekdir(3) cookie, but that offset is not stable: in
70 * ext3/htree directory entries may move due to splits, and more
71 * importantly,
72 *
73 * . it is incompatible with the design of split directories for cmd3,
74 * that assumes that names are distributed across nodes based on their
75 * hash, and so readdir should be done in hash order.
76 *
77 * New readdir implementation does readdir in hash order, and uses hash of a
78 * file name as a telldir/seekdir cookie. This led to number of complications:
79 *
80 * . hash is not unique, so it cannot be used to index cached directory
81 * pages on the client (note, that it requires a whole pageful of hash
82 * collided entries to cause two pages to have identical hashes);
83 *
84 * . hash is not unique, so it cannot, strictly speaking, be used as an
85 * entry cookie. ext3/htree has the same problem and lustre implementation
86 * mimics their solution: seekdir(hash) positions directory at the first
87 * entry with the given hash.
88 *
89 * Client side.
90 *
91 * 0. caching
92 *
93 * Client caches directory pages using hash of the first entry as an index. As
94 * noted above hash is not unique, so this solution doesn't work as is:
95 * special processing is needed for "page hash chains" (i.e., sequences of
96 * pages filled with entries all having the same hash value).
97 *
98 * First, such chains have to be detected. To this end, server returns to the
99 * client the hash of the first entry on the page next to one returned. When
100 * client detects that this hash is the same as hash of the first entry on the
101 * returned page, page hash collision has to be handled. Pages in the
102 * hash chain, except first one, are termed "overflow pages".
103 *
104 * Solution to index uniqueness problem is to not cache overflow
105 * pages. Instead, when page hash collision is detected, all overflow pages
106 * from emerging chain are immediately requested from the server and placed in
107 * a special data structure (struct ll_dir_chain). This data structure is used
108 * by ll_readdir() to process entries from overflow pages. When readdir
109 * invocation finishes, overflow pages are discarded. If page hash collision
110 * chain weren't completely processed, next call to readdir will again detect
111 * page hash collision, again read overflow pages in, process next portion of
112 * entries and again discard the pages. This is not as wasteful as it looks,
113 * because, given reasonable hash, page hash collisions are extremely rare.
114 *
115 * 1. directory positioning
116 *
117 * When seekdir(hash) is called, original
118 *
119 *
120 *
121 *
122 *
123 *
124 *
125 *
126 * Server.
127 *
128 * identification of and access to overflow pages
129 *
130 * page format
131 *
132 * Page in MDS_READPAGE RPC is packed in LU_PAGE_SIZE, and each page contains
133 * a header lu_dirpage which describes the start/end hash, and whether this
134 * page is empty (contains no dir entry) or hash collide with next page.
135 * After client receives reply, several pages will be integrated into dir page
136 * in PAGE_CACHE_SIZE (if PAGE_CACHE_SIZE greater than LU_PAGE_SIZE), and the
137 * lu_dirpage for this integrated page will be adjusted. See
138 * lmv_adjust_dirpages().
139 *
140 */
141
142/* returns the page unlocked, but with a reference */
143static 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 struct lu_dirpage *dp;
155 int max_pages = ll_i2sbi(inode)->ll_md_brw_size >> PAGE_CACHE_SHIFT;
156 int nrdpgs = 0; /* number of pages read actually */
157 int npages;
158 int i;
159 int rc;
d7e09d03 160
b0f5aad5 161 CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p) hash %llu\n",
d7e09d03
PT
162 inode->i_ino, inode->i_generation, inode, hash);
163
164 LASSERT(max_pages > 0 && max_pages <= MD_MAX_BRW_PAGES);
165
0fa3b9d3 166 page_pool = kcalloc(max_pages, sizeof(page), GFP_NOFS);
496a51bd 167 if (page_pool) {
d7e09d03
PT
168 page_pool[0] = page0;
169 } else {
170 page_pool = &page0;
171 max_pages = 1;
172 }
173 for (npages = 1; npages < max_pages; npages++) {
174 page = page_cache_alloc_cold(inode->i_mapping);
175 if (!page)
176 break;
177 page_pool[npages] = page;
178 }
179
180 op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL, 0, 0,
181 LUSTRE_OPC_ANY, NULL);
182 op_data->op_npages = npages;
183 op_data->op_offset = hash;
184 rc = md_readpage(exp, op_data, page_pool, &request);
185 ll_finish_md_op_data(op_data);
186 if (rc == 0) {
187 body = req_capsule_server_get(&request->rq_pill, &RMF_MDT_BODY);
188 /* Checked by mdc_readpage() */
189 LASSERT(body != NULL);
190
191 if (body->valid & OBD_MD_FLSIZE)
192 cl_isize_write(inode, body->size);
193
194 nrdpgs = (request->rq_bulk->bd_nob_transferred+PAGE_CACHE_SIZE-1)
195 >> PAGE_CACHE_SHIFT;
196 SetPageUptodate(page0);
197 }
198 unlock_page(page0);
199 ptlrpc_req_finished(request);
200
201 CDEBUG(D_VFSTRACE, "read %d/%d pages\n", nrdpgs, npages);
202
203 ll_pagevec_init(&lru_pvec, 0);
204 for (i = 1; i < npages; i++) {
205 unsigned long offset;
206 int ret;
207
208 page = page_pool[i];
209
210 if (rc < 0 || i >= nrdpgs) {
211 page_cache_release(page);
212 continue;
213 }
214
215 SetPageUptodate(page);
216
217 dp = kmap(page);
218 hash = le64_to_cpu(dp->ldp_hash_start);
219 kunmap(page);
220
221 offset = hash_x_index(hash, hash64);
222
223 prefetchw(&page->flags);
224 ret = add_to_page_cache_lru(page, inode->i_mapping, offset,
225 GFP_KERNEL);
226 if (ret == 0) {
227 unlock_page(page);
228 if (ll_pagevec_add(&lru_pvec, page) == 0)
229 ll_pagevec_lru_add_file(&lru_pvec);
230 } else {
2d00bd17
JP
231 CDEBUG(D_VFSTRACE, "page %lu add to page cache failed: %d\n",
232 offset, ret);
d7e09d03
PT
233 }
234 page_cache_release(page);
235 }
236 ll_pagevec_lru_add_file(&lru_pvec);
237
238 if (page_pool != &page0)
239 OBD_FREE(page_pool, sizeof(struct page *) * max_pages);
d7e09d03
PT
240 return rc;
241}
242
243static void ll_check_page(struct inode *dir, struct page *page)
244{
245 /* XXX: check page format later */
246 SetPageChecked(page);
247}
248
249void ll_release_page(struct page *page, int remove)
250{
251 kunmap(page);
252 if (remove) {
253 lock_page(page);
254 if (likely(page->mapping != NULL))
255 truncate_complete_page(page->mapping, page);
256 unlock_page(page);
257 }
258 page_cache_release(page);
259}
260
261/*
262 * Find, kmap and return page that contains given hash.
263 */
264static struct page *ll_dir_page_locate(struct inode *dir, __u64 *hash,
265 __u64 *start, __u64 *end)
266{
267 int hash64 = ll_i2sbi(dir)->ll_flags & LL_SBI_64BIT_HASH;
268 struct address_space *mapping = dir->i_mapping;
269 /*
270 * Complement of hash is used as an index so that
271 * radix_tree_gang_lookup() can be used to find a page with starting
272 * hash _smaller_ than one we are looking for.
273 */
274 unsigned long offset = hash_x_index(*hash, hash64);
275 struct page *page;
276 int found;
277
12afe493 278 spin_lock_irq(&mapping->tree_lock);
d7e09d03
PT
279 found = radix_tree_gang_lookup(&mapping->page_tree,
280 (void **)&page, offset, 1);
281 if (found > 0) {
282 struct lu_dirpage *dp;
283
284 page_cache_get(page);
12afe493 285 spin_unlock_irq(&mapping->tree_lock);
d7e09d03
PT
286 /*
287 * In contrast to find_lock_page() we are sure that directory
288 * page cannot be truncated (while DLM lock is held) and,
289 * hence, can avoid restart.
290 *
291 * In fact, page cannot be locked here at all, because
292 * ll_dir_filler() does synchronous io.
293 */
294 wait_on_page_locked(page);
295 if (PageUptodate(page)) {
296 dp = kmap(page);
297 if (BITS_PER_LONG == 32 && hash64) {
298 *start = le64_to_cpu(dp->ldp_hash_start) >> 32;
299 *end = le64_to_cpu(dp->ldp_hash_end) >> 32;
300 *hash = *hash >> 32;
301 } else {
302 *start = le64_to_cpu(dp->ldp_hash_start);
303 *end = le64_to_cpu(dp->ldp_hash_end);
304 }
55f5a824
GKH
305 LASSERTF(*start <= *hash, "start = %#llx,end = %#llx,hash = %#llx\n",
306 *start, *end, *hash);
b0f5aad5 307 CDEBUG(D_VFSTRACE, "page %lu [%llu %llu], hash %llu\n",
d7e09d03
PT
308 offset, *start, *end, *hash);
309 if (*hash > *end) {
310 ll_release_page(page, 0);
311 page = NULL;
312 } else if (*end != *start && *hash == *end) {
313 /*
314 * upon hash collision, remove this page,
315 * otherwise put page reference, and
316 * ll_get_dir_page() will issue RPC to fetch
317 * the page we want.
318 */
319 ll_release_page(page,
320 le32_to_cpu(dp->ldp_flags) & LDF_COLLIDE);
321 page = NULL;
322 }
323 } else {
324 page_cache_release(page);
325 page = ERR_PTR(-EIO);
326 }
327
328 } else {
12afe493 329 spin_unlock_irq(&mapping->tree_lock);
d7e09d03
PT
330 page = NULL;
331 }
332 return page;
333}
334
335struct page *ll_get_dir_page(struct inode *dir, __u64 hash,
336 struct ll_dir_chain *chain)
337{
338 ldlm_policy_data_t policy = {.l_inodebits = {MDS_INODELOCK_UPDATE} };
339 struct address_space *mapping = dir->i_mapping;
340 struct lustre_handle lockh;
341 struct lu_dirpage *dp;
342 struct page *page;
343 ldlm_mode_t mode;
344 int rc;
345 __u64 start = 0;
346 __u64 end = 0;
347 __u64 lhash = hash;
348 struct ll_inode_info *lli = ll_i2info(dir);
349 int hash64 = ll_i2sbi(dir)->ll_flags & LL_SBI_64BIT_HASH;
350
351 mode = LCK_PR;
352 rc = md_lock_match(ll_i2sbi(dir)->ll_md_exp, LDLM_FL_BLOCK_GRANTED,
353 ll_inode2fid(dir), LDLM_IBITS, &policy, mode, &lockh);
354 if (!rc) {
f2145eae
BK
355 struct ldlm_enqueue_info einfo = {
356 .ei_type = LDLM_IBITS,
357 .ei_mode = mode,
358 .ei_cb_bl = ll_md_blocking_ast,
359 .ei_cb_cp = ldlm_completion_ast,
360 };
d7e09d03
PT
361 struct lookup_intent it = { .it_op = IT_READDIR };
362 struct ptlrpc_request *request;
363 struct md_op_data *op_data;
364
588de43a 365 op_data = ll_prep_md_op_data(NULL, dir, dir, NULL, 0, 0,
d7e09d03
PT
366 LUSTRE_OPC_ANY, NULL);
367 if (IS_ERR(op_data))
368 return (void *)op_data;
369
370 rc = md_enqueue(ll_i2sbi(dir)->ll_md_exp, &einfo, &it,
371 op_data, &lockh, NULL, 0, NULL, 0);
372
373 ll_finish_md_op_data(op_data);
374
375 request = (struct ptlrpc_request *)it.d.lustre.it_data;
376 if (request)
377 ptlrpc_req_finished(request);
378 if (rc < 0) {
b0f5aad5 379 CERROR("lock enqueue: "DFID" at %llu: rc %d\n",
d7e09d03
PT
380 PFID(ll_inode2fid(dir)), hash, rc);
381 return ERR_PTR(rc);
382 }
383
384 CDEBUG(D_INODE, "setting lr_lvb_inode to inode %p (%lu/%u)\n",
385 dir, dir->i_ino, dir->i_generation);
386 md_set_lock_data(ll_i2sbi(dir)->ll_md_exp,
387 &it.d.lustre.it_lock_handle, dir, NULL);
388 } else {
389 /* for cross-ref object, l_ast_data of the lock may not be set,
390 * we reset it here */
391 md_set_lock_data(ll_i2sbi(dir)->ll_md_exp, &lockh.cookie,
392 dir, NULL);
393 }
394 ldlm_lock_dump_handle(D_OTHER, &lockh);
395
396 mutex_lock(&lli->lli_readdir_mutex);
397 page = ll_dir_page_locate(dir, &lhash, &start, &end);
398 if (IS_ERR(page)) {
b0f5aad5 399 CERROR("dir page locate: "DFID" at %llu: rc %ld\n",
d7e09d03 400 PFID(ll_inode2fid(dir)), lhash, PTR_ERR(page));
34e1f2bb 401 goto out_unlock;
d7e09d03
PT
402 } else if (page != NULL) {
403 /*
404 * XXX nikita: not entirely correct handling of a corner case:
405 * suppose hash chain of entries with hash value HASH crosses
406 * border between pages P0 and P1. First both P0 and P1 are
407 * cached, seekdir() is called for some entry from the P0 part
408 * of the chain. Later P0 goes out of cache. telldir(HASH)
409 * happens and finds P1, as it starts with matching hash
410 * value. Remaining entries from P0 part of the chain are
411 * skipped. (Is that really a bug?)
412 *
413 * Possible solutions: 0. don't cache P1 is such case, handle
414 * it as an "overflow" page. 1. invalidate all pages at
415 * once. 2. use HASH|1 as an index for P1.
416 */
34e1f2bb 417 goto hash_collision;
d7e09d03
PT
418 }
419
420 page = read_cache_page(mapping, hash_x_index(hash, hash64),
421 ll_dir_filler, &lhash);
422 if (IS_ERR(page)) {
b0f5aad5 423 CERROR("read cache page: "DFID" at %llu: rc %ld\n",
d7e09d03 424 PFID(ll_inode2fid(dir)), hash, PTR_ERR(page));
34e1f2bb 425 goto out_unlock;
d7e09d03
PT
426 }
427
428 wait_on_page_locked(page);
429 (void)kmap(page);
430 if (!PageUptodate(page)) {
b0f5aad5 431 CERROR("page not updated: "DFID" at %llu: rc %d\n",
d7e09d03
PT
432 PFID(ll_inode2fid(dir)), hash, -5);
433 goto fail;
434 }
435 if (!PageChecked(page))
436 ll_check_page(dir, page);
437 if (PageError(page)) {
b0f5aad5 438 CERROR("page error: "DFID" at %llu: rc %d\n",
d7e09d03
PT
439 PFID(ll_inode2fid(dir)), hash, -5);
440 goto fail;
441 }
442hash_collision:
443 dp = page_address(page);
444 if (BITS_PER_LONG == 32 && hash64) {
445 start = le64_to_cpu(dp->ldp_hash_start) >> 32;
446 end = le64_to_cpu(dp->ldp_hash_end) >> 32;
447 lhash = hash >> 32;
448 } else {
449 start = le64_to_cpu(dp->ldp_hash_start);
450 end = le64_to_cpu(dp->ldp_hash_end);
451 lhash = hash;
452 }
453 if (end == start) {
454 LASSERT(start == lhash);
b0f5aad5 455 CWARN("Page-wide hash collision: %llu\n", end);
d7e09d03 456 if (BITS_PER_LONG == 32 && hash64)
b0f5aad5 457 CWARN("Real page-wide hash collision at [%llu %llu] with hash %llu\n",
d7e09d03
PT
458 le64_to_cpu(dp->ldp_hash_start),
459 le64_to_cpu(dp->ldp_hash_end), hash);
460 /*
461 * Fetch whole overflow chain...
462 *
463 * XXX not yet.
464 */
465 goto fail;
466 }
467out_unlock:
468 mutex_unlock(&lli->lli_readdir_mutex);
469 ldlm_lock_decref(&lockh, mode);
470 return page;
471
472fail:
473 ll_release_page(page, 1);
474 page = ERR_PTR(-EIO);
475 goto out_unlock;
476}
477
0b09d381 478int ll_dir_read(struct inode *inode, struct dir_context *ctx)
d7e09d03
PT
479{
480 struct ll_inode_info *info = ll_i2info(inode);
481 struct ll_sb_info *sbi = ll_i2sbi(inode);
0b09d381 482 __u64 pos = ctx->pos;
d7e09d03
PT
483 int api32 = ll_need_32bit_api(sbi);
484 int hash64 = sbi->ll_flags & LL_SBI_64BIT_HASH;
485 struct page *page;
486 struct ll_dir_chain chain;
487 int done = 0;
488 int rc = 0;
d7e09d03
PT
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);
0b09d381 541 ctx->pos = lhash;
d7e09d03
PT
542 /* For 'll_nfs_get_name_filldir()', it will try
543 * to access the 'ent' through its 'lde_name',
0b09d381
PT
544 * so the parameter 'name' for 'ctx->actor()'
545 * must be part of the 'ent'.
546 */
547 done = !dir_emit(ctx, ent->lde_name,
548 namelen, ino, type);
d7e09d03
PT
549 }
550 next = le64_to_cpu(dp->ldp_hash_end);
551 if (!done) {
552 pos = next;
553 if (pos == MDS_DIR_END_OFF) {
554 /*
555 * End of directory reached.
556 */
557 done = 1;
558 ll_release_page(page, 0);
559 } else if (1 /* chain is exhausted*/) {
560 /*
561 * Normal case: continue to the next
562 * page.
563 */
564 ll_release_page(page,
565 le32_to_cpu(dp->ldp_flags) &
566 LDF_COLLIDE);
567 next = pos;
568 page = ll_get_dir_page(inode, pos,
569 &chain);
570 } else {
571 /*
572 * go into overflow page.
573 */
574 LASSERT(le32_to_cpu(dp->ldp_flags) &
575 LDF_COLLIDE);
576 ll_release_page(page, 1);
577 }
578 } else {
579 pos = hash;
580 ll_release_page(page, 0);
581 }
582 } else {
583 rc = PTR_ERR(page);
584 CERROR("error reading dir "DFID" at %lu: rc %d\n",
585 PFID(&info->lli_fid), (unsigned long)pos, rc);
586 }
587 }
588
0b09d381 589 ctx->pos = pos;
d7e09d03 590 ll_dir_chain_fini(&chain);
0a3bdb00 591 return rc;
d7e09d03
PT
592}
593
0b09d381 594static int ll_readdir(struct file *filp, struct dir_context *ctx)
d7e09d03
PT
595{
596 struct inode *inode = filp->f_dentry->d_inode;
597 struct ll_file_data *lfd = LUSTRE_FPRIVATE(filp);
598 struct ll_sb_info *sbi = ll_i2sbi(inode);
d7e09d03
PT
599 int hash64 = sbi->ll_flags & LL_SBI_64BIT_HASH;
600 int api32 = ll_need_32bit_api(sbi);
601 int rc;
d7e09d03 602
2d00bd17
JP
603 CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p) pos %lu/%llu 32bit_api %d\n",
604 inode->i_ino, inode->i_generation,
0b09d381 605 inode, (unsigned long)lfd->lfd_pos, i_size_read(inode), api32);
d7e09d03 606
34e1f2bb 607 if (lfd->lfd_pos == MDS_DIR_END_OFF) {
d7e09d03
PT
608 /*
609 * end-of-file.
610 */
34e1f2bb
JL
611 rc = 0;
612 goto out;
613 }
d7e09d03 614
0b09d381
PT
615 ctx->pos = lfd->lfd_pos;
616 rc = ll_dir_read(inode, ctx);
617 lfd->lfd_pos = ctx->pos;
618 if (ctx->pos == MDS_DIR_END_OFF) {
d7e09d03 619 if (api32)
0b09d381 620 ctx->pos = LL_DIR_END_OFF_32BIT;
d7e09d03 621 else
0b09d381 622 ctx->pos = LL_DIR_END_OFF;
d7e09d03
PT
623 } else {
624 if (api32 && hash64)
0b09d381 625 ctx->pos >>= 32;
d7e09d03
PT
626 }
627 filp->f_version = inode->i_version;
d7e09d03
PT
628
629out:
630 if (!rc)
631 ll_stats_ops_tally(sbi, LPROC_LL_READDIR, 1);
632
0a3bdb00 633 return rc;
d7e09d03
PT
634}
635
2d95f10e 636static int ll_send_mgc_param(struct obd_export *mgc, char *string)
d7e09d03
PT
637{
638 struct mgs_send_param *msp;
639 int rc = 0;
640
496a51bd 641 msp = kzalloc(sizeof(*msp), GFP_NOFS);
d7e09d03
PT
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
655int ll_dir_setdirstripe(struct inode *dir, struct lmv_user_md *lump,
656 char *filename)
657{
658 struct ptlrpc_request *request = NULL;
659 struct md_op_data *op_data;
660 struct ll_sb_info *sbi = ll_i2sbi(dir);
661 int mode;
662 int err;
663
d7e09d03
PT
664 mode = (0755 & (S_IRWXUGO|S_ISVTX) & ~current->fs->umask) | S_IFDIR;
665 op_data = ll_prep_md_op_data(NULL, dir, NULL, filename,
666 strlen(filename), mode, LUSTRE_OPC_MKDIR,
667 lump);
34e1f2bb
JL
668 if (IS_ERR(op_data)) {
669 err = PTR_ERR(op_data);
670 goto err_exit;
671 }
d7e09d03
PT
672
673 op_data->op_cli_flags |= CLI_SET_MEA;
674 err = md_create(sbi->ll_md_exp, op_data, lump, sizeof(*lump), mode,
4b1a25f0
PT
675 from_kuid(&init_user_ns, current_fsuid()),
676 from_kgid(&init_user_ns, current_fsgid()),
d7e09d03
PT
677 cfs_curproc_cap_pack(), 0, &request);
678 ll_finish_md_op_data(op_data);
679 if (err)
34e1f2bb 680 goto err_exit;
d7e09d03
PT
681err_exit:
682 ptlrpc_req_finished(request);
683 return err;
684}
685
686int ll_dir_setstripe(struct inode *inode, struct lov_user_md *lump,
687 int set_default)
688{
689 struct ll_sb_info *sbi = ll_i2sbi(inode);
690 struct md_op_data *op_data;
691 struct ptlrpc_request *req = NULL;
692 int rc = 0;
693 struct lustre_sb_info *lsi = s2lsi(inode->i_sb);
694 struct obd_device *mgc = lsi->lsi_mgc;
695 int lum_size;
d7e09d03
PT
696
697 if (lump != NULL) {
698 /*
699 * This is coming from userspace, so should be in
700 * local endian. But the MDS would like it in little
701 * endian, so we swab it before we send it.
702 */
703 switch (lump->lmm_magic) {
704 case LOV_USER_MAGIC_V1: {
705 if (lump->lmm_magic != cpu_to_le32(LOV_USER_MAGIC_V1))
706 lustre_swab_lov_user_md_v1(lump);
707 lum_size = sizeof(struct lov_user_md_v1);
708 break;
709 }
710 case LOV_USER_MAGIC_V3: {
711 if (lump->lmm_magic != cpu_to_le32(LOV_USER_MAGIC_V3))
712 lustre_swab_lov_user_md_v3(
713 (struct lov_user_md_v3 *)lump);
714 lum_size = sizeof(struct lov_user_md_v3);
715 break;
716 }
717 default: {
2d00bd17
JP
718 CDEBUG(D_IOCTL, "bad userland LOV MAGIC: %#08x != %#08x nor %#08x\n",
719 lump->lmm_magic, LOV_USER_MAGIC_V1,
720 LOV_USER_MAGIC_V3);
0a3bdb00 721 return -EINVAL;
d7e09d03
PT
722 }
723 }
724 } else {
725 lum_size = sizeof(struct lov_user_md_v1);
726 }
727
728 op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL, 0, 0,
729 LUSTRE_OPC_ANY, NULL);
730 if (IS_ERR(op_data))
0a3bdb00 731 return PTR_ERR(op_data);
d7e09d03
PT
732
733 if (lump != NULL && lump->lmm_magic == cpu_to_le32(LMV_USER_MAGIC))
734 op_data->op_cli_flags |= CLI_SET_MEA;
735
736 /* swabbing is done in lov_setstripe() on server side */
737 rc = md_setattr(sbi->ll_md_exp, op_data, lump, lum_size,
738 NULL, 0, &req, NULL);
739 ll_finish_md_op_data(op_data);
740 ptlrpc_req_finished(req);
741 if (rc) {
742 if (rc != -EPERM && rc != -EACCES)
743 CERROR("mdc_setattr fails: rc = %d\n", rc);
744 }
745
746 /* In the following we use the fact that LOV_USER_MAGIC_V1 and
747 LOV_USER_MAGIC_V3 have the same initial fields so we do not
bef31c78 748 need to make the distinction between the 2 versions */
d7e09d03
PT
749 if (set_default && mgc->u.cli.cl_mgc_mgsexp) {
750 char *param = NULL;
751 char *buf;
752
496a51bd
JL
753 param = kzalloc(MGS_PARAM_MAXLEN, GFP_NOFS);
754 if (!param) {
34e1f2bb
JL
755 rc = -ENOMEM;
756 goto end;
757 }
d7e09d03
PT
758
759 buf = param;
760 /* Get fsname and assume devname to be -MDT0000. */
761 ll_get_fsname(inode->i_sb, buf, MTI_NAME_MAXLEN);
762 strcat(buf, "-MDT0000.lov");
763 buf += strlen(buf);
764
765 /* Set root stripesize */
766 sprintf(buf, ".stripesize=%u",
767 lump ? le32_to_cpu(lump->lmm_stripe_size) : 0);
768 rc = ll_send_mgc_param(mgc->u.cli.cl_mgc_mgsexp, param);
769 if (rc)
34e1f2bb 770 goto end;
d7e09d03
PT
771
772 /* Set root stripecount */
773 sprintf(buf, ".stripecount=%hd",
774 lump ? le16_to_cpu(lump->lmm_stripe_count) : 0);
775 rc = ll_send_mgc_param(mgc->u.cli.cl_mgc_mgsexp, param);
776 if (rc)
34e1f2bb 777 goto end;
d7e09d03
PT
778
779 /* Set root stripeoffset */
780 sprintf(buf, ".stripeoffset=%hd",
781 lump ? le16_to_cpu(lump->lmm_stripe_offset) :
782 (typeof(lump->lmm_stripe_offset))(-1));
783 rc = ll_send_mgc_param(mgc->u.cli.cl_mgc_mgsexp, param);
784
785end:
786 if (param != NULL)
787 OBD_FREE(param, MGS_PARAM_MAXLEN);
788 }
0a3bdb00 789 return rc;
d7e09d03
PT
790}
791
792int ll_dir_getstripe(struct inode *inode, struct lov_mds_md **lmmp,
793 int *lmm_size, struct ptlrpc_request **request)
794{
795 struct ll_sb_info *sbi = ll_i2sbi(inode);
796 struct mdt_body *body;
797 struct lov_mds_md *lmm = NULL;
798 struct ptlrpc_request *req = NULL;
799 int rc, lmmsize;
800 struct md_op_data *op_data;
801
44779340 802 rc = ll_get_default_mdsize(sbi, &lmmsize);
d7e09d03 803 if (rc)
0a3bdb00 804 return rc;
d7e09d03
PT
805
806 op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL,
807 0, lmmsize, LUSTRE_OPC_ANY,
808 NULL);
809 if (IS_ERR(op_data))
0a3bdb00 810 return PTR_ERR(op_data);
d7e09d03
PT
811
812 op_data->op_valid = OBD_MD_FLEASIZE | OBD_MD_FLDIREA;
813 rc = md_getattr(sbi->ll_md_exp, op_data, &req);
814 ll_finish_md_op_data(op_data);
815 if (rc < 0) {
2d00bd17
JP
816 CDEBUG(D_INFO, "md_getattr failed on inode %lu/%u: rc %d\n",
817 inode->i_ino,
d7e09d03 818 inode->i_generation, rc);
34e1f2bb 819 goto out;
d7e09d03
PT
820 }
821
822 body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
823 LASSERT(body != NULL);
824
825 lmmsize = body->eadatasize;
826
827 if (!(body->valid & (OBD_MD_FLEASIZE | OBD_MD_FLDIREA)) ||
828 lmmsize == 0) {
34e1f2bb
JL
829 rc = -ENODATA;
830 goto out;
d7e09d03
PT
831 }
832
833 lmm = req_capsule_server_sized_get(&req->rq_pill,
834 &RMF_MDT_MD, lmmsize);
835 LASSERT(lmm != NULL);
836
837 /*
838 * This is coming from the MDS, so is probably in
839 * little endian. We convert it to host endian before
840 * passing it to userspace.
841 */
842 /* We don't swab objects for directories */
843 switch (le32_to_cpu(lmm->lmm_magic)) {
844 case LOV_MAGIC_V1:
845 if (LOV_MAGIC != cpu_to_le32(LOV_MAGIC))
846 lustre_swab_lov_user_md_v1((struct lov_user_md_v1 *)lmm);
847 break;
848 case LOV_MAGIC_V3:
849 if (LOV_MAGIC != cpu_to_le32(LOV_MAGIC))
850 lustre_swab_lov_user_md_v3((struct lov_user_md_v3 *)lmm);
851 break;
852 default:
853 CERROR("unknown magic: %lX\n", (unsigned long)lmm->lmm_magic);
854 rc = -EPROTO;
855 }
856out:
857 *lmmp = lmm;
858 *lmm_size = lmmsize;
859 *request = req;
860 return rc;
861}
862
863/*
864 * Get MDT index for the inode.
865 */
866int ll_get_mdt_idx(struct inode *inode)
867{
868 struct ll_sb_info *sbi = ll_i2sbi(inode);
869 struct md_op_data *op_data;
870 int rc, mdtidx;
d7e09d03
PT
871
872 op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL, 0,
873 0, LUSTRE_OPC_ANY, NULL);
874 if (IS_ERR(op_data))
0a3bdb00 875 return PTR_ERR(op_data);
d7e09d03
PT
876
877 op_data->op_flags |= MF_GET_MDT_IDX;
878 rc = md_getattr(sbi->ll_md_exp, op_data, NULL);
879 mdtidx = op_data->op_mds;
880 ll_finish_md_op_data(op_data);
881 if (rc < 0) {
882 CDEBUG(D_INFO, "md_getattr_name: %d\n", rc);
0a3bdb00 883 return rc;
d7e09d03
PT
884 }
885 return mdtidx;
886}
887
888/**
889 * Generic handler to do any pre-copy work.
890 *
891 * It send a first hsm_progress (with extent length == 0) to coordinator as a
892 * first information for it that real work has started.
893 *
894 * Moreover, for a ARCHIVE request, it will sample the file data version and
895 * store it in \a copy.
896 *
897 * \return 0 on success.
898 */
899static int ll_ioc_copy_start(struct super_block *sb, struct hsm_copy *copy)
900{
901 struct ll_sb_info *sbi = ll_s2sbi(sb);
902 struct hsm_progress_kernel hpk;
903 int rc;
d7e09d03
PT
904
905 /* Forge a hsm_progress based on data from copy. */
906 hpk.hpk_fid = copy->hc_hai.hai_fid;
907 hpk.hpk_cookie = copy->hc_hai.hai_cookie;
908 hpk.hpk_extent.offset = copy->hc_hai.hai_extent.offset;
909 hpk.hpk_extent.length = 0;
910 hpk.hpk_flags = 0;
911 hpk.hpk_errval = 0;
912 hpk.hpk_data_version = 0;
913
914
915 /* For archive request, we need to read the current file version. */
916 if (copy->hc_hai.hai_action == HSMA_ARCHIVE) {
917 struct inode *inode;
918 __u64 data_version = 0;
919
920 /* Get inode for this fid */
921 inode = search_inode_for_lustre(sb, &copy->hc_hai.hai_fid);
922 if (IS_ERR(inode)) {
923 hpk.hpk_flags |= HP_FLAG_RETRY;
924 /* hpk_errval is >= 0 */
925 hpk.hpk_errval = -PTR_ERR(inode);
34e1f2bb
JL
926 rc = PTR_ERR(inode);
927 goto progress;
d7e09d03
PT
928 }
929
930 /* Read current file data version */
931 rc = ll_data_version(inode, &data_version, 1);
932 iput(inode);
933 if (rc != 0) {
934 CDEBUG(D_HSM, "Could not read file data version of "
55f5a824 935 DFID" (rc = %d). Archive request (%#llx) could not be done.\n",
d7e09d03
PT
936 PFID(&copy->hc_hai.hai_fid), rc,
937 copy->hc_hai.hai_cookie);
938 hpk.hpk_flags |= HP_FLAG_RETRY;
939 /* hpk_errval must be >= 0 */
940 hpk.hpk_errval = -rc;
34e1f2bb 941 goto progress;
d7e09d03
PT
942 }
943
944 /* Store it the hsm_copy for later copytool use.
945 * Always modified even if no lsm. */
946 copy->hc_data_version = data_version;
947 }
948
949progress:
950 rc = obd_iocontrol(LL_IOC_HSM_PROGRESS, sbi->ll_md_exp, sizeof(hpk),
951 &hpk, NULL);
952
0a3bdb00 953 return rc;
d7e09d03
PT
954}
955
956/**
957 * Generic handler to do any post-copy work.
958 *
959 * It will send the last hsm_progress update to coordinator to inform it
960 * that copy is finished and whether it was successful or not.
961 *
962 * Moreover,
963 * - for ARCHIVE request, it will sample the file data version and compare it
964 * with the version saved in ll_ioc_copy_start(). If they do not match, copy
965 * will be considered as failed.
966 * - for RESTORE request, it will sample the file data version and send it to
967 * coordinator which is useful if the file was imported as 'released'.
968 *
969 * \return 0 on success.
970 */
971static int ll_ioc_copy_end(struct super_block *sb, struct hsm_copy *copy)
972{
973 struct ll_sb_info *sbi = ll_s2sbi(sb);
974 struct hsm_progress_kernel hpk;
975 int rc;
d7e09d03
PT
976
977 /* If you modify the logic here, also check llapi_hsm_copy_end(). */
978 /* Take care: copy->hc_hai.hai_action, len, gid and data are not
979 * initialized if copy_end was called with copy == NULL.
980 */
981
982 /* Forge a hsm_progress based on data from copy. */
983 hpk.hpk_fid = copy->hc_hai.hai_fid;
984 hpk.hpk_cookie = copy->hc_hai.hai_cookie;
985 hpk.hpk_extent = copy->hc_hai.hai_extent;
986 hpk.hpk_flags = copy->hc_flags | HP_FLAG_COMPLETED;
987 hpk.hpk_errval = copy->hc_errval;
988 hpk.hpk_data_version = 0;
989
990 /* For archive request, we need to check the file data was not changed.
991 *
992 * For restore request, we need to send the file data version, this is
993 * useful when the file was created using hsm_import.
994 */
995 if (((copy->hc_hai.hai_action == HSMA_ARCHIVE) ||
996 (copy->hc_hai.hai_action == HSMA_RESTORE)) &&
997 (copy->hc_errval == 0)) {
998 struct inode *inode;
999 __u64 data_version = 0;
1000
1001 /* Get lsm for this fid */
1002 inode = search_inode_for_lustre(sb, &copy->hc_hai.hai_fid);
1003 if (IS_ERR(inode)) {
1004 hpk.hpk_flags |= HP_FLAG_RETRY;
1005 /* hpk_errval must be >= 0 */
1006 hpk.hpk_errval = -PTR_ERR(inode);
34e1f2bb
JL
1007 rc = PTR_ERR(inode);
1008 goto progress;
d7e09d03
PT
1009 }
1010
1011 rc = ll_data_version(inode, &data_version,
1012 copy->hc_hai.hai_action == HSMA_ARCHIVE);
1013 iput(inode);
1014 if (rc) {
2d00bd17 1015 CDEBUG(D_HSM, "Could not read file data version. Request could not be confirmed.\n");
d7e09d03
PT
1016 if (hpk.hpk_errval == 0)
1017 hpk.hpk_errval = -rc;
34e1f2bb 1018 goto progress;
d7e09d03
PT
1019 }
1020
1021 /* Store it the hsm_copy for later copytool use.
1022 * Always modified even if no lsm. */
1023 hpk.hpk_data_version = data_version;
1024
1025 /* File could have been stripped during archiving, so we need
1026 * to check anyway. */
1027 if ((copy->hc_hai.hai_action == HSMA_ARCHIVE) &&
1028 (copy->hc_data_version != data_version)) {
2d00bd17 1029 CDEBUG(D_HSM, "File data version mismatched. File content was changed during archiving. "
55f5a824 1030 DFID", start:%#llx current:%#llx\n",
d7e09d03
PT
1031 PFID(&copy->hc_hai.hai_fid),
1032 copy->hc_data_version, data_version);
1033 /* File was changed, send error to cdt. Do not ask for
1034 * retry because if a file is modified frequently,
1035 * the cdt will loop on retried archive requests.
1036 * The policy engine will ask for a new archive later
1037 * when the file will not be modified for some tunable
1038 * time */
1039 /* we do not notify caller */
1040 hpk.hpk_flags &= ~HP_FLAG_RETRY;
1041 /* hpk_errval must be >= 0 */
1042 hpk.hpk_errval = EBUSY;
1043 }
1044
1045 }
1046
1047progress:
1048 rc = obd_iocontrol(LL_IOC_HSM_PROGRESS, sbi->ll_md_exp, sizeof(hpk),
1049 &hpk, NULL);
1050
0a3bdb00 1051 return rc;
d7e09d03
PT
1052}
1053
1054
b0337d6c
JH
1055static int copy_and_ioctl(int cmd, struct obd_export *exp,
1056 const void __user *data, size_t size)
d7e09d03 1057{
b0337d6c 1058 void *copy;
d7e09d03
PT
1059 int rc;
1060
496a51bd
JL
1061 copy = kzalloc(size, GFP_NOFS);
1062 if (!copy)
d7e09d03 1063 return -ENOMEM;
b0337d6c
JH
1064
1065 if (copy_from_user(copy, data, size)) {
1066 rc = -EFAULT;
1067 goto out;
d7e09d03 1068 }
b0337d6c
JH
1069
1070 rc = obd_iocontrol(cmd, exp, size, copy, NULL);
1071out:
1072 OBD_FREE(copy, size);
1073
d7e09d03
PT
1074 return rc;
1075}
1076
1077static int quotactl_ioctl(struct ll_sb_info *sbi, struct if_quotactl *qctl)
1078{
1079 int cmd = qctl->qc_cmd;
1080 int type = qctl->qc_type;
1081 int id = qctl->qc_id;
1082 int valid = qctl->qc_valid;
1083 int rc = 0;
d7e09d03
PT
1084
1085 switch (cmd) {
1086 case LUSTRE_Q_INVALIDATE:
1087 case LUSTRE_Q_FINVALIDATE:
1088 case Q_QUOTAON:
1089 case Q_QUOTAOFF:
1090 case Q_SETQUOTA:
1091 case Q_SETINFO:
2eb90a75 1092 if (!capable(CFS_CAP_SYS_ADMIN) ||
d7e09d03 1093 sbi->ll_flags & LL_SBI_RMT_CLIENT)
0a3bdb00 1094 return -EPERM;
d7e09d03
PT
1095 break;
1096 case Q_GETQUOTA:
4b1a25f0 1097 if (((type == USRQUOTA &&
8b9e418c 1098 !uid_eq(current_euid(), make_kuid(&init_user_ns, id))) ||
4b1a25f0
PT
1099 (type == GRPQUOTA &&
1100 !in_egroup_p(make_kgid(&init_user_ns, id)))) &&
2eb90a75 1101 (!capable(CFS_CAP_SYS_ADMIN) ||
d7e09d03 1102 sbi->ll_flags & LL_SBI_RMT_CLIENT))
0a3bdb00 1103 return -EPERM;
d7e09d03
PT
1104 break;
1105 case Q_GETINFO:
1106 break;
1107 default:
1108 CERROR("unsupported quotactl op: %#x\n", cmd);
0a3bdb00 1109 return -ENOTTY;
d7e09d03
PT
1110 }
1111
1112 if (valid != QC_GENERAL) {
1113 if (sbi->ll_flags & LL_SBI_RMT_CLIENT)
0a3bdb00 1114 return -EOPNOTSUPP;
d7e09d03
PT
1115
1116 if (cmd == Q_GETINFO)
1117 qctl->qc_cmd = Q_GETOINFO;
1118 else if (cmd == Q_GETQUOTA)
1119 qctl->qc_cmd = Q_GETOQUOTA;
1120 else
0a3bdb00 1121 return -EINVAL;
d7e09d03
PT
1122
1123 switch (valid) {
1124 case QC_MDTIDX:
1125 rc = obd_iocontrol(OBD_IOC_QUOTACTL, sbi->ll_md_exp,
1126 sizeof(*qctl), qctl, NULL);
1127 break;
1128 case QC_OSTIDX:
1129 rc = obd_iocontrol(OBD_IOC_QUOTACTL, sbi->ll_dt_exp,
1130 sizeof(*qctl), qctl, NULL);
1131 break;
1132 case QC_UUID:
1133 rc = obd_iocontrol(OBD_IOC_QUOTACTL, sbi->ll_md_exp,
1134 sizeof(*qctl), qctl, NULL);
1135 if (rc == -EAGAIN)
1136 rc = obd_iocontrol(OBD_IOC_QUOTACTL,
1137 sbi->ll_dt_exp,
1138 sizeof(*qctl), qctl, NULL);
1139 break;
1140 default:
1141 rc = -EINVAL;
1142 break;
1143 }
1144
1145 if (rc)
0a3bdb00 1146 return rc;
d7e09d03
PT
1147
1148 qctl->qc_cmd = cmd;
1149 } else {
1150 struct obd_quotactl *oqctl;
1151
496a51bd
JL
1152 oqctl = kzalloc(sizeof(*oqctl), GFP_NOFS);
1153 if (!oqctl)
0a3bdb00 1154 return -ENOMEM;
d7e09d03
PT
1155
1156 QCTL_COPY(oqctl, qctl);
1157 rc = obd_quotactl(sbi->ll_md_exp, oqctl);
1158 if (rc) {
1159 if (rc != -EALREADY && cmd == Q_QUOTAON) {
1160 oqctl->qc_cmd = Q_QUOTAOFF;
1161 obd_quotactl(sbi->ll_md_exp, oqctl);
1162 }
1163 OBD_FREE_PTR(oqctl);
0a3bdb00 1164 return rc;
d7e09d03
PT
1165 }
1166 /* If QIF_SPACE is not set, client should collect the
1167 * space usage from OSSs by itself */
1168 if (cmd == Q_GETQUOTA &&
1169 !(oqctl->qc_dqblk.dqb_valid & QIF_SPACE) &&
1170 !oqctl->qc_dqblk.dqb_curspace) {
1171 struct obd_quotactl *oqctl_tmp;
1172
496a51bd
JL
1173 oqctl_tmp = kzalloc(sizeof(*oqctl_tmp), GFP_NOFS);
1174 if (!oqctl_tmp) {
34e1f2bb
JL
1175 rc = -ENOMEM;
1176 goto out;
1177 }
d7e09d03
PT
1178
1179 oqctl_tmp->qc_cmd = Q_GETOQUOTA;
1180 oqctl_tmp->qc_id = oqctl->qc_id;
1181 oqctl_tmp->qc_type = oqctl->qc_type;
1182
1183 /* collect space usage from OSTs */
1184 oqctl_tmp->qc_dqblk.dqb_curspace = 0;
1185 rc = obd_quotactl(sbi->ll_dt_exp, oqctl_tmp);
1186 if (!rc || rc == -EREMOTEIO) {
1187 oqctl->qc_dqblk.dqb_curspace =
1188 oqctl_tmp->qc_dqblk.dqb_curspace;
1189 oqctl->qc_dqblk.dqb_valid |= QIF_SPACE;
1190 }
1191
1192 /* collect space & inode usage from MDTs */
1193 oqctl_tmp->qc_dqblk.dqb_curspace = 0;
1194 oqctl_tmp->qc_dqblk.dqb_curinodes = 0;
1195 rc = obd_quotactl(sbi->ll_md_exp, oqctl_tmp);
1196 if (!rc || rc == -EREMOTEIO) {
1197 oqctl->qc_dqblk.dqb_curspace +=
1198 oqctl_tmp->qc_dqblk.dqb_curspace;
1199 oqctl->qc_dqblk.dqb_curinodes =
1200 oqctl_tmp->qc_dqblk.dqb_curinodes;
1201 oqctl->qc_dqblk.dqb_valid |= QIF_INODES;
1202 } else {
1203 oqctl->qc_dqblk.dqb_valid &= ~QIF_SPACE;
1204 }
1205
1206 OBD_FREE_PTR(oqctl_tmp);
1207 }
1208out:
1209 QCTL_COPY(qctl, oqctl);
1210 OBD_FREE_PTR(oqctl);
1211 }
1212
0a3bdb00 1213 return rc;
d7e09d03
PT
1214}
1215
1216static char *
1217ll_getname(const char __user *filename)
1218{
1219 int ret = 0, len;
1220 char *tmp = __getname();
1221
1222 if (!tmp)
1223 return ERR_PTR(-ENOMEM);
1224
1225 len = strncpy_from_user(tmp, filename, PATH_MAX);
1226 if (len == 0)
1227 ret = -ENOENT;
1228 else if (len > PATH_MAX)
1229 ret = -ENAMETOOLONG;
1230
1231 if (ret) {
1232 __putname(tmp);
1233 tmp = ERR_PTR(ret);
1234 }
1235 return tmp;
1236}
1237
1238#define ll_putname(filename) __putname(filename)
1239
1240static long ll_dir_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1241{
1242 struct inode *inode = file->f_dentry->d_inode;
1243 struct ll_sb_info *sbi = ll_i2sbi(inode);
1244 struct obd_ioctl_data *data;
1245 int rc = 0;
d7e09d03
PT
1246
1247 CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p), cmd=%#x\n",
1248 inode->i_ino, inode->i_generation, inode, cmd);
1249
1250 /* asm-ppc{,64} declares TCGETS, et. al. as type 't' not 'T' */
1251 if (_IOC_TYPE(cmd) == 'T' || _IOC_TYPE(cmd) == 't') /* tty ioctls */
1252 return -ENOTTY;
1253
1254 ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_IOCTL, 1);
a58a38ac 1255 switch (cmd) {
d7e09d03
PT
1256 case FSFILT_IOC_GETFLAGS:
1257 case FSFILT_IOC_SETFLAGS:
0a3bdb00 1258 return ll_iocontrol(inode, file, cmd, arg);
d7e09d03
PT
1259 case FSFILT_IOC_GETVERSION_OLD:
1260 case FSFILT_IOC_GETVERSION:
0a3bdb00 1261 return put_user(inode->i_generation, (int *)arg);
d7e09d03
PT
1262 /* We need to special case any other ioctls we want to handle,
1263 * to send them to the MDS/OST as appropriate and to properly
1264 * network encode the arg field.
1265 case FSFILT_IOC_SETVERSION_OLD:
1266 case FSFILT_IOC_SETVERSION:
1267 */
1268 case LL_IOC_GET_MDTIDX: {
1269 int mdtidx;
1270
1271 mdtidx = ll_get_mdt_idx(inode);
1272 if (mdtidx < 0)
0a3bdb00 1273 return mdtidx;
d7e09d03 1274
b0126abf 1275 if (put_user((int)mdtidx, (int *)arg))
0a3bdb00 1276 return -EFAULT;
d7e09d03
PT
1277
1278 return 0;
1279 }
1280 case IOC_MDC_LOOKUP: {
1281 struct ptlrpc_request *request = NULL;
1282 int namelen, len = 0;
1283 char *buf = NULL;
1284 char *filename;
1285 struct md_op_data *op_data;
1286
1287 rc = obd_ioctl_getdata(&buf, &len, (void *)arg);
1288 if (rc)
0a3bdb00 1289 return rc;
d7e09d03
PT
1290 data = (void *)buf;
1291
1292 filename = data->ioc_inlbuf1;
1293 namelen = strlen(filename);
1294
1295 if (namelen < 1) {
1296 CDEBUG(D_INFO, "IOC_MDC_LOOKUP missing filename\n");
34e1f2bb
JL
1297 rc = -EINVAL;
1298 goto out_free;
d7e09d03
PT
1299 }
1300
1301 op_data = ll_prep_md_op_data(NULL, inode, NULL, filename, namelen,
1302 0, LUSTRE_OPC_ANY, NULL);
34e1f2bb
JL
1303 if (IS_ERR(op_data)) {
1304 rc = PTR_ERR(op_data);
1305 goto out_free;
1306 }
d7e09d03
PT
1307
1308 op_data->op_valid = OBD_MD_FLID;
1309 rc = md_getattr_name(sbi->ll_md_exp, op_data, &request);
1310 ll_finish_md_op_data(op_data);
1311 if (rc < 0) {
1312 CDEBUG(D_INFO, "md_getattr_name: %d\n", rc);
34e1f2bb 1313 goto out_free;
d7e09d03
PT
1314 }
1315 ptlrpc_req_finished(request);
d7e09d03
PT
1316out_free:
1317 obd_ioctl_freedata(buf, len);
1318 return rc;
1319 }
1320 case LL_IOC_LMV_SETSTRIPE: {
1321 struct lmv_user_md *lum;
1322 char *buf = NULL;
1323 char *filename;
1324 int namelen = 0;
1325 int lumlen = 0;
1326 int len;
1327 int rc;
1328
1329 rc = obd_ioctl_getdata(&buf, &len, (void *)arg);
1330 if (rc)
0a3bdb00 1331 return rc;
d7e09d03
PT
1332
1333 data = (void *)buf;
1334 if (data->ioc_inlbuf1 == NULL || data->ioc_inlbuf2 == NULL ||
34e1f2bb
JL
1335 data->ioc_inllen1 == 0 || data->ioc_inllen2 == 0) {
1336 rc = -EINVAL;
1337 goto lmv_out_free;
1338 }
d7e09d03
PT
1339
1340 filename = data->ioc_inlbuf1;
1341 namelen = data->ioc_inllen1;
1342
1343 if (namelen < 1) {
1344 CDEBUG(D_INFO, "IOC_MDC_LOOKUP missing filename\n");
34e1f2bb
JL
1345 rc = -EINVAL;
1346 goto lmv_out_free;
d7e09d03
PT
1347 }
1348 lum = (struct lmv_user_md *)data->ioc_inlbuf2;
1349 lumlen = data->ioc_inllen2;
1350
1351 if (lum->lum_magic != LMV_USER_MAGIC ||
1352 lumlen != sizeof(*lum)) {
1353 CERROR("%s: wrong lum magic %x or size %d: rc = %d\n",
1354 filename, lum->lum_magic, lumlen, -EFAULT);
34e1f2bb
JL
1355 rc = -EINVAL;
1356 goto lmv_out_free;
d7e09d03
PT
1357 }
1358
1359 /**
1360 * ll_dir_setdirstripe will be used to set dir stripe
1361 * mdc_create--->mdt_reint_create (with dirstripe)
1362 */
1363 rc = ll_dir_setdirstripe(inode, lum, filename);
1364lmv_out_free:
1365 obd_ioctl_freedata(buf, len);
0a3bdb00 1366 return rc;
d7e09d03
PT
1367
1368 }
1369 case LL_IOC_LOV_SETSTRIPE: {
1370 struct lov_user_md_v3 lumv3;
1371 struct lov_user_md_v1 *lumv1 = (struct lov_user_md_v1 *)&lumv3;
1372 struct lov_user_md_v1 *lumv1p = (struct lov_user_md_v1 *)arg;
1373 struct lov_user_md_v3 *lumv3p = (struct lov_user_md_v3 *)arg;
1374
1375 int set_default = 0;
1376
1377 LASSERT(sizeof(lumv3) == sizeof(*lumv3p));
1378 LASSERT(sizeof(lumv3.lmm_objects[0]) ==
1379 sizeof(lumv3p->lmm_objects[0]));
1380 /* first try with v1 which is smaller than v3 */
1381 if (copy_from_user(lumv1, lumv1p, sizeof(*lumv1)))
0a3bdb00 1382 return -EFAULT;
d7e09d03 1383
557732ad 1384 if (lumv1->lmm_magic == LOV_USER_MAGIC_V3) {
d7e09d03 1385 if (copy_from_user(&lumv3, lumv3p, sizeof(lumv3)))
0a3bdb00 1386 return -EFAULT;
d7e09d03
PT
1387 }
1388
1389 if (inode->i_sb->s_root == file->f_dentry)
1390 set_default = 1;
1391
1392 /* in v1 and v3 cases lumv1 points to data */
1393 rc = ll_dir_setstripe(inode, lumv1, set_default);
1394
0a3bdb00 1395 return rc;
d7e09d03
PT
1396 }
1397 case LL_IOC_LMV_GETSTRIPE: {
1398 struct lmv_user_md *lump = (struct lmv_user_md *)arg;
1399 struct lmv_user_md lum;
1400 struct lmv_user_md *tmp;
1401 int lum_size;
1402 int rc = 0;
1403 int mdtindex;
1404
1405 if (copy_from_user(&lum, lump, sizeof(struct lmv_user_md)))
0a3bdb00 1406 return -EFAULT;
d7e09d03
PT
1407
1408 if (lum.lum_magic != LMV_MAGIC_V1)
0a3bdb00 1409 return -EINVAL;
d7e09d03
PT
1410
1411 lum_size = lmv_user_md_size(1, LMV_MAGIC_V1);
496a51bd
JL
1412 tmp = kzalloc(lum_size, GFP_NOFS);
1413 if (!tmp) {
34e1f2bb
JL
1414 rc = -ENOMEM;
1415 goto free_lmv;
1416 }
d7e09d03 1417
7f46528c 1418 *tmp = lum;
d7e09d03
PT
1419 tmp->lum_type = LMV_STRIPE_TYPE;
1420 tmp->lum_stripe_count = 1;
1421 mdtindex = ll_get_mdt_idx(inode);
34e1f2bb
JL
1422 if (mdtindex < 0) {
1423 rc = -ENOMEM;
1424 goto free_lmv;
1425 }
d7e09d03
PT
1426
1427 tmp->lum_stripe_offset = mdtindex;
1428 tmp->lum_objects[0].lum_mds = mdtindex;
1429 memcpy(&tmp->lum_objects[0].lum_fid, ll_inode2fid(inode),
1430 sizeof(struct lu_fid));
34e1f2bb
JL
1431 if (copy_to_user((void *)arg, tmp, lum_size)) {
1432 rc = -EFAULT;
1433 goto free_lmv;
1434 }
d7e09d03
PT
1435free_lmv:
1436 if (tmp)
1437 OBD_FREE(tmp, lum_size);
0a3bdb00 1438 return rc;
d7e09d03
PT
1439 }
1440 case LL_IOC_REMOVE_ENTRY: {
1441 char *filename = NULL;
1442 int namelen = 0;
1443 int rc;
1444
1445 /* Here is a little hack to avoid sending REINT_RMENTRY to
1446 * unsupported server, which might crash the server(LU-2730),
1447 * Because both LVB_TYPE and REINT_RMENTRY will be supported
1448 * on 2.4, we use OBD_CONNECT_LVB_TYPE to detect whether the
1449 * server will support REINT_RMENTRY XXX*/
1450 if (!(exp_connect_flags(sbi->ll_md_exp) & OBD_CONNECT_LVB_TYPE))
1451 return -ENOTSUPP;
1452
1453 filename = ll_getname((const char *)arg);
1454 if (IS_ERR(filename))
0a3bdb00 1455 return PTR_ERR(filename);
d7e09d03
PT
1456
1457 namelen = strlen(filename);
34e1f2bb
JL
1458 if (namelen < 1) {
1459 rc = -EINVAL;
1460 goto out_rmdir;
1461 }
d7e09d03
PT
1462
1463 rc = ll_rmdir_entry(inode, filename, namelen);
1464out_rmdir:
1465 if (filename)
1466 ll_putname(filename);
0a3bdb00 1467 return rc;
d7e09d03
PT
1468 }
1469 case LL_IOC_LOV_SWAP_LAYOUTS:
0a3bdb00 1470 return -EPERM;
d7e09d03 1471 case LL_IOC_OBD_STATFS:
0a3bdb00 1472 return ll_obd_statfs(inode, (void *)arg);
d7e09d03
PT
1473 case LL_IOC_LOV_GETSTRIPE:
1474 case LL_IOC_MDC_GETINFO:
1475 case IOC_MDC_GETFILEINFO:
1476 case IOC_MDC_GETFILESTRIPE: {
1477 struct ptlrpc_request *request = NULL;
1478 struct lov_user_md *lump;
1479 struct lov_mds_md *lmm = NULL;
1480 struct mdt_body *body;
1481 char *filename = NULL;
1482 int lmmsize;
1483
1484 if (cmd == IOC_MDC_GETFILEINFO ||
1485 cmd == IOC_MDC_GETFILESTRIPE) {
1486 filename = ll_getname((const char *)arg);
1487 if (IS_ERR(filename))
0a3bdb00 1488 return PTR_ERR(filename);
d7e09d03
PT
1489
1490 rc = ll_lov_getstripe_ea_info(inode, filename, &lmm,
1491 &lmmsize, &request);
1492 } else {
1493 rc = ll_dir_getstripe(inode, &lmm, &lmmsize, &request);
1494 }
1495
1496 if (request) {
1497 body = req_capsule_server_get(&request->rq_pill,
1498 &RMF_MDT_BODY);
1499 LASSERT(body != NULL);
1500 } else {
34e1f2bb 1501 goto out_req;
d7e09d03
PT
1502 }
1503
1504 if (rc < 0) {
1505 if (rc == -ENODATA && (cmd == IOC_MDC_GETFILEINFO ||
34e1f2bb
JL
1506 cmd == LL_IOC_MDC_GETINFO)) {
1507 rc = 0;
1508 goto skip_lmm;
4d1d413a 1509 } else
34e1f2bb 1510 goto out_req;
d7e09d03
PT
1511 }
1512
1513 if (cmd == IOC_MDC_GETFILESTRIPE ||
1514 cmd == LL_IOC_LOV_GETSTRIPE) {
1515 lump = (struct lov_user_md *)arg;
1516 } else {
1517 struct lov_user_mds_data *lmdp;
1518 lmdp = (struct lov_user_mds_data *)arg;
1519 lump = &lmdp->lmd_lmm;
1520 }
1521 if (copy_to_user(lump, lmm, lmmsize)) {
34e1f2bb
JL
1522 if (copy_to_user(lump, lmm, sizeof(*lump))) {
1523 rc = -EFAULT;
1524 goto out_req;
1525 }
d7e09d03
PT
1526 rc = -EOVERFLOW;
1527 }
eb73f514 1528skip_lmm:
d7e09d03
PT
1529 if (cmd == IOC_MDC_GETFILEINFO || cmd == LL_IOC_MDC_GETINFO) {
1530 struct lov_user_mds_data *lmdp;
1531 lstat_t st = { 0 };
1532
1533 st.st_dev = inode->i_sb->s_dev;
1534 st.st_mode = body->mode;
1535 st.st_nlink = body->nlink;
1536 st.st_uid = body->uid;
1537 st.st_gid = body->gid;
1538 st.st_rdev = body->rdev;
1539 st.st_size = body->size;
1540 st.st_blksize = PAGE_CACHE_SIZE;
1541 st.st_blocks = body->blocks;
1542 st.st_atime = body->atime;
1543 st.st_mtime = body->mtime;
1544 st.st_ctime = body->ctime;
1545 st.st_ino = inode->i_ino;
1546
1547 lmdp = (struct lov_user_mds_data *)arg;
34e1f2bb
JL
1548 if (copy_to_user(&lmdp->lmd_st, &st, sizeof(st))) {
1549 rc = -EFAULT;
1550 goto out_req;
1551 }
d7e09d03
PT
1552 }
1553
eb73f514 1554out_req:
d7e09d03
PT
1555 ptlrpc_req_finished(request);
1556 if (filename)
1557 ll_putname(filename);
1558 return rc;
1559 }
1560 case IOC_LOV_GETINFO: {
1561 struct lov_user_mds_data *lumd;
1562 struct lov_stripe_md *lsm;
1563 struct lov_user_md *lum;
1564 struct lov_mds_md *lmm;
1565 int lmmsize;
1566 lstat_t st;
1567
1568 lumd = (struct lov_user_mds_data *)arg;
1569 lum = &lumd->lmd_lmm;
1570
1571 rc = ll_get_max_mdsize(sbi, &lmmsize);
1572 if (rc)
0a3bdb00 1573 return rc;
d7e09d03
PT
1574
1575 OBD_ALLOC_LARGE(lmm, lmmsize);
73863d83 1576 if (lmm == NULL)
0a3bdb00 1577 return -ENOMEM;
34e1f2bb
JL
1578 if (copy_from_user(lmm, lum, lmmsize)) {
1579 rc = -EFAULT;
1580 goto free_lmm;
1581 }
d7e09d03
PT
1582
1583 switch (lmm->lmm_magic) {
1584 case LOV_USER_MAGIC_V1:
1585 if (LOV_USER_MAGIC_V1 == cpu_to_le32(LOV_USER_MAGIC_V1))
1586 break;
1587 /* swab objects first so that stripes num will be sane */
1588 lustre_swab_lov_user_md_objects(
1589 ((struct lov_user_md_v1 *)lmm)->lmm_objects,
1590 ((struct lov_user_md_v1 *)lmm)->lmm_stripe_count);
1591 lustre_swab_lov_user_md_v1((struct lov_user_md_v1 *)lmm);
1592 break;
1593 case LOV_USER_MAGIC_V3:
1594 if (LOV_USER_MAGIC_V3 == cpu_to_le32(LOV_USER_MAGIC_V3))
1595 break;
1596 /* swab objects first so that stripes num will be sane */
1597 lustre_swab_lov_user_md_objects(
1598 ((struct lov_user_md_v3 *)lmm)->lmm_objects,
1599 ((struct lov_user_md_v3 *)lmm)->lmm_stripe_count);
1600 lustre_swab_lov_user_md_v3((struct lov_user_md_v3 *)lmm);
1601 break;
1602 default:
34e1f2bb
JL
1603 rc = -EINVAL;
1604 goto free_lmm;
d7e09d03
PT
1605 }
1606
1607 rc = obd_unpackmd(sbi->ll_dt_exp, &lsm, lmm, lmmsize);
34e1f2bb
JL
1608 if (rc < 0) {
1609 rc = -ENOMEM;
1610 goto free_lmm;
1611 }
d7e09d03
PT
1612
1613 /* Perform glimpse_size operation. */
1614 memset(&st, 0, sizeof(st));
1615
1616 rc = ll_glimpse_ioctl(sbi, lsm, &st);
1617 if (rc)
34e1f2bb 1618 goto free_lsm;
d7e09d03 1619
34e1f2bb
JL
1620 if (copy_to_user(&lumd->lmd_st, &st, sizeof(st))) {
1621 rc = -EFAULT;
1622 goto free_lsm;
1623 }
d7e09d03 1624
eb73f514 1625free_lsm:
d7e09d03 1626 obd_free_memmd(sbi->ll_dt_exp, &lsm);
eb73f514 1627free_lmm:
d7e09d03
PT
1628 OBD_FREE_LARGE(lmm, lmmsize);
1629 return rc;
1630 }
1631 case OBD_IOC_LLOG_CATINFO: {
0a3bdb00 1632 return -EOPNOTSUPP;
d7e09d03
PT
1633 }
1634 case OBD_IOC_QUOTACHECK: {
1635 struct obd_quotactl *oqctl;
1636 int error = 0;
1637
2eb90a75 1638 if (!capable(CFS_CAP_SYS_ADMIN) ||
d7e09d03 1639 sbi->ll_flags & LL_SBI_RMT_CLIENT)
0a3bdb00 1640 return -EPERM;
d7e09d03 1641
496a51bd 1642 oqctl = kzalloc(sizeof(*oqctl), GFP_NOFS);
d7e09d03 1643 if (!oqctl)
0a3bdb00 1644 return -ENOMEM;
d7e09d03
PT
1645 oqctl->qc_type = arg;
1646 rc = obd_quotacheck(sbi->ll_md_exp, oqctl);
1647 if (rc < 0) {
1648 CDEBUG(D_INFO, "md_quotacheck failed: rc %d\n", rc);
1649 error = rc;
1650 }
1651
1652 rc = obd_quotacheck(sbi->ll_dt_exp, oqctl);
1653 if (rc < 0)
1654 CDEBUG(D_INFO, "obd_quotacheck failed: rc %d\n", rc);
1655
1656 OBD_FREE_PTR(oqctl);
1657 return error ?: rc;
1658 }
1659 case OBD_IOC_POLL_QUOTACHECK: {
1660 struct if_quotacheck *check;
1661
2eb90a75 1662 if (!capable(CFS_CAP_SYS_ADMIN) ||
d7e09d03 1663 sbi->ll_flags & LL_SBI_RMT_CLIENT)
0a3bdb00 1664 return -EPERM;
d7e09d03 1665
496a51bd 1666 check = kzalloc(sizeof(*check), GFP_NOFS);
d7e09d03 1667 if (!check)
0a3bdb00 1668 return -ENOMEM;
d7e09d03
PT
1669
1670 rc = obd_iocontrol(cmd, sbi->ll_md_exp, 0, (void *)check,
1671 NULL);
1672 if (rc) {
1673 CDEBUG(D_QUOTA, "mdc ioctl %d failed: %d\n", cmd, rc);
1674 if (copy_to_user((void *)arg, check,
1675 sizeof(*check)))
1676 CDEBUG(D_QUOTA, "copy_to_user failed\n");
34e1f2bb 1677 goto out_poll;
d7e09d03
PT
1678 }
1679
1680 rc = obd_iocontrol(cmd, sbi->ll_dt_exp, 0, (void *)check,
1681 NULL);
1682 if (rc) {
1683 CDEBUG(D_QUOTA, "osc ioctl %d failed: %d\n", cmd, rc);
1684 if (copy_to_user((void *)arg, check,
1685 sizeof(*check)))
1686 CDEBUG(D_QUOTA, "copy_to_user failed\n");
34e1f2bb 1687 goto out_poll;
d7e09d03 1688 }
eb73f514 1689out_poll:
d7e09d03 1690 OBD_FREE_PTR(check);
0a3bdb00 1691 return rc;
d7e09d03 1692 }
d7e09d03
PT
1693 case LL_IOC_QUOTACTL: {
1694 struct if_quotactl *qctl;
1695
496a51bd 1696 qctl = kzalloc(sizeof(*qctl), GFP_NOFS);
d7e09d03 1697 if (!qctl)
0a3bdb00 1698 return -ENOMEM;
d7e09d03 1699
34e1f2bb
JL
1700 if (copy_from_user(qctl, (void *)arg, sizeof(*qctl))) {
1701 rc = -EFAULT;
1702 goto out_quotactl;
1703 }
d7e09d03
PT
1704
1705 rc = quotactl_ioctl(sbi, qctl);
1706
1d8cb70c 1707 if (rc == 0 && copy_to_user((void *)arg, qctl, sizeof(*qctl)))
d7e09d03
PT
1708 rc = -EFAULT;
1709
eb73f514 1710out_quotactl:
d7e09d03 1711 OBD_FREE_PTR(qctl);
0a3bdb00 1712 return rc;
d7e09d03
PT
1713 }
1714 case OBD_IOC_GETDTNAME:
1715 case OBD_IOC_GETMDNAME:
0a3bdb00 1716 return ll_get_obd_name(inode, cmd, arg);
d7e09d03 1717 case LL_IOC_FLUSHCTX:
0a3bdb00 1718 return ll_flush_ctx(inode);
d7e09d03
PT
1719#ifdef CONFIG_FS_POSIX_ACL
1720 case LL_IOC_RMTACL: {
1721 if (sbi->ll_flags & LL_SBI_RMT_CLIENT &&
1722 inode == inode->i_sb->s_root->d_inode) {
1723 struct ll_file_data *fd = LUSTRE_FPRIVATE(file);
1724
1725 LASSERT(fd != NULL);
1726 rc = rct_add(&sbi->ll_rct, current_pid(), arg);
1727 if (!rc)
1728 fd->fd_flags |= LL_FILE_RMTACL;
0a3bdb00 1729 return rc;
d7e09d03 1730 } else
0a3bdb00 1731 return 0;
d7e09d03
PT
1732 }
1733#endif
1734 case LL_IOC_GETOBDCOUNT: {
1735 int count, vallen;
1736 struct obd_export *exp;
1737
1738 if (copy_from_user(&count, (int *)arg, sizeof(int)))
0a3bdb00 1739 return -EFAULT;
d7e09d03
PT
1740
1741 /* get ost count when count is zero, get mdt count otherwise */
1742 exp = count ? sbi->ll_md_exp : sbi->ll_dt_exp;
1743 vallen = sizeof(count);
1744 rc = obd_get_info(NULL, exp, sizeof(KEY_TGT_COUNT),
1745 KEY_TGT_COUNT, &vallen, &count, NULL);
1746 if (rc) {
1747 CERROR("get target count failed: %d\n", rc);
0a3bdb00 1748 return rc;
d7e09d03
PT
1749 }
1750
1751 if (copy_to_user((int *)arg, &count, sizeof(int)))
0a3bdb00 1752 return -EFAULT;
d7e09d03 1753
0a3bdb00 1754 return 0;
d7e09d03
PT
1755 }
1756 case LL_IOC_PATH2FID:
1757 if (copy_to_user((void *)arg, ll_inode2fid(inode),
1758 sizeof(struct lu_fid)))
0a3bdb00
GKH
1759 return -EFAULT;
1760 return 0;
d7e09d03 1761 case LL_IOC_GET_CONNECT_FLAGS: {
b0126abf 1762 return obd_iocontrol(cmd, sbi->ll_md_exp, 0, NULL, (void *)arg);
d7e09d03
PT
1763 }
1764 case OBD_IOC_CHANGELOG_SEND:
1765 case OBD_IOC_CHANGELOG_CLEAR:
1766 rc = copy_and_ioctl(cmd, sbi->ll_md_exp, (void *)arg,
1767 sizeof(struct ioc_changelog));
0a3bdb00 1768 return rc;
d7e09d03 1769 case OBD_IOC_FID2PATH:
0a3bdb00 1770 return ll_fid2path(inode, (void *)arg);
d7e09d03
PT
1771 case LL_IOC_HSM_REQUEST: {
1772 struct hsm_user_request *hur;
6b2eb32e 1773 ssize_t totalsize;
d7e09d03 1774
496a51bd
JL
1775 hur = kzalloc(sizeof(*hur), GFP_NOFS);
1776 if (!hur)
0a3bdb00 1777 return -ENOMEM;
d7e09d03
PT
1778
1779 /* We don't know the true size yet; copy the fixed-size part */
1780 if (copy_from_user(hur, (void *)arg, sizeof(*hur))) {
1781 OBD_FREE_PTR(hur);
0a3bdb00 1782 return -EFAULT;
d7e09d03
PT
1783 }
1784
1785 /* Compute the whole struct size */
1786 totalsize = hur_len(hur);
1787 OBD_FREE_PTR(hur);
6b2eb32e
NC
1788 if (totalsize < 0)
1789 return -E2BIG;
e55c4476
JN
1790
1791 /* Final size will be more than double totalsize */
1792 if (totalsize >= MDS_MAXREQSIZE / 3)
1793 return -E2BIG;
1794
d7e09d03
PT
1795 OBD_ALLOC_LARGE(hur, totalsize);
1796 if (hur == NULL)
0a3bdb00 1797 return -ENOMEM;
d7e09d03
PT
1798
1799 /* Copy the whole struct */
1800 if (copy_from_user(hur, (void *)arg, totalsize)) {
1801 OBD_FREE_LARGE(hur, totalsize);
0a3bdb00 1802 return -EFAULT;
d7e09d03
PT
1803 }
1804
48d23e61
JX
1805 if (hur->hur_request.hr_action == HUA_RELEASE) {
1806 const struct lu_fid *fid;
1807 struct inode *f;
1808 int i;
1809
1810 for (i = 0; i < hur->hur_request.hr_itemcount; i++) {
1811 fid = &hur->hur_user_item[i].hui_fid;
1812 f = search_inode_for_lustre(inode->i_sb, fid);
1813 if (IS_ERR(f)) {
1814 rc = PTR_ERR(f);
1815 break;
1816 }
1817
1818 rc = ll_hsm_release(f);
1819 iput(f);
1820 if (rc != 0)
1821 break;
1822 }
1823 } else {
1824 rc = obd_iocontrol(cmd, ll_i2mdexp(inode), totalsize,
1825 hur, NULL);
1826 }
d7e09d03
PT
1827
1828 OBD_FREE_LARGE(hur, totalsize);
1829
0a3bdb00 1830 return rc;
d7e09d03
PT
1831 }
1832 case LL_IOC_HSM_PROGRESS: {
1833 struct hsm_progress_kernel hpk;
1834 struct hsm_progress hp;
1835
1836 if (copy_from_user(&hp, (void *)arg, sizeof(hp)))
0a3bdb00 1837 return -EFAULT;
d7e09d03
PT
1838
1839 hpk.hpk_fid = hp.hp_fid;
1840 hpk.hpk_cookie = hp.hp_cookie;
1841 hpk.hpk_extent = hp.hp_extent;
1842 hpk.hpk_flags = hp.hp_flags;
1843 hpk.hpk_errval = hp.hp_errval;
1844 hpk.hpk_data_version = 0;
1845
1846 /* File may not exist in Lustre; all progress
1847 * reported to Lustre root */
1848 rc = obd_iocontrol(cmd, sbi->ll_md_exp, sizeof(hpk), &hpk,
1849 NULL);
0a3bdb00 1850 return rc;
d7e09d03
PT
1851 }
1852 case LL_IOC_HSM_CT_START:
1853 rc = copy_and_ioctl(cmd, sbi->ll_md_exp, (void *)arg,
1854 sizeof(struct lustre_kernelcomm));
0a3bdb00 1855 return rc;
d7e09d03
PT
1856
1857 case LL_IOC_HSM_COPY_START: {
1858 struct hsm_copy *copy;
1859 int rc;
1860
496a51bd
JL
1861 copy = kzalloc(sizeof(*copy), GFP_NOFS);
1862 if (!copy)
0a3bdb00 1863 return -ENOMEM;
d7e09d03
PT
1864 if (copy_from_user(copy, (char *)arg, sizeof(*copy))) {
1865 OBD_FREE_PTR(copy);
0a3bdb00 1866 return -EFAULT;
d7e09d03
PT
1867 }
1868
1869 rc = ll_ioc_copy_start(inode->i_sb, copy);
1870 if (copy_to_user((char *)arg, copy, sizeof(*copy)))
1871 rc = -EFAULT;
1872
1873 OBD_FREE_PTR(copy);
0a3bdb00 1874 return rc;
d7e09d03
PT
1875 }
1876 case LL_IOC_HSM_COPY_END: {
1877 struct hsm_copy *copy;
1878 int rc;
1879
496a51bd
JL
1880 copy = kzalloc(sizeof(*copy), GFP_NOFS);
1881 if (!copy)
0a3bdb00 1882 return -ENOMEM;
d7e09d03
PT
1883 if (copy_from_user(copy, (char *)arg, sizeof(*copy))) {
1884 OBD_FREE_PTR(copy);
0a3bdb00 1885 return -EFAULT;
d7e09d03
PT
1886 }
1887
1888 rc = ll_ioc_copy_end(inode->i_sb, copy);
1889 if (copy_to_user((char *)arg, copy, sizeof(*copy)))
1890 rc = -EFAULT;
1891
1892 OBD_FREE_PTR(copy);
0a3bdb00 1893 return rc;
d7e09d03
PT
1894 }
1895 default:
0a3bdb00 1896 return obd_iocontrol(cmd, sbi->ll_dt_exp, 0, NULL, (void *)arg);
d7e09d03
PT
1897 }
1898}
1899
1900static loff_t ll_dir_seek(struct file *file, loff_t offset, int origin)
1901{
1902 struct inode *inode = file->f_mapping->host;
1903 struct ll_file_data *fd = LUSTRE_FPRIVATE(file);
1904 struct ll_sb_info *sbi = ll_i2sbi(inode);
1905 int api32 = ll_need_32bit_api(sbi);
1906 loff_t ret = -EINVAL;
d7e09d03
PT
1907
1908 mutex_lock(&inode->i_mutex);
1909 switch (origin) {
1910 case SEEK_SET:
1911 break;
1912 case SEEK_CUR:
1913 offset += file->f_pos;
1914 break;
1915 case SEEK_END:
1916 if (offset > 0)
34e1f2bb 1917 goto out;
d7e09d03
PT
1918 if (api32)
1919 offset += LL_DIR_END_OFF_32BIT;
1920 else
1921 offset += LL_DIR_END_OFF;
1922 break;
1923 default:
34e1f2bb 1924 goto out;
d7e09d03
PT
1925 }
1926
1927 if (offset >= 0 &&
1928 ((api32 && offset <= LL_DIR_END_OFF_32BIT) ||
1929 (!api32 && offset <= LL_DIR_END_OFF))) {
1930 if (offset != file->f_pos) {
1931 if ((api32 && offset == LL_DIR_END_OFF_32BIT) ||
1932 (!api32 && offset == LL_DIR_END_OFF))
1933 fd->lfd_pos = MDS_DIR_END_OFF;
1934 else if (api32 && sbi->ll_flags & LL_SBI_64BIT_HASH)
1935 fd->lfd_pos = offset << 32;
1936 else
1937 fd->lfd_pos = offset;
1938 file->f_pos = offset;
1939 file->f_version = 0;
1940 }
1941 ret = offset;
1942 }
34e1f2bb 1943 goto out;
d7e09d03
PT
1944
1945out:
1946 mutex_unlock(&inode->i_mutex);
1947 return ret;
1948}
1949
2d95f10e 1950static int ll_dir_open(struct inode *inode, struct file *file)
d7e09d03 1951{
0a3bdb00 1952 return ll_file_open(inode, file);
d7e09d03
PT
1953}
1954
2d95f10e 1955static int ll_dir_release(struct inode *inode, struct file *file)
d7e09d03 1956{
0a3bdb00 1957 return ll_file_release(inode, file);
d7e09d03
PT
1958}
1959
2d95f10e 1960const struct file_operations ll_dir_operations = {
d7e09d03
PT
1961 .llseek = ll_dir_seek,
1962 .open = ll_dir_open,
1963 .release = ll_dir_release,
1964 .read = generic_read_dir,
0b09d381 1965 .iterate = ll_readdir,
d7e09d03
PT
1966 .unlocked_ioctl = ll_dir_ioctl,
1967 .fsync = ll_fsync,
1968};
This page took 0.380089 seconds and 5 git commands to generate.