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