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