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