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