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