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