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