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