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