4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
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.
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).
16 * You should have received a copy of the GNU General Public License
17 * version 2 along with this program; If not, see
18 * http://www.gnu.org/licenses/gpl-2.0.html
23 * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
24 * Use is subject to license terms.
26 * Copyright (c) 2011, 2017, Intel Corporation.
29 * This file is part of Lustre, http://www.lustre.org/
31 * lustre/llite/llite_lib.c
33 * Lustre Light Super operations
36 #define DEBUG_SUBSYSTEM S_LLITE
38 #include <linux/cpu.h>
39 #include <linux/module.h>
40 #include <linux/random.h>
41 #include <linux/statfs.h>
42 #include <linux/time.h>
43 #include <linux/file.h>
44 #include <linux/types.h>
45 #include <libcfs/linux/linux-uuid.h>
46 #include <linux/version.h>
48 #include <linux/user_namespace.h>
49 #include <linux/delay.h>
50 #include <linux/uidgid.h>
51 #include <linux/fs_struct.h>
53 #ifndef HAVE_CPUS_READ_LOCK
54 #include <libcfs/linux/linux-cpu.h>
56 #include <libcfs/linux/linux-misc.h>
57 #include <uapi/linux/lustre/lustre_ioctl.h>
58 #ifdef HAVE_UAPI_LINUX_MOUNT_H
59 #include <uapi/linux/mount.h>
62 #include <lustre_ha.h>
63 #include <lustre_dlm.h>
64 #include <lprocfs_status.h>
65 #include <lustre_disk.h>
66 #include <uapi/linux/lustre/lustre_param.h>
67 #include <lustre_log.h>
68 #include <cl_object.h>
69 #include <obd_cksum.h>
70 #include "llite_internal.h"
72 struct kmem_cache *ll_file_data_slab;
75 #define log2(n) ffz(~(n))
79 * If there is only one number of core visible to Lustre,
80 * async readahead will be disabled, to avoid massive over
81 * subscription, we use 1/2 of active cores as default max
82 * async readahead requests.
84 static inline unsigned int ll_get_ra_async_max_active(void)
86 return cfs_cpt_weight(cfs_cpt_tab, CFS_CPT_ANY) >> 1;
89 static struct ll_sb_info *ll_init_sbi(void)
91 struct ll_sb_info *sbi = NULL;
93 unsigned long lru_page_max;
101 RETURN(ERR_PTR(-ENOMEM));
103 rc = pcc_super_init(&sbi->ll_pcc_super);
107 spin_lock_init(&sbi->ll_lock);
108 mutex_init(&sbi->ll_lco.lco_lock);
109 spin_lock_init(&sbi->ll_pp_extent_lock);
110 spin_lock_init(&sbi->ll_process_lock);
111 sbi->ll_rw_stats_on = 0;
112 sbi->ll_statfs_max_age = OBD_STATFS_CACHE_SECONDS;
115 pages = si.totalram - si.totalhigh;
116 lru_page_max = pages / 2;
118 sbi->ll_ra_info.ra_async_max_active = ll_get_ra_async_max_active();
119 sbi->ll_ra_info.ll_readahead_wq =
120 cfs_cpt_bind_workqueue("ll-readahead-wq", cfs_cpt_tab,
122 sbi->ll_ra_info.ra_async_max_active);
123 if (IS_ERR(sbi->ll_ra_info.ll_readahead_wq))
124 GOTO(out_pcc, rc = PTR_ERR(sbi->ll_ra_info.ll_readahead_wq));
126 /* initialize ll_cache data */
127 sbi->ll_cache = cl_cache_init(lru_page_max);
128 if (sbi->ll_cache == NULL)
129 GOTO(out_destroy_ra, rc = -ENOMEM);
131 /* initialize foreign symlink prefix path */
132 OBD_ALLOC(sbi->ll_foreign_symlink_prefix, sizeof("/mnt/"));
133 if (sbi->ll_foreign_symlink_prefix == NULL)
134 GOTO(out_destroy_ra, rc = -ENOMEM);
135 memcpy(sbi->ll_foreign_symlink_prefix, "/mnt/", sizeof("/mnt/"));
136 sbi->ll_foreign_symlink_prefix_size = sizeof("/mnt/");
138 /* initialize foreign symlink upcall path, none by default */
139 OBD_ALLOC(sbi->ll_foreign_symlink_upcall, sizeof("none"));
140 if (sbi->ll_foreign_symlink_upcall == NULL)
141 GOTO(out_destroy_ra, rc = -ENOMEM);
142 memcpy(sbi->ll_foreign_symlink_upcall, "none", sizeof("none"));
143 sbi->ll_foreign_symlink_upcall_items = NULL;
144 sbi->ll_foreign_symlink_upcall_nb_items = 0;
145 init_rwsem(&sbi->ll_foreign_symlink_sem);
146 /* foreign symlink support (LL_SBI_FOREIGN_SYMLINK in ll_flags)
147 * not enabled by default
150 sbi->ll_ra_info.ra_max_pages =
151 min(pages / 32, SBI_DEFAULT_READ_AHEAD_MAX);
152 sbi->ll_ra_info.ra_max_pages_per_file =
153 min(sbi->ll_ra_info.ra_max_pages / 4,
154 SBI_DEFAULT_READ_AHEAD_PER_FILE_MAX);
155 sbi->ll_ra_info.ra_async_pages_per_file_threshold =
156 sbi->ll_ra_info.ra_max_pages_per_file;
157 sbi->ll_ra_info.ra_range_pages = SBI_DEFAULT_RA_RANGE_PAGES;
158 sbi->ll_ra_info.ra_max_read_ahead_whole_pages = -1;
159 atomic_set(&sbi->ll_ra_info.ra_async_inflight, 0);
161 set_bit(LL_SBI_VERBOSE, sbi->ll_flags);
162 #ifdef ENABLE_CHECKSUM
163 set_bit(LL_SBI_CHECKSUM, sbi->ll_flags);
166 set_bit(LL_SBI_FLOCK, sbi->ll_flags);
169 #ifdef HAVE_LRU_RESIZE_SUPPORT
170 set_bit(LL_SBI_LRU_RESIZE, sbi->ll_flags);
172 set_bit(LL_SBI_LAZYSTATFS, sbi->ll_flags);
174 /* metadata statahead is enabled by default */
175 sbi->ll_sa_running_max = LL_SA_RUNNING_DEF;
176 sbi->ll_sa_max = LL_SA_RPC_DEF;
177 atomic_set(&sbi->ll_sa_total, 0);
178 atomic_set(&sbi->ll_sa_wrong, 0);
179 atomic_set(&sbi->ll_sa_running, 0);
180 atomic_set(&sbi->ll_agl_total, 0);
181 set_bit(LL_SBI_AGL_ENABLED, sbi->ll_flags);
182 set_bit(LL_SBI_FAST_READ, sbi->ll_flags);
183 set_bit(LL_SBI_TINY_WRITE, sbi->ll_flags);
184 set_bit(LL_SBI_PARALLEL_DIO, sbi->ll_flags);
185 ll_sbi_set_encrypt(sbi, true);
186 ll_sbi_set_name_encrypt(sbi, true);
189 sbi->ll_squash.rsi_uid = 0;
190 sbi->ll_squash.rsi_gid = 0;
191 INIT_LIST_HEAD(&sbi->ll_squash.rsi_nosquash_nids);
192 spin_lock_init(&sbi->ll_squash.rsi_lock);
194 /* Per-filesystem file heat */
195 sbi->ll_heat_decay_weight = SBI_DEFAULT_HEAT_DECAY_WEIGHT;
196 sbi->ll_heat_period_second = SBI_DEFAULT_HEAT_PERIOD_SECOND;
198 /* Per-fs open heat level before requesting open lock */
199 sbi->ll_oc_thrsh_count = SBI_DEFAULT_OPENCACHE_THRESHOLD_COUNT;
200 sbi->ll_oc_max_ms = SBI_DEFAULT_OPENCACHE_THRESHOLD_MAX_MS;
201 sbi->ll_oc_thrsh_ms = SBI_DEFAULT_OPENCACHE_THRESHOLD_MS;
204 if (sbi->ll_foreign_symlink_prefix)
205 OBD_FREE(sbi->ll_foreign_symlink_prefix, sizeof("/mnt/"));
207 cl_cache_decref(sbi->ll_cache);
208 sbi->ll_cache = NULL;
210 destroy_workqueue(sbi->ll_ra_info.ll_readahead_wq);
212 pcc_super_fini(&sbi->ll_pcc_super);
218 static void ll_free_sbi(struct super_block *sb)
220 struct ll_sb_info *sbi = ll_s2sbi(sb);
224 if (!list_empty(&sbi->ll_squash.rsi_nosquash_nids))
225 cfs_free_nidlist(&sbi->ll_squash.rsi_nosquash_nids);
226 if (sbi->ll_ra_info.ll_readahead_wq)
227 destroy_workqueue(sbi->ll_ra_info.ll_readahead_wq);
228 if (sbi->ll_cache != NULL) {
229 cl_cache_decref(sbi->ll_cache);
230 sbi->ll_cache = NULL;
232 if (sbi->ll_foreign_symlink_prefix) {
233 OBD_FREE(sbi->ll_foreign_symlink_prefix,
234 sbi->ll_foreign_symlink_prefix_size);
235 sbi->ll_foreign_symlink_prefix = NULL;
237 if (sbi->ll_foreign_symlink_upcall) {
238 OBD_FREE(sbi->ll_foreign_symlink_upcall,
239 strlen(sbi->ll_foreign_symlink_upcall) +
241 sbi->ll_foreign_symlink_upcall = NULL;
243 if (sbi->ll_foreign_symlink_upcall_items) {
245 int nb_items = sbi->ll_foreign_symlink_upcall_nb_items;
246 struct ll_foreign_symlink_upcall_item *items =
247 sbi->ll_foreign_symlink_upcall_items;
249 for (i = 0 ; i < nb_items; i++)
250 if (items[i].type == STRING_TYPE)
251 OBD_FREE(items[i].string,
254 OBD_FREE_LARGE(items, nb_items *
255 sizeof(struct ll_foreign_symlink_upcall_item));
256 sbi->ll_foreign_symlink_upcall_items = NULL;
258 ll_free_rw_stats_info(sbi);
259 pcc_super_fini(&sbi->ll_pcc_super);
260 OBD_FREE(sbi, sizeof(*sbi));
265 static int client_common_fill_super(struct super_block *sb, char *md, char *dt)
267 struct inode *root = NULL;
268 struct ll_sb_info *sbi = ll_s2sbi(sb);
269 struct obd_statfs *osfs = NULL;
270 struct ptlrpc_request *request = NULL;
271 struct obd_connect_data *data = NULL;
272 struct obd_uuid *uuid;
273 struct md_op_data *op_data;
274 struct lustre_md lmd;
276 int size, err, checksum;
282 sbi->ll_md_obd = class_name2obd(md);
283 if (!sbi->ll_md_obd) {
284 CERROR("MD %s: not setup or attached\n", md);
298 /* pass client page size via ocd_grant_blkbits, the server should report
299 * back its backend blocksize for grant calculation purpose */
300 data->ocd_grant_blkbits = PAGE_SHIFT;
302 /* indicate MDT features supported by this client */
303 data->ocd_connect_flags = OBD_CONNECT_IBITS | OBD_CONNECT_NODEVOH |
304 OBD_CONNECT_ATTRFID | OBD_CONNECT_GRANT |
305 OBD_CONNECT_VERSION | OBD_CONNECT_BRW_SIZE |
306 OBD_CONNECT_SRVLOCK |
307 OBD_CONNECT_MDS_CAPA | OBD_CONNECT_OSS_CAPA |
308 OBD_CONNECT_CANCELSET | OBD_CONNECT_FID |
309 OBD_CONNECT_AT | OBD_CONNECT_LOV_V3 |
310 OBD_CONNECT_VBR | OBD_CONNECT_FULL20 |
311 OBD_CONNECT_64BITHASH |
312 OBD_CONNECT_EINPROGRESS |
313 OBD_CONNECT_JOBSTATS | OBD_CONNECT_LVB_TYPE |
314 OBD_CONNECT_LAYOUTLOCK | OBD_CONNECT_PINGLESS|
315 OBD_CONNECT_MAX_EASIZE |
316 OBD_CONNECT_FLOCK_DEAD |
317 OBD_CONNECT_DISP_STRIPE | OBD_CONNECT_LFSCK |
318 OBD_CONNECT_OPEN_BY_FID |
319 OBD_CONNECT_DIR_STRIPE |
320 OBD_CONNECT_BULK_MBITS | OBD_CONNECT_CKSUM |
321 OBD_CONNECT_SUBTREE |
322 OBD_CONNECT_MULTIMODRPCS |
323 OBD_CONNECT_GRANT_PARAM |
324 OBD_CONNECT_GRANT_SHRINK |
325 OBD_CONNECT_SHORTIO | OBD_CONNECT_FLAGS2;
327 data->ocd_connect_flags2 = OBD_CONNECT2_DIR_MIGRATE |
328 OBD_CONNECT2_SUM_STATFS |
329 OBD_CONNECT2_OVERSTRIPING |
331 OBD_CONNECT2_LOCK_CONVERT |
332 OBD_CONNECT2_ARCHIVE_ID_ARRAY |
333 OBD_CONNECT2_INC_XID |
335 OBD_CONNECT2_ASYNC_DISCARD |
337 OBD_CONNECT2_CRUSH | OBD_CONNECT2_LSEEK |
338 OBD_CONNECT2_GETATTR_PFID |
339 OBD_CONNECT2_DOM_LVB |
340 OBD_CONNECT2_REP_MBITS |
341 OBD_CONNECT2_ATOMIC_OPEN_LOCK;
343 #ifdef HAVE_LRU_RESIZE_SUPPORT
344 if (test_bit(LL_SBI_LRU_RESIZE, sbi->ll_flags))
345 data->ocd_connect_flags |= OBD_CONNECT_LRU_RESIZE;
347 data->ocd_connect_flags |= OBD_CONNECT_ACL_FLAGS;
349 data->ocd_cksum_types = obd_cksum_types_supported_client();
351 if (OBD_FAIL_CHECK(OBD_FAIL_MDC_LIGHTWEIGHT))
352 /* flag mdc connection as lightweight, only used for test
353 * purpose, use with care */
354 data->ocd_connect_flags |= OBD_CONNECT_LIGHTWEIGHT;
356 data->ocd_ibits_known = MDS_INODELOCK_FULL;
357 data->ocd_version = LUSTRE_VERSION_CODE;
359 if (sb->s_flags & SB_RDONLY)
360 data->ocd_connect_flags |= OBD_CONNECT_RDONLY;
361 if (test_bit(LL_SBI_USER_XATTR, sbi->ll_flags))
362 data->ocd_connect_flags |= OBD_CONNECT_XATTR;
365 /* Setting this indicates we correctly support S_NOSEC (See kernel
366 * commit 9e1f1de02c2275d7172e18dc4e7c2065777611bf)
368 sb->s_flags |= SB_NOSEC;
370 sbi->ll_fop = ll_select_file_operations(sbi);
372 /* always ping even if server suppress_pings */
373 if (test_bit(LL_SBI_ALWAYS_PING, sbi->ll_flags))
374 data->ocd_connect_flags &= ~OBD_CONNECT_PINGLESS;
376 obd_connect_set_secctx(data);
377 if (ll_sbi_has_encrypt(sbi)) {
378 obd_connect_set_name_enc(data);
379 obd_connect_set_enc(data);
382 #if defined(CONFIG_SECURITY)
383 data->ocd_connect_flags2 |= OBD_CONNECT2_SELINUX_POLICY;
386 data->ocd_brw_size = MD_MAX_BRW_SIZE;
388 err = obd_connect(NULL, &sbi->ll_md_exp, sbi->ll_md_obd,
389 &sbi->ll_sb_uuid, data, sbi->ll_cache);
391 LCONSOLE_ERROR_MSG(0x14f, "An MDT (md %s) is performing "
392 "recovery, of which this client is not a "
393 "part. Please wait for recovery to complete,"
394 " abort, or time out.\n", md);
397 CERROR("cannot connect to %s: rc = %d\n", md, err);
401 sbi->ll_md_exp->exp_connect_data = *data;
403 err = obd_fid_init(sbi->ll_md_exp->exp_obd, sbi->ll_md_exp,
404 LUSTRE_SEQ_METADATA);
406 CERROR("%s: Can't init metadata layer FID infrastructure, "
407 "rc = %d\n", sbi->ll_md_exp->exp_obd->obd_name, err);
411 /* For mount, we only need fs info from MDT0, and also in DNE, it
412 * can make sure the client can be mounted as long as MDT0 is
414 err = obd_statfs(NULL, sbi->ll_md_exp, osfs,
415 ktime_get_seconds() - sbi->ll_statfs_max_age,
416 OBD_STATFS_FOR_MDT0);
418 GOTO(out_md_fid, err);
420 /* This needs to be after statfs to ensure connect has finished.
421 * Note that "data" does NOT contain the valid connect reply.
422 * If connecting to a 1.8 server there will be no LMV device, so
423 * we can access the MDC export directly and exp_connect_flags will
424 * be non-zero, but if accessing an upgraded 2.1 server it will
425 * have the correct flags filled in.
426 * XXX: fill in the LMV exp_connect_flags from MDC(s). */
427 valid = exp_connect_flags(sbi->ll_md_exp) & CLIENT_CONNECT_MDT_REQD;
428 if (exp_connect_flags(sbi->ll_md_exp) != 0 &&
429 valid != CLIENT_CONNECT_MDT_REQD) {
432 OBD_ALLOC_WAIT(buf, PAGE_SIZE);
433 obd_connect_flags2str(buf, PAGE_SIZE,
434 valid ^ CLIENT_CONNECT_MDT_REQD, 0, ",");
435 LCONSOLE_ERROR_MSG(0x170, "Server %s does not support "
436 "feature(s) needed for correct operation "
437 "of this client (%s). Please upgrade "
438 "server or downgrade client.\n",
439 sbi->ll_md_exp->exp_obd->obd_name, buf);
440 OBD_FREE(buf, PAGE_SIZE);
441 GOTO(out_md_fid, err = -EPROTO);
444 size = sizeof(*data);
445 err = obd_get_info(NULL, sbi->ll_md_exp, sizeof(KEY_CONN_DATA),
446 KEY_CONN_DATA, &size, data);
448 CERROR("%s: Get connect data failed: rc = %d\n",
449 sbi->ll_md_exp->exp_obd->obd_name, err);
450 GOTO(out_md_fid, err);
453 LASSERT(osfs->os_bsize);
454 sb->s_blocksize = osfs->os_bsize;
455 sb->s_blocksize_bits = log2(osfs->os_bsize);
456 sb->s_magic = LL_SUPER_MAGIC;
457 sb->s_maxbytes = MAX_LFS_FILESIZE;
458 sbi->ll_inode_cache_enabled = 1;
459 sbi->ll_namelen = osfs->os_namelen;
460 sbi->ll_mnt.mnt = current->fs->root.mnt;
461 sbi->ll_mnt_ns = current->nsproxy->mnt_ns;
463 if (test_bit(LL_SBI_USER_XATTR, sbi->ll_flags) &&
464 !(data->ocd_connect_flags & OBD_CONNECT_XATTR)) {
465 LCONSOLE_INFO("Disabling user_xattr feature because "
466 "it is not supported on the server\n");
467 clear_bit(LL_SBI_USER_XATTR, sbi->ll_flags);
470 if (data->ocd_connect_flags & OBD_CONNECT_ACL) {
472 sb->s_flags |= SB_POSIXACL;
474 set_bit(LL_SBI_ACL, sbi->ll_flags);
476 LCONSOLE_INFO("client wants to enable acl, but mdt not!\n");
478 sb->s_flags &= ~SB_POSIXACL;
480 clear_bit(LL_SBI_ACL, sbi->ll_flags);
483 if (data->ocd_connect_flags & OBD_CONNECT_64BITHASH)
484 set_bit(LL_SBI_64BIT_HASH, sbi->ll_flags);
486 if (data->ocd_connect_flags & OBD_CONNECT_LAYOUTLOCK)
487 set_bit(LL_SBI_LAYOUT_LOCK, sbi->ll_flags);
489 if (obd_connect_has_secctx(data))
490 set_bit(LL_SBI_FILE_SECCTX, sbi->ll_flags);
492 if (ll_sbi_has_encrypt(sbi) && !obd_connect_has_enc(data)) {
493 if (ll_sb_has_test_dummy_encryption(sb))
494 LCONSOLE_WARN("%s: server %s does not support encryption feature, encryption deactivated.\n",
496 sbi->ll_md_exp->exp_obd->obd_name);
497 ll_sbi_set_encrypt(sbi, false);
500 if (ll_sbi_has_name_encrypt(sbi) && !obd_connect_has_name_enc(data)) {
501 struct lustre_sb_info *lsi = s2lsi(sb);
503 if (ll_sb_has_test_dummy_encryption(sb))
504 LCONSOLE_WARN("%s: server %s does not support name encryption, not using it.\n",
506 sbi->ll_md_exp->exp_obd->obd_name);
507 lsi->lsi_flags &= ~LSI_FILENAME_ENC;
508 ll_sbi_set_name_encrypt(sbi, false);
511 if (data->ocd_ibits_known & MDS_INODELOCK_XATTR) {
512 if (!(data->ocd_connect_flags & OBD_CONNECT_MAX_EASIZE)) {
513 LCONSOLE_INFO("%s: disabling xattr cache due to "
514 "unknown maximum xattr size.\n", dt);
515 } else if (!sbi->ll_xattr_cache_set) {
516 /* If xattr_cache is already set (no matter 0 or 1)
517 * during processing llog, it won't be enabled here. */
518 set_bit(LL_SBI_XATTR_CACHE, sbi->ll_flags);
519 sbi->ll_xattr_cache_enabled = 1;
523 sbi->ll_dt_obd = class_name2obd(dt);
524 if (!sbi->ll_dt_obd) {
525 CERROR("DT %s: not setup or attached\n", dt);
526 GOTO(out_md_fid, err = -ENODEV);
529 /* pass client page size via ocd_grant_blkbits, the server should report
530 * back its backend blocksize for grant calculation purpose */
531 data->ocd_grant_blkbits = PAGE_SHIFT;
533 /* indicate OST features supported by this client */
534 data->ocd_connect_flags = OBD_CONNECT_GRANT | OBD_CONNECT_VERSION |
535 OBD_CONNECT_REQPORTAL | OBD_CONNECT_BRW_SIZE |
536 OBD_CONNECT_CANCELSET | OBD_CONNECT_FID |
537 OBD_CONNECT_SRVLOCK |
538 OBD_CONNECT_AT | OBD_CONNECT_OSS_CAPA |
539 OBD_CONNECT_VBR | OBD_CONNECT_FULL20 |
540 OBD_CONNECT_64BITHASH | OBD_CONNECT_MAXBYTES |
541 OBD_CONNECT_EINPROGRESS |
542 OBD_CONNECT_JOBSTATS | OBD_CONNECT_LVB_TYPE |
543 OBD_CONNECT_LAYOUTLOCK |
544 OBD_CONNECT_PINGLESS | OBD_CONNECT_LFSCK |
545 OBD_CONNECT_BULK_MBITS | OBD_CONNECT_SHORTIO |
546 OBD_CONNECT_FLAGS2 | OBD_CONNECT_GRANT_SHRINK;
547 data->ocd_connect_flags2 = OBD_CONNECT2_LOCKAHEAD |
548 OBD_CONNECT2_INC_XID | OBD_CONNECT2_LSEEK |
549 OBD_CONNECT2_REP_MBITS;
551 if (!OBD_FAIL_CHECK(OBD_FAIL_OSC_CONNECT_GRANT_PARAM))
552 data->ocd_connect_flags |= OBD_CONNECT_GRANT_PARAM;
554 /* OBD_CONNECT_CKSUM should always be set, even if checksums are
555 * disabled by default, because it can still be enabled on the
556 * fly via /sys. As a consequence, we still need to come to an
557 * agreement on the supported algorithms at connect time
559 data->ocd_connect_flags |= OBD_CONNECT_CKSUM;
561 if (OBD_FAIL_CHECK(OBD_FAIL_OSC_CKSUM_ADLER_ONLY))
562 data->ocd_cksum_types = OBD_CKSUM_ADLER;
564 data->ocd_cksum_types = obd_cksum_types_supported_client();
566 #ifdef HAVE_LRU_RESIZE_SUPPORT
567 data->ocd_connect_flags |= OBD_CONNECT_LRU_RESIZE;
569 /* always ping even if server suppress_pings */
570 if (test_bit(LL_SBI_ALWAYS_PING, sbi->ll_flags))
571 data->ocd_connect_flags &= ~OBD_CONNECT_PINGLESS;
573 if (ll_sbi_has_encrypt(sbi))
574 obd_connect_set_enc(data);
576 CDEBUG(D_RPCTRACE, "ocd_connect_flags: %#llx ocd_version: %d "
577 "ocd_grant: %d\n", data->ocd_connect_flags,
578 data->ocd_version, data->ocd_grant);
580 sbi->ll_dt_obd->obd_upcall.onu_owner = &sbi->ll_lco;
581 sbi->ll_dt_obd->obd_upcall.onu_upcall = cl_ocd_update;
583 data->ocd_brw_size = DT_MAX_BRW_SIZE;
585 err = obd_connect(NULL, &sbi->ll_dt_exp, sbi->ll_dt_obd,
586 &sbi->ll_sb_uuid, data, sbi->ll_cache);
588 LCONSOLE_ERROR_MSG(0x150, "An OST (dt %s) is performing "
589 "recovery, of which this client is not a "
590 "part. Please wait for recovery to "
591 "complete, abort, or time out.\n", dt);
594 CERROR("%s: Cannot connect to %s: rc = %d\n",
595 sbi->ll_dt_exp->exp_obd->obd_name, dt, err);
599 if (ll_sbi_has_encrypt(sbi) &&
600 !obd_connect_has_enc(&sbi->ll_dt_obd->u.lov.lov_ocd)) {
601 if (ll_sb_has_test_dummy_encryption(sb))
602 LCONSOLE_WARN("%s: server %s does not support encryption feature, encryption deactivated.\n",
604 ll_sbi_set_encrypt(sbi, false);
605 } else if (ll_sb_has_test_dummy_encryption(sb)) {
606 LCONSOLE_WARN("Test dummy encryption mode enabled\n");
609 sbi->ll_dt_exp->exp_connect_data = *data;
611 /* Don't change value if it was specified in the config log */
612 if (sbi->ll_ra_info.ra_max_read_ahead_whole_pages == -1) {
613 sbi->ll_ra_info.ra_max_read_ahead_whole_pages =
614 max_t(unsigned long, SBI_DEFAULT_READ_AHEAD_WHOLE_MAX,
615 (data->ocd_brw_size >> PAGE_SHIFT));
616 if (sbi->ll_ra_info.ra_max_read_ahead_whole_pages >
617 sbi->ll_ra_info.ra_max_pages_per_file)
618 sbi->ll_ra_info.ra_max_read_ahead_whole_pages =
619 sbi->ll_ra_info.ra_max_pages_per_file;
622 err = obd_fid_init(sbi->ll_dt_exp->exp_obd, sbi->ll_dt_exp,
623 LUSTRE_SEQ_METADATA);
625 CERROR("%s: Can't init data layer FID infrastructure, "
626 "rc = %d\n", sbi->ll_dt_exp->exp_obd->obd_name, err);
630 mutex_lock(&sbi->ll_lco.lco_lock);
631 sbi->ll_lco.lco_flags = data->ocd_connect_flags;
632 sbi->ll_lco.lco_md_exp = sbi->ll_md_exp;
633 sbi->ll_lco.lco_dt_exp = sbi->ll_dt_exp;
634 mutex_unlock(&sbi->ll_lco.lco_lock);
636 fid_zero(&sbi->ll_root_fid);
637 err = md_get_root(sbi->ll_md_exp, get_mount_fileset(sb),
640 CERROR("cannot mds_connect: rc = %d\n", err);
641 GOTO(out_lock_cn_cb, err);
643 if (!fid_is_sane(&sbi->ll_root_fid)) {
644 CERROR("%s: Invalid root fid "DFID" during mount\n",
645 sbi->ll_md_exp->exp_obd->obd_name,
646 PFID(&sbi->ll_root_fid));
647 GOTO(out_lock_cn_cb, err = -EINVAL);
649 CDEBUG(D_SUPER, "rootfid "DFID"\n", PFID(&sbi->ll_root_fid));
651 sb->s_op = &lustre_super_operations;
652 sb->s_xattr = ll_xattr_handlers;
653 #if THREAD_SIZE >= 8192 /*b=17630*/
654 sb->s_export_op = &lustre_export_operations;
656 #ifdef HAVE_LUSTRE_CRYPTO
657 llcrypt_set_ops(sb, &lustre_cryptops);
661 * XXX: move this to after cbd setup? */
662 valid = OBD_MD_FLGETATTR | OBD_MD_FLBLOCKS | OBD_MD_FLMODEASIZE |
664 if (test_bit(LL_SBI_ACL, sbi->ll_flags))
665 valid |= OBD_MD_FLACL;
667 OBD_ALLOC_PTR(op_data);
669 GOTO(out_lock_cn_cb, err = -ENOMEM);
671 op_data->op_fid1 = sbi->ll_root_fid;
672 op_data->op_mode = 0;
673 op_data->op_valid = valid;
675 err = md_getattr(sbi->ll_md_exp, op_data, &request);
677 /* We need enc ctx info, so reset it in op_data to
678 * prevent it from being freed.
680 encctx = op_data->op_file_encctx;
681 encctxlen = op_data->op_file_encctx_size;
682 op_data->op_file_encctx = NULL;
683 op_data->op_file_encctx_size = 0;
684 OBD_FREE_PTR(op_data);
686 CERROR("%s: md_getattr failed for root: rc = %d\n",
687 sbi->ll_md_exp->exp_obd->obd_name, err);
688 GOTO(out_lock_cn_cb, err);
691 err = md_get_lustre_md(sbi->ll_md_exp, &request->rq_pill,
692 sbi->ll_dt_exp, sbi->ll_md_exp, &lmd);
694 CERROR("failed to understand root inode md: rc = %d\n", err);
695 ptlrpc_req_finished(request);
696 GOTO(out_lock_cn_cb, err);
699 LASSERT(fid_is_sane(&sbi->ll_root_fid));
700 api32 = test_bit(LL_SBI_32BIT_API, sbi->ll_flags);
701 root = ll_iget(sb, cl_fid_build_ino(&sbi->ll_root_fid, api32), &lmd);
702 md_free_lustre_md(sbi->ll_md_exp, &lmd);
706 err = IS_ERR(root) ? PTR_ERR(root) : -EBADF;
708 CERROR("%s: bad ll_iget() for root: rc = %d\n",
709 sbi->ll_fsname, err);
710 ptlrpc_req_finished(request);
716 "server returned encryption ctx for root inode "DFID"\n",
717 PFID(&sbi->ll_root_fid));
718 err = ll_set_encflags(root, encctx, encctxlen, true);
720 CWARN("%s: cannot set enc ctx for "DFID": rc = %d\n",
722 PFID(&sbi->ll_root_fid), err);
724 ptlrpc_req_finished(request);
726 checksum = test_bit(LL_SBI_CHECKSUM, sbi->ll_flags);
727 if (sbi->ll_checksum_set) {
728 err = obd_set_info_async(NULL, sbi->ll_dt_exp,
729 sizeof(KEY_CHECKSUM), KEY_CHECKSUM,
730 sizeof(checksum), &checksum, NULL);
732 CERROR("%s: Set checksum failed: rc = %d\n",
733 sbi->ll_dt_exp->exp_obd->obd_name, err);
739 sb->s_root = d_make_root(root);
740 if (sb->s_root == NULL) {
742 CERROR("%s: can't make root dentry: rc = %d\n",
743 sbi->ll_fsname, err);
747 sbi->ll_sdev_orig = sb->s_dev;
749 /* We set sb->s_dev equal on all lustre clients in order to support
750 * NFS export clustering. NFSD requires that the FSID be the same
752 /* s_dev is also used in lt_compare() to compare two fs, but that is
753 * only a node-local comparison. */
754 uuid = obd_get_uuid(sbi->ll_md_exp);
756 sb->s_dev = get_uuid2int(uuid->uuid, strlen(uuid->uuid));
763 if (sbi->ll_dt_obd) {
764 err = sysfs_create_link(&sbi->ll_kset.kobj,
765 &sbi->ll_dt_obd->obd_kset.kobj,
766 sbi->ll_dt_obd->obd_type->typ_name);
768 CERROR("%s: could not register %s in llite: rc = %d\n",
769 dt, sbi->ll_fsname, err);
774 if (sbi->ll_md_obd) {
775 err = sysfs_create_link(&sbi->ll_kset.kobj,
776 &sbi->ll_md_obd->obd_kset.kobj,
777 sbi->ll_md_obd->obd_type->typ_name);
779 CERROR("%s: could not register %s in llite: rc = %d\n",
780 md, sbi->ll_fsname, err);
789 obd_fid_fini(sbi->ll_dt_exp->exp_obd);
791 obd_disconnect(sbi->ll_dt_exp);
792 sbi->ll_dt_exp = NULL;
793 sbi->ll_dt_obd = NULL;
795 obd_fid_fini(sbi->ll_md_exp->exp_obd);
797 obd_disconnect(sbi->ll_md_exp);
798 sbi->ll_md_exp = NULL;
799 sbi->ll_md_obd = NULL;
808 int ll_get_max_mdsize(struct ll_sb_info *sbi, int *lmmsize)
812 size = sizeof(*lmmsize);
813 rc = obd_get_info(NULL, sbi->ll_dt_exp, sizeof(KEY_MAX_EASIZE),
814 KEY_MAX_EASIZE, &size, lmmsize);
816 CERROR("%s: cannot get max LOV EA size: rc = %d\n",
817 sbi->ll_dt_exp->exp_obd->obd_name, rc);
821 CDEBUG(D_INFO, "max LOV ea size: %d\n", *lmmsize);
824 rc = obd_get_info(NULL, sbi->ll_md_exp, sizeof(KEY_MAX_EASIZE),
825 KEY_MAX_EASIZE, &size, lmmsize);
827 CERROR("Get max mdsize error rc %d\n", rc);
829 CDEBUG(D_INFO, "max LMV ea size: %d\n", *lmmsize);
835 * Get the value of the default_easize parameter.
837 * \see client_obd::cl_default_mds_easize
839 * \param[in] sbi superblock info for this filesystem
840 * \param[out] lmmsize pointer to storage location for value
842 * \retval 0 on success
843 * \retval negative negated errno on failure
845 int ll_get_default_mdsize(struct ll_sb_info *sbi, int *lmmsize)
850 rc = obd_get_info(NULL, sbi->ll_md_exp, sizeof(KEY_DEFAULT_EASIZE),
851 KEY_DEFAULT_EASIZE, &size, lmmsize);
853 CERROR("Get default mdsize error rc %d\n", rc);
859 * Set the default_easize parameter to the given value.
861 * \see client_obd::cl_default_mds_easize
863 * \param[in] sbi superblock info for this filesystem
864 * \param[in] lmmsize the size to set
866 * \retval 0 on success
867 * \retval negative negated errno on failure
869 int ll_set_default_mdsize(struct ll_sb_info *sbi, int lmmsize)
873 if (lmmsize < sizeof(struct lov_mds_md) ||
874 lmmsize > OBD_MAX_DEFAULT_EA_SIZE)
877 rc = obd_set_info_async(NULL, sbi->ll_md_exp,
878 sizeof(KEY_DEFAULT_EASIZE), KEY_DEFAULT_EASIZE,
879 sizeof(int), &lmmsize, NULL);
884 static void client_common_put_super(struct super_block *sb)
886 struct ll_sb_info *sbi = ll_s2sbi(sb);
891 obd_fid_fini(sbi->ll_dt_exp->exp_obd);
892 obd_disconnect(sbi->ll_dt_exp);
893 sbi->ll_dt_exp = NULL;
895 ll_debugfs_unregister_super(sb);
897 obd_fid_fini(sbi->ll_md_exp->exp_obd);
898 obd_disconnect(sbi->ll_md_exp);
899 sbi->ll_md_exp = NULL;
904 void ll_kill_super(struct super_block *sb)
906 struct ll_sb_info *sbi;
910 if (!(sb->s_flags & SB_ACTIVE))
914 /* we need restore s_dev from changed for clustred NFS before put_super
915 * because new kernels have cached s_dev and change sb->s_dev in
916 * put_super not affected real removing devices */
918 sb->s_dev = sbi->ll_sdev_orig;
920 /* wait running statahead threads to quit */
921 while (atomic_read(&sbi->ll_sa_running) > 0)
922 schedule_timeout_uninterruptible(
923 cfs_time_seconds(1) >> 3);
929 /* Since we use this table for ll_sbi_flags_seq_show make
930 * sure what you want displayed for a specific token that
931 * is listed more than once below be listed first. For
932 * example we want "checksum" displayed, not "nochecksum"
935 static const match_table_t ll_sbi_flags_name = {
936 {LL_SBI_NOLCK, "nolock"},
937 {LL_SBI_CHECKSUM, "checksum"},
938 {LL_SBI_CHECKSUM, "nochecksum"},
939 {LL_SBI_LOCALFLOCK, "localflock"},
940 {LL_SBI_FLOCK, "flock"},
941 {LL_SBI_FLOCK, "noflock"},
942 {LL_SBI_USER_XATTR, "user_xattr"},
943 {LL_SBI_USER_XATTR, "nouser_xattr"},
944 {LL_SBI_LRU_RESIZE, "lruresize"},
945 {LL_SBI_LRU_RESIZE, "nolruresize"},
946 {LL_SBI_LAZYSTATFS, "lazystatfs"},
947 {LL_SBI_LAZYSTATFS, "nolazystatfs"},
948 {LL_SBI_32BIT_API, "32bitapi"},
949 {LL_SBI_USER_FID2PATH, "user_fid2path"},
950 {LL_SBI_USER_FID2PATH, "nouser_fid2path"},
951 {LL_SBI_VERBOSE, "verbose"},
952 {LL_SBI_VERBOSE, "noverbose"},
953 {LL_SBI_ALWAYS_PING, "always_ping"},
954 {LL_SBI_TEST_DUMMY_ENCRYPTION, "test_dummy_encryption=%s"},
955 {LL_SBI_TEST_DUMMY_ENCRYPTION, "test_dummy_encryption"},
956 {LL_SBI_ENCRYPT, "encrypt"},
957 {LL_SBI_ENCRYPT, "noencrypt"},
958 {LL_SBI_FOREIGN_SYMLINK, "foreign_symlink=%s"},
959 {LL_SBI_NUM_MOUNT_OPT, NULL},
962 {LL_SBI_AGL_ENABLED, "agl"},
963 {LL_SBI_64BIT_HASH, "64bit_hash"},
964 {LL_SBI_LAYOUT_LOCK, "layout"},
965 {LL_SBI_XATTR_CACHE, "xattr_cache"},
966 {LL_SBI_NOROOTSQUASH, "norootsquash"},
967 {LL_SBI_FAST_READ, "fast_read"},
968 {LL_SBI_FILE_SECCTX, "file_secctx"},
969 {LL_SBI_TINY_WRITE, "tiny_write"},
970 {LL_SBI_FILE_HEAT, "file_heat"},
971 {LL_SBI_PARALLEL_DIO, "parallel_dio"},
972 {LL_SBI_ENCRYPT_NAME, "name_encrypt"},
975 int ll_sbi_flags_seq_show(struct seq_file *m, void *v)
977 struct super_block *sb = m->private;
980 for (i = 0; i < LL_SBI_NUM_FLAGS; i++) {
983 if (!test_bit(i, ll_s2sbi(sb)->ll_flags))
986 for (j = 0; j < ARRAY_SIZE(ll_sbi_flags_name); j++) {
987 if (ll_sbi_flags_name[j].token == i &&
988 ll_sbi_flags_name[j].pattern) {
990 ll_sbi_flags_name[j].pattern);
999 /* non-client-specific mount options are parsed in lmd_parse */
1000 static int ll_options(char *options, struct super_block *sb)
1002 struct ll_sb_info *sbi = ll_s2sbi(sb);
1003 char *s2, *s1, *opts;
1010 /* Don't stomp on lmd_opts */
1011 opts = kstrdup(options, GFP_KERNEL);
1017 CDEBUG(D_CONFIG, "Parsing opts %s\n", options);
1019 while ((s1 = strsep(&opts, ",")) != NULL) {
1020 substring_t args[MAX_OPT_ARGS];
1021 bool turn_off = false;
1027 CDEBUG(D_SUPER, "next opt=%s\n", s1);
1029 if (strncmp(s1, "no", 2) == 0)
1033 * Initialize args struct so we know whether arg was
1034 * found; some options take optional arguments.
1037 args[0].from = NULL;
1038 token = match_token(s1, ll_sbi_flags_name, args);
1039 if (token == LL_SBI_NUM_MOUNT_OPT) {
1040 if (match_wildcard("context", s1) ||
1041 match_wildcard("fscontext", s1) ||
1042 match_wildcard("defcontext", s1) ||
1043 match_wildcard("rootcontext",s1))
1046 LCONSOLE_ERROR_MSG(0x152,
1047 "Unknown option '%s', won't mount.\n",
1054 case LL_SBI_32BIT_API:
1055 case LL_SBI_64BIT_HASH:
1056 case LL_SBI_ALWAYS_PING:
1057 set_bit(token, sbi->ll_flags);
1061 clear_bit(LL_SBI_LOCALFLOCK, sbi->ll_flags);
1063 clear_bit(LL_SBI_FLOCK, sbi->ll_flags);
1065 set_bit(token, sbi->ll_flags);
1068 case LL_SBI_LOCALFLOCK:
1069 clear_bit(LL_SBI_FLOCK, sbi->ll_flags);
1070 set_bit(token, sbi->ll_flags);
1073 case LL_SBI_CHECKSUM:
1074 sbi->ll_checksum_set = 1;
1076 case LL_SBI_USER_XATTR:
1077 case LL_SBI_USER_FID2PATH:
1078 case LL_SBI_LRU_RESIZE:
1079 case LL_SBI_LAZYSTATFS:
1080 case LL_SBI_VERBOSE:
1082 clear_bit(token, sbi->ll_flags);
1084 set_bit(token, sbi->ll_flags);
1086 case LL_SBI_TEST_DUMMY_ENCRYPTION: {
1087 #ifdef HAVE_LUSTRE_CRYPTO
1088 #ifdef HAVE_FSCRYPT_DUMMY_CONTEXT_ENABLED
1089 set_bit(token, sbi->ll_flags);
1091 struct lustre_sb_info *lsi = s2lsi(sb);
1093 err = llcrypt_set_test_dummy_encryption(sb, &args[0],
1094 &lsi->lsi_dummy_enc_ctx);
1100 "Can't change test_dummy_encryption");
1101 else if (err == -EINVAL)
1103 "Value of option \"%s\" unrecognized",
1107 "Error processing option \"%s\" [%d]",
1112 LCONSOLE_WARN("Test dummy encryption mount option ignored: encryption not supported\n");
1116 case LL_SBI_ENCRYPT:
1117 #ifdef HAVE_LUSTRE_CRYPTO
1119 clear_bit(token, sbi->ll_flags);
1121 set_bit(token, sbi->ll_flags);
1123 LCONSOLE_WARN("noencrypt or encrypt mount option ignored: encryption not supported\n");
1126 case LL_SBI_FOREIGN_SYMLINK:
1127 /* non-default prefix provided ? */
1132 /* path must be absolute */
1133 if (args->from[0] != '/') {
1134 LCONSOLE_ERROR_MSG(0x152,
1135 "foreign prefix '%s' must be an absolute path\n",
1140 old_len = sbi->ll_foreign_symlink_prefix_size;
1141 old = sbi->ll_foreign_symlink_prefix;
1142 /* alloc for path length and '\0' */
1143 sbi->ll_foreign_symlink_prefix = match_strdup(args);
1144 if (!sbi->ll_foreign_symlink_prefix) {
1145 /* restore previous */
1146 sbi->ll_foreign_symlink_prefix = old;
1147 sbi->ll_foreign_symlink_prefix_size =
1151 sbi->ll_foreign_symlink_prefix_size =
1152 args->to - args->from + 1;
1153 OBD_ALLOC_POST(sbi->ll_foreign_symlink_prefix,
1154 sbi->ll_foreign_symlink_prefix_size,
1157 OBD_FREE(old, old_len);
1159 /* enable foreign symlink support */
1160 set_bit(token, sbi->ll_flags);
1162 LCONSOLE_ERROR_MSG(0x152,
1163 "invalid %s option\n", s1);
1174 void ll_lli_init(struct ll_inode_info *lli)
1176 lli->lli_inode_magic = LLI_INODE_MAGIC;
1178 rwlock_init(&lli->lli_lock);
1179 lli->lli_posix_acl = NULL;
1180 /* Do not set lli_fid, it has been initialized already. */
1181 fid_zero(&lli->lli_pfid);
1182 lli->lli_mds_read_och = NULL;
1183 lli->lli_mds_write_och = NULL;
1184 lli->lli_mds_exec_och = NULL;
1185 lli->lli_open_fd_read_count = 0;
1186 lli->lli_open_fd_write_count = 0;
1187 lli->lli_open_fd_exec_count = 0;
1188 mutex_init(&lli->lli_och_mutex);
1189 spin_lock_init(&lli->lli_agl_lock);
1190 spin_lock_init(&lli->lli_layout_lock);
1191 ll_layout_version_set(lli, CL_LAYOUT_GEN_NONE);
1192 lli->lli_clob = NULL;
1194 init_rwsem(&lli->lli_xattrs_list_rwsem);
1195 mutex_init(&lli->lli_xattrs_enq_lock);
1197 LASSERT(lli->lli_vfs_inode.i_mode != 0);
1198 if (S_ISDIR(lli->lli_vfs_inode.i_mode)) {
1199 lli->lli_opendir_key = NULL;
1200 lli->lli_sai = NULL;
1201 spin_lock_init(&lli->lli_sa_lock);
1202 lli->lli_opendir_pid = 0;
1203 lli->lli_sa_enabled = 0;
1204 init_rwsem(&lli->lli_lsm_sem);
1206 mutex_init(&lli->lli_size_mutex);
1207 mutex_init(&lli->lli_setattr_mutex);
1208 lli->lli_symlink_name = NULL;
1209 ll_trunc_sem_init(&lli->lli_trunc_sem);
1210 range_lock_tree_init(&lli->lli_write_tree);
1211 init_rwsem(&lli->lli_glimpse_sem);
1212 lli->lli_glimpse_time = ktime_set(0, 0);
1213 INIT_LIST_HEAD(&lli->lli_agl_list);
1214 lli->lli_agl_index = 0;
1215 lli->lli_async_rc = 0;
1216 spin_lock_init(&lli->lli_heat_lock);
1217 obd_heat_clear(lli->lli_heat_instances, OBD_HEAT_COUNT);
1218 lli->lli_heat_flags = 0;
1219 mutex_init(&lli->lli_pcc_lock);
1220 lli->lli_pcc_state = PCC_STATE_FL_NONE;
1221 lli->lli_pcc_inode = NULL;
1222 lli->lli_pcc_dsflags = PCC_DATASET_INVALID;
1223 lli->lli_pcc_generation = 0;
1224 mutex_init(&lli->lli_group_mutex);
1225 lli->lli_group_users = 0;
1226 lli->lli_group_gid = 0;
1228 mutex_init(&lli->lli_layout_mutex);
1229 memset(lli->lli_jobid, 0, sizeof(lli->lli_jobid));
1230 /* ll_cl_context initialize */
1231 INIT_LIST_HEAD(&lli->lli_lccs);
1234 #define MAX_STRING_SIZE 128
1236 #ifndef HAVE_SUPER_SETUP_BDI_NAME
1237 #ifndef HAVE_BDI_CAP_MAP_COPY
1238 # define BDI_CAP_MAP_COPY 0
1241 static int super_setup_bdi_name(struct super_block *sb, char *fmt, ...)
1243 struct lustre_sb_info *lsi = s2lsi(sb);
1244 char buf[MAX_STRING_SIZE];
1248 err = bdi_init(&lsi->lsi_bdi);
1252 lsi->lsi_flags |= LSI_BDI_INITIALIZED;
1253 lsi->lsi_bdi.capabilities = BDI_CAP_MAP_COPY;
1254 lsi->lsi_bdi.name = "lustre";
1255 va_start(args, fmt);
1256 vsnprintf(buf, MAX_STRING_SIZE, fmt, args);
1258 err = bdi_register(&lsi->lsi_bdi, NULL, "%s", buf);
1261 sb->s_bdi = &lsi->lsi_bdi;
1265 #endif /* !HAVE_SUPER_SETUP_BDI_NAME */
1267 int ll_fill_super(struct super_block *sb)
1269 struct lustre_profile *lprof = NULL;
1270 struct lustre_sb_info *lsi = s2lsi(sb);
1271 struct ll_sb_info *sbi = NULL;
1272 char *dt = NULL, *md = NULL;
1273 char *profilenm = get_profile_name(sb);
1274 struct config_llog_instance *cfg;
1275 /* %p for void* in printf needs 16+2 characters: 0xffffffffffffffff */
1276 const int instlen = LUSTRE_MAXINSTANCE + 2;
1277 unsigned long cfg_instance = ll_get_cfg_instance(sb);
1278 char name[MAX_STRING_SIZE];
1287 /* for ASLR, to map between cfg_instance and hashed ptr */
1288 CDEBUG(D_VFSTRACE, "VFS Op: cfg_instance %s-%016lx (sb %p)\n",
1289 profilenm, cfg_instance, sb);
1291 OBD_RACE(OBD_FAIL_LLITE_RACE_MOUNT);
1295 GOTO(out_free_cfg, err = -ENOMEM);
1297 /* client additional sb info */
1298 lsi->lsi_llsbi = sbi = ll_init_sbi();
1300 GOTO(out_free_cfg, err = PTR_ERR(sbi));
1302 err = ll_options(lsi->lsi_lmd->lmd_opts, sb);
1304 GOTO(out_free_cfg, err);
1306 if (ll_sb_has_test_dummy_encryption(sb))
1307 /* enable filename encryption by default for dummy enc mode */
1308 lsi->lsi_flags |= LSI_FILENAME_ENC;
1310 /* filename encryption is disabled by default */
1311 lsi->lsi_flags &= ~LSI_FILENAME_ENC;
1313 /* kernel >= 2.6.38 store dentry operations in sb->s_d_op. */
1314 sb->s_d_op = &ll_d_ops;
1317 generate_random_uuid(uuid.b);
1318 snprintf(sbi->ll_sb_uuid.uuid, sizeof(sbi->ll_sb_uuid), "%pU", uuid.b);
1320 CDEBUG(D_CONFIG, "llite sb uuid: %s\n", sbi->ll_sb_uuid.uuid);
1323 len = strlen(profilenm);
1324 ptr = strrchr(profilenm, '-');
1325 if (ptr && (strcmp(ptr, "-client") == 0))
1328 if (len > LUSTRE_MAXFSNAME) {
1329 if (unlikely(len >= MAX_STRING_SIZE))
1330 len = MAX_STRING_SIZE - 1;
1331 strncpy(name, profilenm, len);
1333 err = -ENAMETOOLONG;
1334 CERROR("%s: fsname longer than %u characters: rc = %d\n",
1335 name, LUSTRE_MAXFSNAME, err);
1336 GOTO(out_free_cfg, err);
1338 strncpy(sbi->ll_fsname, profilenm, len);
1339 sbi->ll_fsname[len] = '\0';
1342 snprintf(name, sizeof(name), "%.*s-%016lx", len,
1343 profilenm, cfg_instance);
1345 err = super_setup_bdi_name(sb, "%s", name);
1347 GOTO(out_free_cfg, err);
1349 /* disable kernel readahead */
1350 sb->s_bdi->ra_pages = 0;
1352 /* Call ll_debugfs_register_super() before lustre_process_log()
1353 * so that "llite.*.*" params can be processed correctly.
1355 err = ll_debugfs_register_super(sb, name);
1357 CERROR("%s: could not register mountpoint in llite: rc = %d\n",
1358 sbi->ll_fsname, err);
1362 /* The cfg_instance is a value unique to this super, in case some
1363 * joker tries to mount the same fs at two mount points.
1365 cfg->cfg_instance = cfg_instance;
1366 cfg->cfg_uuid = lsi->lsi_llsbi->ll_sb_uuid;
1367 cfg->cfg_callback = class_config_llog_handler;
1368 cfg->cfg_sub_clds = CONFIG_SUB_CLIENT;
1369 /* set up client obds */
1370 err = lustre_process_log(sb, profilenm, cfg);
1372 GOTO(out_debugfs, err);
1374 /* Profile set with LCFG_MOUNTOPT so we can find our mdc and osc obds */
1375 lprof = class_get_profile(profilenm);
1376 if (lprof == NULL) {
1377 LCONSOLE_ERROR_MSG(0x156, "The client profile '%s' could not be"
1378 " read from the MGS. Does that filesystem "
1379 "exist?\n", profilenm);
1380 GOTO(out_debugfs, err = -EINVAL);
1382 CDEBUG(D_CONFIG, "Found profile %s: mdc=%s osc=%s\n", profilenm,
1383 lprof->lp_md, lprof->lp_dt);
1385 dt_len = strlen(lprof->lp_dt) + instlen + 2;
1386 OBD_ALLOC(dt, dt_len);
1388 GOTO(out_profile, err = -ENOMEM);
1389 snprintf(dt, dt_len - 1, "%s-%016lx", lprof->lp_dt, cfg_instance);
1391 md_len = strlen(lprof->lp_md) + instlen + 2;
1392 OBD_ALLOC(md, md_len);
1394 GOTO(out_free_dt, err = -ENOMEM);
1395 snprintf(md, md_len - 1, "%s-%016lx", lprof->lp_md, cfg_instance);
1397 /* connections, registrations, sb setup */
1398 err = client_common_fill_super(sb, md, dt);
1400 GOTO(out_free_md, err);
1402 sbi->ll_client_common_fill_super_succeeded = 1;
1406 OBD_FREE(md, md_len);
1409 OBD_FREE(dt, dt_len);
1412 class_put_profile(lprof);
1415 ll_debugfs_unregister_super(sb);
1422 else if (test_bit(LL_SBI_VERBOSE, sbi->ll_flags))
1423 LCONSOLE_WARN("Mounted %s\n", profilenm);
1425 } /* ll_fill_super */
1427 void ll_put_super(struct super_block *sb)
1429 struct config_llog_instance cfg, params_cfg;
1430 struct obd_device *obd;
1431 struct lustre_sb_info *lsi = s2lsi(sb);
1432 struct ll_sb_info *sbi = ll_s2sbi(sb);
1433 char *profilenm = get_profile_name(sb);
1434 unsigned long cfg_instance = ll_get_cfg_instance(sb);
1436 int next, force = 1, rc = 0;
1440 GOTO(out_no_sbi, 0);
1442 /* Should replace instance_id with something better for ASLR */
1443 CDEBUG(D_VFSTRACE, "VFS Op: cfg_instance %s-%016lx (sb %p)\n",
1444 profilenm, cfg_instance, sb);
1446 cfg.cfg_instance = cfg_instance;
1447 lustre_end_log(sb, profilenm, &cfg);
1449 params_cfg.cfg_instance = cfg_instance;
1450 lustre_end_log(sb, PARAMS_FILENAME, ¶ms_cfg);
1452 if (sbi->ll_md_exp) {
1453 obd = class_exp2obd(sbi->ll_md_exp);
1455 force = obd->obd_force;
1458 /* Wait for unstable pages to be committed to stable storage */
1460 rc = l_wait_event_abortable(
1461 sbi->ll_cache->ccc_unstable_waitq,
1462 atomic_long_read(&sbi->ll_cache->ccc_unstable_nr) == 0);
1465 ccc_count = atomic_long_read(&sbi->ll_cache->ccc_unstable_nr);
1466 if (force == 0 && rc != -ERESTARTSYS)
1467 LASSERTF(ccc_count == 0, "count: %li\n", ccc_count);
1469 /* We need to set force before the lov_disconnect in
1470 * lustre_common_put_super, since l_d cleans up osc's as well.
1474 while ((obd = class_devices_in_group(&sbi->ll_sb_uuid,
1476 obd->obd_force = force;
1480 if (sbi->ll_client_common_fill_super_succeeded) {
1481 /* Only if client_common_fill_super succeeded */
1482 client_common_put_super(sb);
1485 /* imitate failed cleanup */
1486 if (OBD_FAIL_CHECK(OBD_FAIL_OBD_CLEANUP))
1490 while ((obd = class_devices_in_group(&sbi->ll_sb_uuid, &next)))
1491 class_manual_cleanup(obd);
1494 if (test_bit(LL_SBI_VERBOSE, sbi->ll_flags))
1495 LCONSOLE_WARN("Unmounted %s\n", profilenm ? profilenm : "");
1498 class_del_profile(profilenm);
1500 #ifndef HAVE_SUPER_SETUP_BDI_NAME
1501 if (lsi->lsi_flags & LSI_BDI_INITIALIZED) {
1502 bdi_destroy(&lsi->lsi_bdi);
1503 lsi->lsi_flags &= ~LSI_BDI_INITIALIZED;
1507 llcrypt_free_dummy_context(&lsi->lsi_dummy_enc_ctx);
1509 lsi->lsi_llsbi = NULL;
1511 lustre_common_put_super(sb);
1513 cl_env_cache_purge(~0);
1516 } /* client_put_super */
1518 struct inode *ll_inode_from_resource_lock(struct ldlm_lock *lock)
1520 struct inode *inode = NULL;
1522 /* NOTE: we depend on atomic igrab() -bzzz */
1523 lock_res_and_lock(lock);
1524 if (lock->l_resource->lr_lvb_inode) {
1525 struct ll_inode_info * lli;
1526 lli = ll_i2info(lock->l_resource->lr_lvb_inode);
1527 if (lli->lli_inode_magic == LLI_INODE_MAGIC) {
1528 inode = igrab(lock->l_resource->lr_lvb_inode);
1530 inode = lock->l_resource->lr_lvb_inode;
1531 LDLM_DEBUG_LIMIT(inode->i_state & I_FREEING ? D_INFO :
1532 D_WARNING, lock, "lr_lvb_inode %p is "
1533 "bogus: magic %08x",
1534 lock->l_resource->lr_lvb_inode,
1535 lli->lli_inode_magic);
1539 unlock_res_and_lock(lock);
1543 void ll_dir_clear_lsm_md(struct inode *inode)
1545 struct ll_inode_info *lli = ll_i2info(inode);
1547 LASSERT(S_ISDIR(inode->i_mode));
1549 if (lli->lli_lsm_md) {
1550 lmv_free_memmd(lli->lli_lsm_md);
1551 lli->lli_lsm_md = NULL;
1554 if (lli->lli_default_lsm_md) {
1555 lmv_free_memmd(lli->lli_default_lsm_md);
1556 lli->lli_default_lsm_md = NULL;
1560 static struct inode *ll_iget_anon_dir(struct super_block *sb,
1561 const struct lu_fid *fid,
1562 struct lustre_md *md)
1564 struct ll_sb_info *sbi = ll_s2sbi(sb);
1565 struct ll_inode_info *lli;
1566 struct mdt_body *body = md->body;
1567 struct inode *inode;
1573 ino = cl_fid_build_ino(fid, test_bit(LL_SBI_32BIT_API, sbi->ll_flags));
1574 inode = iget_locked(sb, ino);
1575 if (inode == NULL) {
1576 CERROR("%s: failed get simple inode "DFID": rc = -ENOENT\n",
1577 sbi->ll_fsname, PFID(fid));
1578 RETURN(ERR_PTR(-ENOENT));
1581 lli = ll_i2info(inode);
1582 if (inode->i_state & I_NEW) {
1583 inode->i_mode = (inode->i_mode & ~S_IFMT) |
1584 (body->mbo_mode & S_IFMT);
1585 LASSERTF(S_ISDIR(inode->i_mode), "Not slave inode "DFID"\n",
1588 inode->i_mtime.tv_sec = 0;
1589 inode->i_atime.tv_sec = 0;
1590 inode->i_ctime.tv_sec = 0;
1593 #ifdef HAVE_BACKING_DEV_INFO
1594 /* initializing backing dev info. */
1595 inode->i_mapping->backing_dev_info =
1596 &s2lsi(inode->i_sb)->lsi_bdi;
1598 inode->i_op = &ll_dir_inode_operations;
1599 inode->i_fop = &ll_dir_operations;
1600 lli->lli_fid = *fid;
1603 /* master object FID */
1604 lli->lli_pfid = body->mbo_fid1;
1605 CDEBUG(D_INODE, "lli %p slave "DFID" master "DFID"\n",
1606 lli, PFID(fid), PFID(&lli->lli_pfid));
1607 unlock_new_inode(inode);
1609 /* in directory restripe/auto-split, a directory will be
1610 * transformed to a stripe if it's plain, set its pfid here,
1611 * otherwise ll_lock_cancel_bits() can't find the master inode.
1613 lli->lli_pfid = body->mbo_fid1;
1619 static int ll_init_lsm_md(struct inode *inode, struct lustre_md *md)
1622 struct lmv_stripe_md *lsm = md->lmv;
1623 struct ll_inode_info *lli = ll_i2info(inode);
1626 LASSERT(lsm != NULL);
1628 CDEBUG(D_INODE, "%s: "DFID" set dir layout:\n",
1629 ll_i2sbi(inode)->ll_fsname, PFID(&lli->lli_fid));
1630 lsm_md_dump(D_INODE, lsm);
1632 if (!lmv_dir_striped(lsm))
1635 /* XXX sigh, this lsm_root initialization should be in
1636 * LMV layer, but it needs ll_iget right now, so we
1637 * put this here right now. */
1638 for (i = 0; i < lsm->lsm_md_stripe_count; i++) {
1639 fid = &lsm->lsm_md_oinfo[i].lmo_fid;
1640 LASSERT(lsm->lsm_md_oinfo[i].lmo_root == NULL);
1642 if (!fid_is_sane(fid))
1645 /* Unfortunately ll_iget will call ll_update_inode,
1646 * where the initialization of slave inode is slightly
1647 * different, so it reset lsm_md to NULL to avoid
1648 * initializing lsm for slave inode. */
1649 lsm->lsm_md_oinfo[i].lmo_root =
1650 ll_iget_anon_dir(inode->i_sb, fid, md);
1651 if (IS_ERR(lsm->lsm_md_oinfo[i].lmo_root)) {
1652 int rc = PTR_ERR(lsm->lsm_md_oinfo[i].lmo_root);
1654 lsm->lsm_md_oinfo[i].lmo_root = NULL;
1656 iput(lsm->lsm_md_oinfo[i].lmo_root);
1657 lsm->lsm_md_oinfo[i].lmo_root = NULL;
1663 lli->lli_lsm_md = lsm;
1668 static void ll_update_default_lsm_md(struct inode *inode, struct lustre_md *md)
1670 struct ll_inode_info *lli = ll_i2info(inode);
1674 if (!md->default_lmv) {
1675 /* clear default lsm */
1676 if (lli->lli_default_lsm_md) {
1677 down_write(&lli->lli_lsm_sem);
1678 if (lli->lli_default_lsm_md) {
1679 lmv_free_memmd(lli->lli_default_lsm_md);
1680 lli->lli_default_lsm_md = NULL;
1682 up_write(&lli->lli_lsm_sem);
1687 if (lli->lli_default_lsm_md) {
1688 /* do nonthing if default lsm isn't changed */
1689 down_read(&lli->lli_lsm_sem);
1690 if (lli->lli_default_lsm_md &&
1691 lsm_md_eq(lli->lli_default_lsm_md, md->default_lmv)) {
1692 up_read(&lli->lli_lsm_sem);
1695 up_read(&lli->lli_lsm_sem);
1698 down_write(&lli->lli_lsm_sem);
1699 if (lli->lli_default_lsm_md)
1700 lmv_free_memmd(lli->lli_default_lsm_md);
1701 lli->lli_default_lsm_md = md->default_lmv;
1702 lsm_md_dump(D_INODE, md->default_lmv);
1703 md->default_lmv = NULL;
1704 up_write(&lli->lli_lsm_sem);
1708 static int ll_update_lsm_md(struct inode *inode, struct lustre_md *md)
1710 struct ll_inode_info *lli = ll_i2info(inode);
1711 struct lmv_stripe_md *lsm = md->lmv;
1712 struct cl_attr *attr;
1717 LASSERT(S_ISDIR(inode->i_mode));
1718 CDEBUG(D_INODE, "update lsm %p of "DFID"\n", lli->lli_lsm_md,
1719 PFID(ll_inode2fid(inode)));
1721 /* update default LMV */
1722 if (md->default_lmv)
1723 ll_update_default_lsm_md(inode, md);
1725 /* after dir migration/restripe, a stripe may be turned into a
1726 * directory, in this case, zero out its lli_pfid.
1728 if (unlikely(fid_is_norm(&lli->lli_pfid)))
1729 fid_zero(&lli->lli_pfid);
1732 * no striped information from request, lustre_md from req does not
1733 * include stripeEA, see ll_md_setattr()
1739 * normally dir layout doesn't change, only take read lock to check
1740 * that to avoid blocking other MD operations.
1742 down_read(&lli->lli_lsm_sem);
1744 /* some current lookup initialized lsm, and unchanged */
1745 if (lli->lli_lsm_md && lsm_md_eq(lli->lli_lsm_md, lsm))
1746 GOTO(unlock, rc = 0);
1748 /* if dir layout doesn't match, check whether version is increased,
1749 * which means layout is changed, this happens in dir split/merge and
1752 * foreign LMV should not change.
1754 if (lli->lli_lsm_md && lmv_dir_striped(lli->lli_lsm_md) &&
1755 lsm->lsm_md_layout_version <=
1756 lli->lli_lsm_md->lsm_md_layout_version) {
1757 CERROR("%s: "DFID" dir layout mismatch:\n",
1758 ll_i2sbi(inode)->ll_fsname, PFID(&lli->lli_fid));
1759 lsm_md_dump(D_ERROR, lli->lli_lsm_md);
1760 lsm_md_dump(D_ERROR, lsm);
1761 GOTO(unlock, rc = -EINVAL);
1764 up_read(&lli->lli_lsm_sem);
1765 down_write(&lli->lli_lsm_sem);
1766 /* clear existing lsm */
1767 if (lli->lli_lsm_md) {
1768 lmv_free_memmd(lli->lli_lsm_md);
1769 lli->lli_lsm_md = NULL;
1772 rc = ll_init_lsm_md(inode, md);
1774 up_write(&lli->lli_lsm_sem);
1778 /* md_merge_attr() may take long, since lsm is already set, switch to
1781 downgrade_write(&lli->lli_lsm_sem);
1783 /* set md->lmv to NULL, so the following free lustre_md will not free
1788 if (!lmv_dir_striped(lli->lli_lsm_md))
1789 GOTO(unlock, rc = 0);
1791 OBD_ALLOC_PTR(attr);
1793 GOTO(unlock, rc = -ENOMEM);
1795 /* validate the lsm */
1796 rc = md_merge_attr(ll_i2mdexp(inode), lli->lli_lsm_md, attr,
1797 ll_md_blocking_ast);
1799 if (md->body->mbo_valid & OBD_MD_FLNLINK)
1800 md->body->mbo_nlink = attr->cat_nlink;
1801 if (md->body->mbo_valid & OBD_MD_FLSIZE)
1802 md->body->mbo_size = attr->cat_size;
1803 if (md->body->mbo_valid & OBD_MD_FLATIME)
1804 md->body->mbo_atime = attr->cat_atime;
1805 if (md->body->mbo_valid & OBD_MD_FLCTIME)
1806 md->body->mbo_ctime = attr->cat_ctime;
1807 if (md->body->mbo_valid & OBD_MD_FLMTIME)
1808 md->body->mbo_mtime = attr->cat_mtime;
1814 up_read(&lli->lli_lsm_sem);
1819 void ll_clear_inode(struct inode *inode)
1821 struct ll_inode_info *lli = ll_i2info(inode);
1822 struct ll_sb_info *sbi = ll_i2sbi(inode);
1826 CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID"(%p)\n",
1827 PFID(ll_inode2fid(inode)), inode);
1829 if (S_ISDIR(inode->i_mode)) {
1830 /* these should have been cleared in ll_file_release */
1831 LASSERT(lli->lli_opendir_key == NULL);
1832 LASSERT(lli->lli_sai == NULL);
1833 LASSERT(lli->lli_opendir_pid == 0);
1835 pcc_inode_free(inode);
1838 md_null_inode(sbi->ll_md_exp, ll_inode2fid(inode));
1840 LASSERT(!lli->lli_open_fd_write_count);
1841 LASSERT(!lli->lli_open_fd_read_count);
1842 LASSERT(!lli->lli_open_fd_exec_count);
1844 if (lli->lli_mds_write_och)
1845 ll_md_real_close(inode, FMODE_WRITE);
1846 if (lli->lli_mds_exec_och)
1847 ll_md_real_close(inode, FMODE_EXEC);
1848 if (lli->lli_mds_read_och)
1849 ll_md_real_close(inode, FMODE_READ);
1851 if (S_ISLNK(inode->i_mode) && lli->lli_symlink_name) {
1852 OBD_FREE(lli->lli_symlink_name,
1853 strlen(lli->lli_symlink_name) + 1);
1854 lli->lli_symlink_name = NULL;
1857 ll_xattr_cache_destroy(inode);
1859 forget_all_cached_acls(inode);
1861 lli->lli_inode_magic = LLI_INODE_DEAD;
1863 if (S_ISDIR(inode->i_mode))
1864 ll_dir_clear_lsm_md(inode);
1865 else if (S_ISREG(inode->i_mode) && !is_bad_inode(inode))
1866 LASSERT(list_empty(&lli->lli_agl_list));
1869 * XXX This has to be done before lsm is freed below, because
1870 * cl_object still uses inode lsm.
1872 cl_inode_fini(inode);
1874 llcrypt_put_encryption_info(inode);
1879 static int ll_md_setattr(struct dentry *dentry, struct md_op_data *op_data)
1881 struct lustre_md md;
1882 struct inode *inode = dentry->d_inode;
1883 struct ll_sb_info *sbi = ll_i2sbi(inode);
1884 struct ptlrpc_request *request = NULL;
1889 op_data = ll_prep_md_op_data(op_data, inode, NULL, NULL, 0, 0,
1890 LUSTRE_OPC_ANY, NULL);
1891 if (IS_ERR(op_data))
1892 RETURN(PTR_ERR(op_data));
1894 /* If this is a chgrp of a regular file, we want to reserve enough
1895 * quota to cover the entire file size.
1897 if (S_ISREG(inode->i_mode) && op_data->op_attr.ia_valid & ATTR_GID &&
1898 from_kgid(&init_user_ns, op_data->op_attr.ia_gid) !=
1899 from_kgid(&init_user_ns, inode->i_gid)) {
1900 op_data->op_xvalid |= OP_XVALID_BLOCKS;
1901 op_data->op_attr_blocks = inode->i_blocks;
1905 rc = md_setattr(sbi->ll_md_exp, op_data, NULL, 0, &request);
1907 ptlrpc_req_finished(request);
1908 if (rc == -ENOENT) {
1910 /* Unlinked special device node? Or just a race?
1911 * Pretend we done everything. */
1912 if (!S_ISREG(inode->i_mode) &&
1913 !S_ISDIR(inode->i_mode)) {
1914 ia_valid = op_data->op_attr.ia_valid;
1915 op_data->op_attr.ia_valid &= ~TIMES_SET_FLAGS;
1916 rc = simple_setattr(&init_user_ns, dentry,
1918 op_data->op_attr.ia_valid = ia_valid;
1920 } else if (rc != -EPERM && rc != -EACCES && rc != -ETXTBSY) {
1921 CERROR("md_setattr fails: rc = %d\n", rc);
1926 rc = md_get_lustre_md(sbi->ll_md_exp, &request->rq_pill, sbi->ll_dt_exp,
1927 sbi->ll_md_exp, &md);
1929 ptlrpc_req_finished(request);
1933 ia_valid = op_data->op_attr.ia_valid;
1934 /* inode size will be in ll_setattr_ost, can't do it now since dirty
1935 * cache is not cleared yet. */
1936 op_data->op_attr.ia_valid &= ~(TIMES_SET_FLAGS | ATTR_SIZE);
1937 if (S_ISREG(inode->i_mode))
1939 rc = simple_setattr(&init_user_ns, dentry, &op_data->op_attr);
1940 if (S_ISREG(inode->i_mode))
1941 inode_unlock(inode);
1942 op_data->op_attr.ia_valid = ia_valid;
1944 rc = ll_update_inode(inode, &md);
1945 ptlrpc_req_finished(request);
1951 * Zero portion of page that is part of @inode.
1952 * This implies, if necessary:
1953 * - taking cl_lock on range corresponding to concerned page
1954 * - grabbing vm page
1955 * - associating cl_page
1956 * - proceeding to clio read
1957 * - zeroing range in page
1958 * - proceeding to cl_page flush
1959 * - releasing cl_lock
1961 * \param[in] inode inode
1962 * \param[in] index page index
1963 * \param[in] offset offset in page to start zero from
1964 * \param[in] len len to zero
1966 * \retval 0 on success
1967 * \retval negative errno on failure
1969 int ll_io_zero_page(struct inode *inode, pgoff_t index, pgoff_t offset,
1972 struct ll_inode_info *lli = ll_i2info(inode);
1973 struct cl_object *clob = lli->lli_clob;
1975 struct lu_env *env = NULL;
1976 struct cl_io *io = NULL;
1977 struct cl_page *clpage = NULL;
1978 struct page *vmpage = NULL;
1979 unsigned from = index << PAGE_SHIFT;
1980 struct cl_lock *lock = NULL;
1981 struct cl_lock_descr *descr = NULL;
1982 struct cl_2queue *queue = NULL;
1983 struct cl_sync_io *anchor = NULL;
1984 bool holdinglock = false;
1989 env = cl_env_get(&refcheck);
1991 RETURN(PTR_ERR(env));
1993 io = vvp_env_thread_io(env);
1995 rc = cl_io_rw_init(env, io, CIT_WRITE, from, PAGE_SIZE);
1999 lock = vvp_env_lock(env);
2000 descr = &lock->cll_descr;
2001 descr->cld_obj = io->ci_obj;
2002 descr->cld_start = cl_index(io->ci_obj, from);
2003 descr->cld_end = cl_index(io->ci_obj, from + PAGE_SIZE - 1);
2004 descr->cld_mode = CLM_WRITE;
2005 descr->cld_enq_flags = CEF_MUST | CEF_NONBLOCK;
2007 /* request lock for page */
2008 rc = cl_lock_request(env, io, lock);
2009 /* -ECANCELED indicates a matching lock with a different extent
2010 * was already present, and -EEXIST indicates a matching lock
2011 * on exactly the same extent was already present.
2012 * In both cases it means we are covered.
2014 if (rc == -ECANCELED || rc == -EEXIST)
2022 vmpage = grab_cache_page_nowait(inode->i_mapping, index);
2024 GOTO(rellock, rc = -EOPNOTSUPP);
2026 if (!PageDirty(vmpage)) {
2027 /* associate cl_page */
2028 clpage = cl_page_find(env, clob, vmpage->index,
2029 vmpage, CPT_CACHEABLE);
2031 GOTO(pagefini, rc = PTR_ERR(clpage));
2033 cl_page_assume(env, io, clpage);
2036 if (!PageUptodate(vmpage) && !PageDirty(vmpage) &&
2037 !PageWriteback(vmpage)) {
2039 /* Set PagePrivate2 to detect special case of empty page
2040 * in osc_brw_fini_request().
2041 * It is also used to tell ll_io_read_page() that we do not
2042 * want the vmpage to be unlocked.
2044 SetPagePrivate2(vmpage);
2045 rc = ll_io_read_page(env, io, clpage, NULL);
2046 if (!PagePrivate2(vmpage)) {
2047 /* PagePrivate2 was cleared in osc_brw_fini_request()
2048 * meaning we read an empty page. In this case, in order
2049 * to avoid allocating unnecessary block in truncated
2050 * file, we must not zero and write as below. Subsequent
2051 * server-side truncate will handle things correctly.
2053 cl_page_unassume(env, io, clpage);
2054 GOTO(clpfini, rc = 0);
2056 ClearPagePrivate2(vmpage);
2061 /* Thanks to PagePrivate2 flag, ll_io_read_page() did not unlock
2062 * the vmpage, so we are good to proceed and zero range in page.
2064 zero_user(vmpage, offset, len);
2066 if (holdinglock && clpage) {
2067 /* explicitly write newly modified page */
2068 queue = &io->ci_queue;
2069 cl_2queue_init(queue);
2070 anchor = &vvp_env_info(env)->vti_anchor;
2071 cl_sync_io_init(anchor, 1);
2072 clpage->cp_sync_io = anchor;
2073 cl_2queue_add(queue, clpage, true);
2074 rc = cl_io_submit_rw(env, io, CRT_WRITE, queue);
2076 GOTO(queuefini1, rc);
2077 rc = cl_sync_io_wait(env, anchor, 0);
2079 GOTO(queuefini2, rc);
2080 cl_page_assume(env, io, clpage);
2083 cl_2queue_discard(env, io, queue);
2085 cl_2queue_disown(env, queue);
2086 cl_2queue_fini(env, queue);
2091 cl_page_put(env, clpage);
2093 unlock_page(vmpage);
2097 cl_lock_release(env, lock);
2099 cl_io_fini(env, io);
2102 cl_env_put(env, &refcheck);
2108 * Get reference file from volatile file name.
2109 * Volatile file name may look like:
2110 * <parent>/LUSTRE_VOLATILE_HDR:<mdt_index>:<random>:fd=<fd>
2111 * where fd is opened descriptor of reference file.
2113 * \param[in] volatile_name volatile file name
2114 * \param[in] volatile_len volatile file name length
2115 * \param[out] ref_file pointer to struct file of reference file
2117 * \retval 0 on success
2118 * \retval negative errno on failure
2120 int volatile_ref_file(const char *volatile_name, int volatile_len,
2121 struct file **ref_file)
2123 char *p, *q, *fd_str;
2126 p = strnstr(volatile_name, ":fd=", volatile_len);
2127 if (!p || strlen(p + 4) == 0)
2130 q = strchrnul(p + 4, ':');
2131 fd_str = kstrndup(p + 4, q - p - 4, GFP_NOFS);
2134 rc = kstrtouint(fd_str, 10, &fd);
2139 *ref_file = fget(fd);
2145 /* If this inode has objects allocated to it (lsm != NULL), then the OST
2146 * object(s) determine the file size and mtime. Otherwise, the MDS will
2147 * keep these values until such a time that objects are allocated for it.
2148 * We do the MDS operations first, as it is checking permissions for us.
2149 * We don't to the MDS RPC if there is nothing that we want to store there,
2150 * otherwise there is no harm in updating mtime/atime on the MDS if we are
2151 * going to do an RPC anyways.
2153 * If we are doing a truncate, we will send the mtime and ctime updates
2154 * to the OST with the punch RPC, otherwise we do an explicit setattr RPC.
2155 * I don't believe it is possible to get e.g. ATTR_MTIME_SET and ATTR_SIZE
2158 * In case of HSMimport, we only set attr on MDS.
2160 int ll_setattr_raw(struct dentry *dentry, struct iattr *attr,
2161 enum op_xvalid xvalid, bool hsm_import)
2163 struct inode *inode = dentry->d_inode;
2164 struct ll_inode_info *lli = ll_i2info(inode);
2165 struct md_op_data *op_data = NULL;
2166 ktime_t kstart = ktime_get();
2171 CDEBUG(D_VFSTRACE, "%s: setattr inode "DFID"(%p) from %llu to %llu, "
2172 "valid %x, hsm_import %d\n",
2173 ll_i2sbi(inode)->ll_fsname, PFID(&lli->lli_fid),
2174 inode, i_size_read(inode), attr->ia_size, attr->ia_valid,
2177 if (attr->ia_valid & ATTR_SIZE) {
2178 /* Check new size against VFS/VM file size limit and rlimit */
2179 rc = inode_newsize_ok(inode, attr->ia_size);
2183 /* The maximum Lustre file size is variable, based on the
2184 * OST maximum object size and number of stripes. This
2185 * needs another check in addition to the VFS check above. */
2186 if (attr->ia_size > ll_file_maxbytes(inode)) {
2187 CDEBUG(D_INODE,"file "DFID" too large %llu > %llu\n",
2188 PFID(&lli->lli_fid), attr->ia_size,
2189 ll_file_maxbytes(inode));
2193 attr->ia_valid |= ATTR_MTIME | ATTR_CTIME;
2196 /* POSIX: check before ATTR_*TIME_SET set (from inode_change_ok) */
2197 if (attr->ia_valid & TIMES_SET_FLAGS) {
2198 if ((!uid_eq(current_fsuid(), inode->i_uid)) &&
2199 !capable(CAP_FOWNER))
2203 /* We mark all of the fields "set" so MDS/OST does not re-set them */
2204 if (!(xvalid & OP_XVALID_CTIME_SET) &&
2205 (attr->ia_valid & ATTR_CTIME)) {
2206 attr->ia_ctime = current_time(inode);
2207 xvalid |= OP_XVALID_CTIME_SET;
2209 if (!(attr->ia_valid & ATTR_ATIME_SET) &&
2210 (attr->ia_valid & ATTR_ATIME)) {
2211 attr->ia_atime = current_time(inode);
2212 attr->ia_valid |= ATTR_ATIME_SET;
2214 if (!(attr->ia_valid & ATTR_MTIME_SET) &&
2215 (attr->ia_valid & ATTR_MTIME)) {
2216 attr->ia_mtime = current_time(inode);
2217 attr->ia_valid |= ATTR_MTIME_SET;
2220 if (attr->ia_valid & (ATTR_MTIME | ATTR_CTIME))
2221 CDEBUG(D_INODE, "setting mtime %lld, ctime %lld, now = %lld\n",
2222 (s64)attr->ia_mtime.tv_sec, (s64)attr->ia_ctime.tv_sec,
2223 ktime_get_real_seconds());
2225 if (S_ISREG(inode->i_mode))
2226 inode_unlock(inode);
2228 /* We always do an MDS RPC, even if we're only changing the size;
2229 * only the MDS knows whether truncate() should fail with -ETXTBUSY */
2231 OBD_ALLOC_PTR(op_data);
2232 if (op_data == NULL)
2233 GOTO(out, rc = -ENOMEM);
2235 if (!hsm_import && attr->ia_valid & ATTR_SIZE) {
2236 /* If we are changing file size, file content is
2237 * modified, flag it.
2239 xvalid |= OP_XVALID_OWNEROVERRIDE;
2240 op_data->op_bias |= MDS_DATA_MODIFIED;
2241 clear_bit(LLIF_DATA_MODIFIED, &lli->lli_flags);
2244 if (attr->ia_valid & ATTR_FILE) {
2245 struct ll_file_data *fd = attr->ia_file->private_data;
2247 if (fd->fd_lease_och)
2248 op_data->op_bias |= MDS_TRUNC_KEEP_LEASE;
2251 op_data->op_attr = *attr;
2252 op_data->op_xvalid = xvalid;
2254 rc = ll_md_setattr(dentry, op_data);
2258 if (!S_ISREG(inode->i_mode) || hsm_import)
2261 if (attr->ia_valid & (ATTR_SIZE | ATTR_ATIME | ATTR_ATIME_SET |
2262 ATTR_MTIME | ATTR_MTIME_SET | ATTR_CTIME) ||
2263 xvalid & OP_XVALID_CTIME_SET) {
2264 bool cached = false;
2266 rc = pcc_inode_setattr(inode, attr, &cached);
2269 CERROR("%s: PCC inode "DFID" setattr failed: "
2271 ll_i2sbi(inode)->ll_fsname,
2272 PFID(&lli->lli_fid), rc);
2276 unsigned int flags = 0;
2278 /* For truncate and utimes sending attributes to OSTs,
2279 * setting mtime/atime to the past will be performed
2280 * under PW [0:EOF] extent lock (new_size:EOF for
2281 * truncate). It may seem excessive to send mtime/atime
2282 * updates to OSTs when not setting times to past, but
2283 * it is necessary due to possible time
2284 * de-synchronization between MDT inode and OST objects
2286 if (S_ISREG(inode->i_mode) && IS_ENCRYPTED(inode)) {
2287 xvalid |= OP_XVALID_FLAGS;
2288 flags = LUSTRE_ENCRYPT_FL;
2289 /* Call to ll_io_zero_page is not necessary if
2290 * truncating on PAGE_SIZE boundary, because
2291 * whole pages will be wiped.
2292 * In case of Direct IO, all we need is to set
2295 if (attr->ia_valid & ATTR_SIZE &&
2296 attr->ia_size & ~PAGE_MASK &&
2297 !(attr->ia_valid & ATTR_FILE &&
2298 attr->ia_file->f_flags & O_DIRECT)) {
2300 attr->ia_size & (PAGE_SIZE - 1);
2302 rc = ll_io_zero_page(inode,
2303 attr->ia_size >> PAGE_SHIFT,
2304 offset, PAGE_SIZE - offset);
2308 /* If encrypted volatile file without the key,
2309 * we need to fetch size from reference file,
2310 * and set it on OST objects. This happens when
2311 * migrating or extending an encrypted file
2314 if (filename_is_volatile(dentry->d_name.name,
2317 llcrypt_require_key(inode) == -ENOKEY) {
2318 struct file *ref_file;
2319 struct inode *ref_inode;
2320 struct ll_inode_info *ref_lli;
2321 struct cl_object *ref_obj;
2322 struct cl_attr ref_attr = { 0 };
2326 rc = volatile_ref_file(
2327 dentry->d_name.name,
2333 ref_inode = file_inode(ref_file);
2336 GOTO(out, rc = -EINVAL);
2339 env = cl_env_get(&refcheck);
2341 GOTO(out, rc = PTR_ERR(env));
2343 ref_lli = ll_i2info(ref_inode);
2344 ref_obj = ref_lli->lli_clob;
2345 cl_object_attr_lock(ref_obj);
2346 rc = cl_object_attr_get(env, ref_obj,
2348 cl_object_attr_unlock(ref_obj);
2349 cl_env_put(env, &refcheck);
2354 attr->ia_valid |= ATTR_SIZE;
2355 attr->ia_size = ref_attr.cat_size;
2358 rc = cl_setattr_ost(lli->lli_clob, attr, xvalid, flags);
2362 /* If the file was restored, it needs to set dirty flag.
2364 * We've already sent MDS_DATA_MODIFIED flag in
2365 * ll_md_setattr() for truncate. However, the MDT refuses to
2366 * set the HS_DIRTY flag on released files, so we have to set
2367 * it again if the file has been restored. Please check how
2368 * LLIF_DATA_MODIFIED is set in vvp_io_setattr_fini().
2370 * Please notice that if the file is not released, the previous
2371 * MDS_DATA_MODIFIED has taken effect and usually
2372 * LLIF_DATA_MODIFIED is not set(see vvp_io_setattr_fini()).
2373 * This way we can save an RPC for common open + trunc
2375 if (test_and_clear_bit(LLIF_DATA_MODIFIED, &lli->lli_flags)) {
2376 struct hsm_state_set hss = {
2377 .hss_valid = HSS_SETMASK,
2378 .hss_setmask = HS_DIRTY,
2382 rc2 = ll_hsm_state_set(inode, &hss);
2383 /* truncate and write can happen at the same time, so that
2384 * the file can be set modified even though the file is not
2385 * restored from released state, and ll_hsm_state_set() is
2386 * not applicable for the file, and rc2 < 0 is normal in this
2389 CDEBUG(D_INFO, DFID "HSM set dirty failed: rc2 = %d\n",
2390 PFID(ll_inode2fid(inode)), rc2);
2395 if (op_data != NULL)
2396 ll_finish_md_op_data(op_data);
2398 if (S_ISREG(inode->i_mode)) {
2400 if ((attr->ia_valid & ATTR_SIZE) && !hsm_import)
2401 inode_dio_wait(inode);
2402 /* Once we've got the i_mutex, it's safe to set the S_NOSEC
2403 * flag. ll_update_inode (called from ll_md_setattr), clears
2404 * inode flags, so there is a gap where S_NOSEC is not set.
2405 * This can cause a writer to take the i_mutex unnecessarily,
2406 * but this is safe to do and should be rare. */
2407 inode_has_no_xattr(inode);
2411 ll_stats_ops_tally(ll_i2sbi(inode), attr->ia_valid & ATTR_SIZE ?
2412 LPROC_LL_TRUNC : LPROC_LL_SETATTR,
2413 ktime_us_delta(ktime_get(), kstart));
2418 int ll_setattr(struct user_namespace *mnt_userns, struct dentry *de,
2421 int mode = de->d_inode->i_mode;
2422 enum op_xvalid xvalid = 0;
2425 rc = llcrypt_prepare_setattr(de, attr);
2429 if ((attr->ia_valid & (ATTR_CTIME|ATTR_SIZE|ATTR_MODE)) ==
2430 (ATTR_CTIME|ATTR_SIZE|ATTR_MODE))
2431 xvalid |= OP_XVALID_OWNEROVERRIDE;
2433 if (((attr->ia_valid & (ATTR_MODE|ATTR_FORCE|ATTR_SIZE)) ==
2434 (ATTR_SIZE|ATTR_MODE)) &&
2435 (((mode & S_ISUID) && !(attr->ia_mode & S_ISUID)) ||
2436 (((mode & (S_ISGID|S_IXGRP)) == (S_ISGID|S_IXGRP)) &&
2437 !(attr->ia_mode & S_ISGID))))
2438 attr->ia_valid |= ATTR_FORCE;
2440 if ((attr->ia_valid & ATTR_MODE) &&
2442 !(attr->ia_mode & S_ISUID) &&
2443 !(attr->ia_valid & ATTR_KILL_SUID))
2444 attr->ia_valid |= ATTR_KILL_SUID;
2446 if ((attr->ia_valid & ATTR_MODE) &&
2447 ((mode & (S_ISGID|S_IXGRP)) == (S_ISGID|S_IXGRP)) &&
2448 !(attr->ia_mode & S_ISGID) &&
2449 !(attr->ia_valid & ATTR_KILL_SGID))
2450 attr->ia_valid |= ATTR_KILL_SGID;
2452 return ll_setattr_raw(de, attr, xvalid, false);
2455 int ll_statfs_internal(struct ll_sb_info *sbi, struct obd_statfs *osfs,
2458 struct obd_statfs obd_osfs = { 0 };
2463 max_age = ktime_get_seconds() - sbi->ll_statfs_max_age;
2465 if (test_bit(LL_SBI_LAZYSTATFS, sbi->ll_flags))
2466 flags |= OBD_STATFS_NODELAY;
2468 rc = obd_statfs(NULL, sbi->ll_md_exp, osfs, max_age, flags);
2472 osfs->os_type = LL_SUPER_MAGIC;
2474 CDEBUG(D_SUPER, "MDC blocks %llu/%llu objects %llu/%llu\n",
2475 osfs->os_bavail, osfs->os_blocks, osfs->os_ffree, osfs->os_files);
2477 if (osfs->os_state & OS_STATFS_SUM)
2480 rc = obd_statfs(NULL, sbi->ll_dt_exp, &obd_osfs, max_age, flags);
2481 if (rc) /* Possibly a filesystem with no OSTs. Report MDT totals. */
2484 CDEBUG(D_SUPER, "OSC blocks %llu/%llu objects %llu/%llu\n",
2485 obd_osfs.os_bavail, obd_osfs.os_blocks, obd_osfs.os_ffree,
2488 osfs->os_bsize = obd_osfs.os_bsize;
2489 osfs->os_blocks = obd_osfs.os_blocks;
2490 osfs->os_bfree = obd_osfs.os_bfree;
2491 osfs->os_bavail = obd_osfs.os_bavail;
2493 /* If we have _some_ OSTs, but don't have as many free objects on the
2494 * OSTs as inodes on the MDTs, reduce the reported number of inodes
2495 * to compensate, so that the "inodes in use" number is correct.
2496 * This should be kept in sync with lod_statfs() behaviour.
2498 if (obd_osfs.os_files && obd_osfs.os_ffree < osfs->os_ffree) {
2499 osfs->os_files = (osfs->os_files - osfs->os_ffree) +
2501 osfs->os_ffree = obd_osfs.os_ffree;
2508 static int ll_statfs_project(struct inode *inode, struct kstatfs *sfs)
2510 struct if_quotactl qctl = {
2511 .qc_cmd = LUSTRE_Q_GETQUOTA,
2512 .qc_type = PRJQUOTA,
2513 .qc_valid = QC_GENERAL,
2515 u64 limit, curblock;
2518 qctl.qc_id = ll_i2info(inode)->lli_projid;
2519 ret = quotactl_ioctl(inode->i_sb, &qctl);
2521 /* ignore errors if project ID does not have
2522 * a quota limit or feature unsupported.
2524 if (ret == -ESRCH || ret == -EOPNOTSUPP)
2529 limit = ((qctl.qc_dqblk.dqb_bsoftlimit ?
2530 qctl.qc_dqblk.dqb_bsoftlimit :
2531 qctl.qc_dqblk.dqb_bhardlimit) * 1024) / sfs->f_bsize;
2532 if (limit && sfs->f_blocks > limit) {
2533 curblock = (qctl.qc_dqblk.dqb_curspace +
2534 sfs->f_bsize - 1) / sfs->f_bsize;
2535 sfs->f_blocks = limit;
2536 sfs->f_bfree = sfs->f_bavail =
2537 (sfs->f_blocks > curblock) ?
2538 (sfs->f_blocks - curblock) : 0;
2541 limit = qctl.qc_dqblk.dqb_isoftlimit ?
2542 qctl.qc_dqblk.dqb_isoftlimit :
2543 qctl.qc_dqblk.dqb_ihardlimit;
2544 if (limit && sfs->f_files > limit) {
2545 sfs->f_files = limit;
2546 sfs->f_ffree = (sfs->f_files >
2547 qctl.qc_dqblk.dqb_curinodes) ?
2548 (sfs->f_files - qctl.qc_dqblk.dqb_curinodes) : 0;
2554 int ll_statfs(struct dentry *de, struct kstatfs *sfs)
2556 struct super_block *sb = de->d_sb;
2557 struct obd_statfs osfs;
2558 __u64 fsid = huge_encode_dev(sb->s_dev);
2559 ktime_t kstart = ktime_get();
2562 CDEBUG(D_VFSTRACE, "VFS Op:sb=%s (%p)\n", sb->s_id, sb);
2564 /* Some amount of caching on the client is allowed */
2565 rc = ll_statfs_internal(ll_s2sbi(sb), &osfs, OBD_STATFS_SUM);
2569 statfs_unpack(sfs, &osfs);
2571 /* We need to downshift for all 32-bit kernels, because we can't
2572 * tell if the kernel is being called via sys_statfs64() or not.
2573 * Stop before overflowing f_bsize - in which case it is better
2574 * to just risk EOVERFLOW if caller is using old sys_statfs(). */
2575 if (sizeof(long) < 8) {
2576 while (osfs.os_blocks > ~0UL && sfs->f_bsize < 0x40000000) {
2579 osfs.os_blocks >>= 1;
2580 osfs.os_bfree >>= 1;
2581 osfs.os_bavail >>= 1;
2585 sfs->f_blocks = osfs.os_blocks;
2586 sfs->f_bfree = osfs.os_bfree;
2587 sfs->f_bavail = osfs.os_bavail;
2588 sfs->f_fsid.val[0] = (__u32)fsid;
2589 sfs->f_fsid.val[1] = (__u32)(fsid >> 32);
2590 if (ll_i2info(de->d_inode)->lli_projid)
2591 return ll_statfs_project(de->d_inode, sfs);
2593 ll_stats_ops_tally(ll_s2sbi(sb), LPROC_LL_STATFS,
2594 ktime_us_delta(ktime_get(), kstart));
2599 void ll_inode_size_lock(struct inode *inode)
2601 struct ll_inode_info *lli;
2603 LASSERT(!S_ISDIR(inode->i_mode));
2605 lli = ll_i2info(inode);
2606 mutex_lock(&lli->lli_size_mutex);
2609 void ll_inode_size_unlock(struct inode *inode)
2611 struct ll_inode_info *lli;
2613 lli = ll_i2info(inode);
2614 mutex_unlock(&lli->lli_size_mutex);
2617 void ll_update_inode_flags(struct inode *inode, unsigned int ext_flags)
2619 /* do not clear encryption flag */
2620 ext_flags |= ll_inode_to_ext_flags(inode->i_flags) & LUSTRE_ENCRYPT_FL;
2621 inode->i_flags = ll_ext_to_inode_flags(ext_flags);
2622 if (ext_flags & LUSTRE_PROJINHERIT_FL)
2623 set_bit(LLIF_PROJECT_INHERIT, &ll_i2info(inode)->lli_flags);
2625 clear_bit(LLIF_PROJECT_INHERIT, &ll_i2info(inode)->lli_flags);
2628 int ll_update_inode(struct inode *inode, struct lustre_md *md)
2630 struct ll_inode_info *lli = ll_i2info(inode);
2631 struct mdt_body *body = md->body;
2632 struct ll_sb_info *sbi = ll_i2sbi(inode);
2636 if (body->mbo_valid & OBD_MD_FLEASIZE) {
2637 rc = cl_file_inode_init(inode, md);
2642 if (S_ISDIR(inode->i_mode)) {
2643 rc = ll_update_lsm_md(inode, md);
2648 if (body->mbo_valid & OBD_MD_FLACL)
2649 lli_replace_acl(lli, md);
2651 api32 = test_bit(LL_SBI_32BIT_API, sbi->ll_flags);
2652 inode->i_ino = cl_fid_build_ino(&body->mbo_fid1, api32);
2653 inode->i_generation = cl_fid_build_gen(&body->mbo_fid1);
2655 if (body->mbo_valid & OBD_MD_FLATIME) {
2656 if (body->mbo_atime > inode->i_atime.tv_sec)
2657 inode->i_atime.tv_sec = body->mbo_atime;
2658 lli->lli_atime = body->mbo_atime;
2661 if (body->mbo_valid & OBD_MD_FLMTIME) {
2662 if (body->mbo_mtime > inode->i_mtime.tv_sec) {
2664 "setting ino %lu mtime from %lld to %llu\n",
2665 inode->i_ino, (s64)inode->i_mtime.tv_sec,
2667 inode->i_mtime.tv_sec = body->mbo_mtime;
2669 lli->lli_mtime = body->mbo_mtime;
2672 if (body->mbo_valid & OBD_MD_FLCTIME) {
2673 if (body->mbo_ctime > inode->i_ctime.tv_sec)
2674 inode->i_ctime.tv_sec = body->mbo_ctime;
2675 lli->lli_ctime = body->mbo_ctime;
2678 if (body->mbo_valid & OBD_MD_FLBTIME)
2679 lli->lli_btime = body->mbo_btime;
2681 /* Clear i_flags to remove S_NOSEC before permissions are updated */
2682 if (body->mbo_valid & OBD_MD_FLFLAGS)
2683 ll_update_inode_flags(inode, body->mbo_flags);
2684 if (body->mbo_valid & OBD_MD_FLMODE)
2685 inode->i_mode = (inode->i_mode & S_IFMT) |
2686 (body->mbo_mode & ~S_IFMT);
2688 if (body->mbo_valid & OBD_MD_FLTYPE)
2689 inode->i_mode = (inode->i_mode & ~S_IFMT) |
2690 (body->mbo_mode & S_IFMT);
2692 LASSERT(inode->i_mode != 0);
2693 if (body->mbo_valid & OBD_MD_FLUID)
2694 inode->i_uid = make_kuid(&init_user_ns, body->mbo_uid);
2695 if (body->mbo_valid & OBD_MD_FLGID)
2696 inode->i_gid = make_kgid(&init_user_ns, body->mbo_gid);
2697 if (body->mbo_valid & OBD_MD_FLPROJID)
2698 lli->lli_projid = body->mbo_projid;
2699 if (body->mbo_valid & OBD_MD_FLNLINK) {
2700 spin_lock(&inode->i_lock);
2701 set_nlink(inode, body->mbo_nlink);
2702 spin_unlock(&inode->i_lock);
2704 if (body->mbo_valid & OBD_MD_FLRDEV)
2705 inode->i_rdev = old_decode_dev(body->mbo_rdev);
2707 if (body->mbo_valid & OBD_MD_FLID) {
2708 /* FID shouldn't be changed! */
2709 if (fid_is_sane(&lli->lli_fid)) {
2710 LASSERTF(lu_fid_eq(&lli->lli_fid, &body->mbo_fid1),
2711 "Trying to change FID "DFID
2712 " to the "DFID", inode "DFID"(%p)\n",
2713 PFID(&lli->lli_fid), PFID(&body->mbo_fid1),
2714 PFID(ll_inode2fid(inode)), inode);
2716 lli->lli_fid = body->mbo_fid1;
2720 LASSERT(fid_seq(&lli->lli_fid) != 0);
2722 /* In case of encrypted file without the key, please do not lose
2723 * clear text size stored into lli_lazysize in ll_merge_attr(),
2724 * we will need it in ll_prepare_close().
2726 if (lli->lli_attr_valid & OBD_MD_FLLAZYSIZE && lli->lli_lazysize &&
2727 llcrypt_require_key(inode) == -ENOKEY)
2728 lli->lli_attr_valid = body->mbo_valid | OBD_MD_FLLAZYSIZE;
2730 lli->lli_attr_valid = body->mbo_valid;
2731 if (body->mbo_valid & OBD_MD_FLSIZE) {
2732 i_size_write(inode, body->mbo_size);
2734 CDEBUG(D_VFSTRACE, "inode="DFID", updating i_size %llu\n",
2735 PFID(ll_inode2fid(inode)),
2736 (unsigned long long)body->mbo_size);
2738 if (body->mbo_valid & OBD_MD_FLBLOCKS)
2739 inode->i_blocks = body->mbo_blocks;
2741 if (body->mbo_valid & OBD_MD_FLLAZYSIZE)
2742 lli->lli_lazysize = body->mbo_size;
2743 if (body->mbo_valid & OBD_MD_FLLAZYBLOCKS)
2744 lli->lli_lazyblocks = body->mbo_blocks;
2747 if (body->mbo_valid & OBD_MD_TSTATE) {
2748 /* Set LLIF_FILE_RESTORING if restore ongoing and
2749 * clear it when done to ensure to start again
2750 * glimpsing updated attrs
2752 if (body->mbo_t_state & MS_RESTORE)
2753 set_bit(LLIF_FILE_RESTORING, &lli->lli_flags);
2755 clear_bit(LLIF_FILE_RESTORING, &lli->lli_flags);
2761 /* update directory depth to ROOT, called after LOOKUP lock is fetched. */
2762 void ll_update_dir_depth(struct inode *dir, struct inode *inode)
2764 struct ll_inode_info *lli;
2766 if (!S_ISDIR(inode->i_mode))
2772 lli = ll_i2info(inode);
2773 lli->lli_dir_depth = ll_i2info(dir)->lli_dir_depth + 1;
2774 CDEBUG(D_INODE, DFID" depth %hu\n",
2775 PFID(&lli->lli_fid), lli->lli_dir_depth);
2778 void ll_truncate_inode_pages_final(struct inode *inode)
2780 struct address_space *mapping = &inode->i_data;
2781 unsigned long nrpages;
2782 unsigned long flags;
2784 truncate_inode_pages_final(mapping);
2786 /* Workaround for LU-118: Note nrpages may not be totally updated when
2787 * truncate_inode_pages() returns, as there can be a page in the process
2788 * of deletion (inside __delete_from_page_cache()) in the specified
2789 * range. Thus mapping->nrpages can be non-zero when this function
2790 * returns even after truncation of the whole mapping. Only do this if
2791 * npages isn't already zero.
2793 nrpages = mapping->nrpages;
2795 ll_xa_lock_irqsave(&mapping->i_pages, flags);
2796 nrpages = mapping->nrpages;
2797 ll_xa_unlock_irqrestore(&mapping->i_pages, flags);
2798 } /* Workaround end */
2800 LASSERTF(nrpages == 0, "%s: inode="DFID"(%p) nrpages=%lu, "
2801 "see https://jira.whamcloud.com/browse/LU-118\n",
2802 ll_i2sbi(inode)->ll_fsname,
2803 PFID(ll_inode2fid(inode)), inode, nrpages);
2806 int ll_read_inode2(struct inode *inode, void *opaque)
2808 struct lustre_md *md = opaque;
2809 struct ll_inode_info *lli = ll_i2info(inode);
2813 CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID"(%p)\n",
2814 PFID(&lli->lli_fid), inode);
2816 /* Core attributes from the MDS first. This is a new inode, and
2817 * the VFS doesn't zero times in the core inode so we have to do
2818 * it ourselves. They will be overwritten by either MDS or OST
2819 * attributes - we just need to make sure they aren't newer.
2821 inode->i_mtime.tv_sec = 0;
2822 inode->i_atime.tv_sec = 0;
2823 inode->i_ctime.tv_sec = 0;
2825 rc = ll_update_inode(inode, md);
2829 /* OIDEBUG(inode); */
2831 #ifdef HAVE_BACKING_DEV_INFO
2832 /* initializing backing dev info. */
2833 inode->i_mapping->backing_dev_info = &s2lsi(inode->i_sb)->lsi_bdi;
2835 if (S_ISREG(inode->i_mode)) {
2836 struct ll_sb_info *sbi = ll_i2sbi(inode);
2837 inode->i_op = &ll_file_inode_operations;
2838 inode->i_fop = sbi->ll_fop;
2839 inode->i_mapping->a_ops = (struct address_space_operations *)&ll_aops;
2841 } else if (S_ISDIR(inode->i_mode)) {
2842 inode->i_op = &ll_dir_inode_operations;
2843 inode->i_fop = &ll_dir_operations;
2845 } else if (S_ISLNK(inode->i_mode)) {
2846 inode->i_op = &ll_fast_symlink_inode_operations;
2849 inode->i_op = &ll_special_inode_operations;
2851 init_special_inode(inode, inode->i_mode,
2860 void ll_delete_inode(struct inode *inode)
2862 struct ll_inode_info *lli = ll_i2info(inode);
2865 if (S_ISREG(inode->i_mode) && lli->lli_clob != NULL) {
2866 /* It is last chance to write out dirty pages,
2867 * otherwise we may lose data while umount.
2869 * If i_nlink is 0 then just discard data. This is safe because
2870 * local inode gets i_nlink 0 from server only for the last
2871 * unlink, so that file is not opened somewhere else
2873 cl_sync_file_range(inode, 0, OBD_OBJECT_EOF, inode->i_nlink ?
2874 CL_FSYNC_LOCAL : CL_FSYNC_DISCARD, 1);
2877 ll_truncate_inode_pages_final(inode);
2878 ll_clear_inode(inode);
2884 int ll_iocontrol(struct inode *inode, struct file *file,
2885 unsigned int cmd, unsigned long arg)
2887 struct ll_sb_info *sbi = ll_i2sbi(inode);
2888 struct ptlrpc_request *req = NULL;
2893 case FS_IOC_GETFLAGS: {
2894 struct mdt_body *body;
2895 struct md_op_data *op_data;
2897 op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL,
2898 0, 0, LUSTRE_OPC_ANY,
2900 if (IS_ERR(op_data))
2901 RETURN(PTR_ERR(op_data));
2903 op_data->op_valid = OBD_MD_FLFLAGS;
2904 rc = md_getattr(sbi->ll_md_exp, op_data, &req);
2905 ll_finish_md_op_data(op_data);
2907 CERROR("%s: failure inode "DFID": rc = %d\n",
2908 sbi->ll_md_exp->exp_obd->obd_name,
2909 PFID(ll_inode2fid(inode)), rc);
2913 body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
2915 flags = body->mbo_flags;
2917 ptlrpc_req_finished(req);
2919 RETURN(put_user(flags, (int __user *)arg));
2921 case FS_IOC_SETFLAGS: {
2923 struct md_op_data *op_data;
2924 struct cl_object *obj;
2925 struct fsxattr fa = { 0 };
2927 if (get_user(flags, (int __user *)arg))
2930 fa.fsx_projid = ll_i2info(inode)->lli_projid;
2931 if (flags & LUSTRE_PROJINHERIT_FL)
2932 fa.fsx_xflags = FS_XFLAG_PROJINHERIT;
2934 rc = ll_ioctl_check_project(inode, fa.fsx_xflags,
2939 op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL, 0, 0,
2940 LUSTRE_OPC_ANY, NULL);
2941 if (IS_ERR(op_data))
2942 RETURN(PTR_ERR(op_data));
2944 op_data->op_attr_flags = flags;
2945 op_data->op_xvalid |= OP_XVALID_FLAGS;
2946 rc = md_setattr(sbi->ll_md_exp, op_data, NULL, 0, &req);
2947 ll_finish_md_op_data(op_data);
2948 ptlrpc_req_finished(req);
2952 ll_update_inode_flags(inode, flags);
2954 obj = ll_i2info(inode)->lli_clob;
2958 OBD_ALLOC_PTR(attr);
2962 rc = cl_setattr_ost(obj, attr, OP_XVALID_FLAGS, flags);
2974 int ll_flush_ctx(struct inode *inode)
2976 struct ll_sb_info *sbi = ll_i2sbi(inode);
2978 CDEBUG(D_SEC, "flush context for user %d\n",
2979 from_kuid(&init_user_ns, current_uid()));
2981 obd_set_info_async(NULL, sbi->ll_md_exp,
2982 sizeof(KEY_FLUSH_CTX), KEY_FLUSH_CTX,
2984 obd_set_info_async(NULL, sbi->ll_dt_exp,
2985 sizeof(KEY_FLUSH_CTX), KEY_FLUSH_CTX,
2990 /* umount -f client means force down, don't save state */
2991 void ll_umount_begin(struct super_block *sb)
2993 struct ll_sb_info *sbi = ll_s2sbi(sb);
2994 struct obd_device *obd;
2995 struct obd_ioctl_data *ioc_data;
2999 CDEBUG(D_VFSTRACE, "VFS Op: superblock %p count %d active %d\n", sb,
3000 sb->s_count, atomic_read(&sb->s_active));
3002 obd = class_exp2obd(sbi->ll_md_exp);
3004 CERROR("Invalid MDC connection handle %#llx\n",
3005 sbi->ll_md_exp->exp_handle.h_cookie);
3011 obd = class_exp2obd(sbi->ll_dt_exp);
3013 CERROR("Invalid LOV connection handle %#llx\n",
3014 sbi->ll_dt_exp->exp_handle.h_cookie);
3020 OBD_ALLOC_PTR(ioc_data);
3022 obd_iocontrol(IOC_OSC_SET_ACTIVE, sbi->ll_md_exp,
3023 sizeof *ioc_data, ioc_data, NULL);
3025 obd_iocontrol(IOC_OSC_SET_ACTIVE, sbi->ll_dt_exp,
3026 sizeof *ioc_data, ioc_data, NULL);
3028 OBD_FREE_PTR(ioc_data);
3031 /* Really, we'd like to wait until there are no requests outstanding,
3032 * and then continue. For now, we just periodically checking for vfs
3033 * to decrement mnt_cnt and hope to finish it within 10sec.
3037 !may_umount(sbi->ll_mnt.mnt)) {
3045 int ll_remount_fs(struct super_block *sb, int *flags, char *data)
3047 struct ll_sb_info *sbi = ll_s2sbi(sb);
3048 char *profilenm = get_profile_name(sb);
3052 if ((*flags & MS_RDONLY) != (sb->s_flags & SB_RDONLY)) {
3053 read_only = *flags & MS_RDONLY;
3054 err = obd_set_info_async(NULL, sbi->ll_md_exp,
3055 sizeof(KEY_READ_ONLY),
3056 KEY_READ_ONLY, sizeof(read_only),
3059 LCONSOLE_WARN("Failed to remount %s %s (%d)\n",
3060 profilenm, read_only ?
3061 "read-only" : "read-write", err);
3066 sb->s_flags |= SB_RDONLY;
3068 sb->s_flags &= ~SB_RDONLY;
3070 if (test_bit(LL_SBI_VERBOSE, sbi->ll_flags))
3071 LCONSOLE_WARN("Remounted %s %s\n", profilenm,
3072 read_only ? "read-only" : "read-write");
3078 * Cleanup the open handle that is cached on MDT-side.
3080 * For open case, the client side open handling thread may hit error
3081 * after the MDT grant the open. Under such case, the client should
3082 * send close RPC to the MDT as cleanup; otherwise, the open handle
3083 * on the MDT will be leaked there until the client umount or evicted.
3085 * In further, if someone unlinked the file, because the open handle
3086 * holds the reference on such file/object, then it will block the
3087 * subsequent threads that want to locate such object via FID.
3089 * \param[in] sb super block for this file-system
3090 * \param[in] open_req pointer to the original open request
3092 void ll_open_cleanup(struct super_block *sb, struct req_capsule *pill)
3094 struct mdt_body *body;
3095 struct md_op_data *op_data;
3096 struct ptlrpc_request *close_req = NULL;
3097 struct obd_export *exp = ll_s2sbi(sb)->ll_md_exp;
3100 body = req_capsule_server_get(pill, &RMF_MDT_BODY);
3101 OBD_ALLOC_PTR(op_data);
3102 if (op_data == NULL) {
3103 CWARN("%s: cannot allocate op_data to release open handle for "
3104 DFID"\n", ll_s2sbi(sb)->ll_fsname, PFID(&body->mbo_fid1));
3109 op_data->op_fid1 = body->mbo_fid1;
3110 op_data->op_open_handle = body->mbo_open_handle;
3111 op_data->op_mod_time = ktime_get_real_seconds();
3112 md_close(exp, op_data, NULL, &close_req);
3113 ptlrpc_req_finished(close_req);
3114 ll_finish_md_op_data(op_data);
3119 /* set filesystem-wide default LMV for subdir mount if it's enabled on ROOT. */
3120 static int ll_fileset_default_lmv_fixup(struct inode *inode,
3121 struct lustre_md *md)
3123 struct ll_sb_info *sbi = ll_i2sbi(inode);
3124 struct ptlrpc_request *req = NULL;
3125 union lmv_mds_md *lmm = NULL;
3129 LASSERT(is_root_inode(inode));
3130 LASSERT(!fid_is_root(&sbi->ll_root_fid));
3131 LASSERT(!md->default_lmv);
3133 rc = ll_dir_get_default_layout(inode, (void **)&lmm, &size, &req,
3135 GET_DEFAULT_LAYOUT_ROOT);
3136 if (rc && rc != -ENODATA)
3141 rc = md_unpackmd(sbi->ll_md_exp, &md->default_lmv, lmm, size);
3150 ptlrpc_req_finished(req);
3154 int ll_prep_inode(struct inode **inode, struct req_capsule *pill,
3155 struct super_block *sb, struct lookup_intent *it)
3157 struct ll_sb_info *sbi = NULL;
3158 struct lustre_md md = { NULL };
3159 bool default_lmv_deleted = false;
3164 LASSERT(*inode || sb);
3165 sbi = sb ? ll_s2sbi(sb) : ll_i2sbi(*inode);
3166 rc = md_get_lustre_md(sbi->ll_md_exp, pill, sbi->ll_dt_exp,
3167 sbi->ll_md_exp, &md);