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