Whamcloud - gitweb
b=22864 'som_preview' mount option for lustre client.
[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  2008 Sun Microsystems, Inc. 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/random.h>
46 #include <linux/version.h>
47 #include <linux/mm.h>
48
49 #include <lustre_lite.h>
50 #include <lustre_ha.h>
51 #include <lustre_dlm.h>
52 #include <lprocfs_status.h>
53 #include <lustre_disk.h>
54 #include <lustre_param.h>
55 #include <lustre_log.h>
56 #include <cl_object.h>
57 #include <obd_cksum.h>
58 #include "llite_internal.h"
59
60 cfs_mem_cache_t *ll_file_data_slab;
61
62 CFS_LIST_HEAD(ll_super_blocks);
63 cfs_spinlock_t ll_sb_lock = CFS_SPIN_LOCK_UNLOCKED;
64
65 extern struct address_space_operations ll_aops;
66 extern struct address_space_operations ll_dir_aops;
67
68 #ifndef log2
69 #define log2(n) cfs_ffz(~(n))
70 #endif
71
72 static struct ll_sb_info *ll_init_sbi(void)
73 {
74         struct ll_sb_info *sbi = NULL;
75         unsigned long pages;
76         struct sysinfo si;
77         class_uuid_t uuid;
78         int i;
79         ENTRY;
80
81         OBD_ALLOC(sbi, sizeof(*sbi));
82         if (!sbi)
83                 RETURN(NULL);
84
85         cfs_spin_lock_init(&sbi->ll_lock);
86         cfs_init_mutex(&sbi->ll_lco.lco_lock);
87         cfs_spin_lock_init(&sbi->ll_pp_extent_lock);
88         cfs_spin_lock_init(&sbi->ll_process_lock);
89         sbi->ll_rw_stats_on = 0;
90
91         si_meminfo(&si);
92         pages = si.totalram - si.totalhigh;
93         if (pages >> (20 - CFS_PAGE_SHIFT) < 512) {
94 #ifdef HAVE_BGL_SUPPORT
95                 sbi->ll_async_page_max = pages / 4;
96 #else
97                 sbi->ll_async_page_max = pages / 2;
98 #endif
99         } else {
100                 sbi->ll_async_page_max = (pages / 4) * 3;
101         }
102
103         sbi->ll_ra_info.ra_max_pages_per_file = min(pages / 32,
104                                            SBI_DEFAULT_READAHEAD_MAX);
105         sbi->ll_ra_info.ra_max_pages = sbi->ll_ra_info.ra_max_pages_per_file;
106         sbi->ll_ra_info.ra_max_read_ahead_whole_pages =
107                                            SBI_DEFAULT_READAHEAD_WHOLE_MAX;
108         CFS_INIT_LIST_HEAD(&sbi->ll_conn_chain);
109         CFS_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         cfs_spin_lock(&ll_sb_lock);
116         cfs_list_add_tail(&sbi->ll_list, &ll_super_blocks);
117         cfs_spin_unlock(&ll_sb_lock);
118
119 #ifdef ENABLE_LLITE_CHECKSUM
120         sbi->ll_flags |= LL_SBI_CHECKSUM;
121 #endif
122
123 #ifdef HAVE_LRU_RESIZE_SUPPORT
124         sbi->ll_flags |= LL_SBI_LRU_RESIZE;
125 #endif
126
127         for (i = 0; i <= LL_PROCESS_HIST_MAX; i++) {
128                 cfs_spin_lock_init(&sbi->ll_rw_extents_info.pp_extents[i]. \
129                                    pp_r_hist.oh_lock);
130                 cfs_spin_lock_init(&sbi->ll_rw_extents_info.pp_extents[i]. \
131                                    pp_w_hist.oh_lock);
132         }
133
134         /* metadata statahead is enabled by default */
135         sbi->ll_sa_max = LL_SA_RPC_DEF;
136         atomic_set(&sbi->ll_sa_total, 0);
137         atomic_set(&sbi->ll_sa_wrong, 0);
138
139         RETURN(sbi);
140 }
141
142 void ll_free_sbi(struct super_block *sb)
143 {
144         struct ll_sb_info *sbi = ll_s2sbi(sb);
145         ENTRY;
146
147         if (sbi != NULL) {
148                 cfs_spin_lock(&ll_sb_lock);
149                 cfs_list_del(&sbi->ll_list);
150                 cfs_spin_unlock(&ll_sb_lock);
151                 OBD_FREE(sbi, sizeof(*sbi));
152         }
153         EXIT;
154 }
155
156 static struct dentry_operations ll_d_root_ops = {
157         .d_compare = ll_dcompare,
158         .d_revalidate = ll_revalidate_nd,
159 };
160
161 static int client_common_fill_super(struct super_block *sb, char *md, char *dt)
162 {
163         struct inode *root = 0;
164         struct ll_sb_info *sbi = ll_s2sbi(sb);
165         struct obd_device *obd;
166         struct obd_capa *oc = NULL;
167         struct obd_statfs osfs;
168         struct ptlrpc_request *request = NULL;
169         struct obd_connect_data *data = NULL;
170         struct obd_uuid *uuid;
171         struct md_op_data *op_data;
172         struct lustre_md lmd;
173         obd_valid valid;
174         int size, err, checksum;
175         ENTRY;
176
177         obd = class_name2obd(md);
178         if (!obd) {
179                 CERROR("MD %s: not setup or attached\n", md);
180                 RETURN(-EINVAL);
181         }
182
183         OBD_ALLOC_PTR(data);
184         if (data == NULL)
185                 RETURN(-ENOMEM);
186
187         if (proc_lustre_fs_root) {
188                 err = lprocfs_register_mountpoint(proc_lustre_fs_root, sb,
189                                                   dt, md);
190                 if (err < 0)
191                         CERROR("could not register mount in /proc/fs/lustre\n");
192         }
193
194         /* indicate the features supported by this client */
195         data->ocd_connect_flags = OBD_CONNECT_IBITS    | OBD_CONNECT_NODEVOH  |
196                                   OBD_CONNECT_JOIN     | OBD_CONNECT_ATTRFID  |
197                                   OBD_CONNECT_VERSION  | OBD_CONNECT_MDS_CAPA |
198                                   OBD_CONNECT_OSS_CAPA | OBD_CONNECT_CANCELSET|
199                                   OBD_CONNECT_FID      | OBD_CONNECT_AT |
200                                   OBD_CONNECT_LOV_V3 | OBD_CONNECT_RMT_CLIENT |
201                                   OBD_CONNECT_VBR      | OBD_CONNECT_FULL20;
202
203         if (sbi->ll_flags & LL_SBI_SOM_PREVIEW)
204                 data->ocd_connect_flags |= OBD_CONNECT_SOM;
205
206 #ifdef HAVE_LRU_RESIZE_SUPPORT
207         if (sbi->ll_flags & LL_SBI_LRU_RESIZE)
208                 data->ocd_connect_flags |= OBD_CONNECT_LRU_RESIZE;
209 #endif
210 #ifdef CONFIG_FS_POSIX_ACL
211         data->ocd_connect_flags |= OBD_CONNECT_ACL;
212 #endif
213         data->ocd_ibits_known = MDS_INODELOCK_FULL;
214         data->ocd_version = LUSTRE_VERSION_CODE;
215
216         if (sb->s_flags & MS_RDONLY)
217                 data->ocd_connect_flags |= OBD_CONNECT_RDONLY;
218         if (sbi->ll_flags & LL_SBI_USER_XATTR)
219                 data->ocd_connect_flags |= OBD_CONNECT_XATTR;
220
221 #ifdef HAVE_MS_FLOCK_LOCK
222         /* force vfs to use lustre handler for flock() calls - bug 10743 */
223         sb->s_flags |= MS_FLOCK_LOCK;
224 #endif
225
226         if (sbi->ll_flags & LL_SBI_FLOCK)
227                 sbi->ll_fop = &ll_file_operations_flock;
228         else if (sbi->ll_flags & LL_SBI_LOCALFLOCK)
229                 sbi->ll_fop = &ll_file_operations;
230         else
231                 sbi->ll_fop = &ll_file_operations_noflock;
232
233         /* real client */
234         data->ocd_connect_flags |= OBD_CONNECT_REAL;
235         if (sbi->ll_flags & LL_SBI_RMT_CLIENT)
236                 data->ocd_connect_flags |= OBD_CONNECT_RMT_CLIENT_FORCE;
237
238         err = obd_connect(NULL, &sbi->ll_md_exp, obd, &sbi->ll_sb_uuid, data, NULL);
239         if (err == -EBUSY) {
240                 LCONSOLE_ERROR_MSG(0x14f, "An MDT (md %s) is performing "
241                                    "recovery, of which this client is not a "
242                                    "part. Please wait for recovery to complete,"
243                                    " abort, or time out.\n", md);
244                 GOTO(out, err);
245         } else if (err) {
246                 CERROR("cannot connect to %s: rc = %d\n", md, err);
247                 GOTO(out, err);
248         }
249
250         err = obd_fid_init(sbi->ll_md_exp);
251         if (err) {
252                 CERROR("Can't init metadata layer FID infrastructure, "
253                        "rc %d\n", err);
254                 GOTO(out_md, err);
255         }
256
257         err = obd_statfs(obd, &osfs, cfs_time_current_64() - CFS_HZ, 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                 tmp = ll_set_opt("acl", s1, LL_SBI_ACL);
715                 if (tmp) {
716                         /* Ignore deprecated mount option.  The client will
717                          * always try to mount with ACL support, whether this
718                          * is used depends on whether server supports it. */
719                         goto next;
720                 }
721                 tmp = ll_set_opt("noacl", s1, LL_SBI_ACL);
722                 if (tmp) {
723                         goto next;
724                 }
725                 tmp = ll_set_opt("remote_client", s1, LL_SBI_RMT_CLIENT);
726                 if (tmp) {
727                         *flags |= tmp;
728                         goto next;
729                 }
730
731                 tmp = ll_set_opt("checksum", s1, LL_SBI_CHECKSUM);
732                 if (tmp) {
733                         *flags |= tmp;
734                         goto next;
735                 }
736                 tmp = ll_set_opt("nochecksum", s1, LL_SBI_CHECKSUM);
737                 if (tmp) {
738                         *flags &= ~tmp;
739                         goto next;
740                 }
741                 tmp = ll_set_opt("lruresize", s1, LL_SBI_LRU_RESIZE);
742                 if (tmp) {
743                         *flags |= tmp;
744                         goto next;
745                 }
746                 tmp = ll_set_opt("nolruresize", s1, LL_SBI_LRU_RESIZE);
747                 if (tmp) {
748                         *flags &= ~tmp;
749                         goto next;
750                 }
751                 tmp = ll_set_opt("lazystatfs", s1, LL_SBI_LAZYSTATFS);
752                 if (tmp) {
753                         *flags |= tmp;
754                         goto next;
755                 }
756                 tmp = ll_set_opt("nolazystatfs", s1, LL_SBI_LAZYSTATFS);
757                 if (tmp) {
758                         *flags &= ~tmp;
759                         goto next;
760                 }
761                 tmp = ll_set_opt("som_preview", s1, LL_SBI_SOM_PREVIEW);
762                 if (tmp) {
763                         *flags |= tmp;
764                         goto next;
765                 }
766
767                 LCONSOLE_ERROR_MSG(0x152, "Unknown option '%s', won't mount.\n",
768                                    s1);
769                 RETURN(-EINVAL);
770
771 next:
772                 /* Find next opt */
773                 s2 = strchr(s1, ',');
774                 if (s2 == NULL)
775                         break;
776                 s1 = s2 + 1;
777         }
778         RETURN(0);
779 }
780
781 void ll_lli_init(struct ll_inode_info *lli)
782 {
783         lli->lli_inode_magic = LLI_INODE_MAGIC;
784         cfs_sema_init(&lli->lli_size_sem, 1);
785         cfs_sema_init(&lli->lli_write_sem, 1);
786         cfs_sema_init(&lli->lli_trunc_sem, 1);
787         lli->lli_flags = 0;
788         lli->lli_maxbytes = PAGE_CACHE_MAXBYTES;
789         cfs_spin_lock_init(&lli->lli_lock);
790         CFS_INIT_LIST_HEAD(&lli->lli_close_list);
791         lli->lli_inode_magic = LLI_INODE_MAGIC;
792         cfs_sema_init(&lli->lli_och_sem, 1);
793         lli->lli_mds_read_och = lli->lli_mds_write_och = NULL;
794         lli->lli_mds_exec_och = NULL;
795         lli->lli_open_fd_read_count = lli->lli_open_fd_write_count = 0;
796         lli->lli_open_fd_exec_count = 0;
797         CFS_INIT_LIST_HEAD(&lli->lli_dead_list);
798         lli->lli_remote_perms = NULL;
799         lli->lli_rmtperm_utime = 0;
800         cfs_sema_init(&lli->lli_rmtperm_sem, 1);
801         CFS_INIT_LIST_HEAD(&lli->lli_oss_capas);
802         cfs_spin_lock_init(&lli->lli_sa_lock);
803         CFS_INIT_LIST_HEAD(&lli->lli_sa_dentry);
804 }
805
806 int ll_fill_super(struct super_block *sb)
807 {
808         struct lustre_profile *lprof;
809         struct lustre_sb_info *lsi = s2lsi(sb);
810         struct ll_sb_info *sbi;
811         char  *dt = NULL, *md = NULL;
812         char  *profilenm = get_profile_name(sb);
813         struct config_llog_instance cfg = {0, };
814         char   ll_instance[sizeof(sb) * 2 + 1];
815         int    err;
816         ENTRY;
817
818         CDEBUG(D_VFSTRACE, "VFS Op: sb %p\n", sb);
819
820         cfs_module_get();
821
822         /* client additional sb info */
823         lsi->lsi_llsbi = sbi = ll_init_sbi();
824         if (!sbi) {
825                 cfs_module_put(THIS_MODULE);
826                 RETURN(-ENOMEM);
827         }
828
829         err = ll_options(lsi->lsi_lmd->lmd_opts, &sbi->ll_flags);
830         if (err)
831                 GOTO(out_free, err);
832
833         /* Generate a string unique to this super, in case some joker tries
834            to mount the same fs at two mount points.
835            Use the address of the super itself.*/
836         sprintf(ll_instance, "%p", sb);
837         cfg.cfg_instance = ll_instance;
838         cfg.cfg_uuid = lsi->lsi_llsbi->ll_sb_uuid;
839
840         /* set up client obds */
841         err = lustre_process_log(sb, profilenm, &cfg);
842         if (err < 0) {
843                 CERROR("Unable to process log: %d\n", err);
844                 GOTO(out_free, err);
845         }
846
847         lprof = class_get_profile(profilenm);
848         if (lprof == NULL) {
849                 LCONSOLE_ERROR_MSG(0x156, "The client profile '%s' could not be"
850                                    " read from the MGS.  Does that filesystem "
851                                    "exist?\n", profilenm);
852                 GOTO(out_free, err = -EINVAL);
853         }
854         CDEBUG(D_CONFIG, "Found profile %s: mdc=%s osc=%s\n", profilenm,
855                lprof->lp_md, lprof->lp_dt);
856
857         OBD_ALLOC(dt, strlen(lprof->lp_dt) +
858                   strlen(ll_instance) + 2);
859         if (!dt)
860                 GOTO(out_free, err = -ENOMEM);
861         sprintf(dt, "%s-%s", lprof->lp_dt, ll_instance);
862
863         OBD_ALLOC(md, strlen(lprof->lp_md) +
864                   strlen(ll_instance) + 2);
865         if (!md)
866                 GOTO(out_free, err = -ENOMEM);
867         sprintf(md, "%s-%s", lprof->lp_md, ll_instance);
868
869         /* connections, registrations, sb setup */
870         err = client_common_fill_super(sb, md, dt);
871
872 out_free:
873         if (md)
874                 OBD_FREE(md, strlen(md) + 1);
875         if (dt)
876                 OBD_FREE(dt, strlen(dt) + 1);
877         if (err)
878                 ll_put_super(sb);
879         else
880                 LCONSOLE_WARN("Client %s has started\n", profilenm);
881
882         RETURN(err);
883 } /* ll_fill_super */
884
885
886 void lu_context_keys_dump(void);
887
888 void ll_put_super(struct super_block *sb)
889 {
890         struct config_llog_instance cfg;
891         char   ll_instance[sizeof(sb) * 2 + 1];
892         struct obd_device *obd;
893         struct lustre_sb_info *lsi = s2lsi(sb);
894         struct ll_sb_info *sbi = ll_s2sbi(sb);
895         char *profilenm = get_profile_name(sb);
896         int force = 1, next;
897         ENTRY;
898
899         CDEBUG(D_VFSTRACE, "VFS Op: sb %p - %s\n", sb, profilenm);
900
901         ll_print_capa_stat(sbi);
902
903         sprintf(ll_instance, "%p", sb);
904         cfg.cfg_instance = ll_instance;
905         lustre_end_log(sb, NULL, &cfg);
906
907         if (sbi->ll_md_exp) {
908                 obd = class_exp2obd(sbi->ll_md_exp);
909                 if (obd)
910                         force = obd->obd_force;
911         }
912
913         /* We need to set force before the lov_disconnect in
914            lustre_common_put_super, since l_d cleans up osc's as well. */
915         if (force) {
916                 next = 0;
917                 while ((obd = class_devices_in_group(&sbi->ll_sb_uuid,
918                                                      &next)) != NULL) {
919                         obd->obd_force = force;
920                 }
921         }
922
923         if (sbi->ll_lcq) {
924                 /* Only if client_common_fill_super succeeded */
925                 client_common_put_super(sb);
926         }
927
928         next = 0;
929         while ((obd = class_devices_in_group(&sbi->ll_sb_uuid, &next)) !=NULL) {
930                 class_manual_cleanup(obd);
931         }
932
933         if (profilenm)
934                 class_del_profile(profilenm);
935
936         ll_free_sbi(sb);
937         lsi->lsi_llsbi = NULL;
938
939         lustre_common_put_super(sb);
940
941         cl_env_cache_purge(~0);
942
943         LCONSOLE_WARN("client %s umount complete\n", ll_instance);
944
945         cfs_module_put(THIS_MODULE);
946
947         EXIT;
948 } /* client_put_super */
949
950 struct inode *ll_inode_from_lock(struct ldlm_lock *lock)
951 {
952         struct inode *inode = NULL;
953         /* NOTE: we depend on atomic igrab() -bzzz */
954         lock_res_and_lock(lock);
955         if (lock->l_ast_data) {
956                 struct ll_inode_info *lli = ll_i2info(lock->l_ast_data);
957                 if (lli->lli_inode_magic == LLI_INODE_MAGIC) {
958                         inode = igrab(lock->l_ast_data);
959                 } else {
960                         inode = lock->l_ast_data;
961                         ldlm_lock_debug(NULL, inode->i_state & I_FREEING ?
962                                                 D_INFO : D_WARNING,
963                                         lock, __FILE__, __func__, __LINE__,
964                                         "l_ast_data %p is bogus: magic %08x",
965                                         lock->l_ast_data, lli->lli_inode_magic);
966                         inode = NULL;
967                 }
968         }
969         unlock_res_and_lock(lock);
970         return inode;
971 }
972
973 static int null_if_equal(struct ldlm_lock *lock, void *data)
974 {
975         if (data == lock->l_ast_data) {
976                 lock->l_ast_data = NULL;
977
978                 if (lock->l_req_mode != lock->l_granted_mode)
979                         LDLM_ERROR(lock,"clearing inode with ungranted lock");
980         }
981
982         return LDLM_ITER_CONTINUE;
983 }
984
985 void ll_clear_inode(struct inode *inode)
986 {
987         struct ll_inode_info *lli = ll_i2info(inode);
988         struct ll_sb_info *sbi = ll_i2sbi(inode);
989         ENTRY;
990
991         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p)\n", inode->i_ino,
992                inode->i_generation, inode);
993
994         if (S_ISDIR(inode->i_mode)) {
995                 /* these should have been cleared in ll_file_release */
996                 LASSERT(lli->lli_sai == NULL);
997                 LASSERT(lli->lli_opendir_key == NULL);
998                 LASSERT(lli->lli_opendir_pid == 0);
999         }
1000
1001         ll_i2info(inode)->lli_flags &= ~LLIF_MDS_SIZE_LOCK;
1002         md_change_cbdata(sbi->ll_md_exp, ll_inode2fid(inode),
1003                          null_if_equal, inode);
1004
1005         LASSERT(!lli->lli_open_fd_write_count);
1006         LASSERT(!lli->lli_open_fd_read_count);
1007         LASSERT(!lli->lli_open_fd_exec_count);
1008
1009         if (lli->lli_mds_write_och)
1010                 ll_md_real_close(inode, FMODE_WRITE);
1011         if (lli->lli_mds_exec_och)
1012                 ll_md_real_close(inode, FMODE_EXEC);
1013         if (lli->lli_mds_read_och)
1014                 ll_md_real_close(inode, FMODE_READ);
1015
1016         if (lli->lli_symlink_name) {
1017                 OBD_FREE(lli->lli_symlink_name,
1018                          strlen(lli->lli_symlink_name) + 1);
1019                 lli->lli_symlink_name = NULL;
1020         }
1021
1022         if (sbi->ll_flags & LL_SBI_RMT_CLIENT) {
1023                 LASSERT(lli->lli_posix_acl == NULL);
1024                 if (lli->lli_remote_perms) {
1025                         free_rmtperm_hash(lli->lli_remote_perms);
1026                         lli->lli_remote_perms = NULL;
1027                 }
1028         }
1029 #ifdef CONFIG_FS_POSIX_ACL
1030         else if (lli->lli_posix_acl) {
1031                 LASSERT(cfs_atomic_read(&lli->lli_posix_acl->a_refcount) == 1);
1032                 LASSERT(lli->lli_remote_perms == NULL);
1033                 posix_acl_release(lli->lli_posix_acl);
1034                 lli->lli_posix_acl = NULL;
1035         }
1036 #endif
1037         lli->lli_inode_magic = LLI_INODE_DEAD;
1038
1039         ll_clear_inode_capas(inode);
1040         /*
1041          * XXX This has to be done before lsm is freed below, because
1042          * cl_object still uses inode lsm.
1043          */
1044         cl_inode_fini(inode);
1045
1046         if (lli->lli_smd) {
1047                 obd_free_memmd(sbi->ll_dt_exp, &lli->lli_smd);
1048                 lli->lli_smd = NULL;
1049         }
1050
1051
1052         EXIT;
1053 }
1054
1055 int ll_md_setattr(struct inode *inode, struct md_op_data *op_data,
1056                   struct md_open_data **mod)
1057 {
1058         struct lustre_md md;
1059         struct ll_sb_info *sbi = ll_i2sbi(inode);
1060         struct ptlrpc_request *request = NULL;
1061         int rc;
1062         ENTRY;
1063
1064         op_data = ll_prep_md_op_data(op_data, inode, NULL, NULL, 0, 0,
1065                                      LUSTRE_OPC_ANY, NULL);
1066         if (IS_ERR(op_data))
1067                 RETURN(PTR_ERR(op_data));
1068
1069         rc = md_setattr(sbi->ll_md_exp, op_data, NULL, 0, NULL, 0,
1070                         &request, mod);
1071         if (rc) {
1072                 ptlrpc_req_finished(request);
1073                 if (rc == -ENOENT) {
1074                         inode->i_nlink = 0;
1075                         /* Unlinked special device node? Or just a race?
1076                          * Pretend we done everything. */
1077                         if (!S_ISREG(inode->i_mode) &&
1078                             !S_ISDIR(inode->i_mode))
1079                                 rc = inode_setattr(inode, &op_data->op_attr);
1080                 } else if (rc != -EPERM && rc != -EACCES && rc != -ETXTBSY) {
1081                         CERROR("md_setattr fails: rc = %d\n", rc);
1082                 }
1083                 RETURN(rc);
1084         }
1085
1086         rc = md_get_lustre_md(sbi->ll_md_exp, request, sbi->ll_dt_exp,
1087                               sbi->ll_md_exp, &md);
1088         if (rc) {
1089                 ptlrpc_req_finished(request);
1090                 RETURN(rc);
1091         }
1092
1093         /* We call inode_setattr to adjust timestamps.
1094          * If there is at least some data in file, we cleared ATTR_SIZE
1095          * above to avoid invoking vmtruncate, otherwise it is important
1096          * to call vmtruncate in inode_setattr to update inode->i_size
1097          * (bug 6196) */
1098         rc = inode_setattr(inode, &op_data->op_attr);
1099
1100         /* Extract epoch data if obtained. */
1101         op_data->op_handle = md.body->handle;
1102         op_data->op_ioepoch = md.body->ioepoch;
1103
1104         ll_update_inode(inode, &md);
1105         ptlrpc_req_finished(request);
1106
1107         RETURN(rc);
1108 }
1109
1110 /* Close IO epoch and send Size-on-MDS attribute update. */
1111 static int ll_setattr_done_writing(struct inode *inode,
1112                                    struct md_op_data *op_data,
1113                                    struct md_open_data *mod)
1114 {
1115         struct ll_inode_info *lli = ll_i2info(inode);
1116         int rc = 0;
1117         ENTRY;
1118
1119         LASSERT(op_data != NULL);
1120         if (!S_ISREG(inode->i_mode))
1121                 RETURN(0);
1122
1123         CDEBUG(D_INODE, "Epoch "LPU64" closed on "DFID" for truncate\n",
1124                op_data->op_ioepoch, PFID(&lli->lli_fid));
1125
1126         op_data->op_flags = MF_EPOCH_CLOSE;
1127         ll_done_writing_attr(inode, op_data);
1128         ll_pack_inode2opdata(inode, op_data, NULL);
1129
1130         rc = md_done_writing(ll_i2sbi(inode)->ll_md_exp, op_data, mod);
1131         if (rc == -EAGAIN) {
1132                 /* MDS has instructed us to obtain Size-on-MDS attribute
1133                  * from OSTs and send setattr to back to MDS. */
1134                 rc = ll_som_update(inode, op_data);
1135         } else if (rc) {
1136                 CERROR("inode %lu mdc truncate failed: rc = %d\n",
1137                        inode->i_ino, rc);
1138         }
1139         RETURN(rc);
1140 }
1141
1142 static int ll_setattr_ost(struct inode *inode, struct iattr *attr)
1143 {
1144         struct obd_capa *capa;
1145         int rc;
1146
1147         if (attr->ia_valid & ATTR_SIZE)
1148                 capa = ll_osscapa_get(inode, CAPA_OPC_OSS_TRUNC);
1149         else
1150                 capa = ll_mdscapa_get(inode);
1151
1152         rc = cl_setattr_ost(inode, attr, capa);
1153
1154         if (attr->ia_valid & ATTR_SIZE)
1155                 ll_truncate_free_capa(capa);
1156         else
1157                 capa_put(capa);
1158
1159         return rc;
1160 }
1161
1162 /* If this inode has objects allocated to it (lsm != NULL), then the OST
1163  * object(s) determine the file size and mtime.  Otherwise, the MDS will
1164  * keep these values until such a time that objects are allocated for it.
1165  * We do the MDS operations first, as it is checking permissions for us.
1166  * We don't to the MDS RPC if there is nothing that we want to store there,
1167  * otherwise there is no harm in updating mtime/atime on the MDS if we are
1168  * going to do an RPC anyways.
1169  *
1170  * If we are doing a truncate, we will send the mtime and ctime updates
1171  * to the OST with the punch RPC, otherwise we do an explicit setattr RPC.
1172  * I don't believe it is possible to get e.g. ATTR_MTIME_SET and ATTR_SIZE
1173  * at the same time.
1174  */
1175 int ll_setattr_raw(struct inode *inode, struct iattr *attr)
1176 {
1177         struct ll_inode_info *lli = ll_i2info(inode);
1178         struct lov_stripe_md *lsm = lli->lli_smd;
1179         struct md_op_data *op_data = NULL;
1180         struct md_open_data *mod = NULL;
1181         int ia_valid = attr->ia_valid;
1182         int rc = 0, rc1 = 0;
1183         ENTRY;
1184
1185         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu valid %x\n", inode->i_ino,
1186                attr->ia_valid);
1187         ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_SETATTR, 1);
1188
1189         if (ia_valid & ATTR_SIZE) {
1190                 if (attr->ia_size > ll_file_maxbytes(inode)) {
1191                         CDEBUG(D_INODE, "file too large %llu > "LPU64"\n",
1192                                attr->ia_size, ll_file_maxbytes(inode));
1193                         RETURN(-EFBIG);
1194                 }
1195
1196                 attr->ia_valid |= ATTR_MTIME | ATTR_CTIME;
1197         }
1198
1199         /* POSIX: check before ATTR_*TIME_SET set (from inode_change_ok) */
1200         if (ia_valid & (ATTR_MTIME_SET | ATTR_ATIME_SET)) {
1201                 if (cfs_curproc_fsuid() != inode->i_uid &&
1202                     !cfs_capable(CFS_CAP_FOWNER))
1203                         RETURN(-EPERM);
1204         }
1205
1206         /* We mark all of the fields "set" so MDS/OST does not re-set them */
1207         if (attr->ia_valid & ATTR_CTIME) {
1208                 attr->ia_ctime = CFS_CURRENT_TIME;
1209                 attr->ia_valid |= ATTR_CTIME_SET;
1210         }
1211         if (!(ia_valid & ATTR_ATIME_SET) && (attr->ia_valid & ATTR_ATIME)) {
1212                 attr->ia_atime = CFS_CURRENT_TIME;
1213                 attr->ia_valid |= ATTR_ATIME_SET;
1214         }
1215         if (!(ia_valid & ATTR_MTIME_SET) && (attr->ia_valid & ATTR_MTIME)) {
1216                 attr->ia_mtime = CFS_CURRENT_TIME;
1217                 attr->ia_valid |= ATTR_MTIME_SET;
1218         }
1219
1220         if (attr->ia_valid & (ATTR_MTIME | ATTR_CTIME))
1221                 CDEBUG(D_INODE, "setting mtime %lu, ctime %lu, now = %lu\n",
1222                        LTIME_S(attr->ia_mtime), LTIME_S(attr->ia_ctime),
1223                        cfs_time_current_sec());
1224
1225         /* NB: ATTR_SIZE will only be set after this point if the size
1226          * resides on the MDS, ie, this file has no objects. */
1227         if (lsm)
1228                 attr->ia_valid &= ~ATTR_SIZE;
1229
1230         /* We always do an MDS RPC, even if we're only changing the size;
1231          * only the MDS knows whether truncate() should fail with -ETXTBUSY */
1232
1233         OBD_ALLOC_PTR(op_data);
1234         if (op_data == NULL)
1235                 RETURN(-ENOMEM);
1236
1237         UNLOCK_INODE_MUTEX(inode);
1238         if (ia_valid & ATTR_SIZE)
1239                 UP_WRITE_I_ALLOC_SEM(inode);
1240         cfs_down(&lli->lli_trunc_sem);
1241         LOCK_INODE_MUTEX(inode);
1242         if (ia_valid & ATTR_SIZE)
1243                 DOWN_WRITE_I_ALLOC_SEM(inode);
1244
1245         memcpy(&op_data->op_attr, attr, sizeof(*attr));
1246
1247         /* Open epoch for truncate. */
1248         if (exp_connect_som(ll_i2mdexp(inode)) &&
1249             (ia_valid & (ATTR_SIZE | ATTR_MTIME | ATTR_MTIME_SET)))
1250                 op_data->op_flags = MF_EPOCH_OPEN;
1251
1252         rc = ll_md_setattr(inode, op_data, &mod);
1253         if (rc)
1254                 GOTO(out, rc);
1255
1256         ll_ioepoch_open(lli, op_data->op_ioepoch);
1257         if (!lsm || !S_ISREG(inode->i_mode)) {
1258                 CDEBUG(D_INODE, "no lsm: not setting attrs on OST\n");
1259                 GOTO(out, rc = 0);
1260         }
1261
1262         if (ia_valid & ATTR_SIZE)
1263                 attr->ia_valid |= ATTR_SIZE;
1264         if ((ia_valid & ATTR_SIZE) | 
1265             ((ia_valid | ATTR_ATIME | ATTR_ATIME_SET) &&
1266              LTIME_S(attr->ia_atime) < LTIME_S(attr->ia_ctime)) ||
1267             ((ia_valid | ATTR_MTIME | ATTR_MTIME_SET) &&
1268              LTIME_S(attr->ia_mtime) < LTIME_S(attr->ia_ctime)))
1269                 /* perform truncate and setting mtime/atime to past under PW
1270                  * 0:EOF extent lock (new_size:EOF for truncate) */
1271                 rc = ll_setattr_ost(inode, attr);
1272         EXIT;
1273 out:
1274         if (op_data) {
1275                 if (op_data->op_ioepoch)
1276                         rc1 = ll_setattr_done_writing(inode, op_data, mod);
1277                 ll_finish_md_op_data(op_data);
1278         }
1279         cfs_up(&lli->lli_trunc_sem);
1280         return rc ? rc : rc1;
1281 }
1282
1283 int ll_setattr(struct dentry *de, struct iattr *attr)
1284 {
1285         if ((attr->ia_valid & (ATTR_CTIME|ATTR_SIZE|ATTR_MODE)) ==
1286             (ATTR_CTIME|ATTR_SIZE|ATTR_MODE))
1287                 attr->ia_valid |= MDS_OPEN_OWNEROVERRIDE;
1288
1289         if ((de->d_inode->i_mode & S_ISUID) &&
1290             !(attr->ia_mode & S_ISUID) &&
1291             !(attr->ia_valid & ATTR_KILL_SUID))
1292                 attr->ia_valid |= ATTR_KILL_SUID;
1293
1294         if (((de->d_inode->i_mode & (S_ISGID|S_IXGRP)) == (S_ISGID|S_IXGRP)) &&
1295             !(attr->ia_mode & S_ISGID) &&
1296             !(attr->ia_valid & ATTR_KILL_SGID))
1297                 attr->ia_valid |= ATTR_KILL_SGID;
1298
1299         return ll_setattr_raw(de->d_inode, attr);
1300 }
1301
1302 int ll_statfs_internal(struct super_block *sb, struct obd_statfs *osfs,
1303                        __u64 max_age, __u32 flags)
1304 {
1305         struct ll_sb_info *sbi = ll_s2sbi(sb);
1306         struct obd_statfs obd_osfs;
1307         int rc;
1308         ENTRY;
1309
1310         rc = obd_statfs(class_exp2obd(sbi->ll_md_exp), osfs, max_age, flags);
1311         if (rc) {
1312                 CERROR("md_statfs fails: rc = %d\n", rc);
1313                 RETURN(rc);
1314         }
1315
1316         osfs->os_type = sb->s_magic;
1317
1318         CDEBUG(D_SUPER, "MDC blocks "LPU64"/"LPU64" objects "LPU64"/"LPU64"\n",
1319                osfs->os_bavail, osfs->os_blocks, osfs->os_ffree,osfs->os_files);
1320
1321         if (sbi->ll_flags & LL_SBI_LAZYSTATFS)
1322                 flags |= OBD_STATFS_NODELAY;
1323
1324         rc = obd_statfs_rqset(class_exp2obd(sbi->ll_dt_exp),
1325                               &obd_osfs, max_age, flags);
1326         if (rc) {
1327                 CERROR("obd_statfs fails: rc = %d\n", rc);
1328                 RETURN(rc);
1329         }
1330
1331         CDEBUG(D_SUPER, "OSC blocks "LPU64"/"LPU64" objects "LPU64"/"LPU64"\n",
1332                obd_osfs.os_bavail, obd_osfs.os_blocks, obd_osfs.os_ffree,
1333                obd_osfs.os_files);
1334
1335         osfs->os_bsize = obd_osfs.os_bsize;
1336         osfs->os_blocks = obd_osfs.os_blocks;
1337         osfs->os_bfree = obd_osfs.os_bfree;
1338         osfs->os_bavail = obd_osfs.os_bavail;
1339
1340         /* If we don't have as many objects free on the OST as inodes
1341          * on the MDS, we reduce the total number of inodes to
1342          * compensate, so that the "inodes in use" number is correct.
1343          */
1344         if (obd_osfs.os_ffree < osfs->os_ffree) {
1345                 osfs->os_files = (osfs->os_files - osfs->os_ffree) +
1346                         obd_osfs.os_ffree;
1347                 osfs->os_ffree = obd_osfs.os_ffree;
1348         }
1349
1350         RETURN(rc);
1351 }
1352 #ifndef HAVE_STATFS_DENTRY_PARAM
1353 int ll_statfs(struct super_block *sb, struct kstatfs *sfs)
1354 {
1355 #else
1356 int ll_statfs(struct dentry *de, struct kstatfs *sfs)
1357 {
1358         struct super_block *sb = de->d_sb;
1359 #endif
1360         struct obd_statfs osfs;
1361         int rc;
1362
1363         CDEBUG(D_VFSTRACE, "VFS Op: at "LPU64" jiffies\n", get_jiffies_64());
1364         ll_stats_ops_tally(ll_s2sbi(sb), LPROC_LL_STAFS, 1);
1365
1366         /* For now we will always get up-to-date statfs values, but in the
1367          * future we may allow some amount of caching on the client (e.g.
1368          * from QOS or lprocfs updates). */
1369         rc = ll_statfs_internal(sb, &osfs, cfs_time_current_64() - 1, 0);
1370         if (rc)
1371                 return rc;
1372
1373         statfs_unpack(sfs, &osfs);
1374
1375         /* We need to downshift for all 32-bit kernels, because we can't
1376          * tell if the kernel is being called via sys_statfs64() or not.
1377          * Stop before overflowing f_bsize - in which case it is better
1378          * to just risk EOVERFLOW if caller is using old sys_statfs(). */
1379         if (sizeof(long) < 8) {
1380                 while (osfs.os_blocks > ~0UL && sfs->f_bsize < 0x40000000) {
1381                         sfs->f_bsize <<= 1;
1382
1383                         osfs.os_blocks >>= 1;
1384                         osfs.os_bfree >>= 1;
1385                         osfs.os_bavail >>= 1;
1386                 }
1387         }
1388
1389         sfs->f_blocks = osfs.os_blocks;
1390         sfs->f_bfree = osfs.os_bfree;
1391         sfs->f_bavail = osfs.os_bavail;
1392
1393         return 0;
1394 }
1395
1396 void ll_inode_size_lock(struct inode *inode, int lock_lsm)
1397 {
1398         struct ll_inode_info *lli;
1399         struct lov_stripe_md *lsm;
1400
1401         lli = ll_i2info(inode);
1402         LASSERT(lli->lli_size_sem_owner != current);
1403         cfs_down(&lli->lli_size_sem);
1404         LASSERT(lli->lli_size_sem_owner == NULL);
1405         lli->lli_size_sem_owner = current;
1406         lsm = lli->lli_smd;
1407         LASSERTF(lsm != NULL || lock_lsm == 0, "lsm %p, lock_lsm %d\n",
1408                  lsm, lock_lsm);
1409         if (lock_lsm)
1410                 lov_stripe_lock(lsm);
1411 }
1412
1413 void ll_inode_size_unlock(struct inode *inode, int unlock_lsm)
1414 {
1415         struct ll_inode_info *lli;
1416         struct lov_stripe_md *lsm;
1417
1418         lli = ll_i2info(inode);
1419         lsm = lli->lli_smd;
1420         LASSERTF(lsm != NULL || unlock_lsm == 0, "lsm %p, lock_lsm %d\n",
1421                  lsm, unlock_lsm);
1422         if (unlock_lsm)
1423                 lov_stripe_unlock(lsm);
1424         LASSERT(lli->lli_size_sem_owner == current);
1425         lli->lli_size_sem_owner = NULL;
1426         cfs_up(&lli->lli_size_sem);
1427 }
1428
1429 void ll_update_inode(struct inode *inode, struct lustre_md *md)
1430 {
1431         struct ll_inode_info *lli = ll_i2info(inode);
1432         struct mdt_body *body = md->body;
1433         struct lov_stripe_md *lsm = md->lsm;
1434         struct ll_sb_info *sbi = ll_i2sbi(inode);
1435
1436         LASSERT ((lsm != NULL) == ((body->valid & OBD_MD_FLEASIZE) != 0));
1437         if (lsm != NULL) {
1438                 cfs_down(&lli->lli_och_sem);
1439                 if (lli->lli_smd == NULL) {
1440                         if (lsm->lsm_magic != LOV_MAGIC_V1 &&
1441                             lsm->lsm_magic != LOV_MAGIC_V3) {
1442                                 dump_lsm(D_ERROR, lsm);
1443                                 LBUG();
1444                         }
1445                         CDEBUG(D_INODE, "adding lsm %p to inode %lu/%u(%p)\n",
1446                                lsm, inode->i_ino, inode->i_generation, inode);
1447                         /* cl_inode_init must go before lli_smd or a race is
1448                          * possible where client thinks the file has stripes,
1449                          * but lov raid0 is not setup yet and parallel e.g.
1450                          * glimpse would try to use uninitialized lov */
1451                         cl_inode_init(inode, md);
1452                         lli->lli_smd = lsm;
1453                         cfs_up(&lli->lli_och_sem);
1454                         lli->lli_maxbytes = lsm->lsm_maxbytes;
1455                         if (lli->lli_maxbytes > PAGE_CACHE_MAXBYTES)
1456                                 lli->lli_maxbytes = PAGE_CACHE_MAXBYTES;
1457                 } else {
1458                         cfs_up(&lli->lli_och_sem);
1459                         LASSERT(lli->lli_smd->lsm_magic == lsm->lsm_magic &&
1460                                 lli->lli_smd->lsm_stripe_count ==
1461                                 lsm->lsm_stripe_count);
1462                         if (lov_stripe_md_cmp(lli->lli_smd, lsm)) {
1463                                 CERROR("lsm mismatch for inode %ld\n",
1464                                        inode->i_ino);
1465                                 CERROR("lli_smd:\n");
1466                                 dump_lsm(D_ERROR, lli->lli_smd);
1467                                 CERROR("lsm:\n");
1468                                 dump_lsm(D_ERROR, lsm);
1469                                 LBUG();
1470                         }
1471                 }
1472                 if (lli->lli_smd != lsm)
1473                         obd_free_memmd(ll_i2dtexp(inode), &lsm);
1474         }
1475
1476         if (sbi->ll_flags & LL_SBI_RMT_CLIENT) {
1477                 if (body->valid & OBD_MD_FLRMTPERM)
1478                         ll_update_remote_perm(inode, md->remote_perm);
1479         }
1480 #ifdef CONFIG_FS_POSIX_ACL
1481         else if (body->valid & OBD_MD_FLACL) {
1482                 cfs_spin_lock(&lli->lli_lock);
1483                 if (lli->lli_posix_acl)
1484                         posix_acl_release(lli->lli_posix_acl);
1485                 lli->lli_posix_acl = md->posix_acl;
1486                 cfs_spin_unlock(&lli->lli_lock);
1487         }
1488 #endif
1489         inode->i_ino = cl_fid_build_ino(&body->fid1);
1490         inode->i_generation = cl_fid_build_gen(&body->fid1);
1491
1492         if (body->valid & OBD_MD_FLATIME) {
1493                 if (body->atime > LTIME_S(inode->i_atime))
1494                         LTIME_S(inode->i_atime) = body->atime;
1495                 lli->lli_lvb.lvb_atime = body->atime;
1496         }
1497         if (body->valid & OBD_MD_FLMTIME) {
1498                 if (body->mtime > LTIME_S(inode->i_mtime)) {
1499                         CDEBUG(D_INODE, "setting ino %lu mtime from %lu "
1500                                "to "LPU64"\n", inode->i_ino,
1501                                LTIME_S(inode->i_mtime), body->mtime);
1502                         LTIME_S(inode->i_mtime) = body->mtime;
1503                 }
1504                 lli->lli_lvb.lvb_mtime = body->mtime;
1505         }
1506         if (body->valid & OBD_MD_FLCTIME) {
1507                 if (body->ctime > LTIME_S(inode->i_ctime))
1508                         LTIME_S(inode->i_ctime) = body->ctime;
1509                 lli->lli_lvb.lvb_ctime = body->ctime;
1510         }
1511         if (body->valid & OBD_MD_FLMODE)
1512                 inode->i_mode = (inode->i_mode & S_IFMT)|(body->mode & ~S_IFMT);
1513         if (body->valid & OBD_MD_FLTYPE)
1514                 inode->i_mode = (inode->i_mode & ~S_IFMT)|(body->mode & S_IFMT);
1515         LASSERT(inode->i_mode != 0);
1516         if (S_ISREG(inode->i_mode)) {
1517                 inode->i_blkbits = min(PTLRPC_MAX_BRW_BITS + 1, LL_MAX_BLKSIZE_BITS);
1518         } else {
1519                 inode->i_blkbits = inode->i_sb->s_blocksize_bits;
1520         }
1521 #ifdef HAVE_INODE_BLKSIZE
1522         inode->i_blksize = 1<<inode->i_blkbits;
1523 #endif
1524         if (body->valid & OBD_MD_FLUID)
1525                 inode->i_uid = body->uid;
1526         if (body->valid & OBD_MD_FLGID)
1527                 inode->i_gid = body->gid;
1528         if (body->valid & OBD_MD_FLFLAGS)
1529                 inode->i_flags = ll_ext_to_inode_flags(body->flags);
1530         if (body->valid & OBD_MD_FLNLINK)
1531                 inode->i_nlink = body->nlink;
1532         if (body->valid & OBD_MD_FLRDEV)
1533                 inode->i_rdev = old_decode_dev(body->rdev);
1534
1535         if (body->valid & OBD_MD_FLID) {
1536                 /* FID shouldn't be changed! */
1537                 if (fid_is_sane(&lli->lli_fid)) {
1538                         LASSERTF(lu_fid_eq(&lli->lli_fid, &body->fid1),
1539                                  "Trying to change FID "DFID
1540                                  " to the "DFID", inode %lu/%u(%p)\n",
1541                                  PFID(&lli->lli_fid), PFID(&body->fid1),
1542                                  inode->i_ino, inode->i_generation, inode);
1543                 } else
1544                         lli->lli_fid = body->fid1;
1545         }
1546
1547         LASSERT(fid_seq(&lli->lli_fid) != 0);
1548
1549         if (body->valid & OBD_MD_FLSIZE) {
1550                 if (exp_connect_som(ll_i2mdexp(inode)) &&
1551                     S_ISREG(inode->i_mode) && lli->lli_smd) {
1552                         struct lustre_handle lockh;
1553                         ldlm_mode_t mode;
1554
1555                         /* As it is possible a blocking ast has been processed
1556                          * by this time, we need to check there is an UPDATE
1557                          * lock on the client and set LLIF_MDS_SIZE_LOCK holding
1558                          * it. */
1559                         mode = ll_take_md_lock(inode, MDS_INODELOCK_UPDATE,
1560                                                &lockh);
1561                         if (mode) {
1562                                 if (lli->lli_flags & (LLIF_DONE_WRITING |
1563                                                       LLIF_EPOCH_PENDING |
1564                                                       LLIF_SOM_DIRTY)) {
1565                                         CERROR("ino %lu flags %lu still has "
1566                                                "size authority! do not trust "
1567                                                "the size got from MDS\n",
1568                                                inode->i_ino, lli->lli_flags);
1569                                 } else {
1570                                         /* Use old size assignment to avoid
1571                                          * deadlock bz14138 & bz14326 */
1572                                         inode->i_size = body->size;
1573                                         lli->lli_flags |= LLIF_MDS_SIZE_LOCK;
1574                                 }
1575                                 ldlm_lock_decref(&lockh, mode);
1576                         }
1577                 } else {
1578                         /* Use old size assignment to avoid
1579                          * deadlock bz14138 & bz14326 */
1580                         inode->i_size = body->size;
1581                 }
1582
1583                 if (body->valid & OBD_MD_FLBLOCKS)
1584                         inode->i_blocks = body->blocks;
1585         }
1586
1587         if (body->valid & OBD_MD_FLMDSCAPA) {
1588                 LASSERT(md->mds_capa);
1589                 ll_add_capa(inode, md->mds_capa);
1590         }
1591         if (body->valid & OBD_MD_FLOSSCAPA) {
1592                 LASSERT(md->oss_capa);
1593                 ll_add_capa(inode, md->oss_capa);
1594         }
1595 }
1596
1597 static struct backing_dev_info ll_backing_dev_info = {
1598         .ra_pages       = 0,    /* No readahead */
1599 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,12))
1600         .capabilities   = 0,    /* Does contribute to dirty memory */
1601 #else
1602         .memory_backed  = 0,    /* Does contribute to dirty memory */
1603 #endif
1604 };
1605
1606 void ll_read_inode2(struct inode *inode, void *opaque)
1607 {
1608         struct lustre_md *md = opaque;
1609         struct ll_inode_info *lli = ll_i2info(inode);
1610         ENTRY;
1611
1612         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p)\n",
1613                inode->i_ino, inode->i_generation, inode);
1614
1615         ll_lli_init(lli);
1616
1617         LASSERT(!lli->lli_smd);
1618
1619         /* Core attributes from the MDS first.  This is a new inode, and
1620          * the VFS doesn't zero times in the core inode so we have to do
1621          * it ourselves.  They will be overwritten by either MDS or OST
1622          * attributes - we just need to make sure they aren't newer. */
1623         LTIME_S(inode->i_mtime) = 0;
1624         LTIME_S(inode->i_atime) = 0;
1625         LTIME_S(inode->i_ctime) = 0;
1626         inode->i_rdev = 0;
1627         ll_update_inode(inode, md);
1628
1629         /* OIDEBUG(inode); */
1630
1631         if (S_ISREG(inode->i_mode)) {
1632                 struct ll_sb_info *sbi = ll_i2sbi(inode);
1633                 inode->i_op = &ll_file_inode_operations;
1634                 inode->i_fop = sbi->ll_fop;
1635                 inode->i_mapping->a_ops = &ll_aops;
1636                 EXIT;
1637         } else if (S_ISDIR(inode->i_mode)) {
1638                 inode->i_op = &ll_dir_inode_operations;
1639                 inode->i_fop = &ll_dir_operations;
1640                 inode->i_mapping->a_ops = &ll_dir_aops;
1641                 EXIT;
1642         } else if (S_ISLNK(inode->i_mode)) {
1643                 inode->i_op = &ll_fast_symlink_inode_operations;
1644                 EXIT;
1645         } else {
1646                 inode->i_op = &ll_special_inode_operations;
1647
1648                 init_special_inode(inode, inode->i_mode,
1649                                    kdev_t_to_nr(inode->i_rdev));
1650
1651                 /* initializing backing dev info. */
1652                 inode->i_mapping->backing_dev_info = &ll_backing_dev_info;
1653
1654                 EXIT;
1655         }
1656 }
1657
1658 void ll_delete_inode(struct inode *inode)
1659 {
1660         struct ll_sb_info *sbi = ll_i2sbi(inode);
1661         int rc;
1662         ENTRY;
1663
1664         rc = obd_fid_delete(sbi->ll_md_exp, ll_inode2fid(inode));
1665         if (rc) {
1666                 CERROR("fid_delete() failed, rc %d\n", rc);
1667         }
1668         truncate_inode_pages(&inode->i_data, 0);
1669         clear_inode(inode);
1670
1671         EXIT;
1672 }
1673
1674 int ll_iocontrol(struct inode *inode, struct file *file,
1675                  unsigned int cmd, unsigned long arg)
1676 {
1677         struct ll_sb_info *sbi = ll_i2sbi(inode);
1678         struct ptlrpc_request *req = NULL;
1679         int rc, flags = 0;
1680         ENTRY;
1681
1682         switch(cmd) {
1683         case FSFILT_IOC_GETFLAGS: {
1684                 struct mdt_body *body;
1685                 struct md_op_data *op_data;
1686
1687                 op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL,
1688                                              0, 0, LUSTRE_OPC_ANY,
1689                                              NULL);
1690                 if (op_data == NULL)
1691                         RETURN(-ENOMEM);
1692
1693                 op_data->op_valid = OBD_MD_FLFLAGS;
1694                 rc = md_getattr(sbi->ll_md_exp, op_data, &req);
1695                 ll_finish_md_op_data(op_data);
1696                 if (rc) {
1697                         CERROR("failure %d inode %lu\n", rc, inode->i_ino);
1698                         RETURN(-abs(rc));
1699                 }
1700
1701                 body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
1702
1703                 flags = body->flags;
1704
1705                 ptlrpc_req_finished(req);
1706
1707                 RETURN(put_user(flags, (int *)arg));
1708         }
1709         case FSFILT_IOC_SETFLAGS: {
1710                 struct lov_stripe_md *lsm = ll_i2info(inode)->lli_smd;
1711                 struct obd_info oinfo = { { { 0 } } };
1712                 struct md_op_data *op_data;
1713
1714                 if (get_user(flags, (int *)arg))
1715                         RETURN(-EFAULT);
1716
1717                 oinfo.oi_md = lsm;
1718                 OBDO_ALLOC(oinfo.oi_oa);
1719                 if (!oinfo.oi_oa)
1720                         RETURN(-ENOMEM);
1721
1722                 op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL, 0, 0,
1723                                              LUSTRE_OPC_ANY, NULL);
1724                 if (IS_ERR(op_data))
1725                         RETURN(PTR_ERR(op_data));
1726
1727                 ((struct ll_iattr *)&op_data->op_attr)->ia_attr_flags = flags;
1728                 op_data->op_attr.ia_valid |= ATTR_ATTR_FLAG;
1729                 rc = md_setattr(sbi->ll_md_exp, op_data,
1730                                 NULL, 0, NULL, 0, &req, NULL);
1731                 ll_finish_md_op_data(op_data);
1732                 ptlrpc_req_finished(req);
1733                 if (rc) {
1734                         OBDO_FREE(oinfo.oi_oa);
1735                         RETURN(rc);
1736                 }
1737
1738                 if (lsm == NULL) {
1739                         OBDO_FREE(oinfo.oi_oa);
1740                         GOTO(update_cache, rc);
1741                 }
1742
1743                 oinfo.oi_oa->o_id = lsm->lsm_object_id;
1744                 oinfo.oi_oa->o_gr = lsm->lsm_object_gr;
1745                 oinfo.oi_oa->o_flags = flags;
1746                 oinfo.oi_oa->o_valid = OBD_MD_FLID | OBD_MD_FLFLAGS |
1747                                        OBD_MD_FLGROUP;
1748                 oinfo.oi_capa = ll_mdscapa_get(inode);
1749
1750                 obdo_from_inode(oinfo.oi_oa, inode,
1751                                 OBD_MD_FLFID | OBD_MD_FLGENER);
1752                 rc = obd_setattr_rqset(sbi->ll_dt_exp, &oinfo, NULL);
1753                 capa_put(oinfo.oi_capa);
1754                 OBDO_FREE(oinfo.oi_oa);
1755                 if (rc) {
1756                         if (rc != -EPERM && rc != -EACCES)
1757                                 CERROR("osc_setattr_async fails: rc = %d\n",rc);
1758                         RETURN(rc);
1759                 }
1760
1761                 EXIT;
1762 update_cache:
1763                 inode->i_flags = ll_ext_to_inode_flags(flags);
1764                 return 0;
1765         }
1766         default:
1767                 RETURN(-ENOSYS);
1768         }
1769
1770         RETURN(0);
1771 }
1772
1773 int ll_flush_ctx(struct inode *inode)
1774 {
1775         struct ll_sb_info  *sbi = ll_i2sbi(inode);
1776
1777         CDEBUG(D_SEC, "flush context for user %d\n", cfs_curproc_uid());
1778
1779         obd_set_info_async(sbi->ll_md_exp,
1780                            sizeof(KEY_FLUSH_CTX), KEY_FLUSH_CTX,
1781                            0, NULL, NULL);
1782         obd_set_info_async(sbi->ll_dt_exp,
1783                            sizeof(KEY_FLUSH_CTX), KEY_FLUSH_CTX,
1784                            0, NULL, NULL);
1785         return 0;
1786 }
1787
1788 /* umount -f client means force down, don't save state */
1789 #ifdef HAVE_UMOUNTBEGIN_VFSMOUNT
1790 void ll_umount_begin(struct vfsmount *vfsmnt, int flags)
1791 {
1792         struct super_block *sb = vfsmnt->mnt_sb;
1793 #else
1794 void ll_umount_begin(struct super_block *sb)
1795 {
1796 #endif
1797         struct lustre_sb_info *lsi = s2lsi(sb);
1798         struct ll_sb_info *sbi = ll_s2sbi(sb);
1799         struct obd_device *obd;
1800         struct obd_ioctl_data *ioc_data;
1801         ENTRY;
1802
1803 #ifdef HAVE_UMOUNTBEGIN_VFSMOUNT
1804         if (!(flags & MNT_FORCE)) {
1805                 EXIT;
1806                 return;
1807         }
1808 #endif
1809
1810         /* Tell the MGC we got umount -f */
1811         lsi->lsi_flags |= LSI_UMOUNT_FORCE;
1812
1813         CDEBUG(D_VFSTRACE, "VFS Op: superblock %p count %d active %d\n", sb,
1814                sb->s_count, atomic_read(&sb->s_active));
1815
1816         obd = class_exp2obd(sbi->ll_md_exp);
1817         if (obd == NULL) {
1818                 CERROR("Invalid MDC connection handle "LPX64"\n",
1819                        sbi->ll_md_exp->exp_handle.h_cookie);
1820                 EXIT;
1821                 return;
1822         }
1823         obd->obd_force = 1;
1824
1825         obd = class_exp2obd(sbi->ll_dt_exp);
1826         if (obd == NULL) {
1827                 CERROR("Invalid LOV connection handle "LPX64"\n",
1828                        sbi->ll_dt_exp->exp_handle.h_cookie);
1829                 EXIT;
1830                 return;
1831         }
1832         obd->obd_force = 1;
1833
1834         OBD_ALLOC_PTR(ioc_data);
1835         if (ioc_data) {
1836                 obd_iocontrol(IOC_OSC_SET_ACTIVE, sbi->ll_md_exp,
1837                               sizeof ioc_data, ioc_data, NULL);
1838
1839                 obd_iocontrol(IOC_OSC_SET_ACTIVE, sbi->ll_dt_exp,
1840                               sizeof ioc_data, ioc_data, NULL);
1841
1842                 OBD_FREE_PTR(ioc_data);
1843         }
1844
1845
1846         /* Really, we'd like to wait until there are no requests outstanding,
1847          * and then continue.  For now, we just invalidate the requests,
1848          * schedule() and sleep one second if needed, and hope.
1849          */
1850         cfs_schedule();
1851 #ifdef HAVE_UMOUNTBEGIN_VFSMOUNT
1852         if (atomic_read(&vfsmnt->mnt_count) > 2) {
1853                 cfs_schedule_timeout_and_set_state(CFS_TASK_INTERRUPTIBLE,
1854                                                    cfs_time_seconds(1));
1855                 if (atomic_read(&vfsmnt->mnt_count) > 2)
1856                         LCONSOLE_WARN("Mount still busy with %d refs! You "
1857                                       "may try to umount it a bit later\n",
1858                                       atomic_read(&vfsmnt->mnt_count));
1859         }
1860 #endif
1861
1862         EXIT;
1863 }
1864
1865 int ll_remount_fs(struct super_block *sb, int *flags, char *data)
1866 {
1867         struct ll_sb_info *sbi = ll_s2sbi(sb);
1868         int err;
1869         __u32 read_only;
1870
1871         if ((*flags & MS_RDONLY) != (sb->s_flags & MS_RDONLY)) {
1872                 read_only = *flags & MS_RDONLY;
1873                 err = obd_set_info_async(sbi->ll_md_exp,
1874                                          sizeof(KEY_READ_ONLY),
1875                                          KEY_READ_ONLY, sizeof(read_only),
1876                                          &read_only, NULL);
1877                 if (err) {
1878                         CERROR("Failed to change the read-only flag during "
1879                                "remount: %d\n", err);
1880                         return err;
1881                 }
1882
1883                 if (read_only)
1884                         sb->s_flags |= MS_RDONLY;
1885                 else
1886                         sb->s_flags &= ~MS_RDONLY;
1887         }
1888         return 0;
1889 }
1890
1891 int ll_prep_inode(struct inode **inode,
1892                   struct ptlrpc_request *req,
1893                   struct super_block *sb)
1894 {
1895         struct ll_sb_info *sbi = NULL;
1896         struct lustre_md md;
1897         int rc;
1898         ENTRY;
1899
1900         LASSERT(*inode || sb);
1901         sbi = sb ? ll_s2sbi(sb) : ll_i2sbi(*inode);
1902         memset(&md, 0, sizeof(struct lustre_md));
1903
1904         rc = md_get_lustre_md(sbi->ll_md_exp, req, sbi->ll_dt_exp,
1905                               sbi->ll_md_exp, &md);
1906         if (rc)
1907                 RETURN(rc);
1908
1909         if (*inode) {
1910                 ll_update_inode(*inode, &md);
1911         } else {
1912                 LASSERT(sb != NULL);
1913
1914                 /*
1915                  * At this point server returns to client's same fid as client
1916                  * generated for creating. So using ->fid1 is okay here.
1917                  */
1918                 LASSERT(fid_is_sane(&md.body->fid1));
1919
1920                 *inode = ll_iget(sb, cl_fid_build_ino(&md.body->fid1), &md);
1921                 if (*inode == NULL || IS_ERR(*inode)) {
1922                         if (md.lsm)
1923                                 obd_free_memmd(sbi->ll_dt_exp, &md.lsm);
1924 #ifdef CONFIG_FS_POSIX_ACL
1925                         if (md.posix_acl) {
1926                                 posix_acl_release(md.posix_acl);
1927                                 md.posix_acl = NULL;
1928                         }
1929 #endif
1930                         rc = IS_ERR(*inode) ? PTR_ERR(*inode) : -ENOMEM;
1931                         *inode = NULL;
1932                         CERROR("new_inode -fatal: rc %d\n", rc);
1933                         GOTO(out, rc);
1934                 }
1935         }
1936
1937 out:
1938         md_free_lustre_md(sbi->ll_md_exp, &md);
1939         RETURN(rc);
1940 }
1941
1942 int ll_obd_statfs(struct inode *inode, void *arg)
1943 {
1944         struct ll_sb_info *sbi = NULL;
1945         struct obd_export *exp;
1946         char *buf = NULL;
1947         struct obd_ioctl_data *data = NULL;
1948         __u32 type;
1949         int len = 0, rc;
1950
1951         if (!inode || !(sbi = ll_i2sbi(inode)))
1952                 GOTO(out_statfs, rc = -EINVAL);
1953
1954         rc = obd_ioctl_getdata(&buf, &len, arg);
1955         if (rc)
1956                 GOTO(out_statfs, rc);
1957
1958         data = (void*)buf;
1959         if (!data->ioc_inlbuf1 || !data->ioc_inlbuf2 ||
1960             !data->ioc_pbuf1 || !data->ioc_pbuf2)
1961                 GOTO(out_statfs, rc = -EINVAL);
1962
1963         if (data->ioc_inllen1 != sizeof(__u32) ||
1964             data->ioc_inllen2 != sizeof(__u32) ||
1965             data->ioc_plen1 != sizeof(struct obd_statfs) ||
1966             data->ioc_plen2 != sizeof(struct obd_uuid))
1967                 GOTO(out_statfs, rc = -EINVAL);
1968
1969         memcpy(&type, data->ioc_inlbuf1, sizeof(__u32));
1970         if (type == LL_STATFS_MDC)
1971                 exp = sbi->ll_md_exp;
1972         else if (type == LL_STATFS_LOV)
1973                 exp = sbi->ll_dt_exp;
1974         else
1975                 GOTO(out_statfs, rc = -ENODEV);
1976
1977         rc = obd_iocontrol(IOC_OBD_STATFS, exp, len, buf, NULL);
1978         if (rc)
1979                 GOTO(out_statfs, rc);
1980 out_statfs:
1981         if (buf)
1982                 obd_ioctl_freedata(buf, len);
1983         return rc;
1984 }
1985
1986 int ll_process_config(struct lustre_cfg *lcfg)
1987 {
1988         char *ptr;
1989         void *sb;
1990         struct lprocfs_static_vars lvars;
1991         unsigned long x;
1992         int rc = 0;
1993
1994         lprocfs_llite_init_vars(&lvars);
1995
1996         /* The instance name contains the sb: lustre-client-aacfe000 */
1997         ptr = strrchr(lustre_cfg_string(lcfg, 0), '-');
1998         if (!ptr || !*(++ptr))
1999                 return -EINVAL;
2000         if (sscanf(ptr, "%lx", &x) != 1)
2001                 return -EINVAL;
2002         sb = (void *)x;
2003         /* This better be a real Lustre superblock! */
2004         LASSERT(s2lsi((struct super_block *)sb)->lsi_lmd->lmd_magic == LMD_MAGIC);
2005
2006         /* Note we have not called client_common_fill_super yet, so
2007            proc fns must be able to handle that! */
2008         rc = class_process_proc_param(PARAM_LLITE, lvars.obd_vars,
2009                                       lcfg, sb);
2010         if (rc > 0)
2011                 rc = 0;
2012         return(rc);
2013 }
2014
2015 /* this function prepares md_op_data hint for passing ot down to MD stack. */
2016 struct md_op_data * ll_prep_md_op_data(struct md_op_data *op_data,
2017                                        struct inode *i1, struct inode *i2,
2018                                        const char *name, int namelen,
2019                                        int mode, __u32 opc, void *data)
2020 {
2021         LASSERT(i1 != NULL);
2022
2023         if (namelen > ll_i2sbi(i1)->ll_namelen)
2024                 return ERR_PTR(-ENAMETOOLONG);
2025
2026         if (op_data == NULL)
2027                 OBD_ALLOC_PTR(op_data);
2028
2029         if (op_data == NULL)
2030                 return ERR_PTR(-ENOMEM);
2031
2032         ll_i2gids(op_data->op_suppgids, i1, i2);
2033         op_data->op_fid1 = *ll_inode2fid(i1);
2034         op_data->op_capa1 = ll_mdscapa_get(i1);
2035
2036         if (i2) {
2037                 op_data->op_fid2 = *ll_inode2fid(i2);
2038                 op_data->op_capa2 = ll_mdscapa_get(i2);
2039         } else {
2040                 fid_zero(&op_data->op_fid2);
2041                 op_data->op_capa2 = NULL;
2042         }
2043
2044         op_data->op_name = name;
2045         op_data->op_namelen = namelen;
2046         op_data->op_mode = mode;
2047         op_data->op_mod_time = cfs_time_current_sec();
2048         op_data->op_fsuid = cfs_curproc_fsuid();
2049         op_data->op_fsgid = cfs_curproc_fsgid();
2050         op_data->op_cap = cfs_curproc_cap_pack();
2051         op_data->op_bias = MDS_CHECK_SPLIT;
2052         op_data->op_opc = opc;
2053         op_data->op_mds = 0;
2054         op_data->op_data = data;
2055
2056         return op_data;
2057 }
2058
2059 void ll_finish_md_op_data(struct md_op_data *op_data)
2060 {
2061         capa_put(op_data->op_capa1);
2062         capa_put(op_data->op_capa2);
2063         OBD_FREE_PTR(op_data);
2064 }
2065
2066 int ll_show_options(struct seq_file *seq, struct vfsmount *vfs)
2067 {
2068         struct ll_sb_info *sbi;
2069
2070         LASSERT((seq != NULL) && (vfs != NULL));
2071         sbi = ll_s2sbi(vfs->mnt_sb);
2072
2073         if (sbi->ll_flags & LL_SBI_NOLCK)
2074                 seq_puts(seq, ",nolock");
2075
2076         if (sbi->ll_flags & LL_SBI_FLOCK)
2077                 seq_puts(seq, ",flock");
2078
2079         if (sbi->ll_flags & LL_SBI_LOCALFLOCK)
2080                 seq_puts(seq, ",localflock");
2081
2082         if (sbi->ll_flags & LL_SBI_USER_XATTR)
2083                 seq_puts(seq, ",user_xattr");
2084
2085         if (sbi->ll_flags & LL_SBI_ACL)
2086                 seq_puts(seq, ",acl");
2087
2088         if (sbi->ll_flags & LL_SBI_LAZYSTATFS)
2089                 seq_puts(seq, ",lazystatfs");
2090
2091         RETURN(0);
2092 }