Whamcloud - gitweb
Branch: HEAD
[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 #include <linux/seq_file.h>
31
32 #include <linux/lustre_lite.h>
33 #include <linux/lustre_ha.h>
34 #include <linux/lustre_dlm.h>
35 #include <linux/lprocfs_status.h>
36 #include <linux/lustre_acl.h>
37 #include <linux/lustre_audit.h>
38 #include <linux/lustre_gs.h>
39 #include <linux/lustre_sec.h>
40 #include "llite_internal.h"
41
42 kmem_cache_t *ll_file_data_slab;
43 kmem_cache_t *ll_intent_slab;
44
45 extern struct address_space_operations ll_aops;
46 extern struct address_space_operations ll_dir_aops;
47
48 #ifndef log2
49 #define log2(n) ffz(~(n))
50 #endif
51
52 struct ll_sb_info *lustre_init_sbi(struct super_block *sb)
53 {
54         struct ll_sb_info *sbi = NULL;
55         class_uuid_t uuid;
56         ENTRY;
57
58         OBD_ALLOC(sbi, sizeof(*sbi));
59         if (!sbi)
60                 RETURN(NULL);
61
62         spin_lock_init(&sbi->ll_lock);
63         INIT_LIST_HEAD(&sbi->ll_pglist);
64         sbi->ll_pglist_gen = 0;
65         if (num_physpages < SBI_DEFAULT_RA_MAX / 4)
66                 sbi->ll_ra_info.ra_max_pages = num_physpages / 4;
67         else
68                 sbi->ll_ra_info.ra_max_pages = SBI_DEFAULT_RA_MAX;
69         INIT_LIST_HEAD(&sbi->ll_conn_chain);
70         INIT_HLIST_HEAD(&sbi->ll_orphan_dentry_list);
71         INIT_LIST_HEAD(&sbi->ll_mnt_list);
72         
73         sema_init(&sbi->ll_gns_sem, 1);
74         spin_lock_init(&sbi->ll_gns_lock);
75         INIT_LIST_HEAD(&sbi->ll_gns_sbi_head);
76         init_waitqueue_head(&sbi->ll_gns_waitq);
77         init_completion(&sbi->ll_gns_mount_finished);
78
79         /* this later may be reset via /proc/fs/... */
80         memcpy(sbi->ll_gns_oname, ".mntinfo", strlen(".mntinfo"));
81         sbi->ll_gns_oname[strlen(sbi->ll_gns_oname)] = '\0';
82         
83         /* this later may be reset via /proc/fs/... */
84         memcpy(sbi->ll_gns_upcall, "/usr/sbin/gns_upcall",
85                strlen("/usr/sbin/gns_upcall"));
86         sbi->ll_gns_upcall[strlen(sbi->ll_gns_upcall)] = '\0';
87
88         /* default values, may be changed via /proc/fs/... */
89         sbi->ll_gns_state = LL_GNS_IDLE;
90         sbi->ll_gns_pending_dentry = NULL;
91         atomic_set(&sbi->ll_gns_enabled, 1);
92         sbi->ll_gns_tick = GNS_TICK_TIMEOUT;
93         sbi->ll_gns_timeout = GNS_MOUNT_TIMEOUT;
94
95         sbi->ll_gns_timer.data = (unsigned long)sbi;
96         sbi->ll_gns_timer.function = ll_gns_timer_callback;
97         init_timer(&sbi->ll_gns_timer);
98         //audit mask
99         sbi->ll_audit_mask = AUDIT_OFF;
100         ll_set_sbi(sb, sbi);
101
102         generate_random_uuid(uuid);
103         class_uuid_unparse(uuid, &sbi->ll_sb_uuid);
104         RETURN(sbi);
105 }
106
107 void lustre_free_sbi(struct super_block *sb)
108 {
109         struct ll_sb_info *sbi = ll_s2sbi(sb);
110         ENTRY;
111
112         if (sbi != NULL) {
113                 list_del(&sbi->ll_gns_sbi_head);
114                 del_timer(&sbi->ll_gns_timer);
115                 OBD_FREE(sbi, sizeof(*sbi));
116         }
117         ll_set_sbi(sb, NULL);
118         EXIT;
119 }
120
121 int lustre_init_dt_desc(struct ll_sb_info *sbi)
122 {
123         __u32 valsize;
124         int rc = 0;
125         ENTRY;
126         
127         valsize = sizeof(sbi->ll_dt_desc);
128         memset(&sbi->ll_dt_desc, 0, sizeof(sbi->ll_dt_desc));
129         rc = obd_get_info(sbi->ll_dt_exp, strlen("lovdesc") + 1,
130                           "lovdesc", &valsize, &sbi->ll_dt_desc);
131         RETURN(rc);
132 }
133
134 static int lustre_connect_mds(struct super_block *sb, char *lmv,
135                               struct obd_connect_data *data,
136                               char *mds_security, int async, int pag)
137 {
138         struct ll_sb_info *sbi = ll_s2sbi(sb);
139         struct lustre_handle md_conn = {0, };
140         struct obd_device *md_obd;
141         struct obd_statfs osfs;
142         unsigned long sec_flags;
143         __u32 valsize;
144         int    err = 0;
145         ENTRY;       
146  
147         md_obd = class_name2obd(lmv);
148         if (!md_obd) {
149                 CERROR("MDC %s: not setup or attached\n", lmv);
150                 RETURN(-EINVAL);
151         }
152
153         obd_set_info(md_obd->obd_self_export, strlen("async"), "async",
154                      sizeof(async), &async);
155
156         if (mds_security == NULL)
157                 mds_security = "null";
158         
159         err = obd_set_info(md_obd->obd_self_export, strlen("sec"), "sec",
160                            strlen(mds_security), mds_security);
161         
162         if (err) {
163                 CERROR("LMV %s: failed to set security %s, err %d\n",
164                         lmv, mds_security, err);
165                 RETURN(err);
166         }
167
168         if (pag) {
169                 sec_flags = PTLRPC_SEC_FL_PAG;
170                 err = obd_set_info(md_obd->obd_self_export,
171                                    strlen("sec_flags"), "sec_flags",
172                                    sizeof(sec_flags), &sec_flags);
173                 if (err) {
174                         OBD_FREE(data, sizeof(*data));
175                         RETURN(err);
176                 }
177         }
178
179         err = obd_connect(&md_conn, md_obd, &sbi->ll_sb_uuid, data,
180                           OBD_OPT_REAL_CLIENT);
181         if (err == -EBUSY) {
182                 CERROR("An MDS (lmv %s) is performing recovery, of which this"
183                        " client is not a part.  Please wait for recovery to "
184                        "complete, abort, or time out.\n", lmv);
185                 GOTO(out, err);
186         } else if (err) {
187                 CERROR("cannot connect to %s: rc = %d\n", lmv, err);
188                 GOTO(out, err);
189         }
190
191         sbi->ll_md_exp = class_conn2export(&md_conn);
192        
193         err = obd_statfs(md_obd, &osfs, jiffies - HZ);
194         if (err)
195                 GOTO(out_disconnect, err);
196
197         if (!osfs.os_bsize) {
198                 CERROR("Invalid block size is detected.");
199                 GOTO(out_disconnect, err);
200         }
201
202         sb->s_magic = LL_SUPER_MAGIC;
203         sb->s_blocksize = osfs.os_bsize;
204         sb->s_blocksize_bits = log2(osfs.os_bsize);
205         sb->s_maxbytes = PAGE_CACHE_MAXBYTES;
206
207         /* in 2.6.x FS is not allowed to form s_dev */
208 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
209         {
210                 kdev_t devno;
211                 
212                 devno = get_uuid2int((char *)sbi->ll_md_exp->exp_obd->obd_uuid.uuid, 
213                                      strlen((char *)sbi->ll_md_exp->exp_obd->obd_uuid.uuid));
214                 
215                 sb->s_dev = devno;
216         }
217 #endif
218
219         /* after statfs, we are supposed to have connected to MDSs,
220          * so it's ok to check remote flag returned.
221          */
222         valsize = sizeof(&sbi->ll_remote);
223         err = obd_get_info(sbi->ll_md_exp, strlen("remote_flag"), "remote_flag",
224                            &valsize, &sbi->ll_remote);
225         if (err) {
226                 CERROR("fail to obtain remote flag\n");
227                 GOTO(out_disconnect, err);
228         }
229
230 out_disconnect:
231         if (err)
232                 obd_disconnect(sbi->ll_md_exp, 0);
233 out:
234         RETURN(err);
235 }
236
237 static int lustre_connect_ost(struct super_block *sb, char *lov, 
238                               struct obd_connect_data *data, 
239                               char *oss_security, int async, int pag)
240 {
241         struct ll_sb_info *sbi = ll_s2sbi(sb);
242         struct lustre_handle dt_conn = {0, };
243         struct obd_device *obd = NULL;
244         unsigned long sec_flags;
245         int err, mdsize; 
246
247         obd = class_name2obd(lov);
248         if (!obd) {
249                 CERROR("OSC %s: not setup or attached\n", lov);
250                 GOTO(out, err = -EINVAL);
251         }
252         obd_set_info(obd->obd_self_export, strlen("async"), "async",
253                      sizeof(async), &async);
254
255        if (oss_security == NULL)
256                 oss_security = "null";
257
258         err = obd_set_info(obd->obd_self_export, strlen("sec"), "sec",
259                            strlen(oss_security), oss_security);
260         if (err) {
261                 CERROR("LOV %s: failed to set security %s, err %d\n",
262                         lov, oss_security, err);
263                 RETURN(err);
264         }
265
266         if (pag) {
267                 sec_flags = PTLRPC_SEC_FL_PAG;
268                 err = obd_set_info(obd->obd_self_export,
269                                    strlen("sec_flags"), "sec_flags",
270                                    sizeof(sec_flags), &sec_flags);
271                 if (err) {
272                         OBD_FREE(data, sizeof(*data));
273                         RETURN(err);
274                 }
275         }
276
277         err = obd_connect(&dt_conn, obd, &sbi->ll_sb_uuid, data, 0);
278         if (err == -EBUSY) {
279                 CERROR("An OST (lov %s) is performing recovery, of which this"
280                        " client is not a part.  Please wait for recovery to "
281                        "complete, abort, or time out.\n", lov);
282                 GOTO(out, err);
283         } else if (err) {
284                 CERROR("cannot connect to %s: rc = %d\n", lov, err);
285                 GOTO(out, err);
286         }
287         sbi->ll_dt_exp = class_conn2export(&dt_conn);
288
289         err = lustre_init_dt_desc(sbi);
290        
291         if (err) {
292                 CWARN("init dt_desc error %d \n", err);
293                 GOTO(out, err = 0);
294         }
295         mdsize = obd_size_diskmd(sbi->ll_dt_exp, NULL);
296         obd_init_ea_size(sbi->ll_md_exp, mdsize, sbi->ll_dt_desc.ld_tgt_count *
297                          sizeof(struct llog_cookie));
298 out:
299         RETURN(err);
300 }
301
302 extern struct dentry_operations ll_d_ops;
303
304 static int lustre_init_root_inode(struct super_block *sb)
305 {
306         struct ll_sb_info *sbi = ll_s2sbi(sb);
307         struct ptlrpc_request *request = NULL;
308         struct inode *root = NULL;
309         struct lustre_md md;
310         int err = 0;
311         ENTRY;
312
313         err = md_getstatus(sbi->ll_md_exp, &sbi->ll_rootid);
314         if (err) {
315                 CERROR("cannot mds_connect: rc = %d\n", err);
316                 GOTO(out, err);
317         }
318         CDEBUG(D_SUPER, "rootid "DLID4"\n", OLID4(&sbi->ll_rootid));
319
320         sb->s_op = &lustre_super_operations;
321
322         /* make root inode */
323         err = md_getattr(sbi->ll_md_exp, &sbi->ll_rootid,
324                          (OBD_MD_FLNOTOBD | OBD_MD_FLBLOCKS | OBD_MD_FID),
325                          NULL, NULL, 0, 0, NULL, &request);
326         if (err) {
327                 CERROR("md_getattr failed for root: rc = %d\n", err);
328                 GOTO(out, err);
329         }
330
331         err = mdc_req2lustre_md(sbi->ll_md_exp, request, 0, 
332                                 sbi->ll_dt_exp, &md);
333         if (err) {
334                 CERROR("failed to understand root inode md: rc = %d\n", err);
335                 ptlrpc_req_finished(request);
336                 GOTO(out, err);
337         }
338
339         LASSERT(id_ino(&sbi->ll_rootid) != 0);
340         root = ll_iget(sb, id_ino(&sbi->ll_rootid), &md);
341
342         ptlrpc_req_finished(request);
343
344         if (root == NULL || is_bad_inode(root)) {
345                 if (md.lsm != NULL)
346                     obd_free_memmd(sbi->ll_dt_exp, &md.lsm);
347                 if (md.mea != NULL)
348                     obd_free_memmd(sbi->ll_md_exp,
349                                    (struct lov_stripe_md**)&md.mea);
350                 CERROR("lustre_lite: bad iget4 for root\n");
351                 GOTO(out_root, err = -EBADF);
352         }
353         sb->s_root = d_alloc_root(root);
354         sb->s_root->d_op = &ll_d_ops;
355 out_root:
356         if (err)
357                 iput(root);
358 out:
359         RETURN(err);
360 }
361
362 int lustre_common_fill_super(struct super_block *sb, char *lmv, char *lov,
363                              char *gkc, int async,  char *mds_security,  
364                              char *oss_security, __u32 *nllu, int pag, 
365                              __u64 *remote)
366 {
367         struct ll_sb_info *sbi = ll_s2sbi(sb);
368         struct obd_connect_data *data;
369         int err;
370         ENTRY;
371
372         /*process the connect flags*/
373         if ((*remote & (OBD_CONNECT_LOCAL | OBD_CONNECT_REMOTE)) ==
374                        (OBD_CONNECT_LOCAL | OBD_CONNECT_REMOTE)) {
375                 CERROR("wrong remote flag "LPX64"\n", *remote);
376                 RETURN(-EINVAL);
377         }
378
379         OBD_ALLOC(data, sizeof(*data));
380         if (!data)
381                 RETURN(-ENOMEM);
382
383         data->ocd_connect_flags |= *remote & (OBD_CONNECT_LOCAL |
384                                               OBD_CONNECT_REMOTE);
385         memcpy(data->ocd_nllu, nllu, sizeof(data->ocd_nllu));
386
387         if (proc_lustre_fs_root) {
388                 err = lprocfs_register_mountpoint(proc_lustre_fs_root, 
389                                                   sb, lov, lmv);
390                 if (err < 0)
391                         CERROR("could not register mount in /proc/lustre");
392         }
393
394         /*connect mds */ 
395         err = lustre_connect_mds(sb, lmv, data, mds_security, async, pag);
396         if (err)
397                 GOTO(out, err);
398
399         /*connect OST*/
400         err = lustre_connect_ost(sb, lov, data, oss_security, async, pag);
401         if (err)
402                 GOTO(out_lmv, err);
403
404         err = lustre_init_crypto(sb, gkc, data, async);
405         if (err) {
406                 CERROR("Could not connect to GSS err %d\n", err);
407                 err = 0;
408         }
409         /*connect GSS*/
410         err = lustre_init_root_inode(sb);
411         if (err)
412                 GOTO(out_gks, err);
413
414         err = ll_close_thread_start(&sbi->ll_lcq);
415         if (err) {
416                 CERROR("cannot start close thread: rc %d\n", err);
417                 GOTO(out_root, err);
418         }
419
420         ll_gns_add_timer(sbi);
421
422         /* making vm readahead 0 for 2.4.x. In the case of 2.6.x,
423            backing dev info assigned to inode mapping is used for
424            determining maximal readahead. */
425 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0)) && \
426     !defined(KERNEL_HAS_AS_MAX_READAHEAD)
427         /* bug 2805 - set VM readahead to zero */
428         vm_max_readahead = vm_min_readahead = 0;
429 #endif
430         sb->s_flags |= MS_POSIXACL;
431 #ifdef S_PDIROPS
432         CWARN("Enabling PDIROPS\n");
433         sb->s_flags |= S_PDIROPS;
434 #endif
435         if (data != NULL)
436                 OBD_FREE(data, sizeof(*data));
437         RETURN(err);
438 out_root:
439         if (sb->s_root)
440                 dput(sb->s_root);
441 out_gks:
442         lustre_destroy_crypto(sb);
443 out_lmv:
444         obd_disconnect(sbi->ll_md_exp, 0);
445 out:
446         if (data != NULL)
447                 OBD_FREE(data, sizeof(*data));
448         lprocfs_unregister_mountpoint(sbi);
449         RETURN(err);
450 }
451
452 void lustre_common_put_super(struct super_block *sb)
453 {
454         struct ll_sb_info *sbi = ll_s2sbi(sb);
455         struct hlist_node *tmp, *next;
456         ENTRY;
457
458         ll_gns_del_timer(sbi);
459         ll_close_thread_stop(sbi->ll_lcq);
460
461         lustre_destroy_crypto(sb);
462
463         list_del(&sbi->ll_conn_chain);
464         obd_disconnect(sbi->ll_dt_exp, 0);
465
466         lprocfs_unregister_mountpoint(sbi);
467         if (sbi->ll_proc_root) {
468                 lprocfs_remove(sbi->ll_proc_root);
469                 sbi->ll_proc_root = NULL;
470         }
471
472         obd_disconnect(sbi->ll_md_exp, 0);
473
474         // We do this to get rid of orphaned dentries. That is not really trw.
475         hlist_for_each_safe(tmp, next, &sbi->ll_orphan_dentry_list) {
476                 struct dentry *dentry = hlist_entry(tmp, struct dentry, d_hash);
477                 CWARN("orphan dentry %.*s (%p->%p) at unmount\n",
478                       dentry->d_name.len, dentry->d_name.name, dentry, next);
479                 shrink_dcache_parent(dentry);
480         }
481         EXIT;
482 }
483
484 char *ll_read_opt(const char *opt, char *data)
485 {
486         char *value;
487         char *retval;
488         ENTRY;
489
490         CDEBUG(D_SUPER, "option: %s, data %s\n", opt, data);
491         if (strncmp(opt, data, strlen(opt)))
492                 RETURN(NULL);
493         if ((value = strchr(data, '=')) == NULL)
494                 RETURN(NULL);
495
496         value++;
497         OBD_ALLOC(retval, strlen(value) + 1);
498         if (!retval) {
499                 CERROR("out of memory!\n");
500                 RETURN(NULL);
501         }
502
503         memcpy(retval, value, strlen(value)+1);
504         CDEBUG(D_SUPER, "Assigned option: %s, value %s\n", opt, retval);
505         RETURN(retval);
506 }
507
508 int ll_set_opt(const char *opt, char *data, int fl)
509 {
510         ENTRY;
511
512         CDEBUG(D_SUPER, "option: %s, data %s\n", opt, data);
513         if (strncmp(opt, data, strlen(opt)))
514                 RETURN(0);
515         else
516                 RETURN(fl);
517 }
518
519 void ll_options(char *options, char **lov, char **lmv, char **gkc,
520                 char **mds_sec, char **oss_sec, int *async, int *flags)
521 {
522         char *this_char;
523 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
524         char *opt_ptr = options;
525 #endif
526         ENTRY;
527
528         if (!options) {
529                 EXIT;
530                 return;
531         }
532
533         *async = 0;
534 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
535         for (this_char = strtok (options, ",");
536              this_char != NULL;
537              this_char = strtok (NULL, ",")) {
538 #else
539         while ((this_char = strsep (&opt_ptr, ",")) != NULL) {
540 #endif
541                 CDEBUG(D_SUPER, "this_char %s\n", this_char);
542                 if (!*lov && (*lov = ll_read_opt("osc", this_char)))
543                         continue;
544                 if (!*lmv && (*lmv = ll_read_opt("mdc", this_char)))
545                         continue;
546                 if (!*gkc && (*gkc = ll_read_opt("gkc", this_char)))
547                         continue;
548                 if (!strncmp(this_char, "lasync", strlen("lasync"))) {
549                         *async = 1;
550                         continue;
551                 }
552                 if (!*mds_sec && (*mds_sec = ll_read_opt("mds_sec", this_char)))
553                         continue;
554                 if (!*oss_sec && (*oss_sec = ll_read_opt("oss_sec", this_char)))
555                         continue;
556                 if (!(*flags & LL_SBI_NOLCK) &&
557                     ((*flags) = (*flags) |
558                                 ll_set_opt("nolock", this_char,
559                                            LL_SBI_NOLCK)))
560                         continue;
561         }
562         
563         EXIT;
564 }
565
566 void ll_lli_init(struct ll_inode_info *lli)
567 {
568         sema_init(&lli->lli_open_sem, 1);
569         sema_init(&lli->lli_size_sem, 1);
570         lli->lli_flags = 0;
571         lli->lli_size_pid = 0;
572         lli->lli_maxbytes = PAGE_CACHE_MAXBYTES;
573         spin_lock_init(&lli->lli_lock);
574         INIT_LIST_HEAD(&lli->lli_pending_write_llaps);
575         INIT_LIST_HEAD(&lli->lli_close_item);
576         lli->lli_inode_magic = LLI_INODE_MAGIC;
577         memset(&lli->lli_id, 0, sizeof(lli->lli_id));
578         sema_init(&lli->lli_och_sem, 1);
579         lli->lli_mds_read_och = lli->lli_mds_write_och = NULL;
580         lli->lli_mds_exec_och = NULL;
581         lli->lli_open_fd_read_count = lli->lli_open_fd_write_count = 0;
582         lli->lli_open_fd_exec_count = 0;
583         lli->lli_audit_mask = AUDIT_OFF;
584         lli->lli_key_info = NULL;
585         init_waitqueue_head(&lli->lli_dirty_wait);
586 }
587
588 int ll_fill_super(struct super_block *sb, void *data, int silent)
589 {
590         struct ll_sb_info *sbi;
591         char *lov = NULL, *lmv = NULL, *gkc = NULL;
592         char *mds_sec = NULL;
593         char *oss_sec = NULL;
594         int async, err;
595         __u32 nllu[2] = { NOBODY_UID, NOBODY_GID };
596         __u64 remote_flag = 0;    
597         ENTRY;
598
599         CDEBUG(D_VFSTRACE, "VFS Op: sb %p\n", sb);
600
601         sbi = lustre_init_sbi(sb);
602         if (!sbi)
603                 RETURN(-ENOMEM);
604
605         sbi->ll_flags |= LL_SBI_READAHEAD;
606         ll_options(data, &lov, &lmv, &gkc, &mds_sec, &oss_sec,
607                    &async, &sbi->ll_flags);
608
609         if (!lov || !lmv) {
610                 CERROR("no osc %p or no mdc %p\n", lov, lmv);
611                 GOTO(out, err = -EINVAL);
612         }
613         
614         err = lustre_common_fill_super(sb, lmv, lov, gkc, async, mds_sec, 
615                                        oss_sec, nllu, 0, &remote_flag);
616         EXIT;
617 out:
618         if (err)
619                 lustre_free_sbi(sb);
620
621         if (lmv)
622                 OBD_FREE(lmv, strlen(lmv) + 1);
623         if (lov)
624                 OBD_FREE(lov, strlen(lov) + 1);
625         if (mds_sec)
626                 OBD_FREE(mds_sec, strlen(mds_sec) + 1);
627         if (oss_sec)
628                 OBD_FREE(oss_sec, strlen(oss_sec) + 1);
629         if (gkc)
630                 OBD_FREE(gkc, strlen(gkc) + 1);
631
632         return err;
633 } /* ll_read_super */
634
635 static int lustre_process_log(struct lustre_mount_data *lmd, char *profile,
636                               struct config_llog_instance *cfg, int allow_recov)
637 {
638         struct lustre_cfg *lcfg = NULL;
639         struct lustre_cfg_bufs bufs;
640         struct portals_cfg pcfg;
641         char *peer = "MDS_PEER_UUID";
642         struct obd_device *obd;
643         struct lustre_handle md_conn = {0, };
644         struct obd_export *exp;
645         char *name = "mdc_dev";
646         class_uuid_t uuid;
647         struct obd_uuid lmv_uuid;
648         struct llog_ctxt *ctxt;
649         int rc = 0, err = 0;
650         ENTRY;
651
652         if (lmd_bad_magic(lmd))
653                 RETURN(-EINVAL);
654
655         generate_random_uuid(uuid);
656         class_uuid_unparse(uuid, &lmv_uuid);
657
658         if (lmd->lmd_local_nid) {
659                 PCFG_INIT(pcfg, NAL_CMD_REGISTER_MYNID);
660                 pcfg.pcfg_nal = lmd->lmd_nal;
661                 pcfg.pcfg_nid = lmd->lmd_local_nid;
662                 rc = libcfs_nal_cmd(&pcfg);
663                 if (rc < 0)
664                         GOTO(out, rc);
665         }
666
667         if (lmd->lmd_nal == SOCKNAL ||
668             lmd->lmd_nal == OPENIBNAL ||
669             lmd->lmd_nal == IIBNAL ||
670             lmd->lmd_nal == VIBNAL ||
671             lmd->lmd_nal == RANAL) {
672                 PCFG_INIT(pcfg, NAL_CMD_ADD_PEER);
673                 pcfg.pcfg_nal     = lmd->lmd_nal;
674                 pcfg.pcfg_nid     = lmd->lmd_server_nid;
675                 pcfg.pcfg_id      = lmd->lmd_server_ipaddr;
676                 pcfg.pcfg_misc    = lmd->lmd_port;
677                 rc = libcfs_nal_cmd(&pcfg);
678                 if (rc < 0)
679                         GOTO(out, rc);
680         }
681         lustre_cfg_bufs_reset(&bufs, name);
682         lustre_cfg_bufs_set_string(&bufs, 1, peer);
683
684         lcfg = lustre_cfg_new(LCFG_ADD_UUID, &bufs);
685         lcfg->lcfg_nal = lmd->lmd_nal;
686         lcfg->lcfg_nid = lmd->lmd_server_nid;
687         LASSERT(lcfg->lcfg_nal);
688         LASSERT(lcfg->lcfg_nid);
689         err = class_process_config(lcfg);
690         lustre_cfg_free(lcfg);
691         if (err < 0)
692                 GOTO(out_del_conn, err);
693
694         lustre_cfg_bufs_reset(&bufs, name);
695         lustre_cfg_bufs_set_string(&bufs, 1, OBD_MDC_DEVICENAME);
696         lustre_cfg_bufs_set_string(&bufs, 2, (char *)lmv_uuid.uuid);
697
698         lcfg = lustre_cfg_new(LCFG_ATTACH, &bufs);
699         err = class_process_config(lcfg);
700         lustre_cfg_free(lcfg);
701         if (err < 0)
702                 GOTO(out_del_uuid, err);
703
704         lustre_cfg_bufs_reset(&bufs, name);
705         lustre_cfg_bufs_set_string(&bufs, 1, lmd->lmd_mds);
706         lustre_cfg_bufs_set_string(&bufs, 2, peer);
707
708         lcfg = lustre_cfg_new(LCFG_SETUP, &bufs);
709         err = class_process_config(lcfg);
710         lustre_cfg_free(lcfg);
711         if (err < 0)
712                 GOTO(out_detach, err);
713
714         obd = class_name2obd(name);
715         if (obd == NULL)
716                 GOTO(out_cleanup, rc = -EINVAL);
717
718         rc = obd_set_info(obd->obd_self_export, strlen("sec"), "sec",
719                           strlen(lmd->lmd_mds_security), lmd->lmd_mds_security);
720         if (rc)
721                 GOTO(out_cleanup, rc);
722
723         if (lmd->lmd_pag) {
724                 unsigned long sec_flags = PTLRPC_SEC_FL_PAG;
725                 rc = obd_set_info(obd->obd_self_export,
726                                   strlen("sec_flags"), "sec_flags",
727                                   sizeof(sec_flags), &sec_flags);
728                 if (rc)
729                         GOTO(out_cleanup, rc);
730         }
731
732         /* Disable initial recovery on this import */
733         rc = obd_set_info(obd->obd_self_export,
734                           strlen("initial_recov"), "initial_recov",
735                           sizeof(allow_recov), &allow_recov);
736         if (rc)
737                 GOTO(out_cleanup, rc);
738
739         rc = obd_connect(&md_conn, obd, &lmv_uuid, NULL, OBD_OPT_REAL_CLIENT);
740         if (rc) {
741                 CERROR("cannot connect to %s: rc = %d\n", lmd->lmd_mds, rc);
742                 GOTO(out_cleanup, rc);
743         }
744
745         exp = class_conn2export(&md_conn);
746
747         ctxt = llog_get_context(&exp->exp_obd->obd_llogs,LLOG_CONFIG_REPL_CTXT);
748         rc = class_config_process_llog(ctxt, profile, cfg);
749         if (rc)
750                 CERROR("class_config_process_llog failed: rc = %d\n", rc);
751
752         err = obd_disconnect(exp, 0);
753         
754         EXIT;
755 out_cleanup:
756         lustre_cfg_bufs_reset(&bufs, name);
757         lcfg = lustre_cfg_new(LCFG_CLEANUP, &bufs);
758         err = class_process_config(lcfg);
759         lustre_cfg_free(lcfg);
760         if (err < 0)
761                 GOTO(out, err);
762 out_detach:
763         lustre_cfg_bufs_reset(&bufs, name);
764         lcfg = lustre_cfg_new(LCFG_DETACH, &bufs);
765         err = class_process_config(lcfg);
766         lustre_cfg_free(lcfg);
767         if (err < 0)
768                 GOTO(out, err);
769
770 out_del_uuid:
771         lustre_cfg_bufs_reset(&bufs, name);
772         lustre_cfg_bufs_set_string(&bufs, 1, peer);
773         lcfg = lustre_cfg_new(LCFG_DEL_UUID, &bufs);
774         err = class_process_config(lcfg);
775         lustre_cfg_free(lcfg);
776
777 out_del_conn:
778         if (lmd->lmd_nal == SOCKNAL ||
779             lmd->lmd_nal == OPENIBNAL ||
780             lmd->lmd_nal == IIBNAL ||
781             lmd->lmd_nal == VIBNAL ||
782             lmd->lmd_nal == RANAL) {
783                 int err2;
784
785                 PCFG_INIT(pcfg, NAL_CMD_DEL_PEER);
786                 pcfg.pcfg_nal     = lmd->lmd_nal;
787                 pcfg.pcfg_nid     = lmd->lmd_server_nid;
788                 pcfg.pcfg_flags   = 1;          /* single_share */
789                 err2 = libcfs_nal_cmd(&pcfg);
790                 if (err2 && !err)
791                         err = err2;
792                 if (err < 0)
793                         GOTO(out, err);
794         }
795 out:
796         if (rc == 0)
797                 rc = err;
798
799         return rc;
800 }
801
802 static void lustre_manual_cleanup(struct ll_sb_info *sbi)
803 {
804         struct lustre_cfg *lcfg;
805         struct lustre_cfg_bufs bufs;
806         struct obd_device *obd;
807         int next = 0;
808
809         while ((obd = class_devices_in_group(&sbi->ll_sb_uuid, &next)) != NULL) {
810                 int err;
811
812                 lustre_cfg_bufs_reset(&bufs, obd->obd_name);
813                 lcfg = lustre_cfg_new(LCFG_CLEANUP, &bufs);
814                 err = class_process_config(lcfg);
815                 if (err) {
816                         CERROR("cleanup failed: %s\n", obd->obd_name);
817                         //continue;
818                 }
819                 
820                 lcfg->lcfg_command = LCFG_DETACH;
821                 err = class_process_config(lcfg);
822                 lustre_cfg_free(lcfg);
823                 if (err) {
824                         CERROR("detach failed: %s\n", obd->obd_name);
825                         //continue;
826                 }
827         }
828
829         if (sbi->ll_lmd != NULL)
830                 class_del_profile(sbi->ll_lmd->lmd_profile);
831 }
832
833 static int lustre_process_profile(struct super_block *sb, 
834                                   struct lustre_mount_data *lmd,
835                                   char **lov, char **lmv, char **gkc)  
836 {
837         struct ll_sb_info *sbi = ll_s2sbi(sb);
838         struct config_llog_instance cfg;
839         struct lustre_profile *lprof;
840         int len, err = 0;
841         ENTRY;
842
843         if (!lmd->lmd_profile)
844                 RETURN(0);
845  
846         if (lmd->lmd_mds[0] == '\0') {
847                 CERROR("no mds name\n");
848                 GOTO(out, err = -EINVAL);
849         }
850         lmd->lmd_mds_security[sizeof(lmd->lmd_mds_security) - 1] = 0;
851         lmd->lmd_oss_security[sizeof(lmd->lmd_oss_security) - 1] = 0;
852
853         OBD_ALLOC(sbi->ll_lmd, sizeof(*sbi->ll_lmd));
854         if (sbi->ll_lmd == NULL)
855                 GOTO(out, err = -ENOMEM);
856         memcpy(sbi->ll_lmd, lmd, sizeof(*lmd));
857
858         /* generate a string unique to this super, let's try the address of the
859          * super itself. */
860         len = (sizeof(sb) * 2) + 1;
861         OBD_ALLOC(sbi->ll_instance, len);
862         if (sbi->ll_instance == NULL)
863                 GOTO(out, err = -ENOMEM);
864         sprintf(sbi->ll_instance, "%p", sb);
865
866         cfg.cfg_instance = sbi->ll_instance;
867         cfg.cfg_uuid = sbi->ll_sb_uuid;
868         cfg.cfg_local_nid = lmd->lmd_local_nid;
869         err = lustre_process_log(lmd, lmd->lmd_profile, &cfg, 0);
870         if (err < 0) {
871                 CERROR("Unable to process log: %s\n", lmd->lmd_profile);
872                 GOTO(out, err);
873         }
874
875         lprof = class_get_profile(lmd->lmd_profile);
876         if (lprof == NULL) {
877                 CERROR("No profile found: %s\n", lmd->lmd_profile);
878                 GOTO(out, err = -EINVAL);
879         }
880
881         OBD_ALLOC(*lov, strlen(lprof->lp_lov) +
882                   strlen(sbi->ll_instance) + 2);
883         if (*lov == NULL)
884                 GOTO(out, err = -ENOMEM);
885         
886         sprintf(*lov, "%s-%s", lprof->lp_lov, sbi->ll_instance);
887
888         OBD_ALLOC(*lmv, strlen(lprof->lp_lmv) +
889                   strlen(sbi->ll_instance) + 2);
890         if (*lmv == NULL)
891                 GOTO(out_free_lov, err = -ENOMEM);
892
893         sprintf(*lmv, "%s-%s", lprof->lp_lmv, sbi->ll_instance);
894
895         if (lprof->lp_gkc) {
896                OBD_ALLOC(*gkc, strlen(lprof->lp_gkc) +
897                          strlen(sbi->ll_instance) + 2);
898                if (*gkc == NULL)
899                        GOTO(out_free_lmv, err = -ENOMEM);
900                
901                sprintf(*gkc, "%s-%s", lprof->lp_gkc, sbi->ll_instance); 
902         }
903         
904         RETURN(err);
905 out_free_lmv:
906         OBD_FREE(*lmv, strlen(lprof->lp_lmv) +
907                  strlen(sbi->ll_instance) + 2);
908 out_free_lov:
909         OBD_FREE(*lov, strlen(lprof->lp_lov) +
910                  strlen(sbi->ll_instance) + 2);
911 out: 
912         return err; 
913 }
914
915 static int lustre_clean_profile(struct ll_sb_info *sbi, int force_umount)
916 {
917         struct lustre_mount_data *lmd = sbi->ll_lmd;
918         struct config_llog_instance cfg;
919         char *cl_prof;
920         int len, err = 0;
921         ENTRY; 
922  
923         if (!lmd)
924                 RETURN(err);
925
926         len = strlen(sbi->ll_lmd->lmd_profile) + sizeof("-clean") + 1;
927         
928         if (force_umount) {
929                 CERROR("force umount, doing manual cleanup\n");
930                 lustre_manual_cleanup(sbi);
931                 GOTO(free_lmd, 0);
932                 
933         }
934         if (sbi->ll_instance != NULL) {
935                 cfg.cfg_instance = sbi->ll_instance;
936                 cfg.cfg_uuid = sbi->ll_sb_uuid;
937
938                 OBD_ALLOC(cl_prof, len);
939                 if (!cl_prof) {
940                         CERROR("can't allocate memory, "
941                                "skipping processing cleanup profile.\n");
942                         GOTO(free_lmd, err = -ENOMEM);
943                 }
944                 
945                 sprintf(cl_prof, "%s-clean", lmd->lmd_profile);
946                 err = lustre_process_log(lmd, cl_prof, &cfg, 0);
947                 if (err < 0) {
948                         CERROR("Unable to process log: %s\n", cl_prof);
949                         lustre_manual_cleanup(sbi);
950                 }
951                 OBD_FREE(cl_prof, len);
952         }
953         EXIT;
954 free_lmd:
955         if (sbi->ll_instance)
956                 OBD_FREE(sbi->ll_instance, strlen(sbi->ll_instance) + 1);
957         OBD_FREE(sbi->ll_lmd, sizeof(*sbi->ll_lmd));
958         return err;
959 }
960
961 int lustre_fill_super(struct super_block *sb, void *data, int silent)
962 {
963         struct lustre_mount_data * lmd = data;
964         char *lov = NULL, *lmv = NULL, *gkc = NULL;
965         struct ll_sb_info *sbi;
966         int err;
967         ENTRY;
968
969         CDEBUG(D_VFSTRACE, "VFS Op: sb %p\n", sb);
970         if (lmd_bad_magic(lmd))
971                 RETURN(-EINVAL);
972
973         sbi = lustre_init_sbi(sb);
974         if (!sbi)
975                 RETURN(-ENOMEM);
976
977         sbi->ll_flags |= LL_SBI_READAHEAD;
978
979         err = lustre_process_profile(sb, lmd, &lov, &lmv, &gkc);
980         if (err) {
981                 CERROR("Can not process the profile err %d \n", err);
982                 GOTO(out_free, err);
983         }
984         if (!lov || !lmv) {
985                 CERROR("no osc %p or no mdc %p \n", lov, lmv);
986                 GOTO(out_free, err = -EINVAL);
987         }
988
989         err = lustre_common_fill_super(sb, lmv, lov, gkc, lmd->lmd_async,
990                                        lmd->lmd_mds_security,
991                                        lmd->lmd_oss_security,
992                                        &lmd->lmd_nllu, lmd->lmd_pag,
993                                        &lmd->lmd_remote_flag);
994
995         if (err)
996                 GOTO(out_free, err);
997
998         EXIT;
999 out_dev:
1000         if (lmv)
1001                 OBD_FREE(lmv, strlen(lmv) + 1);
1002         if (lov)
1003                 OBD_FREE(lov, strlen(lov) + 1);
1004         if (gkc)
1005                 OBD_FREE(gkc, strlen(gkc) + 1);
1006         
1007         return err;
1008 out_free:
1009         lustre_clean_profile(sbi, 0);
1010         lustre_free_sbi(sb);
1011         goto out_dev;
1012
1013 } /* lustre_fill_super */
1014
1015 void lustre_put_super(struct super_block *sb)
1016 {
1017         struct obd_device *obd;
1018         struct ll_sb_info *sbi = ll_s2sbi(sb);
1019         int force_umount = 0;
1020         ENTRY;
1021
1022         CDEBUG(D_VFSTRACE, "VFS Op: sb %p\n", sb);
1023         obd = class_exp2obd(sbi->ll_md_exp);
1024         if (obd)
1025                 force_umount = obd->obd_no_recov;
1026         obd = NULL;
1027
1028         lustre_common_put_super(sb);
1029         lustre_clean_profile(sbi, force_umount);
1030         lustre_free_sbi(sb);
1031
1032         EXIT;
1033 } /* lustre_put_super */
1034
1035 int ll_process_config_update(struct ll_sb_info *sbi, int clean)
1036 {
1037         struct lustre_mount_data *lmd = sbi->ll_lmd;
1038         char *profile = lmd->lmd_profile, *name = NULL;
1039         struct config_llog_instance cfg;
1040         int rc, namelen =  0, version;
1041         struct llog_ctxt *ctxt;
1042         ENTRY;
1043
1044         if (profile == NULL)
1045                 RETURN(0);
1046         if (lmd == NULL) {
1047                 CERROR("Client not mounted with zero-conf; cannot "
1048                        "process update log.\n");
1049                 RETURN(0);
1050         }
1051
1052         cfg.cfg_instance = sbi->ll_instance;
1053         cfg.cfg_uuid = sbi->ll_sb_uuid;
1054         cfg.cfg_local_nid = lmd->lmd_local_nid;
1055
1056         namelen = strlen(profile) + 20; /* -clean-######### */
1057         OBD_ALLOC(name, namelen);
1058         if (name == NULL)
1059                 RETURN(-ENOMEM);
1060
1061         if (clean) {
1062                 version = sbi->ll_config_version - 1;
1063                 sprintf(name, "%s-clean-%d", profile, version);
1064         } else {
1065                 version = sbi->ll_config_version + 1;
1066                 sprintf(name, "%s-%d", profile, version);
1067         }
1068
1069         CWARN("Applying configuration log %s\n", name);
1070
1071         ctxt = llog_get_context(&sbi->ll_md_exp->exp_obd->obd_llogs,
1072                                 LLOG_CONFIG_REPL_CTXT);
1073         rc = class_config_process_llog(ctxt, name, &cfg);
1074         if (rc == 0)
1075                 sbi->ll_config_version = version;
1076         CWARN("Finished applying configuration log %s: %d\n", name, rc);
1077
1078         if (rc == 0 && clean == 0) {
1079                 struct lov_desc desc;
1080                 __u32 valsize;
1081                 int rc = 0;
1082                 
1083                 valsize = sizeof(desc);
1084                 rc = obd_get_info(sbi->ll_dt_exp, strlen("lovdesc") + 1,
1085                                   "lovdesc", &valsize, &desc);
1086
1087                 rc = obd_init_ea_size(sbi->ll_md_exp,
1088                                       obd_size_diskmd(sbi->ll_dt_exp, NULL),
1089                                       (desc.ld_tgt_count *
1090                                        sizeof(struct llog_cookie)));
1091         }
1092         OBD_FREE(name, namelen);
1093         RETURN(rc);
1094 }
1095
1096 struct inode *ll_inode_from_lock(struct ldlm_lock *lock)
1097 {
1098         struct inode *inode = NULL;
1099
1100         /* NOTE: we depend on atomic igrab() -bzzz */
1101         lock_res_and_lock(lock);
1102         if (lock->l_ast_data) {
1103                 struct ll_inode_info *lli = ll_i2info(lock->l_ast_data);
1104                 if (lli->lli_inode_magic == LLI_INODE_MAGIC) {
1105                         inode = igrab(lock->l_ast_data);
1106                 } else {
1107                         struct timeval now;
1108                         do_gettimeofday(&now);
1109                         inode = lock->l_ast_data;
1110                         LDLM_ERROR(lock, "granted at %lu.%lu, now %lu.%lu",
1111                                    lock->l_enqueued_time.tv_sec,
1112                                    lock->l_enqueued_time.tv_usec,
1113                                    now.tv_sec, now.tv_usec);
1114                         CDEBUG(inode->i_state & I_FREEING ? D_INFO : D_WARNING,
1115                                "l_ast_data %p is bogus: magic %0x8\n",
1116                                lock->l_ast_data, lli->lli_inode_magic);
1117                         CDEBUG(D_ERROR, "i_state = 0x%lx, l_ast_data %p is bogus: magic %0x8\n",
1118                                inode->i_state, lock->l_ast_data, lli->lli_inode_magic);
1119                         inode = NULL;
1120                         unlock_res_and_lock(lock);
1121                         LBUG();
1122                 }
1123         }
1124         unlock_res_and_lock(lock);
1125         return inode;
1126 }
1127
1128 int null_if_equal(struct ldlm_lock *lock, void *data)
1129 {
1130         if (data == lock->l_ast_data) {
1131                 lock->l_ast_data = NULL;
1132
1133                 if (lock->l_req_mode != lock->l_granted_mode)
1134                         LDLM_ERROR(lock,"clearing inode with ungranted lock\n");
1135         }
1136
1137         return LDLM_ITER_CONTINUE;
1138 }
1139
1140 static void remote_acl_free(struct remote_acl *racl);
1141
1142 void ll_clear_inode(struct inode *inode)
1143 {
1144         struct lustre_id id;
1145         struct ll_inode_info *lli = ll_i2info(inode);
1146         struct ll_sb_info *sbi = ll_i2sbi(inode);
1147         ENTRY;
1148
1149         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p)\n", inode->i_ino,
1150                inode->i_generation, inode);
1151
1152         LASSERT(ll_is_inode_dirty(inode) == 0);
1153         ll_inode2id(&id, inode);
1154         
1155         clear_bit(LLI_F_HAVE_MDS_SIZE_LOCK, &(ll_i2info(inode)->lli_flags));
1156         md_change_cbdata(sbi->ll_md_exp, &id, null_if_equal, inode);
1157
1158         LASSERT(!lli->lli_open_fd_write_count);
1159         LASSERT(!lli->lli_open_fd_read_count);
1160         LASSERT(!lli->lli_open_fd_exec_count);
1161         if (lli->lli_mds_write_och)
1162                 ll_md_real_close(sbi->ll_md_exp, inode, FMODE_WRITE);
1163         if (lli->lli_mds_exec_och)
1164                 ll_md_real_close(sbi->ll_md_exp, inode, FMODE_EXEC);
1165         if (lli->lli_mds_read_och)
1166                 ll_md_real_close(sbi->ll_md_exp, inode, FMODE_READ);
1167         if (lli->lli_smd)
1168                 obd_change_cbdata(sbi->ll_dt_exp, lli->lli_smd,
1169                                   null_if_equal, inode);
1170
1171         if (lli->lli_smd) {
1172                 obd_free_memmd(sbi->ll_dt_exp, &lli->lli_smd);
1173                 lli->lli_smd = NULL;
1174         }
1175
1176         if (lli->lli_mea) {
1177                 obd_free_memmd(sbi->ll_md_exp,
1178                                (struct lov_stripe_md **) &lli->lli_mea);
1179                 lli->lli_mea = NULL;
1180         }
1181         ll_crypto_destroy_inode_key(inode);
1182         if (lli->lli_symlink_name) {
1183                 OBD_FREE(lli->lli_symlink_name,
1184                          strlen(lli->lli_symlink_name) + 1);
1185                 lli->lli_symlink_name = NULL;
1186         }
1187
1188         if (lli->lli_posix_acl) {
1189                 LASSERT(lli->lli_remote_acl == NULL);
1190                 posix_acl_release(lli->lli_posix_acl);
1191                 lli->lli_posix_acl = NULL;
1192         }
1193
1194         if (lli->lli_remote_acl) {
1195                 LASSERT(lli->lli_posix_acl == NULL);
1196                 remote_acl_free(lli->lli_remote_acl);
1197                 lli->lli_remote_acl = NULL;
1198         }
1199
1200         if (lli->lli_trunc_capa) {
1201                 OBD_FREE(lli->lli_trunc_capa, sizeof(struct lustre_capa));
1202                 lli->lli_trunc_capa = NULL;
1203         }
1204
1205         lli->lli_inode_magic = LLI_INODE_DEAD;
1206         EXIT;
1207 }
1208
1209 /* If this inode has objects allocated to it (lsm != NULL), then the OST
1210  * object(s) determine the file size and mtime.  Otherwise, the MDS will
1211  * keep these values until such a time that objects are allocated for it.
1212  * We do the MDS operations first, as it is checking permissions for us.
1213  * We don't to the MDS RPC if there is nothing that we want to store there,
1214  * otherwise there is no harm in updating mtime/atime on the MDS if we are
1215  * going to do an RPC anyways.
1216  *
1217  * If we are doing a truncate, we will send the mtime and ctime updates
1218  * to the OST with the punch RPC, otherwise we do an explicit setattr RPC.
1219  * I don't believe it is possible to get e.g. ATTR_MTIME_SET and ATTR_SIZE
1220  * at the same time.
1221  */
1222 int ll_setattr_raw(struct inode *inode, struct iattr *attr)
1223 {
1224         struct lov_stripe_md *lsm = ll_i2info(inode)->lli_smd;
1225         struct ll_inode_info *lli = ll_i2info(inode);
1226         struct ll_sb_info *sbi = ll_i2sbi(inode);
1227         struct ptlrpc_request *request = NULL;
1228         struct mdc_op_data *op_data;
1229         struct lustre_capa *trunc_capa = NULL;
1230         int ia_valid = attr->ia_valid;
1231         int err, rc = 0;
1232         ENTRY;
1233
1234         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu\n", inode->i_ino);
1235         lprocfs_counter_incr(ll_i2sbi(inode)->ll_stats, LPROC_LL_SETATTR);
1236
1237         if (ia_valid & ATTR_SIZE) {
1238                 if (attr->ia_size > ll_file_maxbytes(inode)) {
1239                         CDEBUG(D_INODE, "file too large %llu > "LPU64"\n",
1240                                attr->ia_size, ll_file_maxbytes(inode));
1241                         RETURN(-EFBIG);
1242                 }
1243
1244                 attr->ia_valid |= ATTR_MTIME | ATTR_CTIME;
1245         }
1246
1247         /* POSIX: check before ATTR_*TIME_SET set (from inode_change_ok) */
1248         if (ia_valid & (ATTR_MTIME_SET | ATTR_ATIME_SET)) {
1249                 if (current->fsuid != inode->i_uid && !capable(CAP_FOWNER))
1250                         RETURN(-EPERM);
1251         }
1252
1253         /* We mark all of the fields "set" so MDS/OST does not re-set them */
1254         if (attr->ia_valid & ATTR_CTIME) {
1255                 attr->ia_ctime = CURRENT_TIME;
1256                 attr->ia_valid |= ATTR_CTIME_SET;
1257         }
1258         if (!(ia_valid & ATTR_ATIME_SET) && (attr->ia_valid & ATTR_ATIME)) {
1259                 attr->ia_atime = CURRENT_TIME;
1260                 attr->ia_valid |= ATTR_ATIME_SET;
1261         }
1262         if (!(ia_valid & ATTR_MTIME_SET) && (attr->ia_valid & ATTR_MTIME)) {
1263                 attr->ia_mtime = CURRENT_TIME;
1264                 attr->ia_valid |= ATTR_MTIME_SET;
1265         }
1266
1267         if (attr->ia_valid & (ATTR_MTIME | ATTR_CTIME))
1268                 CDEBUG(D_INODE, "setting mtime %lu, ctime %lu, now = %lu\n",
1269                        LTIME_S(attr->ia_mtime), LTIME_S(attr->ia_ctime),
1270                        LTIME_S(CURRENT_TIME));
1271
1272         /* If only OST attributes being set on objects, don't do MDS RPC.
1273          * In that case, we need to check permissions and update the local
1274          * inode ourselves so we can call obdo_from_inode() always. */
1275         if (ia_valid & (lsm ? ~(ATTR_SIZE | ATTR_FROM_OPEN /*| ATTR_RAW*/) : ~0)) {
1276                 struct lustre_md md;
1277                 void *key = NULL;
1278                 int  key_size = 0; 
1279
1280                 OBD_ALLOC(op_data, sizeof(*op_data));
1281                 if (op_data == NULL)
1282                         RETURN(-ENOMEM);
1283                 ll_inode2mdc_data(op_data, inode, (OBD_MD_FLID | OBD_MD_MEA));
1284
1285                 if (ia_valid & (ATTR_UID | ATTR_GID)) {
1286                         rc = ll_crypto_get_mac(inode, attr, NULL, 0, &key, 
1287                                                &key_size);
1288                 }
1289                 rc = md_setattr(sbi->ll_md_exp, op_data,
1290                                 attr, key, key_size, NULL, 0, NULL, 
1291                                 0, &request);
1292                 OBD_FREE(op_data, sizeof(*op_data));
1293                 
1294                 if (key && key_size) 
1295                         OBD_FREE(key, key_size);
1296                 if (rc) {
1297                         ptlrpc_req_finished(request);
1298                         if (rc != -EPERM && rc != -EACCES)
1299                                 CERROR("md_setattr fails: rc = %d\n", rc);
1300                         RETURN(rc);
1301                 }
1302                 rc = mdc_req2lustre_md(sbi->ll_md_exp, request, 0, 
1303                                        sbi->ll_dt_exp, &md);
1304                 if (rc) {
1305                         ptlrpc_req_finished(request);
1306                         RETURN(rc);
1307                 }
1308
1309                 if (attr->ia_valid & ATTR_SIZE) {
1310                         /* XXX: hack for truncate capa */
1311                         rc = mdc_req2lustre_capa(request, 0, &trunc_capa);
1312                         if (rc) {
1313                                 ptlrpc_req_finished(request);
1314                                 RETURN(rc);
1315                         }
1316
1317                         spin_lock(&lli->lli_lock);
1318                         if (trunc_capa) {
1319                                 if (lli->lli_trunc_capa)
1320                                         OBD_FREE(lli->lli_trunc_capa,
1321                                                  sizeof(*trunc_capa));
1322                                 lli->lli_trunc_capa = trunc_capa;
1323                         }
1324                         spin_unlock(&lli->lli_lock);
1325                 }
1326
1327                 /* We call inode_setattr to adjust timestamps, but we first
1328                  * clear ATTR_SIZE to avoid invoking vmtruncate.
1329                  *
1330                  * NB: ATTR_SIZE will only be set at this point if the size
1331                  * resides on the MDS, ie, this file has no objects. */
1332                 attr->ia_valid &= ~ATTR_SIZE;
1333
1334                 /* 
1335                  * assigning inode_setattr() to @err to disable warning that
1336                  * function's result should be checked by by caller. error is
1337                  * impossible here, as vmtruncate() control path is disabled.
1338                  */
1339                 err = inode_setattr(inode, attr);
1340                 ll_update_inode(inode, &md);
1341                 ptlrpc_req_finished(request);
1342
1343                 if (!lsm || !S_ISREG(inode->i_mode)) {
1344                         CDEBUG(D_INODE, "no lsm: not setting attrs on OST\n");
1345                         RETURN(0);
1346                 }
1347         } else {
1348                 /* The OST doesn't check permissions, but the alternative is
1349                  * a gratuitous RPC to the MDS.  We already rely on the client
1350                  * to do read/write/truncate permission checks, so is mtime OK?
1351                  */
1352                 if (ia_valid & (ATTR_MTIME | ATTR_ATIME)) {
1353                         /* from sys_utime() */
1354                         if (!(ia_valid & (ATTR_MTIME_SET | ATTR_ATIME_SET))) {
1355                                 if (current->fsuid != inode->i_uid &&
1356                                     (rc = ll_permission(inode, MAY_WRITE, NULL)) != 0)
1357                                         RETURN(rc);
1358                         } else {
1359                                 /* from inode_change_ok() */
1360                                 if (current->fsuid != inode->i_uid &&
1361                                     !capable(CAP_FOWNER))
1362                                         RETURN(-EPERM);
1363                         }
1364                 }
1365
1366                 if (lsm)
1367                         attr->ia_valid &= ~ATTR_SIZE;
1368
1369                 /* won't invoke vmtruncate, as we already cleared ATTR_SIZE */
1370                 err = inode_setattr(inode, attr);
1371                 /* 
1372                  * assigning inode_setattr() to @err to disable warning that
1373                  * function's result should be checked by by caller. error is
1374                  * impossible here, as vmtruncate() control path is disabled.
1375                  */
1376         }
1377
1378         /* We really need to get our PW lock before we change inode->i_size.
1379          * If we don't we can race with other i_size updaters on our node, like
1380          * ll_file_read.  We can also race with i_size propogation to other
1381          * nodes through dirtying and writeback of final cached pages.  This
1382          * last one is especially bad for racing o_append users on other
1383          * nodes. */
1384         if (ia_valid & ATTR_SIZE) {
1385                 ldlm_policy_data_t policy = { .l_extent = {attr->ia_size,
1386                                                            OBD_OBJECT_EOF } };
1387                 struct lustre_handle lockh = { 0 };
1388                 int err, ast_flags = 0;
1389                 /* XXX when we fix the AST intents to pass the discard-range
1390                  * XXX extent, make ast_flags always LDLM_AST_DISCARD_DATA
1391                  * XXX here. */
1392                 if (attr->ia_size == 0)
1393                         ast_flags = LDLM_AST_DISCARD_DATA;
1394
1395                 rc = ll_extent_lock(NULL, inode, lsm, LCK_PW, &policy, &lockh,
1396                                     ast_flags, &ll_i2sbi(inode)->ll_seek_stime);
1397
1398                 if (rc != 0)
1399                         RETURN(rc);
1400
1401                 down(&lli->lli_size_sem);
1402                 lli->lli_size_pid = current->pid;
1403                 rc = vmtruncate(inode, attr->ia_size);
1404                 if (rc != 0) {
1405                         LASSERT(atomic_read(&lli->lli_size_sem.count) <= 0);
1406                         lli->lli_size_pid = 0;
1407                         up(&lli->lli_size_sem);
1408                 }
1409
1410                 err = ll_extent_unlock(NULL, inode, lsm, LCK_PW, &lockh);
1411                 if (err) {
1412                         CERROR("ll_extent_unlock failed: %d\n", err);
1413                         if (!rc)
1414                                 rc = err;
1415                 }
1416         } else if (ia_valid & (ATTR_MTIME | ATTR_MTIME_SET | ATTR_UID | ATTR_GID)) {
1417                 struct obdo *oa = NULL;
1418
1419                 CDEBUG(D_INODE, "set mtime on OST inode %lu to %lu\n",
1420                        inode->i_ino, LTIME_S(attr->ia_mtime));
1421
1422                 oa = obdo_alloc();
1423                 if (oa == NULL)
1424                         RETURN(-ENOMEM);
1425
1426                 oa->o_id = lsm->lsm_object_id;
1427                 oa->o_gr = lsm->lsm_object_gr;
1428                 oa->o_valid = OBD_MD_FLID | OBD_MD_FLGROUP;
1429
1430                 /* adding uid and gid, needed for quota */
1431                 if (ia_valid & ATTR_UID) {
1432                         oa->o_uid = inode->i_uid;
1433                         oa->o_valid |= OBD_MD_FLUID;
1434                 }
1435
1436                 if (ia_valid & ATTR_GID) {
1437                         oa->o_gid = inode->i_gid;
1438                         oa->o_valid |= OBD_MD_FLGID;
1439                 }
1440
1441                 *(obdo_id(oa)) = lli->lli_id;
1442                 oa->o_valid |= OBD_MD_FLIFID;
1443
1444                 obdo_from_inode(oa, inode, OBD_MD_FLTYPE | OBD_MD_FLATIME |
1445                                 OBD_MD_FLMTIME | OBD_MD_FLCTIME);
1446                 rc = obd_setattr(sbi->ll_dt_exp, oa, lsm, NULL);
1447                 obdo_free(oa);
1448                 if (rc)
1449                         CERROR("obd_setattr fails: rc = %d\n", rc);
1450         }
1451
1452         RETURN(rc);
1453 }
1454
1455 int ll_setattr(struct dentry *de, struct iattr *attr)
1456 {
1457         LASSERT(de->d_inode);
1458         return ll_setattr_raw(de->d_inode, attr);
1459 }
1460
1461 int ll_statfs_internal(struct super_block *sb, struct obd_statfs *osfs,
1462                        unsigned long max_age)
1463 {
1464         struct ll_sb_info *sbi = ll_s2sbi(sb);
1465         struct obd_statfs obd_osfs;
1466         int rc;
1467         ENTRY;
1468
1469         rc = obd_statfs(class_exp2obd(sbi->ll_md_exp), osfs, max_age);
1470         if (rc) {
1471                 CERROR("obd_statfs fails: rc = %d\n", rc);
1472                 RETURN(rc);
1473         }
1474
1475         osfs->os_type = sb->s_magic;
1476
1477         CDEBUG(D_SUPER, "MDC blocks "LPU64"/"LPU64" objects "LPU64"/"LPU64"\n",
1478                osfs->os_bavail, osfs->os_blocks, osfs->os_ffree,osfs->os_files);
1479
1480         rc = obd_statfs(class_exp2obd(sbi->ll_dt_exp), &obd_osfs, max_age);
1481         if (rc) {
1482                 CERROR("obd_statfs fails: rc = %d\n", rc);
1483                 RETURN(rc);
1484         }
1485
1486         CDEBUG(D_SUPER, "OSC blocks "LPU64"/"LPU64" objects "LPU64"/"LPU64"\n",
1487                obd_osfs.os_bavail, obd_osfs.os_blocks, obd_osfs.os_ffree,
1488                obd_osfs.os_files);
1489
1490         osfs->os_blocks = obd_osfs.os_blocks;
1491         osfs->os_bfree = obd_osfs.os_bfree;
1492         osfs->os_bavail = obd_osfs.os_bavail;
1493
1494         /* If we don't have as many objects free on the OST as inodes
1495          * on the MDS, we reduce the total number of inodes to
1496          * compensate, so that the "inodes in use" number is correct.
1497          */
1498         if (obd_osfs.os_ffree < osfs->os_ffree) {
1499                 osfs->os_files = (osfs->os_files - osfs->os_ffree) +
1500                         obd_osfs.os_ffree;
1501                 osfs->os_ffree = obd_osfs.os_ffree;
1502         }
1503
1504         RETURN(rc);
1505 }
1506
1507 int ll_statfs(struct super_block *sb, struct kstatfs *sfs)
1508 {
1509         struct obd_statfs osfs;
1510         int rc;
1511
1512         CDEBUG(D_VFSTRACE, "VFS Op: superblock %p\n", sb);
1513         lprocfs_counter_incr(ll_s2sbi(sb)->ll_stats, LPROC_LL_STAFS);
1514
1515         /* For now we will always get up-to-date statfs values, but in the
1516          * future we may allow some amount of caching on the client (e.g.
1517          * from QOS or lprocfs updates). */
1518         rc = ll_statfs_internal(sb, &osfs, jiffies - 1);
1519         if (rc)
1520                 return rc;
1521
1522         statfs_unpack(sfs, &osfs);
1523
1524         if (sizeof(sfs->f_blocks) == 4) {
1525                 while (osfs.os_blocks > ~0UL) {
1526                         sfs->f_bsize <<= 1;
1527
1528                         osfs.os_blocks >>= 1;
1529                         osfs.os_bfree >>= 1;
1530                         osfs.os_bavail >>= 1;
1531                 }
1532         }
1533
1534         sfs->f_blocks = osfs.os_blocks;
1535         sfs->f_bfree = osfs.os_bfree;
1536         sfs->f_bavail = osfs.os_bavail;
1537
1538         return 0;
1539 }
1540
1541
1542 /********************************
1543  * remote acl                   *
1544  ********************************/
1545
1546 static struct remote_acl *remote_acl_alloc(void)
1547 {
1548         struct remote_acl *racl;
1549         int i;
1550
1551         OBD_ALLOC(racl, sizeof(*racl));
1552         if (!racl)
1553                 return NULL;
1554
1555         spin_lock_init(&racl->ra_lock);
1556         init_MUTEX(&racl->ra_update_sem);
1557
1558         for (i = 0; i < REMOTE_ACL_HASHSIZE; i++)
1559                 INIT_LIST_HEAD(&racl->ra_perm_cache[i]);
1560
1561         return racl;
1562 }
1563
1564 /*
1565  * caller should guarantee no race here.
1566  */
1567 static void remote_perm_flush_xperms(struct lustre_remote_perm *perm)
1568 {
1569         struct remote_perm_setxid *xperm;
1570
1571         while (!list_empty(&perm->lrp_setxid_perms)) {
1572                 xperm = list_entry(perm->lrp_setxid_perms.next,
1573                                    struct remote_perm_setxid,
1574                                    list);
1575                 list_del(&xperm->list);
1576                 OBD_FREE(xperm, sizeof(*xperm));
1577         }
1578 }
1579
1580 /*
1581  * caller should guarantee no race here.
1582  */
1583 static void remote_acl_flush(struct remote_acl *racl)
1584 {
1585         struct list_head *head;
1586         struct lustre_remote_perm *perm, *tmp;
1587         int i;
1588
1589         for (i = 0; i < REMOTE_ACL_HASHSIZE; i++) {
1590                 head = &racl->ra_perm_cache[i];
1591
1592                 list_for_each_entry_safe(perm, tmp, head, lrp_list) {
1593                         remote_perm_flush_xperms(perm);
1594                         list_del(&perm->lrp_list);
1595                         OBD_FREE(perm, sizeof(*perm));
1596                 }
1597         }
1598 }
1599
1600 static void remote_acl_free(struct remote_acl *racl)
1601 {
1602         if (!racl)
1603                 return;
1604
1605         down(&racl->ra_update_sem);
1606         spin_lock(&racl->ra_lock);
1607         remote_acl_flush(racl);
1608         spin_unlock(&racl->ra_lock);
1609         up(&racl->ra_update_sem);
1610
1611         OBD_FREE(racl, sizeof(*racl));
1612 }
1613
1614 static inline int remote_acl_hashfunc(__u32 id)
1615 {
1616         return (id & (REMOTE_ACL_HASHSIZE - 1));
1617 }
1618
1619 static
1620 int __remote_acl_check(struct remote_acl *racl, unsigned int *perm)
1621 {
1622         struct list_head *head;
1623         struct lustre_remote_perm *lperm;
1624         struct remote_perm_setxid *xperm;
1625         int found = 0, rc = -ENOENT;
1626
1627         LASSERT(racl);
1628         head = &racl->ra_perm_cache[remote_acl_hashfunc(current->uid)];
1629         spin_lock(&racl->ra_lock);
1630
1631         list_for_each_entry(lperm, head, lrp_list) {
1632                 if (lperm->lrp_auth_uid == current->uid) {
1633                         found = 1;
1634                         break;
1635                 }
1636         }
1637
1638         if (!found)
1639                 goto out;
1640
1641         if (lperm->lrp_auth_uid == current->fsuid &&
1642             lperm->lrp_auth_gid == current->fsgid) {
1643                 if (lperm->lrp_valid) {
1644                         *perm = lperm->lrp_perm;
1645                         rc = 0;
1646                 }
1647                 goto out;
1648         } else if ((!lperm->lrp_setuid &&
1649                     lperm->lrp_auth_uid != current->fsuid) ||
1650                    (!lperm->lrp_setgid &&
1651                     lperm->lrp_auth_gid != current->fsgid))  {
1652                 *perm = 0;
1653                 rc = 0;
1654                 goto out;
1655         }
1656
1657         list_for_each_entry(xperm, &lperm->lrp_setxid_perms, list) {
1658                 if (xperm->uid == current->fsuid &&
1659                     xperm->gid == current->fsgid) {
1660                         *perm = xperm->perm;
1661                         rc = 0;
1662                         goto out;
1663                 }
1664         }
1665
1666 out:
1667         spin_unlock(&racl->ra_lock);
1668         return rc;
1669 }
1670
1671 static
1672 int __remote_acl_update(struct remote_acl *racl,
1673                         struct mds_remote_perm *mperm,
1674                         struct lustre_remote_perm *lperm,
1675                         struct remote_perm_setxid *xperm)
1676 {
1677         struct list_head *head;
1678         struct lustre_remote_perm *lp;
1679         struct remote_perm_setxid *xp;
1680         int found = 0, setuid = 0, setgid = 0;
1681
1682         LASSERT(racl);
1683         LASSERT(mperm);
1684         LASSERT(lperm);
1685         LASSERT(current->uid == mperm->mrp_auth_uid);
1686
1687         if (current->fsuid != mperm->mrp_auth_uid)
1688                 setuid = 1;
1689         if (current->fsgid != mperm->mrp_auth_gid)
1690                 setgid = 1;
1691
1692         head = &racl->ra_perm_cache[remote_acl_hashfunc(current->uid)];
1693         spin_lock(&racl->ra_lock);
1694
1695         list_for_each_entry(lp, head, lrp_list) {
1696                 if (lp->lrp_auth_uid == current->uid) {
1697                         found = 1;
1698                         break;
1699                 }
1700         }
1701
1702         if (found) {
1703                 OBD_FREE(lperm, sizeof(*lperm));
1704
1705                 if (!lp->lrp_valid && !setuid && !setgid) {
1706                         lp->lrp_perm = mperm->mrp_perm;
1707                         lp->lrp_valid = 1;
1708                 }
1709
1710                 /* sanity check for changes of setxid rules */
1711                 if ((lp->lrp_setuid != 0) != (mperm->mrp_allow_setuid != 0)) {
1712                         CWARN("setuid changes: %d => %d\n",
1713                               (lp->lrp_setuid != 0),
1714                               (mperm->mrp_allow_setuid != 0));
1715                         lp->lrp_setuid = (mperm->mrp_allow_setuid != 0);
1716                 }
1717
1718                 if ((lp->lrp_setgid != 0) != (mperm->mrp_allow_setgid != 0)) {
1719                         CWARN("setgid changes: %d => %d\n",
1720                               (lp->lrp_setgid != 0),
1721                               (mperm->mrp_allow_setgid != 0));
1722                         lp->lrp_setgid = (mperm->mrp_allow_setgid != 0);
1723                 }
1724
1725                 if (!lp->lrp_setuid && !lp->lrp_setgid &&
1726                     !list_empty(&lp->lrp_setxid_perms)) {
1727                         remote_perm_flush_xperms(lp);
1728                 }
1729         } else {
1730                 /* initialize lperm and linked into hashtable
1731                  */
1732                 INIT_LIST_HEAD(&lperm->lrp_setxid_perms);
1733                 lperm->lrp_auth_uid = mperm->mrp_auth_uid;
1734                 lperm->lrp_auth_gid = mperm->mrp_auth_gid;
1735                 lperm->lrp_setuid = (mperm->mrp_allow_setuid != 0);
1736                 lperm->lrp_setgid = (mperm->mrp_allow_setgid != 0);
1737                 list_add(&lperm->lrp_list, head);
1738
1739                 if (!setuid && !setgid) {
1740                         /* in this case, i'm the authenticated user,
1741                          * and mrp_perm is for me.
1742                          */
1743                         lperm->lrp_perm = mperm->mrp_perm;
1744                         lperm->lrp_valid = 1;
1745                         spin_unlock(&racl->ra_lock);
1746
1747                         if (xperm)
1748                                 OBD_FREE(xperm, sizeof(*xperm));
1749                         return 0;
1750                 }
1751
1752                 lp = lperm;
1753                 /* fall through */
1754         }
1755
1756         LASSERT(lp->lrp_setuid || lp->lrp_setgid ||
1757                 list_empty(&lp->lrp_setxid_perms));
1758
1759         /* if no xperm supplied, we are all done here */
1760         if (!xperm) {
1761                 spin_unlock(&racl->ra_lock);
1762                 return 0;
1763         }
1764
1765         /* whether we allow setuid/setgid */
1766         if ((!lp->lrp_setuid && setuid) || (!lp->lrp_setgid && setgid)) {
1767                 OBD_FREE(xperm, sizeof(*xperm));
1768                 spin_unlock(&racl->ra_lock);
1769                 return 0;
1770         }
1771
1772         /* traverse xperm list */
1773         list_for_each_entry(xp, &lp->lrp_setxid_perms, list) {
1774                 if (xp->uid == current->fsuid &&
1775                     xp->gid == current->fsgid) {
1776                         if (xp->perm != mperm->mrp_perm) {
1777                                 /* actually this should not happen */
1778                                 CWARN("perm changed: %o => %o\n",
1779                                       xp->perm, mperm->mrp_perm);
1780                                 xp->perm = mperm->mrp_perm;
1781                         }
1782                         OBD_FREE(xperm, sizeof(*xperm));
1783                         spin_unlock(&racl->ra_lock);
1784                         return 0;
1785                 }
1786         }
1787
1788         /* finally insert this xperm */
1789         xperm->uid = current->fsuid;
1790         xperm->gid = current->fsgid;
1791         xperm->perm = mperm->mrp_perm;
1792         list_add(&xperm->list, &lp->lrp_setxid_perms);
1793
1794         spin_unlock(&racl->ra_lock);
1795         return 0;
1796 }
1797
1798 /*
1799  * remote_acl semaphore must be held by caller
1800  */
1801 static
1802 int remote_acl_update_locked(struct remote_acl *racl,
1803                              struct mds_remote_perm *mperm)
1804 {
1805         struct lustre_remote_perm *lperm;
1806         struct remote_perm_setxid *xperm;
1807         int setuid = 0, setgid = 0;
1808
1809         might_sleep();
1810
1811         if (current->uid != mperm->mrp_auth_uid) {
1812                 CERROR("current uid %u while authenticated as %u\n",
1813                        current->uid, mperm->mrp_auth_uid);
1814                 return -EINVAL;
1815         }
1816
1817         if (current->fsuid != mperm->mrp_auth_uid)
1818                 setuid = 1;
1819         if (current->fsgid == mperm->mrp_auth_gid)
1820                 setgid = 1;
1821
1822         OBD_ALLOC(lperm, sizeof(*lperm));
1823         if (!lperm)
1824                 return -ENOMEM;
1825
1826         if ((setuid || setgid) &&
1827             !(setuid && !mperm->mrp_allow_setuid) &&
1828             !(setgid && !mperm->mrp_allow_setgid)) {
1829                 OBD_ALLOC(xperm, sizeof(*xperm));
1830                 if (!xperm) {
1831                         OBD_FREE(lperm, sizeof(*lperm));
1832                         return -ENOMEM;
1833                 }
1834         } else
1835                 xperm = NULL;
1836
1837         return __remote_acl_update(racl, mperm, lperm, xperm);
1838 }
1839
1840 /*
1841  * return -EACCES at any error cases
1842  */
1843 int ll_remote_acl_permission(struct inode *inode, int mode)
1844 {
1845         struct ll_sb_info *sbi = ll_i2sbi(inode);
1846         struct remote_acl *racl = ll_i2info(inode)->lli_remote_acl;
1847         struct ptlrpc_request *req = NULL;
1848         struct lustre_id id;
1849         struct mds_remote_perm *mperm;
1850         int rc = -EACCES, perm;
1851
1852         if (!racl)
1853                 return -EACCES;
1854
1855         if (__remote_acl_check(racl, &perm) == 0) {
1856                 return ((perm & mode) == mode ? 0 : -EACCES);
1857         }
1858
1859         might_sleep();
1860
1861         /* doing update
1862          */
1863         down(&racl->ra_update_sem);
1864
1865         /* we might lose the race when obtain semaphore,
1866          * so check again.
1867          */
1868         if (__remote_acl_check(racl, &perm) == 0) {
1869                 if ((perm & mode) == mode)
1870                         rc = 0;
1871                 goto out;
1872         }
1873
1874         /* really fetch from mds
1875          */
1876         ll_inode2id(&id, inode);
1877         if (md_access_check(sbi->ll_md_exp, &id, &req))
1878                 goto out;
1879
1880         /* status non-zero indicate there's more apparent error
1881          * detected by mds, e.g. didn't allow this user at all.
1882          * we simply ignore and didn't cache it.
1883          */
1884         if (req->rq_repmsg->status)
1885                 goto out;
1886
1887         mperm = lustre_swab_repbuf(req, 1, sizeof(*mperm),
1888                                    lustre_swab_remote_perm);
1889         LASSERT(mperm);
1890         LASSERT_REPSWABBED(req, 1);
1891
1892         if ((mperm->mrp_perm & mode) == mode)
1893                 rc = 0;
1894
1895         remote_acl_update_locked(racl, mperm);
1896 out:
1897         if (req)
1898                 ptlrpc_req_finished(req);
1899
1900         up(&racl->ra_update_sem);
1901         return rc;
1902 }
1903
1904 int ll_remote_acl_update(struct inode *inode, struct mds_remote_perm *perm)
1905 {
1906         struct remote_acl *racl = ll_i2info(inode)->lli_remote_acl;
1907         int rc;
1908
1909         LASSERT(perm);
1910
1911         if (!racl)
1912                 return -EACCES;
1913
1914         down(&racl->ra_update_sem);
1915         rc = remote_acl_update_locked(racl, perm);
1916         up(&racl->ra_update_sem);
1917
1918         return rc;
1919 }
1920
1921 void ll_inode_invalidate_acl(struct inode *inode)
1922 {
1923         struct ll_sb_info *sbi = ll_i2sbi(inode);
1924         struct ll_inode_info *lli = ll_i2info(inode);
1925
1926         if (sbi->ll_remote) {
1927                 struct remote_acl *racl = lli->lli_remote_acl;
1928
1929                 LASSERT(!lli->lli_posix_acl);
1930                 if (racl) {
1931                         down(&racl->ra_update_sem);
1932                         spin_lock(&racl->ra_lock);
1933                         remote_acl_flush(lli->lli_remote_acl);
1934                         spin_unlock(&racl->ra_lock);
1935                         up(&racl->ra_update_sem);
1936                 }
1937         } else {
1938                 /* we can't invalide acl here: suppose we touch a new file
1939                  * under a dir, blocking ast on dir will lead to open failure
1940                  * on client, although succeed on mds. it's kind of weird,
1941                  * the real fix i think is improve client-vfs interaction.
1942                  *
1943                  * currently we just do nothing here.
1944                  */
1945                 return;
1946
1947                 LASSERT(!lli->lli_remote_acl);
1948                 spin_lock(&lli->lli_lock);
1949                 posix_acl_release(lli->lli_posix_acl);
1950                 lli->lli_posix_acl = NULL;
1951                 spin_unlock(&lli->lli_lock);
1952         }
1953 }
1954
1955 void ll_update_inode(struct inode *inode, struct lustre_md *md)
1956 {
1957         struct ll_inode_info *lli = ll_i2info(inode);
1958         struct lov_stripe_md *lsm = md->lsm;
1959         struct mds_body *body = md->body;
1960         struct mea *mea = md->mea;
1961         struct posix_acl *posix_acl = md->posix_acl;
1962         struct ll_sb_info *sbi = ll_i2sbi(inode);
1963         struct lustre_key *mkey = md->key;
1964         ENTRY;
1965
1966         LASSERT((lsm != NULL) == ((body->valid & OBD_MD_FLEASIZE) != 0));
1967
1968         if (md->lsm && md->lsm->lsm_magic != LOV_MAGIC) {
1969                 /* check for default striping info for dir. */
1970                 LASSERT((mea != NULL) == ((body->valid & OBD_MD_FLDIREA) != 0));
1971         }
1972         
1973         if (lsm != NULL) {
1974                 LASSERT(lsm->lsm_object_gr > 0);
1975                 if (lli->lli_smd == NULL) {
1976                         lli->lli_smd = lsm;
1977                         lli->lli_maxbytes = lsm->lsm_maxbytes;
1978                         if (lli->lli_maxbytes > PAGE_CACHE_MAXBYTES)
1979                                 lli->lli_maxbytes = PAGE_CACHE_MAXBYTES;
1980                 } else {
1981                         int i;
1982                         if (memcmp(lli->lli_smd, lsm, sizeof(*lsm))) {
1983                                 CERROR("lsm mismatch for inode %ld\n",
1984                                        inode->i_ino);
1985                                 CERROR("lli_smd:\n");
1986                                 dump_lsm(D_ERROR, lli->lli_smd);
1987                                 CERROR("lsm:\n");
1988                                 dump_lsm(D_ERROR, lsm);
1989                                 LBUG();
1990                         }
1991                         /* XXX FIXME -- We should decide on a safer (atomic) and
1992                          * more elegant way to update the lsm */
1993                         for (i = 0; i < lsm->lsm_stripe_count; i++) {
1994                                 lli->lli_smd->lsm_oinfo[i].loi_id =
1995                                         lsm->lsm_oinfo[i].loi_id;
1996                                 lli->lli_smd->lsm_oinfo[i].loi_gr =
1997                                         lsm->lsm_oinfo[i].loi_gr;
1998                                 lli->lli_smd->lsm_oinfo[i].loi_ost_idx =
1999                                         lsm->lsm_oinfo[i].loi_ost_idx;
2000                                 lli->lli_smd->lsm_oinfo[i].loi_ost_gen =
2001                                         lsm->lsm_oinfo[i].loi_ost_gen;
2002                         }
2003                 }
2004                 /* bug 2844 - limit i_blksize for broken user-space apps */
2005                 LASSERTF(lsm->lsm_xfersize != 0, "%lu\n", lsm->lsm_xfersize);
2006                 inode->i_blksize = min(lsm->lsm_xfersize, LL_MAX_BLKSIZE);
2007                 if (lli->lli_smd != lsm)
2008                         obd_free_memmd(ll_i2dtexp(inode), &lsm);
2009         }
2010
2011         if (mea != NULL) {
2012                 if (lli->lli_mea == NULL) {
2013                         lli->lli_mea = mea;
2014                 } else {
2015                         if (memcmp(lli->lli_mea, mea, body->eadatasize)) {
2016                                 CERROR("mea mismatch for inode %lu\n",
2017                                         inode->i_ino);
2018                                 LBUG();
2019                         }
2020                 }
2021                 if (lli->lli_mea != mea)
2022                         obd_free_memmd(ll_i2mdexp(inode),
2023                                        (struct lov_stripe_md **) &mea);
2024         }
2025
2026         if (body->valid & OBD_MD_FID)
2027                 id_assign_fid(&lli->lli_id, &body->id1);
2028         
2029         if (body->valid & OBD_MD_FLID)
2030                 id_ino(&lli->lli_id) = id_ino(&body->id1);
2031
2032         if (body->valid & OBD_MD_FLGENER)
2033                 id_gen(&lli->lli_id) = id_gen(&body->id1);
2034
2035         /* local/remote ACL */
2036         if (sbi->ll_remote) {
2037                 LASSERT(md->posix_acl == NULL);
2038                 if (md->remote_perm) {
2039                         ll_remote_acl_update(inode, md->remote_perm);
2040                         OBD_FREE(md->remote_perm, sizeof(*md->remote_perm));
2041                         md->remote_perm = NULL;
2042                 }
2043         } else {
2044                 LASSERT(md->remote_perm == NULL);
2045                 spin_lock(&lli->lli_lock);
2046                 if (posix_acl != NULL) {
2047                         if (lli->lli_posix_acl != NULL)
2048                                 posix_acl_release(lli->lli_posix_acl);
2049                         lli->lli_posix_acl = posix_acl;
2050                 }
2051                 spin_unlock(&lli->lli_lock);
2052         }
2053
2054         if (body->valid & OBD_MD_FLID)
2055                 inode->i_ino = id_ino(&body->id1);
2056         if (body->valid & OBD_MD_FLGENER)
2057                 inode->i_generation = id_gen(&body->id1);
2058         if (body->valid & OBD_MD_FLATIME)
2059                 LTIME_S(inode->i_atime) = body->atime;
2060         if (body->valid & OBD_MD_FLMTIME &&
2061             body->mtime > LTIME_S(inode->i_mtime)) {
2062                 CDEBUG(D_INODE, "setting ino %lu mtime from %lu to %u\n",
2063                        inode->i_ino, LTIME_S(inode->i_mtime), body->mtime);
2064                 LTIME_S(inode->i_mtime) = body->mtime;
2065         }
2066         if (body->valid & OBD_MD_FLCTIME &&
2067             body->ctime > LTIME_S(inode->i_ctime))
2068                 LTIME_S(inode->i_ctime) = body->ctime;
2069         if (body->valid & OBD_MD_FLMODE) {
2070                 inode->i_mode = (inode->i_mode & S_IFMT) |
2071                         (body->mode & ~S_IFMT);
2072         }
2073         if (body->valid & OBD_MD_FLTYPE) {
2074                 inode->i_mode = (inode->i_mode & ~S_IFMT) |
2075                         (body->mode & S_IFMT);
2076         }
2077         if (body->valid & OBD_MD_FLUID)
2078                 inode->i_uid = body->uid;
2079         if (body->valid & OBD_MD_FLGID)
2080                 inode->i_gid = body->gid;
2081         if (body->valid & OBD_MD_FLFLAGS)
2082                 inode->i_flags = body->flags;
2083         if (body->valid & OBD_MD_FLNLINK)
2084                 inode->i_nlink = body->nlink;
2085         if (body->valid & OBD_MD_FLRDEV)
2086 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
2087                 inode->i_rdev = body->rdev;
2088 #else
2089                 inode->i_rdev = old_decode_dev(body->rdev);
2090 #endif
2091         if (body->valid & OBD_MD_FLSIZE)
2092                 inode->i_size = body->size;
2093         if (body->valid & OBD_MD_FLBLOCKS)
2094                 inode->i_blocks = body->blocks;
2095
2096         if (body->valid & OBD_MD_FLSIZE)
2097                 set_bit(LLI_F_HAVE_MDS_SIZE_LOCK, &lli->lli_flags);
2098
2099         if (body->valid & OBD_MD_FLAUDIT) {
2100                 struct ll_sb_info * sbi = ll_s2sbi(inode->i_sb);
2101                 if (IS_AUDIT_OP(body->audit, AUDIT_FS))
2102                         sbi->ll_audit_mask = body->audit;
2103                 else
2104                         lli->lli_audit_mask = body->audit;
2105         }
2106
2107         if (mkey != NULL) {
2108                 LASSERT(body->valid & OBD_MD_FLKEY);
2109                 ll_crypto_init_inode_key(inode, mkey);  
2110         }
2111
2112 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
2113         inode->i_dev = (kdev_t)id_group(&lli->lli_id);
2114 #endif
2115         LASSERT(id_fid(&lli->lli_id) != 0);
2116 }
2117
2118 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
2119 static struct backing_dev_info ll_backing_dev_info = {
2120         .ra_pages       = 0,    /* No readahead */
2121         .memory_backed  = 0,    /* Does contribute to dirty memory */
2122 };
2123 #endif
2124
2125 void ll_read_inode2(struct inode *inode, void *opaque)
2126 {
2127         struct lustre_md *md = opaque;
2128         struct ll_inode_info *lli = ll_i2info(inode);
2129         ENTRY;
2130
2131         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p)\n", inode->i_ino,
2132                inode->i_generation, inode);
2133
2134         ll_lli_init(lli);
2135
2136         LASSERT(!lli->lli_smd);
2137
2138         if (ll_i2sbi(inode)->ll_remote) {
2139                 lli->lli_remote_acl = remote_acl_alloc();
2140                 /* if failed alloc, nobody will be able to access this inode */
2141         }
2142
2143         /* Core attributes from the MDS first.  This is a new inode, and
2144          * the VFS doesn't zero times in the core inode so we have to do
2145          * it ourselves.  They will be overwritten by either MDS or OST
2146          * attributes - we just need to make sure they aren't newer. */
2147         LTIME_S(inode->i_mtime) = 0;
2148         LTIME_S(inode->i_atime) = 0;
2149         LTIME_S(inode->i_ctime) = 0;
2150
2151         inode->i_rdev = 0;
2152         ll_update_inode(inode, md);
2153
2154         /* OIDEBUG(inode); */
2155
2156         if (S_ISREG(inode->i_mode)) {
2157                 inode->i_op = &ll_file_inode_operations;
2158                 inode->i_fop = &ll_file_operations;
2159                 inode->i_mapping->a_ops = &ll_aops;
2160                 EXIT;
2161         } else if (S_ISDIR(inode->i_mode)) {
2162                 inode->i_op = &ll_dir_inode_operations;
2163                 inode->i_fop = &ll_dir_operations;
2164                 inode->i_mapping->a_ops = &ll_dir_aops;
2165                 EXIT;
2166         } else if (S_ISLNK(inode->i_mode)) {
2167                 inode->i_op = &ll_fast_symlink_inode_operations;
2168                 EXIT;
2169         } else {
2170                 inode->i_op = &ll_special_inode_operations;
2171
2172 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,5,0))
2173                 init_special_inode(inode, inode->i_mode,
2174                                    kdev_t_to_nr(inode->i_rdev));
2175
2176                 /* initializing backing dev info. */
2177                 inode->i_mapping->backing_dev_info = &ll_backing_dev_info;
2178 #else
2179                 init_special_inode(inode, inode->i_mode, inode->i_rdev);
2180 #endif
2181                 lli->ll_save_ifop = inode->i_fop;
2182
2183                 if (S_ISCHR(inode->i_mode))
2184                         inode->i_fop = &ll_special_chr_inode_fops;
2185                 else if (S_ISBLK(inode->i_mode))
2186                         inode->i_fop = &ll_special_blk_inode_fops;
2187                 else if (S_ISFIFO(inode->i_mode))
2188                         inode->i_fop = &ll_special_fifo_inode_fops;
2189                 else if (S_ISSOCK(inode->i_mode))
2190                         inode->i_fop = &ll_special_sock_inode_fops;
2191
2192                 CWARN("saved %p, replaced with %p\n", lli->ll_save_ifop,
2193                       inode->i_fop);
2194
2195                 if (lli->ll_save_ifop->owner) {
2196                         CWARN("%p has owner %p\n", lli->ll_save_ifop,
2197                               lli->ll_save_ifop->owner);
2198                 }
2199                 EXIT;
2200         }
2201 }
2202
2203 void ll_delete_inode(struct inode *inode)
2204 {
2205         struct ll_sb_info *sbi = ll_i2sbi(inode);
2206         struct lustre_id id;
2207         int rc;
2208         ENTRY;
2209
2210         ll_inode2id(&id, inode);
2211
2212         rc = md_delete_inode(sbi->ll_md_exp, &id);
2213         if (rc) {
2214                 CERROR("md_delete_inode() failed, error %d\n", 
2215                        rc);
2216         }
2217
2218         clear_inode(inode);
2219         EXIT;
2220 }
2221
2222 int ll_iocontrol(struct inode *inode, struct file *file,
2223                  unsigned int cmd, unsigned long arg)
2224 {
2225         struct ll_sb_info *sbi = ll_i2sbi(inode);
2226         struct ptlrpc_request *req = NULL;
2227         int rc, flags = 0;
2228         ENTRY;
2229
2230         switch(cmd) {
2231         case EXT3_IOC_GETFLAGS: {
2232                 struct lustre_id id;
2233                 __u64 valid = OBD_MD_FLFLAGS;
2234                 struct mds_body *body;
2235
2236                 ll_inode2id(&id, inode);
2237                 rc = md_getattr(sbi->ll_md_exp, &id, valid, NULL, NULL,
2238                                 0, 0, NULL, &req);
2239                 if (rc) {
2240                         CERROR("failure %d inode %lu\n", rc, inode->i_ino);
2241                         RETURN(-abs(rc));
2242                 }
2243
2244                 body = lustre_msg_buf(req->rq_repmsg, 0, sizeof(*body));
2245
2246                 if (body->flags & S_APPEND)
2247                         flags |= EXT3_APPEND_FL;
2248                 if (body->flags & S_IMMUTABLE)
2249                         flags |= EXT3_IMMUTABLE_FL;
2250                 if (body->flags & S_NOATIME)
2251                         flags |= EXT3_NOATIME_FL;
2252
2253                 ptlrpc_req_finished (req);
2254
2255                 RETURN(put_user(flags, (int *)arg));
2256         }
2257         case EXT3_IOC_SETFLAGS: {
2258                 struct mdc_op_data *op_data;
2259                 struct iattr attr;
2260                 struct obdo *oa;
2261                 struct lov_stripe_md *lsm = ll_i2info(inode)->lli_smd;
2262
2263                 if (get_user(flags, (int *)arg))
2264                         RETURN(-EFAULT);
2265
2266                 oa = obdo_alloc();
2267                 if (!oa)
2268                         RETURN(-ENOMEM);
2269
2270                 OBD_ALLOC(op_data, sizeof(*op_data));
2271                 if (op_data == NULL) {
2272                         obdo_free(oa);
2273                         RETURN(-ENOMEM);
2274                 }
2275                 ll_inode2mdc_data(op_data, inode, (OBD_MD_FLID | OBD_MD_MEA));
2276
2277                 memset(&attr, 0x0, sizeof(attr));
2278                 attr.ia_attr_flags = flags;
2279                 attr.ia_valid |= ATTR_ATTR_FLAG;
2280
2281                 rc = md_setattr(sbi->ll_md_exp, op_data,
2282                                 &attr, NULL, 0, NULL, 0, NULL, 0, &req);
2283                 OBD_FREE(op_data, sizeof(*op_data));
2284                 if (rc) {
2285                         ptlrpc_req_finished(req);
2286                         if (rc != -EPERM && rc != -EACCES)
2287                                 CERROR("md_setattr fails: rc = %d\n", rc);
2288                         obdo_free(oa);
2289                         RETURN(rc);
2290                 }
2291                 ptlrpc_req_finished(req);
2292
2293                 oa->o_id = lsm->lsm_object_id;
2294                 oa->o_gr = lsm->lsm_object_gr;
2295                 oa->o_flags = flags;
2296                 *(obdo_id(oa)) = ll_i2info(inode)->lli_id;
2297                 oa->o_valid = OBD_MD_FLID | OBD_MD_FLFLAGS | OBD_MD_FLGROUP 
2298                               | OBD_MD_FLIFID;
2299
2300                 rc = obd_setattr(sbi->ll_dt_exp, oa, lsm, NULL);
2301                 obdo_free(oa);
2302                 if (rc) {
2303                         if (rc != -EPERM && rc != -EACCES)
2304                                 CERROR("md_setattr fails: rc = %d\n", rc);
2305                         RETURN(rc);
2306                 }
2307
2308                 if (flags & EXT3_APPEND_FL)
2309                         inode->i_flags |= S_APPEND;
2310                 else
2311                         inode->i_flags &= ~S_APPEND;
2312                 if (flags & EXT3_IMMUTABLE_FL)
2313                         inode->i_flags |= S_IMMUTABLE;
2314                 else
2315                         inode->i_flags &= ~S_IMMUTABLE;
2316                 if (flags & EXT3_NOATIME_FL)
2317                         inode->i_flags |= S_NOATIME;
2318                 else
2319                         inode->i_flags &= ~S_NOATIME;
2320
2321                 RETURN(0);
2322         }
2323         default:
2324                 RETURN(-ENOSYS);
2325         }
2326
2327         RETURN(0);
2328 }
2329
2330 /* this is only called in the case of forced umount. */
2331 void ll_umount_begin(struct super_block *sb)
2332 {
2333         struct ll_sb_info *sbi = ll_s2sbi(sb);
2334         struct obd_ioctl_data ioc_data = { 0 };
2335         struct obd_device *obd;
2336         ENTRY;
2337      
2338         CDEBUG(D_VFSTRACE, "VFS Op: superblock %p count %d active %d\n", sb,
2339                sb->s_count, atomic_read(&sb->s_active));
2340         
2341         obd = class_exp2obd(sbi->ll_md_exp);
2342         if (obd == NULL) {
2343                 CERROR("Invalid MDC connection handle "LPX64"\n",
2344                        sbi->ll_md_exp->exp_handle.h_cookie);
2345                 EXIT;
2346                 return;
2347         }
2348         obd->obd_no_recov = 1;
2349         obd_iocontrol(IOC_OSC_SET_ACTIVE, sbi->ll_md_exp,
2350                       sizeof(ioc_data), &ioc_data, NULL);
2351
2352         obd = class_exp2obd(sbi->ll_dt_exp);
2353         if (obd == NULL) {
2354                 CERROR("Invalid LOV connection handle "LPX64"\n",
2355                        sbi->ll_dt_exp->exp_handle.h_cookie);
2356                 EXIT;
2357                 return;
2358         }
2359
2360         obd->obd_no_recov = 1;
2361         obd_iocontrol(IOC_OSC_SET_ACTIVE, sbi->ll_dt_exp,
2362                       sizeof(ioc_data), &ioc_data, NULL);
2363
2364         /*
2365          * really, we'd like to wait until there are no requests outstanding,
2366          * and then continue.  For now, we just invalidate the requests,
2367          * schedule, and hope.
2368          */
2369         schedule();
2370
2371         EXIT;
2372 }
2373
2374 int ll_prep_inode(struct obd_export *dt_exp, struct obd_export *md_exp,
2375                   struct inode **inode, struct ptlrpc_request *req,
2376                   int offset, struct super_block *sb)
2377 {
2378         struct lustre_md md;
2379         int rc = 0;
2380
2381         rc = mdc_req2lustre_md(md_exp, req, offset, dt_exp, &md);
2382         if (rc)
2383                 RETURN(rc);
2384
2385         if (*inode) {
2386                 ll_update_inode(*inode, &md);
2387         } else {
2388                 LASSERT(sb);
2389                 *inode = ll_iget(sb, id_ino(&md.body->id1), &md);
2390                 if (*inode == NULL || is_bad_inode(*inode)) {
2391                         /* free the lsm if we allocated one above */
2392                         if (md.lsm != NULL)
2393                                 obd_free_memmd(dt_exp, &md.lsm);
2394                         if (md.mea != NULL)
2395                                 obd_free_memmd(md_exp,
2396                                                (struct lov_stripe_md**)&md.mea);
2397                         rc = -ENOMEM;
2398                         CERROR("new_inode -fatal: rc %d\n", rc);
2399                 }
2400         }
2401
2402         RETURN(rc);
2403 }
2404
2405 int ll_show_options(struct seq_file *m, struct vfsmount *mnt)
2406 {
2407         struct ll_sb_info *sbi = ll_s2sbi(mnt->mnt_sb);
2408         struct lustre_mount_data *lmd = sbi->ll_lmd;
2409
2410         if (lmd) {
2411                 seq_printf(m, ",mds_sec=%s,oss_sec=%s",
2412                            lmd->lmd_mds_security, lmd->lmd_oss_security);
2413         }
2414         seq_printf(m, ",%s", sbi->ll_remote ? "remote" : "local");
2415         if (sbi->ll_remote && lmd)
2416                 seq_printf(m, ",nllu=%u:%u", lmd->lmd_nllu, lmd->lmd_nllg);
2417
2418         if (lmd && lmd->lmd_pag)
2419                 seq_printf(m, ",pag");
2420
2421         return 0;
2422 }
2423
2424 int ll_get_fid(struct obd_export *exp, struct lustre_id *idp,
2425                char *filename, struct lustre_id *ret)
2426 {
2427         struct ptlrpc_request *request = NULL;
2428         struct mds_body *body;
2429         int rc;
2430
2431         rc = md_getattr_lock(exp, idp, filename, strlen(filename) + 1,
2432                              OBD_MD_FID, 0, &request);
2433         if (rc < 0) {
2434                 CDEBUG(D_INFO, "md_getattr_lock failed on %s: rc %d\n",
2435                        filename, rc);
2436                 return rc;
2437         }
2438
2439         body = lustre_msg_buf(request->rq_repmsg, 0, sizeof(*body));
2440         LASSERT(body != NULL);
2441         LASSERT_REPSWABBED(request, 0);
2442
2443         *ret = body->id1;
2444         ptlrpc_req_finished(request);
2445
2446         return rc;
2447 }
2448 int ll_flush_cred(struct inode *inode)
2449 {
2450         struct ll_sb_info *sbi = ll_i2sbi(inode);
2451         int rc = 0;
2452
2453         /* XXX to avoid adding api, we simply use set_info() interface
2454          * to notify underlying obds. set_info() is more like a ioctl() now...
2455          */
2456         if (sbi->ll_md_exp) {
2457                 rc = obd_set_info(sbi->ll_md_exp,
2458                                   strlen("flush_cred"), "flush_cred",
2459                                   0, NULL);
2460                 if (rc)
2461                         return rc;
2462         }
2463
2464         if (sbi->ll_dt_exp) {
2465                 rc = obd_set_info(sbi->ll_dt_exp,
2466                                   strlen("flush_cred"), "flush_cred",
2467                                   0, NULL);
2468                 if (rc)
2469                         return rc;
2470         }
2471
2472         return rc;
2473 }