Whamcloud - gitweb
- added patches from #5492 and 5654
[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  * Lustre Light Super operations
5  *
6  *  Copyright (c) 2002, 2003 Cluster File Systems, Inc.
7  *
8  *   This file is part of Lustre, http://www.lustre.org.
9  *
10  *   Lustre is free software; you can redistribute it and/or
11  *   modify it under the terms of version 2 of the GNU General Public
12  *   License as published by the Free Software Foundation.
13  *
14  *   Lustre is distributed in the hope that it will be useful,
15  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *   GNU General Public License for more details.
18  *
19  *   You should have received a copy of the GNU General Public License
20  *   along with Lustre; if not, write to the Free Software
21  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22  */
23
24 #define DEBUG_SUBSYSTEM S_LLITE
25
26 #include <linux/module.h>
27 #include <linux/types.h>
28 #include <linux/random.h>
29 #include <linux/version.h>
30
31 #include <linux/lustre_lite.h>
32 #include <linux/lustre_ha.h>
33 #include <linux/lustre_dlm.h>
34 #include <linux/lprocfs_status.h>
35 #include <linux/lustre_acl.h>
36 #include "llite_internal.h"
37
38 kmem_cache_t *ll_file_data_slab;
39 kmem_cache_t *ll_intent_slab;
40
41 extern struct address_space_operations ll_aops;
42 extern struct address_space_operations ll_dir_aops;
43
44 #ifndef log2
45 #define log2(n) ffz(~(n))
46 #endif
47
48 struct ll_sb_info *lustre_init_sbi(struct super_block *sb)
49 {
50         struct ll_sb_info *sbi = NULL;
51         class_uuid_t uuid;
52         ENTRY;
53
54         OBD_ALLOC(sbi, sizeof(*sbi));
55         if (!sbi)
56                 RETURN(NULL);
57
58         spin_lock_init(&sbi->ll_lock);
59         INIT_LIST_HEAD(&sbi->ll_pglist);
60         sbi->ll_pglist_gen = 0;
61         if (num_physpages < SBI_DEFAULT_RA_MAX / 4)
62                 sbi->ll_ra_info.ra_max_pages = num_physpages / 4;
63         else
64                 sbi->ll_ra_info.ra_max_pages = SBI_DEFAULT_RA_MAX;
65         INIT_LIST_HEAD(&sbi->ll_conn_chain);
66         INIT_HLIST_HEAD(&sbi->ll_orphan_dentry_list);
67         INIT_LIST_HEAD(&sbi->ll_mnt_list);
68         
69         sema_init(&sbi->ll_gns_sem, 1);
70         spin_lock_init(&sbi->ll_gns_lock);
71         INIT_LIST_HEAD(&sbi->ll_gns_sbi_head);
72         init_waitqueue_head(&sbi->ll_gns_waitq);
73         init_completion(&sbi->ll_gns_mount_finished);
74
75         /* this later may be reset via /proc/fs/... */
76         memcpy(sbi->ll_gns_oname, ".mntinfo", strlen(".mntinfo"));
77         sbi->ll_gns_oname[strlen(sbi->ll_gns_oname) - 1] = '\0';
78         
79         /* this later may be reset via /proc/fs/... */
80         memset(sbi->ll_gns_upcall, 0, sizeof(sbi->ll_gns_upcall));
81
82         /* default values, may be changed via /proc/fs/... */
83         sbi->ll_gns_state = LL_GNS_IDLE;
84         sbi->ll_gns_tick = GNS_TICK_TIMEOUT;
85         sbi->ll_gns_timeout = GNS_MOUNT_TIMEOUT;
86
87         sbi->ll_gns_timer.data = (unsigned long)sbi;
88         sbi->ll_gns_timer.function = ll_gns_timer_callback;
89         init_timer(&sbi->ll_gns_timer);
90
91         ll_set_sbi(sb, sbi);
92
93         generate_random_uuid(uuid);
94         class_uuid_unparse(uuid, &sbi->ll_sb_uuid);
95         RETURN(sbi);
96 }
97
98 void lustre_free_sbi(struct super_block *sb)
99 {
100         struct ll_sb_info *sbi = ll_s2sbi(sb);
101         ENTRY;
102
103         if (sbi != NULL) {
104                 list_del(&sbi->ll_gns_sbi_head);
105                 del_timer(&sbi->ll_gns_timer);
106                 OBD_FREE(sbi, sizeof(*sbi));
107         }
108         ll_set_sbi(sb, NULL);
109         EXIT;
110 }
111
112 int lustre_init_dt_desc(struct ll_sb_info *sbi)
113 {
114         int valsize, rc;
115         ENTRY;
116         
117         valsize = sizeof(sbi->ll_dt_desc);
118         memset(&sbi->ll_dt_desc, 0, sizeof(sbi->ll_dt_desc));
119         rc = obd_get_info(sbi->ll_dt_exp, strlen("lovdesc") + 1,
120                           "lovdesc", &valsize, &sbi->ll_dt_desc);
121         RETURN(rc);
122 }
123
124 extern struct dentry_operations ll_d_ops;
125
126 int lustre_common_fill_super(struct super_block *sb, char *lmv, char *lov,
127                              char *security, __u32 *nllu, int async)
128 {
129         struct ll_sb_info *sbi = ll_s2sbi(sb);
130         struct ptlrpc_request *request = NULL;
131         struct lustre_handle dt_conn = {0, };
132         struct lustre_handle md_conn = {0, };
133         struct inode *root = NULL;
134         struct obd_device *obd;
135         struct obd_statfs osfs;
136         struct lustre_md md;
137         kdev_t devno;
138         int err;
139         ENTRY;
140
141         obd = class_name2obd(lmv);
142         if (!obd) {
143                 CERROR("MDC %s: not setup or attached\n", lmv);
144                 RETURN(-EINVAL);
145         }
146         obd_set_info(obd->obd_self_export, strlen("async"), "async",
147                      sizeof(async), &async);
148
149         if (security == NULL)
150                 security = "null";
151
152         err = obd_set_info(obd->obd_self_export, strlen("sec"), "sec",
153                            strlen(security), security);
154         if (err) {
155                 CERROR("LMV %s: failed to set security %s, err %d\n",
156                         lmv, security, err);
157                 RETURN(err);
158         }
159
160         err = obd_set_info(obd->obd_self_export, strlen("nllu"), "nllu",
161                            sizeof(__u32) * 2, nllu);
162         if (err) {
163                 CERROR("LMV %s: failed to set NLLU, err %d\n",
164                         lmv, err);
165                 RETURN(err);
166         }
167
168         if (proc_lustre_fs_root) {
169                 err = lprocfs_register_mountpoint(proc_lustre_fs_root, sb,
170                                                   lov, lmv);
171                 if (err < 0)
172                         CERROR("could not register mount in /proc/lustre");
173         }
174
175         err = obd_connect(&md_conn, obd, &sbi->ll_sb_uuid, OBD_OPT_REAL_CLIENT);
176         if (err == -EBUSY) {
177                 CERROR("An MDS (lmv %s) is performing recovery, of which this"
178                        " client is not a part.  Please wait for recovery to "
179                        "complete, abort, or time out.\n", lmv);
180                 GOTO(out, err);
181         } else if (err) {
182                 CERROR("cannot connect to %s: rc = %d\n", lmv, err);
183                 GOTO(out, err);
184         }
185         sbi->ll_md_exp = class_conn2export(&md_conn);
186         err = obd_statfs(obd, &osfs, jiffies - HZ);
187         if (err)
188                 GOTO(out_lmv, err);
189
190         if (!osfs.os_bsize) {
191                 CERROR("Invalid block size is detected.");
192                 GOTO(out_lmv, err);
193         }
194
195         sb->s_magic = LL_SUPER_MAGIC;
196         sb->s_blocksize = osfs.os_bsize;
197         sb->s_blocksize_bits = log2(osfs.os_bsize);
198         sb->s_maxbytes = PAGE_CACHE_MAXBYTES;
199        
200         devno = get_uuid2int(sbi->ll_md_exp->exp_obd->obd_uuid.uuid, 
201                              strlen(sbi->ll_md_exp->exp_obd->obd_uuid.uuid));
202
203         sb->s_dev = devno;
204
205         obd = class_name2obd(lov);
206         if (!obd) {
207                 CERROR("OSC %s: not setup or attached\n", lov);
208                 GOTO(out_lmv, err);
209         }
210         obd_set_info(obd->obd_self_export, strlen("async"), "async",
211                      sizeof(async), &async);
212
213         err = obd_connect(&dt_conn, obd, &sbi->ll_sb_uuid, OBD_OPT_REAL_CLIENT);
214         if (err == -EBUSY) {
215                 CERROR("An OST (lov %s) is performing recovery, of which this"
216                        " client is not a part.  Please wait for recovery to "
217                        "complete, abort, or time out.\n", lov);
218                 GOTO(out, err);
219         } else if (err) {
220                 CERROR("cannot connect to %s: rc = %d\n", lov, err);
221                 GOTO(out_lmv, err);
222         }
223         sbi->ll_dt_exp = class_conn2export(&dt_conn);
224
225         err = lustre_init_dt_desc(sbi);
226         if (err == 0) {
227                 int mdsize = obd_size_diskmd(sbi->ll_dt_exp, NULL);
228                 obd_init_ea_size(sbi->ll_md_exp, mdsize,
229                                  sbi->ll_dt_desc.ld_tgt_count *
230                                  sizeof(struct llog_cookie));
231         }
232         
233         err = md_getstatus(sbi->ll_md_exp, &sbi->ll_rootid);
234         if (err) {
235                 CERROR("cannot mds_connect: rc = %d\n", err);
236                 GOTO(out_lov, err);
237         }
238         CDEBUG(D_SUPER, "rootid "DLID4"\n", OLID4(&sbi->ll_rootid));
239
240         sb->s_op = &lustre_super_operations;
241
242         /* make root inode
243          * XXX: move this to after cbd setup? */
244         err = md_getattr(sbi->ll_md_exp, &sbi->ll_rootid,
245                          (OBD_MD_FLNOTOBD | OBD_MD_FLBLOCKS | OBD_MD_FID), NULL, 0,
246                          0, &request);
247         if (err) {
248                 CERROR("md_getattr failed for root: rc = %d\n", err);
249                 GOTO(out_lov, err);
250         }
251
252         err = mdc_req2lustre_md(sbi->ll_md_exp, request, 0, 
253                                 sbi->ll_dt_exp, &md);
254         if (err) {
255                 CERROR("failed to understand root inode md: rc = %d\n", err);
256                 ptlrpc_req_finished(request);
257                 GOTO(out_lov, err);
258         }
259
260         LASSERT(id_ino(&sbi->ll_rootid) != 0);
261         root = ll_iget(sb, id_ino(&sbi->ll_rootid), &md);
262
263         ptlrpc_req_finished(request);
264
265         if (root == NULL || is_bad_inode(root)) {
266                 CERROR("lustre_lite: bad iget4 for root\n");
267                 GOTO(out_root, err = -EBADF);
268         }
269
270         err = ll_close_thread_start(&sbi->ll_lcq);
271         if (err) {
272                 CERROR("cannot start close thread: rc %d\n", err);
273                 GOTO(out_root, err);
274         }
275
276         ll_gns_add_timer(sbi);
277
278         /* making vm readahead 0 for 2.4.x. In the case of 2.6.x,
279            backing dev info assigned to inode mapping is used for
280            determining maximal readahead. */
281 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0)) && \
282     !defined(KERNEL_HAS_AS_MAX_READAHEAD)
283         /* bug 2805 - set VM readahead to zero */
284         vm_max_readahead = vm_min_readahead = 0;
285 #endif
286
287         sb->s_root = d_alloc_root(root);
288         sb->s_root->d_op = &ll_d_ops;
289
290 #ifdef S_PDIROPS
291         CWARN("Enabling PDIROPS\n");
292         sb->s_flags |= S_PDIROPS;
293 #endif
294
295         RETURN(err);
296 out_root:
297         if (root)
298                 iput(root);
299 out_lov:
300         obd_disconnect(sbi->ll_dt_exp, 0);
301 out_lmv:
302         obd_disconnect(sbi->ll_md_exp, 0);
303 out:
304         lprocfs_unregister_mountpoint(sbi);
305         return err;
306 }
307
308 void lustre_common_put_super(struct super_block *sb)
309 {
310         struct ll_sb_info *sbi = ll_s2sbi(sb);
311         struct hlist_node *tmp, *next;
312         ENTRY;
313
314         ll_gns_del_timer(sbi);
315         ll_close_thread_shutdown(sbi->ll_lcq);
316
317         list_del(&sbi->ll_conn_chain);
318         obd_disconnect(sbi->ll_dt_exp, 0);
319
320         lprocfs_unregister_mountpoint(sbi);
321         if (sbi->ll_proc_root) {
322                 lprocfs_remove(sbi->ll_proc_root);
323                 sbi->ll_proc_root = NULL;
324         }
325
326         obd_disconnect(sbi->ll_md_exp, 0);
327
328         // We do this to get rid of orphaned dentries. That is not really trw.
329         hlist_for_each_safe(tmp, next, &sbi->ll_orphan_dentry_list) {
330                 struct dentry *dentry = hlist_entry(tmp, struct dentry, d_hash);
331                 CWARN("orphan dentry %.*s (%p->%p) at unmount\n",
332                       dentry->d_name.len, dentry->d_name.name, dentry, next);
333                 shrink_dcache_parent(dentry);
334         }
335         EXIT;
336 }
337
338 char *ll_read_opt(const char *opt, char *data)
339 {
340         char *value;
341         char *retval;
342         ENTRY;
343
344         CDEBUG(D_SUPER, "option: %s, data %s\n", opt, data);
345         if (strncmp(opt, data, strlen(opt)))
346                 RETURN(NULL);
347         if ((value = strchr(data, '=')) == NULL)
348                 RETURN(NULL);
349
350         value++;
351         OBD_ALLOC(retval, strlen(value) + 1);
352         if (!retval) {
353                 CERROR("out of memory!\n");
354                 RETURN(NULL);
355         }
356
357         memcpy(retval, value, strlen(value)+1);
358         CDEBUG(D_SUPER, "Assigned option: %s, value %s\n", opt, retval);
359         RETURN(retval);
360 }
361
362 int ll_set_opt(const char *opt, char *data, int fl)
363 {
364         ENTRY;
365
366         CDEBUG(D_SUPER, "option: %s, data %s\n", opt, data);
367         if (strncmp(opt, data, strlen(opt)))
368                 RETURN(0);
369         else
370                 RETURN(fl);
371 }
372
373 void ll_options(char *options, char **lov, char **lmv, char **sec, 
374                 int *async, int *flags)
375 {
376         char *this_char;
377 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
378         char *opt_ptr = options;
379 #endif
380         ENTRY;
381
382         if (!options) {
383                 EXIT;
384                 return;
385         }
386
387         *async = 0;
388 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
389         for (this_char = strtok (options, ",");
390              this_char != NULL;
391              this_char = strtok (NULL, ",")) {
392 #else
393         while ((this_char = strsep (&opt_ptr, ",")) != NULL) {
394 #endif
395                 CDEBUG(D_SUPER, "this_char %s\n", this_char);
396                 if (!*lov && (*lov = ll_read_opt("osc", this_char)))
397                         continue;
398                 if (!*lmv && (*lmv = ll_read_opt("mdc", this_char)))
399                         continue;
400                 if (!strncmp(this_char, "lasync", strlen("lasync"))) {
401                         *async = 1;
402                         continue;
403                 }
404                 if (!*sec && (*sec = ll_read_opt("sec", this_char)))
405                         continue;
406                 if (!(*flags & LL_SBI_NOLCK) &&
407                     ((*flags) = (*flags) |
408                                 ll_set_opt("nolock", this_char,
409                                            LL_SBI_NOLCK)))
410                         continue;
411         }
412         
413         EXIT;
414 }
415
416 void ll_lli_init(struct ll_inode_info *lli)
417 {
418         sema_init(&lli->lli_open_sem, 1);
419         sema_init(&lli->lli_size_sem, 1);
420         lli->lli_flags = 0;
421         lli->lli_size_pid = 0;
422         lli->lli_maxbytes = PAGE_CACHE_MAXBYTES;
423         spin_lock_init(&lli->lli_lock);
424         INIT_LIST_HEAD(&lli->lli_pending_write_llaps);
425         lli->lli_inode_magic = LLI_INODE_MAGIC;
426         memset(&lli->lli_id, 0, sizeof(lli->lli_id));
427         sema_init(&lli->lli_och_sem, 1);
428         lli->lli_mds_read_och = lli->lli_mds_write_och = NULL;
429         lli->lli_mds_exec_och = NULL;
430         lli->lli_open_fd_read_count = lli->lli_open_fd_write_count = 0;
431         lli->lli_open_fd_exec_count = 0;
432 }
433
434 int ll_fill_super(struct super_block *sb, void *data, int silent)
435 {
436         struct ll_sb_info *sbi;
437         char *lov = NULL;
438         char *lmv = NULL;
439         int async, err;
440         char *sec = NULL;
441         __u32 nllu[2] = { 99, 99 };
442         ENTRY;
443
444         CDEBUG(D_VFSTRACE, "VFS Op: sb %p\n", sb);
445
446         sbi = lustre_init_sbi(sb);
447         if (!sbi)
448                 RETURN(-ENOMEM);
449
450         sbi->ll_flags |= LL_SBI_READAHEAD;
451         ll_options(data, &lov, &lmv, &sec, &async, &sbi->ll_flags);
452
453         if (!lov) {
454                 CERROR("no osc\n");
455                 GOTO(out, err = -EINVAL);
456         }
457
458         if (!lmv) {
459                 CERROR("no mdc\n");
460                 GOTO(out, err = -EINVAL);
461         }
462
463         err = lustre_common_fill_super(sb, lmv, lov, sec, nllu, async);
464         EXIT;
465 out:
466         if (err)
467                 lustre_free_sbi(sb);
468
469         if (sec)
470                 OBD_FREE(sec, strlen(sec) + 1);
471         if (lmv)
472                 OBD_FREE(lmv, strlen(lmv) + 1);
473         if (lov)
474                 OBD_FREE(lov, strlen(lov) + 1);
475         return err;
476 } /* ll_read_super */
477
478 static int lustre_process_log(struct lustre_mount_data *lmd, char *profile,
479                               struct config_llog_instance *cfg, int allow_recov)
480 {
481         struct lustre_cfg lcfg;
482         struct portals_cfg pcfg;
483         char *peer = "MDS_PEER_UUID";
484         struct obd_device *obd;
485         struct lustre_handle md_conn = {0, };
486         struct obd_export *exp;
487         char *name = "mdc_dev";
488         class_uuid_t uuid;
489         struct obd_uuid lmv_uuid;
490         struct llog_ctxt *ctxt;
491         int rc = 0, err = 0;
492         ENTRY;
493
494         if (lmd_bad_magic(lmd))
495                 RETURN(-EINVAL);
496
497         generate_random_uuid(uuid);
498         class_uuid_unparse(uuid, &lmv_uuid);
499
500         if (lmd->lmd_local_nid) {
501                 PCFG_INIT(pcfg, NAL_CMD_REGISTER_MYNID);
502                 pcfg.pcfg_nal = lmd->lmd_nal;
503                 pcfg.pcfg_nid = lmd->lmd_local_nid;
504                 rc = libcfs_nal_cmd(&pcfg);
505                 if (rc < 0)
506                         GOTO(out, rc);
507         }
508
509         if (lmd->lmd_nal == SOCKNAL ||
510             lmd->lmd_nal == OPENIBNAL ||
511             lmd->lmd_nal == IIBNAL ||
512             lmd->lmd_nal == VIBNAL ||
513             lmd->lmd_nal == RANAL) {
514                 PCFG_INIT(pcfg, NAL_CMD_ADD_PEER);
515                 pcfg.pcfg_nal     = lmd->lmd_nal;
516                 pcfg.pcfg_nid     = lmd->lmd_server_nid;
517                 pcfg.pcfg_id      = lmd->lmd_server_ipaddr;
518                 pcfg.pcfg_misc    = lmd->lmd_port;
519                 rc = libcfs_nal_cmd(&pcfg);
520                 if (rc < 0)
521                         GOTO(out, rc);
522         }
523
524         LCFG_INIT(lcfg, LCFG_ADD_UUID, name);
525         lcfg.lcfg_nid = lmd->lmd_server_nid;
526         lcfg.lcfg_inllen1 = strlen(peer) + 1;
527         lcfg.lcfg_inlbuf1 = peer;
528         lcfg.lcfg_nal = lmd->lmd_nal;
529         rc = class_process_config(&lcfg);
530         if (rc < 0)
531                 GOTO(out_del_conn, rc);
532
533         LCFG_INIT(lcfg, LCFG_ATTACH, name);
534         lcfg.lcfg_inlbuf1 = "mdc";
535         lcfg.lcfg_inllen1 = strlen(lcfg.lcfg_inlbuf1) + 1;
536         lcfg.lcfg_inlbuf2 = lmv_uuid.uuid;
537         lcfg.lcfg_inllen2 = strlen(lcfg.lcfg_inlbuf2) + 1;
538         err = class_process_config(&lcfg);
539         if (rc < 0)
540                 GOTO(out_del_uuid, rc);
541
542         LCFG_INIT(lcfg, LCFG_SETUP, name);
543         lcfg.lcfg_inlbuf1 = lmd->lmd_mds;
544         lcfg.lcfg_inllen1 = strlen(lcfg.lcfg_inlbuf1) + 1;
545         lcfg.lcfg_inlbuf2 = peer;
546         lcfg.lcfg_inllen2 = strlen(lcfg.lcfg_inlbuf2) + 1;
547         rc = class_process_config(&lcfg);
548         if (rc < 0)
549                 GOTO(out_detach, rc);
550
551         obd = class_name2obd(name);
552         if (obd == NULL)
553                 GOTO(out_cleanup, rc = -EINVAL);
554
555         rc = obd_set_info(obd->obd_self_export, strlen("sec"), "sec",
556                           strlen(lmd->lmd_security), lmd->lmd_security);
557         if (rc)
558                 GOTO(out_cleanup, rc);
559
560         /* Disable initial recovery on this import */
561         rc = obd_set_info(obd->obd_self_export,
562                           strlen("initial_recov"), "initial_recov",
563                           sizeof(allow_recov), &allow_recov);
564         if (rc)
565                 GOTO(out_cleanup, rc);
566
567         rc = obd_connect(&md_conn, obd, &lmv_uuid, 0);
568         if (rc) {
569                 CERROR("cannot connect to %s: rc = %d\n", lmd->lmd_mds, rc);
570                 GOTO(out_cleanup, rc);
571         }
572
573         exp = class_conn2export(&md_conn);
574
575         ctxt = llog_get_context(&exp->exp_obd->obd_llogs,LLOG_CONFIG_REPL_CTXT);
576         rc = class_config_process_llog(ctxt, profile, cfg);
577         if (rc)
578                 CERROR("class_config_process_llog failed: rc = %d\n", rc);
579
580         err = obd_disconnect(exp, 0);
581         
582         EXIT;
583 out_cleanup:
584         LCFG_INIT(lcfg, LCFG_CLEANUP, name);
585         err = class_process_config(&lcfg);
586         if (err < 0)
587                 GOTO(out, err);
588
589 out_detach:
590         LCFG_INIT(lcfg, LCFG_DETACH, name);
591         err = class_process_config(&lcfg);
592         if (err < 0)
593                 GOTO(out, err);
594
595 out_del_uuid:
596         LCFG_INIT(lcfg, LCFG_DEL_UUID, name);
597         lcfg.lcfg_inllen1 = strlen(peer) + 1;
598         lcfg.lcfg_inlbuf1 = peer;
599         err = class_process_config(&lcfg);
600
601 out_del_conn:
602         if (lmd->lmd_nal == SOCKNAL ||
603             lmd->lmd_nal == OPENIBNAL ||
604             lmd->lmd_nal == IIBNAL ||
605             lmd->lmd_nal == VIBNAL ||
606             lmd->lmd_nal == RANAL) {
607                 int err2;
608
609                 PCFG_INIT(pcfg, NAL_CMD_DEL_PEER);
610                 pcfg.pcfg_nal     = lmd->lmd_nal;
611                 pcfg.pcfg_nid     = lmd->lmd_server_nid;
612                 pcfg.pcfg_flags   = 1;          /* single_share */
613                 err2 = libcfs_nal_cmd(&pcfg);
614                 if (err2 && !err)
615                         err = err2;
616                 if (err < 0)
617                         GOTO(out, err);
618         }
619 out:
620         if (rc == 0)
621                 rc = err;
622
623         return rc;
624 }
625
626 static void lustre_manual_cleanup(struct ll_sb_info *sbi)
627 {
628         struct lustre_cfg lcfg;
629         struct obd_device *obd;
630         int next = 0;
631
632         while ((obd = class_devices_in_group(&sbi->ll_sb_uuid, &next)) != NULL)
633         {
634                 int err;
635
636                 LCFG_INIT(lcfg, LCFG_CLEANUP, obd->obd_name);
637                 err = class_process_config(&lcfg);
638                 if (err) {
639                         CERROR("cleanup failed: %s\n", obd->obd_name);
640                         //continue;
641                 }
642
643                 LCFG_INIT(lcfg, LCFG_DETACH, obd->obd_name);
644                 err = class_process_config(&lcfg);
645                 if (err) {
646                         CERROR("detach failed: %s\n", obd->obd_name);
647                         //continue;
648                 }
649         }
650
651         if (sbi->ll_lmd != NULL)
652                 class_del_profile(sbi->ll_lmd->lmd_profile);
653 }
654
655 int lustre_fill_super(struct super_block *sb, void *data, int silent)
656 {
657         struct lustre_mount_data * lmd = data;
658         char *lov = NULL, *lmv = NULL;
659         struct ll_sb_info *sbi;
660         int err;
661         ENTRY;
662
663         CDEBUG(D_VFSTRACE, "VFS Op: sb %p\n", sb);
664         if (lmd_bad_magic(lmd))
665                 RETURN(-EINVAL);
666
667         sbi = lustre_init_sbi(sb);
668         if (!sbi)
669                 RETURN(-ENOMEM);
670
671         sbi->ll_flags |= LL_SBI_READAHEAD;
672
673         if (lmd->lmd_profile) {
674                 struct lustre_profile *lprof;
675                 struct config_llog_instance cfg;
676                 int len;
677
678                 if (lmd->lmd_mds[0] == '\0') {
679                         CERROR("no mds name\n");
680                         GOTO(out_free, err = -EINVAL);
681                 }
682                 lmd->lmd_security[sizeof(lmd->lmd_security) - 1] = 0;
683
684                 OBD_ALLOC(sbi->ll_lmd, sizeof(*sbi->ll_lmd));
685                 if (sbi->ll_lmd == NULL)
686                         GOTO(out_free, err = -ENOMEM);
687                 memcpy(sbi->ll_lmd, lmd, sizeof(*lmd));
688
689                 /* generate a string unique to this super, let's try
690                  the address of the super itself.*/
691                 len = (sizeof(sb) * 2) + 1;
692                 OBD_ALLOC(sbi->ll_instance, len);
693                 if (sbi->ll_instance == NULL)
694                         GOTO(out_free, err = -ENOMEM);
695                 sprintf(sbi->ll_instance, "%p", sb);
696
697                 cfg.cfg_instance = sbi->ll_instance;
698                 cfg.cfg_uuid = sbi->ll_sb_uuid;
699                 cfg.cfg_local_nid = lmd->lmd_local_nid;
700                 err = lustre_process_log(lmd, lmd->lmd_profile, &cfg, 0);
701                 if (err < 0) {
702                         CERROR("Unable to process log: %s\n", lmd->lmd_profile);
703                         GOTO(out_free, err);
704                 }
705
706                 lprof = class_get_profile(lmd->lmd_profile);
707                 if (lprof == NULL) {
708                         CERROR("No profile found: %s\n", lmd->lmd_profile);
709                         GOTO(out_free, err = -EINVAL);
710                 }
711                 if (lov)
712                         OBD_FREE(lov, strlen(lov) + 1);
713                 OBD_ALLOC(lov, strlen(lprof->lp_lov) +
714                           strlen(sbi->ll_instance) + 2);
715                 sprintf(lov, "%s-%s", lprof->lp_lov, sbi->ll_instance);
716
717                 if (lmv)
718                         OBD_FREE(lmv, strlen(lmv) + 1);
719                 OBD_ALLOC(lmv, strlen(lprof->lp_lmv) +
720                           strlen(sbi->ll_instance) + 2);
721                 sprintf(lmv, "%s-%s", lprof->lp_lmv, sbi->ll_instance);
722         }
723
724         if (!lov) {
725                 CERROR("no osc\n");
726                 GOTO(out_free, err = -EINVAL);
727         }
728
729         if (!lmv) {
730                 CERROR("no mdc\n");
731                 GOTO(out_free, err = -EINVAL);
732         }
733
734         err = lustre_common_fill_super(sb, lmv, lov, lmd->lmd_security,
735                                        &lmd->lmd_nllu, lmd->lmd_async);
736
737         if (err)
738                 GOTO(out_free, err);
739         
740 out_dev:
741         if (lmv)
742                 OBD_FREE(lmv, strlen(lmv) + 1);
743         if (lov)
744                 OBD_FREE(lov, strlen(lov) + 1);
745
746         RETURN(err);
747
748 out_free:
749         if (sbi->ll_lmd) {
750                 int len = strlen(sbi->ll_lmd->lmd_profile) + sizeof("-clean")+1;
751                 int err;
752
753                 if (sbi->ll_instance != NULL) {
754                         struct lustre_mount_data *lmd = sbi->ll_lmd;
755                         struct config_llog_instance cfg;
756                         char *cl_prof;
757
758                         cfg.cfg_instance = sbi->ll_instance;
759                         cfg.cfg_uuid = sbi->ll_sb_uuid;
760
761                         OBD_ALLOC(cl_prof, len);
762                         sprintf(cl_prof, "%s-clean", lmd->lmd_profile);
763                         err = lustre_process_log(lmd, cl_prof, &cfg, 0);
764                         if (err < 0) {
765                                 CERROR("Unable to process log: %s\n", cl_prof);
766                                 lustre_manual_cleanup(sbi);
767                         }
768                         OBD_FREE(cl_prof, len);
769                         OBD_FREE(sbi->ll_instance, strlen(sbi->ll_instance) + 1);
770                 }
771                 OBD_FREE(sbi->ll_lmd, sizeof(*sbi->ll_lmd));
772         }
773         lustre_free_sbi(sb);
774         goto out_dev;
775 } /* lustre_fill_super */
776
777 void lustre_put_super(struct super_block *sb)
778 {
779         struct obd_device *obd;
780         struct ll_sb_info *sbi = ll_s2sbi(sb);
781         int force_umount = 0;
782         ENTRY;
783
784         CDEBUG(D_VFSTRACE, "VFS Op: sb %p\n", sb);
785         obd = class_exp2obd(sbi->ll_md_exp);
786         if (obd)
787                 force_umount = obd->obd_no_recov;
788         obd = NULL;
789
790         lustre_common_put_super(sb);
791         if (sbi->ll_lmd != NULL) {
792                 char *cl_prof;
793                 int len = strlen(sbi->ll_lmd->lmd_profile) + sizeof("-clean")+1;
794                 int err;
795                 struct config_llog_instance cfg;
796
797                 if (force_umount) {
798                         CERROR("force umount, doing manual cleanup\n");
799                         lustre_manual_cleanup(sbi);
800                         GOTO(free_lmd, 0);
801                 }
802
803                 cfg.cfg_instance = sbi->ll_instance;
804                 cfg.cfg_uuid = sbi->ll_sb_uuid;
805
806                 OBD_ALLOC(cl_prof, len);
807                 sprintf(cl_prof, "%s-clean", sbi->ll_lmd->lmd_profile);
808                 err = lustre_process_log(sbi->ll_lmd, cl_prof, &cfg, 0);
809                 if (err < 0) {
810                         CERROR("Unable to process log: %s, doing manual cleanup"
811                                "\n", cl_prof);
812                         lustre_manual_cleanup(sbi);
813                 }
814
815                 OBD_FREE(cl_prof, len);
816         free_lmd:
817                 OBD_FREE(sbi->ll_lmd, sizeof(*sbi->ll_lmd));
818                 OBD_FREE(sbi->ll_instance, strlen(sbi->ll_instance) + 1);
819         }
820
821         lustre_free_sbi(sb);
822
823         EXIT;
824 } /* lustre_put_super */
825
826 int ll_process_config_update(struct ll_sb_info *sbi, int clean)
827 {
828         struct obd_export *md_exp = sbi->ll_md_exp;
829         struct lustre_mount_data *lmd = sbi->ll_lmd;
830         struct llog_ctxt *ctxt;
831         struct config_llog_instance cfg;
832         char *profile = lmd->lmd_profile, *name = NULL;
833         int rc, namelen =  0, version;
834         ENTRY;
835
836         if (profile == NULL)
837                 RETURN(0);
838         if (lmd == NULL) {
839                 CERROR("Client not mounted with zero-conf; cannot process "
840                        "update log.\n");
841                 RETURN(0);
842         }
843
844         rc = ldlm_cli_cancel_unused(md_exp->exp_obd->obd_namespace, NULL,
845                                     LDLM_FL_CONFIG_CHANGE, NULL);
846         if (rc != 0)
847                 CWARN("ldlm_cli_cancel_unused(mdc): %d\n", rc);
848
849         rc = obd_cancel_unused(sbi->ll_dt_exp, NULL, LDLM_FL_CONFIG_CHANGE,
850                                NULL);
851         if (rc != 0)
852                 CWARN("obd_cancel_unused(lov): %d\n", rc);
853
854         cfg.cfg_instance = sbi->ll_instance;
855         cfg.cfg_uuid = sbi->ll_sb_uuid;
856         cfg.cfg_local_nid = lmd->lmd_local_nid;
857
858         namelen = strlen(profile) + 20; /* -clean-######### */
859         OBD_ALLOC(name, namelen);
860         if (name == NULL)
861                 RETURN(-ENOMEM);
862
863         if (clean) {
864                 version = sbi->ll_config_version - 1;
865                 sprintf(name, "%s-clean-%d", profile, version);
866         } else {
867                 version = sbi->ll_config_version + 1;
868                 sprintf(name, "%s-%d", profile, version);
869         }
870
871         CWARN("Applying configuration log %s\n", name);
872
873         ctxt = llog_get_context(&md_exp->exp_obd->obd_llogs,
874                                 LLOG_CONFIG_REPL_CTXT);
875         rc = class_config_process_llog(ctxt, name, &cfg);
876         if (rc == 0)
877                 sbi->ll_config_version = version;
878         CWARN("Finished applying configuration log %s: %d\n", name, rc);
879
880         if (rc == 0 && clean == 0) {
881                 struct lov_desc desc;
882                 int rc, valsize;
883                 valsize = sizeof(desc);
884                 rc = obd_get_info(sbi->ll_dt_exp, strlen("lovdesc") + 1,
885                                   "lovdesc", &valsize, &desc);
886
887                 rc = obd_init_ea_size(md_exp,
888                                       obd_size_diskmd(sbi->ll_dt_exp, NULL),
889                                       (desc.ld_tgt_count *
890                                        sizeof(struct llog_cookie)));
891         }
892         OBD_FREE(name, namelen);
893         RETURN(rc);
894 }
895
896 struct inode *ll_inode_from_lock(struct ldlm_lock *lock)
897 {
898         struct inode *inode = NULL;
899         l_lock(&lock->l_resource->lr_namespace->ns_lock);
900         if (lock->l_ast_data) {
901                 struct ll_inode_info *lli = ll_i2info(lock->l_ast_data);
902                 if (lli->lli_inode_magic == LLI_INODE_MAGIC) {
903                         inode = igrab(lock->l_ast_data);
904                 } else {
905                         inode = lock->l_ast_data;
906                         CDEBUG(inode->i_state & I_FREEING ? D_INFO : D_WARNING,
907                                "l_ast_data %p is bogus: magic %0x8\n",
908                                lock->l_ast_data, lli->lli_inode_magic);
909                         inode = NULL;
910                 }
911         }
912         l_unlock(&lock->l_resource->lr_namespace->ns_lock);
913         return inode;
914 }
915
916 int null_if_equal(struct ldlm_lock *lock, void *data)
917 {
918         if (data == lock->l_ast_data) {
919                 lock->l_ast_data = NULL;
920
921                 if (lock->l_req_mode != lock->l_granted_mode)
922                         LDLM_ERROR(lock,"clearing inode with ungranted lock\n");
923         }
924
925         return LDLM_ITER_CONTINUE;
926 }
927
928 void ll_clear_inode(struct inode *inode)
929 {
930         struct lustre_id id;
931         struct ll_inode_info *lli = ll_i2info(inode);
932         struct ll_sb_info *sbi = ll_i2sbi(inode);
933         ENTRY;
934
935         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p)\n", inode->i_ino,
936                inode->i_generation, inode);
937
938         lli->lli_inode_magic = LLI_INODE_DEAD;
939         ll_inode2id(&id, inode);
940         
941         clear_bit(LLI_F_HAVE_MDS_SIZE_LOCK, &(ll_i2info(inode)->lli_flags));
942         md_change_cbdata(sbi->ll_md_exp, &id, null_if_equal, inode);
943
944         LASSERT(!lli->lli_open_fd_write_count);
945         LASSERT(!lli->lli_open_fd_read_count);
946         LASSERT(!lli->lli_open_fd_exec_count);
947
948         if (lli->lli_mds_write_och)
949                 ll_md_real_close(sbi->ll_md_exp, inode, FMODE_WRITE);
950         if (lli->lli_mds_exec_och)
951                 ll_md_real_close(sbi->ll_md_exp, inode, FMODE_EXEC);
952         if (lli->lli_mds_read_och)
953                 ll_md_real_close(sbi->ll_md_exp, inode, FMODE_READ);
954
955         if (lli->lli_smd)
956                 obd_change_cbdata(sbi->ll_dt_exp, lli->lli_smd,
957                                   null_if_equal, inode);
958
959         if (lli->lli_smd) {
960                 obd_free_memmd(sbi->ll_dt_exp, &lli->lli_smd);
961                 lli->lli_smd = NULL;
962         }
963
964         if (lli->lli_mea) {
965                 obd_free_memmd(sbi->ll_md_exp,
966                                (struct lov_stripe_md **) &lli->lli_mea);
967                 lli->lli_mea = NULL;
968         }
969
970         if (lli->lli_symlink_name) {
971                 OBD_FREE(lli->lli_symlink_name,
972                          strlen(lli->lli_symlink_name) + 1);
973                 lli->lli_symlink_name = NULL;
974         }
975         lli->lli_inode_magic = LLI_INODE_DEAD;
976
977         EXIT;
978 }
979
980 /* If this inode has objects allocated to it (lsm != NULL), then the OST
981  * object(s) determine the file size and mtime.  Otherwise, the MDS will
982  * keep these values until such a time that objects are allocated for it.
983  * We do the MDS operations first, as it is checking permissions for us.
984  * We don't to the MDS RPC if there is nothing that we want to store there,
985  * otherwise there is no harm in updating mtime/atime on the MDS if we are
986  * going to do an RPC anyways.
987  *
988  * If we are doing a truncate, we will send the mtime and ctime updates
989  * to the OST with the punch RPC, otherwise we do an explicit setattr RPC.
990  * I don't believe it is possible to get e.g. ATTR_MTIME_SET and ATTR_SIZE
991  * at the same time.
992  */
993 int ll_setattr_raw(struct inode *inode, struct iattr *attr)
994 {
995         struct lov_stripe_md *lsm = ll_i2info(inode)->lli_smd;
996         struct ll_sb_info *sbi = ll_i2sbi(inode);
997         struct ptlrpc_request *request = NULL;
998         struct mdc_op_data *op_data;
999         int ia_valid = attr->ia_valid;
1000         int rc = 0;
1001         ENTRY;
1002
1003         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu\n", inode->i_ino);
1004         lprocfs_counter_incr(ll_i2sbi(inode)->ll_stats, LPROC_LL_SETATTR);
1005
1006         if (ia_valid & ATTR_SIZE) {
1007                 if (attr->ia_size > ll_file_maxbytes(inode)) {
1008                         CDEBUG(D_INODE, "file too large %llu > "LPU64"\n",
1009                                attr->ia_size, ll_file_maxbytes(inode));
1010                         RETURN(-EFBIG);
1011                 }
1012
1013                 attr->ia_valid |= ATTR_MTIME | ATTR_CTIME;
1014         }
1015
1016         /* POSIX: check before ATTR_*TIME_SET set (from inode_change_ok) */
1017         if (ia_valid & (ATTR_MTIME_SET | ATTR_ATIME_SET)) {
1018                 if (current->fsuid != inode->i_uid && !capable(CAP_FOWNER))
1019                         RETURN(-EPERM);
1020         }
1021
1022         /* We mark all of the fields "set" so MDS/OST does not re-set them */
1023         if (attr->ia_valid & ATTR_CTIME) {
1024                 attr->ia_ctime = CURRENT_TIME;
1025                 attr->ia_valid |= ATTR_CTIME_SET;
1026         }
1027         if (!(ia_valid & ATTR_ATIME_SET) && (attr->ia_valid & ATTR_ATIME)) {
1028                 attr->ia_atime = CURRENT_TIME;
1029                 attr->ia_valid |= ATTR_ATIME_SET;
1030         }
1031         if (!(ia_valid & ATTR_MTIME_SET) && (attr->ia_valid & ATTR_MTIME)) {
1032                 attr->ia_mtime = CURRENT_TIME;
1033                 attr->ia_valid |= ATTR_MTIME_SET;
1034         }
1035
1036         if (attr->ia_valid & (ATTR_MTIME | ATTR_CTIME))
1037                 CDEBUG(D_INODE, "setting mtime %lu, ctime %lu, now = %lu\n",
1038                        LTIME_S(attr->ia_mtime), LTIME_S(attr->ia_ctime),
1039                        LTIME_S(CURRENT_TIME));
1040         if (lsm)
1041                 attr->ia_valid &= ~ATTR_SIZE;
1042
1043         /* If only OST attributes being set on objects, don't do MDS RPC.
1044          * In that case, we need to check permissions and update the local
1045          * inode ourselves so we can call obdo_from_inode() always. */
1046         if (ia_valid & (lsm ? ~(ATTR_SIZE | ATTR_FROM_OPEN /*| ATTR_RAW*/) : ~0)) {
1047                 struct lustre_md md;
1048
1049                 OBD_ALLOC(op_data, sizeof(*op_data));
1050                 if (op_data == NULL)
1051                         RETURN(-ENOMEM);
1052                 ll_prepare_mdc_data(op_data, inode, NULL, NULL, 0, 0);
1053
1054                 rc = md_setattr(sbi->ll_md_exp, op_data,
1055                                 attr, NULL, 0, NULL, 0, &request);
1056                 OBD_FREE(op_data, sizeof(*op_data));
1057                 if (rc) {
1058                         ptlrpc_req_finished(request);
1059                         if (rc != -EPERM && rc != -EACCES)
1060                                 CERROR("md_setattr fails: rc = %d\n", rc);
1061                         RETURN(rc);
1062                 }
1063
1064                 rc = mdc_req2lustre_md(sbi->ll_md_exp, request, 0, 
1065                                        sbi->ll_dt_exp, &md);
1066                 if (rc) {
1067                         ptlrpc_req_finished(request);
1068                         RETURN(rc);
1069                 }
1070
1071                 /* We call inode_setattr to adjust timestamps, but we first
1072                  * clear ATTR_SIZE to avoid invoking vmtruncate.
1073                  *
1074                  * NB: ATTR_SIZE will only be set at this point if the size
1075                  * resides on the MDS, ie, this file has no objects. */
1076                 attr->ia_valid &= ~ATTR_SIZE;
1077                 inode_setattr(inode, attr);
1078                  
1079                 ll_update_inode(inode, &md);
1080                 ptlrpc_req_finished(request);
1081
1082                 if (!lsm || !S_ISREG(inode->i_mode)) {
1083                         CDEBUG(D_INODE, "no lsm: not setting attrs on OST\n");
1084                         RETURN(0);
1085                 }
1086         } else {
1087                 /* The OST doesn't check permissions, but the alternative is
1088                  * a gratuitous RPC to the MDS.  We already rely on the client
1089                  * to do read/write/truncate permission checks, so is mtime OK?
1090                  */
1091                 if (ia_valid & (ATTR_MTIME | ATTR_ATIME)) {
1092                         /* from sys_utime() */
1093                         if (!(ia_valid & (ATTR_MTIME_SET | ATTR_ATIME_SET))) {
1094                                 if (current->fsuid != inode->i_uid &&
1095                                     (rc=ll_permission(inode,MAY_WRITE,NULL))!=0)
1096                                         RETURN(rc);
1097                         } else {
1098                                 /* from inode_change_ok() */
1099                                 if (current->fsuid != inode->i_uid &&
1100                                     !capable(CAP_FOWNER))
1101                                         RETURN(-EPERM);
1102                         }
1103                 }
1104
1105                 /* Won't invoke vmtruncate, as we already cleared ATTR_SIZE */
1106                 inode_setattr(inode, attr);
1107         }
1108
1109         /* We really need to get our PW lock before we change inode->i_size.
1110          * If we don't we can race with other i_size updaters on our node, like
1111          * ll_file_read.  We can also race with i_size propogation to other
1112          * nodes through dirtying and writeback of final cached pages.  This
1113          * last one is especially bad for racing o_append users on other
1114          * nodes. */
1115         if (ia_valid & ATTR_SIZE) {
1116                 ldlm_policy_data_t policy = { .l_extent = {attr->ia_size,
1117                                                            OBD_OBJECT_EOF } };
1118                 struct lustre_handle lockh = { 0 };
1119                 struct ll_inode_info *lli = ll_i2info(inode);
1120                 int err, ast_flags = 0;
1121                 /* XXX when we fix the AST intents to pass the discard-range
1122                  * XXX extent, make ast_flags always LDLM_AST_DISCARD_DATA
1123                  * XXX here. */
1124                 if (attr->ia_size == 0)
1125                         ast_flags = LDLM_AST_DISCARD_DATA;
1126
1127                 rc = ll_extent_lock(NULL, inode, lsm, LCK_PW, &policy, &lockh,
1128                                     ast_flags, &ll_i2sbi(inode)->ll_seek_stime);
1129
1130                 if (rc != 0)
1131                         RETURN(rc);
1132
1133                 down(&lli->lli_size_sem);
1134                 lli->lli_size_pid = current->pid;
1135                 rc = vmtruncate(inode, attr->ia_size);
1136                 if (rc != 0) {
1137                         LASSERT(atomic_read(&lli->lli_size_sem.count) <= 0);
1138                         lli->lli_size_pid = 0;
1139                         up(&lli->lli_size_sem);
1140                 }
1141
1142                 err = ll_extent_unlock(NULL, inode, lsm, LCK_PW, &lockh);
1143                 if (err) {
1144                         CERROR("ll_extent_unlock failed: %d\n", err);
1145                         if (!rc)
1146                                 rc = err;
1147                 }
1148         } else if (ia_valid & (ATTR_MTIME | ATTR_MTIME_SET)) {
1149                 struct obdo *oa = NULL;
1150
1151                 CDEBUG(D_INODE, "set mtime on OST inode %lu to %lu\n",
1152                        inode->i_ino, LTIME_S(attr->ia_mtime));
1153
1154                 oa = obdo_alloc();
1155                 if (oa == NULL)
1156                         RETURN(-ENOMEM);
1157
1158                 oa->o_id = lsm->lsm_object_id;
1159                 oa->o_gr = lsm->lsm_object_gr;
1160                 oa->o_valid = OBD_MD_FLID | OBD_MD_FLGROUP;
1161                 obdo_from_inode(oa, inode, OBD_MD_FLTYPE | OBD_MD_FLATIME |
1162                                 OBD_MD_FLMTIME | OBD_MD_FLCTIME);
1163                 rc = obd_setattr(sbi->ll_dt_exp, oa, lsm, NULL);
1164                 obdo_free(oa);
1165                 if (rc)
1166                         CERROR("obd_setattr fails: rc = %d\n", rc);
1167         }
1168         RETURN(rc);
1169 }
1170
1171 int ll_setattr(struct dentry *de, struct iattr *attr)
1172 {
1173         LASSERT(de->d_inode);
1174         return ll_setattr_raw(de->d_inode, attr);
1175 }
1176
1177 int ll_statfs_internal(struct super_block *sb, struct obd_statfs *osfs,
1178                        unsigned long max_age)
1179 {
1180         struct ll_sb_info *sbi = ll_s2sbi(sb);
1181         struct obd_statfs obd_osfs;
1182         int rc;
1183         ENTRY;
1184
1185         rc = obd_statfs(class_exp2obd(sbi->ll_md_exp), osfs, max_age);
1186         if (rc) {
1187                 CERROR("obd_statfs fails: rc = %d\n", rc);
1188                 RETURN(rc);
1189         }
1190
1191         osfs->os_type = sb->s_magic;
1192
1193         CDEBUG(D_SUPER, "MDC blocks "LPU64"/"LPU64" objects "LPU64"/"LPU64"\n",
1194                osfs->os_bavail, osfs->os_blocks, osfs->os_ffree,osfs->os_files);
1195
1196         rc = obd_statfs(class_exp2obd(sbi->ll_dt_exp), &obd_osfs, max_age);
1197         if (rc) {
1198                 CERROR("obd_statfs fails: rc = %d\n", rc);
1199                 RETURN(rc);
1200         }
1201
1202         CDEBUG(D_SUPER, "OSC blocks "LPU64"/"LPU64" objects "LPU64"/"LPU64"\n",
1203                obd_osfs.os_bavail, obd_osfs.os_blocks, obd_osfs.os_ffree,
1204                obd_osfs.os_files);
1205
1206         osfs->os_blocks = obd_osfs.os_blocks;
1207         osfs->os_bfree = obd_osfs.os_bfree;
1208         osfs->os_bavail = obd_osfs.os_bavail;
1209
1210         /* If we don't have as many objects free on the OST as inodes
1211          * on the MDS, we reduce the total number of inodes to
1212          * compensate, so that the "inodes in use" number is correct.
1213          */
1214         if (obd_osfs.os_ffree < osfs->os_ffree) {
1215                 osfs->os_files = (osfs->os_files - osfs->os_ffree) +
1216                         obd_osfs.os_ffree;
1217                 osfs->os_ffree = obd_osfs.os_ffree;
1218         }
1219
1220         RETURN(rc);
1221 }
1222
1223 int ll_statfs(struct super_block *sb, struct kstatfs *sfs)
1224 {
1225         struct obd_statfs osfs;
1226         int rc;
1227
1228         CDEBUG(D_VFSTRACE, "VFS Op: superblock %p\n", sb);
1229         lprocfs_counter_incr(ll_s2sbi(sb)->ll_stats, LPROC_LL_STAFS);
1230
1231         /* For now we will always get up-to-date statfs values, but in the
1232          * future we may allow some amount of caching on the client (e.g.
1233          * from QOS or lprocfs updates). */
1234         rc = ll_statfs_internal(sb, &osfs, jiffies - 1);
1235         if (rc)
1236                 return rc;
1237
1238         statfs_unpack(sfs, &osfs);
1239
1240         if (sizeof(sfs->f_blocks) == 4) {
1241                 while (osfs.os_blocks > ~0UL) {
1242                         sfs->f_bsize <<= 1;
1243
1244                         osfs.os_blocks >>= 1;
1245                         osfs.os_bfree >>= 1;
1246                         osfs.os_bavail >>= 1;
1247                 }
1248         }
1249
1250         sfs->f_blocks = osfs.os_blocks;
1251         sfs->f_bfree = osfs.os_bfree;
1252         sfs->f_bavail = osfs.os_bavail;
1253
1254         return 0;
1255 }
1256
1257 void ll_update_inode(struct inode *inode, struct lustre_md *md)
1258 {
1259         struct ll_inode_info *lli = ll_i2info(inode);
1260         struct lov_stripe_md *lsm = md->lsm;
1261         struct mds_body *body = md->body;
1262         struct mea *mea = md->mea;
1263         struct posix_acl *ll_acl_access = md->acl_access;
1264         ENTRY;
1265
1266         LASSERT((lsm != NULL) == ((body->valid & OBD_MD_FLEASIZE) != 0));
1267
1268         if (md->lsm && md->lsm->lsm_magic != LOV_MAGIC) {
1269                 /* check for default striping info for dir. */
1270                 LASSERT((mea != NULL) == ((body->valid & OBD_MD_FLDIREA) != 0));
1271         }
1272         
1273         if (lsm != NULL) {
1274                 LASSERT(lsm->lsm_object_gr > 0);
1275                 if (lli->lli_smd == NULL) {
1276                         lli->lli_smd = lsm;
1277                         lli->lli_maxbytes = lsm->lsm_maxbytes;
1278                         if (lli->lli_maxbytes > PAGE_CACHE_MAXBYTES)
1279                                 lli->lli_maxbytes = PAGE_CACHE_MAXBYTES;
1280                 } else {
1281                         int i;
1282                         if (memcmp(lli->lli_smd, lsm, sizeof(*lsm))) {
1283                                 CERROR("lsm mismatch for inode %ld\n",
1284                                        inode->i_ino);
1285                                 CERROR("lli_smd:\n");
1286                                 dump_lsm(D_ERROR, lli->lli_smd);
1287                                 CERROR("lsm:\n");
1288                                 dump_lsm(D_ERROR, lsm);
1289                                 LBUG();
1290                         }
1291                         /* XXX FIXME -- We should decide on a safer (atomic) and
1292                          * more elegant way to update the lsm */
1293                         for (i = 0; i < lsm->lsm_stripe_count; i++) {
1294                                 lli->lli_smd->lsm_oinfo[i].loi_id =
1295                                         lsm->lsm_oinfo[i].loi_id;
1296                                 lli->lli_smd->lsm_oinfo[i].loi_gr =
1297                                         lsm->lsm_oinfo[i].loi_gr;
1298                                 lli->lli_smd->lsm_oinfo[i].loi_ost_idx =
1299                                         lsm->lsm_oinfo[i].loi_ost_idx;
1300                                 lli->lli_smd->lsm_oinfo[i].loi_ost_gen =
1301                                         lsm->lsm_oinfo[i].loi_ost_gen;
1302                         }
1303                 }
1304                 /* bug 2844 - limit i_blksize for broken user-space apps */
1305                 LASSERTF(lsm->lsm_xfersize != 0, "%lu\n", lsm->lsm_xfersize);
1306                 inode->i_blksize = min(lsm->lsm_xfersize, LL_MAX_BLKSIZE);
1307                 if (lli->lli_smd != lsm)
1308                         obd_free_memmd(ll_i2dtexp(inode), &lsm);
1309         }
1310
1311         if (mea != NULL) {
1312                 if (lli->lli_mea == NULL) {
1313                         lli->lli_mea = mea;
1314                 } else {
1315                         if (memcmp(lli->lli_mea, mea, body->eadatasize)) {
1316                                 CERROR("mea mismatch for inode %lu\n",
1317                                         inode->i_ino);
1318                                 LBUG();
1319                         }
1320                 }
1321                 if (lli->lli_mea != mea)
1322                         obd_free_memmd(ll_i2mdexp(inode),
1323                                        (struct lov_stripe_md **) &mea);
1324         }
1325
1326         if (body->valid & OBD_MD_FID)
1327                 id_assign_fid(&lli->lli_id, &body->id1);
1328         
1329         if (body->valid & OBD_MD_FLID)
1330                 id_ino(&lli->lli_id) = id_ino(&body->id1);
1331
1332         if (body->valid & OBD_MD_FLGENER)
1333                 id_gen(&lli->lli_id) = id_gen(&body->id1);
1334
1335         spin_lock(&lli->lli_lock);
1336         if (ll_acl_access != NULL) {
1337                 if (lli->lli_acl_access != NULL)
1338                         posix_acl_release(lli->lli_acl_access);
1339                 lli->lli_acl_access = ll_acl_access;
1340         }
1341         spin_unlock(&lli->lli_lock);
1342  
1343         if (body->valid & OBD_MD_FLID)
1344                 inode->i_ino = id_ino(&body->id1);
1345         if (body->valid & OBD_MD_FLGENER)
1346                 inode->i_generation = id_gen(&body->id1);
1347         if (body->valid & OBD_MD_FLATIME)
1348                 LTIME_S(inode->i_atime) = body->atime;
1349         if (body->valid & OBD_MD_FLMTIME &&
1350             body->mtime > LTIME_S(inode->i_mtime)) {
1351                 CDEBUG(D_INODE, "setting ino %lu mtime from %lu to %u\n",
1352                        inode->i_ino, LTIME_S(inode->i_mtime), body->mtime);
1353                 LTIME_S(inode->i_mtime) = body->mtime;
1354         }
1355         if (body->valid & OBD_MD_FLCTIME &&
1356             body->ctime > LTIME_S(inode->i_ctime))
1357                 LTIME_S(inode->i_ctime) = body->ctime;
1358         if (body->valid & OBD_MD_FLMODE) {
1359                 inode->i_mode = (inode->i_mode & S_IFMT) |
1360                         (body->mode & ~S_IFMT);
1361         }
1362         if (body->valid & OBD_MD_FLTYPE) {
1363                 inode->i_mode = (inode->i_mode & ~S_IFMT) |
1364                         (body->mode & S_IFMT);
1365         }
1366         if (body->valid & OBD_MD_FLUID)
1367                 inode->i_uid = body->uid;
1368         if (body->valid & OBD_MD_FLGID)
1369                 inode->i_gid = body->gid;
1370         if (body->valid & OBD_MD_FLFLAGS)
1371                 inode->i_flags = body->flags;
1372         if (body->valid & OBD_MD_FLNLINK)
1373                 inode->i_nlink = body->nlink;
1374         if (body->valid & OBD_MD_FLRDEV)
1375 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
1376                 inode->i_rdev = body->rdev;
1377 #else
1378                 inode->i_rdev = old_decode_dev(body->rdev);
1379 #endif
1380         if (body->valid & OBD_MD_FLSIZE)
1381                 inode->i_size = body->size;
1382         if (body->valid & OBD_MD_FLBLOCKS)
1383                 inode->i_blocks = body->blocks;
1384
1385         if (body->valid & OBD_MD_FLSIZE)
1386                 set_bit(LLI_F_HAVE_MDS_SIZE_LOCK, &lli->lli_flags);
1387
1388 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
1389         inode->i_dev = (kdev_t)id_group(&lli->lli_id);
1390 #endif
1391         LASSERT(id_fid(&lli->lli_id) != 0);
1392 }
1393
1394 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
1395 static struct backing_dev_info ll_backing_dev_info = {
1396         .ra_pages       = 0,    /* No readahead */
1397         .memory_backed  = 0,    /* Does contribute to dirty memory */
1398 };
1399 #endif
1400
1401 void ll_read_inode2(struct inode *inode, void *opaque)
1402 {
1403         struct lustre_md *md = opaque;
1404         struct ll_inode_info *lli = ll_i2info(inode);
1405         ENTRY;
1406
1407         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p)\n", inode->i_ino,
1408                inode->i_generation, inode);
1409
1410         ll_lli_init(lli);
1411
1412         LASSERT(!lli->lli_smd);
1413
1414         /* Core attributes from the MDS first.  This is a new inode, and
1415          * the VFS doesn't zero times in the core inode so we have to do
1416          * it ourselves.  They will be overwritten by either MDS or OST
1417          * attributes - we just need to make sure they aren't newer. */
1418         LTIME_S(inode->i_mtime) = 0;
1419         LTIME_S(inode->i_atime) = 0;
1420         LTIME_S(inode->i_ctime) = 0;
1421
1422         inode->i_rdev = 0;
1423         ll_update_inode(inode, md);
1424
1425         /* OIDEBUG(inode); */
1426
1427         if (S_ISREG(inode->i_mode)) {
1428                 inode->i_op = &ll_file_inode_operations;
1429                 inode->i_fop = &ll_file_operations;
1430                 inode->i_mapping->a_ops = &ll_aops;
1431                 EXIT;
1432         } else if (S_ISDIR(inode->i_mode)) {
1433                 inode->i_op = &ll_dir_inode_operations;
1434                 inode->i_fop = &ll_dir_operations;
1435                 inode->i_mapping->a_ops = &ll_dir_aops;
1436                 EXIT;
1437         } else if (S_ISLNK(inode->i_mode)) {
1438                 inode->i_op = &ll_fast_symlink_inode_operations;
1439                 EXIT;
1440         } else {
1441                 inode->i_op = &ll_special_inode_operations;
1442
1443 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,5,0))
1444                 init_special_inode(inode, inode->i_mode,
1445                                    kdev_t_to_nr(inode->i_rdev));
1446
1447                 /* initializing backing dev info. */
1448                 inode->i_mapping->backing_dev_info = &ll_backing_dev_info;
1449 #else
1450                 init_special_inode(inode, inode->i_mode, inode->i_rdev);
1451 #endif
1452                 lli->ll_save_ifop = inode->i_fop;
1453
1454                 if (S_ISCHR(inode->i_mode))
1455                         inode->i_fop = &ll_special_chr_inode_fops;
1456                 else if (S_ISBLK(inode->i_mode))
1457                         inode->i_fop = &ll_special_blk_inode_fops;
1458                 else if (S_ISFIFO(inode->i_mode))
1459                         inode->i_fop = &ll_special_fifo_inode_fops;
1460                 else if (S_ISSOCK(inode->i_mode))
1461                         inode->i_fop = &ll_special_sock_inode_fops;
1462
1463                 CWARN("saved %p, replaced with %p\n", lli->ll_save_ifop,
1464                       inode->i_fop);
1465
1466                 if (lli->ll_save_ifop->owner) {
1467                         CWARN("%p has owner %p\n", lli->ll_save_ifop,
1468                               lli->ll_save_ifop->owner);
1469                 }
1470                 EXIT;
1471         }
1472 }
1473
1474 void ll_delete_inode(struct inode *inode)
1475 {
1476         struct ll_sb_info *sbi = ll_i2sbi(inode);
1477         struct lustre_id id;
1478         int rc;
1479         ENTRY;
1480
1481         ll_inode2id(&id, inode);
1482
1483         rc = md_delete_inode(sbi->ll_md_exp, &id);
1484         if (rc) {
1485                 CERROR("md_delete_inode() failed, error %d\n", 
1486                        rc);
1487         }
1488
1489         clear_inode(inode);
1490         EXIT;
1491 }
1492
1493 int ll_iocontrol(struct inode *inode, struct file *file,
1494                  unsigned int cmd, unsigned long arg)
1495 {
1496         struct ll_sb_info *sbi = ll_i2sbi(inode);
1497         struct ptlrpc_request *req = NULL;
1498         int rc, flags = 0;
1499         ENTRY;
1500
1501         switch(cmd) {
1502         case EXT3_IOC_GETFLAGS: {
1503                 struct lustre_id id;
1504                 __u64 valid = OBD_MD_FLFLAGS;
1505                 struct mds_body *body;
1506
1507                 ll_inode2id(&id, inode);
1508                 rc = md_getattr(sbi->ll_md_exp, &id, valid, NULL, 0, 0, &req);
1509                 if (rc) {
1510                         CERROR("failure %d inode %lu\n", rc, inode->i_ino);
1511                         RETURN(-abs(rc));
1512                 }
1513
1514                 body = lustre_msg_buf(req->rq_repmsg, 0, sizeof(*body));
1515
1516                 if (body->flags & S_APPEND)
1517                         flags |= EXT3_APPEND_FL;
1518                 if (body->flags & S_IMMUTABLE)
1519                         flags |= EXT3_IMMUTABLE_FL;
1520                 if (body->flags & S_NOATIME)
1521                         flags |= EXT3_NOATIME_FL;
1522
1523                 ptlrpc_req_finished (req);
1524
1525                 RETURN(put_user(flags, (int *)arg));
1526         }
1527         case EXT3_IOC_SETFLAGS: {
1528                 struct mdc_op_data *op_data;
1529                 struct iattr attr;
1530                 struct obdo *oa;
1531                 struct lov_stripe_md *lsm = ll_i2info(inode)->lli_smd;
1532
1533                 if (get_user(flags, (int *)arg))
1534                         RETURN(-EFAULT);
1535
1536                 oa = obdo_alloc();
1537                 if (!oa)
1538                         RETURN(-ENOMEM);
1539
1540                 OBD_ALLOC(op_data, sizeof(*op_data));
1541                 if (op_data == NULL) {
1542                         obdo_free(oa);
1543                         RETURN(-ENOMEM);
1544                 }
1545                 ll_prepare_mdc_data(op_data, inode, NULL, NULL, 0, 0);
1546
1547                 memset(&attr, 0x0, sizeof(attr));
1548                 attr.ia_attr_flags = flags;
1549                 attr.ia_valid |= ATTR_ATTR_FLAG;
1550
1551                 rc = md_setattr(sbi->ll_md_exp, op_data,
1552                                 &attr, NULL, 0, NULL, 0, &req);
1553                 OBD_FREE(op_data, sizeof(*op_data));
1554                 if (rc) {
1555                         ptlrpc_req_finished(req);
1556                         if (rc != -EPERM && rc != -EACCES)
1557                                 CERROR("md_setattr fails: rc = %d\n", rc);
1558                         obdo_free(oa);
1559                         RETURN(rc);
1560                 }
1561                 ptlrpc_req_finished(req);
1562
1563                 oa->o_id = lsm->lsm_object_id;
1564                 oa->o_gr = lsm->lsm_object_gr;
1565                 oa->o_flags = flags;
1566                 oa->o_valid = OBD_MD_FLID | OBD_MD_FLFLAGS | OBD_MD_FLGROUP;
1567
1568                 rc = obd_setattr(sbi->ll_dt_exp, oa, lsm, NULL);
1569                 obdo_free(oa);
1570                 if (rc) {
1571                         if (rc != -EPERM && rc != -EACCES)
1572                                 CERROR("md_setattr fails: rc = %d\n", rc);
1573                         RETURN(rc);
1574                 }
1575
1576                 if (flags & EXT3_APPEND_FL)
1577                         inode->i_flags |= S_APPEND;
1578                 else
1579                         inode->i_flags &= ~S_APPEND;
1580                 if (flags & EXT3_IMMUTABLE_FL)
1581                         inode->i_flags |= S_IMMUTABLE;
1582                 else
1583                         inode->i_flags &= ~S_IMMUTABLE;
1584                 if (flags & EXT3_NOATIME_FL)
1585                         inode->i_flags |= S_NOATIME;
1586                 else
1587                         inode->i_flags &= ~S_NOATIME;
1588
1589                 RETURN(0);
1590         }
1591         default:
1592                 RETURN(-ENOSYS);
1593         }
1594
1595         RETURN(0);
1596 }
1597
1598 /* this is only called in the case of forced umount. */
1599 void ll_umount_begin(struct super_block *sb)
1600 {
1601         struct ll_sb_info *sbi = ll_s2sbi(sb);
1602         struct obd_ioctl_data ioc_data = { 0 };
1603         struct obd_device *obd;
1604         ENTRY;
1605      
1606         CDEBUG(D_VFSTRACE, "VFS Op: superblock %p count %d active %d\n", sb,
1607                sb->s_count, atomic_read(&sb->s_active));
1608         
1609         obd = class_exp2obd(sbi->ll_md_exp);
1610         if (obd == NULL) {
1611                 CERROR("Invalid MDC connection handle "LPX64"\n",
1612                        sbi->ll_md_exp->exp_handle.h_cookie);
1613                 EXIT;
1614                 return;
1615         }
1616         obd->obd_no_recov = 1;
1617         obd_iocontrol(IOC_OSC_SET_ACTIVE, sbi->ll_md_exp,
1618                       sizeof(ioc_data), &ioc_data, NULL);
1619
1620         obd = class_exp2obd(sbi->ll_dt_exp);
1621         if (obd == NULL) {
1622                 CERROR("Invalid LOV connection handle "LPX64"\n",
1623                        sbi->ll_dt_exp->exp_handle.h_cookie);
1624                 EXIT;
1625                 return;
1626         }
1627
1628         obd->obd_no_recov = 1;
1629         obd_iocontrol(IOC_OSC_SET_ACTIVE, sbi->ll_dt_exp,
1630                       sizeof(ioc_data), &ioc_data, NULL);
1631
1632         /*
1633          * really, we'd like to wait until there are no requests outstanding,
1634          * and then continue.  For now, we just invalidate the requests,
1635          * schedule, and hope.
1636          */
1637         schedule();
1638
1639         EXIT;
1640 }
1641
1642 int ll_prep_inode(struct obd_export *dt_exp, struct obd_export *md_exp,
1643                   struct inode **inode, struct ptlrpc_request *req,
1644                   int offset, struct super_block *sb)
1645 {
1646         struct lustre_md md;
1647         int rc = 0;
1648
1649         rc = mdc_req2lustre_md(md_exp, req, offset, dt_exp, &md);
1650         if (rc)
1651                 RETURN(rc);
1652
1653         if (*inode) {
1654                 ll_update_inode(*inode, &md);
1655         } else {
1656                 LASSERT(sb);
1657                 *inode = ll_iget(sb, id_ino(&md.body->id1), &md);
1658                 if (*inode == NULL || is_bad_inode(*inode)) {
1659                         /* free the lsm if we allocated one above */
1660                         if (md.lsm != NULL)
1661                                 obd_free_memmd(dt_exp, &md.lsm);
1662                         if (md.mea != NULL)
1663                                 obd_free_memmd(md_exp,
1664                                                (struct lov_stripe_md**)&md.mea);
1665                         rc = -ENOMEM;
1666                         CERROR("new_inode -fatal: rc %d\n", rc);
1667                 }
1668         }
1669
1670         RETURN(rc);
1671 }
1672
1673 int ll_get_fid(struct obd_export *exp, struct lustre_id *idp,
1674                char *filename, struct lustre_id *ret)
1675 {
1676         struct ptlrpc_request *request = NULL;
1677         struct mds_body *body;
1678         int rc;
1679
1680         rc = md_getattr_lock(exp, idp, filename, strlen(filename) + 1,
1681                              OBD_MD_FID, 0, &request);
1682         if (rc < 0) {
1683                 CDEBUG(D_INFO, "md_getattr_lock failed on %s: rc %d\n",
1684                        filename, rc);
1685                 return rc;
1686         }
1687
1688         body = lustre_msg_buf(request->rq_repmsg, 0, sizeof(*body));
1689         LASSERT(body != NULL);
1690         LASSERT_REPSWABBED(request, 0);
1691
1692         *ret = body->id1;
1693         ptlrpc_req_finished(request);
1694
1695         return rc;
1696 }