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