Whamcloud - gitweb
94dc1366d4cb13187640aa3463def63487de8c73
[fs/lustre-release.git] / lustre / llite / llite_lib.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  *
31  * lustre/llite/llite_lib.c
32  *
33  * Lustre Light Super operations
34  */
35
36 #define DEBUG_SUBSYSTEM S_LLITE
37
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>
47 #include <linux/mm.h>
48 #include <linux/user_namespace.h>
49 #include <linux/delay.h>
50 #include <linux/uidgid.h>
51 #include <linux/fs_struct.h>
52
53 #ifndef HAVE_CPUS_READ_LOCK
54 #include <libcfs/linux/linux-cpu.h>
55 #endif
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>
60 #endif
61
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"
71
72 struct kmem_cache *ll_file_data_slab;
73
74 #ifndef log2
75 #define log2(n) ffz(~(n))
76 #endif
77
78 /**
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.
83  */
84 static inline unsigned int ll_get_ra_async_max_active(void)
85 {
86         return cfs_cpt_weight(cfs_cpt_tab, CFS_CPT_ANY) >> 1;
87 }
88
89 static struct ll_sb_info *ll_init_sbi(void)
90 {
91         struct ll_sb_info *sbi = NULL;
92         unsigned long pages;
93         unsigned long lru_page_max;
94         struct sysinfo si;
95         int rc;
96
97         ENTRY;
98
99         OBD_ALLOC_PTR(sbi);
100         if (sbi == NULL)
101                 RETURN(ERR_PTR(-ENOMEM));
102
103         rc = pcc_super_init(&sbi->ll_pcc_super);
104         if (rc < 0)
105                 GOTO(out_sbi, rc);
106
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;
113
114         si_meminfo(&si);
115         pages = si.totalram - si.totalhigh;
116         lru_page_max = pages / 2;
117
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,
121                                        0, CFS_CPT_ANY,
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));
125
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);
130
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/");
137
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
148          */
149
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);
160
161         set_bit(LL_SBI_VERBOSE, sbi->ll_flags);
162 #ifdef ENABLE_CHECKSUM
163         set_bit(LL_SBI_CHECKSUM, sbi->ll_flags);
164 #endif
165 #ifdef ENABLE_FLOCK
166         set_bit(LL_SBI_FLOCK, sbi->ll_flags);
167 #endif
168
169 #ifdef HAVE_LRU_RESIZE_SUPPORT
170         set_bit(LL_SBI_LRU_RESIZE, sbi->ll_flags);
171 #endif
172         set_bit(LL_SBI_LAZYSTATFS, sbi->ll_flags);
173
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);
187
188         /* root squash */
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);
193
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;
197
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;
202         RETURN(sbi);
203 out_destroy_ra:
204         if (sbi->ll_foreign_symlink_prefix)
205                 OBD_FREE(sbi->ll_foreign_symlink_prefix, sizeof("/mnt/"));
206         if (sbi->ll_cache) {
207                 cl_cache_decref(sbi->ll_cache);
208                 sbi->ll_cache = NULL;
209         }
210         destroy_workqueue(sbi->ll_ra_info.ll_readahead_wq);
211 out_pcc:
212         pcc_super_fini(&sbi->ll_pcc_super);
213 out_sbi:
214         OBD_FREE_PTR(sbi);
215         RETURN(ERR_PTR(rc));
216 }
217
218 static void ll_free_sbi(struct super_block *sb)
219 {
220         struct ll_sb_info *sbi = ll_s2sbi(sb);
221         ENTRY;
222
223         if (sbi != NULL) {
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;
231                 }
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;
236                 }
237                 if (sbi->ll_foreign_symlink_upcall) {
238                         OBD_FREE(sbi->ll_foreign_symlink_upcall,
239                                  strlen(sbi->ll_foreign_symlink_upcall) +
240                                        1);
241                         sbi->ll_foreign_symlink_upcall = NULL;
242                 }
243                 if (sbi->ll_foreign_symlink_upcall_items) {
244                         int i;
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;
248
249                         for (i = 0 ; i < nb_items; i++)
250                                 if (items[i].type == STRING_TYPE)
251                                         OBD_FREE(items[i].string,
252                                                        items[i].size);
253
254                         OBD_FREE_LARGE(items, nb_items *
255                                 sizeof(struct ll_foreign_symlink_upcall_item));
256                         sbi->ll_foreign_symlink_upcall_items = NULL;
257                 }
258                 ll_free_rw_stats_info(sbi);
259                 pcc_super_fini(&sbi->ll_pcc_super);
260                 OBD_FREE(sbi, sizeof(*sbi));
261         }
262         EXIT;
263 }
264
265 static int client_common_fill_super(struct super_block *sb, char *md, char *dt)
266 {
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;
275         u64 valid;
276         int size, err, checksum;
277         bool api32;
278         void *encctx;
279         int encctxlen;
280
281         ENTRY;
282         sbi->ll_md_obd = class_name2obd(md);
283         if (!sbi->ll_md_obd) {
284                 CERROR("MD %s: not setup or attached\n", md);
285                 RETURN(-EINVAL);
286         }
287
288         OBD_ALLOC_PTR(data);
289         if (data == NULL)
290                 RETURN(-ENOMEM);
291
292         OBD_ALLOC_PTR(osfs);
293         if (osfs == NULL) {
294                 OBD_FREE_PTR(data);
295                 RETURN(-ENOMEM);
296         }
297
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;
301
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;
326
327         data->ocd_connect_flags2 = OBD_CONNECT2_DIR_MIGRATE |
328                                    OBD_CONNECT2_SUM_STATFS |
329                                    OBD_CONNECT2_OVERSTRIPING |
330                                    OBD_CONNECT2_FLR |
331                                    OBD_CONNECT2_LOCK_CONVERT |
332                                    OBD_CONNECT2_ARCHIVE_ID_ARRAY |
333                                    OBD_CONNECT2_INC_XID |
334                                    OBD_CONNECT2_LSOM |
335                                    OBD_CONNECT2_ASYNC_DISCARD |
336                                    OBD_CONNECT2_PCC |
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;
342
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;
346 #endif
347         data->ocd_connect_flags |= OBD_CONNECT_ACL_FLAGS;
348
349         data->ocd_cksum_types = obd_cksum_types_supported_client();
350
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;
355
356         data->ocd_ibits_known = MDS_INODELOCK_FULL;
357         data->ocd_version = LUSTRE_VERSION_CODE;
358
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;
363
364 #ifdef SB_NOSEC
365         /* Setting this indicates we correctly support S_NOSEC (See kernel
366          * commit 9e1f1de02c2275d7172e18dc4e7c2065777611bf)
367          */
368         sb->s_flags |= SB_NOSEC;
369 #endif
370         sbi->ll_fop = ll_select_file_operations(sbi);
371
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;
375
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);
380         }
381
382 #if defined(CONFIG_SECURITY)
383         data->ocd_connect_flags2 |= OBD_CONNECT2_SELINUX_POLICY;
384 #endif
385
386         data->ocd_brw_size = MD_MAX_BRW_SIZE;
387
388         err = obd_connect(NULL, &sbi->ll_md_exp, sbi->ll_md_obd,
389                           &sbi->ll_sb_uuid, data, sbi->ll_cache);
390         if (err == -EBUSY) {
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);
395                 GOTO(out, err);
396         } else if (err) {
397                 CERROR("cannot connect to %s: rc = %d\n", md, err);
398                 GOTO(out, err);
399         }
400
401         sbi->ll_md_exp->exp_connect_data = *data;
402
403         err = obd_fid_init(sbi->ll_md_exp->exp_obd, sbi->ll_md_exp,
404                            LUSTRE_SEQ_METADATA);
405         if (err) {
406                 CERROR("%s: Can't init metadata layer FID infrastructure, "
407                        "rc = %d\n", sbi->ll_md_exp->exp_obd->obd_name, err);
408                 GOTO(out_md, err);
409         }
410
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
413          * avaible */
414         err = obd_statfs(NULL, sbi->ll_md_exp, osfs,
415                         ktime_get_seconds() - sbi->ll_statfs_max_age,
416                         OBD_STATFS_FOR_MDT0);
417         if (err)
418                 GOTO(out_md_fid, err);
419
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) {
430                 char *buf;
431
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);
442         }
443
444         size = sizeof(*data);
445         err = obd_get_info(NULL, sbi->ll_md_exp, sizeof(KEY_CONN_DATA),
446                            KEY_CONN_DATA,  &size, data);
447         if (err) {
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);
451         }
452
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;
462
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);
468         }
469
470         if (data->ocd_connect_flags & OBD_CONNECT_ACL) {
471 #ifdef SB_POSIXACL
472                 sb->s_flags |= SB_POSIXACL;
473 #endif
474                 set_bit(LL_SBI_ACL, sbi->ll_flags);
475         } else {
476                 LCONSOLE_INFO("client wants to enable acl, but mdt not!\n");
477 #ifdef SB_POSIXACL
478                 sb->s_flags &= ~SB_POSIXACL;
479 #endif
480                 clear_bit(LL_SBI_ACL, sbi->ll_flags);
481         }
482
483         if (data->ocd_connect_flags & OBD_CONNECT_64BITHASH)
484                 set_bit(LL_SBI_64BIT_HASH, sbi->ll_flags);
485
486         if (data->ocd_connect_flags & OBD_CONNECT_LAYOUTLOCK)
487                 set_bit(LL_SBI_LAYOUT_LOCK, sbi->ll_flags);
488
489         if (obd_connect_has_secctx(data))
490                 set_bit(LL_SBI_FILE_SECCTX, sbi->ll_flags);
491
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",
495                                       sbi->ll_fsname,
496                                       sbi->ll_md_exp->exp_obd->obd_name);
497                 ll_sbi_set_encrypt(sbi, false);
498         }
499
500         if (ll_sbi_has_name_encrypt(sbi) && !obd_connect_has_name_enc(data)) {
501                 struct  lustre_sb_info *lsi = s2lsi(sb);
502
503                 if (ll_sb_has_test_dummy_encryption(sb))
504                         LCONSOLE_WARN("%s: server %s does not support name encryption, not using it.\n",
505                                       sbi->ll_fsname,
506                                       sbi->ll_md_exp->exp_obd->obd_name);
507                 lsi->lsi_flags &= ~LSI_FILENAME_ENC;
508                 ll_sbi_set_name_encrypt(sbi, false);
509         }
510
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;
520                 }
521         }
522
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);
527         }
528
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;
532
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;
550
551         if (!OBD_FAIL_CHECK(OBD_FAIL_OSC_CONNECT_GRANT_PARAM))
552                 data->ocd_connect_flags |= OBD_CONNECT_GRANT_PARAM;
553
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
558          */
559         data->ocd_connect_flags |= OBD_CONNECT_CKSUM;
560
561         if (OBD_FAIL_CHECK(OBD_FAIL_OSC_CKSUM_ADLER_ONLY))
562                 data->ocd_cksum_types = OBD_CKSUM_ADLER;
563         else
564                 data->ocd_cksum_types = obd_cksum_types_supported_client();
565
566 #ifdef HAVE_LRU_RESIZE_SUPPORT
567         data->ocd_connect_flags |= OBD_CONNECT_LRU_RESIZE;
568 #endif
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;
572
573         if (ll_sbi_has_encrypt(sbi))
574                 obd_connect_set_enc(data);
575
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);
579
580         sbi->ll_dt_obd->obd_upcall.onu_owner = &sbi->ll_lco;
581         sbi->ll_dt_obd->obd_upcall.onu_upcall = cl_ocd_update;
582
583         data->ocd_brw_size = DT_MAX_BRW_SIZE;
584
585         err = obd_connect(NULL, &sbi->ll_dt_exp, sbi->ll_dt_obd,
586                           &sbi->ll_sb_uuid, data, sbi->ll_cache);
587         if (err == -EBUSY) {
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);
592                 GOTO(out_md, err);
593         } else if (err) {
594                 CERROR("%s: Cannot connect to %s: rc = %d\n",
595                        sbi->ll_dt_exp->exp_obd->obd_name, dt, err);
596                 GOTO(out_md, err);
597         }
598
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",
603                                       sbi->ll_fsname, dt);
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");
607         }
608
609         sbi->ll_dt_exp->exp_connect_data = *data;
610
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;
620         }
621
622         err = obd_fid_init(sbi->ll_dt_exp->exp_obd, sbi->ll_dt_exp,
623                            LUSTRE_SEQ_METADATA);
624         if (err) {
625                 CERROR("%s: Can't init data layer FID infrastructure, "
626                        "rc = %d\n", sbi->ll_dt_exp->exp_obd->obd_name, err);
627                 GOTO(out_dt, err);
628         }
629
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);
635
636         fid_zero(&sbi->ll_root_fid);
637         err = md_get_root(sbi->ll_md_exp, get_mount_fileset(sb),
638                            &sbi->ll_root_fid);
639         if (err) {
640                 CERROR("cannot mds_connect: rc = %d\n", err);
641                 GOTO(out_lock_cn_cb, err);
642         }
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);
648         }
649         CDEBUG(D_SUPER, "rootfid "DFID"\n", PFID(&sbi->ll_root_fid));
650
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;
655 #endif
656 #ifdef HAVE_LUSTRE_CRYPTO
657         llcrypt_set_ops(sb, &lustre_cryptops);
658 #endif
659
660         /* make root inode
661          * XXX: move this to after cbd setup? */
662         valid = OBD_MD_FLGETATTR | OBD_MD_FLBLOCKS | OBD_MD_FLMODEASIZE |
663                 OBD_MD_ENCCTX;
664         if (test_bit(LL_SBI_ACL, sbi->ll_flags))
665                 valid |= OBD_MD_FLACL;
666
667         OBD_ALLOC_PTR(op_data);
668         if (op_data == NULL)
669                 GOTO(out_lock_cn_cb, err = -ENOMEM);
670
671         op_data->op_fid1 = sbi->ll_root_fid;
672         op_data->op_mode = 0;
673         op_data->op_valid = valid;
674
675         err = md_getattr(sbi->ll_md_exp, op_data, &request);
676
677         /* We need enc ctx info, so reset it in op_data to
678          * prevent it from being freed.
679          */
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);
685         if (err) {
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);
689         }
690
691         err = md_get_lustre_md(sbi->ll_md_exp, &request->rq_pill,
692                                sbi->ll_dt_exp, sbi->ll_md_exp, &lmd);
693         if (err) {
694                 CERROR("failed to understand root inode md: rc = %d\n", err);
695                 ptlrpc_req_finished(request);
696                 GOTO(out_lock_cn_cb, err);
697         }
698
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);
703
704         if (IS_ERR(root)) {
705                 lmd_clear_acl(&lmd);
706                 err = IS_ERR(root) ? PTR_ERR(root) : -EBADF;
707                 root = NULL;
708                 CERROR("%s: bad ll_iget() for root: rc = %d\n",
709                        sbi->ll_fsname, err);
710                 ptlrpc_req_finished(request);
711                 GOTO(out_root, err);
712         }
713
714         if (encctxlen) {
715                 CDEBUG(D_SEC,
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);
719                 if (err)
720                         CWARN("%s: cannot set enc ctx for "DFID": rc = %d\n",
721                               sbi->ll_fsname,
722                               PFID(&sbi->ll_root_fid), err);
723         }
724         ptlrpc_req_finished(request);
725
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);
731                 if (err) {
732                         CERROR("%s: Set checksum failed: rc = %d\n",
733                                sbi->ll_dt_exp->exp_obd->obd_name, err);
734                         GOTO(out_root, err);
735                 }
736         }
737         cl_sb_init(sb);
738
739         sb->s_root = d_make_root(root);
740         if (sb->s_root == NULL) {
741                 err = -ENOMEM;
742                 CERROR("%s: can't make root dentry: rc = %d\n",
743                        sbi->ll_fsname, err);
744                 GOTO(out_root, err);
745         }
746
747         sbi->ll_sdev_orig = sb->s_dev;
748
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
751          * on all clients. */
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);
755         if (uuid != NULL)
756                 sb->s_dev = get_uuid2int(uuid->uuid, strlen(uuid->uuid));
757
758         if (data != NULL)
759                 OBD_FREE_PTR(data);
760         if (osfs != NULL)
761                 OBD_FREE_PTR(osfs);
762
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);
767                 if (err < 0) {
768                         CERROR("%s: could not register %s in llite: rc = %d\n",
769                                dt, sbi->ll_fsname, err);
770                         err = 0;
771                 }
772         }
773
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);
778                 if (err < 0) {
779                         CERROR("%s: could not register %s in llite: rc = %d\n",
780                                md, sbi->ll_fsname, err);
781                         err = 0;
782                 }
783         }
784
785         RETURN(err);
786 out_root:
787         iput(root);
788 out_lock_cn_cb:
789         obd_fid_fini(sbi->ll_dt_exp->exp_obd);
790 out_dt:
791         obd_disconnect(sbi->ll_dt_exp);
792         sbi->ll_dt_exp = NULL;
793         sbi->ll_dt_obd = NULL;
794 out_md_fid:
795         obd_fid_fini(sbi->ll_md_exp->exp_obd);
796 out_md:
797         obd_disconnect(sbi->ll_md_exp);
798         sbi->ll_md_exp = NULL;
799         sbi->ll_md_obd = NULL;
800 out:
801         if (data != NULL)
802                 OBD_FREE_PTR(data);
803         if (osfs != NULL)
804                 OBD_FREE_PTR(osfs);
805         return err;
806 }
807
808 int ll_get_max_mdsize(struct ll_sb_info *sbi, int *lmmsize)
809 {
810         int size, rc;
811
812         size = sizeof(*lmmsize);
813         rc = obd_get_info(NULL, sbi->ll_dt_exp, sizeof(KEY_MAX_EASIZE),
814                           KEY_MAX_EASIZE, &size, lmmsize);
815         if (rc != 0) {
816                 CERROR("%s: cannot get max LOV EA size: rc = %d\n",
817                        sbi->ll_dt_exp->exp_obd->obd_name, rc);
818                 RETURN(rc);
819         }
820
821         CDEBUG(D_INFO, "max LOV ea size: %d\n", *lmmsize);
822
823         size = sizeof(int);
824         rc = obd_get_info(NULL, sbi->ll_md_exp, sizeof(KEY_MAX_EASIZE),
825                           KEY_MAX_EASIZE, &size, lmmsize);
826         if (rc)
827                 CERROR("Get max mdsize error rc %d\n", rc);
828
829         CDEBUG(D_INFO, "max LMV ea size: %d\n", *lmmsize);
830
831         RETURN(rc);
832 }
833
834 /**
835  * Get the value of the default_easize parameter.
836  *
837  * \see client_obd::cl_default_mds_easize
838  *
839  * \param[in] sbi       superblock info for this filesystem
840  * \param[out] lmmsize  pointer to storage location for value
841  *
842  * \retval 0            on success
843  * \retval negative     negated errno on failure
844  */
845 int ll_get_default_mdsize(struct ll_sb_info *sbi, int *lmmsize)
846 {
847         int size, rc;
848
849         size = sizeof(int);
850         rc = obd_get_info(NULL, sbi->ll_md_exp, sizeof(KEY_DEFAULT_EASIZE),
851                          KEY_DEFAULT_EASIZE, &size, lmmsize);
852         if (rc)
853                 CERROR("Get default mdsize error rc %d\n", rc);
854
855         RETURN(rc);
856 }
857
858 /**
859  * Set the default_easize parameter to the given value.
860  *
861  * \see client_obd::cl_default_mds_easize
862  *
863  * \param[in] sbi       superblock info for this filesystem
864  * \param[in] lmmsize   the size to set
865  *
866  * \retval 0            on success
867  * \retval negative     negated errno on failure
868  */
869 int ll_set_default_mdsize(struct ll_sb_info *sbi, int lmmsize)
870 {
871         int rc;
872
873         if (lmmsize < sizeof(struct lov_mds_md) ||
874             lmmsize > OBD_MAX_DEFAULT_EA_SIZE)
875                 return -EINVAL;
876
877         rc = obd_set_info_async(NULL, sbi->ll_md_exp,
878                                 sizeof(KEY_DEFAULT_EASIZE), KEY_DEFAULT_EASIZE,
879                                 sizeof(int), &lmmsize, NULL);
880
881         RETURN(rc);
882 }
883
884 static void client_common_put_super(struct super_block *sb)
885 {
886         struct ll_sb_info *sbi = ll_s2sbi(sb);
887         ENTRY;
888
889         cl_sb_fini(sb);
890
891         obd_fid_fini(sbi->ll_dt_exp->exp_obd);
892         obd_disconnect(sbi->ll_dt_exp);
893         sbi->ll_dt_exp = NULL;
894
895         ll_debugfs_unregister_super(sb);
896
897         obd_fid_fini(sbi->ll_md_exp->exp_obd);
898         obd_disconnect(sbi->ll_md_exp);
899         sbi->ll_md_exp = NULL;
900
901         EXIT;
902 }
903
904 void ll_kill_super(struct super_block *sb)
905 {
906         struct ll_sb_info *sbi;
907         ENTRY;
908
909         /* not init sb ?*/
910         if (!(sb->s_flags & SB_ACTIVE))
911                 return;
912
913         sbi = ll_s2sbi(sb);
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 */
917         if (sbi) {
918                 sb->s_dev = sbi->ll_sdev_orig;
919
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);
924         }
925
926         EXIT;
927 }
928
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"
933  * for the sbi_flags.
934  */
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},
960
961         {LL_SBI_ACL,                    "acl"},
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"},
973 };
974
975 int ll_sbi_flags_seq_show(struct seq_file *m, void *v)
976 {
977         struct super_block *sb = m->private;
978         int i;
979
980         for (i = 0; i < LL_SBI_NUM_FLAGS; i++) {
981                 int j;
982
983                 if (!test_bit(i, ll_s2sbi(sb)->ll_flags))
984                         continue;
985
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) {
989                                 seq_printf(m, "%s ",
990                                            ll_sbi_flags_name[j].pattern);
991                                 break;
992                         }
993                 }
994         }
995         seq_puts(m, "\b\n");
996         return 0;
997 }
998
999 /* non-client-specific mount options are parsed in lmd_parse */
1000 static int ll_options(char *options, struct super_block *sb)
1001 {
1002         struct ll_sb_info *sbi = ll_s2sbi(sb);
1003         char *s2, *s1, *opts;
1004         int err = 0;
1005
1006         ENTRY;
1007         if (!options)
1008                 RETURN(0);
1009
1010         /* Don't stomp on lmd_opts */
1011         opts = kstrdup(options, GFP_KERNEL);
1012         if (!opts)
1013                 RETURN(-ENOMEM);
1014         s1 = opts;
1015         s2 = opts;
1016
1017         CDEBUG(D_CONFIG, "Parsing opts %s\n", options);
1018
1019         while ((s1 = strsep(&opts, ",")) != NULL) {
1020                 substring_t args[MAX_OPT_ARGS];
1021                 bool turn_off = false;
1022                 int token;
1023
1024                 if (!*s1)
1025                         continue;
1026
1027                 CDEBUG(D_SUPER, "next opt=%s\n", s1);
1028
1029                 if (strncmp(s1, "no", 2) == 0)
1030                         turn_off = true;
1031
1032                 /*
1033                  * Initialize args struct so we know whether arg was
1034                  * found; some options take optional arguments.
1035                  */
1036                 args[0].to = NULL;
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))
1044                                 continue;
1045
1046                         LCONSOLE_ERROR_MSG(0x152,
1047                                            "Unknown option '%s', won't mount.\n",
1048                                            s1);
1049                         RETURN(-EINVAL);
1050                 }
1051
1052                 switch (token) {
1053                 case LL_SBI_NOLCK:
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);
1058                         break;
1059
1060                 case LL_SBI_FLOCK:
1061                         clear_bit(LL_SBI_LOCALFLOCK, sbi->ll_flags);
1062                         if (turn_off)
1063                                 clear_bit(LL_SBI_FLOCK, sbi->ll_flags);
1064                         else
1065                                 set_bit(token, sbi->ll_flags);
1066                         break;
1067
1068                 case LL_SBI_LOCALFLOCK:
1069                         clear_bit(LL_SBI_FLOCK, sbi->ll_flags);
1070                         set_bit(token, sbi->ll_flags);
1071                         break;
1072
1073                 case LL_SBI_CHECKSUM:
1074                         sbi->ll_checksum_set = 1;
1075                         fallthrough;
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:
1081                         if (turn_off)
1082                                 clear_bit(token, sbi->ll_flags);
1083                         else
1084                                 set_bit(token, sbi->ll_flags);
1085                         break;
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);
1090 #else
1091                         struct lustre_sb_info *lsi = s2lsi(sb);
1092
1093                         err = llcrypt_set_test_dummy_encryption(sb, &args[0],
1094                                                                 &lsi->lsi_dummy_enc_ctx);
1095                         if (!err)
1096                                 break;
1097
1098                         if (err == -EEXIST)
1099                                 LCONSOLE_WARN(
1100                                          "Can't change test_dummy_encryption");
1101                         else if (err == -EINVAL)
1102                                 LCONSOLE_WARN(
1103                                         "Value of option \"%s\" unrecognized",
1104                                         options);
1105                         else
1106                                 LCONSOLE_WARN(
1107                                          "Error processing option \"%s\" [%d]",
1108                                          options, err);
1109                         err = -1;
1110 #endif
1111 #else
1112                         LCONSOLE_WARN("Test dummy encryption mount option ignored: encryption not supported\n");
1113 #endif
1114                         break;
1115                 }
1116                 case LL_SBI_ENCRYPT:
1117 #ifdef HAVE_LUSTRE_CRYPTO
1118                         if (turn_off)
1119                                 clear_bit(token, sbi->ll_flags);
1120                         else
1121                                 set_bit(token, sbi->ll_flags);
1122 #else
1123                         LCONSOLE_WARN("noencrypt or encrypt mount option ignored: encryption not supported\n");
1124 #endif
1125                         break;
1126                 case LL_SBI_FOREIGN_SYMLINK:
1127                         /* non-default prefix provided ? */
1128                         if (args->from) {
1129                                 size_t old_len;
1130                                 char *old;
1131
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",
1136                                                            args->from);
1137                                         RETURN(-EINVAL);
1138                                 }
1139
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 =
1148                                                 old_len;
1149                                         RETURN(-ENOMEM);
1150                                 }
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,
1155                                                "kmalloced");
1156                                 if (old)
1157                                         OBD_FREE(old, old_len);
1158
1159                                 /* enable foreign symlink support */
1160                                 set_bit(token, sbi->ll_flags);
1161                         } else {
1162                                 LCONSOLE_ERROR_MSG(0x152,
1163                                                    "invalid %s option\n", s1);
1164                         }
1165                 fallthrough;
1166                 default:
1167                         break;
1168                 }
1169         }
1170         kfree(opts);
1171         RETURN(err);
1172 }
1173
1174 void ll_lli_init(struct ll_inode_info *lli)
1175 {
1176         lli->lli_inode_magic = LLI_INODE_MAGIC;
1177         lli->lli_flags = 0;
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;
1193
1194         init_rwsem(&lli->lli_xattrs_list_rwsem);
1195         mutex_init(&lli->lli_xattrs_enq_lock);
1196
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);
1205         } else {
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;
1227         }
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);
1232 }
1233
1234 #define MAX_STRING_SIZE 128
1235
1236 #ifndef HAVE_SUPER_SETUP_BDI_NAME
1237 #ifndef HAVE_BDI_CAP_MAP_COPY
1238 # define BDI_CAP_MAP_COPY       0
1239 #endif
1240
1241 static int super_setup_bdi_name(struct super_block *sb, char *fmt, ...)
1242 {
1243         struct  lustre_sb_info *lsi = s2lsi(sb);
1244         char buf[MAX_STRING_SIZE];
1245         va_list args;
1246         int err;
1247
1248         err = bdi_init(&lsi->lsi_bdi);
1249         if (err)
1250                 return err;
1251
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);
1257         va_end(args);
1258         err = bdi_register(&lsi->lsi_bdi, NULL, "%s", buf);
1259         va_end(args);
1260         if (!err)
1261                 sb->s_bdi = &lsi->lsi_bdi;
1262
1263         return err;
1264 }
1265 #endif /* !HAVE_SUPER_SETUP_BDI_NAME */
1266
1267 int ll_fill_super(struct super_block *sb)
1268 {
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];
1279         int md_len = 0;
1280         int dt_len = 0;
1281         uuid_t uuid;
1282         char *ptr;
1283         int len;
1284         int err;
1285
1286         ENTRY;
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);
1290
1291         OBD_RACE(OBD_FAIL_LLITE_RACE_MOUNT);
1292
1293         OBD_ALLOC_PTR(cfg);
1294         if (cfg == NULL)
1295                 GOTO(out_free_cfg, err = -ENOMEM);
1296
1297         /* client additional sb info */
1298         lsi->lsi_llsbi = sbi = ll_init_sbi();
1299         if (IS_ERR(sbi))
1300                 GOTO(out_free_cfg, err = PTR_ERR(sbi));
1301
1302         err = ll_options(lsi->lsi_lmd->lmd_opts, sb);
1303         if (err)
1304                 GOTO(out_free_cfg, err);
1305
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;
1309         else
1310                 /* filename encryption is disabled by default */
1311                 lsi->lsi_flags &= ~LSI_FILENAME_ENC;
1312
1313         /* kernel >= 2.6.38 store dentry operations in sb->s_d_op. */
1314         sb->s_d_op = &ll_d_ops;
1315
1316         /* UUID handling */
1317         generate_random_uuid(uuid.b);
1318         snprintf(sbi->ll_sb_uuid.uuid, sizeof(sbi->ll_sb_uuid), "%pU", uuid.b);
1319
1320         CDEBUG(D_CONFIG, "llite sb uuid: %s\n", sbi->ll_sb_uuid.uuid);
1321
1322         /* Get fsname */
1323         len = strlen(profilenm);
1324         ptr = strrchr(profilenm, '-');
1325         if (ptr && (strcmp(ptr, "-client") == 0))
1326                 len -= 7;
1327
1328         if (len > LUSTRE_MAXFSNAME) {
1329                 if (unlikely(len >= MAX_STRING_SIZE))
1330                         len = MAX_STRING_SIZE - 1;
1331                 strncpy(name, profilenm, len);
1332                 name[len] = '\0';
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);
1337         }
1338         strncpy(sbi->ll_fsname, profilenm, len);
1339         sbi->ll_fsname[len] = '\0';
1340
1341         /* Mount info */
1342         snprintf(name, sizeof(name), "%.*s-%016lx", len,
1343                  profilenm, cfg_instance);
1344
1345         err = super_setup_bdi_name(sb, "%s", name);
1346         if (err)
1347                 GOTO(out_free_cfg, err);
1348
1349         /* disable kernel readahead */
1350         sb->s_bdi->ra_pages = 0;
1351
1352         /* Call ll_debugfs_register_super() before lustre_process_log()
1353          * so that "llite.*.*" params can be processed correctly.
1354          */
1355         err = ll_debugfs_register_super(sb, name);
1356         if (err < 0) {
1357                 CERROR("%s: could not register mountpoint in llite: rc = %d\n",
1358                        sbi->ll_fsname, err);
1359                 err = 0;
1360         }
1361
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.
1364          */
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);
1371         if (err < 0)
1372                 GOTO(out_debugfs, err);
1373
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);
1381         }
1382         CDEBUG(D_CONFIG, "Found profile %s: mdc=%s osc=%s\n", profilenm,
1383                lprof->lp_md, lprof->lp_dt);
1384
1385         dt_len = strlen(lprof->lp_dt) + instlen + 2;
1386         OBD_ALLOC(dt, dt_len);
1387         if (!dt)
1388                 GOTO(out_profile, err = -ENOMEM);
1389         snprintf(dt, dt_len - 1, "%s-%016lx", lprof->lp_dt, cfg_instance);
1390
1391         md_len = strlen(lprof->lp_md) + instlen + 2;
1392         OBD_ALLOC(md, md_len);
1393         if (!md)
1394                 GOTO(out_free_dt, err = -ENOMEM);
1395         snprintf(md, md_len - 1, "%s-%016lx", lprof->lp_md, cfg_instance);
1396
1397         /* connections, registrations, sb setup */
1398         err = client_common_fill_super(sb, md, dt);
1399         if (err < 0)
1400                 GOTO(out_free_md, err);
1401
1402         sbi->ll_client_common_fill_super_succeeded = 1;
1403
1404 out_free_md:
1405         if (md)
1406                 OBD_FREE(md, md_len);
1407 out_free_dt:
1408         if (dt)
1409                 OBD_FREE(dt, dt_len);
1410 out_profile:
1411         if (lprof)
1412                 class_put_profile(lprof);
1413 out_debugfs:
1414         if (err < 0)
1415                 ll_debugfs_unregister_super(sb);
1416 out_free_cfg:
1417         if (cfg)
1418                 OBD_FREE_PTR(cfg);
1419
1420         if (err)
1421                 ll_put_super(sb);
1422         else if (test_bit(LL_SBI_VERBOSE, sbi->ll_flags))
1423                 LCONSOLE_WARN("Mounted %s\n", profilenm);
1424         RETURN(err);
1425 } /* ll_fill_super */
1426
1427 void ll_put_super(struct super_block *sb)
1428 {
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);
1435         long ccc_count;
1436         int next, force = 1, rc = 0;
1437         ENTRY;
1438
1439         if (IS_ERR(sbi))
1440                 GOTO(out_no_sbi, 0);
1441
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);
1445
1446         cfg.cfg_instance = cfg_instance;
1447         lustre_end_log(sb, profilenm, &cfg);
1448
1449         params_cfg.cfg_instance = cfg_instance;
1450         lustre_end_log(sb, PARAMS_FILENAME, &params_cfg);
1451
1452         if (sbi->ll_md_exp) {
1453                 obd = class_exp2obd(sbi->ll_md_exp);
1454                 if (obd)
1455                         force = obd->obd_force;
1456         }
1457
1458         /* Wait for unstable pages to be committed to stable storage */
1459         if (force == 0) {
1460                 rc = l_wait_event_abortable(
1461                         sbi->ll_cache->ccc_unstable_waitq,
1462                         atomic_long_read(&sbi->ll_cache->ccc_unstable_nr) == 0);
1463         }
1464
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);
1468
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.
1471          */
1472         if (force) {
1473                 next = 0;
1474                 while ((obd = class_devices_in_group(&sbi->ll_sb_uuid,
1475                                                      &next)) != NULL) {
1476                         obd->obd_force = force;
1477                 }
1478         }
1479
1480         if (sbi->ll_client_common_fill_super_succeeded) {
1481                 /* Only if client_common_fill_super succeeded */
1482                 client_common_put_super(sb);
1483         }
1484
1485         /* imitate failed cleanup */
1486         if (OBD_FAIL_CHECK(OBD_FAIL_OBD_CLEANUP))
1487                 goto skip_cleanup;
1488
1489         next = 0;
1490         while ((obd = class_devices_in_group(&sbi->ll_sb_uuid, &next)))
1491                 class_manual_cleanup(obd);
1492
1493 skip_cleanup:
1494         if (test_bit(LL_SBI_VERBOSE, sbi->ll_flags))
1495                 LCONSOLE_WARN("Unmounted %s\n", profilenm ? profilenm : "");
1496
1497         if (profilenm)
1498                 class_del_profile(profilenm);
1499
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;
1504         }
1505 #endif
1506
1507         llcrypt_free_dummy_context(&lsi->lsi_dummy_enc_ctx);
1508         ll_free_sbi(sb);
1509         lsi->lsi_llsbi = NULL;
1510 out_no_sbi:
1511         lustre_common_put_super(sb);
1512
1513         cl_env_cache_purge(~0);
1514
1515         EXIT;
1516 } /* client_put_super */
1517
1518 struct inode *ll_inode_from_resource_lock(struct ldlm_lock *lock)
1519 {
1520         struct inode *inode = NULL;
1521
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);
1529                 } else {
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);
1536                         inode = NULL;
1537                 }
1538         }
1539         unlock_res_and_lock(lock);
1540         return inode;
1541 }
1542
1543 void ll_dir_clear_lsm_md(struct inode *inode)
1544 {
1545         struct ll_inode_info *lli = ll_i2info(inode);
1546
1547         LASSERT(S_ISDIR(inode->i_mode));
1548
1549         if (lli->lli_lsm_md) {
1550                 lmv_free_memmd(lli->lli_lsm_md);
1551                 lli->lli_lsm_md = NULL;
1552         }
1553
1554         if (lli->lli_default_lsm_md) {
1555                 lmv_free_memmd(lli->lli_default_lsm_md);
1556                 lli->lli_default_lsm_md = NULL;
1557         }
1558 }
1559
1560 static struct inode *ll_iget_anon_dir(struct super_block *sb,
1561                                       const struct lu_fid *fid,
1562                                       struct lustre_md *md)
1563 {
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;
1568         ino_t ino;
1569
1570         ENTRY;
1571
1572         LASSERT(md->lmv);
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));
1579         }
1580
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",
1586                          PFID(fid));
1587
1588                 inode->i_mtime.tv_sec = 0;
1589                 inode->i_atime.tv_sec = 0;
1590                 inode->i_ctime.tv_sec = 0;
1591                 inode->i_rdev = 0;
1592
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;
1597 #endif
1598                 inode->i_op = &ll_dir_inode_operations;
1599                 inode->i_fop = &ll_dir_operations;
1600                 lli->lli_fid = *fid;
1601                 ll_lli_init(lli);
1602
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);
1608         } else {
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.
1612                  */
1613                 lli->lli_pfid = body->mbo_fid1;
1614         }
1615
1616         RETURN(inode);
1617 }
1618
1619 static int ll_init_lsm_md(struct inode *inode, struct lustre_md *md)
1620 {
1621         struct lu_fid *fid;
1622         struct lmv_stripe_md *lsm = md->lmv;
1623         struct ll_inode_info *lli = ll_i2info(inode);
1624         int i;
1625
1626         LASSERT(lsm != NULL);
1627
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);
1631
1632         if (!lmv_dir_striped(lsm))
1633                 goto out;
1634
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);
1641
1642                 if (!fid_is_sane(fid))
1643                         continue;
1644
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);
1653
1654                         lsm->lsm_md_oinfo[i].lmo_root = NULL;
1655                         while (i-- > 0) {
1656                                 iput(lsm->lsm_md_oinfo[i].lmo_root);
1657                                 lsm->lsm_md_oinfo[i].lmo_root = NULL;
1658                         }
1659                         return rc;
1660                 }
1661         }
1662 out:
1663         lli->lli_lsm_md = lsm;
1664
1665         return 0;
1666 }
1667
1668 static void ll_update_default_lsm_md(struct inode *inode, struct lustre_md *md)
1669 {
1670         struct ll_inode_info *lli = ll_i2info(inode);
1671
1672         ENTRY;
1673
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;
1681                         }
1682                         lli->lli_inherit_depth = 0;
1683                         up_write(&lli->lli_lsm_sem);
1684                 }
1685                 RETURN_EXIT;
1686         }
1687
1688         if (lli->lli_default_lsm_md) {
1689                 /* do nonthing if default lsm isn't changed */
1690                 down_read(&lli->lli_lsm_sem);
1691                 if (lli->lli_default_lsm_md &&
1692                     lsm_md_eq(lli->lli_default_lsm_md, md->default_lmv)) {
1693                         up_read(&lli->lli_lsm_sem);
1694                         RETURN_EXIT;
1695                 }
1696                 up_read(&lli->lli_lsm_sem);
1697         }
1698
1699         down_write(&lli->lli_lsm_sem);
1700         if (lli->lli_default_lsm_md)
1701                 lmv_free_memmd(lli->lli_default_lsm_md);
1702         lli->lli_default_lsm_md = md->default_lmv;
1703         lsm_md_dump(D_INODE, md->default_lmv);
1704         md->default_lmv = NULL;
1705         up_write(&lli->lli_lsm_sem);
1706         RETURN_EXIT;
1707 }
1708
1709 static int ll_update_lsm_md(struct inode *inode, struct lustre_md *md)
1710 {
1711         struct ll_inode_info *lli = ll_i2info(inode);
1712         struct lmv_stripe_md *lsm = md->lmv;
1713         struct cl_attr  *attr;
1714         int rc = 0;
1715
1716         ENTRY;
1717
1718         LASSERT(S_ISDIR(inode->i_mode));
1719         CDEBUG(D_INODE, "update lsm %p of "DFID"\n", lli->lli_lsm_md,
1720                PFID(ll_inode2fid(inode)));
1721
1722         /* update default LMV */
1723         if (md->default_lmv)
1724                 ll_update_default_lsm_md(inode, md);
1725
1726         /* after dir migration/restripe, a stripe may be turned into a
1727          * directory, in this case, zero out its lli_pfid.
1728          */
1729         if (unlikely(fid_is_norm(&lli->lli_pfid)))
1730                 fid_zero(&lli->lli_pfid);
1731
1732         /*
1733          * no striped information from request, lustre_md from req does not
1734          * include stripeEA, see ll_md_setattr()
1735          */
1736         if (!lsm)
1737                 RETURN(0);
1738
1739         /*
1740          * normally dir layout doesn't change, only take read lock to check
1741          * that to avoid blocking other MD operations.
1742          */
1743         down_read(&lli->lli_lsm_sem);
1744
1745         /* some current lookup initialized lsm, and unchanged */
1746         if (lli->lli_lsm_md && lsm_md_eq(lli->lli_lsm_md, lsm))
1747                 GOTO(unlock, rc = 0);
1748
1749         /* if dir layout doesn't match, check whether version is increased,
1750          * which means layout is changed, this happens in dir split/merge and
1751          * lfsck.
1752          *
1753          * foreign LMV should not change.
1754          */
1755         if (lli->lli_lsm_md && lmv_dir_striped(lli->lli_lsm_md) &&
1756             lsm->lsm_md_layout_version <=
1757             lli->lli_lsm_md->lsm_md_layout_version) {
1758                 CERROR("%s: "DFID" dir layout mismatch:\n",
1759                        ll_i2sbi(inode)->ll_fsname, PFID(&lli->lli_fid));
1760                 lsm_md_dump(D_ERROR, lli->lli_lsm_md);
1761                 lsm_md_dump(D_ERROR, lsm);
1762                 GOTO(unlock, rc = -EINVAL);
1763         }
1764
1765         up_read(&lli->lli_lsm_sem);
1766         down_write(&lli->lli_lsm_sem);
1767         /* clear existing lsm */
1768         if (lli->lli_lsm_md) {
1769                 lmv_free_memmd(lli->lli_lsm_md);
1770                 lli->lli_lsm_md = NULL;
1771         }
1772
1773         rc = ll_init_lsm_md(inode, md);
1774         if (rc) {
1775                 up_write(&lli->lli_lsm_sem);
1776                 RETURN(rc);
1777         }
1778
1779         /* md_merge_attr() may take long, since lsm is already set, switch to
1780          * read lock.
1781          */
1782         downgrade_write(&lli->lli_lsm_sem);
1783
1784         /* set md->lmv to NULL, so the following free lustre_md will not free
1785          * this lsm.
1786          */
1787         md->lmv = NULL;
1788
1789         if (!lmv_dir_striped(lli->lli_lsm_md))
1790                 GOTO(unlock, rc = 0);
1791
1792         OBD_ALLOC_PTR(attr);
1793         if (!attr)
1794                 GOTO(unlock, rc = -ENOMEM);
1795
1796         /* validate the lsm */
1797         rc = md_merge_attr(ll_i2mdexp(inode), lli->lli_lsm_md, attr,
1798                            ll_md_blocking_ast);
1799         if (!rc) {
1800                 if (md->body->mbo_valid & OBD_MD_FLNLINK)
1801                         md->body->mbo_nlink = attr->cat_nlink;
1802                 if (md->body->mbo_valid & OBD_MD_FLSIZE)
1803                         md->body->mbo_size = attr->cat_size;
1804                 if (md->body->mbo_valid & OBD_MD_FLATIME)
1805                         md->body->mbo_atime = attr->cat_atime;
1806                 if (md->body->mbo_valid & OBD_MD_FLCTIME)
1807                         md->body->mbo_ctime = attr->cat_ctime;
1808                 if (md->body->mbo_valid & OBD_MD_FLMTIME)
1809                         md->body->mbo_mtime = attr->cat_mtime;
1810         }
1811
1812         OBD_FREE_PTR(attr);
1813         GOTO(unlock, rc);
1814 unlock:
1815         up_read(&lli->lli_lsm_sem);
1816
1817         return rc;
1818 }
1819
1820 void ll_clear_inode(struct inode *inode)
1821 {
1822         struct ll_inode_info *lli = ll_i2info(inode);
1823         struct ll_sb_info *sbi = ll_i2sbi(inode);
1824
1825         ENTRY;
1826
1827         CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID"(%p)\n",
1828                PFID(ll_inode2fid(inode)), inode);
1829
1830         if (S_ISDIR(inode->i_mode)) {
1831                 /* these should have been cleared in ll_file_release */
1832                 LASSERT(lli->lli_opendir_key == NULL);
1833                 LASSERT(lli->lli_sai == NULL);
1834                 LASSERT(lli->lli_opendir_pid == 0);
1835         } else {
1836                 pcc_inode_free(inode);
1837         }
1838
1839         md_null_inode(sbi->ll_md_exp, ll_inode2fid(inode));
1840
1841         LASSERT(!lli->lli_open_fd_write_count);
1842         LASSERT(!lli->lli_open_fd_read_count);
1843         LASSERT(!lli->lli_open_fd_exec_count);
1844
1845         if (lli->lli_mds_write_och)
1846                 ll_md_real_close(inode, FMODE_WRITE);
1847         if (lli->lli_mds_exec_och)
1848                 ll_md_real_close(inode, FMODE_EXEC);
1849         if (lli->lli_mds_read_och)
1850                 ll_md_real_close(inode, FMODE_READ);
1851
1852         if (S_ISLNK(inode->i_mode) && lli->lli_symlink_name) {
1853                 OBD_FREE(lli->lli_symlink_name,
1854                          strlen(lli->lli_symlink_name) + 1);
1855                 lli->lli_symlink_name = NULL;
1856         }
1857
1858         ll_xattr_cache_destroy(inode);
1859
1860         forget_all_cached_acls(inode);
1861         lli_clear_acl(lli);
1862         lli->lli_inode_magic = LLI_INODE_DEAD;
1863
1864         if (S_ISDIR(inode->i_mode))
1865                 ll_dir_clear_lsm_md(inode);
1866         else if (S_ISREG(inode->i_mode) && !is_bad_inode(inode))
1867                 LASSERT(list_empty(&lli->lli_agl_list));
1868
1869         /*
1870          * XXX This has to be done before lsm is freed below, because
1871          * cl_object still uses inode lsm.
1872          */
1873         cl_inode_fini(inode);
1874
1875         llcrypt_put_encryption_info(inode);
1876
1877         EXIT;
1878 }
1879
1880 static int ll_md_setattr(struct dentry *dentry, struct md_op_data *op_data)
1881 {
1882         struct lustre_md md;
1883         struct inode *inode = dentry->d_inode;
1884         struct ll_sb_info *sbi = ll_i2sbi(inode);
1885         struct ptlrpc_request *request = NULL;
1886         int rc, ia_valid;
1887
1888         ENTRY;
1889
1890         op_data = ll_prep_md_op_data(op_data, inode, NULL, NULL, 0, 0,
1891                                      LUSTRE_OPC_ANY, NULL);
1892         if (IS_ERR(op_data))
1893                 RETURN(PTR_ERR(op_data));
1894
1895         /* If this is a chgrp of a regular file, we want to reserve enough
1896          * quota to cover the entire file size.
1897          */
1898         if (S_ISREG(inode->i_mode) && op_data->op_attr.ia_valid & ATTR_GID &&
1899             from_kgid(&init_user_ns, op_data->op_attr.ia_gid) !=
1900             from_kgid(&init_user_ns, inode->i_gid)) {
1901                 op_data->op_xvalid |= OP_XVALID_BLOCKS;
1902                 op_data->op_attr_blocks = inode->i_blocks;
1903         }
1904
1905
1906         rc = md_setattr(sbi->ll_md_exp, op_data, NULL, 0, &request);
1907         if (rc) {
1908                 ptlrpc_req_finished(request);
1909                 if (rc == -ENOENT) {
1910                         clear_nlink(inode);
1911                         /* Unlinked special device node? Or just a race?
1912                          * Pretend we done everything. */
1913                         if (!S_ISREG(inode->i_mode) &&
1914                             !S_ISDIR(inode->i_mode)) {
1915                                 ia_valid = op_data->op_attr.ia_valid;
1916                                 op_data->op_attr.ia_valid &= ~TIMES_SET_FLAGS;
1917                                 rc = simple_setattr(&init_user_ns, dentry,
1918                                                     &op_data->op_attr);
1919                                 op_data->op_attr.ia_valid = ia_valid;
1920                         }
1921                 } else if (rc != -EPERM && rc != -EACCES && rc != -ETXTBSY) {
1922                         CERROR("md_setattr fails: rc = %d\n", rc);
1923                 }
1924                 RETURN(rc);
1925         }
1926
1927         rc = md_get_lustre_md(sbi->ll_md_exp, &request->rq_pill, sbi->ll_dt_exp,
1928                               sbi->ll_md_exp, &md);
1929         if (rc) {
1930                 ptlrpc_req_finished(request);
1931                 RETURN(rc);
1932         }
1933
1934         ia_valid = op_data->op_attr.ia_valid;
1935         /* inode size will be in ll_setattr_ost, can't do it now since dirty
1936          * cache is not cleared yet. */
1937         op_data->op_attr.ia_valid &= ~(TIMES_SET_FLAGS | ATTR_SIZE);
1938         if (S_ISREG(inode->i_mode))
1939                 inode_lock(inode);
1940         rc = simple_setattr(&init_user_ns, dentry, &op_data->op_attr);
1941         if (S_ISREG(inode->i_mode))
1942                 inode_unlock(inode);
1943         op_data->op_attr.ia_valid = ia_valid;
1944
1945         rc = ll_update_inode(inode, &md);
1946         ptlrpc_req_finished(request);
1947
1948         RETURN(rc);
1949 }
1950
1951 /**
1952  * Zero portion of page that is part of @inode.
1953  * This implies, if necessary:
1954  * - taking cl_lock on range corresponding to concerned page
1955  * - grabbing vm page
1956  * - associating cl_page
1957  * - proceeding to clio read
1958  * - zeroing range in page
1959  * - proceeding to cl_page flush
1960  * - releasing cl_lock
1961  *
1962  * \param[in] inode     inode
1963  * \param[in] index     page index
1964  * \param[in] offset    offset in page to start zero from
1965  * \param[in] len       len to zero
1966  *
1967  * \retval 0            on success
1968  * \retval negative     errno on failure
1969  */
1970 int ll_io_zero_page(struct inode *inode, pgoff_t index, pgoff_t offset,
1971                     unsigned len)
1972 {
1973         struct ll_inode_info *lli = ll_i2info(inode);
1974         struct cl_object *clob = lli->lli_clob;
1975         __u16 refcheck;
1976         struct lu_env *env = NULL;
1977         struct cl_io *io = NULL;
1978         struct cl_page *clpage = NULL;
1979         struct page *vmpage = NULL;
1980         unsigned from = index << PAGE_SHIFT;
1981         struct cl_lock *lock = NULL;
1982         struct cl_lock_descr *descr = NULL;
1983         struct cl_2queue *queue = NULL;
1984         struct cl_sync_io *anchor = NULL;
1985         bool holdinglock = false;
1986         int rc;
1987
1988         ENTRY;
1989
1990         env = cl_env_get(&refcheck);
1991         if (IS_ERR(env))
1992                 RETURN(PTR_ERR(env));
1993
1994         io = vvp_env_thread_io(env);
1995         io->ci_obj = clob;
1996         rc = cl_io_rw_init(env, io, CIT_WRITE, from, PAGE_SIZE);
1997         if (rc)
1998                 GOTO(putenv, rc);
1999
2000         lock = vvp_env_lock(env);
2001         descr = &lock->cll_descr;
2002         descr->cld_obj   = io->ci_obj;
2003         descr->cld_start = cl_index(io->ci_obj, from);
2004         descr->cld_end   = cl_index(io->ci_obj, from + PAGE_SIZE - 1);
2005         descr->cld_mode  = CLM_WRITE;
2006         descr->cld_enq_flags = CEF_MUST | CEF_NONBLOCK;
2007
2008         /* request lock for page */
2009         rc = cl_lock_request(env, io, lock);
2010         /* -ECANCELED indicates a matching lock with a different extent
2011          * was already present, and -EEXIST indicates a matching lock
2012          * on exactly the same extent was already present.
2013          * In both cases it means we are covered.
2014          */
2015         if (rc == -ECANCELED || rc == -EEXIST)
2016                 rc = 0;
2017         else if (rc < 0)
2018                 GOTO(iofini, rc);
2019         else
2020                 holdinglock = true;
2021
2022         /* grab page */
2023         vmpage = grab_cache_page_nowait(inode->i_mapping, index);
2024         if (vmpage == NULL)
2025                 GOTO(rellock, rc = -EOPNOTSUPP);
2026
2027         if (!PageDirty(vmpage)) {
2028                 /* associate cl_page */
2029                 clpage = cl_page_find(env, clob, vmpage->index,
2030                                       vmpage, CPT_CACHEABLE);
2031                 if (IS_ERR(clpage))
2032                         GOTO(pagefini, rc = PTR_ERR(clpage));
2033
2034                 cl_page_assume(env, io, clpage);
2035         }
2036
2037         if (!PageUptodate(vmpage) && !PageDirty(vmpage) &&
2038             !PageWriteback(vmpage)) {
2039                 /* read page */
2040                 /* Set PagePrivate2 to detect special case of empty page
2041                  * in osc_brw_fini_request().
2042                  * It is also used to tell ll_io_read_page() that we do not
2043                  * want the vmpage to be unlocked.
2044                  */
2045                 SetPagePrivate2(vmpage);
2046                 rc = ll_io_read_page(env, io, clpage, NULL);
2047                 if (!PagePrivate2(vmpage)) {
2048                         /* PagePrivate2 was cleared in osc_brw_fini_request()
2049                          * meaning we read an empty page. In this case, in order
2050                          * to avoid allocating unnecessary block in truncated
2051                          * file, we must not zero and write as below. Subsequent
2052                          * server-side truncate will handle things correctly.
2053                          */
2054                         cl_page_unassume(env, io, clpage);
2055                         GOTO(clpfini, rc = 0);
2056                 }
2057                 ClearPagePrivate2(vmpage);
2058                 if (rc)
2059                         GOTO(clpfini, rc);
2060         }
2061
2062         /* Thanks to PagePrivate2 flag, ll_io_read_page() did not unlock
2063          * the vmpage, so we are good to proceed and zero range in page.
2064          */
2065         zero_user(vmpage, offset, len);
2066
2067         if (holdinglock && clpage) {
2068                 /* explicitly write newly modified page */
2069                 queue = &io->ci_queue;
2070                 cl_2queue_init(queue);
2071                 anchor = &vvp_env_info(env)->vti_anchor;
2072                 cl_sync_io_init(anchor, 1);
2073                 clpage->cp_sync_io = anchor;
2074                 cl_page_list_add(&queue->c2_qin, clpage, true);
2075                 rc = cl_io_submit_rw(env, io, CRT_WRITE, queue);
2076                 if (rc)
2077                         GOTO(queuefini1, rc);
2078                 rc = cl_sync_io_wait(env, anchor, 0);
2079                 if (rc)
2080                         GOTO(queuefini2, rc);
2081                 cl_page_assume(env, io, clpage);
2082
2083 queuefini2:
2084                 cl_2queue_discard(env, io, queue);
2085 queuefini1:
2086                 cl_2queue_disown(env, queue);
2087                 cl_2queue_fini(env, queue);
2088         }
2089
2090 clpfini:
2091         if (clpage)
2092                 cl_page_put(env, clpage);
2093 pagefini:
2094         unlock_page(vmpage);
2095         put_page(vmpage);
2096 rellock:
2097         if (holdinglock)
2098                 cl_lock_release(env, lock);
2099 iofini:
2100         cl_io_fini(env, io);
2101 putenv:
2102         if (env)
2103                 cl_env_put(env, &refcheck);
2104
2105         RETURN(rc);
2106 }
2107
2108 /**
2109  * Get reference file from volatile file name.
2110  * Volatile file name may look like:
2111  * <parent>/LUSTRE_VOLATILE_HDR:<mdt_index>:<random>:fd=<fd>
2112  * where fd is opened descriptor of reference file.
2113  *
2114  * \param[in] volatile_name     volatile file name
2115  * \param[in] volatile_len      volatile file name length
2116  * \param[out] ref_file         pointer to struct file of reference file
2117  *
2118  * \retval 0            on success
2119  * \retval negative     errno on failure
2120  */
2121 int volatile_ref_file(const char *volatile_name, int volatile_len,
2122                       struct file **ref_file)
2123 {
2124         char *p, *q, *fd_str;
2125         int fd, rc;
2126
2127         p = strnstr(volatile_name, ":fd=", volatile_len);
2128         if (!p || strlen(p + 4) == 0)
2129                 return -EINVAL;
2130
2131         q = strchrnul(p + 4, ':');
2132         fd_str = kstrndup(p + 4, q - p - 4, GFP_NOFS);
2133         if (!fd_str)
2134                 return -ENOMEM;
2135         rc = kstrtouint(fd_str, 10, &fd);
2136         kfree(fd_str);
2137         if (rc)
2138                 return -EINVAL;
2139
2140         *ref_file = fget(fd);
2141         if (!(*ref_file))
2142                 return -EINVAL;
2143         return 0;
2144 }
2145
2146 /* If this inode has objects allocated to it (lsm != NULL), then the OST
2147  * object(s) determine the file size and mtime.  Otherwise, the MDS will
2148  * keep these values until such a time that objects are allocated for it.
2149  * We do the MDS operations first, as it is checking permissions for us.
2150  * We don't to the MDS RPC if there is nothing that we want to store there,
2151  * otherwise there is no harm in updating mtime/atime on the MDS if we are
2152  * going to do an RPC anyways.
2153  *
2154  * If we are doing a truncate, we will send the mtime and ctime updates
2155  * to the OST with the punch RPC, otherwise we do an explicit setattr RPC.
2156  * I don't believe it is possible to get e.g. ATTR_MTIME_SET and ATTR_SIZE
2157  * at the same time.
2158  *
2159  * In case of HSMimport, we only set attr on MDS.
2160  */
2161 int ll_setattr_raw(struct dentry *dentry, struct iattr *attr,
2162                    enum op_xvalid xvalid, bool hsm_import)
2163 {
2164         struct inode *inode = dentry->d_inode;
2165         struct ll_inode_info *lli = ll_i2info(inode);
2166         struct md_op_data *op_data = NULL;
2167         ktime_t kstart = ktime_get();
2168         int rc = 0;
2169
2170         ENTRY;
2171
2172         CDEBUG(D_VFSTRACE, "%s: setattr inode "DFID"(%p) from %llu to %llu, "
2173                "valid %x, hsm_import %d\n",
2174                ll_i2sbi(inode)->ll_fsname, PFID(&lli->lli_fid),
2175                inode, i_size_read(inode), attr->ia_size, attr->ia_valid,
2176                hsm_import);
2177
2178         if (attr->ia_valid & ATTR_SIZE) {
2179                 /* Check new size against VFS/VM file size limit and rlimit */
2180                 rc = inode_newsize_ok(inode, attr->ia_size);
2181                 if (rc)
2182                         RETURN(rc);
2183
2184                 /* The maximum Lustre file size is variable, based on the
2185                  * OST maximum object size and number of stripes.  This
2186                  * needs another check in addition to the VFS check above. */
2187                 if (attr->ia_size > ll_file_maxbytes(inode)) {
2188                         CDEBUG(D_INODE,"file "DFID" too large %llu > %llu\n",
2189                                PFID(&lli->lli_fid), attr->ia_size,
2190                                ll_file_maxbytes(inode));
2191                         RETURN(-EFBIG);
2192                 }
2193
2194                 attr->ia_valid |= ATTR_MTIME | ATTR_CTIME;
2195         }
2196
2197         /* POSIX: check before ATTR_*TIME_SET set (from inode_change_ok) */
2198         if (attr->ia_valid & TIMES_SET_FLAGS) {
2199                 if ((!uid_eq(current_fsuid(), inode->i_uid)) &&
2200                     !capable(CAP_FOWNER))
2201                         RETURN(-EPERM);
2202         }
2203
2204         /* We mark all of the fields "set" so MDS/OST does not re-set them */
2205         if (!(xvalid & OP_XVALID_CTIME_SET) &&
2206              (attr->ia_valid & ATTR_CTIME)) {
2207                 attr->ia_ctime = current_time(inode);
2208                 xvalid |= OP_XVALID_CTIME_SET;
2209         }
2210         if (!(attr->ia_valid & ATTR_ATIME_SET) &&
2211             (attr->ia_valid & ATTR_ATIME)) {
2212                 attr->ia_atime = current_time(inode);
2213                 attr->ia_valid |= ATTR_ATIME_SET;
2214         }
2215         if (!(attr->ia_valid & ATTR_MTIME_SET) &&
2216             (attr->ia_valid & ATTR_MTIME)) {
2217                 attr->ia_mtime = current_time(inode);
2218                 attr->ia_valid |= ATTR_MTIME_SET;
2219         }
2220
2221         if (attr->ia_valid & (ATTR_MTIME | ATTR_CTIME))
2222                 CDEBUG(D_INODE, "setting mtime %lld, ctime %lld, now = %lld\n",
2223                        (s64)attr->ia_mtime.tv_sec, (s64)attr->ia_ctime.tv_sec,
2224                        ktime_get_real_seconds());
2225
2226         if (S_ISREG(inode->i_mode))
2227                 inode_unlock(inode);
2228
2229         /* We always do an MDS RPC, even if we're only changing the size;
2230          * only the MDS knows whether truncate() should fail with -ETXTBUSY */
2231
2232         OBD_ALLOC_PTR(op_data);
2233         if (op_data == NULL)
2234                 GOTO(out, rc = -ENOMEM);
2235
2236         if (!hsm_import && attr->ia_valid & ATTR_SIZE) {
2237                 /* If we are changing file size, file content is
2238                  * modified, flag it.
2239                  */
2240                 xvalid |= OP_XVALID_OWNEROVERRIDE;
2241                 op_data->op_bias |= MDS_DATA_MODIFIED;
2242                 clear_bit(LLIF_DATA_MODIFIED, &lli->lli_flags);
2243         }
2244
2245         if (attr->ia_valid & ATTR_FILE) {
2246                 struct ll_file_data *fd = attr->ia_file->private_data;
2247
2248                 if (fd->fd_lease_och)
2249                         op_data->op_bias |= MDS_TRUNC_KEEP_LEASE;
2250         }
2251
2252         op_data->op_attr = *attr;
2253         op_data->op_xvalid = xvalid;
2254
2255         rc = ll_md_setattr(dentry, op_data);
2256         if (rc)
2257                 GOTO(out, rc);
2258
2259         if (!S_ISREG(inode->i_mode) || hsm_import)
2260                 GOTO(out, rc = 0);
2261
2262         if (attr->ia_valid & (ATTR_SIZE | ATTR_ATIME | ATTR_ATIME_SET |
2263                               ATTR_MTIME | ATTR_MTIME_SET | ATTR_CTIME) ||
2264             xvalid & OP_XVALID_CTIME_SET) {
2265                 bool cached = false;
2266
2267                 rc = pcc_inode_setattr(inode, attr, &cached);
2268                 if (cached) {
2269                         if (rc) {
2270                                 CERROR("%s: PCC inode "DFID" setattr failed: "
2271                                        "rc = %d\n",
2272                                        ll_i2sbi(inode)->ll_fsname,
2273                                        PFID(&lli->lli_fid), rc);
2274                                 GOTO(out, rc);
2275                         }
2276                 } else {
2277                         unsigned int flags = 0;
2278
2279                         /* For truncate and utimes sending attributes to OSTs,
2280                          * setting mtime/atime to the past will be performed
2281                          * under PW [0:EOF] extent lock (new_size:EOF for
2282                          * truncate). It may seem excessive to send mtime/atime
2283                          * updates to OSTs when not setting times to past, but
2284                          * it is necessary due to possible time
2285                          * de-synchronization between MDT inode and OST objects
2286                          */
2287                         if (S_ISREG(inode->i_mode) && IS_ENCRYPTED(inode)) {
2288                                 xvalid |= OP_XVALID_FLAGS;
2289                                 flags = LUSTRE_ENCRYPT_FL;
2290                                 /* Call to ll_io_zero_page is not necessary if
2291                                  * truncating on PAGE_SIZE boundary, because
2292                                  * whole pages will be wiped.
2293                                  * In case of Direct IO, all we need is to set
2294                                  * new size.
2295                                  */
2296                                 if (attr->ia_valid & ATTR_SIZE &&
2297                                     attr->ia_size & ~PAGE_MASK &&
2298                                     !(attr->ia_valid & ATTR_FILE &&
2299                                       attr->ia_file->f_flags & O_DIRECT)) {
2300                                         pgoff_t offset =
2301                                                 attr->ia_size & (PAGE_SIZE - 1);
2302
2303                                         rc = ll_io_zero_page(inode,
2304                                                     attr->ia_size >> PAGE_SHIFT,
2305                                                     offset, PAGE_SIZE - offset);
2306                                         if (rc)
2307                                                 GOTO(out, rc);
2308                                 }
2309                                 /* If encrypted volatile file without the key,
2310                                  * we need to fetch size from reference file,
2311                                  * and set it on OST objects. This happens when
2312                                  * migrating or extending an encrypted file
2313                                  * without the key.
2314                                  */
2315                                 if (filename_is_volatile(dentry->d_name.name,
2316                                                          dentry->d_name.len,
2317                                                          NULL) &&
2318                                     llcrypt_require_key(inode) == -ENOKEY) {
2319                                         struct file *ref_file;
2320                                         struct inode *ref_inode;
2321                                         struct ll_inode_info *ref_lli;
2322                                         struct cl_object *ref_obj;
2323                                         struct cl_attr ref_attr = { 0 };
2324                                         struct lu_env *env;
2325                                         __u16 refcheck;
2326
2327                                         rc = volatile_ref_file(
2328                                                 dentry->d_name.name,
2329                                                 dentry->d_name.len,
2330                                                 &ref_file);
2331                                         if (rc)
2332                                                 GOTO(out, rc);
2333
2334                                         ref_inode = file_inode(ref_file);
2335                                         if (!ref_inode) {
2336                                                 fput(ref_file);
2337                                                 GOTO(out, rc = -EINVAL);
2338                                         }
2339
2340                                         env = cl_env_get(&refcheck);
2341                                         if (IS_ERR(env))
2342                                                 GOTO(out, rc = PTR_ERR(env));
2343
2344                                         ref_lli = ll_i2info(ref_inode);
2345                                         ref_obj = ref_lli->lli_clob;
2346                                         cl_object_attr_lock(ref_obj);
2347                                         rc = cl_object_attr_get(env, ref_obj,
2348                                                                 &ref_attr);
2349                                         cl_object_attr_unlock(ref_obj);
2350                                         cl_env_put(env, &refcheck);
2351                                         fput(ref_file);
2352                                         if (rc)
2353                                                 GOTO(out, rc);
2354
2355                                         attr->ia_valid |= ATTR_SIZE;
2356                                         attr->ia_size = ref_attr.cat_size;
2357                                 }
2358                         }
2359                         rc = cl_setattr_ost(lli->lli_clob, attr, xvalid, flags);
2360                 }
2361         }
2362
2363         /* If the file was restored, it needs to set dirty flag.
2364          *
2365          * We've already sent MDS_DATA_MODIFIED flag in
2366          * ll_md_setattr() for truncate. However, the MDT refuses to
2367          * set the HS_DIRTY flag on released files, so we have to set
2368          * it again if the file has been restored. Please check how
2369          * LLIF_DATA_MODIFIED is set in vvp_io_setattr_fini().
2370          *
2371          * Please notice that if the file is not released, the previous
2372          * MDS_DATA_MODIFIED has taken effect and usually
2373          * LLIF_DATA_MODIFIED is not set(see vvp_io_setattr_fini()).
2374          * This way we can save an RPC for common open + trunc
2375          * operation. */
2376         if (test_and_clear_bit(LLIF_DATA_MODIFIED, &lli->lli_flags)) {
2377                 struct hsm_state_set hss = {
2378                         .hss_valid = HSS_SETMASK,
2379                         .hss_setmask = HS_DIRTY,
2380                 };
2381                 int rc2;
2382
2383                 rc2 = ll_hsm_state_set(inode, &hss);
2384                 /* truncate and write can happen at the same time, so that
2385                  * the file can be set modified even though the file is not
2386                  * restored from released state, and ll_hsm_state_set() is
2387                  * not applicable for the file, and rc2 < 0 is normal in this
2388                  * case. */
2389                 if (rc2 < 0)
2390                         CDEBUG(D_INFO, DFID "HSM set dirty failed: rc2 = %d\n",
2391                                PFID(ll_inode2fid(inode)), rc2);
2392         }
2393
2394         EXIT;
2395 out:
2396         if (op_data != NULL)
2397                 ll_finish_md_op_data(op_data);
2398
2399         if (S_ISREG(inode->i_mode)) {
2400                 inode_lock(inode);
2401                 if ((attr->ia_valid & ATTR_SIZE) && !hsm_import)
2402                         inode_dio_wait(inode);
2403                 /* Once we've got the i_mutex, it's safe to set the S_NOSEC
2404                  * flag.  ll_update_inode (called from ll_md_setattr), clears
2405                  * inode flags, so there is a gap where S_NOSEC is not set.
2406                  * This can cause a writer to take the i_mutex unnecessarily,
2407                  * but this is safe to do and should be rare. */
2408                 inode_has_no_xattr(inode);
2409         }
2410
2411         if (!rc)
2412                 ll_stats_ops_tally(ll_i2sbi(inode), attr->ia_valid & ATTR_SIZE ?
2413                                         LPROC_LL_TRUNC : LPROC_LL_SETATTR,
2414                                    ktime_us_delta(ktime_get(), kstart));
2415
2416         RETURN(rc);
2417 }
2418
2419 int ll_setattr(struct user_namespace *mnt_userns, struct dentry *de,
2420                struct iattr *attr)
2421 {
2422         int mode = de->d_inode->i_mode;
2423         enum op_xvalid xvalid = 0;
2424         int rc;
2425
2426         rc = llcrypt_prepare_setattr(de, attr);
2427         if (rc)
2428                 return rc;
2429
2430         if ((attr->ia_valid & (ATTR_CTIME|ATTR_SIZE|ATTR_MODE)) ==
2431                               (ATTR_CTIME|ATTR_SIZE|ATTR_MODE))
2432                 xvalid |= OP_XVALID_OWNEROVERRIDE;
2433
2434         if (((attr->ia_valid & (ATTR_MODE|ATTR_FORCE|ATTR_SIZE)) ==
2435                                (ATTR_SIZE|ATTR_MODE)) &&
2436             (((mode & S_ISUID) && !(attr->ia_mode & S_ISUID)) ||
2437              (((mode & (S_ISGID|S_IXGRP)) == (S_ISGID|S_IXGRP)) &&
2438               !(attr->ia_mode & S_ISGID))))
2439                 attr->ia_valid |= ATTR_FORCE;
2440
2441         if ((attr->ia_valid & ATTR_MODE) &&
2442             (mode & S_ISUID) &&
2443             !(attr->ia_mode & S_ISUID) &&
2444             !(attr->ia_valid & ATTR_KILL_SUID))
2445                 attr->ia_valid |= ATTR_KILL_SUID;
2446
2447         if ((attr->ia_valid & ATTR_MODE) &&
2448             ((mode & (S_ISGID|S_IXGRP)) == (S_ISGID|S_IXGRP)) &&
2449             !(attr->ia_mode & S_ISGID) &&
2450             !(attr->ia_valid & ATTR_KILL_SGID))
2451                 attr->ia_valid |= ATTR_KILL_SGID;
2452
2453         return ll_setattr_raw(de, attr, xvalid, false);
2454 }
2455
2456 int ll_statfs_internal(struct ll_sb_info *sbi, struct obd_statfs *osfs,
2457                        u32 flags)
2458 {
2459         struct obd_statfs obd_osfs = { 0 };
2460         time64_t max_age;
2461         int rc;
2462
2463         ENTRY;
2464         max_age = ktime_get_seconds() - sbi->ll_statfs_max_age;
2465
2466         if (test_bit(LL_SBI_LAZYSTATFS, sbi->ll_flags))
2467                 flags |= OBD_STATFS_NODELAY;
2468
2469         rc = obd_statfs(NULL, sbi->ll_md_exp, osfs, max_age, flags);
2470         if (rc)
2471                 RETURN(rc);
2472
2473         osfs->os_type = LL_SUPER_MAGIC;
2474
2475         CDEBUG(D_SUPER, "MDC blocks %llu/%llu objects %llu/%llu\n",
2476               osfs->os_bavail, osfs->os_blocks, osfs->os_ffree, osfs->os_files);
2477
2478         if (osfs->os_state & OS_STATFS_SUM)
2479                 GOTO(out, rc);
2480
2481         rc = obd_statfs(NULL, sbi->ll_dt_exp, &obd_osfs, max_age, flags);
2482         if (rc) /* Possibly a filesystem with no OSTs.  Report MDT totals. */
2483                 GOTO(out, rc = 0);
2484
2485         CDEBUG(D_SUPER, "OSC blocks %llu/%llu objects %llu/%llu\n",
2486                obd_osfs.os_bavail, obd_osfs.os_blocks, obd_osfs.os_ffree,
2487                obd_osfs.os_files);
2488
2489         osfs->os_bsize = obd_osfs.os_bsize;
2490         osfs->os_blocks = obd_osfs.os_blocks;
2491         osfs->os_bfree = obd_osfs.os_bfree;
2492         osfs->os_bavail = obd_osfs.os_bavail;
2493
2494         /* If we have _some_ OSTs, but don't have as many free objects on the
2495          * OSTs as inodes on the MDTs, reduce the reported number of inodes
2496          * to compensate, so that the "inodes in use" number is correct.
2497          * This should be kept in sync with lod_statfs() behaviour.
2498          */
2499         if (obd_osfs.os_files && obd_osfs.os_ffree < osfs->os_ffree) {
2500                 osfs->os_files = (osfs->os_files - osfs->os_ffree) +
2501                                  obd_osfs.os_ffree;
2502                 osfs->os_ffree = obd_osfs.os_ffree;
2503         }
2504
2505 out:
2506         RETURN(rc);
2507 }
2508
2509 static int ll_statfs_project(struct inode *inode, struct kstatfs *sfs)
2510 {
2511         struct if_quotactl qctl = {
2512                 .qc_cmd = LUSTRE_Q_GETQUOTA,
2513                 .qc_type = PRJQUOTA,
2514                 .qc_valid = QC_GENERAL,
2515         };
2516         u64 limit, curblock;
2517         int ret;
2518
2519         qctl.qc_id = ll_i2info(inode)->lli_projid;
2520         ret = quotactl_ioctl(inode->i_sb, &qctl);
2521         if (ret) {
2522                 /* ignore errors if project ID does not have
2523                  * a quota limit or feature unsupported.
2524                  */
2525                 if (ret == -ESRCH || ret == -EOPNOTSUPP)
2526                         ret = 0;
2527                 return ret;
2528         }
2529
2530         limit = ((qctl.qc_dqblk.dqb_bsoftlimit ?
2531                  qctl.qc_dqblk.dqb_bsoftlimit :
2532                  qctl.qc_dqblk.dqb_bhardlimit) * 1024) / sfs->f_bsize;
2533         if (limit && sfs->f_blocks > limit) {
2534                 curblock = (qctl.qc_dqblk.dqb_curspace +
2535                                 sfs->f_bsize - 1) / sfs->f_bsize;
2536                 sfs->f_blocks = limit;
2537                 sfs->f_bfree = sfs->f_bavail =
2538                         (sfs->f_blocks > curblock) ?
2539                         (sfs->f_blocks - curblock) : 0;
2540         }
2541
2542         limit = qctl.qc_dqblk.dqb_isoftlimit ?
2543                 qctl.qc_dqblk.dqb_isoftlimit :
2544                 qctl.qc_dqblk.dqb_ihardlimit;
2545         if (limit && sfs->f_files > limit) {
2546                 sfs->f_files = limit;
2547                 sfs->f_ffree = (sfs->f_files >
2548                         qctl.qc_dqblk.dqb_curinodes) ?
2549                         (sfs->f_files - qctl.qc_dqblk.dqb_curinodes) : 0;
2550         }
2551
2552         return 0;
2553 }
2554
2555 int ll_statfs(struct dentry *de, struct kstatfs *sfs)
2556 {
2557         struct super_block *sb = de->d_sb;
2558         struct obd_statfs osfs;
2559         __u64 fsid = huge_encode_dev(sb->s_dev);
2560         ktime_t kstart = ktime_get();
2561         int rc;
2562
2563         CDEBUG(D_VFSTRACE, "VFS Op:sb=%s (%p)\n", sb->s_id, sb);
2564
2565         /* Some amount of caching on the client is allowed */
2566         rc = ll_statfs_internal(ll_s2sbi(sb), &osfs, OBD_STATFS_SUM);
2567         if (rc)
2568                 return rc;
2569
2570         statfs_unpack(sfs, &osfs);
2571
2572         /* We need to downshift for all 32-bit kernels, because we can't
2573          * tell if the kernel is being called via sys_statfs64() or not.
2574          * Stop before overflowing f_bsize - in which case it is better
2575          * to just risk EOVERFLOW if caller is using old sys_statfs(). */
2576         if (sizeof(long) < 8) {
2577                 while (osfs.os_blocks > ~0UL && sfs->f_bsize < 0x40000000) {
2578                         sfs->f_bsize <<= 1;
2579
2580                         osfs.os_blocks >>= 1;
2581                         osfs.os_bfree >>= 1;
2582                         osfs.os_bavail >>= 1;
2583                 }
2584         }
2585
2586         sfs->f_blocks = osfs.os_blocks;
2587         sfs->f_bfree = osfs.os_bfree;
2588         sfs->f_bavail = osfs.os_bavail;
2589         sfs->f_fsid.val[0] = (__u32)fsid;
2590         sfs->f_fsid.val[1] = (__u32)(fsid >> 32);
2591         if (ll_i2info(de->d_inode)->lli_projid)
2592                 return ll_statfs_project(de->d_inode, sfs);
2593
2594         ll_stats_ops_tally(ll_s2sbi(sb), LPROC_LL_STATFS,
2595                            ktime_us_delta(ktime_get(), kstart));
2596
2597         return 0;
2598 }
2599
2600 void ll_inode_size_lock(struct inode *inode)
2601 {
2602         struct ll_inode_info *lli;
2603
2604         LASSERT(!S_ISDIR(inode->i_mode));
2605
2606         lli = ll_i2info(inode);
2607         mutex_lock(&lli->lli_size_mutex);
2608 }
2609
2610 void ll_inode_size_unlock(struct inode *inode)
2611 {
2612         struct ll_inode_info *lli;
2613
2614         lli = ll_i2info(inode);
2615         mutex_unlock(&lli->lli_size_mutex);
2616 }
2617
2618 void ll_update_inode_flags(struct inode *inode, unsigned int ext_flags)
2619 {
2620         /* do not clear encryption flag */
2621         ext_flags |= ll_inode_to_ext_flags(inode->i_flags) & LUSTRE_ENCRYPT_FL;
2622         inode->i_flags = ll_ext_to_inode_flags(ext_flags);
2623         if (ext_flags & LUSTRE_PROJINHERIT_FL)
2624                 set_bit(LLIF_PROJECT_INHERIT, &ll_i2info(inode)->lli_flags);
2625         else
2626                 clear_bit(LLIF_PROJECT_INHERIT, &ll_i2info(inode)->lli_flags);
2627 }
2628
2629 int ll_update_inode(struct inode *inode, struct lustre_md *md)
2630 {
2631         struct ll_inode_info *lli = ll_i2info(inode);
2632         struct mdt_body *body = md->body;
2633         struct ll_sb_info *sbi = ll_i2sbi(inode);
2634         bool api32;
2635         int rc = 0;
2636
2637         if (body->mbo_valid & OBD_MD_FLEASIZE) {
2638                 rc = cl_file_inode_init(inode, md);
2639                 if (rc)
2640                         return rc;
2641         }
2642
2643         if (S_ISDIR(inode->i_mode)) {
2644                 rc = ll_update_lsm_md(inode, md);
2645                 if (rc != 0)
2646                         return rc;
2647         }
2648
2649         if (body->mbo_valid & OBD_MD_FLACL)
2650                 lli_replace_acl(lli, md);
2651
2652         api32 = test_bit(LL_SBI_32BIT_API, sbi->ll_flags);
2653         inode->i_ino = cl_fid_build_ino(&body->mbo_fid1, api32);
2654         inode->i_generation = cl_fid_build_gen(&body->mbo_fid1);
2655
2656         if (body->mbo_valid & OBD_MD_FLATIME) {
2657                 if (body->mbo_atime > inode->i_atime.tv_sec)
2658                         inode->i_atime.tv_sec = body->mbo_atime;
2659                 lli->lli_atime = body->mbo_atime;
2660         }
2661
2662         if (body->mbo_valid & OBD_MD_FLMTIME) {
2663                 if (body->mbo_mtime > inode->i_mtime.tv_sec) {
2664                         CDEBUG(D_INODE,
2665                                "setting ino %lu mtime from %lld to %llu\n",
2666                                inode->i_ino, (s64)inode->i_mtime.tv_sec,
2667                                body->mbo_mtime);
2668                         inode->i_mtime.tv_sec = body->mbo_mtime;
2669                 }
2670                 lli->lli_mtime = body->mbo_mtime;
2671         }
2672
2673         if (body->mbo_valid & OBD_MD_FLCTIME) {
2674                 if (body->mbo_ctime > inode->i_ctime.tv_sec)
2675                         inode->i_ctime.tv_sec = body->mbo_ctime;
2676                 lli->lli_ctime = body->mbo_ctime;
2677         }
2678
2679         if (body->mbo_valid & OBD_MD_FLBTIME)
2680                 lli->lli_btime = body->mbo_btime;
2681
2682         /* Clear i_flags to remove S_NOSEC before permissions are updated */
2683         if (body->mbo_valid & OBD_MD_FLFLAGS)
2684                 ll_update_inode_flags(inode, body->mbo_flags);
2685         if (body->mbo_valid & OBD_MD_FLMODE)
2686                 inode->i_mode = (inode->i_mode & S_IFMT) |
2687                                 (body->mbo_mode & ~S_IFMT);
2688
2689         if (body->mbo_valid & OBD_MD_FLTYPE)
2690                 inode->i_mode = (inode->i_mode & ~S_IFMT) |
2691                                 (body->mbo_mode & S_IFMT);
2692
2693         LASSERT(inode->i_mode != 0);
2694         if (body->mbo_valid & OBD_MD_FLUID)
2695                 inode->i_uid = make_kuid(&init_user_ns, body->mbo_uid);
2696         if (body->mbo_valid & OBD_MD_FLGID)
2697                 inode->i_gid = make_kgid(&init_user_ns, body->mbo_gid);
2698         if (body->mbo_valid & OBD_MD_FLPROJID)
2699                 lli->lli_projid = body->mbo_projid;
2700         if (body->mbo_valid & OBD_MD_FLNLINK) {
2701                 spin_lock(&inode->i_lock);
2702                 set_nlink(inode, body->mbo_nlink);
2703                 spin_unlock(&inode->i_lock);
2704         }
2705         if (body->mbo_valid & OBD_MD_FLRDEV)
2706                 inode->i_rdev = old_decode_dev(body->mbo_rdev);
2707
2708         if (body->mbo_valid & OBD_MD_FLID) {
2709                 /* FID shouldn't be changed! */
2710                 if (fid_is_sane(&lli->lli_fid)) {
2711                         LASSERTF(lu_fid_eq(&lli->lli_fid, &body->mbo_fid1),
2712                                  "Trying to change FID "DFID
2713                                  " to the "DFID", inode "DFID"(%p)\n",
2714                                  PFID(&lli->lli_fid), PFID(&body->mbo_fid1),
2715                                  PFID(ll_inode2fid(inode)), inode);
2716                 } else {
2717                         lli->lli_fid = body->mbo_fid1;
2718                 }
2719         }
2720
2721         LASSERT(fid_seq(&lli->lli_fid) != 0);
2722
2723         /* In case of encrypted file without the key, please do not lose
2724          * clear text size stored into lli_lazysize in ll_merge_attr(),
2725          * we will need it in ll_prepare_close().
2726          */
2727         if (lli->lli_attr_valid & OBD_MD_FLLAZYSIZE && lli->lli_lazysize &&
2728             llcrypt_require_key(inode) == -ENOKEY)
2729                 lli->lli_attr_valid = body->mbo_valid | OBD_MD_FLLAZYSIZE;
2730         else
2731                 lli->lli_attr_valid = body->mbo_valid;
2732         if (body->mbo_valid & OBD_MD_FLSIZE) {
2733                 i_size_write(inode, body->mbo_size);
2734
2735                 CDEBUG(D_VFSTRACE, "inode="DFID", updating i_size %llu\n",
2736                        PFID(ll_inode2fid(inode)),
2737                        (unsigned long long)body->mbo_size);
2738
2739                 if (body->mbo_valid & OBD_MD_FLBLOCKS)
2740                         inode->i_blocks = body->mbo_blocks;
2741         } else {
2742                 if (body->mbo_valid & OBD_MD_FLLAZYSIZE)
2743                         lli->lli_lazysize = body->mbo_size;
2744                 if (body->mbo_valid & OBD_MD_FLLAZYBLOCKS)
2745                         lli->lli_lazyblocks = body->mbo_blocks;
2746         }
2747
2748         if (body->mbo_valid & OBD_MD_TSTATE) {
2749                 /* Set LLIF_FILE_RESTORING if restore ongoing and
2750                  * clear it when done to ensure to start again
2751                  * glimpsing updated attrs
2752                  */
2753                 if (body->mbo_t_state & MS_RESTORE)
2754                         set_bit(LLIF_FILE_RESTORING, &lli->lli_flags);
2755                 else
2756                         clear_bit(LLIF_FILE_RESTORING, &lli->lli_flags);
2757         }
2758
2759         return 0;
2760 }
2761
2762 /* child default LMV is inherited from parent */
2763 static inline bool ll_default_lmv_inherited(struct lmv_stripe_md *pdmv,
2764                                             struct lmv_stripe_md *cdmv)
2765 {
2766         if (!pdmv || !cdmv)
2767                 return false;
2768
2769         if (pdmv->lsm_md_magic != cdmv->lsm_md_magic ||
2770             pdmv->lsm_md_stripe_count != cdmv->lsm_md_stripe_count ||
2771             pdmv->lsm_md_master_mdt_index != cdmv->lsm_md_master_mdt_index ||
2772             pdmv->lsm_md_hash_type != cdmv->lsm_md_hash_type)
2773                 return false;
2774
2775         if (cdmv->lsm_md_max_inherit !=
2776             lmv_inherit_next(pdmv->lsm_md_max_inherit))
2777                 return false;
2778
2779         if (cdmv->lsm_md_max_inherit_rr !=
2780             lmv_inherit_rr_next(pdmv->lsm_md_max_inherit_rr))
2781                 return false;
2782
2783         return true;
2784 }
2785
2786 /* update directory depth to ROOT, called after LOOKUP lock is fetched. */
2787 void ll_update_dir_depth(struct inode *dir, struct inode *inode)
2788 {
2789         struct ll_inode_info *plli;
2790         struct ll_inode_info *lli;
2791
2792         if (!S_ISDIR(inode->i_mode))
2793                 return;
2794
2795         if (inode == dir)
2796                 return;
2797
2798         plli = ll_i2info(dir);
2799         lli = ll_i2info(inode);
2800         lli->lli_dir_depth = plli->lli_dir_depth + 1;
2801         if (plli->lli_default_lsm_md && lli->lli_default_lsm_md) {
2802                 down_read(&plli->lli_lsm_sem);
2803                 down_read(&lli->lli_lsm_sem);
2804                 if (ll_default_lmv_inherited(plli->lli_default_lsm_md,
2805                                              lli->lli_default_lsm_md))
2806                         lli->lli_inherit_depth =
2807                                 plli->lli_inherit_depth + 1;
2808                 else
2809                         lli->lli_inherit_depth = 0;
2810                 up_read(&lli->lli_lsm_sem);
2811                 up_read(&plli->lli_lsm_sem);
2812         } else {
2813                 lli->lli_inherit_depth = 0;
2814         }
2815
2816         CDEBUG(D_INODE, DFID" depth %hu default LMV depth %hu\n",
2817                PFID(&lli->lli_fid), lli->lli_dir_depth, lli->lli_inherit_depth);
2818 }
2819
2820 void ll_truncate_inode_pages_final(struct inode *inode)
2821 {
2822         struct address_space *mapping = &inode->i_data;
2823         unsigned long nrpages;
2824         unsigned long flags;
2825
2826         truncate_inode_pages_final(mapping);
2827
2828         /* Workaround for LU-118: Note nrpages may not be totally updated when
2829          * truncate_inode_pages() returns, as there can be a page in the process
2830          * of deletion (inside __delete_from_page_cache()) in the specified
2831          * range. Thus mapping->nrpages can be non-zero when this function
2832          * returns even after truncation of the whole mapping.  Only do this if
2833          * npages isn't already zero.
2834          */
2835         nrpages = mapping->nrpages;
2836         if (nrpages) {
2837                 ll_xa_lock_irqsave(&mapping->i_pages, flags);
2838                 nrpages = mapping->nrpages;
2839                 ll_xa_unlock_irqrestore(&mapping->i_pages, flags);
2840         } /* Workaround end */
2841
2842         LASSERTF(nrpages == 0, "%s: inode="DFID"(%p) nrpages=%lu, "
2843                  "see https://jira.whamcloud.com/browse/LU-118\n",
2844                  ll_i2sbi(inode)->ll_fsname,
2845                  PFID(ll_inode2fid(inode)), inode, nrpages);
2846 }
2847
2848 int ll_read_inode2(struct inode *inode, void *opaque)
2849 {
2850         struct lustre_md *md = opaque;
2851         struct ll_inode_info *lli = ll_i2info(inode);
2852         int     rc;
2853         ENTRY;
2854
2855         CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID"(%p)\n",
2856                PFID(&lli->lli_fid), inode);
2857
2858         /* Core attributes from the MDS first.  This is a new inode, and
2859          * the VFS doesn't zero times in the core inode so we have to do
2860          * it ourselves.  They will be overwritten by either MDS or OST
2861          * attributes - we just need to make sure they aren't newer.
2862          */
2863         inode->i_mtime.tv_sec = 0;
2864         inode->i_atime.tv_sec = 0;
2865         inode->i_ctime.tv_sec = 0;
2866         inode->i_rdev = 0;
2867         rc = ll_update_inode(inode, md);
2868         if (rc != 0)
2869                 RETURN(rc);
2870
2871         /* OIDEBUG(inode); */
2872
2873 #ifdef HAVE_BACKING_DEV_INFO
2874         /* initializing backing dev info. */
2875         inode->i_mapping->backing_dev_info = &s2lsi(inode->i_sb)->lsi_bdi;
2876 #endif
2877         if (S_ISREG(inode->i_mode)) {
2878                 struct ll_sb_info *sbi = ll_i2sbi(inode);
2879                 inode->i_op = &ll_file_inode_operations;
2880                 inode->i_fop = sbi->ll_fop;
2881                 inode->i_mapping->a_ops = (struct address_space_operations *)&ll_aops;
2882                 EXIT;
2883         } else if (S_ISDIR(inode->i_mode)) {
2884                 inode->i_op = &ll_dir_inode_operations;
2885                 inode->i_fop = &ll_dir_operations;
2886                 EXIT;
2887         } else if (S_ISLNK(inode->i_mode)) {
2888                 inode->i_op = &ll_fast_symlink_inode_operations;
2889                 EXIT;
2890         } else {
2891                 inode->i_op = &ll_special_inode_operations;
2892
2893                 init_special_inode(inode, inode->i_mode,
2894                                    inode->i_rdev);
2895
2896                 EXIT;
2897         }
2898
2899         return 0;
2900 }
2901
2902 void ll_delete_inode(struct inode *inode)
2903 {
2904         struct ll_inode_info *lli = ll_i2info(inode);
2905         ENTRY;
2906
2907         if (S_ISREG(inode->i_mode) && lli->lli_clob != NULL) {
2908                 /* It is last chance to write out dirty pages,
2909                  * otherwise we may lose data while umount.
2910                  *
2911                  * If i_nlink is 0 then just discard data. This is safe because
2912                  * local inode gets i_nlink 0 from server only for the last
2913                  * unlink, so that file is not opened somewhere else
2914                  */
2915                 cl_sync_file_range(inode, 0, OBD_OBJECT_EOF, inode->i_nlink ?
2916                                    CL_FSYNC_LOCAL : CL_FSYNC_DISCARD, 1);
2917         }
2918
2919         ll_truncate_inode_pages_final(inode);
2920         ll_clear_inode(inode);
2921         clear_inode(inode);
2922
2923         EXIT;
2924 }
2925
2926 int ll_iocontrol(struct inode *inode, struct file *file,
2927                  unsigned int cmd, unsigned long arg)
2928 {
2929         struct ll_sb_info *sbi = ll_i2sbi(inode);
2930         struct ptlrpc_request *req = NULL;
2931         int rc, flags = 0;
2932         ENTRY;
2933
2934         switch (cmd) {
2935         case FS_IOC_GETFLAGS: {
2936                 struct mdt_body *body;
2937                 struct md_op_data *op_data;
2938
2939                 op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL,
2940                                              0, 0, LUSTRE_OPC_ANY,
2941                                              NULL);
2942                 if (IS_ERR(op_data))
2943                         RETURN(PTR_ERR(op_data));
2944
2945                 op_data->op_valid = OBD_MD_FLFLAGS;
2946                 rc = md_getattr(sbi->ll_md_exp, op_data, &req);
2947                 ll_finish_md_op_data(op_data);
2948                 if (rc) {
2949                         CERROR("%s: failure inode "DFID": rc = %d\n",
2950                                sbi->ll_md_exp->exp_obd->obd_name,
2951                                PFID(ll_inode2fid(inode)), rc);
2952                         RETURN(-abs(rc));
2953                 }
2954
2955                 body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
2956
2957                 flags = body->mbo_flags;
2958
2959                 ptlrpc_req_finished(req);
2960
2961                 RETURN(put_user(flags, (int __user *)arg));
2962         }
2963         case FS_IOC_SETFLAGS: {
2964                 struct iattr *attr;
2965                 struct md_op_data *op_data;
2966                 struct cl_object *obj;
2967                 struct fsxattr fa = { 0 };
2968
2969                 if (get_user(flags, (int __user *)arg))
2970                         RETURN(-EFAULT);
2971
2972                 fa.fsx_projid = ll_i2info(inode)->lli_projid;
2973                 if (flags & LUSTRE_PROJINHERIT_FL)
2974                         fa.fsx_xflags = FS_XFLAG_PROJINHERIT;
2975
2976                 rc = ll_ioctl_check_project(inode, fa.fsx_xflags,
2977                                             fa.fsx_projid);
2978                 if (rc)
2979                         RETURN(rc);
2980
2981                 op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL, 0, 0,
2982                                              LUSTRE_OPC_ANY, NULL);
2983                 if (IS_ERR(op_data))
2984                         RETURN(PTR_ERR(op_data));
2985
2986                 op_data->op_attr_flags = flags;
2987                 op_data->op_xvalid |= OP_XVALID_FLAGS;
2988                 rc = md_setattr(sbi->ll_md_exp, op_data, NULL, 0, &req);
2989                 ll_finish_md_op_data(op_data);
2990                 ptlrpc_req_finished(req);
2991                 if (rc)
2992                         RETURN(rc);
2993
2994                 ll_update_inode_flags(inode, flags);
2995
2996                 obj = ll_i2info(inode)->lli_clob;
2997                 if (obj == NULL)
2998                         RETURN(0);
2999
3000                 OBD_ALLOC_PTR(attr);
3001                 if (attr == NULL)
3002                         RETURN(-ENOMEM);
3003
3004                 rc = cl_setattr_ost(obj, attr, OP_XVALID_FLAGS, flags);
3005
3006                 OBD_FREE_PTR(attr);
3007                 RETURN(rc);
3008         }
3009         default:
3010                 RETURN(-ENOSYS);
3011         }
3012
3013         RETURN(0);
3014 }
3015
3016 int ll_flush_ctx(struct inode *inode)
3017 {
3018         struct ll_sb_info  *sbi = ll_i2sbi(inode);
3019
3020         CDEBUG(D_SEC, "flush context for user %d\n",
3021                from_kuid(&init_user_ns, current_uid()));
3022
3023         obd_set_info_async(NULL, sbi->ll_md_exp,
3024                            sizeof(KEY_FLUSH_CTX), KEY_FLUSH_CTX,
3025                            0, NULL, NULL);
3026         obd_set_info_async(NULL, sbi->ll_dt_exp,
3027                            sizeof(KEY_FLUSH_CTX), KEY_FLUSH_CTX,
3028                            0, NULL, NULL);
3029         return 0;
3030 }
3031
3032 /* umount -f client means force down, don't save state */
3033 void ll_umount_begin(struct super_block *sb)
3034 {
3035         struct ll_sb_info *sbi = ll_s2sbi(sb);
3036         struct obd_device *obd;
3037         struct obd_ioctl_data *ioc_data;
3038         int cnt;
3039         ENTRY;
3040
3041         CDEBUG(D_VFSTRACE, "VFS Op: superblock %p count %d active %d\n", sb,
3042                sb->s_count, atomic_read(&sb->s_active));
3043
3044         obd = class_exp2obd(sbi->ll_md_exp);
3045         if (obd == NULL) {
3046                 CERROR("Invalid MDC connection handle %#llx\n",
3047                        sbi->ll_md_exp->exp_handle.h_cookie);
3048                 EXIT;
3049                 return;
3050         }
3051         obd->obd_force = 1;
3052
3053         obd = class_exp2obd(sbi->ll_dt_exp);
3054         if (obd == NULL) {
3055                 CERROR("Invalid LOV connection handle %#llx\n",
3056                        sbi->ll_dt_exp->exp_handle.h_cookie);
3057                 EXIT;
3058                 return;
3059         }
3060         obd->obd_force = 1;
3061
3062         OBD_ALLOC_PTR(ioc_data);
3063         if (ioc_data) {
3064                 obd_iocontrol(IOC_OSC_SET_ACTIVE, sbi->ll_md_exp,
3065                               sizeof *ioc_data, ioc_data, NULL);
3066
3067                 obd_iocontrol(IOC_OSC_SET_ACTIVE, sbi->ll_dt_exp,
3068                               sizeof *ioc_data, ioc_data, NULL);
3069
3070                 OBD_FREE_PTR(ioc_data);
3071         }
3072
3073         /* Really, we'd like to wait until there are no requests outstanding,
3074          * and then continue.  For now, we just periodically checking for vfs
3075          * to decrement mnt_cnt and hope to finish it within 10sec.
3076          */
3077         cnt = 10;
3078         while (cnt > 0 &&
3079                !may_umount(sbi->ll_mnt.mnt)) {
3080                 ssleep(1);
3081                 cnt -= 1;
3082         }
3083
3084         EXIT;
3085 }
3086
3087 int ll_remount_fs(struct super_block *sb, int *flags, char *data)
3088 {
3089         struct ll_sb_info *sbi = ll_s2sbi(sb);
3090         char *profilenm = get_profile_name(sb);
3091         int err;
3092         __u32 read_only;
3093
3094         if ((*flags & MS_RDONLY) != (sb->s_flags & SB_RDONLY)) {
3095                 read_only = *flags & MS_RDONLY;
3096                 err = obd_set_info_async(NULL, sbi->ll_md_exp,
3097                                          sizeof(KEY_READ_ONLY),
3098                                          KEY_READ_ONLY, sizeof(read_only),
3099                                          &read_only, NULL);
3100                 if (err) {
3101                         LCONSOLE_WARN("Failed to remount %s %s (%d)\n",
3102                                       profilenm, read_only ?
3103                                       "read-only" : "read-write", err);
3104                         return err;
3105                 }
3106
3107                 if (read_only)
3108                         sb->s_flags |= SB_RDONLY;
3109                 else
3110                         sb->s_flags &= ~SB_RDONLY;
3111
3112                 if (test_bit(LL_SBI_VERBOSE, sbi->ll_flags))
3113                         LCONSOLE_WARN("Remounted %s %s\n", profilenm,
3114                                       read_only ?  "read-only" : "read-write");
3115         }
3116         return 0;
3117 }
3118
3119 /**
3120  * Cleanup the open handle that is cached on MDT-side.
3121  *
3122  * For open case, the client side open handling thread may hit error
3123  * after the MDT grant the open. Under such case, the client should
3124  * send close RPC to the MDT as cleanup; otherwise, the open handle
3125  * on the MDT will be leaked there until the client umount or evicted.
3126  *
3127  * In further, if someone unlinked the file, because the open handle
3128  * holds the reference on such file/object, then it will block the
3129  * subsequent threads that want to locate such object via FID.
3130  *
3131  * \param[in] sb        super block for this file-system
3132  * \param[in] open_req  pointer to the original open request
3133  */
3134 void ll_open_cleanup(struct super_block *sb, struct req_capsule *pill)
3135 {
3136         struct mdt_body                 *body;
3137         struct md_op_data               *op_data;
3138         struct ptlrpc_request           *close_req = NULL;
3139         struct obd_export               *exp       = ll_s2sbi(sb)->ll_md_exp;
3140         ENTRY;
3141
3142         body = req_capsule_server_get(pill, &RMF_MDT_BODY);
3143         OBD_ALLOC_PTR(op_data);
3144         if (op_data == NULL) {
3145                 CWARN("%s: cannot allocate op_data to release open handle for "
3146                       DFID"\n", ll_s2sbi(sb)->ll_fsname, PFID(&body->mbo_fid1));
3147
3148                 RETURN_EXIT;
3149         }
3150
3151         op_data->op_fid1 = body->mbo_fid1;
3152         op_data->op_open_handle = body->mbo_open_handle;
3153         op_data->op_mod_time = ktime_get_real_seconds();
3154         md_close(exp, op_data, NULL, &close_req);
3155         ptlrpc_req_finished(close_req);
3156         ll_finish_md_op_data(op_data);
3157
3158         EXIT;
3159 }
3160
3161 /* set filesystem-wide default LMV for subdir mount if it's enabled on ROOT. */
3162 static int ll_fileset_default_lmv_fixup(struct inode *inode,
3163                                         struct lustre_md *md)
3164 {
3165         struct ll_sb_info *sbi = ll_i2sbi(inode);
3166         struct ptlrpc_request *req = NULL;
3167         union lmv_mds_md *lmm = NULL;
3168         int size = 0;
3169         int rc;
3170
3171         LASSERT(is_root_inode(inode));
3172         LASSERT(!fid_is_root(&sbi->ll_root_fid));
3173         LASSERT(!md->default_lmv);
3174
3175         rc = ll_dir_get_default_layout(inode, (void **)&lmm, &size, &req,
3176                                        OBD_MD_DEFAULT_MEA,
3177                                        GET_DEFAULT_LAYOUT_ROOT);
3178         if (rc && rc != -ENODATA)
3179                 GOTO(out, rc);
3180
3181         rc = 0;
3182         if (lmm && size) {
3183                 rc = md_unpackmd(sbi->ll_md_exp, &md->default_lmv, lmm, size);
3184                 if (rc < 0)
3185                         GOTO(out, rc);
3186
3187                 rc = 0;
3188         }
3189         EXIT;
3190 out:
3191         if (req)
3192                 ptlrpc_req_finished(req);
3193         return rc;
3194 }
3195
3196 int ll_prep_inode(struct inode **inode, struct req_capsule *pill,
3197                   struct super_block *sb, struct lookup_intent *it)
3198 {
3199         struct ll_sb_info *sbi = NULL;
3200         struct lustre_md md = { NULL };
3201         bool default_lmv_deleted = false;
3202         int rc;
3203
3204         ENTRY;
3205
3206         LASSERT(*inode || sb);
3207         sbi = sb ? ll_s2sbi(sb) : ll_i2sbi(*inode);
3208         rc = md_get_lustre_md(sbi->ll_md_exp, pill, sbi->ll_dt_exp,
3209                               sbi->ll_md_exp, &md);
3210         if (rc != 0)
3211                 GOTO(out, rc);
3212
3213         /*
3214          * clear default_lmv only if intent_getattr reply doesn't contain it.
3215          * but it needs to be done after iget, check this early because
3216          * ll_update_lsm_md() may change md.
3217          */
3218         if (it && (it->it_op & (IT_LOOKUP | IT_GETATTR)) &&
3219             S_ISDIR(md.body->mbo_mode) && !md.default_lmv) {
3220                 if (unlikely(*inode && is_root_inode(*inode) &&
3221                              !fid_is_root(&sbi->ll_root_fid))) {
3222                         rc = ll_fileset_default_lmv_fixup(*inode, &md);
3223                         if (rc)
3224                                 GOTO(out, rc);
3225                 }
3226
3227                 if (!md.default_lmv)
3228                         default_lmv_deleted = true;
3229         }
3230
3231         if (*inode) {
3232                 rc = ll_update_inode(*inode, &md);
3233                 if (rc != 0)
3234                         GOTO(out, rc);
3235         } else {
3236                 bool api32 = test_bit(LL_SBI_32BIT_API, sbi->ll_flags);
3237                 struct lu_fid *fid1 = &md.body->mbo_fid1;
3238
3239                 LASSERT(sb != NULL);
3240
3241                 /*
3242                  * At this point server returns to client's same fid as client
3243                  * generated for creating. So using ->fid1 is okay here.
3244                  */
3245                 if (!fid_is_sane(fid1)) {
3246                         CERROR("%s: Fid is insane "DFID"\n",
3247                                 sbi->ll_fsname, PFID(fid1));
3248                         GOTO(out, rc = -EINVAL);
3249                 }
3250
3251                 *inode = ll_iget(sb, cl_fid_build_ino(fid1, api32), &md);
3252                 if (IS_ERR(*inode)) {
3253                         lmd_clear_acl(&md);
3254                         rc = IS_ERR(*inode) ? PTR_ERR(*inode) : -ENOMEM;
3255                         *inode = NULL;
3256                         CERROR("new_inode -fatal: rc %d\n", rc);
3257                         GOTO(out, rc);
3258                 }
3259         }
3260
3261         /* Handling piggyback layout lock.
3262          * Layout lock can be piggybacked by getattr and open request.
3263          * The lsm can be applied to inode only if it comes with a layout lock
3264          * otherwise correct layout may be overwritten, for example:
3265          * 1. proc1: mdt returns a lsm but not granting layout
3266          * 2. layout was changed by another client
3267          * 3. proc2: refresh layout and layout lock granted
3268          * 4. proc1: to apply a stale layout */
3269         if (it != NULL && it->it_lock_mode != 0) {
3270                 struct lustre_handle lockh;
3271                 struct ldlm_lock *lock;
3272
3273                 lockh.cookie = it->it_lock_handle;
3274                 lock = ldlm_handle2lock(&lockh);
3275                 LASSERT(lock != NULL);
3276                 if (ldlm_has_layout(lock)) {
3277                         struct cl_object_conf conf;
3278
3279                         memset(&conf, 0, sizeof(conf));
3280                         conf.coc_opc = OBJECT_CONF_SET;
3281                         conf.coc_inode = *inode;
3282                         conf.coc_lock = lock;
3283                         conf.u.coc_layout = md.layout;
3284                         (void)ll_layout_conf(*inode, &conf);
3285                 }
3286                 LDLM_LOCK_PUT(lock);
3287         }
3288
3289         if (default_lmv_deleted)
3290                 ll_update_default_lsm_md(*inode, &md);
3291
3292         /* we may want to apply some policy for foreign file/dir */
3293         if (ll_sbi_has_foreign_symlink(sbi)) {
3294                 rc = ll_manage_foreign(*inode, &md);
3295                 if (rc < 0)
3296                         GOTO(out, rc);
3297         }
3298
3299         GOTO(out, rc = 0);
3300
3301 out:
3302         /* cleanup will be done if necessary */
3303         md_free_lustre_md(sbi->ll_md_exp, &md);
3304
3305         if (rc != 0 && it != NULL && it->it_op & IT_OPEN) {
3306                 ll_intent_drop_lock(it);
3307                 ll_open_cleanup(sb != NULL ? sb : (*inode)->i_sb, pill);
3308         }
3309
3310         return rc;
3311 }
3312
3313 int ll_obd_statfs(struct inode *inode, void __user *arg)
3314 {
3315         struct ll_sb_info *sbi = NULL;
3316         struct obd_export *exp;
3317         struct obd_ioctl_data *data = NULL;
3318         __u32 type;
3319         int len = 0, rc;
3320
3321         if (inode)
3322                 sbi = ll_i2sbi(inode);
3323         if (!sbi)
3324                 GOTO(out_statfs, rc = -EINVAL);
3325
3326         rc = obd_ioctl_getdata(&data, &len, arg);
3327         if (rc)
3328                 GOTO(out_statfs, rc);
3329
3330         if (!data->ioc_inlbuf1 || !data->ioc_inlbuf2 ||
3331             !data->ioc_pbuf1 || !data->ioc_pbuf2)
3332                 GOTO(out_statfs, rc = -EINVAL);
3333
3334         if (data->ioc_inllen1 != sizeof(__u32) ||
3335             data->ioc_inllen2 != sizeof(__u32) ||
3336             data->ioc_plen1 != sizeof(struct obd_statfs) ||
3337             data->ioc_plen2 != sizeof(struct obd_uuid))
3338                 GOTO(out_statfs, rc = -EINVAL);
3339
3340         memcpy(&type, data->ioc_inlbuf1, sizeof(__u32));
3341         if (type & LL_STATFS_LMV)
3342                 exp = sbi->ll_md_exp;
3343         else if (type & LL_STATFS_LOV)
3344                 exp = sbi->ll_dt_exp;
3345         else
3346                 GOTO(out_statfs, rc = -ENODEV);
3347
3348         rc = obd_iocontrol(IOC_OBD_STATFS, exp, len, data, NULL);
3349         if (rc)
3350                 GOTO(out_statfs, rc);
3351 out_statfs:
3352         OBD_FREE_LARGE(data, len);
3353         return rc;
3354 }
3355
3356 /*
3357  * this is normally called in ll_fini_md_op_data(), but sometimes it needs to
3358  * be called early to avoid deadlock.
3359  */
3360 void ll_unlock_md_op_lsm(struct md_op_data *op_data)
3361 {
3362         if (op_data->op_mea2_sem) {
3363                 up_read_non_owner(op_data->op_mea2_sem);
3364                 op_data->op_mea2_sem = NULL;
3365         }
3366
3367         if (op_data->op_mea1_sem) {
3368                 up_read_non_owner(op_data->op_mea1_sem);
3369                 op_data->op_mea1_sem = NULL;
3370         }
3371 }
3372
3373 /* this function prepares md_op_data hint for passing it down to MD stack. */
3374 struct md_op_data *ll_prep_md_op_data(struct md_op_data *op_data,
3375                                       struct inode *i1, struct inode *i2,
3376                                       const char *name, size_t namelen,
3377                                       __u32 mode, enum md_op_code opc,
3378                                       void *data)
3379 {
3380         struct llcrypt_name fname = { 0 };
3381         int rc;
3382
3383         LASSERT(i1 != NULL);
3384
3385         if (name == NULL) {
3386                 /* Do not reuse namelen for something else. */
3387                 if (namelen != 0)
3388                         return ERR_PTR(-EINVAL);
3389         } else {
3390                 if ((!IS_ENCRYPTED(i1) ||
3391                      (opc != LUSTRE_OPC_LOOKUP && opc != LUSTRE_OPC_CREATE)) &&
3392                     namelen > ll_i2sbi(i1)->ll_namelen)
3393                         return ERR_PTR(-ENAMETOOLONG);
3394
3395                 /* "/" is not valid name, but it's allowed */
3396                 if (!lu_name_is_valid_2(name, namelen) &&
3397                     strncmp("/", name, namelen) != 0)
3398                         return ERR_PTR(-EINVAL);
3399         }
3400
3401         if (op_data == NULL)
3402                 OBD_ALLOC_PTR(op_data);
3403
3404         if (op_data == NULL)
3405                 return ERR_PTR(-ENOMEM);
3406
3407         ll_i2gids(op_data->op_suppgids, i1, i2);
3408         /* If the client is using a subdir mount and looks at what it sees as
3409          * /.fscrypt, interpret it as the .fscrypt dir at the root of the fs.
3410          */
3411         if (unlikely(i1->i_sb && i1->i_sb->s_root && is_root_inode(i1) &&
3412                      !fid_is_root(ll_inode2fid(i1)) &&
3413                      name && namelen == strlen(dot_fscrypt_name) &&
3414                      strncmp(name, dot_fscrypt_name, namelen) == 0))
3415                 lu_root_fid(&op_data->op_fid1);
3416         else
3417                 op_data->op_fid1 = *ll_inode2fid(i1);
3418
3419         if (S_ISDIR(i1->i_mode)) {
3420                 down_read_non_owner(&ll_i2info(i1)->lli_lsm_sem);
3421                 op_data->op_mea1_sem = &ll_i2info(i1)->lli_lsm_sem;
3422                 op_data->op_mea1 = ll_i2info(i1)->lli_lsm_md;
3423                 op_data->op_default_mea1 = ll_i2info(i1)->lli_default_lsm_md;
3424         }
3425
3426         if (i2) {
3427                 op_data->op_fid2 = *ll_inode2fid(i2);
3428                 if (S_ISDIR(i2->i_mode)) {
3429                         if (i2 != i1) {
3430                                 /* i2 is typically a child of i1, and MUST be
3431                                  * further from the root to avoid deadlocks.
3432                                  */
3433                                 down_read_non_owner(&ll_i2info(i2)->lli_lsm_sem);
3434                                 op_data->op_mea2_sem =
3435                                                 &ll_i2info(i2)->lli_lsm_sem;
3436                         }
3437                         op_data->op_mea2 = ll_i2info(i2)->lli_lsm_md;
3438                 }
3439         } else {
3440                 fid_zero(&op_data->op_fid2);
3441         }
3442
3443         if (test_bit(LL_SBI_64BIT_HASH, ll_i2sbi(i1)->ll_flags))
3444                 op_data->op_cli_flags |= CLI_HASH64;
3445
3446         if (ll_need_32bit_api(ll_i2sbi(i1)))
3447                 op_data->op_cli_flags |= CLI_API32;
3448
3449         if ((i2 && is_root_inode(i2)) ||
3450             opc == LUSTRE_OPC_LOOKUP || opc == LUSTRE_OPC_CREATE) {
3451                 /* In case of lookup, ll_setup_filename() has already been
3452                  * called in ll_lookup_it(), so just take provided name.
3453                  * Also take provided name if we are dealing with root inode.
3454                  */
3455                 fname.disk_name.name = (unsigned char *)name;
3456                 fname.disk_name.len = namelen;
3457         } else if (name && namelen) {
3458                 struct qstr dname = QSTR_INIT(name, namelen);
3459                 struct inode *dir;
3460                 struct lu_fid *pfid = NULL;
3461                 struct lu_fid fid;
3462                 int lookup;
3463
3464                 if (!S_ISDIR(i1->i_mode) && i2 && S_ISDIR(i2->i_mode)) {
3465                         /* special case when called from ll_link() */
3466                         dir = i2;
3467                         lookup = 0;
3468                 } else {
3469                         dir = i1;
3470                         lookup = (int)(opc == LUSTRE_OPC_ANY);
3471                 }
3472                 if (opc == LUSTRE_OPC_ANY && lookup)
3473                         pfid = &fid;
3474                 rc = ll_setup_filename(dir, &dname, lookup, &fname, pfid);
3475                 if (rc) {
3476                         ll_finish_md_op_data(op_data);
3477                         return ERR_PTR(rc);
3478                 }
3479                 if (pfid && !fid_is_zero(pfid)) {
3480                         if (i2 == NULL)
3481                                 op_data->op_fid2 = fid;
3482                         op_data->op_bias = MDS_FID_OP;
3483                 }
3484                 if (fname.disk_name.name &&
3485                     fname.disk_name.name != (unsigned char *)name) {
3486                         /* op_data->op_name must be freed after use */
3487                         op_data->op_flags |= MF_OPNAME_KMALLOCED;
3488                 }
3489         }
3490
3491         /* In fact LUSTRE_OPC_LOOKUP, LUSTRE_OPC_OPEN
3492          * are LUSTRE_OPC_ANY
3493          */
3494         if (opc == LUSTRE_OPC_LOOKUP || opc == LUSTRE_OPC_OPEN)
3495                 op_data->op_code = LUSTRE_OPC_ANY;
3496         else
3497                 op_data->op_code = opc;
3498         op_data->op_name = fname.disk_name.name;
3499         op_data->op_namelen = fname.disk_name.len;
3500         op_data->op_mode = mode;
3501         op_data->op_mod_time = ktime_get_real_seconds();
3502         op_data->op_fsuid = from_kuid(&init_user_ns, current_fsuid());
3503         op_data->op_fsgid = from_kgid(&init_user_ns, current_fsgid());
3504         op_data->op_cap = current_cap();
3505         op_data->op_mds = 0;
3506         if ((opc == LUSTRE_OPC_CREATE) && (name != NULL) &&
3507              filename_is_volatile(name, namelen, &op_data->op_mds)) {
3508                 op_data->op_bias |= MDS_CREATE_VOLATILE;
3509         }
3510         op_data->op_data = data;
3511
3512         return op_data;
3513 }
3514
3515 void ll_finish_md_op_data(struct md_op_data *op_data)
3516 {
3517         ll_unlock_md_op_lsm(op_data);
3518         ll_security_release_secctx(op_data->op_file_secctx,
3519                                    op_data->op_file_secctx_size);
3520         if (op_data->op_flags & MF_OPNAME_KMALLOCED)
3521                 /* allocated via ll_setup_filename called
3522                  * from ll_prep_md_op_data
3523                  */
3524                 kfree(op_data->op_name);
3525         llcrypt_free_ctx(op_data->op_file_encctx, op_data->op_file_encctx_size);
3526         OBD_FREE_PTR(op_data);
3527 }
3528
3529 int ll_show_options(struct seq_file *seq, struct dentry *dentry)
3530 {
3531         struct ll_sb_info *sbi;
3532         int i;
3533
3534         LASSERT(seq && dentry);
3535         sbi = ll_s2sbi(dentry->d_sb);
3536
3537         if (test_bit(LL_SBI_NOLCK, sbi->ll_flags))
3538                 seq_puts(seq, "nolock");
3539
3540         for (i = 1; ll_sbi_flags_name[i].token != LL_SBI_NUM_MOUNT_OPT; i++) {
3541                 /* match_table in some cases has patterns for both enabled and
3542                  * disabled cases. Ignore 'no'xxx versions if bit is set.
3543                  */
3544                 if (test_bit(ll_sbi_flags_name[i].token, sbi->ll_flags) &&
3545                     strncmp(ll_sbi_flags_name[i].pattern, "no", 2)) {
3546                         if (ll_sbi_flags_name[i].token ==
3547                             LL_SBI_FOREIGN_SYMLINK) {
3548                                 seq_show_option(seq, "foreign_symlink",
3549                                                 sbi->ll_foreign_symlink_prefix);
3550                         } else {
3551                                 seq_printf(seq, ",%s",
3552                                            ll_sbi_flags_name[i].pattern);
3553                         }
3554
3555                         /* You can have either localflock or flock but not
3556                          * both. If localflock is set don't print flock or
3557                          * noflock.
3558                          */
3559                         if (ll_sbi_flags_name[i].token == LL_SBI_LOCALFLOCK)
3560                                 i += 2;
3561                 } else if (!test_bit(ll_sbi_flags_name[i].token, sbi->ll_flags) &&
3562                            !strncmp(ll_sbi_flags_name[i].pattern, "no", 2)) {
3563                         seq_printf(seq, ",%s",
3564                                    ll_sbi_flags_name[i].pattern);
3565                 }
3566         }
3567
3568         llcrypt_show_test_dummy_encryption(seq, ',', dentry->d_sb);
3569
3570         RETURN(0);
3571 }
3572
3573 /**
3574  * Get obd name by cmd, and copy out to user space
3575  */
3576 int ll_get_obd_name(struct inode *inode, unsigned int cmd, unsigned long arg)
3577 {
3578         struct ll_sb_info *sbi = ll_i2sbi(inode);
3579         struct obd_device *obd;
3580         ENTRY;
3581
3582         if (cmd == OBD_IOC_GETNAME_OLD || cmd == OBD_IOC_GETDTNAME)
3583                 obd = class_exp2obd(sbi->ll_dt_exp);
3584         else if (cmd == OBD_IOC_GETMDNAME)
3585                 obd = class_exp2obd(sbi->ll_md_exp);
3586         else
3587                 RETURN(-EINVAL);
3588
3589         if (!obd)
3590                 RETURN(-ENOENT);
3591
3592         if (copy_to_user((void __user *)arg, obd->obd_name,
3593                          strlen(obd->obd_name) + 1))
3594                 RETURN(-EFAULT);
3595
3596         RETURN(0);
3597 }
3598
3599 struct dname_buf {
3600         struct work_struct db_work;
3601         struct dentry *db_dentry;
3602         /* Let's hope the path is not too long, 32 bytes for the work struct
3603          * on my kernel
3604          */
3605         char buf[PAGE_SIZE - sizeof(struct work_struct) - sizeof(void *)];
3606 };
3607
3608 static void ll_dput_later(struct work_struct *work)
3609 {
3610         struct dname_buf *db = container_of(work, struct dname_buf, db_work);
3611
3612         dput(db->db_dentry);
3613         free_page((unsigned long)db);
3614 }
3615
3616 static char* ll_d_path(struct dentry *dentry, char *buf, int bufsize)
3617 {
3618         char *path = NULL;
3619
3620         struct path p;
3621
3622         p.dentry = dentry;
3623         p.mnt = current->fs->root.mnt;
3624         path_get(&p);
3625         path = d_path(&p, buf, bufsize);
3626         path_put(&p);
3627         return path;
3628 }
3629
3630 void ll_dirty_page_discard_warn(struct inode *inode, int ioret)
3631 {
3632         struct dname_buf *db;
3633         char  *path = NULL;
3634         struct dentry *dentry = NULL;
3635
3636         /* this can be called inside spin lock so use GFP_ATOMIC. */
3637         db = (struct dname_buf *)__get_free_page(GFP_ATOMIC);
3638         if (db != NULL) {
3639
3640                 dentry = d_find_alias(inode);
3641                 if (dentry != NULL)
3642                         path = ll_d_path(dentry, db->buf, sizeof(db->buf));
3643         }
3644
3645         /* The below message is checked in recovery-small.sh test_24b */
3646         CDEBUG(D_WARNING,
3647                "%s: dirty page discard: %s/fid: "DFID"/%s may get corrupted "
3648                "(rc %d)\n", ll_i2sbi(inode)->ll_fsname,
3649                s2lsi(inode->i_sb)->lsi_lmd->lmd_dev,
3650                PFID(ll_inode2fid(inode)),
3651                (path && !IS_ERR(path)) ? path : "", ioret);
3652
3653         if (dentry != NULL) {
3654                 /* We cannot dput here since if we happen to be the last holder
3655                  * then we can end up waiting for page evictions that
3656                  * in turn wait for RPCs that need this instance of ptlrpcd
3657                  * (callng brw_interpret->*page_completion*->vmpage_error->here)
3658                  * LU-15340
3659                  */
3660                 INIT_WORK(&db->db_work, ll_dput_later);
3661                 db->db_dentry = dentry;
3662                 schedule_work(&db->db_work);
3663         } else {
3664                 if (db != NULL)
3665                         free_page((unsigned long)db);
3666         }
3667 }
3668
3669 ssize_t ll_copy_user_md(const struct lov_user_md __user *md,
3670                         struct lov_user_md **kbuf)
3671 {
3672         struct lov_user_md      lum;
3673         ssize_t                 lum_size;
3674         ENTRY;
3675
3676         if (copy_from_user(&lum, md, sizeof(lum)))
3677                 RETURN(-EFAULT);
3678
3679         lum_size = ll_lov_user_md_size(&lum);
3680         if (lum_size < 0)
3681                 RETURN(lum_size);
3682
3683         OBD_ALLOC_LARGE(*kbuf, lum_size);
3684         if (*kbuf == NULL)
3685                 RETURN(-ENOMEM);
3686
3687         if (copy_from_user(*kbuf, md, lum_size) != 0) {
3688                 OBD_FREE_LARGE(*kbuf, lum_size);
3689                 RETURN(-EFAULT);
3690         }
3691
3692         RETURN(lum_size);
3693 }
3694
3695 /*
3696  * Compute llite root squash state after a change of root squash
3697  * configuration setting or add/remove of a lnet nid
3698  */
3699 void ll_compute_rootsquash_state(struct ll_sb_info *sbi)
3700 {
3701         struct root_squash_info *squash = &sbi->ll_squash;
3702         int i;
3703         bool matched;
3704         struct lnet_processid id;
3705
3706         /* Update norootsquash flag */
3707         spin_lock(&squash->rsi_lock);
3708         if (list_empty(&squash->rsi_nosquash_nids))
3709                 clear_bit(LL_SBI_NOROOTSQUASH, sbi->ll_flags);
3710         else {
3711                 /* Do not apply root squash as soon as one of our NIDs is
3712                  * in the nosquash_nids list */
3713                 matched = false;
3714                 i = 0;
3715                 while (LNetGetId(i++, &id) != -ENOENT) {
3716                         if (nid_is_lo0(&id.nid))
3717                                 continue;
3718                         if (cfs_match_nid(lnet_nid_to_nid4(&id.nid),
3719                                           &squash->rsi_nosquash_nids)) {
3720                                 matched = true;
3721                                 break;
3722                         }
3723                 }
3724                 if (matched)
3725                         set_bit(LL_SBI_NOROOTSQUASH, sbi->ll_flags);
3726                 else
3727                         clear_bit(LL_SBI_NOROOTSQUASH, sbi->ll_flags);
3728         }
3729         spin_unlock(&squash->rsi_lock);
3730 }
3731
3732 /**
3733  * Parse linkea content to extract information about a given hardlink
3734  *
3735  * \param[in]   ldata      - Initialized linkea data
3736  * \param[in]   linkno     - Link identifier
3737  * \param[out]  parent_fid - The entry's parent FID
3738  * \param[out]  ln         - Entry name destination buffer
3739  *
3740  * \retval 0 on success
3741  * \retval Appropriate negative error code on failure
3742  */
3743 static int ll_linkea_decode(struct linkea_data *ldata, unsigned int linkno,
3744                             struct lu_fid *parent_fid, struct lu_name *ln)
3745 {
3746         unsigned int    idx;
3747         int             rc;
3748         ENTRY;
3749
3750         rc = linkea_init_with_rec(ldata);
3751         if (rc < 0)
3752                 RETURN(rc);
3753
3754         if (linkno >= ldata->ld_leh->leh_reccount)
3755                 /* beyond last link */
3756                 RETURN(-ENODATA);
3757
3758         linkea_first_entry(ldata);
3759         for (idx = 0; ldata->ld_lee != NULL; idx++) {
3760                 linkea_entry_unpack(ldata->ld_lee, &ldata->ld_reclen, ln,
3761                                     parent_fid);
3762                 if (idx == linkno)
3763                         break;
3764
3765                 linkea_next_entry(ldata);
3766         }
3767
3768         if (idx < linkno)
3769                 RETURN(-ENODATA);
3770
3771         RETURN(0);
3772 }
3773
3774 /**
3775  * Get parent FID and name of an identified link. Operation is performed for
3776  * a given link number, letting the caller iterate over linkno to list one or
3777  * all links of an entry.
3778  *
3779  * \param[in]     file - File descriptor against which to perform the operation
3780  * \param[in,out] arg  - User-filled structure containing the linkno to operate
3781  *                       on and the available size. It is eventually filled with
3782  *                       the requested information or left untouched on error
3783  *
3784  * \retval - 0 on success
3785  * \retval - Appropriate negative error code on failure
3786  */
3787 int ll_getparent(struct file *file, struct getparent __user *arg)
3788 {
3789         struct inode            *inode = file_inode(file);
3790         struct linkea_data      *ldata;
3791         struct lu_buf            buf = LU_BUF_NULL;
3792         struct lu_name           ln;
3793         struct lu_fid            parent_fid;
3794         __u32                    linkno;
3795         __u32                    name_size;
3796         int                      rc;
3797
3798         ENTRY;
3799
3800         if (!capable(CAP_DAC_READ_SEARCH) &&
3801             !test_bit(LL_SBI_USER_FID2PATH, ll_i2sbi(inode)->ll_flags))
3802                 RETURN(-EPERM);
3803
3804         if (get_user(name_size, &arg->gp_name_size))
3805                 RETURN(-EFAULT);
3806
3807         if (get_user(linkno, &arg->gp_linkno))
3808                 RETURN(-EFAULT);
3809
3810         if (name_size > PATH_MAX)
3811                 RETURN(-EINVAL);
3812
3813         OBD_ALLOC(ldata, sizeof(*ldata));
3814         if (ldata == NULL)
3815                 RETURN(-ENOMEM);
3816
3817         rc = linkea_data_new(ldata, &buf);
3818         if (rc < 0)
3819                 GOTO(ldata_free, rc);
3820
3821         rc = ll_xattr_list(inode, XATTR_NAME_LINK, XATTR_TRUSTED_T, buf.lb_buf,
3822                            buf.lb_len, OBD_MD_FLXATTR);
3823         if (rc < 0)
3824                 GOTO(lb_free, rc);
3825
3826         rc = ll_linkea_decode(ldata, linkno, &parent_fid, &ln);
3827         if (rc < 0)
3828                 GOTO(lb_free, rc);
3829
3830         if (ln.ln_namelen >= name_size)
3831                 GOTO(lb_free, rc = -EOVERFLOW);
3832
3833         if (copy_to_user(&arg->gp_fid, &parent_fid, sizeof(arg->gp_fid)))
3834                 GOTO(lb_free, rc = -EFAULT);
3835
3836         if (copy_to_user(&arg->gp_name, ln.ln_name, ln.ln_namelen))
3837                 GOTO(lb_free, rc = -EFAULT);
3838
3839         if (put_user('\0', arg->gp_name + ln.ln_namelen))
3840                 GOTO(lb_free, rc = -EFAULT);
3841
3842 lb_free:
3843         lu_buf_free(&buf);
3844 ldata_free:
3845         OBD_FREE(ldata, sizeof(*ldata));
3846
3847         RETURN(rc);
3848 }