Whamcloud - gitweb
b=20563
[fs/lustre-release.git] / lustre / llite / llite_lib.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
30  * Use is subject to license terms.
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/types.h>
45 #include <linux/version.h>
46 #include <linux/mm.h>
47
48 #include <lustre_lite.h>
49 #include <lustre_ha.h>
50 #include <lustre_dlm.h>
51 #include <lprocfs_status.h>
52 #include <lustre_disk.h>
53 #include <lustre_param.h>
54 #include <lustre_log.h>
55 #include <cl_object.h>
56 #include <obd_cksum.h>
57 #include "llite_internal.h"
58
59 cfs_mem_cache_t *ll_file_data_slab;
60
61 CFS_LIST_HEAD(ll_super_blocks);
62 cfs_spinlock_t ll_sb_lock = CFS_SPIN_LOCK_UNLOCKED;
63
64 extern struct address_space_operations ll_aops;
65 extern struct address_space_operations ll_dir_aops;
66
67 #ifndef log2
68 #define log2(n) cfs_ffz(~(n))
69 #endif
70
71 static struct ll_sb_info *ll_init_sbi(void)
72 {
73         struct ll_sb_info *sbi = NULL;
74         unsigned long pages;
75         struct sysinfo si;
76         class_uuid_t uuid;
77         int i;
78         ENTRY;
79
80         OBD_ALLOC(sbi, sizeof(*sbi));
81         if (!sbi)
82                 RETURN(NULL);
83
84         cfs_spin_lock_init(&sbi->ll_lock);
85         cfs_init_mutex(&sbi->ll_lco.lco_lock);
86         cfs_spin_lock_init(&sbi->ll_pp_extent_lock);
87         cfs_spin_lock_init(&sbi->ll_process_lock);
88         sbi->ll_rw_stats_on = 0;
89
90         si_meminfo(&si);
91         pages = si.totalram - si.totalhigh;
92         if (pages >> (20 - CFS_PAGE_SHIFT) < 512) {
93 #ifdef HAVE_BGL_SUPPORT
94                 sbi->ll_async_page_max = pages / 4;
95 #else
96                 sbi->ll_async_page_max = pages / 2;
97 #endif
98         } else {
99                 sbi->ll_async_page_max = (pages / 4) * 3;
100         }
101
102         sbi->ll_ra_info.ra_max_pages_per_file = min(pages / 32,
103                                            SBI_DEFAULT_READAHEAD_MAX);
104         sbi->ll_ra_info.ra_max_pages = sbi->ll_ra_info.ra_max_pages_per_file;
105         sbi->ll_ra_info.ra_max_read_ahead_whole_pages =
106                                            SBI_DEFAULT_READAHEAD_WHOLE_MAX;
107         CFS_INIT_LIST_HEAD(&sbi->ll_conn_chain);
108         CFS_INIT_LIST_HEAD(&sbi->ll_orphan_dentry_list);
109
110         ll_generate_random_uuid(uuid);
111         class_uuid_unparse(uuid, &sbi->ll_sb_uuid);
112         CDEBUG(D_CONFIG, "generated uuid: %s\n", sbi->ll_sb_uuid.uuid);
113
114         cfs_spin_lock(&ll_sb_lock);
115         cfs_list_add_tail(&sbi->ll_list, &ll_super_blocks);
116         cfs_spin_unlock(&ll_sb_lock);
117
118 #ifdef ENABLE_LLITE_CHECKSUM
119         sbi->ll_flags |= LL_SBI_CHECKSUM;
120 #endif
121
122 #ifdef HAVE_LRU_RESIZE_SUPPORT
123         sbi->ll_flags |= LL_SBI_LRU_RESIZE;
124 #endif
125
126         for (i = 0; i <= LL_PROCESS_HIST_MAX; i++) {
127                 cfs_spin_lock_init(&sbi->ll_rw_extents_info.pp_extents[i]. \
128                                    pp_r_hist.oh_lock);
129                 cfs_spin_lock_init(&sbi->ll_rw_extents_info.pp_extents[i]. \
130                                    pp_w_hist.oh_lock);
131         }
132
133         /* metadata statahead is enabled by default */
134         sbi->ll_sa_max = LL_SA_RPC_DEF;
135         atomic_set(&sbi->ll_sa_total, 0);
136         atomic_set(&sbi->ll_sa_wrong, 0);
137
138         RETURN(sbi);
139 }
140
141 void ll_free_sbi(struct super_block *sb)
142 {
143         struct ll_sb_info *sbi = ll_s2sbi(sb);
144         ENTRY;
145
146         if (sbi != NULL) {
147                 cfs_spin_lock(&ll_sb_lock);
148                 cfs_list_del(&sbi->ll_list);
149                 cfs_spin_unlock(&ll_sb_lock);
150                 OBD_FREE(sbi, sizeof(*sbi));
151         }
152         EXIT;
153 }
154
155 static struct dentry_operations ll_d_root_ops = {
156         .d_compare = ll_dcompare,
157         .d_revalidate = ll_revalidate_nd,
158 };
159
160 static int client_common_fill_super(struct super_block *sb, char *md, char *dt)
161 {
162         struct inode *root = 0;
163         struct ll_sb_info *sbi = ll_s2sbi(sb);
164         struct obd_device *obd;
165         struct obd_capa *oc = NULL;
166         struct obd_statfs osfs;
167         struct ptlrpc_request *request = NULL;
168         struct obd_connect_data *data = NULL;
169         struct obd_uuid *uuid;
170         struct md_op_data *op_data;
171         struct lustre_md lmd;
172         obd_valid valid;
173         int size, err, checksum;
174         ENTRY;
175
176         obd = class_name2obd(md);
177         if (!obd) {
178                 CERROR("MD %s: not setup or attached\n", md);
179                 RETURN(-EINVAL);
180         }
181
182         OBD_ALLOC_PTR(data);
183         if (data == NULL)
184                 RETURN(-ENOMEM);
185
186         if (proc_lustre_fs_root) {
187                 err = lprocfs_register_mountpoint(proc_lustre_fs_root, sb,
188                                                   dt, md);
189                 if (err < 0)
190                         CERROR("could not register mount in /proc/fs/lustre\n");
191         }
192
193         /* indicate the features supported by this client */
194         data->ocd_connect_flags = OBD_CONNECT_IBITS    | OBD_CONNECT_NODEVOH  |
195                                   OBD_CONNECT_JOIN     | OBD_CONNECT_ATTRFID  |
196                                   OBD_CONNECT_VERSION  | OBD_CONNECT_MDS_CAPA |
197                                   OBD_CONNECT_OSS_CAPA | OBD_CONNECT_CANCELSET|
198                                   OBD_CONNECT_FID      | OBD_CONNECT_AT |
199                                   OBD_CONNECT_LOV_V3 | OBD_CONNECT_RMT_CLIENT |
200                                   OBD_CONNECT_VBR      | OBD_CONNECT_FULL20;
201
202         if (sbi->ll_flags & LL_SBI_SOM_PREVIEW)
203                 data->ocd_connect_flags |= OBD_CONNECT_SOM;
204
205 #ifdef HAVE_LRU_RESIZE_SUPPORT
206         if (sbi->ll_flags & LL_SBI_LRU_RESIZE)
207                 data->ocd_connect_flags |= OBD_CONNECT_LRU_RESIZE;
208 #endif
209 #ifdef CONFIG_FS_POSIX_ACL
210         data->ocd_connect_flags |= OBD_CONNECT_ACL;
211 #endif
212         data->ocd_ibits_known = MDS_INODELOCK_FULL;
213         data->ocd_version = LUSTRE_VERSION_CODE;
214
215         if (sb->s_flags & MS_RDONLY)
216                 data->ocd_connect_flags |= OBD_CONNECT_RDONLY;
217         if (sbi->ll_flags & LL_SBI_USER_XATTR)
218                 data->ocd_connect_flags |= OBD_CONNECT_XATTR;
219
220 #ifdef HAVE_MS_FLOCK_LOCK
221         /* force vfs to use lustre handler for flock() calls - bug 10743 */
222         sb->s_flags |= MS_FLOCK_LOCK;
223 #endif
224
225         if (sbi->ll_flags & LL_SBI_FLOCK)
226                 sbi->ll_fop = &ll_file_operations_flock;
227         else if (sbi->ll_flags & LL_SBI_LOCALFLOCK)
228                 sbi->ll_fop = &ll_file_operations;
229         else
230                 sbi->ll_fop = &ll_file_operations_noflock;
231
232         /* real client */
233         data->ocd_connect_flags |= OBD_CONNECT_REAL;
234         if (sbi->ll_flags & LL_SBI_RMT_CLIENT)
235                 data->ocd_connect_flags |= OBD_CONNECT_RMT_CLIENT_FORCE;
236
237         err = obd_connect(NULL, &sbi->ll_md_exp, obd, &sbi->ll_sb_uuid, data, NULL);
238         if (err == -EBUSY) {
239                 LCONSOLE_ERROR_MSG(0x14f, "An MDT (md %s) is performing "
240                                    "recovery, of which this client is not a "
241                                    "part. Please wait for recovery to complete,"
242                                    " abort, or time out.\n", md);
243                 GOTO(out, err);
244         } else if (err) {
245                 CERROR("cannot connect to %s: rc = %d\n", md, err);
246                 GOTO(out, err);
247         }
248
249         err = obd_fid_init(sbi->ll_md_exp);
250         if (err) {
251                 CERROR("Can't init metadata layer FID infrastructure, "
252                        "rc %d\n", err);
253                 GOTO(out_md, err);
254         }
255
256         err = obd_statfs(obd, &osfs,
257                          cfs_time_shift_64(-OBD_STATFS_CACHE_SECONDS), 0);
258         if (err)
259                 GOTO(out_md_fid, err);
260
261         size = sizeof(*data);
262         err = obd_get_info(sbi->ll_md_exp, sizeof(KEY_CONN_DATA),
263                            KEY_CONN_DATA,  &size, data, NULL);
264         if (err) {
265                 CERROR("Get connect data failed: %d \n", err);
266                 GOTO(out_md, err);
267         }
268
269         LASSERT(osfs.os_bsize);
270         sb->s_blocksize = osfs.os_bsize;
271         sb->s_blocksize_bits = log2(osfs.os_bsize);
272         sb->s_magic = LL_SUPER_MAGIC;
273
274         /* for bug 11559. in $LINUX/fs/read_write.c, function do_sendfile():
275          *         retval = in_file->f_op->sendfile(...);
276          *         if (*ppos > max)
277          *                 retval = -EOVERFLOW;
278          *
279          * it will check if *ppos is greater than max. However, max equals to
280          * s_maxbytes, which is a negative integer in a x86_64 box since loff_t
281          * has been defined as a signed long long integer in linux kernel. */
282 #if BITS_PER_LONG == 64
283         sb->s_maxbytes = PAGE_CACHE_MAXBYTES >> 1;
284 #else
285         sb->s_maxbytes = PAGE_CACHE_MAXBYTES;
286 #endif
287         sbi->ll_namelen = osfs.os_namelen;
288         sbi->ll_max_rw_chunk = LL_DEFAULT_MAX_RW_CHUNK;
289
290         if ((sbi->ll_flags & LL_SBI_USER_XATTR) &&
291             !(data->ocd_connect_flags & OBD_CONNECT_XATTR)) {
292                 LCONSOLE_INFO("Disabling user_xattr feature because "
293                               "it is not supported on the server\n");
294                 sbi->ll_flags &= ~LL_SBI_USER_XATTR;
295         }
296
297         if (data->ocd_connect_flags & OBD_CONNECT_ACL) {
298 #ifdef MS_POSIXACL
299                 sb->s_flags |= MS_POSIXACL;
300 #endif
301                 sbi->ll_flags |= LL_SBI_ACL;
302         } else {
303                 LCONSOLE_INFO("client wants to enable acl, but mdt not!\n");
304 #ifdef MS_POSIXACL
305                 sb->s_flags &= ~MS_POSIXACL;
306 #endif
307                 sbi->ll_flags &= ~LL_SBI_ACL;
308         }
309
310         if (data->ocd_connect_flags & OBD_CONNECT_RMT_CLIENT) {
311                 if (!(sbi->ll_flags & LL_SBI_RMT_CLIENT)) {
312                         sbi->ll_flags |= LL_SBI_RMT_CLIENT;
313                         LCONSOLE_INFO("client is set as remote by default.\n");
314                 }
315         } else {
316                 if (sbi->ll_flags & LL_SBI_RMT_CLIENT) {
317                         sbi->ll_flags &= ~LL_SBI_RMT_CLIENT;
318                         LCONSOLE_INFO("client claims to be remote, but server "
319                                       "rejected, forced to be local.\n");
320                 }
321         }
322
323         if (data->ocd_connect_flags & OBD_CONNECT_MDS_CAPA) {
324                 LCONSOLE_INFO("client enabled MDS capability!\n");
325                 sbi->ll_flags |= LL_SBI_MDS_CAPA;
326         }
327
328         if (data->ocd_connect_flags & OBD_CONNECT_OSS_CAPA) {
329                 LCONSOLE_INFO("client enabled OSS capability!\n");
330                 sbi->ll_flags |= LL_SBI_OSS_CAPA;
331         }
332
333         obd = class_name2obd(dt);
334         if (!obd) {
335                 CERROR("DT %s: not setup or attached\n", dt);
336                 GOTO(out_md_fid, err = -ENODEV);
337         }
338
339         data->ocd_connect_flags = OBD_CONNECT_GRANT     | OBD_CONNECT_VERSION  |
340                                   OBD_CONNECT_REQPORTAL | OBD_CONNECT_BRW_SIZE |
341                                   OBD_CONNECT_CANCELSET | OBD_CONNECT_FID      |
342                                   OBD_CONNECT_SRVLOCK   | OBD_CONNECT_TRUNCLOCK|
343                                   OBD_CONNECT_AT | OBD_CONNECT_RMT_CLIENT |
344                                   OBD_CONNECT_OSS_CAPA | OBD_CONNECT_VBR|
345                                   OBD_CONNECT_FULL20;
346
347         if (sbi->ll_flags & LL_SBI_SOM_PREVIEW)
348                 data->ocd_connect_flags |= OBD_CONNECT_SOM;
349
350         if (!OBD_FAIL_CHECK(OBD_FAIL_OSC_CONNECT_CKSUM)) {
351                 /* OBD_CONNECT_CKSUM should always be set, even if checksums are
352                  * disabled by default, because it can still be enabled on the
353                  * fly via /proc. As a consequence, we still need to come to an
354                  * agreement on the supported algorithms at connect time */
355                 data->ocd_connect_flags |= OBD_CONNECT_CKSUM;
356
357                 if (OBD_FAIL_CHECK(OBD_FAIL_OSC_CKSUM_ADLER_ONLY))
358                         data->ocd_cksum_types = OBD_CKSUM_ADLER;
359                 else
360                         /* send the list of supported checksum types */
361                         data->ocd_cksum_types = OBD_CKSUM_ALL;
362         }
363
364 #ifdef HAVE_LRU_RESIZE_SUPPORT
365         data->ocd_connect_flags |= OBD_CONNECT_LRU_RESIZE;
366 #endif
367         if (sbi->ll_flags & LL_SBI_RMT_CLIENT)
368                 data->ocd_connect_flags |= OBD_CONNECT_RMT_CLIENT_FORCE;
369
370         CDEBUG(D_RPCTRACE, "ocd_connect_flags: "LPX64" ocd_version: %d "
371                "ocd_grant: %d\n", data->ocd_connect_flags,
372                data->ocd_version, data->ocd_grant);
373
374         obd->obd_upcall.onu_owner = &sbi->ll_lco;
375         obd->obd_upcall.onu_upcall = cl_ocd_update;
376         data->ocd_brw_size = PTLRPC_MAX_BRW_PAGES << CFS_PAGE_SHIFT;
377
378         err = obd_connect(NULL, &sbi->ll_dt_exp, obd, &sbi->ll_sb_uuid, data, NULL);
379         if (err == -EBUSY) {
380                 LCONSOLE_ERROR_MSG(0x150, "An OST (dt %s) is performing "
381                                    "recovery, of which this client is not a "
382                                    "part.  Please wait for recovery to "
383                                    "complete, abort, or time out.\n", dt);
384                 GOTO(out_md_fid, err);
385         } else if (err) {
386                 CERROR("Cannot connect to %s: rc = %d\n", dt, err);
387                 GOTO(out_md_fid, err);
388         }
389
390         err = obd_fid_init(sbi->ll_dt_exp);
391         if (err) {
392                 CERROR("Can't init data layer FID infrastructure, "
393                        "rc %d\n", err);
394                 GOTO(out_dt, err);
395         }
396
397         cfs_mutex_down(&sbi->ll_lco.lco_lock);
398         sbi->ll_lco.lco_flags = data->ocd_connect_flags;
399         sbi->ll_lco.lco_md_exp = sbi->ll_md_exp;
400         sbi->ll_lco.lco_dt_exp = sbi->ll_dt_exp;
401         cfs_mutex_up(&sbi->ll_lco.lco_lock);
402
403         fid_zero(&sbi->ll_root_fid);
404         err = md_getstatus(sbi->ll_md_exp, &sbi->ll_root_fid, &oc);
405         if (err) {
406                 CERROR("cannot mds_connect: rc = %d\n", err);
407                 GOTO(out_lock_cn_cb, err);
408         }
409         if (!fid_is_sane(&sbi->ll_root_fid)) {
410                 CERROR("Invalid root fid during mount\n");
411                 GOTO(out_lock_cn_cb, err = -EINVAL);
412         }
413         CDEBUG(D_SUPER, "rootfid "DFID"\n", PFID(&sbi->ll_root_fid));
414
415         sb->s_op = &lustre_super_operations;
416         sb->s_export_op = &lustre_export_operations;
417
418         /* make root inode
419          * XXX: move this to after cbd setup? */
420         valid = OBD_MD_FLGETATTR | OBD_MD_FLBLOCKS | OBD_MD_FLMDSCAPA;
421         if (sbi->ll_flags & LL_SBI_RMT_CLIENT)
422                 valid |= OBD_MD_FLRMTPERM;
423         else if (sbi->ll_flags & LL_SBI_ACL)
424                 valid |= OBD_MD_FLACL;
425
426         OBD_ALLOC_PTR(op_data);
427         if (op_data == NULL) 
428                 GOTO(out_lock_cn_cb, err = -ENOMEM);
429
430         op_data->op_fid1 = sbi->ll_root_fid;
431         op_data->op_mode = 0;
432         op_data->op_capa1 = oc;
433         op_data->op_valid = valid;
434
435         err = md_getattr(sbi->ll_md_exp, op_data, &request);
436         if (oc)
437                 capa_put(oc);
438         OBD_FREE_PTR(op_data);
439         if (err) {
440                 CERROR("md_getattr failed for root: rc = %d\n", err);
441                 GOTO(out_lock_cn_cb, err);
442         }
443         memset(&lmd, 0, sizeof(lmd));
444         err = md_get_lustre_md(sbi->ll_md_exp, request, sbi->ll_dt_exp,
445                                sbi->ll_md_exp, &lmd);
446         if (err) {
447                 CERROR("failed to understand root inode md: rc = %d\n", err);
448                 ptlrpc_req_finished (request);
449                 GOTO(out_lock_cn_cb, err);
450         }
451
452         LASSERT(fid_is_sane(&sbi->ll_root_fid));
453         root = ll_iget(sb, cl_fid_build_ino(&sbi->ll_root_fid), &lmd);
454         md_free_lustre_md(sbi->ll_md_exp, &lmd);
455         ptlrpc_req_finished(request);
456
457         if (root == NULL || IS_ERR(root)) {
458                 if (lmd.lsm)
459                         obd_free_memmd(sbi->ll_dt_exp, &lmd.lsm);
460 #ifdef CONFIG_FS_POSIX_ACL
461                 if (lmd.posix_acl) {
462                         posix_acl_release(lmd.posix_acl);
463                         lmd.posix_acl = NULL;
464                 }
465 #endif
466                 err = IS_ERR(root) ? PTR_ERR(root) : -EBADF;
467                 root = NULL;
468                 CERROR("lustre_lite: bad iget4 for root\n");
469                 GOTO(out_root, err);
470         }
471
472         err = ll_close_thread_start(&sbi->ll_lcq);
473         if (err) {
474                 CERROR("cannot start close thread: rc %d\n", err);
475                 GOTO(out_root, err);
476         }
477
478 #ifdef CONFIG_FS_POSIX_ACL
479         if (sbi->ll_flags & LL_SBI_RMT_CLIENT) {
480                 rct_init(&sbi->ll_rct);
481                 et_init(&sbi->ll_et);
482         }
483 #endif
484
485         checksum = sbi->ll_flags & LL_SBI_CHECKSUM;
486         err = obd_set_info_async(sbi->ll_dt_exp, sizeof(KEY_CHECKSUM),
487                                  KEY_CHECKSUM, sizeof(checksum), &checksum,
488                                  NULL);
489         cl_sb_init(sb);
490
491         sb->s_root = d_alloc_root(root);
492         if (data != NULL)
493                 OBD_FREE(data, sizeof(*data));
494
495         sb->s_root->d_op = &ll_d_root_ops;
496
497         sbi->ll_sdev_orig = sb->s_dev;
498
499         /* We set sb->s_dev equal on all lustre clients in order to support
500          * NFS export clustering.  NFSD requires that the FSID be the same
501          * on all clients. */
502         /* s_dev is also used in lt_compare() to compare two fs, but that is
503          * only a node-local comparison. */
504         uuid = obd_get_uuid(sbi->ll_md_exp);
505         if (uuid != NULL)
506                 sb->s_dev = get_uuid2int(uuid->uuid, strlen(uuid->uuid));
507
508         RETURN(err);
509 out_root:
510         if (root)
511                 iput(root);
512 out_lock_cn_cb:
513         obd_fid_fini(sbi->ll_dt_exp);
514 out_dt:
515         obd_disconnect(sbi->ll_dt_exp);
516         sbi->ll_dt_exp = NULL;
517 out_md_fid:
518         obd_fid_fini(sbi->ll_md_exp);
519 out_md:
520         obd_disconnect(sbi->ll_md_exp);
521         sbi->ll_md_exp = NULL;
522 out:
523         if (data != NULL)
524                 OBD_FREE_PTR(data);
525         lprocfs_unregister_mountpoint(sbi);
526         return err;
527 }
528
529 int ll_get_max_mdsize(struct ll_sb_info *sbi, int *lmmsize)
530 {
531         int size, rc;
532
533         *lmmsize = obd_size_diskmd(sbi->ll_dt_exp, NULL);
534         size = sizeof(int);
535         rc = obd_get_info(sbi->ll_md_exp, sizeof(KEY_MAX_EASIZE),
536                           KEY_MAX_EASIZE, &size, lmmsize, NULL);
537         if (rc)
538                 CERROR("Get max mdsize error rc %d \n", rc);
539
540         RETURN(rc);
541 }
542
543 void ll_dump_inode(struct inode *inode)
544 {
545         struct list_head *tmp;
546         int dentry_count = 0;
547
548         LASSERT(inode != NULL);
549
550         list_for_each(tmp, &inode->i_dentry)
551                 dentry_count++;
552
553         CERROR("inode %p dump: dev=%s ino=%lu mode=%o count=%u, %d dentries\n",
554                inode, ll_i2mdexp(inode)->exp_obd->obd_name, inode->i_ino,
555                inode->i_mode, atomic_read(&inode->i_count), dentry_count);
556 }
557
558 void lustre_dump_dentry(struct dentry *dentry, int recur)
559 {
560         struct list_head *tmp;
561         int subdirs = 0;
562
563         LASSERT(dentry != NULL);
564
565         list_for_each(tmp, &dentry->d_subdirs)
566                 subdirs++;
567
568         CERROR("dentry %p dump: name=%.*s parent=%.*s (%p), inode=%p, count=%u,"
569                " flags=0x%x, fsdata=%p, %d subdirs\n", dentry,
570                dentry->d_name.len, dentry->d_name.name,
571                dentry->d_parent->d_name.len, dentry->d_parent->d_name.name,
572                dentry->d_parent, dentry->d_inode, atomic_read(&dentry->d_count),
573                dentry->d_flags, dentry->d_fsdata, subdirs);
574         if (dentry->d_inode != NULL)
575                 ll_dump_inode(dentry->d_inode);
576
577         if (recur == 0)
578                 return;
579
580        list_for_each(tmp, &dentry->d_subdirs) {
581                 struct dentry *d = list_entry(tmp, struct dentry, d_child);
582                 lustre_dump_dentry(d, recur - 1);
583         }
584 }
585
586 void client_common_put_super(struct super_block *sb)
587 {
588         struct ll_sb_info *sbi = ll_s2sbi(sb);
589         ENTRY;
590
591 #ifdef CONFIG_FS_POSIX_ACL
592         if (sbi->ll_flags & LL_SBI_RMT_CLIENT) {
593                 et_fini(&sbi->ll_et);
594                 rct_fini(&sbi->ll_rct);
595         }
596 #endif
597
598         obd_cancel_unused(sbi->ll_dt_exp, NULL, 0, NULL);
599
600         ll_close_thread_shutdown(sbi->ll_lcq);
601
602         cl_sb_fini(sb);
603
604         cfs_list_del(&sbi->ll_conn_chain);
605
606         obd_fid_fini(sbi->ll_dt_exp);
607         obd_disconnect(sbi->ll_dt_exp);
608         sbi->ll_dt_exp = NULL;
609
610         lprocfs_unregister_mountpoint(sbi);
611
612         obd_fid_fini(sbi->ll_md_exp);
613         obd_disconnect(sbi->ll_md_exp);
614         sbi->ll_md_exp = NULL;
615
616         EXIT;
617 }
618
619 void ll_kill_super(struct super_block *sb)
620 {
621         struct ll_sb_info *sbi;
622
623         ENTRY;
624
625         /* not init sb ?*/
626         if (!(sb->s_flags & MS_ACTIVE))
627                 return;
628
629         sbi = ll_s2sbi(sb);
630         /* we need restore s_dev from changed for clustred NFS before put_super
631          * because new kernels have cached s_dev and change sb->s_dev in
632          * put_super not affected real removing devices */
633         if (sbi)
634                 sb->s_dev = sbi->ll_sdev_orig;
635         EXIT;
636 }
637
638 char *ll_read_opt(const char *opt, char *data)
639 {
640         char *value;
641         char *retval;
642         ENTRY;
643
644         CDEBUG(D_SUPER, "option: %s, data %s\n", opt, data);
645         if (strncmp(opt, data, strlen(opt)))
646                 RETURN(NULL);
647         if ((value = strchr(data, '=')) == NULL)
648                 RETURN(NULL);
649
650         value++;
651         OBD_ALLOC(retval, strlen(value) + 1);
652         if (!retval) {
653                 CERROR("out of memory!\n");
654                 RETURN(NULL);
655         }
656
657         memcpy(retval, value, strlen(value)+1);
658         CDEBUG(D_SUPER, "Assigned option: %s, value %s\n", opt, retval);
659         RETURN(retval);
660 }
661
662 static inline int ll_set_opt(const char *opt, char *data, int fl)
663 {
664         if (strncmp(opt, data, strlen(opt)) != 0)
665                 return(0);
666         else
667                 return(fl);
668 }
669
670 /* non-client-specific mount options are parsed in lmd_parse */
671 static int ll_options(char *options, int *flags)
672 {
673         int tmp;
674         char *s1 = options, *s2;
675         ENTRY;
676
677         if (!options)
678                 RETURN(0);
679
680         CDEBUG(D_CONFIG, "Parsing opts %s\n", options);
681
682         while (*s1) {
683                 CDEBUG(D_SUPER, "next opt=%s\n", s1);
684                 tmp = ll_set_opt("nolock", s1, LL_SBI_NOLCK);
685                 if (tmp) {
686                         *flags |= tmp;
687                         goto next;
688                 }
689                 tmp = ll_set_opt("flock", s1, LL_SBI_FLOCK);
690                 if (tmp) {
691                         *flags |= tmp;
692                         goto next;
693                 }
694                 tmp = ll_set_opt("localflock", s1, LL_SBI_LOCALFLOCK);
695                 if (tmp) {
696                         *flags |= tmp;
697                         goto next;
698                 }
699                 tmp = ll_set_opt("noflock", s1, LL_SBI_FLOCK|LL_SBI_LOCALFLOCK);
700                 if (tmp) {
701                         *flags &= ~tmp;
702                         goto next;
703                 }
704                 tmp = ll_set_opt("user_xattr", s1, LL_SBI_USER_XATTR);
705                 if (tmp) {
706                         *flags |= tmp;
707                         goto next;
708                 }
709                 tmp = ll_set_opt("nouser_xattr", s1, LL_SBI_USER_XATTR);
710                 if (tmp) {
711                         *flags &= ~tmp;
712                         goto next;
713                 }
714 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2,5,50,0)
715                 tmp = ll_set_opt("acl", s1, LL_SBI_ACL);
716                 if (tmp) {
717                         /* Ignore deprecated mount option.  The client will
718                          * always try to mount with ACL support, whether this
719                          * is used depends on whether server supports it. */
720                         LCONSOLE_ERROR_MSG(0x152, "Ignoring deprecated "
721                                                   "mount option 'acl'.\n");
722                         goto next;
723                 }
724                 tmp = ll_set_opt("noacl", s1, LL_SBI_ACL);
725                 if (tmp) {
726                         LCONSOLE_ERROR_MSG(0x152, "Ignoring deprecated "
727                                                   "mount option 'noacl'.\n");
728                         goto next;
729                 }
730 #else
731 #warning "{no}acl options have been deprecated since 1.8, please remove them"
732 #endif
733                 tmp = ll_set_opt("remote_client", s1, LL_SBI_RMT_CLIENT);
734                 if (tmp) {
735                         *flags |= tmp;
736                         goto next;
737                 }
738
739                 tmp = ll_set_opt("checksum", s1, LL_SBI_CHECKSUM);
740                 if (tmp) {
741                         *flags |= tmp;
742                         goto next;
743                 }
744                 tmp = ll_set_opt("nochecksum", s1, LL_SBI_CHECKSUM);
745                 if (tmp) {
746                         *flags &= ~tmp;
747                         goto next;
748                 }
749                 tmp = ll_set_opt("lruresize", s1, LL_SBI_LRU_RESIZE);
750                 if (tmp) {
751                         *flags |= tmp;
752                         goto next;
753                 }
754                 tmp = ll_set_opt("nolruresize", s1, LL_SBI_LRU_RESIZE);
755                 if (tmp) {
756                         *flags &= ~tmp;
757                         goto next;
758                 }
759                 tmp = ll_set_opt("lazystatfs", s1, LL_SBI_LAZYSTATFS);
760                 if (tmp) {
761                         *flags |= tmp;
762                         goto next;
763                 }
764                 tmp = ll_set_opt("nolazystatfs", s1, LL_SBI_LAZYSTATFS);
765                 if (tmp) {
766                         *flags &= ~tmp;
767                         goto next;
768                 }
769                 tmp = ll_set_opt("som_preview", s1, LL_SBI_SOM_PREVIEW);
770                 if (tmp) {
771                         *flags |= tmp;
772                         goto next;
773                 }
774                 tmp = ll_set_opt("32bitapi", s1, LL_SBI_32BIT_API);
775                 if (tmp) {
776                         *flags |= tmp;
777                         goto next;
778                 }
779
780                 LCONSOLE_ERROR_MSG(0x152, "Unknown option '%s', won't mount.\n",
781                                    s1);
782                 RETURN(-EINVAL);
783
784 next:
785                 /* Find next opt */
786                 s2 = strchr(s1, ',');
787                 if (s2 == NULL)
788                         break;
789                 s1 = s2 + 1;
790         }
791         RETURN(0);
792 }
793
794 void ll_lli_init(struct ll_inode_info *lli)
795 {
796         lli->lli_inode_magic = LLI_INODE_MAGIC;
797         cfs_sema_init(&lli->lli_size_sem, 1);
798         cfs_sema_init(&lli->lli_write_sem, 1);
799         cfs_sema_init(&lli->lli_trunc_sem, 1);
800         lli->lli_flags = 0;
801         lli->lli_maxbytes = PAGE_CACHE_MAXBYTES;
802         cfs_spin_lock_init(&lli->lli_lock);
803         CFS_INIT_LIST_HEAD(&lli->lli_close_list);
804         lli->lli_inode_magic = LLI_INODE_MAGIC;
805         cfs_sema_init(&lli->lli_och_sem, 1);
806         lli->lli_mds_read_och = lli->lli_mds_write_och = NULL;
807         lli->lli_mds_exec_och = NULL;
808         lli->lli_open_fd_read_count = lli->lli_open_fd_write_count = 0;
809         lli->lli_open_fd_exec_count = 0;
810         CFS_INIT_LIST_HEAD(&lli->lli_dead_list);
811         lli->lli_remote_perms = NULL;
812         lli->lli_rmtperm_utime = 0;
813         cfs_sema_init(&lli->lli_rmtperm_sem, 1);
814         CFS_INIT_LIST_HEAD(&lli->lli_oss_capas);
815         cfs_spin_lock_init(&lli->lli_sa_lock);
816         CFS_INIT_LIST_HEAD(&lli->lli_sa_dentry);
817 }
818
819 int ll_fill_super(struct super_block *sb)
820 {
821         struct lustre_profile *lprof;
822         struct lustre_sb_info *lsi = s2lsi(sb);
823         struct ll_sb_info *sbi;
824         char  *dt = NULL, *md = NULL;
825         char  *profilenm = get_profile_name(sb);
826         struct config_llog_instance cfg = {0, };
827         char   ll_instance[sizeof(sb) * 2 + 1];
828         int    err;
829         ENTRY;
830
831         CDEBUG(D_VFSTRACE, "VFS Op: sb %p\n", sb);
832
833         cfs_module_get();
834
835         /* client additional sb info */
836         lsi->lsi_llsbi = sbi = ll_init_sbi();
837         if (!sbi) {
838                 cfs_module_put(THIS_MODULE);
839                 RETURN(-ENOMEM);
840         }
841
842         err = ll_options(lsi->lsi_lmd->lmd_opts, &sbi->ll_flags);
843         if (err)
844                 GOTO(out_free, err);
845
846         /* Generate a string unique to this super, in case some joker tries
847            to mount the same fs at two mount points.
848            Use the address of the super itself.*/
849         sprintf(ll_instance, "%p", sb);
850         cfg.cfg_instance = ll_instance;
851         cfg.cfg_uuid = lsi->lsi_llsbi->ll_sb_uuid;
852
853         /* set up client obds */
854         err = lustre_process_log(sb, profilenm, &cfg);
855         if (err < 0) {
856                 CERROR("Unable to process log: %d\n", err);
857                 GOTO(out_free, err);
858         }
859
860         /* Profile set with LCFG_MOUNTOPT so we can find our mdc and osc obds */
861         lprof = class_get_profile(profilenm);
862         if (lprof == NULL) {
863                 LCONSOLE_ERROR_MSG(0x156, "The client profile '%s' could not be"
864                                    " read from the MGS.  Does that filesystem "
865                                    "exist?\n", profilenm);
866                 GOTO(out_free, err = -EINVAL);
867         }
868         CDEBUG(D_CONFIG, "Found profile %s: mdc=%s osc=%s\n", profilenm,
869                lprof->lp_md, lprof->lp_dt);
870
871         OBD_ALLOC(dt, strlen(lprof->lp_dt) +
872                   strlen(ll_instance) + 2);
873         if (!dt)
874                 GOTO(out_free, err = -ENOMEM);
875         sprintf(dt, "%s-%s", lprof->lp_dt, ll_instance);
876
877         OBD_ALLOC(md, strlen(lprof->lp_md) +
878                   strlen(ll_instance) + 2);
879         if (!md)
880                 GOTO(out_free, err = -ENOMEM);
881         sprintf(md, "%s-%s", lprof->lp_md, ll_instance);
882
883         /* connections, registrations, sb setup */
884         err = client_common_fill_super(sb, md, dt);
885
886 out_free:
887         if (md)
888                 OBD_FREE(md, strlen(md) + 1);
889         if (dt)
890                 OBD_FREE(dt, strlen(dt) + 1);
891         if (err)
892                 ll_put_super(sb);
893         else
894                 LCONSOLE_WARN("Client %s has started\n", profilenm);
895
896         RETURN(err);
897 } /* ll_fill_super */
898
899
900 void lu_context_keys_dump(void);
901
902 void ll_put_super(struct super_block *sb)
903 {
904         struct config_llog_instance cfg;
905         char   ll_instance[sizeof(sb) * 2 + 1];
906         struct obd_device *obd;
907         struct lustre_sb_info *lsi = s2lsi(sb);
908         struct ll_sb_info *sbi = ll_s2sbi(sb);
909         char *profilenm = get_profile_name(sb);
910         int force = 1, next;
911         ENTRY;
912
913         CDEBUG(D_VFSTRACE, "VFS Op: sb %p - %s\n", sb, profilenm);
914
915         ll_print_capa_stat(sbi);
916
917         sprintf(ll_instance, "%p", sb);
918         cfg.cfg_instance = ll_instance;
919         lustre_end_log(sb, NULL, &cfg);
920
921         if (sbi->ll_md_exp) {
922                 obd = class_exp2obd(sbi->ll_md_exp);
923                 if (obd)
924                         force = obd->obd_force;
925         }
926
927         /* We need to set force before the lov_disconnect in
928            lustre_common_put_super, since l_d cleans up osc's as well. */
929         if (force) {
930                 next = 0;
931                 while ((obd = class_devices_in_group(&sbi->ll_sb_uuid,
932                                                      &next)) != NULL) {
933                         obd->obd_force = force;
934                 }
935         }
936
937         if (sbi->ll_lcq) {
938                 /* Only if client_common_fill_super succeeded */
939                 client_common_put_super(sb);
940         }
941
942         next = 0;
943         while ((obd = class_devices_in_group(&sbi->ll_sb_uuid, &next)) !=NULL) {
944                 class_manual_cleanup(obd);
945         }
946
947         if (profilenm)
948                 class_del_profile(profilenm);
949
950         ll_free_sbi(sb);
951         lsi->lsi_llsbi = NULL;
952
953         lustre_common_put_super(sb);
954
955         cl_env_cache_purge(~0);
956
957         LCONSOLE_WARN("client %s umount complete\n", ll_instance);
958
959         cfs_module_put(THIS_MODULE);
960
961         EXIT;
962 } /* client_put_super */
963
964 struct inode *ll_inode_from_lock(struct ldlm_lock *lock)
965 {
966         struct inode *inode = NULL;
967         /* NOTE: we depend on atomic igrab() -bzzz */
968         lock_res_and_lock(lock);
969         if (lock->l_ast_data) {
970                 struct ll_inode_info *lli = ll_i2info(lock->l_ast_data);
971                 if (lli->lli_inode_magic == LLI_INODE_MAGIC) {
972                         inode = igrab(lock->l_ast_data);
973                 } else {
974                         inode = lock->l_ast_data;
975                         ldlm_lock_debug(NULL, inode->i_state & I_FREEING ?
976                                                 D_INFO : D_WARNING,
977                                         lock, __FILE__, __func__, __LINE__,
978                                         "l_ast_data %p is bogus: magic %08x",
979                                         lock->l_ast_data, lli->lli_inode_magic);
980                         inode = NULL;
981                 }
982         }
983         unlock_res_and_lock(lock);
984         return inode;
985 }
986
987 static int null_if_equal(struct ldlm_lock *lock, void *data)
988 {
989         if (data == lock->l_ast_data) {
990                 lock->l_ast_data = NULL;
991
992                 if (lock->l_req_mode != lock->l_granted_mode)
993                         LDLM_ERROR(lock,"clearing inode with ungranted lock");
994         }
995
996         return LDLM_ITER_CONTINUE;
997 }
998
999 void ll_clear_inode(struct inode *inode)
1000 {
1001         struct ll_inode_info *lli = ll_i2info(inode);
1002         struct ll_sb_info *sbi = ll_i2sbi(inode);
1003         ENTRY;
1004
1005         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p)\n", inode->i_ino,
1006                inode->i_generation, inode);
1007
1008         if (S_ISDIR(inode->i_mode)) {
1009                 /* these should have been cleared in ll_file_release */
1010                 LASSERT(lli->lli_sai == NULL);
1011                 LASSERT(lli->lli_opendir_key == NULL);
1012                 LASSERT(lli->lli_opendir_pid == 0);
1013         }
1014
1015         ll_i2info(inode)->lli_flags &= ~LLIF_MDS_SIZE_LOCK;
1016         md_change_cbdata(sbi->ll_md_exp, ll_inode2fid(inode),
1017                          null_if_equal, inode);
1018
1019         LASSERT(!lli->lli_open_fd_write_count);
1020         LASSERT(!lli->lli_open_fd_read_count);
1021         LASSERT(!lli->lli_open_fd_exec_count);
1022
1023         if (lli->lli_mds_write_och)
1024                 ll_md_real_close(inode, FMODE_WRITE);
1025         if (lli->lli_mds_exec_och)
1026                 ll_md_real_close(inode, FMODE_EXEC);
1027         if (lli->lli_mds_read_och)
1028                 ll_md_real_close(inode, FMODE_READ);
1029
1030         if (lli->lli_symlink_name) {
1031                 OBD_FREE(lli->lli_symlink_name,
1032                          strlen(lli->lli_symlink_name) + 1);
1033                 lli->lli_symlink_name = NULL;
1034         }
1035
1036         if (sbi->ll_flags & LL_SBI_RMT_CLIENT) {
1037                 LASSERT(lli->lli_posix_acl == NULL);
1038                 if (lli->lli_remote_perms) {
1039                         free_rmtperm_hash(lli->lli_remote_perms);
1040                         lli->lli_remote_perms = NULL;
1041                 }
1042         }
1043 #ifdef CONFIG_FS_POSIX_ACL
1044         else if (lli->lli_posix_acl) {
1045                 LASSERT(cfs_atomic_read(&lli->lli_posix_acl->a_refcount) == 1);
1046                 LASSERT(lli->lli_remote_perms == NULL);
1047                 posix_acl_release(lli->lli_posix_acl);
1048                 lli->lli_posix_acl = NULL;
1049         }
1050 #endif
1051         lli->lli_inode_magic = LLI_INODE_DEAD;
1052
1053         ll_clear_inode_capas(inode);
1054         /*
1055          * XXX This has to be done before lsm is freed below, because
1056          * cl_object still uses inode lsm.
1057          */
1058         cl_inode_fini(inode);
1059
1060         if (lli->lli_smd) {
1061                 obd_free_memmd(sbi->ll_dt_exp, &lli->lli_smd);
1062                 lli->lli_smd = NULL;
1063         }
1064
1065
1066         EXIT;
1067 }
1068
1069 int ll_md_setattr(struct inode *inode, struct md_op_data *op_data,
1070                   struct md_open_data **mod)
1071 {
1072         struct lustre_md md;
1073         struct ll_sb_info *sbi = ll_i2sbi(inode);
1074         struct ptlrpc_request *request = NULL;
1075         int rc;
1076         ENTRY;
1077
1078         op_data = ll_prep_md_op_data(op_data, inode, NULL, NULL, 0, 0,
1079                                      LUSTRE_OPC_ANY, NULL);
1080         if (IS_ERR(op_data))
1081                 RETURN(PTR_ERR(op_data));
1082
1083         rc = md_setattr(sbi->ll_md_exp, op_data, NULL, 0, NULL, 0,
1084                         &request, mod);
1085         if (rc) {
1086                 ptlrpc_req_finished(request);
1087                 if (rc == -ENOENT) {
1088                         inode->i_nlink = 0;
1089                         /* Unlinked special device node? Or just a race?
1090                          * Pretend we done everything. */
1091                         if (!S_ISREG(inode->i_mode) &&
1092                             !S_ISDIR(inode->i_mode))
1093                                 rc = inode_setattr(inode, &op_data->op_attr);
1094                 } else if (rc != -EPERM && rc != -EACCES && rc != -ETXTBSY) {
1095                         CERROR("md_setattr fails: rc = %d\n", rc);
1096                 }
1097                 RETURN(rc);
1098         }
1099
1100         rc = md_get_lustre_md(sbi->ll_md_exp, request, sbi->ll_dt_exp,
1101                               sbi->ll_md_exp, &md);
1102         if (rc) {
1103                 ptlrpc_req_finished(request);
1104                 RETURN(rc);
1105         }
1106
1107         /* We call inode_setattr to adjust timestamps.
1108          * If there is at least some data in file, we cleared ATTR_SIZE
1109          * above to avoid invoking vmtruncate, otherwise it is important
1110          * to call vmtruncate in inode_setattr to update inode->i_size
1111          * (bug 6196) */
1112         rc = inode_setattr(inode, &op_data->op_attr);
1113
1114         /* Extract epoch data if obtained. */
1115         op_data->op_handle = md.body->handle;
1116         op_data->op_ioepoch = md.body->ioepoch;
1117
1118         ll_update_inode(inode, &md);
1119         ptlrpc_req_finished(request);
1120
1121         RETURN(rc);
1122 }
1123
1124 /* Close IO epoch and send Size-on-MDS attribute update. */
1125 static int ll_setattr_done_writing(struct inode *inode,
1126                                    struct md_op_data *op_data,
1127                                    struct md_open_data *mod)
1128 {
1129         struct ll_inode_info *lli = ll_i2info(inode);
1130         int rc = 0;
1131         ENTRY;
1132
1133         LASSERT(op_data != NULL);
1134         if (!S_ISREG(inode->i_mode))
1135                 RETURN(0);
1136
1137         CDEBUG(D_INODE, "Epoch "LPU64" closed on "DFID" for truncate\n",
1138                op_data->op_ioepoch, PFID(&lli->lli_fid));
1139
1140         op_data->op_flags = MF_EPOCH_CLOSE;
1141         ll_done_writing_attr(inode, op_data);
1142         ll_pack_inode2opdata(inode, op_data, NULL);
1143
1144         rc = md_done_writing(ll_i2sbi(inode)->ll_md_exp, op_data, mod);
1145         if (rc == -EAGAIN) {
1146                 /* MDS has instructed us to obtain Size-on-MDS attribute
1147                  * from OSTs and send setattr to back to MDS. */
1148                 rc = ll_som_update(inode, op_data);
1149         } else if (rc) {
1150                 CERROR("inode %lu mdc truncate failed: rc = %d\n",
1151                        inode->i_ino, rc);
1152         }
1153         RETURN(rc);
1154 }
1155
1156 static int ll_setattr_ost(struct inode *inode, struct iattr *attr)
1157 {
1158         struct obd_capa *capa;
1159         int rc;
1160
1161         if (attr->ia_valid & ATTR_SIZE)
1162                 capa = ll_osscapa_get(inode, CAPA_OPC_OSS_TRUNC);
1163         else
1164                 capa = ll_mdscapa_get(inode);
1165
1166         rc = cl_setattr_ost(inode, attr, capa);
1167
1168         if (attr->ia_valid & ATTR_SIZE)
1169                 ll_truncate_free_capa(capa);
1170         else
1171                 capa_put(capa);
1172
1173         return rc;
1174 }
1175
1176 /* If this inode has objects allocated to it (lsm != NULL), then the OST
1177  * object(s) determine the file size and mtime.  Otherwise, the MDS will
1178  * keep these values until such a time that objects are allocated for it.
1179  * We do the MDS operations first, as it is checking permissions for us.
1180  * We don't to the MDS RPC if there is nothing that we want to store there,
1181  * otherwise there is no harm in updating mtime/atime on the MDS if we are
1182  * going to do an RPC anyways.
1183  *
1184  * If we are doing a truncate, we will send the mtime and ctime updates
1185  * to the OST with the punch RPC, otherwise we do an explicit setattr RPC.
1186  * I don't believe it is possible to get e.g. ATTR_MTIME_SET and ATTR_SIZE
1187  * at the same time.
1188  */
1189 int ll_setattr_raw(struct inode *inode, struct iattr *attr)
1190 {
1191         struct ll_inode_info *lli = ll_i2info(inode);
1192         struct lov_stripe_md *lsm = lli->lli_smd;
1193         struct md_op_data *op_data = NULL;
1194         struct md_open_data *mod = NULL;
1195         int ia_valid = attr->ia_valid;
1196         int rc = 0, rc1 = 0;
1197         ENTRY;
1198
1199         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu valid %x\n", inode->i_ino,
1200                attr->ia_valid);
1201         ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_SETATTR, 1);
1202
1203         if (ia_valid & ATTR_SIZE) {
1204                 if (attr->ia_size > ll_file_maxbytes(inode)) {
1205                         CDEBUG(D_INODE, "file too large %llu > "LPU64"\n",
1206                                attr->ia_size, ll_file_maxbytes(inode));
1207                         RETURN(-EFBIG);
1208                 }
1209
1210                 attr->ia_valid |= ATTR_MTIME | ATTR_CTIME;
1211         }
1212
1213         /* POSIX: check before ATTR_*TIME_SET set (from inode_change_ok) */
1214         if (ia_valid & (ATTR_MTIME_SET | ATTR_ATIME_SET)) {
1215                 if (cfs_curproc_fsuid() != inode->i_uid &&
1216                     !cfs_capable(CFS_CAP_FOWNER))
1217                         RETURN(-EPERM);
1218         }
1219
1220         /* We mark all of the fields "set" so MDS/OST does not re-set them */
1221         if (attr->ia_valid & ATTR_CTIME) {
1222                 attr->ia_ctime = CFS_CURRENT_TIME;
1223                 attr->ia_valid |= ATTR_CTIME_SET;
1224         }
1225         if (!(ia_valid & ATTR_ATIME_SET) && (attr->ia_valid & ATTR_ATIME)) {
1226                 attr->ia_atime = CFS_CURRENT_TIME;
1227                 attr->ia_valid |= ATTR_ATIME_SET;
1228         }
1229         if (!(ia_valid & ATTR_MTIME_SET) && (attr->ia_valid & ATTR_MTIME)) {
1230                 attr->ia_mtime = CFS_CURRENT_TIME;
1231                 attr->ia_valid |= ATTR_MTIME_SET;
1232         }
1233
1234         if (attr->ia_valid & (ATTR_MTIME | ATTR_CTIME))
1235                 CDEBUG(D_INODE, "setting mtime %lu, ctime %lu, now = %lu\n",
1236                        LTIME_S(attr->ia_mtime), LTIME_S(attr->ia_ctime),
1237                        cfs_time_current_sec());
1238
1239         /* NB: ATTR_SIZE will only be set after this point if the size
1240          * resides on the MDS, ie, this file has no objects. */
1241         if (lsm)
1242                 attr->ia_valid &= ~ATTR_SIZE;
1243
1244         /* We always do an MDS RPC, even if we're only changing the size;
1245          * only the MDS knows whether truncate() should fail with -ETXTBUSY */
1246
1247         OBD_ALLOC_PTR(op_data);
1248         if (op_data == NULL)
1249                 RETURN(-ENOMEM);
1250
1251         UNLOCK_INODE_MUTEX(inode);
1252         if (ia_valid & ATTR_SIZE)
1253                 UP_WRITE_I_ALLOC_SEM(inode);
1254         cfs_down(&lli->lli_trunc_sem);
1255         LOCK_INODE_MUTEX(inode);
1256         if (ia_valid & ATTR_SIZE)
1257                 DOWN_WRITE_I_ALLOC_SEM(inode);
1258
1259         memcpy(&op_data->op_attr, attr, sizeof(*attr));
1260
1261         /* Open epoch for truncate. */
1262         if (exp_connect_som(ll_i2mdexp(inode)) &&
1263             (ia_valid & (ATTR_SIZE | ATTR_MTIME | ATTR_MTIME_SET)))
1264                 op_data->op_flags = MF_EPOCH_OPEN;
1265
1266         rc = ll_md_setattr(inode, op_data, &mod);
1267         if (rc)
1268                 GOTO(out, rc);
1269
1270         ll_ioepoch_open(lli, op_data->op_ioepoch);
1271         if (!lsm || !S_ISREG(inode->i_mode)) {
1272                 CDEBUG(D_INODE, "no lsm: not setting attrs on OST\n");
1273                 GOTO(out, rc = 0);
1274         }
1275
1276         if (ia_valid & ATTR_SIZE)
1277                 attr->ia_valid |= ATTR_SIZE;
1278         if ((ia_valid & ATTR_SIZE) | 
1279             ((ia_valid | ATTR_ATIME | ATTR_ATIME_SET) &&
1280              LTIME_S(attr->ia_atime) < LTIME_S(attr->ia_ctime)) ||
1281             ((ia_valid | ATTR_MTIME | ATTR_MTIME_SET) &&
1282              LTIME_S(attr->ia_mtime) < LTIME_S(attr->ia_ctime)))
1283                 /* perform truncate and setting mtime/atime to past under PW
1284                  * 0:EOF extent lock (new_size:EOF for truncate) */
1285                 rc = ll_setattr_ost(inode, attr);
1286         EXIT;
1287 out:
1288         if (op_data) {
1289                 if (op_data->op_ioepoch)
1290                         rc1 = ll_setattr_done_writing(inode, op_data, mod);
1291                 ll_finish_md_op_data(op_data);
1292         }
1293         cfs_up(&lli->lli_trunc_sem);
1294         return rc ? rc : rc1;
1295 }
1296
1297 int ll_setattr(struct dentry *de, struct iattr *attr)
1298 {
1299         if ((attr->ia_valid & (ATTR_CTIME|ATTR_SIZE|ATTR_MODE)) ==
1300             (ATTR_CTIME|ATTR_SIZE|ATTR_MODE))
1301                 attr->ia_valid |= MDS_OPEN_OWNEROVERRIDE;
1302
1303         if ((de->d_inode->i_mode & S_ISUID) &&
1304             !(attr->ia_mode & S_ISUID) &&
1305             !(attr->ia_valid & ATTR_KILL_SUID))
1306                 attr->ia_valid |= ATTR_KILL_SUID;
1307
1308         if (((de->d_inode->i_mode & (S_ISGID|S_IXGRP)) == (S_ISGID|S_IXGRP)) &&
1309             !(attr->ia_mode & S_ISGID) &&
1310             !(attr->ia_valid & ATTR_KILL_SGID))
1311                 attr->ia_valid |= ATTR_KILL_SGID;
1312
1313         return ll_setattr_raw(de->d_inode, attr);
1314 }
1315
1316 int ll_statfs_internal(struct super_block *sb, struct obd_statfs *osfs,
1317                        __u64 max_age, __u32 flags)
1318 {
1319         struct ll_sb_info *sbi = ll_s2sbi(sb);
1320         struct obd_statfs obd_osfs;
1321         int rc;
1322         ENTRY;
1323
1324         rc = obd_statfs(class_exp2obd(sbi->ll_md_exp), osfs, max_age, flags);
1325         if (rc) {
1326                 CERROR("md_statfs fails: rc = %d\n", rc);
1327                 RETURN(rc);
1328         }
1329
1330         osfs->os_type = sb->s_magic;
1331
1332         CDEBUG(D_SUPER, "MDC blocks "LPU64"/"LPU64" objects "LPU64"/"LPU64"\n",
1333                osfs->os_bavail, osfs->os_blocks, osfs->os_ffree,osfs->os_files);
1334
1335         if (sbi->ll_flags & LL_SBI_LAZYSTATFS)
1336                 flags |= OBD_STATFS_NODELAY;
1337
1338         rc = obd_statfs_rqset(class_exp2obd(sbi->ll_dt_exp),
1339                               &obd_osfs, max_age, flags);
1340         if (rc) {
1341                 CERROR("obd_statfs fails: rc = %d\n", rc);
1342                 RETURN(rc);
1343         }
1344
1345         CDEBUG(D_SUPER, "OSC blocks "LPU64"/"LPU64" objects "LPU64"/"LPU64"\n",
1346                obd_osfs.os_bavail, obd_osfs.os_blocks, obd_osfs.os_ffree,
1347                obd_osfs.os_files);
1348
1349         osfs->os_bsize = obd_osfs.os_bsize;
1350         osfs->os_blocks = obd_osfs.os_blocks;
1351         osfs->os_bfree = obd_osfs.os_bfree;
1352         osfs->os_bavail = obd_osfs.os_bavail;
1353
1354         /* If we don't have as many objects free on the OST as inodes
1355          * on the MDS, we reduce the total number of inodes to
1356          * compensate, so that the "inodes in use" number is correct.
1357          */
1358         if (obd_osfs.os_ffree < osfs->os_ffree) {
1359                 osfs->os_files = (osfs->os_files - osfs->os_ffree) +
1360                         obd_osfs.os_ffree;
1361                 osfs->os_ffree = obd_osfs.os_ffree;
1362         }
1363
1364         RETURN(rc);
1365 }
1366 #ifndef HAVE_STATFS_DENTRY_PARAM
1367 int ll_statfs(struct super_block *sb, struct kstatfs *sfs)
1368 {
1369 #else
1370 int ll_statfs(struct dentry *de, struct kstatfs *sfs)
1371 {
1372         struct super_block *sb = de->d_sb;
1373 #endif
1374         struct obd_statfs osfs;
1375         int rc;
1376
1377         CDEBUG(D_VFSTRACE, "VFS Op: at "LPU64" jiffies\n", get_jiffies_64());
1378         ll_stats_ops_tally(ll_s2sbi(sb), LPROC_LL_STAFS, 1);
1379
1380         /* Some amount of caching on the client is allowed */
1381         rc = ll_statfs_internal(sb, &osfs,
1382                                 cfs_time_shift_64(-OBD_STATFS_CACHE_SECONDS),
1383                                 0);
1384         if (rc)
1385                 return rc;
1386
1387         statfs_unpack(sfs, &osfs);
1388
1389         /* We need to downshift for all 32-bit kernels, because we can't
1390          * tell if the kernel is being called via sys_statfs64() or not.
1391          * Stop before overflowing f_bsize - in which case it is better
1392          * to just risk EOVERFLOW if caller is using old sys_statfs(). */
1393         if (sizeof(long) < 8) {
1394                 while (osfs.os_blocks > ~0UL && sfs->f_bsize < 0x40000000) {
1395                         sfs->f_bsize <<= 1;
1396
1397                         osfs.os_blocks >>= 1;
1398                         osfs.os_bfree >>= 1;
1399                         osfs.os_bavail >>= 1;
1400                 }
1401         }
1402
1403         sfs->f_blocks = osfs.os_blocks;
1404         sfs->f_bfree = osfs.os_bfree;
1405         sfs->f_bavail = osfs.os_bavail;
1406
1407         return 0;
1408 }
1409
1410 void ll_inode_size_lock(struct inode *inode, int lock_lsm)
1411 {
1412         struct ll_inode_info *lli;
1413         struct lov_stripe_md *lsm;
1414
1415         lli = ll_i2info(inode);
1416         LASSERT(lli->lli_size_sem_owner != current);
1417         cfs_down(&lli->lli_size_sem);
1418         LASSERT(lli->lli_size_sem_owner == NULL);
1419         lli->lli_size_sem_owner = current;
1420         lsm = lli->lli_smd;
1421         LASSERTF(lsm != NULL || lock_lsm == 0, "lsm %p, lock_lsm %d\n",
1422                  lsm, lock_lsm);
1423         if (lock_lsm)
1424                 lov_stripe_lock(lsm);
1425 }
1426
1427 void ll_inode_size_unlock(struct inode *inode, int unlock_lsm)
1428 {
1429         struct ll_inode_info *lli;
1430         struct lov_stripe_md *lsm;
1431
1432         lli = ll_i2info(inode);
1433         lsm = lli->lli_smd;
1434         LASSERTF(lsm != NULL || unlock_lsm == 0, "lsm %p, lock_lsm %d\n",
1435                  lsm, unlock_lsm);
1436         if (unlock_lsm)
1437                 lov_stripe_unlock(lsm);
1438         LASSERT(lli->lli_size_sem_owner == current);
1439         lli->lli_size_sem_owner = NULL;
1440         cfs_up(&lli->lli_size_sem);
1441 }
1442
1443 void ll_update_inode(struct inode *inode, struct lustre_md *md)
1444 {
1445         struct ll_inode_info *lli = ll_i2info(inode);
1446         struct mdt_body *body = md->body;
1447         struct lov_stripe_md *lsm = md->lsm;
1448         struct ll_sb_info *sbi = ll_i2sbi(inode);
1449
1450         LASSERT ((lsm != NULL) == ((body->valid & OBD_MD_FLEASIZE) != 0));
1451         if (lsm != NULL) {
1452                 cfs_down(&lli->lli_och_sem);
1453                 if (lli->lli_smd == NULL) {
1454                         if (lsm->lsm_magic != LOV_MAGIC_V1 &&
1455                             lsm->lsm_magic != LOV_MAGIC_V3) {
1456                                 dump_lsm(D_ERROR, lsm);
1457                                 LBUG();
1458                         }
1459                         CDEBUG(D_INODE, "adding lsm %p to inode %lu/%u(%p)\n",
1460                                lsm, inode->i_ino, inode->i_generation, inode);
1461                         /* cl_inode_init must go before lli_smd or a race is
1462                          * possible where client thinks the file has stripes,
1463                          * but lov raid0 is not setup yet and parallel e.g.
1464                          * glimpse would try to use uninitialized lov */
1465                         cl_inode_init(inode, md);
1466                         lli->lli_smd = lsm;
1467                         cfs_up(&lli->lli_och_sem);
1468                         lli->lli_maxbytes = lsm->lsm_maxbytes;
1469                         if (lli->lli_maxbytes > PAGE_CACHE_MAXBYTES)
1470                                 lli->lli_maxbytes = PAGE_CACHE_MAXBYTES;
1471                 } else {
1472                         cfs_up(&lli->lli_och_sem);
1473                         LASSERT(lli->lli_smd->lsm_magic == lsm->lsm_magic &&
1474                                 lli->lli_smd->lsm_stripe_count ==
1475                                 lsm->lsm_stripe_count);
1476                         if (lov_stripe_md_cmp(lli->lli_smd, lsm)) {
1477                                 CERROR("lsm mismatch for inode %ld\n",
1478                                        inode->i_ino);
1479                                 CERROR("lli_smd:\n");
1480                                 dump_lsm(D_ERROR, lli->lli_smd);
1481                                 CERROR("lsm:\n");
1482                                 dump_lsm(D_ERROR, lsm);
1483                                 LBUG();
1484                         }
1485                 }
1486                 if (lli->lli_smd != lsm)
1487                         obd_free_memmd(ll_i2dtexp(inode), &lsm);
1488         }
1489
1490         if (sbi->ll_flags & LL_SBI_RMT_CLIENT) {
1491                 if (body->valid & OBD_MD_FLRMTPERM)
1492                         ll_update_remote_perm(inode, md->remote_perm);
1493         }
1494 #ifdef CONFIG_FS_POSIX_ACL
1495         else if (body->valid & OBD_MD_FLACL) {
1496                 cfs_spin_lock(&lli->lli_lock);
1497                 if (lli->lli_posix_acl)
1498                         posix_acl_release(lli->lli_posix_acl);
1499                 lli->lli_posix_acl = md->posix_acl;
1500                 cfs_spin_unlock(&lli->lli_lock);
1501         }
1502 #endif
1503         inode->i_ino = cl_fid_build_ino(&body->fid1);
1504         inode->i_generation = cl_fid_build_gen(&body->fid1);
1505
1506         if (body->valid & OBD_MD_FLATIME) {
1507                 if (body->atime > LTIME_S(inode->i_atime))
1508                         LTIME_S(inode->i_atime) = body->atime;
1509                 lli->lli_lvb.lvb_atime = body->atime;
1510         }
1511         if (body->valid & OBD_MD_FLMTIME) {
1512                 if (body->mtime > LTIME_S(inode->i_mtime)) {
1513                         CDEBUG(D_INODE, "setting ino %lu mtime from %lu "
1514                                "to "LPU64"\n", inode->i_ino,
1515                                LTIME_S(inode->i_mtime), body->mtime);
1516                         LTIME_S(inode->i_mtime) = body->mtime;
1517                 }
1518                 lli->lli_lvb.lvb_mtime = body->mtime;
1519         }
1520         if (body->valid & OBD_MD_FLCTIME) {
1521                 if (body->ctime > LTIME_S(inode->i_ctime))
1522                         LTIME_S(inode->i_ctime) = body->ctime;
1523                 lli->lli_lvb.lvb_ctime = body->ctime;
1524         }
1525         if (body->valid & OBD_MD_FLMODE)
1526                 inode->i_mode = (inode->i_mode & S_IFMT)|(body->mode & ~S_IFMT);
1527         if (body->valid & OBD_MD_FLTYPE)
1528                 inode->i_mode = (inode->i_mode & ~S_IFMT)|(body->mode & S_IFMT);
1529         LASSERT(inode->i_mode != 0);
1530         if (S_ISREG(inode->i_mode)) {
1531                 inode->i_blkbits = min(PTLRPC_MAX_BRW_BITS + 1, LL_MAX_BLKSIZE_BITS);
1532         } else {
1533                 inode->i_blkbits = inode->i_sb->s_blocksize_bits;
1534         }
1535 #ifdef HAVE_INODE_BLKSIZE
1536         inode->i_blksize = 1<<inode->i_blkbits;
1537 #endif
1538         if (body->valid & OBD_MD_FLUID)
1539                 inode->i_uid = body->uid;
1540         if (body->valid & OBD_MD_FLGID)
1541                 inode->i_gid = body->gid;
1542         if (body->valid & OBD_MD_FLFLAGS)
1543                 inode->i_flags = ll_ext_to_inode_flags(body->flags);
1544         if (body->valid & OBD_MD_FLNLINK)
1545                 inode->i_nlink = body->nlink;
1546         if (body->valid & OBD_MD_FLRDEV)
1547                 inode->i_rdev = old_decode_dev(body->rdev);
1548
1549         if (body->valid & OBD_MD_FLID) {
1550                 /* FID shouldn't be changed! */
1551                 if (fid_is_sane(&lli->lli_fid)) {
1552                         LASSERTF(lu_fid_eq(&lli->lli_fid, &body->fid1),
1553                                  "Trying to change FID "DFID
1554                                  " to the "DFID", inode %lu/%u(%p)\n",
1555                                  PFID(&lli->lli_fid), PFID(&body->fid1),
1556                                  inode->i_ino, inode->i_generation, inode);
1557                 } else
1558                         lli->lli_fid = body->fid1;
1559         }
1560
1561         LASSERT(fid_seq(&lli->lli_fid) != 0);
1562
1563         if (body->valid & OBD_MD_FLSIZE) {
1564                 if (exp_connect_som(ll_i2mdexp(inode)) &&
1565                     S_ISREG(inode->i_mode) && lli->lli_smd) {
1566                         struct lustre_handle lockh;
1567                         ldlm_mode_t mode;
1568
1569                         /* As it is possible a blocking ast has been processed
1570                          * by this time, we need to check there is an UPDATE
1571                          * lock on the client and set LLIF_MDS_SIZE_LOCK holding
1572                          * it. */
1573                         mode = ll_take_md_lock(inode, MDS_INODELOCK_UPDATE,
1574                                                &lockh);
1575                         if (mode) {
1576                                 if (lli->lli_flags & (LLIF_DONE_WRITING |
1577                                                       LLIF_EPOCH_PENDING |
1578                                                       LLIF_SOM_DIRTY)) {
1579                                         CERROR("ino %lu flags %lu still has "
1580                                                "size authority! do not trust "
1581                                                "the size got from MDS\n",
1582                                                inode->i_ino, lli->lli_flags);
1583                                 } else {
1584                                         /* Use old size assignment to avoid
1585                                          * deadlock bz14138 & bz14326 */
1586                                         inode->i_size = body->size;
1587                                         lli->lli_flags |= LLIF_MDS_SIZE_LOCK;
1588                                 }
1589                                 ldlm_lock_decref(&lockh, mode);
1590                         }
1591                 } else {
1592                         /* Use old size assignment to avoid
1593                          * deadlock bz14138 & bz14326 */
1594                         inode->i_size = body->size;
1595
1596                         CDEBUG(D_VFSTRACE, "inode=%lu, updating i_size %llu\n",
1597                                inode->i_ino, body->size);
1598                 }
1599
1600                 if (body->valid & OBD_MD_FLBLOCKS)
1601                         inode->i_blocks = body->blocks;
1602         }
1603
1604         if (body->valid & OBD_MD_FLMDSCAPA) {
1605                 LASSERT(md->mds_capa);
1606                 ll_add_capa(inode, md->mds_capa);
1607         }
1608         if (body->valid & OBD_MD_FLOSSCAPA) {
1609                 LASSERT(md->oss_capa);
1610                 ll_add_capa(inode, md->oss_capa);
1611         }
1612 }
1613
1614 static struct backing_dev_info ll_backing_dev_info = {
1615         .ra_pages       = 0,    /* No readahead */
1616 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,12))
1617         .capabilities   = 0,    /* Does contribute to dirty memory */
1618 #else
1619         .memory_backed  = 0,    /* Does contribute to dirty memory */
1620 #endif
1621 };
1622
1623 void ll_read_inode2(struct inode *inode, void *opaque)
1624 {
1625         struct lustre_md *md = opaque;
1626         struct ll_inode_info *lli = ll_i2info(inode);
1627         ENTRY;
1628
1629         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p)\n",
1630                inode->i_ino, inode->i_generation, inode);
1631
1632         ll_lli_init(lli);
1633
1634         LASSERT(!lli->lli_smd);
1635
1636         /* Core attributes from the MDS first.  This is a new inode, and
1637          * the VFS doesn't zero times in the core inode so we have to do
1638          * it ourselves.  They will be overwritten by either MDS or OST
1639          * attributes - we just need to make sure they aren't newer. */
1640         LTIME_S(inode->i_mtime) = 0;
1641         LTIME_S(inode->i_atime) = 0;
1642         LTIME_S(inode->i_ctime) = 0;
1643         inode->i_rdev = 0;
1644         ll_update_inode(inode, md);
1645
1646         /* OIDEBUG(inode); */
1647
1648         if (S_ISREG(inode->i_mode)) {
1649                 struct ll_sb_info *sbi = ll_i2sbi(inode);
1650                 inode->i_op = &ll_file_inode_operations;
1651                 inode->i_fop = sbi->ll_fop;
1652                 inode->i_mapping->a_ops = &ll_aops;
1653                 EXIT;
1654         } else if (S_ISDIR(inode->i_mode)) {
1655                 inode->i_op = &ll_dir_inode_operations;
1656                 inode->i_fop = &ll_dir_operations;
1657                 inode->i_mapping->a_ops = &ll_dir_aops;
1658                 EXIT;
1659         } else if (S_ISLNK(inode->i_mode)) {
1660                 inode->i_op = &ll_fast_symlink_inode_operations;
1661                 EXIT;
1662         } else {
1663                 inode->i_op = &ll_special_inode_operations;
1664
1665                 init_special_inode(inode, inode->i_mode,
1666                                    kdev_t_to_nr(inode->i_rdev));
1667
1668                 /* initializing backing dev info. */
1669                 inode->i_mapping->backing_dev_info = &ll_backing_dev_info;
1670
1671                 EXIT;
1672         }
1673 }
1674
1675 void ll_delete_inode(struct inode *inode)
1676 {
1677         struct ll_sb_info *sbi = ll_i2sbi(inode);
1678         int rc;
1679         ENTRY;
1680
1681         rc = obd_fid_delete(sbi->ll_md_exp, ll_inode2fid(inode));
1682         if (rc) {
1683                 CERROR("fid_delete() failed, rc %d\n", rc);
1684         }
1685         truncate_inode_pages(&inode->i_data, 0);
1686         clear_inode(inode);
1687
1688         EXIT;
1689 }
1690
1691 int ll_iocontrol(struct inode *inode, struct file *file,
1692                  unsigned int cmd, unsigned long arg)
1693 {
1694         struct ll_sb_info *sbi = ll_i2sbi(inode);
1695         struct ptlrpc_request *req = NULL;
1696         int rc, flags = 0;
1697         ENTRY;
1698
1699         switch(cmd) {
1700         case FSFILT_IOC_GETFLAGS: {
1701                 struct mdt_body *body;
1702                 struct md_op_data *op_data;
1703
1704                 op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL,
1705                                              0, 0, LUSTRE_OPC_ANY,
1706                                              NULL);
1707                 if (op_data == NULL)
1708                         RETURN(-ENOMEM);
1709
1710                 op_data->op_valid = OBD_MD_FLFLAGS;
1711                 rc = md_getattr(sbi->ll_md_exp, op_data, &req);
1712                 ll_finish_md_op_data(op_data);
1713                 if (rc) {
1714                         CERROR("failure %d inode %lu\n", rc, inode->i_ino);
1715                         RETURN(-abs(rc));
1716                 }
1717
1718                 body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
1719
1720                 flags = body->flags;
1721
1722                 ptlrpc_req_finished(req);
1723
1724                 RETURN(put_user(flags, (int *)arg));
1725         }
1726         case FSFILT_IOC_SETFLAGS: {
1727                 struct lov_stripe_md *lsm = ll_i2info(inode)->lli_smd;
1728                 struct obd_info oinfo = { { { 0 } } };
1729                 struct md_op_data *op_data;
1730
1731                 if (get_user(flags, (int *)arg))
1732                         RETURN(-EFAULT);
1733
1734                 oinfo.oi_md = lsm;
1735                 OBDO_ALLOC(oinfo.oi_oa);
1736                 if (!oinfo.oi_oa)
1737                         RETURN(-ENOMEM);
1738
1739                 op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL, 0, 0,
1740                                              LUSTRE_OPC_ANY, NULL);
1741                 if (IS_ERR(op_data))
1742                         RETURN(PTR_ERR(op_data));
1743
1744                 ((struct ll_iattr *)&op_data->op_attr)->ia_attr_flags = flags;
1745                 op_data->op_attr.ia_valid |= ATTR_ATTR_FLAG;
1746                 rc = md_setattr(sbi->ll_md_exp, op_data,
1747                                 NULL, 0, NULL, 0, &req, NULL);
1748                 ll_finish_md_op_data(op_data);
1749                 ptlrpc_req_finished(req);
1750                 if (rc) {
1751                         OBDO_FREE(oinfo.oi_oa);
1752                         RETURN(rc);
1753                 }
1754
1755                 if (lsm == NULL) {
1756                         OBDO_FREE(oinfo.oi_oa);
1757                         GOTO(update_cache, rc);
1758                 }
1759
1760                 oinfo.oi_oa->o_id = lsm->lsm_object_id;
1761                 oinfo.oi_oa->o_seq = lsm->lsm_object_seq;
1762                 oinfo.oi_oa->o_flags = flags;
1763                 oinfo.oi_oa->o_valid = OBD_MD_FLID | OBD_MD_FLFLAGS |
1764                                        OBD_MD_FLGROUP;
1765                 oinfo.oi_capa = ll_mdscapa_get(inode);
1766                 obdo_from_inode(oinfo.oi_oa, inode,
1767                                 &ll_i2info(inode)->lli_fid, 0);
1768                 rc = obd_setattr_rqset(sbi->ll_dt_exp, &oinfo, NULL);
1769                 capa_put(oinfo.oi_capa);
1770                 OBDO_FREE(oinfo.oi_oa);
1771                 if (rc) {
1772                         if (rc != -EPERM && rc != -EACCES)
1773                                 CERROR("osc_setattr_async fails: rc = %d\n",rc);
1774                         RETURN(rc);
1775                 }
1776
1777                 EXIT;
1778 update_cache:
1779                 inode->i_flags = ll_ext_to_inode_flags(flags);
1780                 return 0;
1781         }
1782         default:
1783                 RETURN(-ENOSYS);
1784         }
1785
1786         RETURN(0);
1787 }
1788
1789 int ll_flush_ctx(struct inode *inode)
1790 {
1791         struct ll_sb_info  *sbi = ll_i2sbi(inode);
1792
1793         CDEBUG(D_SEC, "flush context for user %d\n", cfs_curproc_uid());
1794
1795         obd_set_info_async(sbi->ll_md_exp,
1796                            sizeof(KEY_FLUSH_CTX), KEY_FLUSH_CTX,
1797                            0, NULL, NULL);
1798         obd_set_info_async(sbi->ll_dt_exp,
1799                            sizeof(KEY_FLUSH_CTX), KEY_FLUSH_CTX,
1800                            0, NULL, NULL);
1801         return 0;
1802 }
1803
1804 /* umount -f client means force down, don't save state */
1805 #ifdef HAVE_UMOUNTBEGIN_VFSMOUNT
1806 void ll_umount_begin(struct vfsmount *vfsmnt, int flags)
1807 {
1808         struct super_block *sb = vfsmnt->mnt_sb;
1809 #else
1810 void ll_umount_begin(struct super_block *sb)
1811 {
1812 #endif
1813         struct lustre_sb_info *lsi = s2lsi(sb);
1814         struct ll_sb_info *sbi = ll_s2sbi(sb);
1815         struct obd_device *obd;
1816         struct obd_ioctl_data *ioc_data;
1817         ENTRY;
1818
1819 #ifdef HAVE_UMOUNTBEGIN_VFSMOUNT
1820         if (!(flags & MNT_FORCE)) {
1821                 EXIT;
1822                 return;
1823         }
1824 #endif
1825
1826         /* Tell the MGC we got umount -f */
1827         lsi->lsi_flags |= LSI_UMOUNT_FORCE;
1828
1829         CDEBUG(D_VFSTRACE, "VFS Op: superblock %p count %d active %d\n", sb,
1830                sb->s_count, atomic_read(&sb->s_active));
1831
1832         obd = class_exp2obd(sbi->ll_md_exp);
1833         if (obd == NULL) {
1834                 CERROR("Invalid MDC connection handle "LPX64"\n",
1835                        sbi->ll_md_exp->exp_handle.h_cookie);
1836                 EXIT;
1837                 return;
1838         }
1839         obd->obd_force = 1;
1840
1841         obd = class_exp2obd(sbi->ll_dt_exp);
1842         if (obd == NULL) {
1843                 CERROR("Invalid LOV connection handle "LPX64"\n",
1844                        sbi->ll_dt_exp->exp_handle.h_cookie);
1845                 EXIT;
1846                 return;
1847         }
1848         obd->obd_force = 1;
1849
1850         OBD_ALLOC_PTR(ioc_data);
1851         if (ioc_data) {
1852                 obd_iocontrol(IOC_OSC_SET_ACTIVE, sbi->ll_md_exp,
1853                               sizeof ioc_data, ioc_data, NULL);
1854
1855                 obd_iocontrol(IOC_OSC_SET_ACTIVE, sbi->ll_dt_exp,
1856                               sizeof ioc_data, ioc_data, NULL);
1857
1858                 OBD_FREE_PTR(ioc_data);
1859         }
1860
1861
1862         /* Really, we'd like to wait until there are no requests outstanding,
1863          * and then continue.  For now, we just invalidate the requests,
1864          * schedule() and sleep one second if needed, and hope.
1865          */
1866         cfs_schedule();
1867 #ifdef HAVE_UMOUNTBEGIN_VFSMOUNT
1868         if (atomic_read(&vfsmnt->mnt_count) > 2) {
1869                 cfs_schedule_timeout_and_set_state(CFS_TASK_INTERRUPTIBLE,
1870                                                    cfs_time_seconds(1));
1871                 if (atomic_read(&vfsmnt->mnt_count) > 2)
1872                         LCONSOLE_WARN("Mount still busy with %d refs! You "
1873                                       "may try to umount it a bit later\n",
1874                                       atomic_read(&vfsmnt->mnt_count));
1875         }
1876 #endif
1877
1878         EXIT;
1879 }
1880
1881 int ll_remount_fs(struct super_block *sb, int *flags, char *data)
1882 {
1883         struct ll_sb_info *sbi = ll_s2sbi(sb);
1884         int err;
1885         __u32 read_only;
1886
1887         if ((*flags & MS_RDONLY) != (sb->s_flags & MS_RDONLY)) {
1888                 read_only = *flags & MS_RDONLY;
1889                 err = obd_set_info_async(sbi->ll_md_exp,
1890                                          sizeof(KEY_READ_ONLY),
1891                                          KEY_READ_ONLY, sizeof(read_only),
1892                                          &read_only, NULL);
1893                 if (err) {
1894                         CERROR("Failed to change the read-only flag during "
1895                                "remount: %d\n", err);
1896                         return err;
1897                 }
1898
1899                 if (read_only)
1900                         sb->s_flags |= MS_RDONLY;
1901                 else
1902                         sb->s_flags &= ~MS_RDONLY;
1903         }
1904         return 0;
1905 }
1906
1907 int ll_prep_inode(struct inode **inode,
1908                   struct ptlrpc_request *req,
1909                   struct super_block *sb)
1910 {
1911         struct ll_sb_info *sbi = NULL;
1912         struct lustre_md md;
1913         int rc;
1914         ENTRY;
1915
1916         LASSERT(*inode || sb);
1917         sbi = sb ? ll_s2sbi(sb) : ll_i2sbi(*inode);
1918         memset(&md, 0, sizeof(struct lustre_md));
1919
1920         rc = md_get_lustre_md(sbi->ll_md_exp, req, sbi->ll_dt_exp,
1921                               sbi->ll_md_exp, &md);
1922         if (rc)
1923                 RETURN(rc);
1924
1925         if (*inode) {
1926                 ll_update_inode(*inode, &md);
1927         } else {
1928                 LASSERT(sb != NULL);
1929
1930                 /*
1931                  * At this point server returns to client's same fid as client
1932                  * generated for creating. So using ->fid1 is okay here.
1933                  */
1934                 LASSERT(fid_is_sane(&md.body->fid1));
1935
1936                 *inode = ll_iget(sb, cl_fid_build_ino(&md.body->fid1), &md);
1937                 if (*inode == NULL || IS_ERR(*inode)) {
1938                         if (md.lsm)
1939                                 obd_free_memmd(sbi->ll_dt_exp, &md.lsm);
1940 #ifdef CONFIG_FS_POSIX_ACL
1941                         if (md.posix_acl) {
1942                                 posix_acl_release(md.posix_acl);
1943                                 md.posix_acl = NULL;
1944                         }
1945 #endif
1946                         rc = IS_ERR(*inode) ? PTR_ERR(*inode) : -ENOMEM;
1947                         *inode = NULL;
1948                         CERROR("new_inode -fatal: rc %d\n", rc);
1949                         GOTO(out, rc);
1950                 }
1951         }
1952
1953 out:
1954         md_free_lustre_md(sbi->ll_md_exp, &md);
1955         RETURN(rc);
1956 }
1957
1958 int ll_obd_statfs(struct inode *inode, void *arg)
1959 {
1960         struct ll_sb_info *sbi = NULL;
1961         struct obd_export *exp;
1962         char *buf = NULL;
1963         struct obd_ioctl_data *data = NULL;
1964         __u32 type;
1965         int len = 0, rc;
1966
1967         if (!inode || !(sbi = ll_i2sbi(inode)))
1968                 GOTO(out_statfs, rc = -EINVAL);
1969
1970         rc = obd_ioctl_getdata(&buf, &len, arg);
1971         if (rc)
1972                 GOTO(out_statfs, rc);
1973
1974         data = (void*)buf;
1975         if (!data->ioc_inlbuf1 || !data->ioc_inlbuf2 ||
1976             !data->ioc_pbuf1 || !data->ioc_pbuf2)
1977                 GOTO(out_statfs, rc = -EINVAL);
1978
1979         if (data->ioc_inllen1 != sizeof(__u32) ||
1980             data->ioc_inllen2 != sizeof(__u32) ||
1981             data->ioc_plen1 != sizeof(struct obd_statfs) ||
1982             data->ioc_plen2 != sizeof(struct obd_uuid))
1983                 GOTO(out_statfs, rc = -EINVAL);
1984
1985         memcpy(&type, data->ioc_inlbuf1, sizeof(__u32));
1986         if (type == LL_STATFS_MDC)
1987                 exp = sbi->ll_md_exp;
1988         else if (type == LL_STATFS_LOV)
1989                 exp = sbi->ll_dt_exp;
1990         else
1991                 GOTO(out_statfs, rc = -ENODEV);
1992
1993         rc = obd_iocontrol(IOC_OBD_STATFS, exp, len, buf, NULL);
1994         if (rc)
1995                 GOTO(out_statfs, rc);
1996 out_statfs:
1997         if (buf)
1998                 obd_ioctl_freedata(buf, len);
1999         return rc;
2000 }
2001
2002 int ll_process_config(struct lustre_cfg *lcfg)
2003 {
2004         char *ptr;
2005         void *sb;
2006         struct lprocfs_static_vars lvars;
2007         unsigned long x;
2008         int rc = 0;
2009
2010         lprocfs_llite_init_vars(&lvars);
2011
2012         /* The instance name contains the sb: lustre-client-aacfe000 */
2013         ptr = strrchr(lustre_cfg_string(lcfg, 0), '-');
2014         if (!ptr || !*(++ptr))
2015                 return -EINVAL;
2016         if (sscanf(ptr, "%lx", &x) != 1)
2017                 return -EINVAL;
2018         sb = (void *)x;
2019         /* This better be a real Lustre superblock! */
2020         LASSERT(s2lsi((struct super_block *)sb)->lsi_lmd->lmd_magic == LMD_MAGIC);
2021
2022         /* Note we have not called client_common_fill_super yet, so
2023            proc fns must be able to handle that! */
2024         rc = class_process_proc_param(PARAM_LLITE, lvars.obd_vars,
2025                                       lcfg, sb);
2026         if (rc > 0)
2027                 rc = 0;
2028         return(rc);
2029 }
2030
2031 /* this function prepares md_op_data hint for passing ot down to MD stack. */
2032 struct md_op_data * ll_prep_md_op_data(struct md_op_data *op_data,
2033                                        struct inode *i1, struct inode *i2,
2034                                        const char *name, int namelen,
2035                                        int mode, __u32 opc, void *data)
2036 {
2037         LASSERT(i1 != NULL);
2038
2039         if (namelen > ll_i2sbi(i1)->ll_namelen)
2040                 return ERR_PTR(-ENAMETOOLONG);
2041
2042         if (op_data == NULL)
2043                 OBD_ALLOC_PTR(op_data);
2044
2045         if (op_data == NULL)
2046                 return ERR_PTR(-ENOMEM);
2047
2048         ll_i2gids(op_data->op_suppgids, i1, i2);
2049         op_data->op_fid1 = *ll_inode2fid(i1);
2050         op_data->op_capa1 = ll_mdscapa_get(i1);
2051
2052         if (i2) {
2053                 op_data->op_fid2 = *ll_inode2fid(i2);
2054                 op_data->op_capa2 = ll_mdscapa_get(i2);
2055         } else {
2056                 fid_zero(&op_data->op_fid2);
2057                 op_data->op_capa2 = NULL;
2058         }
2059
2060         op_data->op_name = name;
2061         op_data->op_namelen = namelen;
2062         op_data->op_mode = mode;
2063         op_data->op_mod_time = cfs_time_current_sec();
2064         op_data->op_fsuid = cfs_curproc_fsuid();
2065         op_data->op_fsgid = cfs_curproc_fsgid();
2066         op_data->op_cap = cfs_curproc_cap_pack();
2067         op_data->op_bias = MDS_CHECK_SPLIT;
2068         op_data->op_opc = opc;
2069         op_data->op_mds = 0;
2070         op_data->op_data = data;
2071
2072         return op_data;
2073 }
2074
2075 void ll_finish_md_op_data(struct md_op_data *op_data)
2076 {
2077         capa_put(op_data->op_capa1);
2078         capa_put(op_data->op_capa2);
2079         OBD_FREE_PTR(op_data);
2080 }
2081
2082 int ll_show_options(struct seq_file *seq, struct vfsmount *vfs)
2083 {
2084         struct ll_sb_info *sbi;
2085
2086         LASSERT((seq != NULL) && (vfs != NULL));
2087         sbi = ll_s2sbi(vfs->mnt_sb);
2088
2089         if (sbi->ll_flags & LL_SBI_NOLCK)
2090                 seq_puts(seq, ",nolock");
2091
2092         if (sbi->ll_flags & LL_SBI_FLOCK)
2093                 seq_puts(seq, ",flock");
2094
2095         if (sbi->ll_flags & LL_SBI_LOCALFLOCK)
2096                 seq_puts(seq, ",localflock");
2097
2098         if (sbi->ll_flags & LL_SBI_USER_XATTR)
2099                 seq_puts(seq, ",user_xattr");
2100
2101         if (sbi->ll_flags & LL_SBI_LAZYSTATFS)
2102                 seq_puts(seq, ",lazystatfs");
2103
2104         RETURN(0);
2105 }