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