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