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