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