fs: introduce f_op->mmap_capabilities for nommu mmap support
[linux-block.git] / drivers / staging / lustre / lustre / llite / llite_lib.c
CommitLineData
d7e09d03
PT
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, 2012, 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>
a9c7db39 44#include <linux/statfs.h>
d7e09d03 45#include <linux/types.h>
d7e09d03
PT
46#include <linux/mm.h>
47
67a235f5
GKH
48#include "../include/lustre_lite.h"
49#include "../include/lustre_ha.h"
50#include "../include/lustre_dlm.h"
51#include "../include/lprocfs_status.h"
52#include "../include/lustre_disk.h"
53#include "../include/lustre_param.h"
54#include "../include/lustre_log.h"
55#include "../include/cl_object.h"
56#include "../include/obd_cksum.h"
d7e09d03
PT
57#include "llite_internal.h"
58
59struct kmem_cache *ll_file_data_slab;
2c185ffa 60struct proc_dir_entry *proc_lustre_fs_root;
d7e09d03 61
2d95f10e
JH
62static LIST_HEAD(ll_super_blocks);
63static DEFINE_SPINLOCK(ll_sb_lock);
d7e09d03
PT
64
65#ifndef log2
66#define log2(n) ffz(~(n))
67#endif
68
69static struct ll_sb_info *ll_init_sbi(void)
70{
71 struct ll_sb_info *sbi = NULL;
72 unsigned long pages;
73 unsigned long lru_page_max;
74 struct sysinfo si;
75 class_uuid_t uuid;
76 int i;
d7e09d03 77
496a51bd 78 sbi = kzalloc(sizeof(*sbi), GFP_NOFS);
d7e09d03 79 if (!sbi)
0a3bdb00 80 return NULL;
d7e09d03
PT
81
82 spin_lock_init(&sbi->ll_lock);
83 mutex_init(&sbi->ll_lco.lco_lock);
84 spin_lock_init(&sbi->ll_pp_extent_lock);
85 spin_lock_init(&sbi->ll_process_lock);
86 sbi->ll_rw_stats_on = 0;
87
88 si_meminfo(&si);
89 pages = si.totalram - si.totalhigh;
90 if (pages >> (20 - PAGE_CACHE_SHIFT) < 512) {
91 lru_page_max = pages / 2;
92 } else {
93 lru_page_max = (pages / 4) * 3;
94 }
95
c52f69c5 96 /* initialize lru data */
d7e09d03
PT
97 atomic_set(&sbi->ll_cache.ccc_users, 0);
98 sbi->ll_cache.ccc_lru_max = lru_page_max;
99 atomic_set(&sbi->ll_cache.ccc_lru_left, lru_page_max);
100 spin_lock_init(&sbi->ll_cache.ccc_lru_lock);
101 INIT_LIST_HEAD(&sbi->ll_cache.ccc_lru);
102
d7e09d03
PT
103 sbi->ll_ra_info.ra_max_pages_per_file = min(pages / 32,
104 SBI_DEFAULT_READAHEAD_MAX);
105 sbi->ll_ra_info.ra_max_pages = sbi->ll_ra_info.ra_max_pages_per_file;
106 sbi->ll_ra_info.ra_max_read_ahead_whole_pages =
107 SBI_DEFAULT_READAHEAD_WHOLE_MAX;
108 INIT_LIST_HEAD(&sbi->ll_conn_chain);
109 INIT_LIST_HEAD(&sbi->ll_orphan_dentry_list);
110
111 ll_generate_random_uuid(uuid);
112 class_uuid_unparse(uuid, &sbi->ll_sb_uuid);
113 CDEBUG(D_CONFIG, "generated uuid: %s\n", sbi->ll_sb_uuid.uuid);
114
115 spin_lock(&ll_sb_lock);
116 list_add_tail(&sbi->ll_list, &ll_super_blocks);
117 spin_unlock(&ll_sb_lock);
118
119 sbi->ll_flags |= LL_SBI_VERBOSE;
120 sbi->ll_flags |= LL_SBI_CHECKSUM;
121
122 sbi->ll_flags |= LL_SBI_LRU_RESIZE;
123
124 for (i = 0; i <= LL_PROCESS_HIST_MAX; i++) {
125 spin_lock_init(&sbi->ll_rw_extents_info.pp_extents[i].
126 pp_r_hist.oh_lock);
127 spin_lock_init(&sbi->ll_rw_extents_info.pp_extents[i].
128 pp_w_hist.oh_lock);
129 }
130
131 /* metadata statahead is enabled by default */
132 sbi->ll_sa_max = LL_SA_RPC_DEF;
133 atomic_set(&sbi->ll_sa_total, 0);
134 atomic_set(&sbi->ll_sa_wrong, 0);
135 atomic_set(&sbi->ll_agl_total, 0);
136 sbi->ll_flags |= LL_SBI_AGL_ENABLED;
137
0a3bdb00 138 return sbi;
d7e09d03
PT
139}
140
2d95f10e 141static void ll_free_sbi(struct super_block *sb)
d7e09d03
PT
142{
143 struct ll_sb_info *sbi = ll_s2sbi(sb);
d7e09d03
PT
144
145 if (sbi != NULL) {
146 spin_lock(&ll_sb_lock);
147 list_del(&sbi->ll_list);
148 spin_unlock(&ll_sb_lock);
149 OBD_FREE(sbi, sizeof(*sbi));
150 }
d7e09d03
PT
151}
152
d7e09d03
PT
153static int client_common_fill_super(struct super_block *sb, char *md, char *dt,
154 struct vfsmount *mnt)
155{
ea7893bb 156 struct inode *root = NULL;
d7e09d03
PT
157 struct ll_sb_info *sbi = ll_s2sbi(sb);
158 struct obd_device *obd;
159 struct obd_capa *oc = NULL;
160 struct obd_statfs *osfs = NULL;
161 struct ptlrpc_request *request = NULL;
162 struct obd_connect_data *data = NULL;
163 struct obd_uuid *uuid;
164 struct md_op_data *op_data;
165 struct lustre_md lmd;
21aef7d9 166 u64 valid;
d7e09d03 167 int size, err, checksum;
d7e09d03
PT
168
169 obd = class_name2obd(md);
170 if (!obd) {
171 CERROR("MD %s: not setup or attached\n", md);
0a3bdb00 172 return -EINVAL;
d7e09d03
PT
173 }
174
496a51bd
JL
175 data = kzalloc(sizeof(*data), GFP_NOFS);
176 if (!data)
0a3bdb00 177 return -ENOMEM;
d7e09d03 178
496a51bd
JL
179 osfs = kzalloc(sizeof(*osfs), GFP_NOFS);
180 if (!osfs) {
d7e09d03 181 OBD_FREE_PTR(data);
0a3bdb00 182 return -ENOMEM;
d7e09d03
PT
183 }
184
185 if (proc_lustre_fs_root) {
186 err = lprocfs_register_mountpoint(proc_lustre_fs_root, sb,
187 dt, md);
188 if (err < 0)
189 CERROR("could not register mount in /proc/fs/lustre\n");
190 }
191
192 /* indicate the features supported by this client */
193 data->ocd_connect_flags = OBD_CONNECT_IBITS | OBD_CONNECT_NODEVOH |
194 OBD_CONNECT_ATTRFID |
195 OBD_CONNECT_VERSION | OBD_CONNECT_BRW_SIZE |
196 OBD_CONNECT_MDS_CAPA | OBD_CONNECT_OSS_CAPA |
197 OBD_CONNECT_CANCELSET | OBD_CONNECT_FID |
198 OBD_CONNECT_AT | OBD_CONNECT_LOV_V3 |
199 OBD_CONNECT_RMT_CLIENT | OBD_CONNECT_VBR |
200 OBD_CONNECT_FULL20 | OBD_CONNECT_64BITHASH|
201 OBD_CONNECT_EINPROGRESS |
202 OBD_CONNECT_JOBSTATS | OBD_CONNECT_LVB_TYPE |
7fc1f831 203 OBD_CONNECT_LAYOUTLOCK |
69342b78
AS
204 OBD_CONNECT_PINGLESS |
205 OBD_CONNECT_MAX_EASIZE |
63d42578
HZ
206 OBD_CONNECT_FLOCK_DEAD |
207 OBD_CONNECT_DISP_STRIPE;
d7e09d03
PT
208
209 if (sbi->ll_flags & LL_SBI_SOM_PREVIEW)
210 data->ocd_connect_flags |= OBD_CONNECT_SOM;
211
212 if (sbi->ll_flags & LL_SBI_LRU_RESIZE)
213 data->ocd_connect_flags |= OBD_CONNECT_LRU_RESIZE;
214#ifdef CONFIG_FS_POSIX_ACL
215 data->ocd_connect_flags |= OBD_CONNECT_ACL | OBD_CONNECT_UMASK;
216#endif
217
218 if (OBD_FAIL_CHECK(OBD_FAIL_MDC_LIGHTWEIGHT))
219 /* flag mdc connection as lightweight, only used for test
220 * purpose, use with care */
221 data->ocd_connect_flags |= OBD_CONNECT_LIGHTWEIGHT;
222
223 data->ocd_ibits_known = MDS_INODELOCK_FULL;
224 data->ocd_version = LUSTRE_VERSION_CODE;
225
226 if (sb->s_flags & MS_RDONLY)
227 data->ocd_connect_flags |= OBD_CONNECT_RDONLY;
228 if (sbi->ll_flags & LL_SBI_USER_XATTR)
229 data->ocd_connect_flags |= OBD_CONNECT_XATTR;
230
231#ifdef HAVE_MS_FLOCK_LOCK
232 /* force vfs to use lustre handler for flock() calls - bug 10743 */
233 sb->s_flags |= MS_FLOCK_LOCK;
234#endif
235#ifdef MS_HAS_NEW_AOPS
236 sb->s_flags |= MS_HAS_NEW_AOPS;
237#endif
238
239 if (sbi->ll_flags & LL_SBI_FLOCK)
240 sbi->ll_fop = &ll_file_operations_flock;
241 else if (sbi->ll_flags & LL_SBI_LOCALFLOCK)
242 sbi->ll_fop = &ll_file_operations;
243 else
244 sbi->ll_fop = &ll_file_operations_noflock;
245
246 /* real client */
247 data->ocd_connect_flags |= OBD_CONNECT_REAL;
248 if (sbi->ll_flags & LL_SBI_RMT_CLIENT)
249 data->ocd_connect_flags |= OBD_CONNECT_RMT_CLIENT_FORCE;
250
251 data->ocd_brw_size = MD_MAX_BRW_SIZE;
252
e6768831
TJ
253 err = obd_connect(NULL, &sbi->ll_md_exp, obd, &sbi->ll_sb_uuid,
254 data, NULL);
d7e09d03 255 if (err == -EBUSY) {
2d00bd17
JP
256 LCONSOLE_ERROR_MSG(0x14f, "An MDT (md %s) is performing recovery, of which this client is not a part. Please wait for recovery to complete, abort, or time out.\n",
257 md);
34e1f2bb 258 goto out;
d7e09d03
PT
259 } else if (err) {
260 CERROR("cannot connect to %s: rc = %d\n", md, err);
34e1f2bb 261 goto out;
d7e09d03
PT
262 }
263
264 sbi->ll_md_exp->exp_connect_data = *data;
265
266 err = obd_fid_init(sbi->ll_md_exp->exp_obd, sbi->ll_md_exp,
267 LUSTRE_SEQ_METADATA);
268 if (err) {
2d00bd17
JP
269 CERROR("%s: Can't init metadata layer FID infrastructure, rc = %d\n",
270 sbi->ll_md_exp->exp_obd->obd_name, err);
34e1f2bb 271 goto out_md;
d7e09d03
PT
272 }
273
274 /* For mount, we only need fs info from MDT0, and also in DNE, it
275 * can make sure the client can be mounted as long as MDT0 is
d0a0acc3 276 * available */
d7e09d03
PT
277 err = obd_statfs(NULL, sbi->ll_md_exp, osfs,
278 cfs_time_shift_64(-OBD_STATFS_CACHE_SECONDS),
279 OBD_STATFS_FOR_MDT0);
280 if (err)
34e1f2bb 281 goto out_md_fid;
d7e09d03
PT
282
283 /* This needs to be after statfs to ensure connect has finished.
284 * Note that "data" does NOT contain the valid connect reply.
285 * If connecting to a 1.8 server there will be no LMV device, so
286 * we can access the MDC export directly and exp_connect_flags will
287 * be non-zero, but if accessing an upgraded 2.1 server it will
288 * have the correct flags filled in.
289 * XXX: fill in the LMV exp_connect_flags from MDC(s). */
290 valid = exp_connect_flags(sbi->ll_md_exp) & CLIENT_CONNECT_MDT_REQD;
291 if (exp_connect_flags(sbi->ll_md_exp) != 0 &&
292 valid != CLIENT_CONNECT_MDT_REQD) {
293 char *buf;
294
496a51bd 295 buf = kzalloc(PAGE_CACHE_SIZE, GFP_KERNEL);
d7e09d03
PT
296 obd_connect_flags2str(buf, PAGE_CACHE_SIZE,
297 valid ^ CLIENT_CONNECT_MDT_REQD, ",");
2d00bd17 298 LCONSOLE_ERROR_MSG(0x170, "Server %s does not support feature(s) needed for correct operation of this client (%s). Please upgrade server or downgrade client.\n",
d7e09d03
PT
299 sbi->ll_md_exp->exp_obd->obd_name, buf);
300 OBD_FREE(buf, PAGE_CACHE_SIZE);
34e1f2bb
JL
301 err = -EPROTO;
302 goto out_md_fid;
d7e09d03
PT
303 }
304
305 size = sizeof(*data);
306 err = obd_get_info(NULL, sbi->ll_md_exp, sizeof(KEY_CONN_DATA),
307 KEY_CONN_DATA, &size, data, NULL);
308 if (err) {
309 CERROR("%s: Get connect data failed: rc = %d\n",
310 sbi->ll_md_exp->exp_obd->obd_name, err);
34e1f2bb 311 goto out_md_fid;
d7e09d03
PT
312 }
313
314 LASSERT(osfs->os_bsize);
315 sb->s_blocksize = osfs->os_bsize;
316 sb->s_blocksize_bits = log2(osfs->os_bsize);
317 sb->s_magic = LL_SUPER_MAGIC;
318 sb->s_maxbytes = MAX_LFS_FILESIZE;
319 sbi->ll_namelen = osfs->os_namelen;
320 sbi->ll_max_rw_chunk = LL_DEFAULT_MAX_RW_CHUNK;
321
322 if ((sbi->ll_flags & LL_SBI_USER_XATTR) &&
323 !(data->ocd_connect_flags & OBD_CONNECT_XATTR)) {
2d00bd17 324 LCONSOLE_INFO("Disabling user_xattr feature because it is not supported on the server\n");
d7e09d03
PT
325 sbi->ll_flags &= ~LL_SBI_USER_XATTR;
326 }
327
328 if (data->ocd_connect_flags & OBD_CONNECT_ACL) {
329#ifdef MS_POSIXACL
330 sb->s_flags |= MS_POSIXACL;
331#endif
332 sbi->ll_flags |= LL_SBI_ACL;
333 } else {
334 LCONSOLE_INFO("client wants to enable acl, but mdt not!\n");
335#ifdef MS_POSIXACL
336 sb->s_flags &= ~MS_POSIXACL;
337#endif
338 sbi->ll_flags &= ~LL_SBI_ACL;
339 }
340
341 if (data->ocd_connect_flags & OBD_CONNECT_RMT_CLIENT) {
342 if (!(sbi->ll_flags & LL_SBI_RMT_CLIENT)) {
343 sbi->ll_flags |= LL_SBI_RMT_CLIENT;
344 LCONSOLE_INFO("client is set as remote by default.\n");
345 }
346 } else {
347 if (sbi->ll_flags & LL_SBI_RMT_CLIENT) {
348 sbi->ll_flags &= ~LL_SBI_RMT_CLIENT;
2d00bd17 349 LCONSOLE_INFO("client claims to be remote, but server rejected, forced to be local.\n");
d7e09d03
PT
350 }
351 }
352
353 if (data->ocd_connect_flags & OBD_CONNECT_MDS_CAPA) {
354 LCONSOLE_INFO("client enabled MDS capability!\n");
355 sbi->ll_flags |= LL_SBI_MDS_CAPA;
356 }
357
358 if (data->ocd_connect_flags & OBD_CONNECT_OSS_CAPA) {
359 LCONSOLE_INFO("client enabled OSS capability!\n");
360 sbi->ll_flags |= LL_SBI_OSS_CAPA;
361 }
362
363 if (data->ocd_connect_flags & OBD_CONNECT_64BITHASH)
364 sbi->ll_flags |= LL_SBI_64BIT_HASH;
365
366 if (data->ocd_connect_flags & OBD_CONNECT_BRW_SIZE)
367 sbi->ll_md_brw_size = data->ocd_brw_size;
368 else
369 sbi->ll_md_brw_size = PAGE_CACHE_SIZE;
370
371 if (data->ocd_connect_flags & OBD_CONNECT_LAYOUTLOCK) {
372 LCONSOLE_INFO("Layout lock feature supported.\n");
373 sbi->ll_flags |= LL_SBI_LAYOUT_LOCK;
374 }
375
7fc1f831
AP
376 if (data->ocd_ibits_known & MDS_INODELOCK_XATTR) {
377 if (!(data->ocd_connect_flags & OBD_CONNECT_MAX_EASIZE)) {
378 LCONSOLE_INFO(
379 "%s: disabling xattr cache due to unknown maximum xattr size.\n",
380 dt);
381 } else {
382 sbi->ll_flags |= LL_SBI_XATTR_CACHE;
383 sbi->ll_xattr_cache_enabled = 1;
384 }
385 }
386
d7e09d03
PT
387 obd = class_name2obd(dt);
388 if (!obd) {
389 CERROR("DT %s: not setup or attached\n", dt);
34e1f2bb
JL
390 err = -ENODEV;
391 goto out_md_fid;
d7e09d03
PT
392 }
393
394 data->ocd_connect_flags = OBD_CONNECT_GRANT | OBD_CONNECT_VERSION |
395 OBD_CONNECT_REQPORTAL | OBD_CONNECT_BRW_SIZE |
396 OBD_CONNECT_CANCELSET | OBD_CONNECT_FID |
397 OBD_CONNECT_SRVLOCK | OBD_CONNECT_TRUNCLOCK|
398 OBD_CONNECT_AT | OBD_CONNECT_RMT_CLIENT |
399 OBD_CONNECT_OSS_CAPA | OBD_CONNECT_VBR|
400 OBD_CONNECT_FULL20 | OBD_CONNECT_64BITHASH |
401 OBD_CONNECT_MAXBYTES |
402 OBD_CONNECT_EINPROGRESS |
403 OBD_CONNECT_JOBSTATS | OBD_CONNECT_LVB_TYPE |
404 OBD_CONNECT_LAYOUTLOCK | OBD_CONNECT_PINGLESS;
405
406 if (sbi->ll_flags & LL_SBI_SOM_PREVIEW)
407 data->ocd_connect_flags |= OBD_CONNECT_SOM;
408
409 if (!OBD_FAIL_CHECK(OBD_FAIL_OSC_CONNECT_CKSUM)) {
410 /* OBD_CONNECT_CKSUM should always be set, even if checksums are
411 * disabled by default, because it can still be enabled on the
412 * fly via /proc. As a consequence, we still need to come to an
413 * agreement on the supported algorithms at connect time */
414 data->ocd_connect_flags |= OBD_CONNECT_CKSUM;
415
416 if (OBD_FAIL_CHECK(OBD_FAIL_OSC_CKSUM_ADLER_ONLY))
417 data->ocd_cksum_types = OBD_CKSUM_ADLER;
418 else
419 data->ocd_cksum_types = cksum_types_supported_client();
420 }
421
422 data->ocd_connect_flags |= OBD_CONNECT_LRU_RESIZE;
423 if (sbi->ll_flags & LL_SBI_RMT_CLIENT)
424 data->ocd_connect_flags |= OBD_CONNECT_RMT_CLIENT_FORCE;
425
2d00bd17
JP
426 CDEBUG(D_RPCTRACE, "ocd_connect_flags: %#llx ocd_version: %d ocd_grant: %d\n",
427 data->ocd_connect_flags,
d7e09d03
PT
428 data->ocd_version, data->ocd_grant);
429
430 obd->obd_upcall.onu_owner = &sbi->ll_lco;
431 obd->obd_upcall.onu_upcall = cl_ocd_update;
432
433 data->ocd_brw_size = DT_MAX_BRW_SIZE;
434
435 err = obd_connect(NULL, &sbi->ll_dt_exp, obd, &sbi->ll_sb_uuid, data,
436 NULL);
437 if (err == -EBUSY) {
2d00bd17
JP
438 LCONSOLE_ERROR_MSG(0x150, "An OST (dt %s) is performing recovery, of which this client is not a part. Please wait for recovery to complete, abort, or time out.\n",
439 dt);
34e1f2bb 440 goto out_md;
d7e09d03
PT
441 } else if (err) {
442 CERROR("%s: Cannot connect to %s: rc = %d\n",
443 sbi->ll_dt_exp->exp_obd->obd_name, dt, err);
34e1f2bb 444 goto out_md;
d7e09d03
PT
445 }
446
447 sbi->ll_dt_exp->exp_connect_data = *data;
448
449 err = obd_fid_init(sbi->ll_dt_exp->exp_obd, sbi->ll_dt_exp,
450 LUSTRE_SEQ_METADATA);
451 if (err) {
2d00bd17
JP
452 CERROR("%s: Can't init data layer FID infrastructure, rc = %d\n",
453 sbi->ll_dt_exp->exp_obd->obd_name, err);
34e1f2bb 454 goto out_dt;
d7e09d03
PT
455 }
456
457 mutex_lock(&sbi->ll_lco.lco_lock);
458 sbi->ll_lco.lco_flags = data->ocd_connect_flags;
459 sbi->ll_lco.lco_md_exp = sbi->ll_md_exp;
460 sbi->ll_lco.lco_dt_exp = sbi->ll_dt_exp;
461 mutex_unlock(&sbi->ll_lco.lco_lock);
462
463 fid_zero(&sbi->ll_root_fid);
464 err = md_getstatus(sbi->ll_md_exp, &sbi->ll_root_fid, &oc);
465 if (err) {
466 CERROR("cannot mds_connect: rc = %d\n", err);
34e1f2bb 467 goto out_lock_cn_cb;
d7e09d03
PT
468 }
469 if (!fid_is_sane(&sbi->ll_root_fid)) {
470 CERROR("%s: Invalid root fid "DFID" during mount\n",
471 sbi->ll_md_exp->exp_obd->obd_name,
472 PFID(&sbi->ll_root_fid));
34e1f2bb
JL
473 err = -EINVAL;
474 goto out_lock_cn_cb;
d7e09d03
PT
475 }
476 CDEBUG(D_SUPER, "rootfid "DFID"\n", PFID(&sbi->ll_root_fid));
477
478 sb->s_op = &lustre_super_operations;
479#if THREAD_SIZE >= 8192 /*b=17630*/
480 sb->s_export_op = &lustre_export_operations;
481#endif
482
483 /* make root inode
484 * XXX: move this to after cbd setup? */
485 valid = OBD_MD_FLGETATTR | OBD_MD_FLBLOCKS | OBD_MD_FLMDSCAPA;
486 if (sbi->ll_flags & LL_SBI_RMT_CLIENT)
487 valid |= OBD_MD_FLRMTPERM;
488 else if (sbi->ll_flags & LL_SBI_ACL)
489 valid |= OBD_MD_FLACL;
490
496a51bd
JL
491 op_data = kzalloc(sizeof(*op_data), GFP_NOFS);
492 if (!op_data) {
34e1f2bb
JL
493 err = -ENOMEM;
494 goto out_lock_cn_cb;
495 }
d7e09d03
PT
496
497 op_data->op_fid1 = sbi->ll_root_fid;
498 op_data->op_mode = 0;
499 op_data->op_capa1 = oc;
500 op_data->op_valid = valid;
501
502 err = md_getattr(sbi->ll_md_exp, op_data, &request);
503 if (oc)
504 capa_put(oc);
505 OBD_FREE_PTR(op_data);
506 if (err) {
507 CERROR("%s: md_getattr failed for root: rc = %d\n",
508 sbi->ll_md_exp->exp_obd->obd_name, err);
34e1f2bb 509 goto out_lock_cn_cb;
d7e09d03
PT
510 }
511
512 err = md_get_lustre_md(sbi->ll_md_exp, request, sbi->ll_dt_exp,
513 sbi->ll_md_exp, &lmd);
514 if (err) {
515 CERROR("failed to understand root inode md: rc = %d\n", err);
516 ptlrpc_req_finished(request);
34e1f2bb 517 goto out_lock_cn_cb;
d7e09d03
PT
518 }
519
520 LASSERT(fid_is_sane(&sbi->ll_root_fid));
521 root = ll_iget(sb, cl_fid_build_ino(&sbi->ll_root_fid,
c1e2699d 522 sbi->ll_flags & LL_SBI_32BIT_API),
d7e09d03
PT
523 &lmd);
524 md_free_lustre_md(sbi->ll_md_exp, &lmd);
525 ptlrpc_req_finished(request);
526
527 if (root == NULL || IS_ERR(root)) {
528 if (lmd.lsm)
529 obd_free_memmd(sbi->ll_dt_exp, &lmd.lsm);
530#ifdef CONFIG_FS_POSIX_ACL
531 if (lmd.posix_acl) {
532 posix_acl_release(lmd.posix_acl);
533 lmd.posix_acl = NULL;
534 }
535#endif
536 err = IS_ERR(root) ? PTR_ERR(root) : -EBADF;
537 root = NULL;
538 CERROR("lustre_lite: bad iget4 for root\n");
34e1f2bb 539 goto out_root;
d7e09d03
PT
540 }
541
542 err = ll_close_thread_start(&sbi->ll_lcq);
543 if (err) {
544 CERROR("cannot start close thread: rc %d\n", err);
34e1f2bb 545 goto out_root;
d7e09d03
PT
546 }
547
548#ifdef CONFIG_FS_POSIX_ACL
549 if (sbi->ll_flags & LL_SBI_RMT_CLIENT) {
550 rct_init(&sbi->ll_rct);
551 et_init(&sbi->ll_et);
552 }
553#endif
554
555 checksum = sbi->ll_flags & LL_SBI_CHECKSUM;
556 err = obd_set_info_async(NULL, sbi->ll_dt_exp, sizeof(KEY_CHECKSUM),
557 KEY_CHECKSUM, sizeof(checksum), &checksum,
558 NULL);
559 cl_sb_init(sb);
560
561 err = obd_set_info_async(NULL, sbi->ll_dt_exp, sizeof(KEY_CACHE_SET),
562 KEY_CACHE_SET, sizeof(sbi->ll_cache),
563 &sbi->ll_cache, NULL);
564
565 sb->s_root = d_make_root(root);
566 if (sb->s_root == NULL) {
567 CERROR("%s: can't make root dentry\n",
568 ll_get_fsname(sb, NULL, 0));
34e1f2bb 569 err = -ENOMEM;
caf382fe 570 goto out_lock_cn_cb;
d7e09d03
PT
571 }
572
d7e09d03
PT
573 sbi->ll_sdev_orig = sb->s_dev;
574
575 /* We set sb->s_dev equal on all lustre clients in order to support
576 * NFS export clustering. NFSD requires that the FSID be the same
577 * on all clients. */
578 /* s_dev is also used in lt_compare() to compare two fs, but that is
579 * only a node-local comparison. */
580 uuid = obd_get_uuid(sbi->ll_md_exp);
bd994071 581 if (uuid != NULL) {
d7e09d03 582 sb->s_dev = get_uuid2int(uuid->uuid, strlen(uuid->uuid));
bd994071
FY
583 get_uuid2fsid(uuid->uuid, strlen(uuid->uuid), &sbi->ll_fsid);
584 }
d7e09d03
PT
585
586 if (data != NULL)
587 OBD_FREE_PTR(data);
588 if (osfs != NULL)
589 OBD_FREE_PTR(osfs);
590
0a3bdb00 591 return err;
d7e09d03 592out_root:
ddafd514 593 iput(root);
d7e09d03
PT
594out_lock_cn_cb:
595 obd_fid_fini(sbi->ll_dt_exp->exp_obd);
596out_dt:
597 obd_disconnect(sbi->ll_dt_exp);
598 sbi->ll_dt_exp = NULL;
599 /* Make sure all OScs are gone, since cl_cache is accessing sbi. */
600 obd_zombie_barrier();
601out_md_fid:
602 obd_fid_fini(sbi->ll_md_exp->exp_obd);
603out_md:
604 obd_disconnect(sbi->ll_md_exp);
605 sbi->ll_md_exp = NULL;
606out:
607 if (data != NULL)
608 OBD_FREE_PTR(data);
609 if (osfs != NULL)
610 OBD_FREE_PTR(osfs);
611 lprocfs_unregister_mountpoint(sbi);
612 return err;
613}
614
615int ll_get_max_mdsize(struct ll_sb_info *sbi, int *lmmsize)
616{
617 int size, rc;
618
619 *lmmsize = obd_size_diskmd(sbi->ll_dt_exp, NULL);
620 size = sizeof(int);
621 rc = obd_get_info(NULL, sbi->ll_md_exp, sizeof(KEY_MAX_EASIZE),
622 KEY_MAX_EASIZE, &size, lmmsize, NULL);
623 if (rc)
624 CERROR("Get max mdsize error rc %d \n", rc);
625
0a3bdb00 626 return rc;
44779340
BB
627}
628
629int ll_get_default_mdsize(struct ll_sb_info *sbi, int *lmmsize)
630{
631 int size, rc;
632
633 size = sizeof(int);
634 rc = obd_get_info(NULL, sbi->ll_md_exp, sizeof(KEY_DEFAULT_EASIZE),
635 KEY_DEFAULT_EASIZE, &size, lmmsize, NULL);
636 if (rc)
637 CERROR("Get default mdsize error rc %d\n", rc);
638
639 return rc;
640}
641
642int ll_get_max_cookiesize(struct ll_sb_info *sbi, int *lmmsize)
643{
644 int size, rc;
645
646 size = sizeof(int);
647 rc = obd_get_info(NULL, sbi->ll_md_exp, sizeof(KEY_MAX_COOKIESIZE),
648 KEY_MAX_COOKIESIZE, &size, lmmsize, NULL);
649 if (rc)
650 CERROR("Get max cookiesize error rc %d\n", rc);
651
652 return rc;
653}
654
655int ll_get_default_cookiesize(struct ll_sb_info *sbi, int *lmmsize)
656{
657 int size, rc;
658
659 size = sizeof(int);
660 rc = obd_get_info(NULL, sbi->ll_md_exp, sizeof(KEY_DEFAULT_COOKIESIZE),
661 KEY_DEFAULT_COOKIESIZE, &size, lmmsize, NULL);
662 if (rc)
663 CERROR("Get default cookiesize error rc %d\n", rc);
664
665 return rc;
d7e09d03
PT
666}
667
2d95f10e 668static void ll_dump_inode(struct inode *inode)
d7e09d03
PT
669{
670 struct ll_d_hlist_node *tmp;
671 int dentry_count = 0;
672
673 LASSERT(inode != NULL);
674
675 ll_d_hlist_for_each(tmp, &inode->i_dentry)
676 dentry_count++;
677
678 CERROR("inode %p dump: dev=%s ino=%lu mode=%o count=%u, %d dentries\n",
679 inode, ll_i2mdexp(inode)->exp_obd->obd_name, inode->i_ino,
680 inode->i_mode, atomic_read(&inode->i_count), dentry_count);
681}
682
683void lustre_dump_dentry(struct dentry *dentry, int recur)
684{
685 struct list_head *tmp;
686 int subdirs = 0;
687
688 LASSERT(dentry != NULL);
689
690 list_for_each(tmp, &dentry->d_subdirs)
691 subdirs++;
692
dab363f9
LT
693 CERROR("dentry %p dump: name=%pd parent=%pd (%p), inode=%p, count=%u, flags=0x%x, fsdata=%p, %d subdirs\n",
694 dentry, dentry, dentry->d_parent, dentry->d_parent,
695 dentry->d_inode, d_count(dentry),
d7e09d03
PT
696 dentry->d_flags, dentry->d_fsdata, subdirs);
697 if (dentry->d_inode != NULL)
698 ll_dump_inode(dentry->d_inode);
699
700 if (recur == 0)
701 return;
702
703 list_for_each(tmp, &dentry->d_subdirs) {
946e51f2 704 struct dentry *d = list_entry(tmp, struct dentry, d_child);
cf29a7b6 705
d7e09d03
PT
706 lustre_dump_dentry(d, recur - 1);
707 }
708}
709
2d95f10e 710static void client_common_put_super(struct super_block *sb)
d7e09d03
PT
711{
712 struct ll_sb_info *sbi = ll_s2sbi(sb);
d7e09d03
PT
713
714#ifdef CONFIG_FS_POSIX_ACL
715 if (sbi->ll_flags & LL_SBI_RMT_CLIENT) {
716 et_fini(&sbi->ll_et);
717 rct_fini(&sbi->ll_rct);
718 }
719#endif
720
721 ll_close_thread_shutdown(sbi->ll_lcq);
722
723 cl_sb_fini(sb);
724
725 list_del(&sbi->ll_conn_chain);
726
727 obd_fid_fini(sbi->ll_dt_exp->exp_obd);
728 obd_disconnect(sbi->ll_dt_exp);
729 sbi->ll_dt_exp = NULL;
730 /* wait till all OSCs are gone, since cl_cache is accessing sbi.
731 * see LU-2543. */
732 obd_zombie_barrier();
733
734 lprocfs_unregister_mountpoint(sbi);
735
736 obd_fid_fini(sbi->ll_md_exp->exp_obd);
737 obd_disconnect(sbi->ll_md_exp);
738 sbi->ll_md_exp = NULL;
d7e09d03
PT
739}
740
741void ll_kill_super(struct super_block *sb)
742{
743 struct ll_sb_info *sbi;
744
d7e09d03
PT
745 /* not init sb ?*/
746 if (!(sb->s_flags & MS_ACTIVE))
747 return;
748
749 sbi = ll_s2sbi(sb);
e6768831
TJ
750 /* we need to restore s_dev from changed for clustered NFS before
751 * put_super because new kernels have cached s_dev and change sb->s_dev
752 * in put_super not affected real removing devices */
65fb55d1 753 if (sbi) {
d7e09d03 754 sb->s_dev = sbi->ll_sdev_orig;
65fb55d1
NY
755 sbi->ll_umounting = 1;
756 }
d7e09d03
PT
757}
758
d7e09d03
PT
759static inline int ll_set_opt(const char *opt, char *data, int fl)
760{
761 if (strncmp(opt, data, strlen(opt)) != 0)
fbe7c6c7 762 return 0;
d7e09d03 763 else
fbe7c6c7 764 return fl;
d7e09d03
PT
765}
766
767/* non-client-specific mount options are parsed in lmd_parse */
768static int ll_options(char *options, int *flags)
769{
770 int tmp;
771 char *s1 = options, *s2;
d7e09d03
PT
772
773 if (!options)
0a3bdb00 774 return 0;
d7e09d03
PT
775
776 CDEBUG(D_CONFIG, "Parsing opts %s\n", options);
777
778 while (*s1) {
779 CDEBUG(D_SUPER, "next opt=%s\n", s1);
780 tmp = ll_set_opt("nolock", s1, LL_SBI_NOLCK);
781 if (tmp) {
782 *flags |= tmp;
783 goto next;
784 }
785 tmp = ll_set_opt("flock", s1, LL_SBI_FLOCK);
786 if (tmp) {
787 *flags |= tmp;
788 goto next;
789 }
790 tmp = ll_set_opt("localflock", s1, LL_SBI_LOCALFLOCK);
791 if (tmp) {
792 *flags |= tmp;
793 goto next;
794 }
795 tmp = ll_set_opt("noflock", s1, LL_SBI_FLOCK|LL_SBI_LOCALFLOCK);
796 if (tmp) {
797 *flags &= ~tmp;
798 goto next;
799 }
800 tmp = ll_set_opt("user_xattr", s1, LL_SBI_USER_XATTR);
801 if (tmp) {
802 *flags |= tmp;
803 goto next;
804 }
805 tmp = ll_set_opt("nouser_xattr", s1, LL_SBI_USER_XATTR);
806 if (tmp) {
807 *flags &= ~tmp;
808 goto next;
809 }
d7e09d03
PT
810 tmp = ll_set_opt("remote_client", s1, LL_SBI_RMT_CLIENT);
811 if (tmp) {
812 *flags |= tmp;
813 goto next;
814 }
815 tmp = ll_set_opt("user_fid2path", s1, LL_SBI_USER_FID2PATH);
816 if (tmp) {
817 *flags |= tmp;
818 goto next;
819 }
820 tmp = ll_set_opt("nouser_fid2path", s1, LL_SBI_USER_FID2PATH);
821 if (tmp) {
822 *flags &= ~tmp;
823 goto next;
824 }
825
826 tmp = ll_set_opt("checksum", s1, LL_SBI_CHECKSUM);
827 if (tmp) {
828 *flags |= tmp;
829 goto next;
830 }
831 tmp = ll_set_opt("nochecksum", s1, LL_SBI_CHECKSUM);
832 if (tmp) {
833 *flags &= ~tmp;
834 goto next;
835 }
836 tmp = ll_set_opt("lruresize", s1, LL_SBI_LRU_RESIZE);
837 if (tmp) {
838 *flags |= tmp;
839 goto next;
840 }
841 tmp = ll_set_opt("nolruresize", s1, LL_SBI_LRU_RESIZE);
842 if (tmp) {
843 *flags &= ~tmp;
844 goto next;
845 }
846 tmp = ll_set_opt("lazystatfs", s1, LL_SBI_LAZYSTATFS);
847 if (tmp) {
848 *flags |= tmp;
849 goto next;
850 }
851 tmp = ll_set_opt("nolazystatfs", s1, LL_SBI_LAZYSTATFS);
852 if (tmp) {
853 *flags &= ~tmp;
854 goto next;
855 }
856 tmp = ll_set_opt("som_preview", s1, LL_SBI_SOM_PREVIEW);
857 if (tmp) {
858 *flags |= tmp;
859 goto next;
860 }
861 tmp = ll_set_opt("32bitapi", s1, LL_SBI_32BIT_API);
862 if (tmp) {
863 *flags |= tmp;
864 goto next;
865 }
866 tmp = ll_set_opt("verbose", s1, LL_SBI_VERBOSE);
867 if (tmp) {
868 *flags |= tmp;
869 goto next;
870 }
871 tmp = ll_set_opt("noverbose", s1, LL_SBI_VERBOSE);
872 if (tmp) {
873 *flags &= ~tmp;
874 goto next;
875 }
876 LCONSOLE_ERROR_MSG(0x152, "Unknown option '%s', won't mount.\n",
877 s1);
0a3bdb00 878 return -EINVAL;
d7e09d03
PT
879
880next:
881 /* Find next opt */
882 s2 = strchr(s1, ',');
883 if (s2 == NULL)
884 break;
885 s1 = s2 + 1;
886 }
0a3bdb00 887 return 0;
d7e09d03
PT
888}
889
890void ll_lli_init(struct ll_inode_info *lli)
891{
892 lli->lli_inode_magic = LLI_INODE_MAGIC;
893 lli->lli_flags = 0;
894 lli->lli_ioepoch = 0;
895 lli->lli_maxbytes = MAX_LFS_FILESIZE;
896 spin_lock_init(&lli->lli_lock);
897 lli->lli_posix_acl = NULL;
898 lli->lli_remote_perms = NULL;
899 mutex_init(&lli->lli_rmtperm_mutex);
900 /* Do not set lli_fid, it has been initialized already. */
901 fid_zero(&lli->lli_pfid);
902 INIT_LIST_HEAD(&lli->lli_close_list);
903 INIT_LIST_HEAD(&lli->lli_oss_capas);
904 atomic_set(&lli->lli_open_count, 0);
905 lli->lli_mds_capa = NULL;
906 lli->lli_rmtperm_time = 0;
907 lli->lli_pending_och = NULL;
908 lli->lli_mds_read_och = NULL;
909 lli->lli_mds_write_och = NULL;
910 lli->lli_mds_exec_och = NULL;
911 lli->lli_open_fd_read_count = 0;
912 lli->lli_open_fd_write_count = 0;
913 lli->lli_open_fd_exec_count = 0;
914 mutex_init(&lli->lli_och_mutex);
915 spin_lock_init(&lli->lli_agl_lock);
916 lli->lli_has_smd = false;
09aed8a5
JX
917 spin_lock_init(&lli->lli_layout_lock);
918 ll_layout_version_set(lli, LL_LAYOUT_GEN_NONE);
d7e09d03
PT
919 lli->lli_clob = NULL;
920
7fc1f831
AP
921 init_rwsem(&lli->lli_xattrs_list_rwsem);
922 mutex_init(&lli->lli_xattrs_enq_lock);
923
d7e09d03
PT
924 LASSERT(lli->lli_vfs_inode.i_mode != 0);
925 if (S_ISDIR(lli->lli_vfs_inode.i_mode)) {
926 mutex_init(&lli->lli_readdir_mutex);
927 lli->lli_opendir_key = NULL;
928 lli->lli_sai = NULL;
d7e09d03
PT
929 spin_lock_init(&lli->lli_sa_lock);
930 lli->lli_opendir_pid = 0;
931 } else {
47a57bde 932 mutex_init(&lli->lli_size_mutex);
d7e09d03
PT
933 lli->lli_symlink_name = NULL;
934 init_rwsem(&lli->lli_trunc_sem);
935 mutex_init(&lli->lli_write_mutex);
936 init_rwsem(&lli->lli_glimpse_sem);
937 lli->lli_glimpse_time = 0;
938 INIT_LIST_HEAD(&lli->lli_agl_list);
939 lli->lli_agl_index = 0;
940 lli->lli_async_rc = 0;
d7e09d03
PT
941 }
942 mutex_init(&lli->lli_layout_mutex);
943}
944
945static inline int ll_bdi_register(struct backing_dev_info *bdi)
946{
947 static atomic_t ll_bdi_num = ATOMIC_INIT(0);
948
949 bdi->name = "lustre";
950 return bdi_register(bdi, NULL, "lustre-%d",
951 atomic_inc_return(&ll_bdi_num));
952}
953
954int ll_fill_super(struct super_block *sb, struct vfsmount *mnt)
955{
956 struct lustre_profile *lprof = NULL;
957 struct lustre_sb_info *lsi = s2lsi(sb);
958 struct ll_sb_info *sbi;
959 char *dt = NULL, *md = NULL;
960 char *profilenm = get_profile_name(sb);
961 struct config_llog_instance *cfg;
962 /* %p for void* in printf needs 16+2 characters: 0xffffffffffffffff */
963 const int instlen = sizeof(cfg->cfg_instance) * 2 + 2;
964 int err;
d7e09d03
PT
965
966 CDEBUG(D_VFSTRACE, "VFS Op: sb %p\n", sb);
967
496a51bd
JL
968 cfg = kzalloc(sizeof(*cfg), GFP_NOFS);
969 if (!cfg)
0a3bdb00 970 return -ENOMEM;
d7e09d03
PT
971
972 try_module_get(THIS_MODULE);
973
974 /* client additional sb info */
975 lsi->lsi_llsbi = sbi = ll_init_sbi();
976 if (!sbi) {
977 module_put(THIS_MODULE);
978 OBD_FREE_PTR(cfg);
0a3bdb00 979 return -ENOMEM;
d7e09d03
PT
980 }
981
982 err = ll_options(lsi->lsi_lmd->lmd_opts, &sbi->ll_flags);
983 if (err)
34e1f2bb 984 goto out_free;
d7e09d03
PT
985
986 err = bdi_init(&lsi->lsi_bdi);
987 if (err)
34e1f2bb 988 goto out_free;
d7e09d03 989 lsi->lsi_flags |= LSI_BDI_INITIALIZED;
b4caecd4 990 lsi->lsi_bdi.capabilities = 0;
d7e09d03
PT
991 err = ll_bdi_register(&lsi->lsi_bdi);
992 if (err)
34e1f2bb 993 goto out_free;
d7e09d03
PT
994
995 sb->s_bdi = &lsi->lsi_bdi;
3ea8f3bc
LS
996 /* kernel >= 2.6.38 store dentry operations in sb->s_d_op. */
997 sb->s_d_op = &ll_d_ops;
d7e09d03
PT
998
999 /* Generate a string unique to this super, in case some joker tries
1000 to mount the same fs at two mount points.
1001 Use the address of the super itself.*/
1002 cfg->cfg_instance = sb;
1003 cfg->cfg_uuid = lsi->lsi_llsbi->ll_sb_uuid;
1004 cfg->cfg_callback = class_config_llog_handler;
1005 /* set up client obds */
1006 err = lustre_process_log(sb, profilenm, cfg);
1007 if (err < 0) {
1008 CERROR("Unable to process log: %d\n", err);
34e1f2bb 1009 goto out_free;
d7e09d03
PT
1010 }
1011
1012 /* Profile set with LCFG_MOUNTOPT so we can find our mdc and osc obds */
1013 lprof = class_get_profile(profilenm);
1014 if (lprof == NULL) {
2d00bd17
JP
1015 LCONSOLE_ERROR_MSG(0x156, "The client profile '%s' could not be read from the MGS. Does that filesystem exist?\n",
1016 profilenm);
34e1f2bb
JL
1017 err = -EINVAL;
1018 goto out_free;
d7e09d03
PT
1019 }
1020 CDEBUG(D_CONFIG, "Found profile %s: mdc=%s osc=%s\n", profilenm,
1021 lprof->lp_md, lprof->lp_dt);
1022
496a51bd 1023 dt = kzalloc(strlen(lprof->lp_dt) + instlen + 2, GFP_NOFS);
34e1f2bb
JL
1024 if (!dt) {
1025 err = -ENOMEM;
1026 goto out_free;
1027 }
d7e09d03
PT
1028 sprintf(dt, "%s-%p", lprof->lp_dt, cfg->cfg_instance);
1029
496a51bd 1030 md = kzalloc(strlen(lprof->lp_md) + instlen + 2, GFP_NOFS);
34e1f2bb
JL
1031 if (!md) {
1032 err = -ENOMEM;
1033 goto out_free;
1034 }
d7e09d03
PT
1035 sprintf(md, "%s-%p", lprof->lp_md, cfg->cfg_instance);
1036
1037 /* connections, registrations, sb setup */
1038 err = client_common_fill_super(sb, md, dt, mnt);
1039
1040out_free:
1041 if (md)
1042 OBD_FREE(md, strlen(lprof->lp_md) + instlen + 2);
1043 if (dt)
1044 OBD_FREE(dt, strlen(lprof->lp_dt) + instlen + 2);
1045 if (err)
1046 ll_put_super(sb);
1047 else if (sbi->ll_flags & LL_SBI_VERBOSE)
1048 LCONSOLE_WARN("Mounted %s\n", profilenm);
1049
1050 OBD_FREE_PTR(cfg);
0a3bdb00 1051 return err;
d7e09d03
PT
1052} /* ll_fill_super */
1053
d7e09d03
PT
1054void ll_put_super(struct super_block *sb)
1055{
7d4bae45 1056 struct config_llog_instance cfg, params_cfg;
d7e09d03
PT
1057 struct obd_device *obd;
1058 struct lustre_sb_info *lsi = s2lsi(sb);
1059 struct ll_sb_info *sbi = ll_s2sbi(sb);
1060 char *profilenm = get_profile_name(sb);
c52f69c5 1061 int next, force = 1;
d7e09d03
PT
1062
1063 CDEBUG(D_VFSTRACE, "VFS Op: sb %p - %s\n", sb, profilenm);
1064
1065 ll_print_capa_stat(sbi);
1066
1067 cfg.cfg_instance = sb;
1068 lustre_end_log(sb, profilenm, &cfg);
1069
7d4bae45
AB
1070 params_cfg.cfg_instance = sb;
1071 lustre_end_log(sb, PARAMS_FILENAME, &params_cfg);
1072
d7e09d03
PT
1073 if (sbi->ll_md_exp) {
1074 obd = class_exp2obd(sbi->ll_md_exp);
1075 if (obd)
1076 force = obd->obd_force;
1077 }
1078
d7e09d03
PT
1079 /* We need to set force before the lov_disconnect in
1080 lustre_common_put_super, since l_d cleans up osc's as well. */
1081 if (force) {
1082 next = 0;
1083 while ((obd = class_devices_in_group(&sbi->ll_sb_uuid,
1084 &next)) != NULL) {
1085 obd->obd_force = force;
1086 }
1087 }
1088
1089 if (sbi->ll_lcq) {
1090 /* Only if client_common_fill_super succeeded */
1091 client_common_put_super(sb);
1092 }
1093
1094 next = 0;
a15dbf99 1095 while ((obd = class_devices_in_group(&sbi->ll_sb_uuid, &next)))
d7e09d03 1096 class_manual_cleanup(obd);
d7e09d03
PT
1097
1098 if (sbi->ll_flags & LL_SBI_VERBOSE)
1099 LCONSOLE_WARN("Unmounted %s\n", profilenm ? profilenm : "");
1100
1101 if (profilenm)
1102 class_del_profile(profilenm);
1103
1104 if (lsi->lsi_flags & LSI_BDI_INITIALIZED) {
1105 bdi_destroy(&lsi->lsi_bdi);
1106 lsi->lsi_flags &= ~LSI_BDI_INITIALIZED;
1107 }
1108
1109 ll_free_sbi(sb);
1110 lsi->lsi_llsbi = NULL;
1111
1112 lustre_common_put_super(sb);
1113
1114 module_put(THIS_MODULE);
d7e09d03
PT
1115} /* client_put_super */
1116
1117struct inode *ll_inode_from_resource_lock(struct ldlm_lock *lock)
1118{
1119 struct inode *inode = NULL;
1120
1121 /* NOTE: we depend on atomic igrab() -bzzz */
1122 lock_res_and_lock(lock);
1123 if (lock->l_resource->lr_lvb_inode) {
aff9d8e8 1124 struct ll_inode_info *lli;
cf29a7b6 1125
d7e09d03
PT
1126 lli = ll_i2info(lock->l_resource->lr_lvb_inode);
1127 if (lli->lli_inode_magic == LLI_INODE_MAGIC) {
1128 inode = igrab(lock->l_resource->lr_lvb_inode);
1129 } else {
1130 inode = lock->l_resource->lr_lvb_inode;
1131 LDLM_DEBUG_LIMIT(inode->i_state & I_FREEING ? D_INFO :
2d00bd17 1132 D_WARNING, lock, "lr_lvb_inode %p is bogus: magic %08x",
d7e09d03
PT
1133 lock->l_resource->lr_lvb_inode,
1134 lli->lli_inode_magic);
1135 inode = NULL;
1136 }
1137 }
1138 unlock_res_and_lock(lock);
1139 return inode;
1140}
1141
d7e09d03
PT
1142void ll_clear_inode(struct inode *inode)
1143{
1144 struct ll_inode_info *lli = ll_i2info(inode);
1145 struct ll_sb_info *sbi = ll_i2sbi(inode);
d7e09d03
PT
1146
1147 CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p)\n", inode->i_ino,
1148 inode->i_generation, inode);
1149
1150 if (S_ISDIR(inode->i_mode)) {
1151 /* these should have been cleared in ll_file_release */
1152 LASSERT(lli->lli_opendir_key == NULL);
1153 LASSERT(lli->lli_sai == NULL);
1154 LASSERT(lli->lli_opendir_pid == 0);
1155 }
1156
ae5ef67b 1157 spin_lock(&lli->lli_lock);
d7e09d03 1158 ll_i2info(inode)->lli_flags &= ~LLIF_MDS_SIZE_LOCK;
ae5ef67b 1159 spin_unlock(&lli->lli_lock);
d7e09d03
PT
1160 md_null_inode(sbi->ll_md_exp, ll_inode2fid(inode));
1161
1162 LASSERT(!lli->lli_open_fd_write_count);
1163 LASSERT(!lli->lli_open_fd_read_count);
1164 LASSERT(!lli->lli_open_fd_exec_count);
1165
1166 if (lli->lli_mds_write_och)
1167 ll_md_real_close(inode, FMODE_WRITE);
1168 if (lli->lli_mds_exec_och)
1169 ll_md_real_close(inode, FMODE_EXEC);
1170 if (lli->lli_mds_read_och)
1171 ll_md_real_close(inode, FMODE_READ);
1172
1173 if (S_ISLNK(inode->i_mode) && lli->lli_symlink_name) {
1174 OBD_FREE(lli->lli_symlink_name,
1175 strlen(lli->lli_symlink_name) + 1);
1176 lli->lli_symlink_name = NULL;
1177 }
1178
7fc1f831
AP
1179 ll_xattr_cache_destroy(inode);
1180
d7e09d03
PT
1181 if (sbi->ll_flags & LL_SBI_RMT_CLIENT) {
1182 LASSERT(lli->lli_posix_acl == NULL);
1183 if (lli->lli_remote_perms) {
1184 free_rmtperm_hash(lli->lli_remote_perms);
1185 lli->lli_remote_perms = NULL;
1186 }
1187 }
1188#ifdef CONFIG_FS_POSIX_ACL
1189 else if (lli->lli_posix_acl) {
1190 LASSERT(atomic_read(&lli->lli_posix_acl->a_refcount) == 1);
1191 LASSERT(lli->lli_remote_perms == NULL);
1192 posix_acl_release(lli->lli_posix_acl);
1193 lli->lli_posix_acl = NULL;
1194 }
1195#endif
1196 lli->lli_inode_magic = LLI_INODE_DEAD;
1197
1198 ll_clear_inode_capas(inode);
1199 if (!S_ISDIR(inode->i_mode))
1200 LASSERT(list_empty(&lli->lli_agl_list));
1201
1202 /*
1203 * XXX This has to be done before lsm is freed below, because
1204 * cl_object still uses inode lsm.
1205 */
1206 cl_inode_fini(inode);
1207 lli->lli_has_smd = false;
d7e09d03
PT
1208}
1209
3d3ab8cc 1210static int ll_md_setattr(struct dentry *dentry, struct md_op_data *op_data,
d7e09d03
PT
1211 struct md_open_data **mod)
1212{
1213 struct lustre_md md;
1214 struct inode *inode = dentry->d_inode;
1215 struct ll_sb_info *sbi = ll_i2sbi(inode);
1216 struct ptlrpc_request *request = NULL;
1217 int rc, ia_valid;
d7e09d03
PT
1218
1219 op_data = ll_prep_md_op_data(op_data, inode, NULL, NULL, 0, 0,
1220 LUSTRE_OPC_ANY, NULL);
1221 if (IS_ERR(op_data))
0a3bdb00 1222 return PTR_ERR(op_data);
d7e09d03
PT
1223
1224 rc = md_setattr(sbi->ll_md_exp, op_data, NULL, 0, NULL, 0,
1225 &request, mod);
1226 if (rc) {
1227 ptlrpc_req_finished(request);
1228 if (rc == -ENOENT) {
1229 clear_nlink(inode);
1230 /* Unlinked special device node? Or just a race?
1231 * Pretend we done everything. */
1232 if (!S_ISREG(inode->i_mode) &&
1233 !S_ISDIR(inode->i_mode)) {
1234 ia_valid = op_data->op_attr.ia_valid;
1235 op_data->op_attr.ia_valid &= ~TIMES_SET_FLAGS;
1236 rc = simple_setattr(dentry, &op_data->op_attr);
1237 op_data->op_attr.ia_valid = ia_valid;
1238 }
1239 } else if (rc != -EPERM && rc != -EACCES && rc != -ETXTBSY) {
1240 CERROR("md_setattr fails: rc = %d\n", rc);
1241 }
0a3bdb00 1242 return rc;
d7e09d03
PT
1243 }
1244
1245 rc = md_get_lustre_md(sbi->ll_md_exp, request, sbi->ll_dt_exp,
1246 sbi->ll_md_exp, &md);
1247 if (rc) {
1248 ptlrpc_req_finished(request);
0a3bdb00 1249 return rc;
d7e09d03
PT
1250 }
1251
251c4317
JH
1252 ia_valid = op_data->op_attr.ia_valid;
1253 /* inode size will be in ll_setattr_ost, can't do it now since dirty
1254 * cache is not cleared yet. */
1255 op_data->op_attr.ia_valid &= ~(TIMES_SET_FLAGS | ATTR_SIZE);
1256 rc = simple_setattr(dentry, &op_data->op_attr);
1257 op_data->op_attr.ia_valid = ia_valid;
1258
d7e09d03
PT
1259 /* Extract epoch data if obtained. */
1260 op_data->op_handle = md.body->handle;
1261 op_data->op_ioepoch = md.body->ioepoch;
1262
1263 ll_update_inode(inode, &md);
1264 ptlrpc_req_finished(request);
1265
0a3bdb00 1266 return rc;
d7e09d03
PT
1267}
1268
1269/* Close IO epoch and send Size-on-MDS attribute update. */
1270static int ll_setattr_done_writing(struct inode *inode,
1271 struct md_op_data *op_data,
1272 struct md_open_data *mod)
1273{
1274 struct ll_inode_info *lli = ll_i2info(inode);
1275 int rc = 0;
d7e09d03
PT
1276
1277 LASSERT(op_data != NULL);
1278 if (!S_ISREG(inode->i_mode))
0a3bdb00 1279 return 0;
d7e09d03 1280
b0f5aad5 1281 CDEBUG(D_INODE, "Epoch %llu closed on "DFID" for truncate\n",
d7e09d03
PT
1282 op_data->op_ioepoch, PFID(&lli->lli_fid));
1283
1284 op_data->op_flags = MF_EPOCH_CLOSE;
1285 ll_done_writing_attr(inode, op_data);
1286 ll_pack_inode2opdata(inode, op_data, NULL);
1287
1288 rc = md_done_writing(ll_i2sbi(inode)->ll_md_exp, op_data, mod);
1289 if (rc == -EAGAIN) {
1290 /* MDS has instructed us to obtain Size-on-MDS attribute
1291 * from OSTs and send setattr to back to MDS. */
1292 rc = ll_som_update(inode, op_data);
1293 } else if (rc) {
1294 CERROR("inode %lu mdc truncate failed: rc = %d\n",
1295 inode->i_ino, rc);
1296 }
0a3bdb00 1297 return rc;
d7e09d03
PT
1298}
1299
1300static int ll_setattr_ost(struct inode *inode, struct iattr *attr)
1301{
1302 struct obd_capa *capa;
1303 int rc;
1304
1305 if (attr->ia_valid & ATTR_SIZE)
1306 capa = ll_osscapa_get(inode, CAPA_OPC_OSS_TRUNC);
1307 else
1308 capa = ll_mdscapa_get(inode);
1309
1310 rc = cl_setattr_ost(inode, attr, capa);
1311
1312 if (attr->ia_valid & ATTR_SIZE)
1313 ll_truncate_free_capa(capa);
1314 else
1315 capa_put(capa);
1316
1317 return rc;
1318}
1319
1320
1321/* If this inode has objects allocated to it (lsm != NULL), then the OST
1322 * object(s) determine the file size and mtime. Otherwise, the MDS will
1323 * keep these values until such a time that objects are allocated for it.
1324 * We do the MDS operations first, as it is checking permissions for us.
1325 * We don't to the MDS RPC if there is nothing that we want to store there,
1326 * otherwise there is no harm in updating mtime/atime on the MDS if we are
1327 * going to do an RPC anyways.
1328 *
1329 * If we are doing a truncate, we will send the mtime and ctime updates
1330 * to the OST with the punch RPC, otherwise we do an explicit setattr RPC.
1331 * I don't believe it is possible to get e.g. ATTR_MTIME_SET and ATTR_SIZE
1332 * at the same time.
a720b790
JL
1333 *
1334 * In case of HSMimport, we only set attr on MDS.
d7e09d03 1335 */
a720b790 1336int ll_setattr_raw(struct dentry *dentry, struct iattr *attr, bool hsm_import)
d7e09d03
PT
1337{
1338 struct inode *inode = dentry->d_inode;
1339 struct ll_inode_info *lli = ll_i2info(inode);
1340 struct md_op_data *op_data = NULL;
1341 struct md_open_data *mod = NULL;
5ea17d6c 1342 bool file_is_released = false;
d7e09d03 1343 int rc = 0, rc1 = 0;
d7e09d03 1344
a720b790
JL
1345 CDEBUG(D_VFSTRACE,
1346 "%s: setattr inode %p/fid:"DFID
1347 " from %llu to %llu, valid %x, hsm_import %d\n",
1348 ll_get_fsname(inode->i_sb, NULL, 0), inode,
d7e09d03 1349 PFID(&lli->lli_fid), i_size_read(inode), attr->ia_size,
a720b790 1350 attr->ia_valid, hsm_import);
d7e09d03
PT
1351
1352 if (attr->ia_valid & ATTR_SIZE) {
1353 /* Check new size against VFS/VM file size limit and rlimit */
1354 rc = inode_newsize_ok(inode, attr->ia_size);
1355 if (rc)
0a3bdb00 1356 return rc;
d7e09d03
PT
1357
1358 /* The maximum Lustre file size is variable, based on the
1359 * OST maximum object size and number of stripes. This
1360 * needs another check in addition to the VFS check above. */
1361 if (attr->ia_size > ll_file_maxbytes(inode)) {
1d8cb70c 1362 CDEBUG(D_INODE, "file "DFID" too large %llu > %llu\n",
d7e09d03
PT
1363 PFID(&lli->lli_fid), attr->ia_size,
1364 ll_file_maxbytes(inode));
0a3bdb00 1365 return -EFBIG;
d7e09d03
PT
1366 }
1367
1368 attr->ia_valid |= ATTR_MTIME | ATTR_CTIME;
1369 }
1370
1371 /* POSIX: check before ATTR_*TIME_SET set (from inode_change_ok) */
1372 if (attr->ia_valid & TIMES_SET_FLAGS) {
4b1a25f0 1373 if ((!uid_eq(current_fsuid(), inode->i_uid)) &&
2eb90a75 1374 !capable(CFS_CAP_FOWNER))
0a3bdb00 1375 return -EPERM;
d7e09d03
PT
1376 }
1377
1378 /* We mark all of the fields "set" so MDS/OST does not re-set them */
1379 if (attr->ia_valid & ATTR_CTIME) {
0f1c743b 1380 attr->ia_ctime = CURRENT_TIME;
d7e09d03
PT
1381 attr->ia_valid |= ATTR_CTIME_SET;
1382 }
1383 if (!(attr->ia_valid & ATTR_ATIME_SET) &&
1384 (attr->ia_valid & ATTR_ATIME)) {
0f1c743b 1385 attr->ia_atime = CURRENT_TIME;
d7e09d03
PT
1386 attr->ia_valid |= ATTR_ATIME_SET;
1387 }
1388 if (!(attr->ia_valid & ATTR_MTIME_SET) &&
1389 (attr->ia_valid & ATTR_MTIME)) {
0f1c743b 1390 attr->ia_mtime = CURRENT_TIME;
d7e09d03
PT
1391 attr->ia_valid |= ATTR_MTIME_SET;
1392 }
1393
1394 if (attr->ia_valid & (ATTR_MTIME | ATTR_CTIME))
1395 CDEBUG(D_INODE, "setting mtime %lu, ctime %lu, now = %lu\n",
1396 LTIME_S(attr->ia_mtime), LTIME_S(attr->ia_ctime),
7264b8a5 1397 get_seconds());
d7e09d03
PT
1398
1399 /* If we are changing file size, file content is modified, flag it. */
1400 if (attr->ia_valid & ATTR_SIZE) {
1401 attr->ia_valid |= MDS_OPEN_OWNEROVERRIDE;
1402 spin_lock(&lli->lli_lock);
1403 lli->lli_flags |= LLIF_DATA_MODIFIED;
1404 spin_unlock(&lli->lli_lock);
1405 }
1406
1407 /* We always do an MDS RPC, even if we're only changing the size;
1408 * only the MDS knows whether truncate() should fail with -ETXTBUSY */
1409
496a51bd
JL
1410 op_data = kzalloc(sizeof(*op_data), GFP_NOFS);
1411 if (!op_data)
0a3bdb00 1412 return -ENOMEM;
d7e09d03
PT
1413
1414 if (!S_ISDIR(inode->i_mode)) {
1415 if (attr->ia_valid & ATTR_SIZE)
1416 inode_dio_write_done(inode);
1417 mutex_unlock(&inode->i_mutex);
d7e09d03
PT
1418 }
1419
1420 memcpy(&op_data->op_attr, attr, sizeof(*attr));
1421
1422 /* Open epoch for truncate. */
1423 if (exp_connect_som(ll_i2mdexp(inode)) &&
1424 (attr->ia_valid & (ATTR_SIZE | ATTR_MTIME | ATTR_MTIME_SET)))
1425 op_data->op_flags = MF_EPOCH_OPEN;
1426
5ea17d6c
JL
1427 /* truncate on a released file must failed with -ENODATA,
1428 * so size must not be set on MDS for released file
1429 * but other attributes must be set
1430 */
1431 if (S_ISREG(inode->i_mode)) {
1432 struct lov_stripe_md *lsm;
1433 __u32 gen;
1434
1435 ll_layout_refresh(inode, &gen);
1436 lsm = ccc_inode_lsm_get(inode);
1437 if (lsm && lsm->lsm_pattern & LOV_PATTERN_F_RELEASED)
1438 file_is_released = true;
1439 ccc_inode_lsm_put(inode, lsm);
1440 }
1441
a720b790 1442 /* if not in HSM import mode, clear size attr for released file
5ea17d6c
JL
1443 * we clear the attribute send to MDT in op_data, not the original
1444 * received from caller in attr which is used later to
1445 * decide return code */
a720b790 1446 if (file_is_released && (attr->ia_valid & ATTR_SIZE) && !hsm_import)
5ea17d6c
JL
1447 op_data->op_attr.ia_valid &= ~ATTR_SIZE;
1448
d7e09d03
PT
1449 rc = ll_md_setattr(dentry, op_data, &mod);
1450 if (rc)
34e1f2bb 1451 goto out;
d7e09d03 1452
a720b790 1453 /* truncate failed (only when non HSM import), others succeed */
5ea17d6c 1454 if (file_is_released) {
a720b790 1455 if ((attr->ia_valid & ATTR_SIZE) && !hsm_import)
34e1f2bb 1456 rc = -ENODATA;
5ea17d6c 1457 else
34e1f2bb
JL
1458 rc = 0;
1459 goto out;
5ea17d6c
JL
1460 }
1461
d7e09d03
PT
1462 /* RPC to MDT is sent, cancel data modification flag */
1463 if (rc == 0 && (op_data->op_bias & MDS_DATA_MODIFIED)) {
1464 spin_lock(&lli->lli_lock);
1465 lli->lli_flags &= ~LLIF_DATA_MODIFIED;
1466 spin_unlock(&lli->lli_lock);
1467 }
1468
1469 ll_ioepoch_open(lli, op_data->op_ioepoch);
34e1f2bb
JL
1470 if (!S_ISREG(inode->i_mode)) {
1471 rc = 0;
1472 goto out;
1473 }
d7e09d03
PT
1474
1475 if (attr->ia_valid & (ATTR_SIZE |
1476 ATTR_ATIME | ATTR_ATIME_SET |
1477 ATTR_MTIME | ATTR_MTIME_SET))
1478 /* For truncate and utimes sending attributes to OSTs, setting
1479 * mtime/atime to the past will be performed under PW [0:EOF]
1480 * extent lock (new_size:EOF for truncate). It may seem
1481 * excessive to send mtime/atime updates to OSTs when not
1482 * setting times to past, but it is necessary due to possible
1483 * time de-synchronization between MDT inode and OST objects */
178ba1e0
BJ
1484 if (attr->ia_valid & ATTR_SIZE)
1485 down_write(&lli->lli_trunc_sem);
d7e09d03 1486 rc = ll_setattr_ost(inode, attr);
178ba1e0
BJ
1487 if (attr->ia_valid & ATTR_SIZE)
1488 up_write(&lli->lli_trunc_sem);
d7e09d03
PT
1489out:
1490 if (op_data) {
1491 if (op_data->op_ioepoch) {
1492 rc1 = ll_setattr_done_writing(inode, op_data, mod);
1493 if (!rc)
1494 rc = rc1;
1495 }
1496 ll_finish_md_op_data(op_data);
1497 }
1498 if (!S_ISDIR(inode->i_mode)) {
d7e09d03 1499 mutex_lock(&inode->i_mutex);
a720b790 1500 if ((attr->ia_valid & ATTR_SIZE) && !hsm_import)
d7e09d03
PT
1501 inode_dio_wait(inode);
1502 }
1503
1504 ll_stats_ops_tally(ll_i2sbi(inode), (attr->ia_valid & ATTR_SIZE) ?
1505 LPROC_LL_TRUNC : LPROC_LL_SETATTR, 1);
1506
251c4317 1507 return rc;
d7e09d03
PT
1508}
1509
1510int ll_setattr(struct dentry *de, struct iattr *attr)
1511{
1512 int mode = de->d_inode->i_mode;
1513
1514 if ((attr->ia_valid & (ATTR_CTIME|ATTR_SIZE|ATTR_MODE)) ==
1515 (ATTR_CTIME|ATTR_SIZE|ATTR_MODE))
1516 attr->ia_valid |= MDS_OPEN_OWNEROVERRIDE;
1517
1518 if (((attr->ia_valid & (ATTR_MODE|ATTR_FORCE|ATTR_SIZE)) ==
1519 (ATTR_SIZE|ATTR_MODE)) &&
1520 (((mode & S_ISUID) && !(attr->ia_mode & S_ISUID)) ||
1521 (((mode & (S_ISGID|S_IXGRP)) == (S_ISGID|S_IXGRP)) &&
1522 !(attr->ia_mode & S_ISGID))))
1523 attr->ia_valid |= ATTR_FORCE;
1524
98639249
NC
1525 if ((attr->ia_valid & ATTR_MODE) &&
1526 (mode & S_ISUID) &&
d7e09d03
PT
1527 !(attr->ia_mode & S_ISUID) &&
1528 !(attr->ia_valid & ATTR_KILL_SUID))
1529 attr->ia_valid |= ATTR_KILL_SUID;
1530
98639249
NC
1531 if ((attr->ia_valid & ATTR_MODE) &&
1532 ((mode & (S_ISGID|S_IXGRP)) == (S_ISGID|S_IXGRP)) &&
d7e09d03
PT
1533 !(attr->ia_mode & S_ISGID) &&
1534 !(attr->ia_valid & ATTR_KILL_SGID))
1535 attr->ia_valid |= ATTR_KILL_SGID;
1536
a720b790 1537 return ll_setattr_raw(de, attr, false);
d7e09d03
PT
1538}
1539
1540int ll_statfs_internal(struct super_block *sb, struct obd_statfs *osfs,
1541 __u64 max_age, __u32 flags)
1542{
1543 struct ll_sb_info *sbi = ll_s2sbi(sb);
1544 struct obd_statfs obd_osfs;
1545 int rc;
d7e09d03
PT
1546
1547 rc = obd_statfs(NULL, sbi->ll_md_exp, osfs, max_age, flags);
1548 if (rc) {
1549 CERROR("md_statfs fails: rc = %d\n", rc);
0a3bdb00 1550 return rc;
d7e09d03
PT
1551 }
1552
1553 osfs->os_type = sb->s_magic;
1554
b0f5aad5 1555 CDEBUG(D_SUPER, "MDC blocks %llu/%llu objects %llu/%llu\n",
1d8cb70c
GD
1556 osfs->os_bavail, osfs->os_blocks, osfs->os_ffree,
1557 osfs->os_files);
d7e09d03
PT
1558
1559 if (sbi->ll_flags & LL_SBI_LAZYSTATFS)
1560 flags |= OBD_STATFS_NODELAY;
1561
1562 rc = obd_statfs_rqset(sbi->ll_dt_exp, &obd_osfs, max_age, flags);
1563 if (rc) {
1564 CERROR("obd_statfs fails: rc = %d\n", rc);
0a3bdb00 1565 return rc;
d7e09d03
PT
1566 }
1567
b0f5aad5 1568 CDEBUG(D_SUPER, "OSC blocks %llu/%llu objects %llu/%llu\n",
d7e09d03
PT
1569 obd_osfs.os_bavail, obd_osfs.os_blocks, obd_osfs.os_ffree,
1570 obd_osfs.os_files);
1571
1572 osfs->os_bsize = obd_osfs.os_bsize;
1573 osfs->os_blocks = obd_osfs.os_blocks;
1574 osfs->os_bfree = obd_osfs.os_bfree;
1575 osfs->os_bavail = obd_osfs.os_bavail;
1576
1577 /* If we don't have as many objects free on the OST as inodes
1578 * on the MDS, we reduce the total number of inodes to
1579 * compensate, so that the "inodes in use" number is correct.
1580 */
1581 if (obd_osfs.os_ffree < osfs->os_ffree) {
1582 osfs->os_files = (osfs->os_files - osfs->os_ffree) +
1583 obd_osfs.os_ffree;
1584 osfs->os_ffree = obd_osfs.os_ffree;
1585 }
1586
0a3bdb00 1587 return rc;
d7e09d03
PT
1588}
1589int ll_statfs(struct dentry *de, struct kstatfs *sfs)
1590{
1591 struct super_block *sb = de->d_sb;
1592 struct obd_statfs osfs;
1593 int rc;
1594
b0f5aad5 1595 CDEBUG(D_VFSTRACE, "VFS Op: at %llu jiffies\n", get_jiffies_64());
d7e09d03
PT
1596 ll_stats_ops_tally(ll_s2sbi(sb), LPROC_LL_STAFS, 1);
1597
1598 /* Some amount of caching on the client is allowed */
1599 rc = ll_statfs_internal(sb, &osfs,
1600 cfs_time_shift_64(-OBD_STATFS_CACHE_SECONDS),
1601 0);
1602 if (rc)
1603 return rc;
1604
1605 statfs_unpack(sfs, &osfs);
1606
1607 /* We need to downshift for all 32-bit kernels, because we can't
1608 * tell if the kernel is being called via sys_statfs64() or not.
1609 * Stop before overflowing f_bsize - in which case it is better
1610 * to just risk EOVERFLOW if caller is using old sys_statfs(). */
1611 if (sizeof(long) < 8) {
1612 while (osfs.os_blocks > ~0UL && sfs->f_bsize < 0x40000000) {
1613 sfs->f_bsize <<= 1;
1614
1615 osfs.os_blocks >>= 1;
1616 osfs.os_bfree >>= 1;
1617 osfs.os_bavail >>= 1;
1618 }
1619 }
1620
1621 sfs->f_blocks = osfs.os_blocks;
1622 sfs->f_bfree = osfs.os_bfree;
1623 sfs->f_bavail = osfs.os_bavail;
bd994071 1624 sfs->f_fsid = ll_s2sbi(sb)->ll_fsid;
d7e09d03
PT
1625 return 0;
1626}
1627
1628void ll_inode_size_lock(struct inode *inode)
1629{
1630 struct ll_inode_info *lli;
1631
1632 LASSERT(!S_ISDIR(inode->i_mode));
1633
1634 lli = ll_i2info(inode);
47a57bde 1635 mutex_lock(&lli->lli_size_mutex);
d7e09d03
PT
1636}
1637
1638void ll_inode_size_unlock(struct inode *inode)
1639{
1640 struct ll_inode_info *lli;
1641
1642 lli = ll_i2info(inode);
47a57bde 1643 mutex_unlock(&lli->lli_size_mutex);
d7e09d03
PT
1644}
1645
1646void ll_update_inode(struct inode *inode, struct lustre_md *md)
1647{
1648 struct ll_inode_info *lli = ll_i2info(inode);
1649 struct mdt_body *body = md->body;
1650 struct lov_stripe_md *lsm = md->lsm;
1651 struct ll_sb_info *sbi = ll_i2sbi(inode);
1652
1653 LASSERT ((lsm != NULL) == ((body->valid & OBD_MD_FLEASIZE) != 0));
1654 if (lsm != NULL) {
1655 if (!lli->lli_has_smd &&
1656 !(sbi->ll_flags & LL_SBI_LAYOUT_LOCK))
1657 cl_file_inode_init(inode, md);
1658
1659 lli->lli_maxbytes = lsm->lsm_maxbytes;
1660 if (lli->lli_maxbytes > MAX_LFS_FILESIZE)
1661 lli->lli_maxbytes = MAX_LFS_FILESIZE;
1662 }
1663
1664 if (sbi->ll_flags & LL_SBI_RMT_CLIENT) {
1665 if (body->valid & OBD_MD_FLRMTPERM)
1666 ll_update_remote_perm(inode, md->remote_perm);
1667 }
1668#ifdef CONFIG_FS_POSIX_ACL
1669 else if (body->valid & OBD_MD_FLACL) {
1670 spin_lock(&lli->lli_lock);
1671 if (lli->lli_posix_acl)
1672 posix_acl_release(lli->lli_posix_acl);
1673 lli->lli_posix_acl = md->posix_acl;
1674 spin_unlock(&lli->lli_lock);
1675 }
1676#endif
c1e2699d 1677 inode->i_ino = cl_fid_build_ino(&body->fid1,
1678 sbi->ll_flags & LL_SBI_32BIT_API);
d7e09d03
PT
1679 inode->i_generation = cl_fid_build_gen(&body->fid1);
1680
1681 if (body->valid & OBD_MD_FLATIME) {
1682 if (body->atime > LTIME_S(inode->i_atime))
1683 LTIME_S(inode->i_atime) = body->atime;
1684 lli->lli_lvb.lvb_atime = body->atime;
1685 }
1686 if (body->valid & OBD_MD_FLMTIME) {
1687 if (body->mtime > LTIME_S(inode->i_mtime)) {
b0f5aad5
GKH
1688 CDEBUG(D_INODE, "setting ino %lu mtime from %lu to %llu\n",
1689 inode->i_ino, LTIME_S(inode->i_mtime),
1690 body->mtime);
d7e09d03
PT
1691 LTIME_S(inode->i_mtime) = body->mtime;
1692 }
1693 lli->lli_lvb.lvb_mtime = body->mtime;
1694 }
1695 if (body->valid & OBD_MD_FLCTIME) {
1696 if (body->ctime > LTIME_S(inode->i_ctime))
1697 LTIME_S(inode->i_ctime) = body->ctime;
1698 lli->lli_lvb.lvb_ctime = body->ctime;
1699 }
1700 if (body->valid & OBD_MD_FLMODE)
1701 inode->i_mode = (inode->i_mode & S_IFMT)|(body->mode & ~S_IFMT);
1702 if (body->valid & OBD_MD_FLTYPE)
1703 inode->i_mode = (inode->i_mode & ~S_IFMT)|(body->mode & S_IFMT);
1704 LASSERT(inode->i_mode != 0);
566be54d 1705 if (S_ISREG(inode->i_mode))
e6768831
TJ
1706 inode->i_blkbits = min(PTLRPC_MAX_BRW_BITS + 1,
1707 LL_MAX_BLKSIZE_BITS);
566be54d 1708 else
d7e09d03 1709 inode->i_blkbits = inode->i_sb->s_blocksize_bits;
d7e09d03 1710 if (body->valid & OBD_MD_FLUID)
4b1a25f0 1711 inode->i_uid = make_kuid(&init_user_ns, body->uid);
d7e09d03 1712 if (body->valid & OBD_MD_FLGID)
4b1a25f0 1713 inode->i_gid = make_kgid(&init_user_ns, body->gid);
d7e09d03
PT
1714 if (body->valid & OBD_MD_FLFLAGS)
1715 inode->i_flags = ll_ext_to_inode_flags(body->flags);
1716 if (body->valid & OBD_MD_FLNLINK)
1717 set_nlink(inode, body->nlink);
1718 if (body->valid & OBD_MD_FLRDEV)
1719 inode->i_rdev = old_decode_dev(body->rdev);
1720
1721 if (body->valid & OBD_MD_FLID) {
1722 /* FID shouldn't be changed! */
1723 if (fid_is_sane(&lli->lli_fid)) {
1724 LASSERTF(lu_fid_eq(&lli->lli_fid, &body->fid1),
1725 "Trying to change FID "DFID
1726 " to the "DFID", inode %lu/%u(%p)\n",
1727 PFID(&lli->lli_fid), PFID(&body->fid1),
1728 inode->i_ino, inode->i_generation, inode);
1729 } else
1730 lli->lli_fid = body->fid1;
1731 }
1732
1733 LASSERT(fid_seq(&lli->lli_fid) != 0);
1734
1735 if (body->valid & OBD_MD_FLSIZE) {
1736 if (exp_connect_som(ll_i2mdexp(inode)) &&
1737 S_ISREG(inode->i_mode)) {
1738 struct lustre_handle lockh;
1739 ldlm_mode_t mode;
1740
1741 /* As it is possible a blocking ast has been processed
1742 * by this time, we need to check there is an UPDATE
1743 * lock on the client and set LLIF_MDS_SIZE_LOCK holding
1744 * it. */
1745 mode = ll_take_md_lock(inode, MDS_INODELOCK_UPDATE,
7fc1f831
AP
1746 &lockh, LDLM_FL_CBPENDING,
1747 LCK_CR | LCK_CW |
1748 LCK_PR | LCK_PW);
d7e09d03
PT
1749 if (mode) {
1750 if (lli->lli_flags & (LLIF_DONE_WRITING |
1751 LLIF_EPOCH_PENDING |
1752 LLIF_SOM_DIRTY)) {
2d00bd17 1753 CERROR("ino %lu flags %u still has size authority! do not trust the size got from MDS\n",
d7e09d03
PT
1754 inode->i_ino, lli->lli_flags);
1755 } else {
1756 /* Use old size assignment to avoid
1757 * deadlock bz14138 & bz14326 */
1758 i_size_write(inode, body->size);
ae5ef67b 1759 spin_lock(&lli->lli_lock);
d7e09d03 1760 lli->lli_flags |= LLIF_MDS_SIZE_LOCK;
ae5ef67b 1761 spin_unlock(&lli->lli_lock);
d7e09d03
PT
1762 }
1763 ldlm_lock_decref(&lockh, mode);
1764 }
1765 } else {
1766 /* Use old size assignment to avoid
1767 * deadlock bz14138 & bz14326 */
1768 i_size_write(inode, body->size);
1769
1770 CDEBUG(D_VFSTRACE, "inode=%lu, updating i_size %llu\n",
1771 inode->i_ino, (unsigned long long)body->size);
1772 }
1773
1774 if (body->valid & OBD_MD_FLBLOCKS)
1775 inode->i_blocks = body->blocks;
1776 }
1777
1778 if (body->valid & OBD_MD_FLMDSCAPA) {
1779 LASSERT(md->mds_capa);
1780 ll_add_capa(inode, md->mds_capa);
1781 }
1782 if (body->valid & OBD_MD_FLOSSCAPA) {
1783 LASSERT(md->oss_capa);
1784 ll_add_capa(inode, md->oss_capa);
1785 }
5ea17d6c
JL
1786
1787 if (body->valid & OBD_MD_TSTATE) {
1788 if (body->t_state & MS_RESTORE)
1789 lli->lli_flags |= LLIF_FILE_RESTORING;
1790 }
d7e09d03
PT
1791}
1792
1793void ll_read_inode2(struct inode *inode, void *opaque)
1794{
1795 struct lustre_md *md = opaque;
1796 struct ll_inode_info *lli = ll_i2info(inode);
d7e09d03
PT
1797
1798 CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID"(%p)\n",
1799 PFID(&lli->lli_fid), inode);
1800
1801 LASSERT(!lli->lli_has_smd);
1802
1803 /* Core attributes from the MDS first. This is a new inode, and
1804 * the VFS doesn't zero times in the core inode so we have to do
1805 * it ourselves. They will be overwritten by either MDS or OST
1806 * attributes - we just need to make sure they aren't newer. */
1807 LTIME_S(inode->i_mtime) = 0;
1808 LTIME_S(inode->i_atime) = 0;
1809 LTIME_S(inode->i_ctime) = 0;
1810 inode->i_rdev = 0;
1811 ll_update_inode(inode, md);
1812
1813 /* OIDEBUG(inode); */
1814
1815 /* initializing backing dev info. */
1816 inode->i_mapping->backing_dev_info = &s2lsi(inode->i_sb)->lsi_bdi;
1817
1818
1819 if (S_ISREG(inode->i_mode)) {
1820 struct ll_sb_info *sbi = ll_i2sbi(inode);
cf29a7b6 1821
d7e09d03
PT
1822 inode->i_op = &ll_file_inode_operations;
1823 inode->i_fop = sbi->ll_fop;
1824 inode->i_mapping->a_ops = (struct address_space_operations *)&ll_aops;
d7e09d03
PT
1825 } else if (S_ISDIR(inode->i_mode)) {
1826 inode->i_op = &ll_dir_inode_operations;
1827 inode->i_fop = &ll_dir_operations;
d7e09d03
PT
1828 } else if (S_ISLNK(inode->i_mode)) {
1829 inode->i_op = &ll_fast_symlink_inode_operations;
d7e09d03
PT
1830 } else {
1831 inode->i_op = &ll_special_inode_operations;
1832
1833 init_special_inode(inode, inode->i_mode,
1834 inode->i_rdev);
d7e09d03
PT
1835 }
1836}
1837
1838void ll_delete_inode(struct inode *inode)
1839{
1840 struct cl_inode_info *lli = cl_i2info(inode);
d7e09d03
PT
1841
1842 if (S_ISREG(inode->i_mode) && lli->lli_clob != NULL)
1843 /* discard all dirty pages before truncating them, required by
1844 * osc_extent implementation at LU-1030. */
65fb55d1
NY
1845 cl_sync_file_range(inode, 0, OBD_OBJECT_EOF,
1846 CL_FSYNC_DISCARD, 1);
d7e09d03 1847
91b0abe3 1848 truncate_inode_pages_final(&inode->i_data);
d7e09d03
PT
1849
1850 /* Workaround for LU-118 */
1851 if (inode->i_data.nrpages) {
c4226c54
VT
1852 spin_lock_irq(&inode->i_data.tree_lock);
1853 spin_unlock_irq(&inode->i_data.tree_lock);
d7e09d03 1854 LASSERTF(inode->i_data.nrpages == 0,
2d00bd17 1855 "inode=%lu/%u(%p) nrpages=%lu, see http://jira.whamcloud.com/browse/LU-118\n",
d7e09d03
PT
1856 inode->i_ino, inode->i_generation, inode,
1857 inode->i_data.nrpages);
1858 }
1859 /* Workaround end */
1860
1861 ll_clear_inode(inode);
1862 clear_inode(inode);
d7e09d03
PT
1863}
1864
1865int ll_iocontrol(struct inode *inode, struct file *file,
1866 unsigned int cmd, unsigned long arg)
1867{
1868 struct ll_sb_info *sbi = ll_i2sbi(inode);
1869 struct ptlrpc_request *req = NULL;
1870 int rc, flags = 0;
d7e09d03 1871
a58a38ac 1872 switch (cmd) {
d7e09d03
PT
1873 case FSFILT_IOC_GETFLAGS: {
1874 struct mdt_body *body;
1875 struct md_op_data *op_data;
1876
1877 op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL,
1878 0, 0, LUSTRE_OPC_ANY,
1879 NULL);
1880 if (IS_ERR(op_data))
0a3bdb00 1881 return PTR_ERR(op_data);
d7e09d03
PT
1882
1883 op_data->op_valid = OBD_MD_FLFLAGS;
1884 rc = md_getattr(sbi->ll_md_exp, op_data, &req);
1885 ll_finish_md_op_data(op_data);
1886 if (rc) {
1887 CERROR("failure %d inode %lu\n", rc, inode->i_ino);
0a3bdb00 1888 return -abs(rc);
d7e09d03
PT
1889 }
1890
1891 body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
1892
1893 flags = body->flags;
1894
1895 ptlrpc_req_finished(req);
1896
0a3bdb00 1897 return put_user(flags, (int *)arg);
d7e09d03
PT
1898 }
1899 case FSFILT_IOC_SETFLAGS: {
1900 struct lov_stripe_md *lsm;
1901 struct obd_info oinfo = { { { 0 } } };
1902 struct md_op_data *op_data;
1903
1904 if (get_user(flags, (int *)arg))
0a3bdb00 1905 return -EFAULT;
d7e09d03
PT
1906
1907 op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL, 0, 0,
1908 LUSTRE_OPC_ANY, NULL);
1909 if (IS_ERR(op_data))
0a3bdb00 1910 return PTR_ERR(op_data);
d7e09d03
PT
1911
1912 ((struct ll_iattr *)&op_data->op_attr)->ia_attr_flags = flags;
1913 op_data->op_attr.ia_valid |= ATTR_ATTR_FLAG;
1914 rc = md_setattr(sbi->ll_md_exp, op_data,
1915 NULL, 0, NULL, 0, &req, NULL);
1916 ll_finish_md_op_data(op_data);
1917 ptlrpc_req_finished(req);
1918 if (rc)
0a3bdb00 1919 return rc;
d7e09d03
PT
1920
1921 inode->i_flags = ll_ext_to_inode_flags(flags);
1922
1923 lsm = ccc_inode_lsm_get(inode);
5dd16419
JX
1924 if (!lsm_has_objects(lsm)) {
1925 ccc_inode_lsm_put(inode, lsm);
0a3bdb00 1926 return 0;
5dd16419 1927 }
d7e09d03
PT
1928
1929 OBDO_ALLOC(oinfo.oi_oa);
1930 if (!oinfo.oi_oa) {
1931 ccc_inode_lsm_put(inode, lsm);
0a3bdb00 1932 return -ENOMEM;
d7e09d03
PT
1933 }
1934 oinfo.oi_md = lsm;
1935 oinfo.oi_oa->o_oi = lsm->lsm_oi;
1936 oinfo.oi_oa->o_flags = flags;
1937 oinfo.oi_oa->o_valid = OBD_MD_FLID | OBD_MD_FLFLAGS |
1938 OBD_MD_FLGROUP;
1939 oinfo.oi_capa = ll_mdscapa_get(inode);
1940 obdo_set_parent_fid(oinfo.oi_oa, &ll_i2info(inode)->lli_fid);
1941 rc = obd_setattr_rqset(sbi->ll_dt_exp, &oinfo, NULL);
1942 capa_put(oinfo.oi_capa);
1943 OBDO_FREE(oinfo.oi_oa);
1944 ccc_inode_lsm_put(inode, lsm);
1945
1946 if (rc && rc != -EPERM && rc != -EACCES)
1947 CERROR("osc_setattr_async fails: rc = %d\n", rc);
1948
0a3bdb00 1949 return rc;
d7e09d03
PT
1950 }
1951 default:
0a3bdb00 1952 return -ENOSYS;
d7e09d03
PT
1953 }
1954
0a3bdb00 1955 return 0;
d7e09d03
PT
1956}
1957
1958int ll_flush_ctx(struct inode *inode)
1959{
1960 struct ll_sb_info *sbi = ll_i2sbi(inode);
1961
4b1a25f0
PT
1962 CDEBUG(D_SEC, "flush context for user %d\n",
1963 from_kuid(&init_user_ns, current_uid()));
d7e09d03
PT
1964
1965 obd_set_info_async(NULL, sbi->ll_md_exp,
1966 sizeof(KEY_FLUSH_CTX), KEY_FLUSH_CTX,
1967 0, NULL, NULL);
1968 obd_set_info_async(NULL, sbi->ll_dt_exp,
1969 sizeof(KEY_FLUSH_CTX), KEY_FLUSH_CTX,
1970 0, NULL, NULL);
1971 return 0;
1972}
1973
1974/* umount -f client means force down, don't save state */
1975void ll_umount_begin(struct super_block *sb)
1976{
1977 struct ll_sb_info *sbi = ll_s2sbi(sb);
1978 struct obd_device *obd;
1979 struct obd_ioctl_data *ioc_data;
d7e09d03
PT
1980
1981 CDEBUG(D_VFSTRACE, "VFS Op: superblock %p count %d active %d\n", sb,
1982 sb->s_count, atomic_read(&sb->s_active));
1983
1984 obd = class_exp2obd(sbi->ll_md_exp);
1985 if (obd == NULL) {
55f5a824 1986 CERROR("Invalid MDC connection handle %#llx\n",
d7e09d03 1987 sbi->ll_md_exp->exp_handle.h_cookie);
d7e09d03
PT
1988 return;
1989 }
1990 obd->obd_force = 1;
1991
1992 obd = class_exp2obd(sbi->ll_dt_exp);
1993 if (obd == NULL) {
55f5a824 1994 CERROR("Invalid LOV connection handle %#llx\n",
d7e09d03 1995 sbi->ll_dt_exp->exp_handle.h_cookie);
d7e09d03
PT
1996 return;
1997 }
1998 obd->obd_force = 1;
1999
496a51bd 2000 ioc_data = kzalloc(sizeof(*ioc_data), GFP_NOFS);
d7e09d03
PT
2001 if (ioc_data) {
2002 obd_iocontrol(IOC_OSC_SET_ACTIVE, sbi->ll_md_exp,
ec83e611 2003 sizeof(*ioc_data), ioc_data, NULL);
d7e09d03
PT
2004
2005 obd_iocontrol(IOC_OSC_SET_ACTIVE, sbi->ll_dt_exp,
ec83e611 2006 sizeof(*ioc_data), ioc_data, NULL);
d7e09d03
PT
2007
2008 OBD_FREE_PTR(ioc_data);
2009 }
2010
d7e09d03
PT
2011 /* Really, we'd like to wait until there are no requests outstanding,
2012 * and then continue. For now, we just invalidate the requests,
2013 * schedule() and sleep one second if needed, and hope.
2014 */
2015 schedule();
d7e09d03
PT
2016}
2017
2018int ll_remount_fs(struct super_block *sb, int *flags, char *data)
2019{
2020 struct ll_sb_info *sbi = ll_s2sbi(sb);
2021 char *profilenm = get_profile_name(sb);
2022 int err;
2023 __u32 read_only;
2024
2025 if ((*flags & MS_RDONLY) != (sb->s_flags & MS_RDONLY)) {
2026 read_only = *flags & MS_RDONLY;
2027 err = obd_set_info_async(NULL, sbi->ll_md_exp,
2028 sizeof(KEY_READ_ONLY),
2029 KEY_READ_ONLY, sizeof(read_only),
2030 &read_only, NULL);
2031 if (err) {
2032 LCONSOLE_WARN("Failed to remount %s %s (%d)\n",
2033 profilenm, read_only ?
2034 "read-only" : "read-write", err);
2035 return err;
2036 }
2037
2038 if (read_only)
2039 sb->s_flags |= MS_RDONLY;
2040 else
2041 sb->s_flags &= ~MS_RDONLY;
2042
2043 if (sbi->ll_flags & LL_SBI_VERBOSE)
2044 LCONSOLE_WARN("Remounted %s %s\n", profilenm,
2045 read_only ? "read-only" : "read-write");
2046 }
2047 return 0;
2048}
2049
2050int ll_prep_inode(struct inode **inode, struct ptlrpc_request *req,
2051 struct super_block *sb, struct lookup_intent *it)
2052{
2053 struct ll_sb_info *sbi = NULL;
2054 struct lustre_md md;
2055 int rc;
d7e09d03
PT
2056
2057 LASSERT(*inode || sb);
2058 sbi = sb ? ll_s2sbi(sb) : ll_i2sbi(*inode);
2059 rc = md_get_lustre_md(sbi->ll_md_exp, req, sbi->ll_dt_exp,
2060 sbi->ll_md_exp, &md);
2061 if (rc)
0a3bdb00 2062 return rc;
d7e09d03
PT
2063
2064 if (*inode) {
2065 ll_update_inode(*inode, &md);
2066 } else {
2067 LASSERT(sb != NULL);
2068
2069 /*
2070 * At this point server returns to client's same fid as client
2071 * generated for creating. So using ->fid1 is okay here.
2072 */
2073 LASSERT(fid_is_sane(&md.body->fid1));
2074
2075 *inode = ll_iget(sb, cl_fid_build_ino(&md.body->fid1,
c1e2699d 2076 sbi->ll_flags & LL_SBI_32BIT_API),
d7e09d03
PT
2077 &md);
2078 if (*inode == NULL || IS_ERR(*inode)) {
2079#ifdef CONFIG_FS_POSIX_ACL
2080 if (md.posix_acl) {
2081 posix_acl_release(md.posix_acl);
2082 md.posix_acl = NULL;
2083 }
2084#endif
2085 rc = IS_ERR(*inode) ? PTR_ERR(*inode) : -ENOMEM;
2086 *inode = NULL;
2087 CERROR("new_inode -fatal: rc %d\n", rc);
34e1f2bb 2088 goto out;
d7e09d03
PT
2089 }
2090 }
2091
2092 /* Handling piggyback layout lock.
2093 * Layout lock can be piggybacked by getattr and open request.
2094 * The lsm can be applied to inode only if it comes with a layout lock
2095 * otherwise correct layout may be overwritten, for example:
2096 * 1. proc1: mdt returns a lsm but not granting layout
2097 * 2. layout was changed by another client
2098 * 3. proc2: refresh layout and layout lock granted
2099 * 4. proc1: to apply a stale layout */
2100 if (it != NULL && it->d.lustre.it_lock_mode != 0) {
2101 struct lustre_handle lockh;
2102 struct ldlm_lock *lock;
2103
2104 lockh.cookie = it->d.lustre.it_lock_handle;
2105 lock = ldlm_handle2lock(&lockh);
2106 LASSERT(lock != NULL);
2107 if (ldlm_has_layout(lock)) {
2108 struct cl_object_conf conf;
2109
2110 memset(&conf, 0, sizeof(conf));
2111 conf.coc_opc = OBJECT_CONF_SET;
2112 conf.coc_inode = *inode;
2113 conf.coc_lock = lock;
2114 conf.u.coc_md = &md;
2115 (void)ll_layout_conf(*inode, &conf);
2116 }
2117 LDLM_LOCK_PUT(lock);
2118 }
2119
2120out:
2121 if (md.lsm != NULL)
2122 obd_free_memmd(sbi->ll_dt_exp, &md.lsm);
2123 md_free_lustre_md(sbi->ll_md_exp, &md);
0a3bdb00 2124 return rc;
d7e09d03
PT
2125}
2126
2127int ll_obd_statfs(struct inode *inode, void *arg)
2128{
2129 struct ll_sb_info *sbi = NULL;
2130 struct obd_export *exp;
2131 char *buf = NULL;
2132 struct obd_ioctl_data *data = NULL;
2133 __u32 type;
2134 __u32 flags;
2135 int len = 0, rc;
2136
c650ba73
TR
2137 if (!inode) {
2138 rc = -EINVAL;
2139 goto out_statfs;
2140 }
2141
2142 sbi = ll_i2sbi(inode);
2143 if (!sbi) {
34e1f2bb
JL
2144 rc = -EINVAL;
2145 goto out_statfs;
2146 }
d7e09d03
PT
2147
2148 rc = obd_ioctl_getdata(&buf, &len, arg);
2149 if (rc)
34e1f2bb 2150 goto out_statfs;
d7e09d03 2151
bdbb0512 2152 data = (void *)buf;
d7e09d03 2153 if (!data->ioc_inlbuf1 || !data->ioc_inlbuf2 ||
34e1f2bb
JL
2154 !data->ioc_pbuf1 || !data->ioc_pbuf2) {
2155 rc = -EINVAL;
2156 goto out_statfs;
2157 }
d7e09d03
PT
2158
2159 if (data->ioc_inllen1 != sizeof(__u32) ||
2160 data->ioc_inllen2 != sizeof(__u32) ||
2161 data->ioc_plen1 != sizeof(struct obd_statfs) ||
34e1f2bb
JL
2162 data->ioc_plen2 != sizeof(struct obd_uuid)) {
2163 rc = -EINVAL;
2164 goto out_statfs;
2165 }
d7e09d03
PT
2166
2167 memcpy(&type, data->ioc_inlbuf1, sizeof(__u32));
2168 if (type & LL_STATFS_LMV)
2169 exp = sbi->ll_md_exp;
2170 else if (type & LL_STATFS_LOV)
2171 exp = sbi->ll_dt_exp;
34e1f2bb
JL
2172 else {
2173 rc = -ENODEV;
2174 goto out_statfs;
2175 }
d7e09d03
PT
2176
2177 flags = (type & LL_STATFS_NODELAY) ? OBD_STATFS_NODELAY : 0;
2178 rc = obd_iocontrol(IOC_OBD_STATFS, exp, len, buf, &flags);
2179 if (rc)
34e1f2bb 2180 goto out_statfs;
d7e09d03
PT
2181out_statfs:
2182 if (buf)
2183 obd_ioctl_freedata(buf, len);
2184 return rc;
2185}
2186
2187int ll_process_config(struct lustre_cfg *lcfg)
2188{
2189 char *ptr;
2190 void *sb;
2191 struct lprocfs_static_vars lvars;
2192 unsigned long x;
2193 int rc = 0;
2194
2195 lprocfs_llite_init_vars(&lvars);
2196
2197 /* The instance name contains the sb: lustre-client-aacfe000 */
2198 ptr = strrchr(lustre_cfg_string(lcfg, 0), '-');
2199 if (!ptr || !*(++ptr))
2200 return -EINVAL;
2201 if (sscanf(ptr, "%lx", &x) != 1)
2202 return -EINVAL;
2203 sb = (void *)x;
2204 /* This better be a real Lustre superblock! */
2205 LASSERT(s2lsi((struct super_block *)sb)->lsi_lmd->lmd_magic == LMD_MAGIC);
2206
2207 /* Note we have not called client_common_fill_super yet, so
2208 proc fns must be able to handle that! */
2209 rc = class_process_proc_param(PARAM_LLITE, lvars.obd_vars,
2210 lcfg, sb);
2211 if (rc > 0)
2212 rc = 0;
fbe7c6c7 2213 return rc;
d7e09d03
PT
2214}
2215
2216/* this function prepares md_op_data hint for passing ot down to MD stack. */
aff9d8e8 2217struct md_op_data *ll_prep_md_op_data(struct md_op_data *op_data,
d7e09d03
PT
2218 struct inode *i1, struct inode *i2,
2219 const char *name, int namelen,
2220 int mode, __u32 opc, void *data)
2221{
2222 LASSERT(i1 != NULL);
2223
2224 if (namelen > ll_i2sbi(i1)->ll_namelen)
2225 return ERR_PTR(-ENAMETOOLONG);
2226
2227 if (op_data == NULL)
496a51bd 2228 op_data = kzalloc(sizeof(*op_data), GFP_NOFS);
d7e09d03
PT
2229
2230 if (op_data == NULL)
2231 return ERR_PTR(-ENOMEM);
2232
2233 ll_i2gids(op_data->op_suppgids, i1, i2);
2234 op_data->op_fid1 = *ll_inode2fid(i1);
2235 op_data->op_capa1 = ll_mdscapa_get(i1);
2236
2237 if (i2) {
2238 op_data->op_fid2 = *ll_inode2fid(i2);
2239 op_data->op_capa2 = ll_mdscapa_get(i2);
2240 } else {
2241 fid_zero(&op_data->op_fid2);
2242 op_data->op_capa2 = NULL;
2243 }
2244
2245 op_data->op_name = name;
2246 op_data->op_namelen = namelen;
2247 op_data->op_mode = mode;
7264b8a5 2248 op_data->op_mod_time = get_seconds();
4b1a25f0
PT
2249 op_data->op_fsuid = from_kuid(&init_user_ns, current_fsuid());
2250 op_data->op_fsgid = from_kgid(&init_user_ns, current_fsgid());
d7e09d03
PT
2251 op_data->op_cap = cfs_curproc_cap_pack();
2252 op_data->op_bias = 0;
2253 op_data->op_cli_flags = 0;
2254 if ((opc == LUSTRE_OPC_CREATE) && (name != NULL) &&
2255 filename_is_volatile(name, namelen, NULL))
2256 op_data->op_bias |= MDS_CREATE_VOLATILE;
2257 op_data->op_opc = opc;
2258 op_data->op_mds = 0;
2259 op_data->op_data = data;
2260
2261 /* If the file is being opened after mknod() (normally due to NFS)
2262 * try to use the default stripe data from parent directory for
2263 * allocating OST objects. Try to pass the parent FID to MDS. */
2264 if (opc == LUSTRE_OPC_CREATE && i1 == i2 && S_ISREG(i2->i_mode) &&
2265 !ll_i2info(i2)->lli_has_smd) {
2266 struct ll_inode_info *lli = ll_i2info(i2);
2267
2268 spin_lock(&lli->lli_lock);
2269 if (likely(!lli->lli_has_smd && !fid_is_zero(&lli->lli_pfid)))
2270 op_data->op_fid1 = lli->lli_pfid;
2271 spin_unlock(&lli->lli_lock);
2272 /** We ignore parent's capability temporary. */
2273 }
2274
2275 /* When called by ll_setattr_raw, file is i1. */
2276 if (LLIF_DATA_MODIFIED & ll_i2info(i1)->lli_flags)
2277 op_data->op_bias |= MDS_DATA_MODIFIED;
2278
2279 return op_data;
2280}
2281
2282void ll_finish_md_op_data(struct md_op_data *op_data)
2283{
2284 capa_put(op_data->op_capa1);
2285 capa_put(op_data->op_capa2);
2286 OBD_FREE_PTR(op_data);
2287}
2288
2289int ll_show_options(struct seq_file *seq, struct dentry *dentry)
2290{
2291 struct ll_sb_info *sbi;
2292
2293 LASSERT((seq != NULL) && (dentry != NULL));
2294 sbi = ll_s2sbi(dentry->d_sb);
2295
2296 if (sbi->ll_flags & LL_SBI_NOLCK)
2297 seq_puts(seq, ",nolock");
2298
2299 if (sbi->ll_flags & LL_SBI_FLOCK)
2300 seq_puts(seq, ",flock");
2301
2302 if (sbi->ll_flags & LL_SBI_LOCALFLOCK)
2303 seq_puts(seq, ",localflock");
2304
2305 if (sbi->ll_flags & LL_SBI_USER_XATTR)
2306 seq_puts(seq, ",user_xattr");
2307
2308 if (sbi->ll_flags & LL_SBI_LAZYSTATFS)
2309 seq_puts(seq, ",lazystatfs");
2310
2311 if (sbi->ll_flags & LL_SBI_USER_FID2PATH)
2312 seq_puts(seq, ",user_fid2path");
2313
0a3bdb00 2314 return 0;
d7e09d03
PT
2315}
2316
2317/**
2318 * Get obd name by cmd, and copy out to user space
2319 */
2320int ll_get_obd_name(struct inode *inode, unsigned int cmd, unsigned long arg)
2321{
2322 struct ll_sb_info *sbi = ll_i2sbi(inode);
2323 struct obd_device *obd;
d7e09d03
PT
2324
2325 if (cmd == OBD_IOC_GETDTNAME)
2326 obd = class_exp2obd(sbi->ll_dt_exp);
2327 else if (cmd == OBD_IOC_GETMDNAME)
2328 obd = class_exp2obd(sbi->ll_md_exp);
2329 else
0a3bdb00 2330 return -EINVAL;
d7e09d03
PT
2331
2332 if (!obd)
0a3bdb00 2333 return -ENOENT;
d7e09d03
PT
2334
2335 if (copy_to_user((void *)arg, obd->obd_name,
2336 strlen(obd->obd_name) + 1))
0a3bdb00 2337 return -EFAULT;
d7e09d03 2338
0a3bdb00 2339 return 0;
d7e09d03
PT
2340}
2341
2342/**
2343 * Get lustre file system name by \a sbi. If \a buf is provided(non-NULL), the
2344 * fsname will be returned in this buffer; otherwise, a static buffer will be
2345 * used to store the fsname and returned to caller.
2346 */
2347char *ll_get_fsname(struct super_block *sb, char *buf, int buflen)
2348{
2349 static char fsname_static[MTI_NAME_MAXLEN];
2350 struct lustre_sb_info *lsi = s2lsi(sb);
2351 char *ptr;
2352 int len;
2353
2354 if (buf == NULL) {
2355 /* this means the caller wants to use static buffer
2356 * and it doesn't care about race. Usually this is
2357 * in error reporting path */
2358 buf = fsname_static;
2359 buflen = sizeof(fsname_static);
2360 }
2361
2362 len = strlen(lsi->lsi_lmd->lmd_profile);
2363 ptr = strrchr(lsi->lsi_lmd->lmd_profile, '-');
2364 if (ptr && (strcmp(ptr, "-client") == 0))
2365 len -= 7;
2366
2367 if (unlikely(len >= buflen))
2368 len = buflen - 1;
2369 strncpy(buf, lsi->lsi_lmd->lmd_profile, len);
2370 buf[len] = '\0';
2371
2372 return buf;
2373}
2374
d7e09d03
PT
2375void ll_dirty_page_discard_warn(struct page *page, int ioret)
2376{
2377 char *buf, *path = NULL;
2378 struct dentry *dentry = NULL;
2379 struct ccc_object *obj = cl_inode2ccc(page->mapping->host);
2380
2381 /* this can be called inside spin lock so use GFP_ATOMIC. */
2382 buf = (char *)__get_free_page(GFP_ATOMIC);
2383 if (buf != NULL) {
2384 dentry = d_find_alias(page->mapping->host);
2385 if (dentry != NULL)
1ad581eb 2386 path = dentry_path_raw(dentry, buf, PAGE_SIZE);
d7e09d03
PT
2387 }
2388
73b89907 2389 CDEBUG(D_WARNING,
2d00bd17
JP
2390 "%s: dirty page discard: %s/fid: " DFID "/%s may get corrupted (rc %d)\n",
2391 ll_get_fsname(page->mapping->host->i_sb, NULL, 0),
73b89907
RH
2392 s2lsi(page->mapping->host->i_sb)->lsi_lmd->lmd_dev,
2393 PFID(&obj->cob_header.coh_lu.loh_fid),
2394 (path && !IS_ERR(path)) ? path : "", ioret);
d7e09d03
PT
2395
2396 if (dentry != NULL)
2397 dput(dentry);
2398
2399 if (buf != NULL)
2400 free_page((unsigned long)buf);
2401}