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