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