Whamcloud - gitweb
f92cd7d4b99c744dc446af6144fbf0e95a6d30a7
[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  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * lustre/llite/llite_lib.c
33  *
34  * Lustre Light Super operations
35  */
36
37 #define DEBUG_SUBSYSTEM S_LLITE
38
39 #include <linux/module.h>
40 #include <linux/random.h>
41 #include <linux/statfs.h>
42 #include <linux/time.h>
43 #include <linux/types.h>
44 #include <libcfs/linux/linux-uuid.h>
45 #include <linux/version.h>
46 #include <linux/mm.h>
47 #include <linux/user_namespace.h>
48 #include <linux/delay.h>
49 #include <linux/uidgid.h>
50 #include <linux/security.h>
51
52 #include <uapi/linux/lustre/lustre_ioctl.h>
53 #ifdef HAVE_UAPI_LINUX_MOUNT_H
54 #include <uapi/linux/mount.h>
55 #endif
56
57 #include <lustre_ha.h>
58 #include <lustre_dlm.h>
59 #include <lprocfs_status.h>
60 #include <lustre_disk.h>
61 #include <uapi/linux/lustre/lustre_param.h>
62 #include <lustre_log.h>
63 #include <cl_object.h>
64 #include <obd_cksum.h>
65 #include "llite_internal.h"
66
67 struct kmem_cache *ll_file_data_slab;
68
69 #ifndef log2
70 #define log2(n) ffz(~(n))
71 #endif
72
73 static struct ll_sb_info *ll_init_sbi(void)
74 {
75         struct ll_sb_info *sbi = NULL;
76         unsigned long pages;
77         unsigned long lru_page_max;
78         struct sysinfo si;
79         int rc;
80         int i;
81
82         ENTRY;
83
84         OBD_ALLOC_PTR(sbi);
85         if (sbi == NULL)
86                 RETURN(ERR_PTR(-ENOMEM));
87
88         rc = pcc_super_init(&sbi->ll_pcc_super);
89         if (rc < 0)
90                 GOTO(out_sbi, rc);
91
92         spin_lock_init(&sbi->ll_lock);
93         mutex_init(&sbi->ll_lco.lco_lock);
94         spin_lock_init(&sbi->ll_pp_extent_lock);
95         spin_lock_init(&sbi->ll_process_lock);
96         sbi->ll_rw_stats_on = 0;
97         sbi->ll_statfs_max_age = OBD_STATFS_CACHE_SECONDS;
98
99         si_meminfo(&si);
100         pages = si.totalram - si.totalhigh;
101         lru_page_max = pages / 2;
102
103         sbi->ll_ra_info.ra_async_max_active = 0;
104         sbi->ll_ra_info.ll_readahead_wq =
105                 alloc_workqueue("ll-readahead-wq", WQ_UNBOUND,
106                                 sbi->ll_ra_info.ra_async_max_active);
107         if (!sbi->ll_ra_info.ll_readahead_wq)
108                 GOTO(out_pcc, rc = -ENOMEM);
109
110         /* initialize ll_cache data */
111         sbi->ll_cache = cl_cache_init(lru_page_max);
112         if (sbi->ll_cache == NULL)
113                 GOTO(out_destroy_ra, rc = -ENOMEM);
114
115         sbi->ll_ra_info.ra_max_pages_per_file = min(pages / 32,
116                                            SBI_DEFAULT_READAHEAD_MAX);
117         sbi->ll_ra_info.ra_async_pages_per_file_threshold =
118                                 sbi->ll_ra_info.ra_max_pages_per_file;
119         sbi->ll_ra_info.ra_max_pages = sbi->ll_ra_info.ra_max_pages_per_file;
120         sbi->ll_ra_info.ra_max_read_ahead_whole_pages = -1;
121
122         sbi->ll_flags |= LL_SBI_VERBOSE;
123 #ifdef ENABLE_CHECKSUM
124         sbi->ll_flags |= LL_SBI_CHECKSUM;
125 #endif
126 #ifdef ENABLE_FLOCK
127         sbi->ll_flags |= LL_SBI_FLOCK;
128 #endif
129
130 #ifdef HAVE_LRU_RESIZE_SUPPORT
131         sbi->ll_flags |= LL_SBI_LRU_RESIZE;
132 #endif
133         sbi->ll_flags |= LL_SBI_LAZYSTATFS;
134
135         for (i = 0; i <= LL_PROCESS_HIST_MAX; i++) {
136                 spin_lock_init(&sbi->ll_rw_extents_info.pp_extents[i].
137                                pp_r_hist.oh_lock);
138                 spin_lock_init(&sbi->ll_rw_extents_info.pp_extents[i].
139                                pp_w_hist.oh_lock);
140         }
141
142         /* metadata statahead is enabled by default */
143         sbi->ll_sa_running_max = LL_SA_RUNNING_DEF;
144         sbi->ll_sa_max = LL_SA_RPC_DEF;
145         atomic_set(&sbi->ll_sa_total, 0);
146         atomic_set(&sbi->ll_sa_wrong, 0);
147         atomic_set(&sbi->ll_sa_running, 0);
148         atomic_set(&sbi->ll_agl_total, 0);
149         sbi->ll_flags |= LL_SBI_AGL_ENABLED;
150         sbi->ll_flags |= LL_SBI_FAST_READ;
151         sbi->ll_flags |= LL_SBI_TINY_WRITE;
152
153         /* root squash */
154         sbi->ll_squash.rsi_uid = 0;
155         sbi->ll_squash.rsi_gid = 0;
156         INIT_LIST_HEAD(&sbi->ll_squash.rsi_nosquash_nids);
157         spin_lock_init(&sbi->ll_squash.rsi_lock);
158
159         /* Per-filesystem file heat */
160         sbi->ll_heat_decay_weight = SBI_DEFAULT_HEAT_DECAY_WEIGHT;
161         sbi->ll_heat_period_second = SBI_DEFAULT_HEAT_PERIOD_SECOND;
162         RETURN(sbi);
163 out_destroy_ra:
164         destroy_workqueue(sbi->ll_ra_info.ll_readahead_wq);
165 out_pcc:
166         pcc_super_fini(&sbi->ll_pcc_super);
167 out_sbi:
168         OBD_FREE_PTR(sbi);
169         RETURN(ERR_PTR(rc));
170 }
171
172 static void ll_free_sbi(struct super_block *sb)
173 {
174         struct ll_sb_info *sbi = ll_s2sbi(sb);
175         ENTRY;
176
177         if (sbi != NULL) {
178                 if (!list_empty(&sbi->ll_squash.rsi_nosquash_nids))
179                         cfs_free_nidlist(&sbi->ll_squash.rsi_nosquash_nids);
180                 if (sbi->ll_ra_info.ll_readahead_wq)
181                         destroy_workqueue(sbi->ll_ra_info.ll_readahead_wq);
182                 if (sbi->ll_cache != NULL) {
183                         cl_cache_decref(sbi->ll_cache);
184                         sbi->ll_cache = NULL;
185                 }
186                 pcc_super_fini(&sbi->ll_pcc_super);
187                 OBD_FREE(sbi, sizeof(*sbi));
188         }
189         EXIT;
190 }
191
192 static int client_common_fill_super(struct super_block *sb, char *md, char *dt)
193 {
194         struct inode *root = NULL;
195         struct ll_sb_info *sbi = ll_s2sbi(sb);
196         struct obd_statfs *osfs = NULL;
197         struct ptlrpc_request *request = NULL;
198         struct obd_connect_data *data = NULL;
199         struct obd_uuid *uuid;
200         struct md_op_data *op_data;
201         struct lustre_md lmd;
202         u64 valid;
203         int size, err, checksum;
204
205         ENTRY;
206         sbi->ll_md_obd = class_name2obd(md);
207         if (!sbi->ll_md_obd) {
208                 CERROR("MD %s: not setup or attached\n", md);
209                 RETURN(-EINVAL);
210         }
211
212         OBD_ALLOC_PTR(data);
213         if (data == NULL)
214                 RETURN(-ENOMEM);
215
216         OBD_ALLOC_PTR(osfs);
217         if (osfs == NULL) {
218                 OBD_FREE_PTR(data);
219                 RETURN(-ENOMEM);
220         }
221
222         /* pass client page size via ocd_grant_blkbits, the server should report
223          * back its backend blocksize for grant calculation purpose */
224         data->ocd_grant_blkbits = PAGE_SHIFT;
225
226         /* indicate MDT features supported by this client */
227         data->ocd_connect_flags = OBD_CONNECT_IBITS    | OBD_CONNECT_NODEVOH  |
228                                   OBD_CONNECT_ATTRFID  | OBD_CONNECT_GRANT |
229                                   OBD_CONNECT_VERSION  | OBD_CONNECT_BRW_SIZE |
230                                   OBD_CONNECT_SRVLOCK  | OBD_CONNECT_TRUNCLOCK|
231                                   OBD_CONNECT_MDS_CAPA | OBD_CONNECT_OSS_CAPA |
232                                   OBD_CONNECT_CANCELSET | OBD_CONNECT_FID     |
233                                   OBD_CONNECT_AT       | OBD_CONNECT_LOV_V3   |
234                                   OBD_CONNECT_VBR | OBD_CONNECT_FULL20 |
235                                   OBD_CONNECT_64BITHASH |
236                                   OBD_CONNECT_EINPROGRESS |
237                                   OBD_CONNECT_JOBSTATS | OBD_CONNECT_LVB_TYPE |
238                                   OBD_CONNECT_LAYOUTLOCK | OBD_CONNECT_PINGLESS|
239                                   OBD_CONNECT_MAX_EASIZE |
240                                   OBD_CONNECT_FLOCK_DEAD |
241                                   OBD_CONNECT_DISP_STRIPE | OBD_CONNECT_LFSCK |
242                                   OBD_CONNECT_OPEN_BY_FID |
243                                   OBD_CONNECT_DIR_STRIPE |
244                                   OBD_CONNECT_BULK_MBITS | OBD_CONNECT_CKSUM |
245                                   OBD_CONNECT_SUBTREE |
246                                   OBD_CONNECT_MULTIMODRPCS |
247                                   OBD_CONNECT_GRANT_PARAM |
248                                   OBD_CONNECT_SHORTIO | OBD_CONNECT_FLAGS2;
249
250         data->ocd_connect_flags2 = OBD_CONNECT2_DIR_MIGRATE |
251                                    OBD_CONNECT2_SUM_STATFS |
252                                    OBD_CONNECT2_OVERSTRIPING |
253                                    OBD_CONNECT2_FLR |
254                                    OBD_CONNECT2_LOCK_CONVERT |
255                                    OBD_CONNECT2_ARCHIVE_ID_ARRAY |
256                                    OBD_CONNECT2_INC_XID |
257                                    OBD_CONNECT2_LSOM |
258                                    OBD_CONNECT2_ASYNC_DISCARD |
259                                    OBD_CONNECT2_PCC;
260
261 #ifdef HAVE_LRU_RESIZE_SUPPORT
262         if (sbi->ll_flags & LL_SBI_LRU_RESIZE)
263                 data->ocd_connect_flags |= OBD_CONNECT_LRU_RESIZE;
264 #endif
265 #ifdef CONFIG_LUSTRE_FS_POSIX_ACL
266         data->ocd_connect_flags |= OBD_CONNECT_ACL | OBD_CONNECT_UMASK |
267                                    OBD_CONNECT_LARGE_ACL;
268 #endif
269
270         data->ocd_cksum_types = obd_cksum_types_supported_client();
271
272         if (OBD_FAIL_CHECK(OBD_FAIL_MDC_LIGHTWEIGHT))
273                 /* flag mdc connection as lightweight, only used for test
274                  * purpose, use with care */
275                 data->ocd_connect_flags |= OBD_CONNECT_LIGHTWEIGHT;
276
277         data->ocd_ibits_known = MDS_INODELOCK_FULL;
278         data->ocd_version = LUSTRE_VERSION_CODE;
279
280         if (sb->s_flags & SB_RDONLY)
281                 data->ocd_connect_flags |= OBD_CONNECT_RDONLY;
282         if (sbi->ll_flags & LL_SBI_USER_XATTR)
283                 data->ocd_connect_flags |= OBD_CONNECT_XATTR;
284
285 #ifdef SB_NOSEC
286         /* Setting this indicates we correctly support S_NOSEC (See kernel
287          * commit 9e1f1de02c2275d7172e18dc4e7c2065777611bf)
288          */
289         sb->s_flags |= SB_NOSEC;
290 #endif
291
292         if (sbi->ll_flags & LL_SBI_FLOCK)
293                 sbi->ll_fop = &ll_file_operations_flock;
294         else if (sbi->ll_flags & LL_SBI_LOCALFLOCK)
295                 sbi->ll_fop = &ll_file_operations;
296         else
297                 sbi->ll_fop = &ll_file_operations_noflock;
298
299         /* always ping even if server suppress_pings */
300         if (sbi->ll_flags & LL_SBI_ALWAYS_PING)
301                 data->ocd_connect_flags &= ~OBD_CONNECT_PINGLESS;
302
303         obd_connect_set_secctx(data);
304
305 #if defined(CONFIG_SECURITY)
306         data->ocd_connect_flags2 |= OBD_CONNECT2_SELINUX_POLICY;
307 #endif
308
309         data->ocd_brw_size = MD_MAX_BRW_SIZE;
310
311         err = obd_connect(NULL, &sbi->ll_md_exp, sbi->ll_md_obd,
312                           &sbi->ll_sb_uuid, data, sbi->ll_cache);
313         if (err == -EBUSY) {
314                 LCONSOLE_ERROR_MSG(0x14f, "An MDT (md %s) is performing "
315                                    "recovery, of which this client is not a "
316                                    "part. Please wait for recovery to complete,"
317                                    " abort, or time out.\n", md);
318                 GOTO(out, err);
319         } else if (err) {
320                 CERROR("cannot connect to %s: rc = %d\n", md, err);
321                 GOTO(out, err);
322         }
323
324         sbi->ll_md_exp->exp_connect_data = *data;
325
326         err = obd_fid_init(sbi->ll_md_exp->exp_obd, sbi->ll_md_exp,
327                            LUSTRE_SEQ_METADATA);
328         if (err) {
329                 CERROR("%s: Can't init metadata layer FID infrastructure, "
330                        "rc = %d\n", sbi->ll_md_exp->exp_obd->obd_name, err);
331                 GOTO(out_md, err);
332         }
333
334         /* For mount, we only need fs info from MDT0, and also in DNE, it
335          * can make sure the client can be mounted as long as MDT0 is
336          * avaible */
337         err = obd_statfs(NULL, sbi->ll_md_exp, osfs,
338                         ktime_get_seconds() - sbi->ll_statfs_max_age,
339                         OBD_STATFS_FOR_MDT0);
340         if (err)
341                 GOTO(out_md_fid, err);
342
343         /* This needs to be after statfs to ensure connect has finished.
344          * Note that "data" does NOT contain the valid connect reply.
345          * If connecting to a 1.8 server there will be no LMV device, so
346          * we can access the MDC export directly and exp_connect_flags will
347          * be non-zero, but if accessing an upgraded 2.1 server it will
348          * have the correct flags filled in.
349          * XXX: fill in the LMV exp_connect_flags from MDC(s). */
350         valid = exp_connect_flags(sbi->ll_md_exp) & CLIENT_CONNECT_MDT_REQD;
351         if (exp_connect_flags(sbi->ll_md_exp) != 0 &&
352             valid != CLIENT_CONNECT_MDT_REQD) {
353                 char *buf;
354
355                 OBD_ALLOC_WAIT(buf, PAGE_SIZE);
356                 obd_connect_flags2str(buf, PAGE_SIZE,
357                                       valid ^ CLIENT_CONNECT_MDT_REQD, 0, ",");
358                 LCONSOLE_ERROR_MSG(0x170, "Server %s does not support "
359                                    "feature(s) needed for correct operation "
360                                    "of this client (%s). Please upgrade "
361                                    "server or downgrade client.\n",
362                                    sbi->ll_md_exp->exp_obd->obd_name, buf);
363                 OBD_FREE(buf, PAGE_SIZE);
364                 GOTO(out_md_fid, err = -EPROTO);
365         }
366
367         size = sizeof(*data);
368         err = obd_get_info(NULL, sbi->ll_md_exp, sizeof(KEY_CONN_DATA),
369                            KEY_CONN_DATA,  &size, data);
370         if (err) {
371                 CERROR("%s: Get connect data failed: rc = %d\n",
372                        sbi->ll_md_exp->exp_obd->obd_name, err);
373                 GOTO(out_md_fid, err);
374         }
375
376         LASSERT(osfs->os_bsize);
377         sb->s_blocksize = osfs->os_bsize;
378         sb->s_blocksize_bits = log2(osfs->os_bsize);
379         sb->s_magic = LL_SUPER_MAGIC;
380         sb->s_maxbytes = MAX_LFS_FILESIZE;
381         sbi->ll_namelen = osfs->os_namelen;
382         sbi->ll_mnt.mnt = current->fs->root.mnt;
383
384         if ((sbi->ll_flags & LL_SBI_USER_XATTR) &&
385             !(data->ocd_connect_flags & OBD_CONNECT_XATTR)) {
386                 LCONSOLE_INFO("Disabling user_xattr feature because "
387                               "it is not supported on the server\n");
388                 sbi->ll_flags &= ~LL_SBI_USER_XATTR;
389         }
390
391         if (data->ocd_connect_flags & OBD_CONNECT_ACL) {
392 #ifdef SB_POSIXACL
393                 sb->s_flags |= SB_POSIXACL;
394 #endif
395                 sbi->ll_flags |= LL_SBI_ACL;
396         } else {
397                 LCONSOLE_INFO("client wants to enable acl, but mdt not!\n");
398 #ifdef SB_POSIXACL
399                 sb->s_flags &= ~SB_POSIXACL;
400 #endif
401                 sbi->ll_flags &= ~LL_SBI_ACL;
402         }
403
404         if (data->ocd_connect_flags & OBD_CONNECT_64BITHASH)
405                 sbi->ll_flags |= LL_SBI_64BIT_HASH;
406
407         if (data->ocd_connect_flags & OBD_CONNECT_LAYOUTLOCK)
408                 sbi->ll_flags |= LL_SBI_LAYOUT_LOCK;
409
410         if (obd_connect_has_secctx(data))
411                 sbi->ll_flags |= LL_SBI_FILE_SECCTX;
412
413         if (data->ocd_ibits_known & MDS_INODELOCK_XATTR) {
414                 if (!(data->ocd_connect_flags & OBD_CONNECT_MAX_EASIZE)) {
415                         LCONSOLE_INFO("%s: disabling xattr cache due to "
416                                       "unknown maximum xattr size.\n", dt);
417                 } else if (!sbi->ll_xattr_cache_set) {
418                         /* If xattr_cache is already set (no matter 0 or 1)
419                          * during processing llog, it won't be enabled here. */
420                         sbi->ll_flags |= LL_SBI_XATTR_CACHE;
421                         sbi->ll_xattr_cache_enabled = 1;
422                 }
423         }
424
425         sbi->ll_dt_obd = class_name2obd(dt);
426         if (!sbi->ll_dt_obd) {
427                 CERROR("DT %s: not setup or attached\n", dt);
428                 GOTO(out_md_fid, err = -ENODEV);
429         }
430
431         /* pass client page size via ocd_grant_blkbits, the server should report
432          * back its backend blocksize for grant calculation purpose */
433         data->ocd_grant_blkbits = PAGE_SHIFT;
434
435         /* indicate OST features supported by this client */
436         data->ocd_connect_flags = OBD_CONNECT_GRANT | OBD_CONNECT_VERSION |
437                                   OBD_CONNECT_REQPORTAL | OBD_CONNECT_BRW_SIZE |
438                                   OBD_CONNECT_CANCELSET | OBD_CONNECT_FID |
439                                   OBD_CONNECT_SRVLOCK | OBD_CONNECT_TRUNCLOCK|
440                                   OBD_CONNECT_AT | OBD_CONNECT_OSS_CAPA |
441                                   OBD_CONNECT_VBR | OBD_CONNECT_FULL20 |
442                                   OBD_CONNECT_64BITHASH | OBD_CONNECT_MAXBYTES |
443                                   OBD_CONNECT_EINPROGRESS |
444                                   OBD_CONNECT_JOBSTATS | OBD_CONNECT_LVB_TYPE |
445                                   OBD_CONNECT_LAYOUTLOCK |
446                                   OBD_CONNECT_PINGLESS | OBD_CONNECT_LFSCK |
447                                   OBD_CONNECT_BULK_MBITS | OBD_CONNECT_SHORTIO |
448                                   OBD_CONNECT_FLAGS2 | OBD_CONNECT_GRANT_SHRINK;
449
450 /* The client currently advertises support for OBD_CONNECT_LOCKAHEAD_OLD so it
451  * can interoperate with an older version of lockahead which was released prior
452  * to landing in master. This support will be dropped when 2.13 development
453  * starts.  At the point, we should not just drop the connect flag (below), we
454  * should also remove the support in the code.
455  *
456  * Removing it means a few things:
457  * 1. Remove this section here
458  * 2. Remove CEF_NONBLOCK in ll_file_lockahead()
459  * 3. Remove function exp_connect_lockahead_old
460  * 4. Remove LDLM_FL_LOCKAHEAD_OLD_RESERVED in lustre_dlm_flags.h
461  * */
462 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2, 12, 50, 0)
463         data->ocd_connect_flags |= OBD_CONNECT_LOCKAHEAD_OLD;
464 #endif
465
466         data->ocd_connect_flags2 = OBD_CONNECT2_LOCKAHEAD |
467                                    OBD_CONNECT2_INC_XID;
468
469         if (!OBD_FAIL_CHECK(OBD_FAIL_OSC_CONNECT_GRANT_PARAM))
470                 data->ocd_connect_flags |= OBD_CONNECT_GRANT_PARAM;
471
472         /* OBD_CONNECT_CKSUM should always be set, even if checksums are
473          * disabled by default, because it can still be enabled on the
474          * fly via /sys. As a consequence, we still need to come to an
475          * agreement on the supported algorithms at connect time
476          */
477         data->ocd_connect_flags |= OBD_CONNECT_CKSUM;
478
479         if (OBD_FAIL_CHECK(OBD_FAIL_OSC_CKSUM_ADLER_ONLY))
480                 data->ocd_cksum_types = OBD_CKSUM_ADLER;
481         else
482                 data->ocd_cksum_types = obd_cksum_types_supported_client();
483
484 #ifdef HAVE_LRU_RESIZE_SUPPORT
485         data->ocd_connect_flags |= OBD_CONNECT_LRU_RESIZE;
486 #endif
487         /* always ping even if server suppress_pings */
488         if (sbi->ll_flags & LL_SBI_ALWAYS_PING)
489                 data->ocd_connect_flags &= ~OBD_CONNECT_PINGLESS;
490
491         CDEBUG(D_RPCTRACE, "ocd_connect_flags: %#llx ocd_version: %d "
492                "ocd_grant: %d\n", data->ocd_connect_flags,
493                data->ocd_version, data->ocd_grant);
494
495         sbi->ll_dt_obd->obd_upcall.onu_owner = &sbi->ll_lco;
496         sbi->ll_dt_obd->obd_upcall.onu_upcall = cl_ocd_update;
497
498         data->ocd_brw_size = DT_MAX_BRW_SIZE;
499
500         err = obd_connect(NULL, &sbi->ll_dt_exp, sbi->ll_dt_obd,
501                           &sbi->ll_sb_uuid, data, sbi->ll_cache);
502         if (err == -EBUSY) {
503                 LCONSOLE_ERROR_MSG(0x150, "An OST (dt %s) is performing "
504                                    "recovery, of which this client is not a "
505                                    "part.  Please wait for recovery to "
506                                    "complete, abort, or time out.\n", dt);
507                 GOTO(out_md, err);
508         } else if (err) {
509                 CERROR("%s: Cannot connect to %s: rc = %d\n",
510                        sbi->ll_dt_exp->exp_obd->obd_name, dt, err);
511                 GOTO(out_md, err);
512         }
513
514         sbi->ll_dt_exp->exp_connect_data = *data;
515
516         /* Don't change value if it was specified in the config log */
517         if (sbi->ll_ra_info.ra_max_read_ahead_whole_pages == -1) {
518                 sbi->ll_ra_info.ra_max_read_ahead_whole_pages =
519                         max_t(unsigned long, SBI_DEFAULT_READAHEAD_WHOLE_MAX,
520                               (data->ocd_brw_size >> PAGE_SHIFT));
521                 if (sbi->ll_ra_info.ra_max_read_ahead_whole_pages >
522                     sbi->ll_ra_info.ra_max_pages_per_file)
523                         sbi->ll_ra_info.ra_max_read_ahead_whole_pages =
524                                 sbi->ll_ra_info.ra_max_pages_per_file;
525         }
526
527         err = obd_fid_init(sbi->ll_dt_exp->exp_obd, sbi->ll_dt_exp,
528                            LUSTRE_SEQ_METADATA);
529         if (err) {
530                 CERROR("%s: Can't init data layer FID infrastructure, "
531                        "rc = %d\n", sbi->ll_dt_exp->exp_obd->obd_name, err);
532                 GOTO(out_dt, err);
533         }
534
535         mutex_lock(&sbi->ll_lco.lco_lock);
536         sbi->ll_lco.lco_flags = data->ocd_connect_flags;
537         sbi->ll_lco.lco_md_exp = sbi->ll_md_exp;
538         sbi->ll_lco.lco_dt_exp = sbi->ll_dt_exp;
539         mutex_unlock(&sbi->ll_lco.lco_lock);
540
541         fid_zero(&sbi->ll_root_fid);
542         err = md_get_root(sbi->ll_md_exp, get_mount_fileset(sb),
543                            &sbi->ll_root_fid);
544         if (err) {
545                 CERROR("cannot mds_connect: rc = %d\n", err);
546                 GOTO(out_lock_cn_cb, err);
547         }
548         if (!fid_is_sane(&sbi->ll_root_fid)) {
549                 CERROR("%s: Invalid root fid "DFID" during mount\n",
550                        sbi->ll_md_exp->exp_obd->obd_name,
551                        PFID(&sbi->ll_root_fid));
552                 GOTO(out_lock_cn_cb, err = -EINVAL);
553         }
554         CDEBUG(D_SUPER, "rootfid "DFID"\n", PFID(&sbi->ll_root_fid));
555
556         sb->s_op = &lustre_super_operations;
557         sb->s_xattr = ll_xattr_handlers;
558 #if THREAD_SIZE >= 8192 /*b=17630*/
559         sb->s_export_op = &lustre_export_operations;
560 #endif
561
562         /* make root inode
563          * XXX: move this to after cbd setup? */
564         valid = OBD_MD_FLGETATTR | OBD_MD_FLBLOCKS | OBD_MD_FLMODEASIZE;
565         if (sbi->ll_flags & LL_SBI_ACL)
566                 valid |= OBD_MD_FLACL;
567
568         OBD_ALLOC_PTR(op_data);
569         if (op_data == NULL)
570                 GOTO(out_lock_cn_cb, err = -ENOMEM);
571
572         op_data->op_fid1 = sbi->ll_root_fid;
573         op_data->op_mode = 0;
574         op_data->op_valid = valid;
575
576         err = md_getattr(sbi->ll_md_exp, op_data, &request);
577
578         OBD_FREE_PTR(op_data);
579         if (err) {
580                 CERROR("%s: md_getattr failed for root: rc = %d\n",
581                        sbi->ll_md_exp->exp_obd->obd_name, err);
582                 GOTO(out_lock_cn_cb, err);
583         }
584
585         err = md_get_lustre_md(sbi->ll_md_exp, request, sbi->ll_dt_exp,
586                                sbi->ll_md_exp, &lmd);
587         if (err) {
588                 CERROR("failed to understand root inode md: rc = %d\n", err);
589                 ptlrpc_req_finished(request);
590                 GOTO(out_lock_cn_cb, err);
591         }
592
593         LASSERT(fid_is_sane(&sbi->ll_root_fid));
594         root = ll_iget(sb, cl_fid_build_ino(&sbi->ll_root_fid,
595                                             sbi->ll_flags & LL_SBI_32BIT_API),
596                        &lmd);
597         md_free_lustre_md(sbi->ll_md_exp, &lmd);
598         ptlrpc_req_finished(request);
599
600         if (IS_ERR(root)) {
601 #ifdef CONFIG_LUSTRE_FS_POSIX_ACL
602                 if (lmd.posix_acl) {
603                         posix_acl_release(lmd.posix_acl);
604                         lmd.posix_acl = NULL;
605                 }
606 #endif
607                 err = IS_ERR(root) ? PTR_ERR(root) : -EBADF;
608                 root = NULL;
609                 CERROR("%s: bad ll_iget() for root: rc = %d\n",
610                        sbi->ll_fsname, err);
611                 GOTO(out_root, err);
612         }
613
614         checksum = sbi->ll_flags & LL_SBI_CHECKSUM;
615         if (sbi->ll_checksum_set) {
616                 err = obd_set_info_async(NULL, sbi->ll_dt_exp,
617                                          sizeof(KEY_CHECKSUM), KEY_CHECKSUM,
618                                          sizeof(checksum), &checksum, NULL);
619                 if (err) {
620                         CERROR("%s: Set checksum failed: rc = %d\n",
621                                sbi->ll_dt_exp->exp_obd->obd_name, err);
622                         GOTO(out_root, err);
623                 }
624         }
625         cl_sb_init(sb);
626
627         sb->s_root = d_make_root(root);
628         if (sb->s_root == NULL) {
629                 err = -ENOMEM;
630                 CERROR("%s: can't make root dentry: rc = %d\n",
631                        sbi->ll_fsname, err);
632                 GOTO(out_root, err);
633         }
634
635         sbi->ll_sdev_orig = sb->s_dev;
636
637         /* We set sb->s_dev equal on all lustre clients in order to support
638          * NFS export clustering.  NFSD requires that the FSID be the same
639          * on all clients. */
640         /* s_dev is also used in lt_compare() to compare two fs, but that is
641          * only a node-local comparison. */
642         uuid = obd_get_uuid(sbi->ll_md_exp);
643         if (uuid != NULL)
644                 sb->s_dev = get_uuid2int(uuid->uuid, strlen(uuid->uuid));
645
646         if (data != NULL)
647                 OBD_FREE_PTR(data);
648         if (osfs != NULL)
649                 OBD_FREE_PTR(osfs);
650
651         if (sbi->ll_dt_obd) {
652                 err = sysfs_create_link(&sbi->ll_kset.kobj,
653                                         &sbi->ll_dt_obd->obd_kset.kobj,
654                                         sbi->ll_dt_obd->obd_type->typ_name);
655                 if (err < 0) {
656                         CERROR("%s: could not register %s in llite: rc = %d\n",
657                                dt, sbi->ll_fsname, err);
658                         err = 0;
659                 }
660         }
661
662         if (sbi->ll_md_obd) {
663                 err = sysfs_create_link(&sbi->ll_kset.kobj,
664                                         &sbi->ll_md_obd->obd_kset.kobj,
665                                         sbi->ll_md_obd->obd_type->typ_name);
666                 if (err < 0) {
667                         CERROR("%s: could not register %s in llite: rc = %d\n",
668                                md, sbi->ll_fsname, err);
669                         err = 0;
670                 }
671         }
672
673         RETURN(err);
674 out_root:
675         if (root)
676                 iput(root);
677 out_lock_cn_cb:
678         obd_fid_fini(sbi->ll_dt_exp->exp_obd);
679 out_dt:
680         obd_disconnect(sbi->ll_dt_exp);
681         sbi->ll_dt_exp = NULL;
682         sbi->ll_dt_obd = NULL;
683 out_md_fid:
684         obd_fid_fini(sbi->ll_md_exp->exp_obd);
685 out_md:
686         obd_disconnect(sbi->ll_md_exp);
687         sbi->ll_md_exp = NULL;
688         sbi->ll_md_obd = NULL;
689 out:
690         if (data != NULL)
691                 OBD_FREE_PTR(data);
692         if (osfs != NULL)
693                 OBD_FREE_PTR(osfs);
694         return err;
695 }
696
697 int ll_get_max_mdsize(struct ll_sb_info *sbi, int *lmmsize)
698 {
699         int size, rc;
700
701         size = sizeof(*lmmsize);
702         rc = obd_get_info(NULL, sbi->ll_dt_exp, sizeof(KEY_MAX_EASIZE),
703                           KEY_MAX_EASIZE, &size, lmmsize);
704         if (rc != 0) {
705                 CERROR("%s: cannot get max LOV EA size: rc = %d\n",
706                        sbi->ll_dt_exp->exp_obd->obd_name, rc);
707                 RETURN(rc);
708         }
709
710         CDEBUG(D_INFO, "max LOV ea size: %d\n", *lmmsize);
711
712         size = sizeof(int);
713         rc = obd_get_info(NULL, sbi->ll_md_exp, sizeof(KEY_MAX_EASIZE),
714                           KEY_MAX_EASIZE, &size, lmmsize);
715         if (rc)
716                 CERROR("Get max mdsize error rc %d\n", rc);
717
718         CDEBUG(D_INFO, "max LMV ea size: %d\n", *lmmsize);
719
720         RETURN(rc);
721 }
722
723 /**
724  * Get the value of the default_easize parameter.
725  *
726  * \see client_obd::cl_default_mds_easize
727  *
728  * \param[in] sbi       superblock info for this filesystem
729  * \param[out] lmmsize  pointer to storage location for value
730  *
731  * \retval 0            on success
732  * \retval negative     negated errno on failure
733  */
734 int ll_get_default_mdsize(struct ll_sb_info *sbi, int *lmmsize)
735 {
736         int size, rc;
737
738         size = sizeof(int);
739         rc = obd_get_info(NULL, sbi->ll_md_exp, sizeof(KEY_DEFAULT_EASIZE),
740                          KEY_DEFAULT_EASIZE, &size, lmmsize);
741         if (rc)
742                 CERROR("Get default mdsize error rc %d\n", rc);
743
744         RETURN(rc);
745 }
746
747 /**
748  * Set the default_easize parameter to the given value.
749  *
750  * \see client_obd::cl_default_mds_easize
751  *
752  * \param[in] sbi       superblock info for this filesystem
753  * \param[in] lmmsize   the size to set
754  *
755  * \retval 0            on success
756  * \retval negative     negated errno on failure
757  */
758 int ll_set_default_mdsize(struct ll_sb_info *sbi, int lmmsize)
759 {
760         int rc;
761
762         if (lmmsize < sizeof(struct lov_mds_md) ||
763             lmmsize > OBD_MAX_DEFAULT_EA_SIZE)
764                 return -EINVAL;
765
766         rc = obd_set_info_async(NULL, sbi->ll_md_exp,
767                                 sizeof(KEY_DEFAULT_EASIZE), KEY_DEFAULT_EASIZE,
768                                 sizeof(int), &lmmsize, NULL);
769
770         RETURN(rc);
771 }
772
773 static void client_common_put_super(struct super_block *sb)
774 {
775         struct ll_sb_info *sbi = ll_s2sbi(sb);
776         ENTRY;
777
778         cl_sb_fini(sb);
779
780         obd_fid_fini(sbi->ll_dt_exp->exp_obd);
781         obd_disconnect(sbi->ll_dt_exp);
782         sbi->ll_dt_exp = NULL;
783
784         ll_debugfs_unregister_super(sb);
785
786         obd_fid_fini(sbi->ll_md_exp->exp_obd);
787         obd_disconnect(sbi->ll_md_exp);
788         sbi->ll_md_exp = NULL;
789
790         EXIT;
791 }
792
793 void ll_kill_super(struct super_block *sb)
794 {
795         struct ll_sb_info *sbi;
796         ENTRY;
797
798         /* not init sb ?*/
799         if (!(sb->s_flags & SB_ACTIVE))
800                 return;
801
802         sbi = ll_s2sbi(sb);
803         /* we need restore s_dev from changed for clustred NFS before put_super
804          * because new kernels have cached s_dev and change sb->s_dev in
805          * put_super not affected real removing devices */
806         if (sbi) {
807                 sb->s_dev = sbi->ll_sdev_orig;
808
809                 /* wait running statahead threads to quit */
810                 while (atomic_read(&sbi->ll_sa_running) > 0) {
811                         set_current_state(TASK_UNINTERRUPTIBLE);
812                         schedule_timeout(cfs_time_seconds(1) >> 3);
813                 }
814         }
815
816         EXIT;
817 }
818
819 static inline int ll_set_opt(const char *opt, char *data, int fl)
820 {
821         if (strncmp(opt, data, strlen(opt)) != 0)
822                 return 0;
823         else
824                 return fl;
825 }
826
827 /* non-client-specific mount options are parsed in lmd_parse */
828 static int ll_options(char *options, struct ll_sb_info *sbi)
829 {
830         int tmp;
831         char *s1 = options, *s2;
832         int *flags = &sbi->ll_flags;
833         ENTRY;
834
835         if (!options)
836                 RETURN(0);
837
838         CDEBUG(D_CONFIG, "Parsing opts %s\n", options);
839
840         while (*s1) {
841                 CDEBUG(D_SUPER, "next opt=%s\n", s1);
842                 tmp = ll_set_opt("nolock", s1, LL_SBI_NOLCK);
843                 if (tmp) {
844                         *flags |= tmp;
845                         goto next;
846                 }
847                 tmp = ll_set_opt("flock", s1, LL_SBI_FLOCK);
848                 if (tmp) {
849                         *flags = (*flags & ~LL_SBI_LOCALFLOCK) | tmp;
850                         goto next;
851                 }
852                 tmp = ll_set_opt("localflock", s1, LL_SBI_LOCALFLOCK);
853                 if (tmp) {
854                         *flags = (*flags & ~LL_SBI_FLOCK) | tmp;
855                         goto next;
856                 }
857                 tmp = ll_set_opt("noflock", s1, LL_SBI_FLOCK|LL_SBI_LOCALFLOCK);
858                 if (tmp) {
859                         *flags &= ~tmp;
860                         goto next;
861                 }
862                 tmp = ll_set_opt("user_xattr", s1, LL_SBI_USER_XATTR);
863                 if (tmp) {
864                         *flags |= tmp;
865                         goto next;
866                 }
867                 tmp = ll_set_opt("nouser_xattr", s1, LL_SBI_USER_XATTR);
868                 if (tmp) {
869                         *flags &= ~tmp;
870                         goto next;
871                 }
872                 tmp = ll_set_opt("context", s1, 1);
873                 if (tmp)
874                         goto next;
875                 tmp = ll_set_opt("fscontext", s1, 1);
876                 if (tmp)
877                         goto next;
878                 tmp = ll_set_opt("defcontext", s1, 1);
879                 if (tmp)
880                         goto next;
881                 tmp = ll_set_opt("rootcontext", s1, 1);
882                 if (tmp)
883                         goto next;
884                 tmp = ll_set_opt("user_fid2path", s1, LL_SBI_USER_FID2PATH);
885                 if (tmp) {
886                         *flags |= tmp;
887                         goto next;
888                 }
889                 tmp = ll_set_opt("nouser_fid2path", s1, LL_SBI_USER_FID2PATH);
890                 if (tmp) {
891                         *flags &= ~tmp;
892                         goto next;
893                 }
894
895                 tmp = ll_set_opt("checksum", s1, LL_SBI_CHECKSUM);
896                 if (tmp) {
897                         *flags |= tmp;
898                         sbi->ll_checksum_set = 1;
899                         goto next;
900                 }
901                 tmp = ll_set_opt("nochecksum", s1, LL_SBI_CHECKSUM);
902                 if (tmp) {
903                         *flags &= ~tmp;
904                         sbi->ll_checksum_set = 1;
905                         goto next;
906                 }
907                 tmp = ll_set_opt("lruresize", s1, LL_SBI_LRU_RESIZE);
908                 if (tmp) {
909                         *flags |= tmp;
910                         goto next;
911                 }
912                 tmp = ll_set_opt("nolruresize", s1, LL_SBI_LRU_RESIZE);
913                 if (tmp) {
914                         *flags &= ~tmp;
915                         goto next;
916                 }
917                 tmp = ll_set_opt("lazystatfs", s1, LL_SBI_LAZYSTATFS);
918                 if (tmp) {
919                         *flags |= tmp;
920                         goto next;
921                 }
922                 tmp = ll_set_opt("nolazystatfs", s1, LL_SBI_LAZYSTATFS);
923                 if (tmp) {
924                         *flags &= ~tmp;
925                         goto next;
926                 }
927                 tmp = ll_set_opt("32bitapi", s1, LL_SBI_32BIT_API);
928                 if (tmp) {
929                         *flags |= tmp;
930                         goto next;
931                 }
932                 tmp = ll_set_opt("verbose", s1, LL_SBI_VERBOSE);
933                 if (tmp) {
934                         *flags |= tmp;
935                         goto next;
936                 }
937                 tmp = ll_set_opt("noverbose", s1, LL_SBI_VERBOSE);
938                 if (tmp) {
939                         *flags &= ~tmp;
940                         goto next;
941                 }
942                 tmp = ll_set_opt("always_ping", s1, LL_SBI_ALWAYS_PING);
943                 if (tmp) {
944                         *flags |= tmp;
945                         goto next;
946                 }
947                 LCONSOLE_ERROR_MSG(0x152, "Unknown option '%s', won't mount.\n",
948                                    s1);
949                 RETURN(-EINVAL);
950
951 next:
952                 /* Find next opt */
953                 s2 = strchr(s1, ',');
954                 if (s2 == NULL)
955                         break;
956                 s1 = s2 + 1;
957         }
958         RETURN(0);
959 }
960
961 void ll_lli_init(struct ll_inode_info *lli)
962 {
963         lli->lli_inode_magic = LLI_INODE_MAGIC;
964         lli->lli_flags = 0;
965         spin_lock_init(&lli->lli_lock);
966         lli->lli_posix_acl = NULL;
967         /* Do not set lli_fid, it has been initialized already. */
968         fid_zero(&lli->lli_pfid);
969         lli->lli_mds_read_och = NULL;
970         lli->lli_mds_write_och = NULL;
971         lli->lli_mds_exec_och = NULL;
972         lli->lli_open_fd_read_count = 0;
973         lli->lli_open_fd_write_count = 0;
974         lli->lli_open_fd_exec_count = 0;
975         mutex_init(&lli->lli_och_mutex);
976         spin_lock_init(&lli->lli_agl_lock);
977         spin_lock_init(&lli->lli_layout_lock);
978         ll_layout_version_set(lli, CL_LAYOUT_GEN_NONE);
979         lli->lli_clob = NULL;
980
981         init_rwsem(&lli->lli_xattrs_list_rwsem);
982         mutex_init(&lli->lli_xattrs_enq_lock);
983
984         LASSERT(lli->lli_vfs_inode.i_mode != 0);
985         if (S_ISDIR(lli->lli_vfs_inode.i_mode)) {
986                 lli->lli_opendir_key = NULL;
987                 lli->lli_sai = NULL;
988                 spin_lock_init(&lli->lli_sa_lock);
989                 lli->lli_opendir_pid = 0;
990                 lli->lli_sa_enabled = 0;
991                 init_rwsem(&lli->lli_lsm_sem);
992         } else {
993                 mutex_init(&lli->lli_size_mutex);
994                 lli->lli_symlink_name = NULL;
995                 init_rwsem(&lli->lli_trunc_sem);
996                 range_lock_tree_init(&lli->lli_write_tree);
997                 init_rwsem(&lli->lli_glimpse_sem);
998                 lli->lli_glimpse_time = ktime_set(0, 0);
999                 INIT_LIST_HEAD(&lli->lli_agl_list);
1000                 lli->lli_agl_index = 0;
1001                 lli->lli_async_rc = 0;
1002                 spin_lock_init(&lli->lli_heat_lock);
1003                 obd_heat_clear(lli->lli_heat_instances, OBD_HEAT_COUNT);
1004                 lli->lli_heat_flags = 0;
1005                 mutex_init(&lli->lli_pcc_lock);
1006                 lli->lli_pcc_state = PCC_STATE_FL_NONE;
1007                 lli->lli_pcc_inode = NULL;
1008                 lli->lli_pcc_dsflags = PCC_DATASET_INVALID;
1009                 lli->lli_pcc_generation = 0;
1010                 mutex_init(&lli->lli_group_mutex);
1011                 lli->lli_group_users = 0;
1012                 lli->lli_group_gid = 0;
1013         }
1014         mutex_init(&lli->lli_layout_mutex);
1015         memset(lli->lli_jobid, 0, sizeof(lli->lli_jobid));
1016 }
1017
1018 #define MAX_STRING_SIZE 128
1019
1020 #ifndef HAVE_SUPER_SETUP_BDI_NAME
1021
1022 #define LSI_BDI_INITIALIZED     0x00400000
1023
1024 #ifndef HAVE_BDI_CAP_MAP_COPY
1025 # define BDI_CAP_MAP_COPY       0
1026 #endif
1027
1028 static int super_setup_bdi_name(struct super_block *sb, char *fmt, ...)
1029 {
1030         struct  lustre_sb_info *lsi = s2lsi(sb);
1031         char buf[MAX_STRING_SIZE];
1032         va_list args;
1033         int err;
1034
1035         err = bdi_init(&lsi->lsi_bdi);
1036         if (err)
1037                 return err;
1038
1039         lsi->lsi_flags |= LSI_BDI_INITIALIZED;
1040         lsi->lsi_bdi.capabilities = BDI_CAP_MAP_COPY;
1041         lsi->lsi_bdi.name = "lustre";
1042         va_start(args, fmt);
1043         vsnprintf(buf, MAX_STRING_SIZE, fmt, args);
1044         va_end(args);
1045         err = bdi_register(&lsi->lsi_bdi, NULL, "%s", buf);
1046         va_end(args);
1047         if (!err)
1048                 sb->s_bdi = &lsi->lsi_bdi;
1049
1050         return err;
1051 }
1052 #endif /* !HAVE_SUPER_SETUP_BDI_NAME */
1053
1054 int ll_fill_super(struct super_block *sb)
1055 {
1056         struct  lustre_profile *lprof = NULL;
1057         struct  lustre_sb_info *lsi = s2lsi(sb);
1058         struct  ll_sb_info *sbi = NULL;
1059         char    *dt = NULL, *md = NULL;
1060         char    *profilenm = get_profile_name(sb);
1061         struct config_llog_instance *cfg;
1062         /* %p for void* in printf needs 16+2 characters: 0xffffffffffffffff */
1063         const int instlen = 16 + 2;
1064         unsigned long cfg_instance = ll_get_cfg_instance(sb);
1065         char name[MAX_STRING_SIZE];
1066         int md_len = 0;
1067         int dt_len = 0;
1068         uuid_t uuid;
1069         char *ptr;
1070         int len;
1071         int err;
1072
1073         ENTRY;
1074         /* for ASLR, to map between cfg_instance and hashed ptr */
1075         CDEBUG(D_VFSTRACE, "VFS Op: cfg_instance %s-%016lx (sb %p)\n",
1076                profilenm, cfg_instance, sb);
1077
1078         try_module_get(THIS_MODULE);
1079
1080         OBD_ALLOC_PTR(cfg);
1081         if (cfg == NULL)
1082                 GOTO(out_free_cfg, err = -ENOMEM);
1083
1084         /* client additional sb info */
1085         lsi->lsi_llsbi = sbi = ll_init_sbi();
1086         if (IS_ERR(sbi))
1087                 GOTO(out_free_cfg, err = PTR_ERR(sbi));
1088
1089         err = ll_options(lsi->lsi_lmd->lmd_opts, sbi);
1090         if (err)
1091                 GOTO(out_free_cfg, err);
1092
1093         /* kernel >= 2.6.38 store dentry operations in sb->s_d_op. */
1094         sb->s_d_op = &ll_d_ops;
1095
1096         /* UUID handling */
1097         generate_random_uuid(uuid.b);
1098         snprintf(sbi->ll_sb_uuid.uuid, UUID_SIZE, "%pU", uuid.b);
1099
1100         CDEBUG(D_CONFIG, "llite sb uuid: %s\n", sbi->ll_sb_uuid.uuid);
1101
1102         /* Get fsname */
1103         len = strlen(profilenm);
1104         ptr = strrchr(profilenm, '-');
1105         if (ptr && (strcmp(ptr, "-client") == 0))
1106                 len -= 7;
1107
1108         if (len > LUSTRE_MAXFSNAME) {
1109                 if (unlikely(len >= MAX_STRING_SIZE))
1110                         len = MAX_STRING_SIZE - 1;
1111                 strncpy(name, profilenm, len);
1112                 name[len] = '\0';
1113                 err = -ENAMETOOLONG;
1114                 CERROR("%s: fsname longer than %u characters: rc = %d\n",
1115                        name, LUSTRE_MAXFSNAME, err);
1116                 GOTO(out_free_cfg, err);
1117         }
1118         strncpy(sbi->ll_fsname, profilenm, len);
1119         sbi->ll_fsname[len] = '\0';
1120
1121         /* Mount info */
1122         snprintf(name, sizeof(name), "%.*s-%016lx", len,
1123                  profilenm, cfg_instance);
1124
1125         err = super_setup_bdi_name(sb, "%s", name);
1126         if (err)
1127                 GOTO(out_free_cfg, err);
1128
1129         /* Call ll_debugfs_register_super() before lustre_process_log()
1130          * so that "llite.*.*" params can be processed correctly.
1131          */
1132         err = ll_debugfs_register_super(sb, name);
1133         if (err < 0) {
1134                 CERROR("%s: could not register mountpoint in llite: rc = %d\n",
1135                        sbi->ll_fsname, err);
1136                 err = 0;
1137         }
1138
1139         /* The cfg_instance is a value unique to this super, in case some
1140          * joker tries to mount the same fs at two mount points.
1141          */
1142         cfg->cfg_instance = cfg_instance;
1143         cfg->cfg_uuid = lsi->lsi_llsbi->ll_sb_uuid;
1144         cfg->cfg_callback = class_config_llog_handler;
1145         cfg->cfg_sub_clds = CONFIG_SUB_CLIENT;
1146         /* set up client obds */
1147         err = lustre_process_log(sb, profilenm, cfg);
1148         if (err < 0)
1149                 GOTO(out_debugfs, err);
1150
1151         /* Profile set with LCFG_MOUNTOPT so we can find our mdc and osc obds */
1152         lprof = class_get_profile(profilenm);
1153         if (lprof == NULL) {
1154                 LCONSOLE_ERROR_MSG(0x156, "The client profile '%s' could not be"
1155                                    " read from the MGS.  Does that filesystem "
1156                                    "exist?\n", profilenm);
1157                 GOTO(out_debugfs, err = -EINVAL);
1158         }
1159         CDEBUG(D_CONFIG, "Found profile %s: mdc=%s osc=%s\n", profilenm,
1160                lprof->lp_md, lprof->lp_dt);
1161
1162         dt_len = strlen(lprof->lp_dt) + instlen + 2;
1163         OBD_ALLOC(dt, dt_len);
1164         if (!dt)
1165                 GOTO(out_profile, err = -ENOMEM);
1166         snprintf(dt, dt_len - 1, "%s-%016lx", lprof->lp_dt, cfg_instance);
1167
1168         md_len = strlen(lprof->lp_md) + instlen + 2;
1169         OBD_ALLOC(md, md_len);
1170         if (!md)
1171                 GOTO(out_free_dt, err = -ENOMEM);
1172         snprintf(md, md_len - 1, "%s-%016lx", lprof->lp_md, cfg_instance);
1173
1174         /* connections, registrations, sb setup */
1175         err = client_common_fill_super(sb, md, dt);
1176         if (err < 0)
1177                 GOTO(out_free_md, err);
1178
1179         sbi->ll_client_common_fill_super_succeeded = 1;
1180
1181 out_free_md:
1182         if (md)
1183                 OBD_FREE(md, md_len);
1184 out_free_dt:
1185         if (dt)
1186                 OBD_FREE(dt, dt_len);
1187 out_profile:
1188         if (lprof)
1189                 class_put_profile(lprof);
1190 out_debugfs:
1191         if (err < 0)
1192                 ll_debugfs_unregister_super(sb);
1193 out_free_cfg:
1194         if (cfg)
1195                 OBD_FREE_PTR(cfg);
1196
1197         if (err)
1198                 ll_put_super(sb);
1199         else if (sbi->ll_flags & LL_SBI_VERBOSE)
1200                 LCONSOLE_WARN("Mounted %s\n", profilenm);
1201         RETURN(err);
1202 } /* ll_fill_super */
1203
1204 void ll_put_super(struct super_block *sb)
1205 {
1206         struct config_llog_instance cfg, params_cfg;
1207         struct obd_device *obd;
1208         struct lustre_sb_info *lsi = s2lsi(sb);
1209         struct ll_sb_info *sbi = ll_s2sbi(sb);
1210         char *profilenm = get_profile_name(sb);
1211         unsigned long cfg_instance = ll_get_cfg_instance(sb);
1212         long ccc_count;
1213         int next, force = 1, rc = 0;
1214         ENTRY;
1215
1216         if (IS_ERR(sbi))
1217                 GOTO(out_no_sbi, 0);
1218
1219         /* Should replace instance_id with something better for ASLR */
1220         CDEBUG(D_VFSTRACE, "VFS Op: cfg_instance %s-%016lx (sb %p)\n",
1221                profilenm, cfg_instance, sb);
1222
1223         cfg.cfg_instance = cfg_instance;
1224         lustre_end_log(sb, profilenm, &cfg);
1225
1226         params_cfg.cfg_instance = cfg_instance;
1227         lustre_end_log(sb, PARAMS_FILENAME, &params_cfg);
1228
1229         if (sbi->ll_md_exp) {
1230                 obd = class_exp2obd(sbi->ll_md_exp);
1231                 if (obd)
1232                         force = obd->obd_force;
1233         }
1234
1235         /* Wait for unstable pages to be committed to stable storage */
1236         if (force == 0) {
1237                 struct l_wait_info lwi = LWI_INTR(LWI_ON_SIGNAL_NOOP, NULL);
1238                 rc = l_wait_event(sbi->ll_cache->ccc_unstable_waitq,
1239                                   atomic_long_read(&sbi->ll_cache->ccc_unstable_nr) == 0,
1240                                   &lwi);
1241         }
1242
1243         ccc_count = atomic_long_read(&sbi->ll_cache->ccc_unstable_nr);
1244         if (force == 0 && rc != -EINTR)
1245                 LASSERTF(ccc_count == 0, "count: %li\n", ccc_count);
1246
1247         /* We need to set force before the lov_disconnect in
1248          * lustre_common_put_super, since l_d cleans up osc's as well.
1249          */
1250         if (force) {
1251                 next = 0;
1252                 while ((obd = class_devices_in_group(&sbi->ll_sb_uuid,
1253                                                      &next)) != NULL) {
1254                         obd->obd_force = force;
1255                 }
1256         }
1257
1258         if (sbi->ll_client_common_fill_super_succeeded) {
1259                 /* Only if client_common_fill_super succeeded */
1260                 client_common_put_super(sb);
1261         }
1262
1263         next = 0;
1264         while ((obd = class_devices_in_group(&sbi->ll_sb_uuid, &next)))
1265                 class_manual_cleanup(obd);
1266
1267         if (sbi->ll_flags & LL_SBI_VERBOSE)
1268                 LCONSOLE_WARN("Unmounted %s\n", profilenm ? profilenm : "");
1269
1270         if (profilenm)
1271                 class_del_profile(profilenm);
1272
1273 #ifndef HAVE_SUPER_SETUP_BDI_NAME
1274         if (lsi->lsi_flags & LSI_BDI_INITIALIZED) {
1275                 bdi_destroy(&lsi->lsi_bdi);
1276                 lsi->lsi_flags &= ~LSI_BDI_INITIALIZED;
1277         }
1278 #endif
1279
1280         ll_free_sbi(sb);
1281         lsi->lsi_llsbi = NULL;
1282 out_no_sbi:
1283         lustre_common_put_super(sb);
1284
1285         cl_env_cache_purge(~0);
1286
1287         module_put(THIS_MODULE);
1288
1289         EXIT;
1290 } /* client_put_super */
1291
1292 struct inode *ll_inode_from_resource_lock(struct ldlm_lock *lock)
1293 {
1294         struct inode *inode = NULL;
1295
1296         /* NOTE: we depend on atomic igrab() -bzzz */
1297         lock_res_and_lock(lock);
1298         if (lock->l_resource->lr_lvb_inode) {
1299                 struct ll_inode_info * lli;
1300                 lli = ll_i2info(lock->l_resource->lr_lvb_inode);
1301                 if (lli->lli_inode_magic == LLI_INODE_MAGIC) {
1302                         inode = igrab(lock->l_resource->lr_lvb_inode);
1303                 } else {
1304                         inode = lock->l_resource->lr_lvb_inode;
1305                         LDLM_DEBUG_LIMIT(inode->i_state & I_FREEING ?  D_INFO :
1306                                          D_WARNING, lock, "lr_lvb_inode %p is "
1307                                          "bogus: magic %08x",
1308                                          lock->l_resource->lr_lvb_inode,
1309                                          lli->lli_inode_magic);
1310                         inode = NULL;
1311                 }
1312         }
1313         unlock_res_and_lock(lock);
1314         return inode;
1315 }
1316
1317 void ll_dir_clear_lsm_md(struct inode *inode)
1318 {
1319         struct ll_inode_info *lli = ll_i2info(inode);
1320
1321         LASSERT(S_ISDIR(inode->i_mode));
1322
1323         if (lli->lli_lsm_md) {
1324                 lmv_free_memmd(lli->lli_lsm_md);
1325                 lli->lli_lsm_md = NULL;
1326         }
1327
1328         if (lli->lli_default_lsm_md) {
1329                 lmv_free_memmd(lli->lli_default_lsm_md);
1330                 lli->lli_default_lsm_md = NULL;
1331         }
1332 }
1333
1334 static struct inode *ll_iget_anon_dir(struct super_block *sb,
1335                                       const struct lu_fid *fid,
1336                                       struct lustre_md *md)
1337 {
1338         struct ll_sb_info       *sbi = ll_s2sbi(sb);
1339         struct mdt_body         *body = md->body;
1340         struct inode            *inode;
1341         ino_t                   ino;
1342         ENTRY;
1343
1344         ino = cl_fid_build_ino(fid, sbi->ll_flags & LL_SBI_32BIT_API);
1345         inode = iget_locked(sb, ino);
1346         if (inode == NULL) {
1347                 CERROR("%s: failed get simple inode "DFID": rc = -ENOENT\n",
1348                        sbi->ll_fsname, PFID(fid));
1349                 RETURN(ERR_PTR(-ENOENT));
1350         }
1351
1352         if (inode->i_state & I_NEW) {
1353                 struct ll_inode_info *lli = ll_i2info(inode);
1354                 struct lmv_stripe_md *lsm = md->lmv;
1355
1356                 inode->i_mode = (inode->i_mode & ~S_IFMT) |
1357                                 (body->mbo_mode & S_IFMT);
1358                 LASSERTF(S_ISDIR(inode->i_mode), "Not slave inode "DFID"\n",
1359                          PFID(fid));
1360
1361                 inode->i_mtime.tv_sec = 0;
1362                 inode->i_atime.tv_sec = 0;
1363                 inode->i_ctime.tv_sec = 0;
1364                 inode->i_rdev = 0;
1365
1366 #ifdef HAVE_BACKING_DEV_INFO
1367                 /* initializing backing dev info. */
1368                 inode->i_mapping->backing_dev_info =
1369                                                 &s2lsi(inode->i_sb)->lsi_bdi;
1370 #endif
1371                 inode->i_op = &ll_dir_inode_operations;
1372                 inode->i_fop = &ll_dir_operations;
1373                 lli->lli_fid = *fid;
1374                 ll_lli_init(lli);
1375
1376                 LASSERT(lsm != NULL);
1377                 /* master object FID */
1378                 lli->lli_pfid = body->mbo_fid1;
1379                 CDEBUG(D_INODE, "lli %p slave "DFID" master "DFID"\n",
1380                        lli, PFID(fid), PFID(&lli->lli_pfid));
1381                 unlock_new_inode(inode);
1382         }
1383
1384         RETURN(inode);
1385 }
1386
1387 static int ll_init_lsm_md(struct inode *inode, struct lustre_md *md)
1388 {
1389         struct lu_fid *fid;
1390         struct lmv_stripe_md *lsm = md->lmv;
1391         struct ll_inode_info *lli = ll_i2info(inode);
1392         int i;
1393
1394         LASSERT(lsm != NULL);
1395
1396         CDEBUG(D_INODE, "%s: "DFID" set dir layout:\n",
1397                ll_i2sbi(inode)->ll_fsname, PFID(&lli->lli_fid));
1398         lsm_md_dump(D_INODE, lsm);
1399
1400         if (!lmv_dir_striped(lsm))
1401                 goto out;
1402
1403         /* XXX sigh, this lsm_root initialization should be in
1404          * LMV layer, but it needs ll_iget right now, so we
1405          * put this here right now. */
1406         for (i = 0; i < lsm->lsm_md_stripe_count; i++) {
1407                 fid = &lsm->lsm_md_oinfo[i].lmo_fid;
1408                 LASSERT(lsm->lsm_md_oinfo[i].lmo_root == NULL);
1409
1410                 if (!fid_is_sane(fid))
1411                         continue;
1412
1413                 /* Unfortunately ll_iget will call ll_update_inode,
1414                  * where the initialization of slave inode is slightly
1415                  * different, so it reset lsm_md to NULL to avoid
1416                  * initializing lsm for slave inode. */
1417                 lsm->lsm_md_oinfo[i].lmo_root =
1418                                 ll_iget_anon_dir(inode->i_sb, fid, md);
1419                 if (IS_ERR(lsm->lsm_md_oinfo[i].lmo_root)) {
1420                         int rc = PTR_ERR(lsm->lsm_md_oinfo[i].lmo_root);
1421
1422                         lsm->lsm_md_oinfo[i].lmo_root = NULL;
1423                         while (i-- > 0) {
1424                                 iput(lsm->lsm_md_oinfo[i].lmo_root);
1425                                 lsm->lsm_md_oinfo[i].lmo_root = NULL;
1426                         }
1427                         return rc;
1428                 }
1429         }
1430 out:
1431         lli->lli_lsm_md = lsm;
1432
1433         return 0;
1434 }
1435
1436 static void ll_update_default_lsm_md(struct inode *inode, struct lustre_md *md)
1437 {
1438         struct ll_inode_info *lli = ll_i2info(inode);
1439
1440         if (!md->default_lmv) {
1441                 /* clear default lsm */
1442                 if (lli->lli_default_lsm_md) {
1443                         down_write(&lli->lli_lsm_sem);
1444                         if (lli->lli_default_lsm_md) {
1445                                 lmv_free_memmd(lli->lli_default_lsm_md);
1446                                 lli->lli_default_lsm_md = NULL;
1447                         }
1448                         up_write(&lli->lli_lsm_sem);
1449                 }
1450         } else if (lli->lli_default_lsm_md) {
1451                 /* update default lsm if it changes */
1452                 down_read(&lli->lli_lsm_sem);
1453                 if (lli->lli_default_lsm_md &&
1454                     !lsm_md_eq(lli->lli_default_lsm_md, md->default_lmv)) {
1455                         up_read(&lli->lli_lsm_sem);
1456                         down_write(&lli->lli_lsm_sem);
1457                         if (lli->lli_default_lsm_md)
1458                                 lmv_free_memmd(lli->lli_default_lsm_md);
1459                         lli->lli_default_lsm_md = md->default_lmv;
1460                         lsm_md_dump(D_INODE, md->default_lmv);
1461                         md->default_lmv = NULL;
1462                         up_write(&lli->lli_lsm_sem);
1463                 } else {
1464                         up_read(&lli->lli_lsm_sem);
1465                 }
1466         } else {
1467                 /* init default lsm */
1468                 down_write(&lli->lli_lsm_sem);
1469                 lli->lli_default_lsm_md = md->default_lmv;
1470                 lsm_md_dump(D_INODE, md->default_lmv);
1471                 md->default_lmv = NULL;
1472                 up_write(&lli->lli_lsm_sem);
1473         }
1474 }
1475
1476 static int ll_update_lsm_md(struct inode *inode, struct lustre_md *md)
1477 {
1478         struct ll_inode_info *lli = ll_i2info(inode);
1479         struct lmv_stripe_md *lsm = md->lmv;
1480         int rc = 0;
1481
1482         ENTRY;
1483
1484         LASSERT(S_ISDIR(inode->i_mode));
1485         CDEBUG(D_INODE, "update lsm %p of "DFID"\n", lli->lli_lsm_md,
1486                PFID(ll_inode2fid(inode)));
1487
1488         /* update default LMV */
1489         if (md->default_lmv)
1490                 ll_update_default_lsm_md(inode, md);
1491
1492         /*
1493          * no striped information from request, lustre_md from req does not
1494          * include stripeEA, see ll_md_setattr()
1495          */
1496         if (!lsm)
1497                 RETURN(0);
1498
1499         /*
1500          * normally dir layout doesn't change, only take read lock to check
1501          * that to avoid blocking other MD operations.
1502          */
1503         if (lli->lli_lsm_md)
1504                 down_read(&lli->lli_lsm_sem);
1505         else
1506                 down_write(&lli->lli_lsm_sem);
1507
1508         /*
1509          * if dir layout mismatch, check whether version is increased, which
1510          * means layout is changed, this happens in dir migration and lfsck.
1511          *
1512          * foreign LMV should not change.
1513          */
1514         if (lli->lli_lsm_md && !lsm_md_eq(lli->lli_lsm_md, lsm)) {
1515                 if (lmv_dir_striped(lli->lli_lsm_md) &&
1516                     lsm->lsm_md_layout_version <=
1517                     lli->lli_lsm_md->lsm_md_layout_version) {
1518                         CERROR("%s: "DFID" dir layout mismatch:\n",
1519                                ll_i2sbi(inode)->ll_fsname,
1520                                PFID(&lli->lli_fid));
1521                         lsm_md_dump(D_ERROR, lli->lli_lsm_md);
1522                         lsm_md_dump(D_ERROR, lsm);
1523                         GOTO(unlock, rc = -EINVAL);
1524                 }
1525
1526                 /* layout changed, switch to write lock */
1527                 up_read(&lli->lli_lsm_sem);
1528                 down_write(&lli->lli_lsm_sem);
1529                 ll_dir_clear_lsm_md(inode);
1530         }
1531
1532         /* set directory layout */
1533         if (!lli->lli_lsm_md) {
1534                 struct cl_attr  *attr;
1535
1536                 rc = ll_init_lsm_md(inode, md);
1537                 up_write(&lli->lli_lsm_sem);
1538                 if (rc != 0)
1539                         RETURN(rc);
1540
1541                 /* set md->lmv to NULL, so the following free lustre_md
1542                  * will not free this lsm */
1543                 md->lmv = NULL;
1544
1545                 /*
1546                  * md_merge_attr() may take long, since lsm is already set,
1547                  * switch to read lock.
1548                  */
1549                 down_read(&lli->lli_lsm_sem);
1550
1551                 if (!lmv_dir_striped(lli->lli_lsm_md))
1552                         GOTO(unlock, rc);
1553
1554                 OBD_ALLOC_PTR(attr);
1555                 if (attr == NULL)
1556                         GOTO(unlock, rc = -ENOMEM);
1557
1558                 /* validate the lsm */
1559                 rc = md_merge_attr(ll_i2mdexp(inode), lsm, attr,
1560                                    ll_md_blocking_ast);
1561                 if (rc != 0) {
1562                         OBD_FREE_PTR(attr);
1563                         GOTO(unlock, rc);
1564                 }
1565
1566                 if (md->body->mbo_valid & OBD_MD_FLNLINK)
1567                         md->body->mbo_nlink = attr->cat_nlink;
1568                 if (md->body->mbo_valid & OBD_MD_FLSIZE)
1569                         md->body->mbo_size = attr->cat_size;
1570                 if (md->body->mbo_valid & OBD_MD_FLATIME)
1571                         md->body->mbo_atime = attr->cat_atime;
1572                 if (md->body->mbo_valid & OBD_MD_FLCTIME)
1573                         md->body->mbo_ctime = attr->cat_ctime;
1574                 if (md->body->mbo_valid & OBD_MD_FLMTIME)
1575                         md->body->mbo_mtime = attr->cat_mtime;
1576
1577                 OBD_FREE_PTR(attr);
1578         }
1579 unlock:
1580         up_read(&lli->lli_lsm_sem);
1581
1582         RETURN(rc);
1583 }
1584
1585 void ll_clear_inode(struct inode *inode)
1586 {
1587         struct ll_inode_info *lli = ll_i2info(inode);
1588         struct ll_sb_info *sbi = ll_i2sbi(inode);
1589
1590         ENTRY;
1591
1592         CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID"(%p)\n",
1593                PFID(ll_inode2fid(inode)), inode);
1594
1595         if (S_ISDIR(inode->i_mode)) {
1596                 /* these should have been cleared in ll_file_release */
1597                 LASSERT(lli->lli_opendir_key == NULL);
1598                 LASSERT(lli->lli_sai == NULL);
1599                 LASSERT(lli->lli_opendir_pid == 0);
1600         } else {
1601                 pcc_inode_free(inode);
1602         }
1603
1604         md_null_inode(sbi->ll_md_exp, ll_inode2fid(inode));
1605
1606         LASSERT(!lli->lli_open_fd_write_count);
1607         LASSERT(!lli->lli_open_fd_read_count);
1608         LASSERT(!lli->lli_open_fd_exec_count);
1609
1610         if (lli->lli_mds_write_och)
1611                 ll_md_real_close(inode, FMODE_WRITE);
1612         if (lli->lli_mds_exec_och)
1613                 ll_md_real_close(inode, FMODE_EXEC);
1614         if (lli->lli_mds_read_och)
1615                 ll_md_real_close(inode, FMODE_READ);
1616
1617         if (S_ISLNK(inode->i_mode) && lli->lli_symlink_name) {
1618                 OBD_FREE(lli->lli_symlink_name,
1619                          strlen(lli->lli_symlink_name) + 1);
1620                 lli->lli_symlink_name = NULL;
1621         }
1622
1623         ll_xattr_cache_destroy(inode);
1624
1625 #ifdef CONFIG_LUSTRE_FS_POSIX_ACL
1626         forget_all_cached_acls(inode);
1627         if (lli->lli_posix_acl) {
1628                 posix_acl_release(lli->lli_posix_acl);
1629                 lli->lli_posix_acl = NULL;
1630         }
1631 #endif
1632         lli->lli_inode_magic = LLI_INODE_DEAD;
1633
1634         if (S_ISDIR(inode->i_mode))
1635                 ll_dir_clear_lsm_md(inode);
1636         else if (S_ISREG(inode->i_mode) && !is_bad_inode(inode))
1637                 LASSERT(list_empty(&lli->lli_agl_list));
1638
1639         /*
1640          * XXX This has to be done before lsm is freed below, because
1641          * cl_object still uses inode lsm.
1642          */
1643         cl_inode_fini(inode);
1644
1645         EXIT;
1646 }
1647
1648 static int ll_md_setattr(struct dentry *dentry, struct md_op_data *op_data)
1649 {
1650         struct lustre_md md;
1651         struct inode *inode = dentry->d_inode;
1652         struct ll_sb_info *sbi = ll_i2sbi(inode);
1653         struct ptlrpc_request *request = NULL;
1654         int rc, ia_valid;
1655         ENTRY;
1656
1657         op_data = ll_prep_md_op_data(op_data, inode, NULL, NULL, 0, 0,
1658                                      LUSTRE_OPC_ANY, NULL);
1659         if (IS_ERR(op_data))
1660                 RETURN(PTR_ERR(op_data));
1661
1662         rc = md_setattr(sbi->ll_md_exp, op_data, NULL, 0, &request);
1663         if (rc) {
1664                 ptlrpc_req_finished(request);
1665                 if (rc == -ENOENT) {
1666                         clear_nlink(inode);
1667                         /* Unlinked special device node? Or just a race?
1668                          * Pretend we done everything. */
1669                         if (!S_ISREG(inode->i_mode) &&
1670                             !S_ISDIR(inode->i_mode)) {
1671                                 ia_valid = op_data->op_attr.ia_valid;
1672                                 op_data->op_attr.ia_valid &= ~TIMES_SET_FLAGS;
1673                                 rc = simple_setattr(dentry, &op_data->op_attr);
1674                                 op_data->op_attr.ia_valid = ia_valid;
1675                         }
1676                 } else if (rc != -EPERM && rc != -EACCES && rc != -ETXTBSY) {
1677                         CERROR("md_setattr fails: rc = %d\n", rc);
1678                 }
1679                 RETURN(rc);
1680         }
1681
1682         rc = md_get_lustre_md(sbi->ll_md_exp, request, sbi->ll_dt_exp,
1683                               sbi->ll_md_exp, &md);
1684         if (rc) {
1685                 ptlrpc_req_finished(request);
1686                 RETURN(rc);
1687         }
1688
1689         ia_valid = op_data->op_attr.ia_valid;
1690         /* inode size will be in ll_setattr_ost, can't do it now since dirty
1691          * cache is not cleared yet. */
1692         op_data->op_attr.ia_valid &= ~(TIMES_SET_FLAGS | ATTR_SIZE);
1693         if (S_ISREG(inode->i_mode))
1694                 inode_lock(inode);
1695         rc = simple_setattr(dentry, &op_data->op_attr);
1696         if (S_ISREG(inode->i_mode))
1697                 inode_unlock(inode);
1698         op_data->op_attr.ia_valid = ia_valid;
1699
1700         rc = ll_update_inode(inode, &md);
1701         ptlrpc_req_finished(request);
1702
1703         RETURN(rc);
1704 }
1705
1706 /* If this inode has objects allocated to it (lsm != NULL), then the OST
1707  * object(s) determine the file size and mtime.  Otherwise, the MDS will
1708  * keep these values until such a time that objects are allocated for it.
1709  * We do the MDS operations first, as it is checking permissions for us.
1710  * We don't to the MDS RPC if there is nothing that we want to store there,
1711  * otherwise there is no harm in updating mtime/atime on the MDS if we are
1712  * going to do an RPC anyways.
1713  *
1714  * If we are doing a truncate, we will send the mtime and ctime updates
1715  * to the OST with the punch RPC, otherwise we do an explicit setattr RPC.
1716  * I don't believe it is possible to get e.g. ATTR_MTIME_SET and ATTR_SIZE
1717  * at the same time.
1718  *
1719  * In case of HSMimport, we only set attr on MDS.
1720  */
1721 int ll_setattr_raw(struct dentry *dentry, struct iattr *attr,
1722                    enum op_xvalid xvalid, bool hsm_import)
1723 {
1724         struct inode *inode = dentry->d_inode;
1725         struct ll_inode_info *lli = ll_i2info(inode);
1726         struct md_op_data *op_data = NULL;
1727         ktime_t kstart = ktime_get();
1728         int rc = 0;
1729
1730         ENTRY;
1731
1732         CDEBUG(D_VFSTRACE, "%s: setattr inode "DFID"(%p) from %llu to %llu, "
1733                "valid %x, hsm_import %d\n",
1734                ll_i2sbi(inode)->ll_fsname, PFID(&lli->lli_fid),
1735                inode, i_size_read(inode), attr->ia_size, attr->ia_valid,
1736                hsm_import);
1737
1738         if (attr->ia_valid & ATTR_SIZE) {
1739                 /* Check new size against VFS/VM file size limit and rlimit */
1740                 rc = inode_newsize_ok(inode, attr->ia_size);
1741                 if (rc)
1742                         RETURN(rc);
1743
1744                 /* The maximum Lustre file size is variable, based on the
1745                  * OST maximum object size and number of stripes.  This
1746                  * needs another check in addition to the VFS check above. */
1747                 if (attr->ia_size > ll_file_maxbytes(inode)) {
1748                         CDEBUG(D_INODE,"file "DFID" too large %llu > %llu\n",
1749                                PFID(&lli->lli_fid), attr->ia_size,
1750                                ll_file_maxbytes(inode));
1751                         RETURN(-EFBIG);
1752                 }
1753
1754                 attr->ia_valid |= ATTR_MTIME | ATTR_CTIME;
1755         }
1756
1757         /* POSIX: check before ATTR_*TIME_SET set (from inode_change_ok) */
1758         if (attr->ia_valid & TIMES_SET_FLAGS) {
1759                 if ((!uid_eq(current_fsuid(), inode->i_uid)) &&
1760                     !cfs_capable(CFS_CAP_FOWNER))
1761                         RETURN(-EPERM);
1762         }
1763
1764         /* We mark all of the fields "set" so MDS/OST does not re-set them */
1765         if (!(xvalid & OP_XVALID_CTIME_SET) &&
1766              (attr->ia_valid & ATTR_CTIME)) {
1767                 attr->ia_ctime = current_time(inode);
1768                 xvalid |= OP_XVALID_CTIME_SET;
1769         }
1770         if (!(attr->ia_valid & ATTR_ATIME_SET) &&
1771             (attr->ia_valid & ATTR_ATIME)) {
1772                 attr->ia_atime = current_time(inode);
1773                 attr->ia_valid |= ATTR_ATIME_SET;
1774         }
1775         if (!(attr->ia_valid & ATTR_MTIME_SET) &&
1776             (attr->ia_valid & ATTR_MTIME)) {
1777                 attr->ia_mtime = current_time(inode);
1778                 attr->ia_valid |= ATTR_MTIME_SET;
1779         }
1780
1781         if (attr->ia_valid & (ATTR_MTIME | ATTR_CTIME))
1782                 CDEBUG(D_INODE, "setting mtime %lld, ctime %lld, now = %lld\n",
1783                        (s64)attr->ia_mtime.tv_sec, (s64)attr->ia_ctime.tv_sec,
1784                        ktime_get_real_seconds());
1785
1786         if (S_ISREG(inode->i_mode)) {
1787                 if (attr->ia_valid & ATTR_SIZE)
1788                         inode_dio_write_done(inode);
1789                 inode_unlock(inode);
1790         }
1791
1792         /* We always do an MDS RPC, even if we're only changing the size;
1793          * only the MDS knows whether truncate() should fail with -ETXTBUSY */
1794
1795         OBD_ALLOC_PTR(op_data);
1796         if (op_data == NULL)
1797                 GOTO(out, rc = -ENOMEM);
1798
1799         if (!hsm_import && attr->ia_valid & ATTR_SIZE) {
1800                 /* If we are changing file size, file content is
1801                  * modified, flag it.
1802                  */
1803                 xvalid |= OP_XVALID_OWNEROVERRIDE;
1804                 op_data->op_bias |= MDS_DATA_MODIFIED;
1805                 ll_file_clear_flag(lli, LLIF_DATA_MODIFIED);
1806         }
1807
1808         if (attr->ia_valid & ATTR_FILE) {
1809                 struct ll_file_data *fd = LUSTRE_FPRIVATE(attr->ia_file);
1810
1811                 if (fd->fd_lease_och)
1812                         op_data->op_bias |= MDS_TRUNC_KEEP_LEASE;
1813         }
1814
1815         op_data->op_attr = *attr;
1816         op_data->op_xvalid = xvalid;
1817
1818         rc = ll_md_setattr(dentry, op_data);
1819         if (rc)
1820                 GOTO(out, rc);
1821
1822         if (!S_ISREG(inode->i_mode) || hsm_import)
1823                 GOTO(out, rc = 0);
1824
1825         if (attr->ia_valid & (ATTR_SIZE | ATTR_ATIME | ATTR_ATIME_SET |
1826                               ATTR_MTIME | ATTR_MTIME_SET | ATTR_CTIME) ||
1827             xvalid & OP_XVALID_CTIME_SET) {
1828                 bool cached = false;
1829
1830                 rc = pcc_inode_setattr(inode, attr, &cached);
1831                 if (cached) {
1832                         if (rc) {
1833                                 CERROR("%s: PCC inode "DFID" setattr failed: "
1834                                        "rc = %d\n",
1835                                        ll_i2sbi(inode)->ll_fsname,
1836                                        PFID(&lli->lli_fid), rc);
1837                                 GOTO(out, rc);
1838                         }
1839                 } else {
1840                         /* For truncate and utimes sending attributes to OSTs,
1841                          * setting mtime/atime to the past will be performed
1842                          * under PW [0:EOF] extent lock (new_size:EOF for
1843                          * truncate). It may seem excessive to send mtime/atime
1844                          * updates to OSTs when not setting times to past, but
1845                          * it is necessary due to possible time
1846                          * de-synchronization between MDT inode and OST objects
1847                          */
1848                         rc = cl_setattr_ost(lli->lli_clob, attr, xvalid, 0);
1849                 }
1850         }
1851
1852         /* If the file was restored, it needs to set dirty flag.
1853          *
1854          * We've already sent MDS_DATA_MODIFIED flag in
1855          * ll_md_setattr() for truncate. However, the MDT refuses to
1856          * set the HS_DIRTY flag on released files, so we have to set
1857          * it again if the file has been restored. Please check how
1858          * LLIF_DATA_MODIFIED is set in vvp_io_setattr_fini().
1859          *
1860          * Please notice that if the file is not released, the previous
1861          * MDS_DATA_MODIFIED has taken effect and usually
1862          * LLIF_DATA_MODIFIED is not set(see vvp_io_setattr_fini()).
1863          * This way we can save an RPC for common open + trunc
1864          * operation. */
1865         if (ll_file_test_and_clear_flag(lli, LLIF_DATA_MODIFIED)) {
1866                 struct hsm_state_set hss = {
1867                         .hss_valid = HSS_SETMASK,
1868                         .hss_setmask = HS_DIRTY,
1869                 };
1870                 int rc2;
1871
1872                 rc2 = ll_hsm_state_set(inode, &hss);
1873                 /* truncate and write can happen at the same time, so that
1874                  * the file can be set modified even though the file is not
1875                  * restored from released state, and ll_hsm_state_set() is
1876                  * not applicable for the file, and rc2 < 0 is normal in this
1877                  * case. */
1878                 if (rc2 < 0)
1879                         CDEBUG(D_INFO, DFID "HSM set dirty failed: rc2 = %d\n",
1880                                PFID(ll_inode2fid(inode)), rc2);
1881         }
1882
1883         EXIT;
1884 out:
1885         if (op_data != NULL)
1886                 ll_finish_md_op_data(op_data);
1887
1888         if (S_ISREG(inode->i_mode)) {
1889                 inode_lock(inode);
1890                 if ((attr->ia_valid & ATTR_SIZE) && !hsm_import)
1891                         inode_dio_wait(inode);
1892                 /* Once we've got the i_mutex, it's safe to set the S_NOSEC
1893                  * flag.  ll_update_inode (called from ll_md_setattr), clears
1894                  * inode flags, so there is a gap where S_NOSEC is not set.
1895                  * This can cause a writer to take the i_mutex unnecessarily,
1896                  * but this is safe to do and should be rare. */
1897                 inode_has_no_xattr(inode);
1898         }
1899
1900         if (!rc)
1901                 ll_stats_ops_tally(ll_i2sbi(inode), attr->ia_valid & ATTR_SIZE ?
1902                                         LPROC_LL_TRUNC : LPROC_LL_SETATTR,
1903                                    ktime_us_delta(ktime_get(), kstart));
1904
1905         return rc;
1906 }
1907
1908 int ll_setattr(struct dentry *de, struct iattr *attr)
1909 {
1910         int mode = de->d_inode->i_mode;
1911         enum op_xvalid xvalid = 0;
1912
1913         if ((attr->ia_valid & (ATTR_CTIME|ATTR_SIZE|ATTR_MODE)) ==
1914                               (ATTR_CTIME|ATTR_SIZE|ATTR_MODE))
1915                 xvalid |= OP_XVALID_OWNEROVERRIDE;
1916
1917         if (((attr->ia_valid & (ATTR_MODE|ATTR_FORCE|ATTR_SIZE)) ==
1918                                (ATTR_SIZE|ATTR_MODE)) &&
1919             (((mode & S_ISUID) && !(attr->ia_mode & S_ISUID)) ||
1920              (((mode & (S_ISGID|S_IXGRP)) == (S_ISGID|S_IXGRP)) &&
1921               !(attr->ia_mode & S_ISGID))))
1922                 attr->ia_valid |= ATTR_FORCE;
1923
1924         if ((attr->ia_valid & ATTR_MODE) &&
1925             (mode & S_ISUID) &&
1926             !(attr->ia_mode & S_ISUID) &&
1927             !(attr->ia_valid & ATTR_KILL_SUID))
1928                 attr->ia_valid |= ATTR_KILL_SUID;
1929
1930         if ((attr->ia_valid & ATTR_MODE) &&
1931             ((mode & (S_ISGID|S_IXGRP)) == (S_ISGID|S_IXGRP)) &&
1932             !(attr->ia_mode & S_ISGID) &&
1933             !(attr->ia_valid & ATTR_KILL_SGID))
1934                 attr->ia_valid |= ATTR_KILL_SGID;
1935
1936         return ll_setattr_raw(de, attr, xvalid, false);
1937 }
1938
1939 int ll_statfs_internal(struct ll_sb_info *sbi, struct obd_statfs *osfs,
1940                        u32 flags)
1941 {
1942         struct obd_statfs obd_osfs = { 0 };
1943         time64_t max_age;
1944         int rc;
1945
1946         ENTRY;
1947         max_age = ktime_get_seconds() - sbi->ll_statfs_max_age;
1948
1949         if (sbi->ll_flags & LL_SBI_LAZYSTATFS)
1950                 flags |= OBD_STATFS_NODELAY;
1951
1952         rc = obd_statfs(NULL, sbi->ll_md_exp, osfs, max_age, flags);
1953         if (rc)
1954                 RETURN(rc);
1955
1956         osfs->os_type = LL_SUPER_MAGIC;
1957
1958         CDEBUG(D_SUPER, "MDC blocks %llu/%llu objects %llu/%llu\n",
1959               osfs->os_bavail, osfs->os_blocks, osfs->os_ffree, osfs->os_files);
1960
1961         if (osfs->os_state & OS_STATE_SUM)
1962                 GOTO(out, rc);
1963
1964         rc = obd_statfs(NULL, sbi->ll_dt_exp, &obd_osfs, max_age, flags);
1965         if (rc) /* Possibly a filesystem with no OSTs.  Report MDT totals. */
1966                 GOTO(out, rc = 0);
1967
1968         CDEBUG(D_SUPER, "OSC blocks %llu/%llu objects %llu/%llu\n",
1969                obd_osfs.os_bavail, obd_osfs.os_blocks, obd_osfs.os_ffree,
1970                obd_osfs.os_files);
1971
1972         osfs->os_bsize = obd_osfs.os_bsize;
1973         osfs->os_blocks = obd_osfs.os_blocks;
1974         osfs->os_bfree = obd_osfs.os_bfree;
1975         osfs->os_bavail = obd_osfs.os_bavail;
1976
1977         /* If we have _some_ OSTs, but don't have as many free objects on the
1978          * OSTs as inodes on the MDTs, reduce the reported number of inodes
1979          * to compensate, so that the "inodes in use" number is correct.
1980          * This should be kept in sync with lod_statfs() behaviour.
1981          */
1982         if (obd_osfs.os_files && obd_osfs.os_ffree < osfs->os_ffree) {
1983                 osfs->os_files = (osfs->os_files - osfs->os_ffree) +
1984                                  obd_osfs.os_ffree;
1985                 osfs->os_ffree = obd_osfs.os_ffree;
1986         }
1987
1988 out:
1989         RETURN(rc);
1990 }
1991
1992 int ll_statfs(struct dentry *de, struct kstatfs *sfs)
1993 {
1994         struct super_block *sb = de->d_sb;
1995         struct obd_statfs osfs;
1996         __u64 fsid = huge_encode_dev(sb->s_dev);
1997         ktime_t kstart = ktime_get();
1998         int rc;
1999
2000         CDEBUG(D_VFSTRACE, "VFS Op:sb=%s (%p)\n", sb->s_id, sb);
2001
2002         /* Some amount of caching on the client is allowed */
2003         rc = ll_statfs_internal(ll_s2sbi(sb), &osfs, OBD_STATFS_SUM);
2004         if (rc)
2005                 return rc;
2006
2007         statfs_unpack(sfs, &osfs);
2008
2009         /* We need to downshift for all 32-bit kernels, because we can't
2010          * tell if the kernel is being called via sys_statfs64() or not.
2011          * Stop before overflowing f_bsize - in which case it is better
2012          * to just risk EOVERFLOW if caller is using old sys_statfs(). */
2013         if (sizeof(long) < 8) {
2014                 while (osfs.os_blocks > ~0UL && sfs->f_bsize < 0x40000000) {
2015                         sfs->f_bsize <<= 1;
2016
2017                         osfs.os_blocks >>= 1;
2018                         osfs.os_bfree >>= 1;
2019                         osfs.os_bavail >>= 1;
2020                 }
2021         }
2022
2023         sfs->f_blocks = osfs.os_blocks;
2024         sfs->f_bfree = osfs.os_bfree;
2025         sfs->f_bavail = osfs.os_bavail;
2026         sfs->f_fsid.val[0] = (__u32)fsid;
2027         sfs->f_fsid.val[1] = (__u32)(fsid >> 32);
2028
2029         ll_stats_ops_tally(ll_s2sbi(sb), LPROC_LL_STATFS,
2030                            ktime_us_delta(ktime_get(), kstart));
2031
2032         return 0;
2033 }
2034
2035 void ll_inode_size_lock(struct inode *inode)
2036 {
2037         struct ll_inode_info *lli;
2038
2039         LASSERT(!S_ISDIR(inode->i_mode));
2040
2041         lli = ll_i2info(inode);
2042         mutex_lock(&lli->lli_size_mutex);
2043 }
2044
2045 void ll_inode_size_unlock(struct inode *inode)
2046 {
2047         struct ll_inode_info *lli;
2048
2049         lli = ll_i2info(inode);
2050         mutex_unlock(&lli->lli_size_mutex);
2051 }
2052
2053 void ll_update_inode_flags(struct inode *inode, int ext_flags)
2054 {
2055         inode->i_flags = ll_ext_to_inode_flags(ext_flags);
2056         if (ext_flags & LUSTRE_PROJINHERIT_FL)
2057                 ll_file_set_flag(ll_i2info(inode), LLIF_PROJECT_INHERIT);
2058         else
2059                 ll_file_clear_flag(ll_i2info(inode), LLIF_PROJECT_INHERIT);
2060 }
2061
2062 int ll_update_inode(struct inode *inode, struct lustre_md *md)
2063 {
2064         struct ll_inode_info *lli = ll_i2info(inode);
2065         struct mdt_body *body = md->body;
2066         struct ll_sb_info *sbi = ll_i2sbi(inode);
2067         int rc = 0;
2068
2069         if (body->mbo_valid & OBD_MD_FLEASIZE) {
2070                 rc = cl_file_inode_init(inode, md);
2071                 if (rc)
2072                         return rc;
2073         }
2074
2075         if (S_ISDIR(inode->i_mode)) {
2076                 rc = ll_update_lsm_md(inode, md);
2077                 if (rc != 0)
2078                         return rc;
2079         }
2080
2081 #ifdef CONFIG_LUSTRE_FS_POSIX_ACL
2082         if (body->mbo_valid & OBD_MD_FLACL) {
2083                 spin_lock(&lli->lli_lock);
2084                 if (lli->lli_posix_acl)
2085                         posix_acl_release(lli->lli_posix_acl);
2086                 lli->lli_posix_acl = md->posix_acl;
2087                 spin_unlock(&lli->lli_lock);
2088         }
2089 #endif
2090         inode->i_ino = cl_fid_build_ino(&body->mbo_fid1,
2091                                         sbi->ll_flags & LL_SBI_32BIT_API);
2092         inode->i_generation = cl_fid_build_gen(&body->mbo_fid1);
2093
2094         if (body->mbo_valid & OBD_MD_FLATIME) {
2095                 if (body->mbo_atime > inode->i_atime.tv_sec)
2096                         inode->i_atime.tv_sec = body->mbo_atime;
2097                 lli->lli_atime = body->mbo_atime;
2098         }
2099
2100         if (body->mbo_valid & OBD_MD_FLMTIME) {
2101                 if (body->mbo_mtime > inode->i_mtime.tv_sec) {
2102                         CDEBUG(D_INODE,
2103                                "setting ino %lu mtime from %lld to %llu\n",
2104                                inode->i_ino, (s64)inode->i_mtime.tv_sec,
2105                                body->mbo_mtime);
2106                         inode->i_mtime.tv_sec = body->mbo_mtime;
2107                 }
2108                 lli->lli_mtime = body->mbo_mtime;
2109         }
2110
2111         if (body->mbo_valid & OBD_MD_FLCTIME) {
2112                 if (body->mbo_ctime > inode->i_ctime.tv_sec)
2113                         inode->i_ctime.tv_sec = body->mbo_ctime;
2114                 lli->lli_ctime = body->mbo_ctime;
2115         }
2116
2117         /* Clear i_flags to remove S_NOSEC before permissions are updated */
2118         if (body->mbo_valid & OBD_MD_FLFLAGS)
2119                 ll_update_inode_flags(inode, body->mbo_flags);
2120         if (body->mbo_valid & OBD_MD_FLMODE)
2121                 inode->i_mode = (inode->i_mode & S_IFMT) |
2122                                 (body->mbo_mode & ~S_IFMT);
2123
2124         if (body->mbo_valid & OBD_MD_FLTYPE)
2125                 inode->i_mode = (inode->i_mode & ~S_IFMT) |
2126                                 (body->mbo_mode & S_IFMT);
2127
2128         LASSERT(inode->i_mode != 0);
2129         if (S_ISREG(inode->i_mode))
2130                 inode->i_blkbits = min(PTLRPC_MAX_BRW_BITS + 1,
2131                                        LL_MAX_BLKSIZE_BITS);
2132         else
2133                 inode->i_blkbits = inode->i_sb->s_blocksize_bits;
2134
2135         if (body->mbo_valid & OBD_MD_FLUID)
2136                 inode->i_uid = make_kuid(&init_user_ns, body->mbo_uid);
2137         if (body->mbo_valid & OBD_MD_FLGID)
2138                 inode->i_gid = make_kgid(&init_user_ns, body->mbo_gid);
2139         if (body->mbo_valid & OBD_MD_FLPROJID)
2140                 lli->lli_projid = body->mbo_projid;
2141         if (body->mbo_valid & OBD_MD_FLNLINK)
2142                 set_nlink(inode, body->mbo_nlink);
2143         if (body->mbo_valid & OBD_MD_FLRDEV)
2144                 inode->i_rdev = old_decode_dev(body->mbo_rdev);
2145
2146         if (body->mbo_valid & OBD_MD_FLID) {
2147                 /* FID shouldn't be changed! */
2148                 if (fid_is_sane(&lli->lli_fid)) {
2149                         LASSERTF(lu_fid_eq(&lli->lli_fid, &body->mbo_fid1),
2150                                  "Trying to change FID "DFID
2151                                  " to the "DFID", inode "DFID"(%p)\n",
2152                                  PFID(&lli->lli_fid), PFID(&body->mbo_fid1),
2153                                  PFID(ll_inode2fid(inode)), inode);
2154                 } else {
2155                         lli->lli_fid = body->mbo_fid1;
2156                 }
2157         }
2158
2159         LASSERT(fid_seq(&lli->lli_fid) != 0);
2160
2161         if (body->mbo_valid & OBD_MD_FLSIZE) {
2162                 i_size_write(inode, body->mbo_size);
2163
2164                 CDEBUG(D_VFSTRACE, "inode="DFID", updating i_size %llu\n",
2165                        PFID(ll_inode2fid(inode)),
2166                        (unsigned long long)body->mbo_size);
2167
2168                 if (body->mbo_valid & OBD_MD_FLBLOCKS)
2169                         inode->i_blocks = body->mbo_blocks;
2170         }
2171
2172         if (body->mbo_valid & OBD_MD_TSTATE) {
2173                 /* Set LLIF_FILE_RESTORING if restore ongoing and
2174                  * clear it when done to ensure to start again
2175                  * glimpsing updated attrs
2176                  */
2177                 if (body->mbo_t_state & MS_RESTORE)
2178                         ll_file_set_flag(lli, LLIF_FILE_RESTORING);
2179                 else
2180                         ll_file_clear_flag(lli, LLIF_FILE_RESTORING);
2181         }
2182
2183         return 0;
2184 }
2185
2186 int ll_read_inode2(struct inode *inode, void *opaque)
2187 {
2188         struct lustre_md *md = opaque;
2189         struct ll_inode_info *lli = ll_i2info(inode);
2190         int     rc;
2191         ENTRY;
2192
2193         CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID"(%p)\n",
2194                PFID(&lli->lli_fid), inode);
2195
2196         /* Core attributes from the MDS first.  This is a new inode, and
2197          * the VFS doesn't zero times in the core inode so we have to do
2198          * it ourselves.  They will be overwritten by either MDS or OST
2199          * attributes - we just need to make sure they aren't newer.
2200          */
2201         inode->i_mtime.tv_sec = 0;
2202         inode->i_atime.tv_sec = 0;
2203         inode->i_ctime.tv_sec = 0;
2204         inode->i_rdev = 0;
2205         rc = ll_update_inode(inode, md);
2206         if (rc != 0)
2207                 RETURN(rc);
2208
2209         /* OIDEBUG(inode); */
2210
2211 #ifdef HAVE_BACKING_DEV_INFO
2212         /* initializing backing dev info. */
2213         inode->i_mapping->backing_dev_info = &s2lsi(inode->i_sb)->lsi_bdi;
2214 #endif
2215         if (S_ISREG(inode->i_mode)) {
2216                 struct ll_sb_info *sbi = ll_i2sbi(inode);
2217                 inode->i_op = &ll_file_inode_operations;
2218                 inode->i_fop = sbi->ll_fop;
2219                 inode->i_mapping->a_ops = (struct address_space_operations *)&ll_aops;
2220                 EXIT;
2221         } else if (S_ISDIR(inode->i_mode)) {
2222                 inode->i_op = &ll_dir_inode_operations;
2223                 inode->i_fop = &ll_dir_operations;
2224                 EXIT;
2225         } else if (S_ISLNK(inode->i_mode)) {
2226                 inode->i_op = &ll_fast_symlink_inode_operations;
2227                 EXIT;
2228         } else {
2229                 inode->i_op = &ll_special_inode_operations;
2230
2231                 init_special_inode(inode, inode->i_mode,
2232                                    inode->i_rdev);
2233
2234                 EXIT;
2235         }
2236
2237         return 0;
2238 }
2239
2240 void ll_delete_inode(struct inode *inode)
2241 {
2242         struct ll_inode_info *lli = ll_i2info(inode);
2243         struct address_space *mapping = &inode->i_data;
2244         unsigned long nrpages;
2245         unsigned long flags;
2246
2247         ENTRY;
2248
2249         if (S_ISREG(inode->i_mode) && lli->lli_clob != NULL) {
2250                 /* It is last chance to write out dirty pages,
2251                  * otherwise we may lose data while umount.
2252                  *
2253                  * If i_nlink is 0 then just discard data. This is safe because
2254                  * local inode gets i_nlink 0 from server only for the last
2255                  * unlink, so that file is not opened somewhere else
2256                  */
2257                 cl_sync_file_range(inode, 0, OBD_OBJECT_EOF, inode->i_nlink ?
2258                                    CL_FSYNC_LOCAL : CL_FSYNC_DISCARD, 1);
2259         }
2260         truncate_inode_pages_final(mapping);
2261
2262         /* Workaround for LU-118: Note nrpages may not be totally updated when
2263          * truncate_inode_pages() returns, as there can be a page in the process
2264          * of deletion (inside __delete_from_page_cache()) in the specified
2265          * range. Thus mapping->nrpages can be non-zero when this function
2266          * returns even after truncation of the whole mapping.  Only do this if
2267          * npages isn't already zero.
2268          */
2269         nrpages = mapping->nrpages;
2270         if (nrpages) {
2271                 xa_lock_irqsave(&mapping->i_pages, flags);
2272                 nrpages = mapping->nrpages;
2273                 xa_unlock_irqrestore(&mapping->i_pages, flags);
2274         } /* Workaround end */
2275
2276         LASSERTF(nrpages == 0, "%s: inode="DFID"(%p) nrpages=%lu, "
2277                  "see https://jira.whamcloud.com/browse/LU-118\n",
2278                  ll_i2sbi(inode)->ll_fsname,
2279                  PFID(ll_inode2fid(inode)), inode, nrpages);
2280
2281         ll_clear_inode(inode);
2282         clear_inode(inode);
2283
2284         EXIT;
2285 }
2286
2287 int ll_iocontrol(struct inode *inode, struct file *file,
2288                  unsigned int cmd, unsigned long arg)
2289 {
2290         struct ll_sb_info *sbi = ll_i2sbi(inode);
2291         struct ptlrpc_request *req = NULL;
2292         int rc, flags = 0;
2293         ENTRY;
2294
2295         switch (cmd) {
2296         case FS_IOC_GETFLAGS: {
2297                 struct mdt_body *body;
2298                 struct md_op_data *op_data;
2299
2300                 op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL,
2301                                              0, 0, LUSTRE_OPC_ANY,
2302                                              NULL);
2303                 if (IS_ERR(op_data))
2304                         RETURN(PTR_ERR(op_data));
2305
2306                 op_data->op_valid = OBD_MD_FLFLAGS;
2307                 rc = md_getattr(sbi->ll_md_exp, op_data, &req);
2308                 ll_finish_md_op_data(op_data);
2309                 if (rc) {
2310                         CERROR("%s: failure inode "DFID": rc = %d\n",
2311                                sbi->ll_md_exp->exp_obd->obd_name,
2312                                PFID(ll_inode2fid(inode)), rc);
2313                         RETURN(-abs(rc));
2314                 }
2315
2316                 body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
2317
2318                 flags = body->mbo_flags;
2319
2320                 ptlrpc_req_finished(req);
2321
2322                 RETURN(put_user(flags, (int __user *)arg));
2323         }
2324         case FS_IOC_SETFLAGS: {
2325                 struct iattr *attr;
2326                 struct md_op_data *op_data;
2327                 struct cl_object *obj;
2328                 struct fsxattr fa = { 0 };
2329
2330                 if (get_user(flags, (int __user *)arg))
2331                         RETURN(-EFAULT);
2332
2333                 fa.fsx_projid = ll_i2info(inode)->lli_projid;
2334                 if (flags & LUSTRE_PROJINHERIT_FL)
2335                         fa.fsx_xflags = FS_XFLAG_PROJINHERIT;
2336
2337                 rc = ll_ioctl_check_project(inode, &fa);
2338                 if (rc)
2339                         RETURN(rc);
2340
2341                 op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL, 0, 0,
2342                                              LUSTRE_OPC_ANY, NULL);
2343                 if (IS_ERR(op_data))
2344                         RETURN(PTR_ERR(op_data));
2345
2346                 op_data->op_attr_flags = flags;
2347                 op_data->op_xvalid |= OP_XVALID_FLAGS;
2348                 rc = md_setattr(sbi->ll_md_exp, op_data, NULL, 0, &req);
2349                 ll_finish_md_op_data(op_data);
2350                 ptlrpc_req_finished(req);
2351                 if (rc)
2352                         RETURN(rc);
2353
2354                 ll_update_inode_flags(inode, flags);
2355
2356                 obj = ll_i2info(inode)->lli_clob;
2357                 if (obj == NULL)
2358                         RETURN(0);
2359
2360                 OBD_ALLOC_PTR(attr);
2361                 if (attr == NULL)
2362                         RETURN(-ENOMEM);
2363
2364                 rc = cl_setattr_ost(obj, attr, OP_XVALID_FLAGS, flags);
2365
2366                 OBD_FREE_PTR(attr);
2367                 RETURN(rc);
2368         }
2369         default:
2370                 RETURN(-ENOSYS);
2371         }
2372
2373         RETURN(0);
2374 }
2375
2376 int ll_flush_ctx(struct inode *inode)
2377 {
2378         struct ll_sb_info  *sbi = ll_i2sbi(inode);
2379
2380         CDEBUG(D_SEC, "flush context for user %d\n",
2381                from_kuid(&init_user_ns, current_uid()));
2382
2383         obd_set_info_async(NULL, sbi->ll_md_exp,
2384                            sizeof(KEY_FLUSH_CTX), KEY_FLUSH_CTX,
2385                            0, NULL, NULL);
2386         obd_set_info_async(NULL, sbi->ll_dt_exp,
2387                            sizeof(KEY_FLUSH_CTX), KEY_FLUSH_CTX,
2388                            0, NULL, NULL);
2389         return 0;
2390 }
2391
2392 /* umount -f client means force down, don't save state */
2393 void ll_umount_begin(struct super_block *sb)
2394 {
2395         struct ll_sb_info *sbi = ll_s2sbi(sb);
2396         struct obd_device *obd;
2397         struct obd_ioctl_data *ioc_data;
2398         int cnt;
2399         ENTRY;
2400
2401         CDEBUG(D_VFSTRACE, "VFS Op: superblock %p count %d active %d\n", sb,
2402                sb->s_count, atomic_read(&sb->s_active));
2403
2404         obd = class_exp2obd(sbi->ll_md_exp);
2405         if (obd == NULL) {
2406                 CERROR("Invalid MDC connection handle %#llx\n",
2407                        sbi->ll_md_exp->exp_handle.h_cookie);
2408                 EXIT;
2409                 return;
2410         }
2411         obd->obd_force = 1;
2412
2413         obd = class_exp2obd(sbi->ll_dt_exp);
2414         if (obd == NULL) {
2415                 CERROR("Invalid LOV connection handle %#llx\n",
2416                        sbi->ll_dt_exp->exp_handle.h_cookie);
2417                 EXIT;
2418                 return;
2419         }
2420         obd->obd_force = 1;
2421
2422         OBD_ALLOC_PTR(ioc_data);
2423         if (ioc_data) {
2424                 obd_iocontrol(IOC_OSC_SET_ACTIVE, sbi->ll_md_exp,
2425                               sizeof *ioc_data, ioc_data, NULL);
2426
2427                 obd_iocontrol(IOC_OSC_SET_ACTIVE, sbi->ll_dt_exp,
2428                               sizeof *ioc_data, ioc_data, NULL);
2429
2430                 OBD_FREE_PTR(ioc_data);
2431         }
2432
2433         /* Really, we'd like to wait until there are no requests outstanding,
2434          * and then continue.  For now, we just periodically checking for vfs
2435          * to decrement mnt_cnt and hope to finish it within 10sec.
2436          */
2437         cnt = 10;
2438         while (cnt > 0 &&
2439                !may_umount(sbi->ll_mnt.mnt)) {
2440                 ssleep(1);
2441                 cnt -= 1;
2442         }
2443
2444         EXIT;
2445 }
2446
2447 int ll_remount_fs(struct super_block *sb, int *flags, char *data)
2448 {
2449         struct ll_sb_info *sbi = ll_s2sbi(sb);
2450         char *profilenm = get_profile_name(sb);
2451         int err;
2452         __u32 read_only;
2453
2454         if ((*flags & MS_RDONLY) != (sb->s_flags & SB_RDONLY)) {
2455                 read_only = *flags & MS_RDONLY;
2456                 err = obd_set_info_async(NULL, sbi->ll_md_exp,
2457                                          sizeof(KEY_READ_ONLY),
2458                                          KEY_READ_ONLY, sizeof(read_only),
2459                                          &read_only, NULL);
2460                 if (err) {
2461                         LCONSOLE_WARN("Failed to remount %s %s (%d)\n",
2462                                       profilenm, read_only ?
2463                                       "read-only" : "read-write", err);
2464                         return err;
2465                 }
2466
2467                 if (read_only)
2468                         sb->s_flags |= SB_RDONLY;
2469                 else
2470                         sb->s_flags &= ~SB_RDONLY;
2471
2472                 if (sbi->ll_flags & LL_SBI_VERBOSE)
2473                         LCONSOLE_WARN("Remounted %s %s\n", profilenm,
2474                                       read_only ?  "read-only" : "read-write");
2475         }
2476         return 0;
2477 }
2478
2479 /**
2480  * Cleanup the open handle that is cached on MDT-side.
2481  *
2482  * For open case, the client side open handling thread may hit error
2483  * after the MDT grant the open. Under such case, the client should
2484  * send close RPC to the MDT as cleanup; otherwise, the open handle
2485  * on the MDT will be leaked there until the client umount or evicted.
2486  *
2487  * In further, if someone unlinked the file, because the open handle
2488  * holds the reference on such file/object, then it will block the
2489  * subsequent threads that want to locate such object via FID.
2490  *
2491  * \param[in] sb        super block for this file-system
2492  * \param[in] open_req  pointer to the original open request
2493  */
2494 void ll_open_cleanup(struct super_block *sb, struct ptlrpc_request *open_req)
2495 {
2496         struct mdt_body                 *body;
2497         struct md_op_data               *op_data;
2498         struct ptlrpc_request           *close_req = NULL;
2499         struct obd_export               *exp       = ll_s2sbi(sb)->ll_md_exp;
2500         ENTRY;
2501
2502         body = req_capsule_server_get(&open_req->rq_pill, &RMF_MDT_BODY);
2503         OBD_ALLOC_PTR(op_data);
2504         if (op_data == NULL) {
2505                 CWARN("%s: cannot allocate op_data to release open handle for "
2506                       DFID"\n", ll_s2sbi(sb)->ll_fsname, PFID(&body->mbo_fid1));
2507
2508                 RETURN_EXIT;
2509         }
2510
2511         op_data->op_fid1 = body->mbo_fid1;
2512         op_data->op_open_handle = body->mbo_open_handle;
2513         op_data->op_mod_time = ktime_get_real_seconds();
2514         md_close(exp, op_data, NULL, &close_req);
2515         ptlrpc_req_finished(close_req);
2516         ll_finish_md_op_data(op_data);
2517
2518         EXIT;
2519 }
2520
2521 int ll_prep_inode(struct inode **inode, struct ptlrpc_request *req,
2522                   struct super_block *sb, struct lookup_intent *it)
2523 {
2524         struct ll_sb_info *sbi = NULL;
2525         struct lustre_md md = { NULL };
2526         bool default_lmv_deleted = false;
2527         int rc;
2528
2529         ENTRY;
2530
2531         LASSERT(*inode || sb);
2532         sbi = sb ? ll_s2sbi(sb) : ll_i2sbi(*inode);
2533         rc = md_get_lustre_md(sbi->ll_md_exp, req, sbi->ll_dt_exp,
2534                               sbi->ll_md_exp, &md);
2535         if (rc != 0)
2536                 GOTO(out, rc);
2537
2538         /*
2539          * clear default_lmv only if intent_getattr reply doesn't contain it.
2540          * but it needs to be done after iget, check this early because
2541          * ll_update_lsm_md() may change md.
2542          */
2543         if (it && (it->it_op & (IT_LOOKUP | IT_GETATTR)) &&
2544             S_ISDIR(md.body->mbo_mode) && !md.default_lmv)
2545                 default_lmv_deleted = true;
2546
2547         if (*inode) {
2548                 rc = ll_update_inode(*inode, &md);
2549                 if (rc != 0)
2550                         GOTO(out, rc);
2551         } else {
2552                 LASSERT(sb != NULL);
2553
2554                 /*
2555                  * At this point server returns to client's same fid as client
2556                  * generated for creating. So using ->fid1 is okay here.
2557                  */
2558                 if (!fid_is_sane(&md.body->mbo_fid1)) {
2559                         CERROR("%s: Fid is insane "DFID"\n",
2560                                 sbi->ll_fsname,
2561                                 PFID(&md.body->mbo_fid1));
2562                         GOTO(out, rc = -EINVAL);
2563                 }
2564
2565                 *inode = ll_iget(sb, cl_fid_build_ino(&md.body->mbo_fid1,
2566                                              sbi->ll_flags & LL_SBI_32BIT_API),
2567                                  &md);
2568                 if (IS_ERR(*inode)) {
2569 #ifdef CONFIG_LUSTRE_FS_POSIX_ACL
2570                         if (md.posix_acl) {
2571                                 posix_acl_release(md.posix_acl);
2572                                 md.posix_acl = NULL;
2573                         }
2574 #endif
2575                         rc = IS_ERR(*inode) ? PTR_ERR(*inode) : -ENOMEM;
2576                         *inode = NULL;
2577                         CERROR("new_inode -fatal: rc %d\n", rc);
2578                         GOTO(out, rc);
2579                 }
2580         }
2581
2582         /* Handling piggyback layout lock.
2583          * Layout lock can be piggybacked by getattr and open request.
2584          * The lsm can be applied to inode only if it comes with a layout lock
2585          * otherwise correct layout may be overwritten, for example:
2586          * 1. proc1: mdt returns a lsm but not granting layout
2587          * 2. layout was changed by another client
2588          * 3. proc2: refresh layout and layout lock granted
2589          * 4. proc1: to apply a stale layout */
2590         if (it != NULL && it->it_lock_mode != 0) {
2591                 struct lustre_handle lockh;
2592                 struct ldlm_lock *lock;
2593
2594                 lockh.cookie = it->it_lock_handle;
2595                 lock = ldlm_handle2lock(&lockh);
2596                 LASSERT(lock != NULL);
2597                 if (ldlm_has_layout(lock)) {
2598                         struct cl_object_conf conf;
2599
2600                         memset(&conf, 0, sizeof(conf));
2601                         conf.coc_opc = OBJECT_CONF_SET;
2602                         conf.coc_inode = *inode;
2603                         conf.coc_lock = lock;
2604                         conf.u.coc_layout = md.layout;
2605                         (void)ll_layout_conf(*inode, &conf);
2606                 }
2607                 LDLM_LOCK_PUT(lock);
2608         }
2609
2610         if (default_lmv_deleted)
2611                 ll_update_default_lsm_md(*inode, &md);
2612
2613         GOTO(out, rc = 0);
2614
2615 out:
2616         /* cleanup will be done if necessary */
2617         md_free_lustre_md(sbi->ll_md_exp, &md);
2618
2619         if (rc != 0 && it != NULL && it->it_op & IT_OPEN)
2620                 ll_open_cleanup(sb != NULL ? sb : (*inode)->i_sb, req);
2621
2622         return rc;
2623 }
2624
2625 int ll_obd_statfs(struct inode *inode, void __user *arg)
2626 {
2627         struct ll_sb_info *sbi = NULL;
2628         struct obd_export *exp;
2629         char *buf = NULL;
2630         struct obd_ioctl_data *data = NULL;
2631         __u32 type;
2632         int len = 0, rc;
2633
2634         if (!inode || !(sbi = ll_i2sbi(inode)))
2635                 GOTO(out_statfs, rc = -EINVAL);
2636
2637         rc = obd_ioctl_getdata(&buf, &len, arg);
2638         if (rc)
2639                 GOTO(out_statfs, rc);
2640
2641         data = (void*)buf;
2642         if (!data->ioc_inlbuf1 || !data->ioc_inlbuf2 ||
2643             !data->ioc_pbuf1 || !data->ioc_pbuf2)
2644                 GOTO(out_statfs, rc = -EINVAL);
2645
2646         if (data->ioc_inllen1 != sizeof(__u32) ||
2647             data->ioc_inllen2 != sizeof(__u32) ||
2648             data->ioc_plen1 != sizeof(struct obd_statfs) ||
2649             data->ioc_plen2 != sizeof(struct obd_uuid))
2650                 GOTO(out_statfs, rc = -EINVAL);
2651
2652         memcpy(&type, data->ioc_inlbuf1, sizeof(__u32));
2653         if (type & LL_STATFS_LMV)
2654                 exp = sbi->ll_md_exp;
2655         else if (type & LL_STATFS_LOV)
2656                 exp = sbi->ll_dt_exp;
2657         else
2658                 GOTO(out_statfs, rc = -ENODEV);
2659
2660         rc = obd_iocontrol(IOC_OBD_STATFS, exp, len, buf, NULL);
2661         if (rc)
2662                 GOTO(out_statfs, rc);
2663 out_statfs:
2664         OBD_FREE_LARGE(buf, len);
2665         return rc;
2666 }
2667
2668 /*
2669  * this is normally called in ll_fini_md_op_data(), but sometimes it needs to
2670  * be called early to avoid deadlock.
2671  */
2672 void ll_unlock_md_op_lsm(struct md_op_data *op_data)
2673 {
2674         if (op_data->op_mea2_sem) {
2675                 up_read(op_data->op_mea2_sem);
2676                 op_data->op_mea2_sem = NULL;
2677         }
2678
2679         if (op_data->op_mea1_sem) {
2680                 up_read(op_data->op_mea1_sem);
2681                 op_data->op_mea1_sem = NULL;
2682         }
2683 }
2684
2685 /* this function prepares md_op_data hint for passing it down to MD stack. */
2686 struct md_op_data *ll_prep_md_op_data(struct md_op_data *op_data,
2687                                       struct inode *i1, struct inode *i2,
2688                                       const char *name, size_t namelen,
2689                                       __u32 mode, enum md_op_code opc,
2690                                       void *data)
2691 {
2692         LASSERT(i1 != NULL);
2693
2694         if (name == NULL) {
2695                 /* Do not reuse namelen for something else. */
2696                 if (namelen != 0)
2697                         return ERR_PTR(-EINVAL);
2698         } else {
2699                 if (namelen > ll_i2sbi(i1)->ll_namelen)
2700                         return ERR_PTR(-ENAMETOOLONG);
2701
2702                 if (!lu_name_is_valid_2(name, namelen))
2703                         return ERR_PTR(-EINVAL);
2704         }
2705
2706         if (op_data == NULL)
2707                 OBD_ALLOC_PTR(op_data);
2708
2709         if (op_data == NULL)
2710                 return ERR_PTR(-ENOMEM);
2711
2712         ll_i2gids(op_data->op_suppgids, i1, i2);
2713         op_data->op_fid1 = *ll_inode2fid(i1);
2714         op_data->op_code = opc;
2715
2716         if (S_ISDIR(i1->i_mode)) {
2717                 down_read(&ll_i2info(i1)->lli_lsm_sem);
2718                 op_data->op_mea1_sem = &ll_i2info(i1)->lli_lsm_sem;
2719                 op_data->op_mea1 = ll_i2info(i1)->lli_lsm_md;
2720                 op_data->op_default_mea1 = ll_i2info(i1)->lli_default_lsm_md;
2721         }
2722
2723         if (i2) {
2724                 op_data->op_fid2 = *ll_inode2fid(i2);
2725                 if (S_ISDIR(i2->i_mode)) {
2726                         if (i2 != i1) {
2727                                 down_read(&ll_i2info(i2)->lli_lsm_sem);
2728                                 op_data->op_mea2_sem =
2729                                                 &ll_i2info(i2)->lli_lsm_sem;
2730                         }
2731                         op_data->op_mea2 = ll_i2info(i2)->lli_lsm_md;
2732                 }
2733         } else {
2734                 fid_zero(&op_data->op_fid2);
2735         }
2736
2737         if (ll_i2sbi(i1)->ll_flags & LL_SBI_64BIT_HASH)
2738                 op_data->op_cli_flags |= CLI_HASH64;
2739
2740         if (ll_need_32bit_api(ll_i2sbi(i1)))
2741                 op_data->op_cli_flags |= CLI_API32;
2742
2743         op_data->op_name = name;
2744         op_data->op_namelen = namelen;
2745         op_data->op_mode = mode;
2746         op_data->op_mod_time = ktime_get_real_seconds();
2747         op_data->op_fsuid = from_kuid(&init_user_ns, current_fsuid());
2748         op_data->op_fsgid = from_kgid(&init_user_ns, current_fsgid());
2749         op_data->op_cap = cfs_curproc_cap_pack();
2750         op_data->op_mds = 0;
2751         if ((opc == LUSTRE_OPC_CREATE) && (name != NULL) &&
2752              filename_is_volatile(name, namelen, &op_data->op_mds)) {
2753                 op_data->op_bias |= MDS_CREATE_VOLATILE;
2754         }
2755         op_data->op_data = data;
2756
2757         return op_data;
2758 }
2759
2760 void ll_finish_md_op_data(struct md_op_data *op_data)
2761 {
2762         ll_unlock_md_op_lsm(op_data);
2763         security_release_secctx(op_data->op_file_secctx,
2764                                 op_data->op_file_secctx_size);
2765         OBD_FREE_PTR(op_data);
2766 }
2767
2768 #ifdef HAVE_SUPEROPS_USE_DENTRY
2769 int ll_show_options(struct seq_file *seq, struct dentry *dentry)
2770 #else
2771 int ll_show_options(struct seq_file *seq, struct vfsmount *vfs)
2772 #endif
2773 {
2774         struct ll_sb_info *sbi;
2775
2776 #ifdef HAVE_SUPEROPS_USE_DENTRY
2777         LASSERT((seq != NULL) && (dentry != NULL));
2778         sbi = ll_s2sbi(dentry->d_sb);
2779 #else
2780         LASSERT((seq != NULL) && (vfs != NULL));
2781         sbi = ll_s2sbi(vfs->mnt_sb);
2782 #endif
2783
2784         if (sbi->ll_flags & LL_SBI_NOLCK)
2785                 seq_puts(seq, ",nolock");
2786
2787         /* "flock" is the default since 2.13, but it wasn't for many years,
2788          * so it is still useful to print this to show it is enabled.
2789          * Start to print "noflock" so it is now clear when flock is disabled.
2790          */
2791         if (sbi->ll_flags & LL_SBI_FLOCK)
2792                 seq_puts(seq, ",flock");
2793         else if (sbi->ll_flags & LL_SBI_LOCALFLOCK)
2794                 seq_puts(seq, ",localflock");
2795         else
2796                 seq_puts(seq, ",noflock");
2797
2798         if (sbi->ll_flags & LL_SBI_USER_XATTR)
2799                 seq_puts(seq, ",user_xattr");
2800
2801         if (sbi->ll_flags & LL_SBI_LAZYSTATFS)
2802                 seq_puts(seq, ",lazystatfs");
2803
2804         if (sbi->ll_flags & LL_SBI_USER_FID2PATH)
2805                 seq_puts(seq, ",user_fid2path");
2806
2807         if (sbi->ll_flags & LL_SBI_ALWAYS_PING)
2808                 seq_puts(seq, ",always_ping");
2809
2810         RETURN(0);
2811 }
2812
2813 /**
2814  * Get obd name by cmd, and copy out to user space
2815  */
2816 int ll_get_obd_name(struct inode *inode, unsigned int cmd, unsigned long arg)
2817 {
2818         struct ll_sb_info *sbi = ll_i2sbi(inode);
2819         struct obd_device *obd;
2820         ENTRY;
2821
2822         if (cmd == OBD_IOC_GETDTNAME)
2823                 obd = class_exp2obd(sbi->ll_dt_exp);
2824         else if (cmd == OBD_IOC_GETMDNAME)
2825                 obd = class_exp2obd(sbi->ll_md_exp);
2826         else
2827                 RETURN(-EINVAL);
2828
2829         if (!obd)
2830                 RETURN(-ENOENT);
2831
2832         if (copy_to_user((void __user *)arg, obd->obd_name,
2833                          strlen(obd->obd_name) + 1))
2834                 RETURN(-EFAULT);
2835
2836         RETURN(0);
2837 }
2838
2839 static char* ll_d_path(struct dentry *dentry, char *buf, int bufsize)
2840 {
2841         char *path = NULL;
2842
2843         struct path p;
2844
2845         p.dentry = dentry;
2846         p.mnt = current->fs->root.mnt;
2847         path_get(&p);
2848         path = d_path(&p, buf, bufsize);
2849         path_put(&p);
2850         return path;
2851 }
2852
2853 void ll_dirty_page_discard_warn(struct page *page, int ioret)
2854 {
2855         char *buf, *path = NULL;
2856         struct dentry *dentry = NULL;
2857         struct inode *inode = page->mapping->host;
2858
2859         /* this can be called inside spin lock so use GFP_ATOMIC. */
2860         buf = (char *)__get_free_page(GFP_ATOMIC);
2861         if (buf != NULL) {
2862                 dentry = d_find_alias(page->mapping->host);
2863                 if (dentry != NULL)
2864                         path = ll_d_path(dentry, buf, PAGE_SIZE);
2865         }
2866
2867         /* The below message is checked in recovery-small.sh test_24b */
2868         CDEBUG(D_WARNING,
2869                "%s: dirty page discard: %s/fid: "DFID"/%s may get corrupted "
2870                "(rc %d)\n", ll_i2sbi(inode)->ll_fsname,
2871                s2lsi(page->mapping->host->i_sb)->lsi_lmd->lmd_dev,
2872                PFID(ll_inode2fid(inode)),
2873                (path && !IS_ERR(path)) ? path : "", ioret);
2874
2875         if (dentry != NULL)
2876                 dput(dentry);
2877
2878         if (buf != NULL)
2879                 free_page((unsigned long)buf);
2880 }
2881
2882 ssize_t ll_copy_user_md(const struct lov_user_md __user *md,
2883                         struct lov_user_md **kbuf)
2884 {
2885         struct lov_user_md      lum;
2886         ssize_t                 lum_size;
2887         ENTRY;
2888
2889         if (copy_from_user(&lum, md, sizeof(lum)))
2890                 RETURN(-EFAULT);
2891
2892         lum_size = ll_lov_user_md_size(&lum);
2893         if (lum_size < 0)
2894                 RETURN(lum_size);
2895
2896         OBD_ALLOC_LARGE(*kbuf, lum_size);
2897         if (*kbuf == NULL)
2898                 RETURN(-ENOMEM);
2899
2900         if (copy_from_user(*kbuf, md, lum_size) != 0) {
2901                 OBD_FREE_LARGE(*kbuf, lum_size);
2902                 RETURN(-EFAULT);
2903         }
2904
2905         RETURN(lum_size);
2906 }
2907
2908 /*
2909  * Compute llite root squash state after a change of root squash
2910  * configuration setting or add/remove of a lnet nid
2911  */
2912 void ll_compute_rootsquash_state(struct ll_sb_info *sbi)
2913 {
2914         struct root_squash_info *squash = &sbi->ll_squash;
2915         int i;
2916         bool matched;
2917         struct lnet_process_id id;
2918
2919         /* Update norootsquash flag */
2920         spin_lock(&squash->rsi_lock);
2921         if (list_empty(&squash->rsi_nosquash_nids))
2922                 sbi->ll_flags &= ~LL_SBI_NOROOTSQUASH;
2923         else {
2924                 /* Do not apply root squash as soon as one of our NIDs is
2925                  * in the nosquash_nids list */
2926                 matched = false;
2927                 i = 0;
2928                 while (LNetGetId(i++, &id) != -ENOENT) {
2929                         if (LNET_NETTYP(LNET_NIDNET(id.nid)) == LOLND)
2930                                 continue;
2931                         if (cfs_match_nid(id.nid, &squash->rsi_nosquash_nids)) {
2932                                 matched = true;
2933                                 break;
2934                         }
2935                 }
2936                 if (matched)
2937                         sbi->ll_flags |= LL_SBI_NOROOTSQUASH;
2938                 else
2939                         sbi->ll_flags &= ~LL_SBI_NOROOTSQUASH;
2940         }
2941         spin_unlock(&squash->rsi_lock);
2942 }
2943
2944 /**
2945  * Parse linkea content to extract information about a given hardlink
2946  *
2947  * \param[in]   ldata      - Initialized linkea data
2948  * \param[in]   linkno     - Link identifier
2949  * \param[out]  parent_fid - The entry's parent FID
2950  * \param[out]  ln         - Entry name destination buffer
2951  *
2952  * \retval 0 on success
2953  * \retval Appropriate negative error code on failure
2954  */
2955 static int ll_linkea_decode(struct linkea_data *ldata, unsigned int linkno,
2956                             struct lu_fid *parent_fid, struct lu_name *ln)
2957 {
2958         unsigned int    idx;
2959         int             rc;
2960         ENTRY;
2961
2962         rc = linkea_init_with_rec(ldata);
2963         if (rc < 0)
2964                 RETURN(rc);
2965
2966         if (linkno >= ldata->ld_leh->leh_reccount)
2967                 /* beyond last link */
2968                 RETURN(-ENODATA);
2969
2970         linkea_first_entry(ldata);
2971         for (idx = 0; ldata->ld_lee != NULL; idx++) {
2972                 linkea_entry_unpack(ldata->ld_lee, &ldata->ld_reclen, ln,
2973                                     parent_fid);
2974                 if (idx == linkno)
2975                         break;
2976
2977                 linkea_next_entry(ldata);
2978         }
2979
2980         if (idx < linkno)
2981                 RETURN(-ENODATA);
2982
2983         RETURN(0);
2984 }
2985
2986 /**
2987  * Get parent FID and name of an identified link. Operation is performed for
2988  * a given link number, letting the caller iterate over linkno to list one or
2989  * all links of an entry.
2990  *
2991  * \param[in]     file - File descriptor against which to perform the operation
2992  * \param[in,out] arg  - User-filled structure containing the linkno to operate
2993  *                       on and the available size. It is eventually filled with
2994  *                       the requested information or left untouched on error
2995  *
2996  * \retval - 0 on success
2997  * \retval - Appropriate negative error code on failure
2998  */
2999 int ll_getparent(struct file *file, struct getparent __user *arg)
3000 {
3001         struct inode            *inode = file_inode(file);
3002         struct linkea_data      *ldata;
3003         struct lu_buf            buf = LU_BUF_NULL;
3004         struct lu_name           ln;
3005         struct lu_fid            parent_fid;
3006         __u32                    linkno;
3007         __u32                    name_size;
3008         int                      rc;
3009
3010         ENTRY;
3011
3012         if (!cfs_capable(CFS_CAP_DAC_READ_SEARCH) &&
3013             !(ll_i2sbi(inode)->ll_flags & LL_SBI_USER_FID2PATH))
3014                 RETURN(-EPERM);
3015
3016         if (get_user(name_size, &arg->gp_name_size))
3017                 RETURN(-EFAULT);
3018
3019         if (get_user(linkno, &arg->gp_linkno))
3020                 RETURN(-EFAULT);
3021
3022         if (name_size > PATH_MAX)
3023                 RETURN(-EINVAL);
3024
3025         OBD_ALLOC(ldata, sizeof(*ldata));
3026         if (ldata == NULL)
3027                 RETURN(-ENOMEM);
3028
3029         rc = linkea_data_new(ldata, &buf);
3030         if (rc < 0)
3031                 GOTO(ldata_free, rc);
3032
3033         rc = ll_xattr_list(inode, XATTR_NAME_LINK, XATTR_TRUSTED_T, buf.lb_buf,
3034                            buf.lb_len, OBD_MD_FLXATTR);
3035         if (rc < 0)
3036                 GOTO(lb_free, rc);
3037
3038         rc = ll_linkea_decode(ldata, linkno, &parent_fid, &ln);
3039         if (rc < 0)
3040                 GOTO(lb_free, rc);
3041
3042         if (ln.ln_namelen >= name_size)
3043                 GOTO(lb_free, rc = -EOVERFLOW);
3044
3045         if (copy_to_user(&arg->gp_fid, &parent_fid, sizeof(arg->gp_fid)))
3046                 GOTO(lb_free, rc = -EFAULT);
3047
3048         if (copy_to_user(&arg->gp_name, ln.ln_name, ln.ln_namelen))
3049                 GOTO(lb_free, rc = -EFAULT);
3050
3051         if (put_user('\0', arg->gp_name + ln.ln_namelen))
3052                 GOTO(lb_free, rc = -EFAULT);
3053
3054 lb_free:
3055         lu_buf_free(&buf);
3056 ldata_free:
3057         OBD_FREE(ldata, sizeof(*ldata));
3058
3059         RETURN(rc);
3060 }