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