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