Whamcloud - gitweb
- b_hd_audit landing
[fs/lustre-release.git] / lustre / mds / handler.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  lustre/mds/handler.c
5  *  Lustre Metadata Server (mds) request handler
6  *
7  *  Copyright (c) 2001-2003 Cluster File Systems, Inc.
8  *   Author: Peter Braam <braam@clusterfs.com>
9  *   Author: Andreas Dilger <adilger@clusterfs.com>
10  *   Author: Phil Schwan <phil@clusterfs.com>
11  *   Author: Mike Shaver <shaver@clusterfs.com>
12  *
13  *   This file is part of Lustre, http://www.lustre.org.
14  *
15  *   Lustre is free software; you can redistribute it and/or
16  *   modify it under the terms of version 2 of the GNU General Public
17  *   License as published by the Free Software Foundation.
18  *
19  *   Lustre is distributed in the hope that it will be useful,
20  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
21  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  *   GNU General Public License for more details.
23  *
24  *   You should have received a copy of the GNU General Public License
25  *   along with Lustre; if not, write to the Free Software
26  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
27  */
28
29 #ifndef EXPORT_SYMTAB
30 # define EXPORT_SYMTAB
31 #endif
32 #define DEBUG_SUBSYSTEM S_MDS
33
34 #include <linux/module.h>
35 #include <linux/lustre_mds.h>
36 #include <linux/lustre_dlm.h>
37 #include <linux/init.h>
38 #include <linux/obd_class.h>
39 #include <linux/random.h>
40 #include <linux/fs.h>
41 #include <linux/jbd.h>
42 #include <linux/namei.h>
43 #include <linux/ext3_fs.h>
44 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
45 # include <linux/smp_lock.h>
46 # include <linux/buffer_head.h>
47 # include <linux/workqueue.h>
48 # include <linux/mount.h>
49 #else
50 # include <linux/locks.h>
51 #endif
52 #include <linux/obd_lov.h>
53 #include <linux/obd_ost.h>
54 #include <linux/lustre_mds.h>
55 #include <linux/lustre_fsfilt.h>
56 #include <linux/lprocfs_status.h>
57 #include <linux/lustre_commit_confd.h>
58 #include <linux/lustre_acl.h>
59 #include <linux/lustre_gs.h>
60 #include "mds_internal.h"
61 #include <linux/lustre_sec.h>
62 #include <linux/lustre_audit.h>
63
64 extern int mds_audit_auth(struct ptlrpc_request *, struct lvfs_ucred *,
65                           audit_op, struct lustre_id *,
66                           char *, int);
67 extern int mds_audit_stat(struct ptlrpc_request *, struct lustre_id *,
68                           struct dentry *, int);
69 extern int mds_audit_open(struct ptlrpc_request *, struct mds_update_record *,
70                           int);
71
72 static int mds_intent_policy(struct ldlm_namespace *ns,
73                              struct ldlm_lock **lockp, void *req_cookie,
74                              ldlm_mode_t mode, int flags, void *data);
75 static int mds_postsetup(struct obd_device *obd);
76 static int mds_cleanup(struct obd_device *obd, int flags);
77
78
79 /* Assumes caller has already pushed into the kernel filesystem context */
80 static int mds_sendpage(struct ptlrpc_request *req, struct file *file,
81                         loff_t offset, int count)
82 {
83         struct ptlrpc_bulk_desc *desc;
84         struct l_wait_info lwi;
85         struct page **pages;
86         int rc = 0, npages, i, tmpcount, tmpsize = 0;
87         ENTRY;
88
89         LASSERT((offset & (PAGE_SIZE - 1)) == 0); /* I'm dubious about this */
90
91         npages = (count + PAGE_SIZE - 1) >> PAGE_SHIFT;
92         OBD_ALLOC(pages, sizeof(*pages) * npages);
93         if (!pages)
94                 GOTO(out, rc = -ENOMEM);
95
96         desc = ptlrpc_prep_bulk_exp(req, npages, BULK_PUT_SOURCE,
97                                     MDS_BULK_PORTAL);
98         if (desc == NULL)
99                 GOTO(out_free, rc = -ENOMEM);
100
101         for (i = 0, tmpcount = count; i < npages; i++, tmpcount -= tmpsize) {
102                 tmpsize = tmpcount > PAGE_SIZE ? PAGE_SIZE : tmpcount;
103
104                 pages[i] = alloc_pages(GFP_KERNEL, 0);
105                 if (pages[i] == NULL)
106                         GOTO(cleanup_buf, rc = -ENOMEM);
107
108                 ptlrpc_prep_bulk_page(desc, pages[i], 0, tmpsize);
109         }
110
111         for (i = 0, tmpcount = count; i < npages; i++, tmpcount -= tmpsize) {
112                 tmpsize = tmpcount > PAGE_SIZE ? PAGE_SIZE : tmpcount;
113                 CDEBUG(D_EXT2, "reading %u@%llu from dir %lu (size %llu)\n",
114                        tmpsize, offset, file->f_dentry->d_inode->i_ino,
115                        file->f_dentry->d_inode->i_size);
116
117                 rc = fsfilt_readpage(req->rq_export->exp_obd, file,
118                                      kmap(pages[i]), tmpsize, &offset);
119                 kunmap(pages[i]);
120
121                 if (rc != tmpsize)
122                         GOTO(cleanup_buf, rc = -EIO);
123         }
124
125         LASSERT(desc->bd_nob == count);
126
127         rc = ptlrpc_start_bulk_transfer(desc);
128         if (rc)
129                 GOTO(cleanup_buf, rc);
130
131         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_SENDPAGE)) {
132                 CERROR("obd_fail_loc=%x, fail operation rc=%d\n",
133                        OBD_FAIL_MDS_SENDPAGE, rc = -EIO);
134                 GOTO(abort_bulk, rc);
135         }
136
137         lwi = LWI_TIMEOUT(obd_timeout * HZ / 4, NULL, NULL);
138         rc = l_wait_event(desc->bd_waitq, !ptlrpc_bulk_active(desc), &lwi);
139         LASSERT (rc == 0 || rc == -ETIMEDOUT);
140
141         if (rc == 0) {
142                 if (desc->bd_success &&
143                     desc->bd_nob_transferred == count)
144                         GOTO(cleanup_buf, rc);
145
146                 rc = -ETIMEDOUT; /* XXX should this be a different errno? */
147         }
148
149         DEBUG_REQ(D_ERROR, req, "bulk failed: %s %d(%d), evicting %s@%s\n",
150                   (rc == -ETIMEDOUT) ? "timeout" : "network error",
151                   desc->bd_nob_transferred, count,
152                   req->rq_export->exp_client_uuid.uuid,
153                   req->rq_export->exp_connection->c_remote_uuid.uuid);
154
155         ptlrpc_fail_export(req->rq_export);
156
157         EXIT;
158  abort_bulk:
159         ptlrpc_abort_bulk (desc);
160  cleanup_buf:
161         for (i = 0; i < npages; i++)
162                 if (pages[i])
163                         __free_pages(pages[i], 0);
164
165         ptlrpc_free_bulk(desc);
166  out_free:
167         OBD_FREE(pages, sizeof(*pages) * npages);
168  out:
169         return rc;
170 }
171
172 extern char *ldlm_lockname[];
173
174 int mds_lock_mode_for_dir(struct obd_device *obd,
175                           struct dentry *dentry, int mode)
176 {
177         int ret_mode = 0, split;
178
179         /* any dir access needs couple locks:
180          * 1) on part of dir we gonna lookup/modify in
181          * 2) on a whole dir to protect it from concurrent splitting
182          *    and to flush client's cache for readdir()
183          * so, for a given mode and dentry this routine decides what
184          * lock mode to use for lock #2:
185          * 1) if caller's gonna lookup in dir then we need to protect
186          *    dir from being splitted only - LCK_CR
187          * 2) if caller's gonna modify dir then we need to protect
188          *    dir from being splitted and to flush cache - LCK_CW
189          * 3) if caller's gonna modify dir and that dir seems ready
190          *    for splitting then we need to protect it from any
191          *    type of access (lookup/modify/split) - LCK_EX -bzzz */
192
193         split = mds_splitting_expected(obd, dentry);
194         
195         /*
196          * it is important to check here only for MDS_NO_SPLITTABLE. The reason
197          * is that MDS_NO_SPLITTABLE means dir is not splittable in principle
198          * and another thread will not split it on the quiet. But if we have
199          * MDS_NO_SPLIT_EXPECTED, this means, that dir may be splitted anytime,
200          * but not now (for current thread) and we should consider that it can
201          * happen soon and go that branch which can yield LCK_EX to protect from
202          * possible splitting.
203          */
204         if (split == MDS_NO_SPLITTABLE) {
205                 /*
206                  * this inode won't be splitted. so we need not to protect from
207                  * just flush client's cache on modification.
208                  */
209                 if (mode == LCK_PW)
210                         ret_mode = LCK_CW;
211                 else
212                         ret_mode = 0;
213         } else {
214                 if (mode == LCK_EX) {
215                         ret_mode = LCK_EX;
216                 } else if (mode == LCK_PR) {
217                         ret_mode = LCK_CR;
218                 } else if (mode == LCK_PW) {
219                         /*
220                          * caller gonna modify directory. We use concurrent
221                          * write lock here to retract client's cache for
222                          * readdir.
223                          */
224                         if (split == MDS_EXPECT_SPLIT) {
225                                 /*
226                                  * splitting possible. serialize any access the
227                                  * idea is that first one seen dir is splittable
228                                  * is given exclusive lock and split
229                                  * directory. caller passes lock mode to
230                                  * mds_try_to_split_dir() and splitting would be
231                                  * done with exclusive lock only -bzzz.
232                                  */
233                                 CDEBUG(D_OTHER, "%s: gonna split %lu/%lu\n",
234                                        obd->obd_name,
235                                        (unsigned long)dentry->d_inode->i_ino,
236                                        (unsigned long)dentry->d_inode->i_generation);
237                                 ret_mode = LCK_EX;
238                         } else {
239                                 ret_mode = LCK_CW;
240                         }
241                 }
242         }
243
244         return ret_mode;        
245 }
246
247 /* only valid locked dentries or errors should be returned */
248 struct dentry *mds_id2locked_dentry(struct obd_device *obd, struct lustre_id *id,
249                                     struct vfsmount **mnt, int lock_mode,
250                                     struct lustre_handle *lockh, int *mode,
251                                     char *name, int namelen, __u64 lockpart)
252 {
253         struct dentry *de = mds_id2dentry(obd, id, mnt), *retval = de;
254         ldlm_policy_data_t policy = { .l_inodebits = { lockpart } };
255         struct ldlm_res_id res_id = { .name = {0} };
256         int flags = LDLM_FL_ATOMIC_CB, rc;
257         ENTRY;
258
259         if (IS_ERR(de))
260                 RETURN(de);
261
262         lockh[1].cookie = 0;
263         res_id.name[0] = id_fid(id);
264         res_id.name[1] = id_group(id);
265         
266 #ifdef S_PDIROPS
267         if (name && IS_PDIROPS(de->d_inode)) {
268                 ldlm_policy_data_t cpolicy =
269                         { .l_inodebits = { MDS_INODELOCK_UPDATE } };
270                 LASSERT(mode != NULL);
271                 *mode = mds_lock_mode_for_dir(obd, de, lock_mode);
272                 if (*mode) {
273                         rc = ldlm_cli_enqueue(NULL, NULL, obd->obd_namespace,
274                                               res_id, LDLM_IBITS,
275                                               &cpolicy, *mode, &flags,
276                                               mds_blocking_ast,
277                                               ldlm_completion_ast, NULL, NULL,
278                                               NULL, 0, NULL, lockh + 1);
279                         if (rc != ELDLM_OK) {
280                                 l_dput(de);
281                                 RETURN(ERR_PTR(-ENOLCK));
282                         }
283                 }
284                 flags = LDLM_FL_ATOMIC_CB;
285
286                 res_id.name[2] = full_name_hash((unsigned char *)name, namelen);
287
288                 CDEBUG(D_INFO, "take lock on "DLID4":"LPX64"\n",
289                        OLID4(id), res_id.name[2]);
290         }
291 #else
292 #warning "No PDIROPS support in the kernel"
293 #endif
294         rc = ldlm_cli_enqueue(NULL, NULL, obd->obd_namespace, res_id,
295                               LDLM_IBITS, &policy, lock_mode, &flags,
296                               mds_blocking_ast, ldlm_completion_ast,
297                               NULL, NULL, NULL, 0, NULL, lockh);
298         if (rc != ELDLM_OK) {
299                 l_dput(de);
300                 retval = ERR_PTR(-EIO); /* XXX translate ldlm code */
301 #ifdef S_PDIROPS
302                 if (lockh[1].cookie)
303                         ldlm_lock_decref(lockh + 1, *mode);
304 #endif
305         } else if (de->d_inode && de->d_inode->i_nlink == 0) {
306                 /* as sometimes we lookup inode by ino/generation through
307                    iopen mechanism, it's possible to find already unlinked
308                    inode with nlink == 0. let's interpretate the case as
309                    ENOENT -bzzz */
310                 CWARN("found already unlinked inode %lu/%u\n",
311                       de->d_inode->i_ino, de->d_inode->i_generation);
312                 l_dput(de);
313                 retval = ERR_PTR(-ENOENT);
314                 ldlm_lock_decref(lockh, lock_mode);
315 #ifdef S_PDIROPS
316                 if (lockh[1].cookie)
317                         ldlm_lock_decref(lockh + 1, *mode);
318 #endif
319         }
320
321         RETURN(retval);
322 }
323
324 #ifndef DCACHE_DISCONNECTED
325 #define DCACHE_DISCONNECTED DCACHE_NFSD_DISCONNECTED
326 #endif
327
328 /* Look up an entry by inode number. This function ONLY returns valid dget'd
329  * dentries with an initialized inode or errors */
330 struct dentry *mds_id2dentry(struct obd_device *obd, struct lustre_id *id,
331                              struct vfsmount **mnt)
332 {
333         unsigned long ino = (unsigned long)id_ino(id);
334         __u32 generation = (__u32)id_gen(id);
335         struct mds_obd *mds = &obd->u.mds;
336         struct dentry *result;
337         struct inode *inode;
338         char idname[32];
339
340         if (ino == 0)
341                 RETURN(ERR_PTR(-ESTALE));
342
343         snprintf(idname, sizeof(idname), "0x%lx", ino);
344
345         CDEBUG(D_DENTRY, "--> mds_id2dentry: ino/gen %lu/%u, sb %p\n",
346                ino, generation, mds->mds_sb);
347
348         /* under ext3 this is neither supposed to return bad inodes nor NULL
349            inodes. */
350         result = ll_lookup_one_len(idname, mds->mds_id_de, 
351                                    strlen(idname));
352         if (IS_ERR(result))
353                 RETURN(result);
354
355         inode = result->d_inode;
356         if (!inode)
357                 RETURN(ERR_PTR(-ENOENT));
358
359         if (is_bad_inode(inode)) {
360                 CERROR("bad inode returned %lu/%u\n",
361                        inode->i_ino, inode->i_generation);
362                 dput(result);
363                 RETURN(ERR_PTR(-ENOENT));
364         }
365
366         /* here we disabled generation check, as root inode i_generation
367          * of cache mds and real mds are different. */
368         if (inode->i_ino != id_ino(&mds->mds_rootid) && generation &&
369             inode->i_generation != generation) {
370                 /* we didn't find the right inode.. */
371                 if (id_group(id) != mds->mds_num) {
372                         CERROR("bad inode %lu found, link: %lu, ct: %d, generation "
373                                "%u != %u, mds %u != %u, request to wrong MDS?\n",
374                                inode->i_ino, (unsigned long)inode->i_nlink,
375                                atomic_read(&inode->i_count), inode->i_generation,
376                                generation, mds->mds_num, (unsigned)id_group(id));
377                 } else {
378                         CERROR("bad inode %lu found, link: %lu, ct: %d, generation "
379                                "%u != %u, inode is recreated while request handled?\n",
380                                inode->i_ino, (unsigned long)inode->i_nlink,
381                                atomic_read(&inode->i_count), inode->i_generation,
382                                generation);
383                 }
384                 dput(result);
385                 RETURN(ERR_PTR(-ENOENT));
386         }
387
388         if (mnt) {
389                 *mnt = mds->mds_vfsmnt;
390                 mntget(*mnt);
391         }
392
393         RETURN(result);
394 }
395
396 static
397 int mds_req_add_idmapping(struct ptlrpc_request *req,
398                           struct mds_export_data *med)
399 {
400         struct mds_req_sec_desc *rsd;
401         struct lustre_sec_desc  *lsd;
402         int rc;
403
404         if (!med->med_remote)
405                 return 0;
406
407         /* maybe we should do it more completely: invalidate the gss ctxt? */
408         if (req->rq_mapped_uid == MDS_IDMAP_NOTFOUND) {
409                 CWARN("didn't find mapped uid\n");
410                 return -EPERM;
411         }
412
413         rsd = lustre_swab_mds_secdesc(req, MDS_REQ_SECDESC_OFF);
414         if (!rsd) {
415                 CERROR("Can't unpack security desc\n");
416                 return -EPROTO;
417         }
418
419         lsd = mds_get_lsd(req->rq_mapped_uid);
420         if (!lsd) {
421                 CERROR("can't get LSD(%u), no mapping added\n",
422                        req->rq_mapped_uid);
423                 return -EPERM;
424         }
425
426         rc = mds_idmap_add(med->med_idmap, rsd->rsd_uid, lsd->lsd_uid,
427                            rsd->rsd_gid, lsd->lsd_gid);
428         mds_put_lsd(lsd);
429         return rc;
430 }
431
432 static
433 int mds_req_del_idmapping(struct ptlrpc_request *req,
434                           struct mds_export_data *med)
435 {
436         struct mds_req_sec_desc *rsd;
437         struct lustre_sec_desc  *lsd;
438         int rc;
439
440         if (!med->med_remote)
441                 return 0;
442
443         rsd = lustre_swab_mds_secdesc(req, MDS_REQ_SECDESC_OFF);
444         if (!rsd) {
445                 CERROR("Can't unpack security desc\n");
446                 return -EPROTO;
447         }
448
449         LASSERT(req->rq_mapped_uid != -1);
450         lsd = mds_get_lsd(req->rq_mapped_uid);
451         if (!lsd) {
452                 CERROR("can't get LSD(%u), no idmapping deleted\n",
453                        req->rq_mapped_uid);
454                 return -EPERM;
455         }
456
457         rc = mds_idmap_del(med->med_idmap, rsd->rsd_uid, lsd->lsd_uid,
458                            rsd->rsd_gid, lsd->lsd_gid);
459         mds_put_lsd(lsd);
460         return rc;
461 }
462
463 static int mds_init_export_data(struct ptlrpc_request *req,
464                                 struct mds_export_data *med)
465 {
466         struct obd_connect_data *data, *reply;
467         int ask_remote, ask_local;
468         ENTRY;
469
470         data = lustre_msg_buf(req->rq_reqmsg, 5, sizeof(*data));
471         reply = lustre_msg_buf(req->rq_repmsg, 0, sizeof(*data));
472         LASSERT(data && reply);
473
474         if (med->med_initialized) {
475                 CDEBUG(D_SEC, "med already initialized, reconnect?\n");
476                 goto reply;
477         }
478
479         ask_remote = data->ocd_connect_flags & OBD_CONNECT_REMOTE;
480         ask_local = data->ocd_connect_flags & OBD_CONNECT_LOCAL;
481
482         /* currently the policy is simple: satisfy client as possible
483          * as we can.
484          */
485         if (req->rq_auth_uid == -1) {
486                 if (ask_remote)
487                         CWARN("null sec is used, force to be local\n");
488                 med->med_remote = 0;
489         } else {
490                 if (ask_remote) {
491                         if (!req->rq_remote_realm)
492                                 CWARN("local realm asked to be remote\n");
493                         med->med_remote = 1;
494                 } else if (ask_local) {
495                         if (req->rq_remote_realm)
496                                 CWARN("remote realm asked to be local\n");
497                         med->med_remote = 0;
498                 } else
499                         med->med_remote = (req->rq_remote_realm != 0);
500         }
501
502         med->med_nllu = data->ocd_nllu[0];
503         med->med_nllg = data->ocd_nllu[1];
504
505         med->med_initialized = 1;
506 reply:
507         reply->ocd_connect_flags &= ~(OBD_CONNECT_REMOTE | OBD_CONNECT_LOCAL);
508         if (med->med_remote) {
509                 if (!med->med_idmap)
510                         med->med_idmap = mds_idmap_alloc();
511
512                 if (!med->med_idmap)
513                         CERROR("Failed to alloc idmap, following request from "
514                                "this client will be refused\n");
515
516                 reply->ocd_connect_flags |= OBD_CONNECT_REMOTE;
517                 CDEBUG(D_SEC, "set client as remote\n");
518         } else {
519                 reply->ocd_connect_flags |= OBD_CONNECT_LOCAL;
520                 CDEBUG(D_SEC, "set client as local\n");
521         }
522
523         RETURN(0);
524 }
525
526 static void mds_free_export_data(struct mds_export_data *med)
527 {
528         if (!med->med_idmap)
529                 return;
530
531         LASSERT(med->med_remote);
532         mds_idmap_free(med->med_idmap);
533         med->med_idmap = NULL;
534 }
535
536 /* Establish a connection to the MDS.
537  *
538  * This will set up an export structure for the client to hold state data about
539  * that client, like open files, the last operation number it did on the server,
540  * etc.
541  */
542 static int mds_connect(struct lustre_handle *conn, struct obd_device *obd,
543                        struct obd_uuid *cluuid, struct obd_connect_data *data,
544                        unsigned long flags)
545 {
546         struct mds_export_data *med;
547         struct mds_client_data *mcd;
548         struct obd_export *exp;
549         int rc;
550         ENTRY;
551
552         if (!conn || !obd || !cluuid)
553                 RETURN(-EINVAL);
554
555         /* XXX There is a small race between checking the list and adding a new
556          * connection for the same UUID, but the real threat (list corruption
557          * when multiple different clients connect) is solved.
558          *
559          * There is a second race between adding the export to the list, and
560          * filling in the client data below.  Hence skipping the case of NULL
561          * mcd above.  We should already be controlling multiple connects at the
562          * client, and we can't hold the spinlock over memory allocations
563          * without risk of deadlocking.
564          */
565         rc = class_connect(conn, obd, cluuid);
566         if (rc)
567                 RETURN(rc);
568         exp = class_conn2export(conn);
569         
570         LASSERT(exp != NULL);
571         med = &exp->exp_mds_data;
572
573         OBD_ALLOC(mcd, sizeof(*mcd));
574         if (!mcd) {
575                 CERROR("%s: out of memory for client data.\n",
576                         obd->obd_name);
577                 GOTO(out, rc = -ENOMEM);
578         }
579
580         memcpy(mcd->mcd_uuid, cluuid, sizeof(mcd->mcd_uuid));
581         med->med_mcd = mcd;
582
583         rc = mds_client_add(obd, &obd->u.mds, med, -1);
584         if (rc)
585                 GOTO(out, rc);
586        
587         EXIT;
588 out:
589         if (rc) {
590                 if (mcd)
591                         OBD_FREE(mcd, sizeof(*mcd));
592                 class_disconnect(exp, 0);
593         } else {
594                 class_export_put(exp);
595         }
596         return rc;
597 }
598
599 static int mds_connect_post(struct obd_export *exp, unsigned initial,
600                             unsigned long flags)
601 {
602         struct obd_device *obd = exp->exp_obd;
603         struct mds_obd *mds = &obd->u.mds;
604         struct mds_export_data *med;
605         struct mds_client_data *mcd;
606         int rc = 0;
607         ENTRY;
608
609         med = &exp->exp_mds_data;
610         mcd = med->med_mcd;
611
612         if (initial) {
613                 /* some one reconnect initially, we have to reset
614                  * data existing export can have. bug 6102 */
615                 if (mcd->mcd_last_xid != 0)
616                         CDEBUG(D_HA, "initial reconnect to existing export\n");
617                 mcd->mcd_last_transno = 0;
618                 mcd->mcd_last_xid = 0;
619                 mcd->mcd_last_close_xid = 0;
620                 mcd->mcd_last_result = 0;
621                 mcd->mcd_last_data = 0;
622         }
623
624         if (!(flags & OBD_OPT_MDS_CONNECTION)) {
625                 if (!(exp->exp_flags & OBD_OPT_REAL_CLIENT)) {
626                         atomic_inc(&mds->mds_real_clients);
627                         CDEBUG(D_OTHER,"%s: peer from %s is real client (%d)\n",
628                                obd->obd_name, exp->exp_client_uuid.uuid,
629                                atomic_read(&mds->mds_real_clients));
630                         exp->exp_flags |= OBD_OPT_REAL_CLIENT;
631                 }
632                 if (mds->mds_md_name)
633                         rc = mds_md_connect(obd, mds->mds_md_name);
634         }
635         RETURN(rc);
636 }
637
638 static int mds_init_export(struct obd_export *exp)
639 {
640         struct mds_export_data *med = &exp->exp_mds_data;
641
642         INIT_LIST_HEAD(&med->med_open_head);
643         spin_lock_init(&med->med_open_lock);
644         return 0;
645 }
646
647 static int mds_destroy_export(struct obd_export *export)
648 {
649         struct obd_device *obd = export->exp_obd;
650         struct mds_export_data *med = &export->exp_mds_data;
651         struct lvfs_run_ctxt saved;
652         int rc = 0;
653         ENTRY;
654
655         mds_free_export_data(med);
656         target_destroy_export(export);
657
658         if (obd_uuid_equals(&export->exp_client_uuid, &obd->obd_uuid))
659                 GOTO(out, 0);
660
661         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
662
663         /* Close any open files (which may also cause orphan unlinking). */
664         spin_lock(&med->med_open_lock);
665         while (!list_empty(&med->med_open_head)) {
666                 struct list_head *tmp = med->med_open_head.next;
667                 struct mds_file_data *mfd =
668                         list_entry(tmp, struct mds_file_data, mfd_list);
669                 struct lustre_id sid;
670                 
671                 BDEVNAME_DECLARE_STORAGE(btmp);
672
673                 /* bug 1579: fix force-closing for 2.5 */
674                 struct dentry *dentry = mfd->mfd_dentry;
675
676                 list_del(&mfd->mfd_list);
677                 spin_unlock(&med->med_open_lock);
678
679                 down(&dentry->d_inode->i_sem);
680                 rc = mds_read_inode_sid(obd, dentry->d_inode, &sid);
681                 up(&dentry->d_inode->i_sem);
682                 if (rc) {
683                         CERROR("Can't read inode self id, inode %lu, "
684                                "rc %d\n", dentry->d_inode->i_ino, rc);
685                         memset(&sid, 0, sizeof(sid));
686                 }
687
688                 /* If you change this message, be sure to update
689                  * replay_single:test_46 */
690                 CERROR("force closing client file handle for %.*s (%s:"
691                        DLID4")\n", dentry->d_name.len, dentry->d_name.name,
692                        ll_bdevname(dentry->d_inode->i_sb, btmp),
693                        OLID4(&sid));
694                 
695                 /* child inode->i_alloc_sem protects orphan_dec_test and
696                  * is_orphan race, mds_mfd_close drops it */
697                 DOWN_WRITE_I_ALLOC_SEM(dentry->d_inode);
698                 rc = mds_mfd_close(NULL, 0, obd, mfd,
699                                    !(export->exp_flags & OBD_OPT_FAILOVER));
700                 if (rc)
701                         CDEBUG(D_INODE, "Error closing file: %d\n", rc);
702                 spin_lock(&med->med_open_lock);
703         }
704         spin_unlock(&med->med_open_lock);
705         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
706
707         EXIT;
708 out:
709         mds_client_free(export, !(export->exp_flags & OBD_OPT_FAILOVER));
710         return rc;
711 }
712
713 static int mds_disconnect(struct obd_export *exp, unsigned long flags)
714 {
715         unsigned long irqflags;
716         struct obd_device *obd;
717         struct mds_obd *mds;
718         int rc;
719         ENTRY;
720
721         LASSERT(exp != NULL);
722         obd = class_exp2obd(exp);
723         if (obd == NULL) {
724                 CDEBUG(D_IOCTL, "invalid client cookie "LPX64"\n",
725                        exp->exp_handle.h_cookie);
726                 RETURN(-EINVAL);
727         }
728         mds = &obd->u.mds;
729
730         /*
731          * suppress any inter-mds requests durring disconnecting lmv if this is
732          * detected --force mode. This is needed to avoid endless recovery.
733          */
734         if (atomic_read(&mds->mds_real_clients) > 0 &&
735             !(exp->exp_flags & OBD_OPT_REAL_CLIENT))
736                 flags |= OBD_OPT_FORCE;
737                                                                                               
738         if (!(exp->exp_flags & OBD_OPT_REAL_CLIENT)
739             && !atomic_read(&mds->mds_real_clients)) {
740                 /* there was no client at all */
741                 mds_md_disconnect(obd, flags);
742         }
743
744         if ((exp->exp_flags & OBD_OPT_REAL_CLIENT)
745             && atomic_dec_and_test(&mds->mds_real_clients)) {
746                 /* time to drop LMV connections */
747                 CDEBUG(D_OTHER, "%s: last real client %s disconnected.  "
748                        "Disconnnect from LMV now\n",
749                        obd->obd_name, exp->exp_client_uuid.uuid);
750                 mds_md_disconnect(obd, flags);
751         }
752
753         spin_lock_irqsave(&exp->exp_lock, irqflags);
754         exp->exp_flags = flags;
755         spin_unlock_irqrestore(&exp->exp_lock, irqflags);
756
757         /* disconnect early so that clients can't keep using export */
758         rc = class_disconnect(exp, flags);
759         ldlm_cancel_locks_for_export(exp);
760
761         /* complete all outstanding replies */
762         spin_lock_irqsave(&exp->exp_lock, irqflags);
763         while (!list_empty(&exp->exp_outstanding_replies)) {
764                 struct ptlrpc_reply_state *rs =
765                         list_entry(exp->exp_outstanding_replies.next,
766                                    struct ptlrpc_reply_state, rs_exp_list);
767                 struct ptlrpc_service *svc = rs->rs_srv_ni->sni_service;
768
769                 spin_lock(&svc->srv_lock);
770                 list_del_init(&rs->rs_exp_list);
771                 ptlrpc_schedule_difficult_reply(rs);
772                 spin_unlock(&svc->srv_lock);
773         }
774         spin_unlock_irqrestore(&exp->exp_lock, irqflags);
775         RETURN(rc);
776 }
777
778 static int mds_getstatus(struct ptlrpc_request *req)
779 {
780         struct mds_obd *mds = mds_req2mds(req);
781         struct mds_body *body;
782         int rc, size;
783         ENTRY;
784
785         size = sizeof(*body);
786         
787         rc = lustre_pack_reply(req, 1, &size, NULL);
788         if (rc || OBD_FAIL_CHECK(OBD_FAIL_MDS_GETSTATUS_PACK)) {
789                 CERROR("mds: out of memory for message: size=%d\n", size);
790                 req->rq_status = -ENOMEM;       /* superfluous? */
791                 RETURN(-ENOMEM);
792         }
793
794         body = lustre_msg_buf(req->rq_repmsg, 0, sizeof(*body));
795         body->valid |= OBD_MD_FID;
796         
797         memcpy(&body->id1, &mds->mds_rootid, sizeof(body->id1));
798
799         /*
800          * the last_committed and last_xid fields are filled in for all replies
801          * already - no need to do so here also.
802          */
803         RETURN(0);
804 }
805
806 int mds_blocking_ast(struct ldlm_lock *lock, struct ldlm_lock_desc *desc,
807                      void *data, int flag)
808 {
809         int do_ast;
810         ENTRY;
811
812         if (flag == LDLM_CB_CANCELING) {
813                 /* Don't need to do anything here. */
814                 RETURN(0);
815         }
816
817         /* XXX layering violation!  -phil */
818         lock_res_and_lock(lock);
819         
820         /*
821          * get this: if mds_blocking_ast is racing with mds_intent_policy, such
822          * that mds_blocking_ast is called just before l_i_p takes the ns_lock,
823          * then by the time we get the lock, we might not be the correct
824          * blocking function anymore.  So check, and return early, if so.
825          */
826         if (lock->l_blocking_ast != mds_blocking_ast) {
827                 unlock_res_and_lock(lock);
828                 RETURN(0);
829         }
830
831         lock->l_flags |= LDLM_FL_CBPENDING;
832         do_ast = (!lock->l_readers && !lock->l_writers);
833         unlock_res_and_lock(lock);
834
835         if (do_ast) {
836                 struct lustre_handle lockh;
837                 int rc;
838
839                 LDLM_DEBUG(lock, "already unused, calling ldlm_cli_cancel");
840                 ldlm_lock2handle(lock, &lockh);
841                 rc = ldlm_cli_cancel(&lockh);
842                 if (rc < 0)
843                         CERROR("ldlm_cli_cancel: %d\n", rc);
844         } else {
845                 LDLM_DEBUG(lock, "Lock still has references, will be "
846                            "cancelled later");
847         }
848         RETURN(0);
849 }
850
851 static int mds_convert_md(struct obd_device *obd, struct inode *inode,
852                           void *md, int size, int mea)
853 {
854         int rc = size;
855         
856         if (S_ISREG(inode->i_mode)) {
857                 rc = mds_convert_lov_ea(obd, inode, md, size);
858         } else if (S_ISDIR(inode->i_mode)) {
859                 if (mea) {
860                         rc = mds_convert_mea_ea(obd, inode, md, size);
861                 } else {
862                         rc = mds_convert_lov_ea(obd, inode, md, size);
863                 }
864                 if (rc == -EINVAL) {
865                         CERROR("Invalid EA format (nor LOV or MEA) "
866                                "is detected. Inode %lu/%u\n",
867                                inode->i_ino, inode->i_generation);
868                 }
869         }
870         return rc;
871 }
872
873 int mds_get_md(struct obd_device *obd, struct inode *inode,
874                void *md, int *size, int lock, int mea)
875 {
876         int lmm_size;
877         int rc = 0;
878         ENTRY;
879
880         if (lock)
881                 down(&inode->i_sem);
882
883         rc = fsfilt_get_md(obd, inode, md, *size,
884                            (mea ? EA_MEA : EA_LOV));
885         if (rc < 0) {
886                 CERROR("Error %d reading eadata for ino %lu\n",
887                        rc, inode->i_ino);
888         } else if (rc > 0) {
889                 lmm_size = rc;
890                 rc = mds_convert_md(obd, inode, md,
891                                     lmm_size, mea);
892                 if (rc == 0) {
893                         *size = lmm_size;
894                         rc = lmm_size;
895                 } else if (rc > 0) {
896                         *size = rc;
897                 }
898         }
899         if (lock)
900                 up(&inode->i_sem);
901
902         RETURN(rc);
903 }
904
905 /* Call with lock=1 if you want mds_pack_md to take the i_sem.
906  * Call with lock=0 if the caller has already taken the i_sem. */
907 int mds_pack_md(struct obd_device *obd, struct lustre_msg *msg, int offset,
908                 struct mds_body *body, struct inode *inode, int lock, int mea)
909 {
910         struct mds_obd *mds = &obd->u.mds;
911         int rc, lmm_size;
912         void *lmm;
913         ENTRY;
914
915         lmm = lustre_msg_buf(msg, offset, 0);
916         if (lmm == NULL) {
917                 /* Some problem with getting eadata when I sized the reply
918                  * buffer... */
919                 CDEBUG(D_INFO, "no space reserved for inode %lu MD\n",
920                        inode->i_ino);
921                 RETURN(0);
922         }
923         lmm_size = msg->buflens[offset];
924
925         /* I don't really like this, but it is a sanity check on the client
926          * MD request.  However, if the client doesn't know how much space
927          * to reserve for the MD, it shouldn't be bad to have too much space.
928          */
929         if (lmm_size > mds->mds_max_mdsize) {
930                 CWARN("Reading MD for inode %lu of %d bytes > max %d\n",
931                        inode->i_ino, lmm_size, mds->mds_max_mdsize);
932                 // RETURN(-EINVAL);
933         }
934
935         rc = mds_get_md(obd, inode, lmm, &lmm_size, lock, mea);
936         if (rc > 0) {
937                 body->valid |= S_ISDIR(inode->i_mode) ?
938                         OBD_MD_FLDIREA : OBD_MD_FLEASIZE;
939                 
940                 if (mea)
941                         body->valid |= OBD_MD_MEA;
942                 
943                 body->eadatasize = lmm_size;
944                 rc = 0;
945         }
946
947         RETURN(rc);
948 }
949
950 int mds_pack_link(struct dentry *dentry, struct ptlrpc_request *req,
951                   struct mds_body *repbody, int reply_off)
952 {
953         struct inode *inode = dentry->d_inode;
954         char *symname;
955         int len, rc;
956         ENTRY;
957
958         symname = lustre_msg_buf(req->rq_repmsg, reply_off + 1,0);
959         LASSERT(symname != NULL);
960         len = req->rq_repmsg->buflens[reply_off + 1];
961         
962         rc = inode->i_op->readlink(dentry, symname, len);
963         if (rc < 0) {
964                 CERROR("readlink failed: %d\n", rc);
965         } else if (rc != len - 1) {
966                 CERROR ("Unexpected readlink rc %d: expecting %d\n",
967                         rc, len - 1);
968                 rc = -EINVAL;
969         } else {
970                 CDEBUG(D_INODE, "read symlink dest %s\n", symname);
971                 repbody->valid |= OBD_MD_LINKNAME;
972                 repbody->eadatasize = rc + 1;
973                 symname[rc] = 0;        /* NULL terminate */
974                 rc = 0;
975         }
976
977         RETURN(rc);
978 }
979
980 int mds_pack_xattr(struct dentry *dentry, struct ptlrpc_request *req,
981                    struct mds_body *repbody, int req_off, int reply_off)
982 {
983         struct inode *inode = dentry->d_inode;
984         char *ea_name;
985         void *value = NULL;
986         int len, rc;
987         ENTRY;
988
989         ea_name = lustre_msg_string(req->rq_reqmsg, req_off + 1, 0);
990         len = req->rq_repmsg->buflens[reply_off + 1];
991         if (len != 0)
992                 value = lustre_msg_buf(req->rq_repmsg, reply_off + 1, len);
993
994         rc = -EOPNOTSUPP;
995
996         if (!strcmp(ea_name, XATTR_NAME_LUSTRE_ACL)) {
997                 struct rmtacl_upcall_desc desc;
998
999                 if (len != LUSTRE_ACL_SIZE_MAX || !value) {
1000                         CERROR("no reply buffer prepared\n");
1001                         RETURN(-EFAULT);
1002                 }
1003
1004                 memset(&desc, 0, sizeof(desc));
1005                 desc.get = 1;
1006                 desc.cmd = lustre_msg_string(req->rq_reqmsg, req_off + 2, 0);
1007                 desc.cmdlen =  req->rq_reqmsg->buflens[req_off + 2];
1008                 desc.res = (char *) value;
1009                 desc.reslen = LUSTRE_ACL_SIZE_MAX;
1010
1011                 mds_do_remote_acl_upcall(&desc);
1012
1013                 if (desc.upcall_status)
1014                         RETURN(desc.upcall_status);
1015
1016                 if (desc.reslen > LUSTRE_ACL_SIZE_MAX) {
1017                         CERROR("downcall claim reslen %u\n", desc.reslen);
1018                         RETURN(-EINVAL);
1019                 }
1020                 /* like remote setfacl, steal "flags" in mds_body as the
1021                  * exececution status
1022                  */
1023                 repbody->flags = desc.status;
1024                 repbody->valid |= OBD_MD_FLXATTR;
1025                 repbody->eadatasize = desc.reslen;
1026
1027                 RETURN(0);
1028         }
1029
1030         if (inode->i_op && inode->i_op->getxattr)
1031                 rc = inode->i_op->getxattr(dentry, ea_name, value, len);
1032
1033         if (rc < 0) {
1034                 if (rc != -ENODATA && rc != -EOPNOTSUPP)
1035                         CERROR("getxattr failed: %d", rc);
1036         } else {
1037                 repbody->valid |= OBD_MD_FLXATTR;
1038                 repbody->eadatasize = rc;
1039                 rc = 0;
1040         }
1041
1042         RETURN(rc);
1043 }
1044
1045 int mds_pack_xattr_list(struct dentry *dentry, struct ptlrpc_request *req,
1046                         struct mds_body *repbody, int reply_off)
1047 {
1048         struct inode *inode = dentry->d_inode;        
1049         void *value = NULL;
1050         int len, rc;
1051         ENTRY;
1052
1053         len = req->rq_repmsg->buflens[reply_off + 1];
1054         if (len != 0)
1055                 value = lustre_msg_buf(req->rq_repmsg, reply_off + 1, len);
1056
1057         rc = -EOPNOTSUPP;
1058         if (inode->i_op && inode->i_op->getxattr) 
1059                 rc = inode->i_op->listxattr(dentry, value, len);
1060
1061         if (rc < 0) {
1062                 CERROR("listxattr failed: %d", rc);
1063         } else {
1064                 repbody->valid |= OBD_MD_FLXATTRLIST;
1065                 repbody->eadatasize = rc;
1066                 rc = 0;
1067         }
1068         RETURN(rc);
1069 }
1070
1071 static
1072 int mds_pack_posix_acl(struct lustre_msg *repmsg, int *offset,
1073                        struct mds_body *body, struct inode *inode)
1074 {
1075         struct dentry de = { .d_inode = inode };
1076         __u32 buflen, *sizep;
1077         void *buf;
1078         int size, pack_off = *offset;
1079         ENTRY;
1080
1081         sizep = lustre_msg_buf(repmsg, pack_off++, 4);
1082         if (!sizep) {
1083                 CERROR("can't locate returned acl size buf\n");
1084                 RETURN(-EPROTO);
1085         }
1086         
1087         if (!inode->i_op->getxattr)
1088                 RETURN(0);
1089
1090         buflen = repmsg->buflens[pack_off];
1091         buf = lustre_msg_buf(repmsg, pack_off++, buflen);
1092
1093         size = inode->i_op->getxattr(&de, XATTR_NAME_ACL_ACCESS, buf, buflen);
1094         if (size == -ENODATA || size == -EOPNOTSUPP)
1095                 RETURN(0);
1096         if (size < 0)
1097                 RETURN(size);
1098         LASSERT(size);
1099         body->valid |= OBD_MD_FLACL;
1100
1101         *sizep = cpu_to_le32(size);
1102         
1103         *offset = pack_off;
1104         RETURN(0);
1105 }
1106
1107 int mds_pack_remote_perm(struct ptlrpc_request *req, int *reply_off,
1108                          struct mds_body *body, struct inode *inode)
1109 {
1110         struct lustre_sec_desc *lsd;
1111         struct mds_remote_perm *perm;
1112         int pack_off = *reply_off;
1113         __u32 lsd_perms;
1114
1115         LASSERT(inode->i_op);
1116         LASSERT(inode->i_op->permission);
1117         LASSERT(req->rq_export->exp_mds_data.med_remote);
1118
1119         perm = (struct mds_remote_perm *)
1120                        lustre_msg_buf(req->rq_repmsg, pack_off++, sizeof(perm));
1121         if (!perm)
1122                 return -EINVAL;
1123
1124         memset(perm, 0, sizeof(*perm));
1125
1126         /* obtain authenticated uid/gid and LSD permissions, which
1127          * might be different from current process context, from LSD
1128          */
1129         lsd = mds_get_lsd(current->uid);
1130         if (!lsd) {
1131                 CWARN("can't LSD of uid %u\n", current->uid);
1132                 RETURN(-EPERM);
1133         }
1134
1135         perm->mrp_auth_uid = lsd->lsd_uid;
1136         perm->mrp_auth_gid = lsd->lsd_gid;
1137
1138         lsd_perms = mds_lsd_get_perms(lsd, 1, 0, req->rq_peer.peer_id.nid);
1139         if (lsd_perms & LSD_PERM_SETUID)
1140                 perm->mrp_allow_setuid = 1;
1141         if (lsd_perms & LSD_PERM_SETGID)
1142                 perm->mrp_allow_setgid = 1;
1143
1144         mds_put_lsd(lsd);
1145
1146         /* permission bits of current user
1147          * XXX this is low efficient, could we do it in one blow?
1148          */
1149         if (inode->i_op->permission(inode, MAY_EXEC, NULL) == 0)
1150                 perm->mrp_perm |= MAY_EXEC;
1151         if (inode->i_op->permission(inode, MAY_WRITE, NULL) == 0)
1152                 perm->mrp_perm |= MAY_WRITE;
1153         if (inode->i_op->permission(inode, MAY_READ, NULL) == 0)
1154                 perm->mrp_perm |= MAY_READ;
1155
1156         body->valid |= (OBD_MD_FLACL | OBD_MD_FLRMTACL);
1157         
1158         *reply_off = pack_off;
1159
1160         RETURN(0);
1161 }
1162
1163 int mds_pack_acl(struct ptlrpc_request *req, int *reply_off,
1164                  struct mds_body *body, struct inode *inode)
1165 {
1166         int rc;
1167
1168         if (!req->rq_export->exp_mds_data.med_remote)
1169                 rc = mds_pack_posix_acl(req->rq_repmsg, reply_off, body, inode);
1170         else
1171                 rc = mds_pack_remote_perm(req, reply_off, body, inode);
1172
1173         return rc;
1174 }
1175
1176 static int mds_getattr_internal(struct obd_device *obd, struct dentry *dentry,
1177                                 struct ptlrpc_request *req, int req_off,
1178                                 struct mds_body *reqbody, int reply_off,
1179                                 struct mds_req_sec_desc *rsd)
1180 {
1181         struct mds_export_data *med = &req->rq_export->u.eu_mds_data;
1182         struct inode *inode = dentry->d_inode;
1183         struct mds_body *body;
1184         int rc = 0, offset = 0;
1185         ENTRY;
1186
1187         if (inode == NULL && !(dentry->d_flags & DCACHE_CROSS_REF))
1188                 RETURN(-ENOENT);
1189
1190         body = lustre_msg_buf(req->rq_repmsg, reply_off, sizeof(*body));
1191         LASSERT(body != NULL);                 /* caller prepped reply */
1192
1193         if (dentry->d_flags & DCACHE_CROSS_REF) {
1194                 mds_pack_dentry2body(obd, body, dentry,
1195                                      (reqbody->valid & OBD_MD_FID) ? 1 : 0);
1196                 CDEBUG(D_OTHER, "cross reference: "DLID4"\n",
1197                        OLID4(&body->id1));
1198                 RETURN(0);
1199         }
1200         
1201         mds_pack_inode2body(obd, body, inode,
1202                             (reqbody->valid & OBD_MD_FID) ? 1 : 0);
1203
1204         if ((S_ISREG(inode->i_mode) && (reqbody->valid & OBD_MD_FLEASIZE)) ||
1205             (S_ISDIR(inode->i_mode) && (reqbody->valid & OBD_MD_FLDIREA))) {
1206             
1207                 /* guessing what kind og attribute do we need. */
1208                 int is_mea = (S_ISDIR(inode->i_mode) && 
1209                     (reqbody->valid & OBD_MD_MEA) != 0);
1210                 
1211                 rc = mds_pack_md(obd, req->rq_repmsg, reply_off + 1, 
1212                                  body, inode, 1, is_mea);
1213
1214                 /* if we have LOV EA data, the OST holds size, atime, mtime. */
1215                 if (!(body->valid & OBD_MD_FLEASIZE) &&
1216                     !(body->valid & OBD_MD_FLDIREA))
1217                         body->valid |= (OBD_MD_FLSIZE | OBD_MD_FLBLOCKS |
1218                                         OBD_MD_FLATIME | OBD_MD_FLMTIME);
1219         } else if (S_ISLNK(inode->i_mode) &&
1220                    (reqbody->valid & OBD_MD_LINKNAME) != 0) {
1221                 rc = mds_pack_link(dentry, req, body, reply_off);
1222         } else if (reqbody->valid & OBD_MD_FLXATTR) {
1223                 rc = mds_pack_xattr(dentry, req, body, req_off, reply_off);
1224         } else if (reqbody->valid & OBD_MD_FLXATTRLIST) {
1225                 rc = mds_pack_xattr_list(dentry, req, body, reply_off);
1226         }
1227         
1228         offset = reply_off + ((reqbody->valid & OBD_MD_FLEASIZE) ? 2 : 1);
1229         if (reqbody->valid & OBD_MD_FLACL) {
1230                 rc = mds_pack_acl(req, &offset, body, inode);
1231         }                
1232
1233         if (reqbody->valid & OBD_MD_FLKEY) {
1234                 rc = mds_pack_gskey(obd, req->rq_repmsg, &offset, 
1235                                     body, inode);
1236         }
1237         
1238         mds_pack_audit(obd, inode, body);
1239
1240         if (rc == 0)
1241                 mds_body_do_reverse_map(med, body);
1242
1243         RETURN(rc);
1244 }
1245
1246 static int mds_getattr_pack_msg_cf(struct ptlrpc_request *req,
1247                                    struct dentry *dentry,
1248                                    int offset)
1249 {
1250         int rc = 0, size[1] = {sizeof(struct mds_body)};
1251         ENTRY;
1252
1253         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_GETATTR_PACK)) {
1254                 CERROR("failed MDS_GETATTR_PACK test\n");
1255                 req->rq_status = -ENOMEM;
1256                 RETURN(-ENOMEM);
1257         }
1258
1259         rc = lustre_pack_reply(req, 1, size, NULL);
1260         if (rc) {
1261                 CERROR("lustre_pack_reply failed: rc %d\n", rc);
1262                 GOTO(out, req->rq_status = rc);
1263         }
1264
1265         EXIT;
1266 out:
1267         return rc;
1268 }
1269
1270 static int mds_getattr_pack_msg(struct ptlrpc_request *req, struct dentry *de,
1271                                 int offset)
1272 {
1273         struct inode *inode = de->d_inode;
1274         struct mds_obd *mds = mds_req2mds(req);
1275         struct mds_body *body;
1276         int rc = 0, size[4] = {sizeof(*body)}, bufcount = 1;
1277         ENTRY;
1278
1279         body = lustre_msg_buf(req->rq_reqmsg, offset, sizeof(*body));
1280         LASSERT(body != NULL);                 /* checked by caller */
1281         LASSERT_REQSWABBED(req, offset);       /* swabbed by caller */
1282
1283         if ((S_ISREG(inode->i_mode) && (body->valid & OBD_MD_FLEASIZE)) ||
1284             (S_ISDIR(inode->i_mode) && (body->valid & OBD_MD_FLDIREA))) {
1285                 int rc;
1286                 
1287                 down(&inode->i_sem);
1288                 rc = fsfilt_get_md(req->rq_export->exp_obd, inode, NULL, 0,
1289                                    ((body->valid & OBD_MD_MEA) ? EA_MEA : EA_LOV));
1290                 up(&inode->i_sem);
1291                 if (rc < 0) {
1292                         if (rc != -ENODATA && rc != -EOPNOTSUPP)
1293                                 CERROR("error getting inode %lu MD: rc = %d\n",
1294                                        inode->i_ino, rc);
1295                         size[bufcount] = 0;
1296                 } else if (rc > mds->mds_max_mdsize) {
1297                         size[bufcount] = 0;
1298                         CERROR("MD size %d larger than maximum possible %u\n",
1299                                rc, mds->mds_max_mdsize);
1300                 } else {
1301                         size[bufcount] = rc;
1302                 }
1303                 bufcount++;
1304         } else if (S_ISLNK(inode->i_mode) && (body->valid & OBD_MD_LINKNAME)) {
1305                 if (inode->i_size + 1 != body->eadatasize)
1306                         CERROR("symlink size: %Lu, reply space: %d\n",
1307                                inode->i_size + 1, body->eadatasize);
1308                 size[bufcount] = min_t(int, inode->i_size+1, body->eadatasize);
1309                 bufcount++;
1310                 CDEBUG(D_INODE, "symlink size: %Lu, reply space: %d\n",
1311                        inode->i_size + 1, body->eadatasize);
1312         } else if ((body->valid & OBD_MD_FLXATTR)) {
1313                 char *ea_name = lustre_msg_string(req->rq_reqmsg, 
1314                                                   offset + 1, 0);
1315                 rc = -EOPNOTSUPP;
1316
1317                 if (!strcmp(ea_name, XATTR_NAME_LUSTRE_ACL)) {
1318                         size[bufcount] = LUSTRE_ACL_SIZE_MAX;
1319                 } else {
1320                         if (inode->i_op && inode->i_op->getxattr)
1321                                 rc = inode->i_op->getxattr(de, ea_name,
1322                                                            NULL, 0);
1323
1324                         if (rc < 0) {
1325                                 if (rc != -ENODATA && rc != -EOPNOTSUPP)
1326                                         CERROR("error get inode %lu EA: %d\n",
1327                                                inode->i_ino, rc);
1328                                 size[bufcount] = 0;
1329                         } else {
1330                                 size[bufcount] = min_t(int,
1331                                                        body->eadatasize, rc);
1332                         }
1333                 }
1334                 bufcount++;
1335         } else if (body->valid & OBD_MD_FLXATTRLIST) {
1336                 rc = -EOPNOTSUPP;
1337                 if (inode->i_op && inode->i_op->getxattr) 
1338                         rc = inode->i_op->listxattr(de, NULL, 0);
1339
1340                 if (rc < 0) {
1341                         if (rc != -ENODATA && rc != -EOPNOTSUPP)
1342                                 CERROR("error getting inode %lu EA: rc = %d\n",
1343                                        inode->i_ino, rc);
1344                         size[bufcount] = 0;
1345                 } else {
1346                         size[bufcount] = min_t(int, body->eadatasize, rc);
1347                 }
1348                 bufcount++;
1349         }
1350         
1351         /* may co-exist with OBD_MD_FLEASIZE */
1352         if (body->valid & OBD_MD_FLACL) {
1353                 if (req->rq_export->exp_mds_data.med_remote) {
1354                         size[bufcount++] = sizeof(struct mds_remote_perm);
1355                 } else {
1356                         size[bufcount++] = sizeof(int);
1357                         size[bufcount++] = xattr_acl_size(LL_ACL_MAX_ENTRIES);
1358                 }
1359         }
1360
1361         if (body->valid & OBD_MD_FLKEY) {
1362                 size[bufcount++] = sizeof(int);
1363                 size[bufcount++] = sizeof(struct crypto_key);
1364         }
1365
1366         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_GETATTR_PACK)) {
1367                 CERROR("failed MDS_GETATTR_PACK test\n");
1368                 req->rq_status = -ENOMEM;
1369                 GOTO(out, rc = -ENOMEM);
1370         }
1371
1372         rc = lustre_pack_reply(req, bufcount, size, NULL);
1373         if (rc) {
1374                 CERROR("out of memory\n");
1375                 GOTO(out, req->rq_status = rc);
1376         }
1377
1378         EXIT;
1379  out:
1380         return rc;
1381 }
1382
1383 int mds_check_mds_num(struct obd_device *obd, struct inode *inode,
1384                       char *name, int namelen)
1385 {
1386         struct mea *mea = NULL;
1387         int mea_size, rc = 0;
1388         ENTRY;
1389         
1390         rc = mds_md_get_attr(obd, inode, &mea, &mea_size);
1391         if (rc)
1392                 RETURN(rc);
1393         if (mea != NULL && mea->mea_count) {
1394                 /*
1395                  * dir is already splitted, check if requested filename should
1396                  * live at this MDS or at another one.
1397                  */
1398                 int i = mea_name2idx(mea, name, namelen - 1);
1399                 if (mea->mea_master != id_group(&mea->mea_ids[i])) {
1400                         CDEBUG(D_OTHER,
1401                                "inapropriate MDS(%d) for %s. should be "
1402                                "%lu(%d)\n", mea->mea_master, name, 
1403                                (unsigned long)id_group(&mea->mea_ids[i]), i);
1404                         rc = -ERESTART;
1405                 }
1406         }
1407
1408         if (mea)
1409                 OBD_FREE(mea, mea_size);
1410         RETURN(rc);
1411 }
1412
1413 int mds_getattr_size(struct obd_device *obd, struct dentry *dentry,
1414                      struct ptlrpc_request *req, struct mds_body *body)
1415 {
1416         struct inode *inode = dentry->d_inode;
1417         ENTRY;
1418
1419         LASSERT(body != NULL);
1420
1421         if (dentry->d_inode == NULL || !S_ISREG(inode->i_mode))
1422                 RETURN(0);
1423         
1424         if (obd->obd_recovering) {
1425                 CDEBUG(D_INODE, "size for "DLID4" is unknown yet (recovering)\n",
1426                        OLID4(&body->id1));
1427                 RETURN(0);
1428         }
1429
1430         if (atomic_read(&inode->i_writecount)) {
1431                 /* some one has opened the file for write.
1432                  * mds doesn't know actual size */
1433                 CDEBUG(D_INODE, "MDS doesn't know actual size for "DLID4"\n",
1434                        OLID4(&body->id1));
1435                 RETURN(0);
1436         }
1437         CDEBUG(D_INODE, "MDS returns "LPD64"/"LPD64" for"DLID4"\n",
1438                body->size, body->blocks, OLID4(&body->id1));
1439         body->valid |= OBD_MD_FLSIZE | OBD_MD_FLBLOCKS;
1440         RETURN(0);
1441 }
1442
1443 static int mds_getattr_lock(struct ptlrpc_request *req, int offset,
1444                             struct lustre_handle *child_lockh, int child_part)
1445 {
1446         struct obd_device *obd = req->rq_export->exp_obd;
1447         struct mds_obd *mds = &obd->u.mds;
1448         struct ldlm_reply *rep = NULL;
1449         struct lvfs_run_ctxt saved;
1450         struct mds_req_sec_desc *rsd;
1451         struct mds_body *body;
1452         struct dentry *dparent = NULL, *dchild = NULL;
1453         struct lvfs_ucred uc = {NULL, NULL,};
1454         struct lustre_handle parent_lockh[2] = {{0}, {0}};
1455         unsigned int namesize;
1456         int rc = 0, cleanup_phase = 0, resent_req = 0, update_mode, reply_offset;
1457         char *name = NULL;
1458         ENTRY;
1459
1460         LASSERT(!strcmp(obd->obd_type->typ_name, OBD_MDS_DEVICENAME));
1461         MD_COUNTER_INCREMENT(obd, getattr_lock);
1462
1463         rsd = lustre_swab_mds_secdesc(req, MDS_REQ_SECDESC_OFF);
1464         if (!rsd) {
1465                 CERROR("Can't unpack security desc\n");
1466                 RETURN(-EFAULT);
1467         }
1468
1469         /* swab now, before anyone looks inside the request. */
1470         body = lustre_swab_reqbuf(req, offset, sizeof(*body),
1471                                   lustre_swab_mds_body);
1472         if (body == NULL) {
1473                 CERROR("Can't swab mds_body\n");
1474                 GOTO(cleanup, rc = -EFAULT);
1475         }
1476
1477         LASSERT_REQSWAB(req, offset + 1);
1478         name = lustre_msg_string(req->rq_reqmsg, offset + 1, 0);
1479         if (name == NULL) {
1480                 CERROR("Can't unpack name\n");
1481                 GOTO(cleanup, rc = -EFAULT);
1482         }
1483         namesize = req->rq_reqmsg->buflens[offset + 1];
1484
1485         /* namesize less than 2 means we have empty name, probably came from
1486            revalidate by cfid, so no point in having name to be set */
1487         if (namesize <= 1)
1488                 name = NULL;
1489
1490         LASSERT (offset == 1 || offset == 3);
1491         if (offset == 3) {
1492                 rep = lustre_msg_buf(req->rq_repmsg, 0, sizeof (*rep));
1493                 reply_offset = 1;
1494         } else {
1495                 reply_offset = 0;
1496         }
1497
1498         rc = mds_init_ucred(&uc, req, rsd);
1499         if (rc) {
1500                 if (child_lockh->cookie == 0)
1501                         mds_audit_auth(req, &uc, AUDIT_STAT, &body->id1, 
1502                                        name, namesize);
1503                 GOTO(cleanup, rc);
1504         }
1505
1506         push_ctxt(&saved, &obd->obd_lvfs_ctxt, &uc);
1507         cleanup_phase = 1; /* kernel context */
1508         intent_set_disposition(rep, DISP_LOOKUP_EXECD);
1509
1510         LASSERT(namesize > 0);
1511         if (child_lockh->cookie != 0) {
1512                 LASSERT(lustre_msg_get_flags(req->rq_reqmsg) & MSG_RESENT);
1513                 resent_req = 1;
1514         }
1515 #if HAVE_LOOKUP_RAW
1516         if (body->valid == OBD_MD_FLID) {
1517                 struct mds_body *mds_reply;
1518                 int size = sizeof(*mds_reply);
1519                 struct inode *dir;
1520                 ino_t inum;
1521
1522                 dparent = mds_id2dentry(obd, &body->id1, NULL);
1523                 if (IS_ERR(dparent)) {
1524                         rc = PTR_ERR(dparent);
1525                         GOTO(cleanup, rc);
1526                 }
1527                 /*
1528                  * the user requested ONLY the inode number, so do a raw lookup.
1529                  */
1530                 rc = lustre_pack_reply(req, 1, &size, NULL);
1531                 if (rc) {
1532                         CERROR("out of memory\n");
1533                         l_dput(dparent);
1534                         GOTO(cleanup, rc);
1535                 }
1536                 dir  = dparent->d_inode;
1537                 LASSERT(dir->i_op->lookup_raw != NULL);
1538                 rc = dir->i_op->lookup_raw(dir, name, namesize - 1, &inum);
1539                 l_dput(dparent);
1540                 mds_reply = lustre_msg_buf(req->rq_repmsg, 0,
1541                                            sizeof(*mds_reply));
1542
1543                 id_ino(&mds_reply->id1) = inum;
1544                 mds_reply->valid = OBD_MD_FLID;
1545                 GOTO(cleanup, rc);
1546         }
1547 #endif
1548         if (resent_req == 0) {
1549                 LASSERT(id_fid(&body->id1) != 0);
1550                 if (name) {
1551                         rc = mds_get_parent_child_locked(obd, mds, &body->id1,
1552                                                          parent_lockh, &dparent,
1553                                                          LCK_PR, 
1554                                                          MDS_INODELOCK_UPDATE,
1555                                                          &update_mode, 
1556                                                          name, namesize,
1557                                                          child_lockh, &dchild, 
1558                                                          LCK_PR, child_part);
1559                         if (rc)
1560                                 GOTO(cleanup, rc);
1561                 
1562                         cleanup_phase = 2; /* dchild, dparent, locks */
1563                         
1564                         /*
1565                          * let's make sure this name should leave on this mds
1566                          * node.
1567                          */
1568                         rc = mds_check_mds_num(obd, dparent->d_inode, name, namesize);
1569                         if (rc)
1570                                 GOTO(cleanup, rc);
1571                 } else {
1572                         /* we have no dentry here, drop LOOKUP bit */
1573                         /* FIXME: we need MDS_INODELOCK_LOOKUP or not. */
1574                         child_part &= ~MDS_INODELOCK_LOOKUP;
1575                         CDEBUG(D_OTHER, "%s: retrieve attrs for "DLID4"\n",
1576                                obd->obd_name, OLID4(&body->id1));
1577
1578                         dchild = mds_id2locked_dentry(obd, &body->id1, NULL,
1579                                                       LCK_PR, parent_lockh,
1580                                                       &update_mode,
1581                                                       NULL, 0, 
1582                                                       MDS_INODELOCK_UPDATE);
1583                         if (IS_ERR(dchild)) {
1584                                 CERROR("can't find inode with id "DLID4", err = %d\n", 
1585                                        OLID4(&body->id1), (int)PTR_ERR(dchild));
1586                                 GOTO(cleanup, rc = PTR_ERR(dchild));
1587                         }
1588                         memcpy(child_lockh, parent_lockh, sizeof(parent_lockh[0]));
1589                 }
1590         } else {
1591                 struct ldlm_lock *granted_lock;
1592
1593                 DEBUG_REQ(D_DLMTRACE, req, "resent, not enqueuing new locks");
1594                 granted_lock = ldlm_handle2lock(child_lockh);
1595
1596                 LASSERTF(granted_lock != NULL, LPU64"/%lu lockh "LPX64"\n",
1597                          id_fid(&body->id1), (unsigned long)id_group(&body->id1),
1598                          child_lockh->cookie);
1599
1600                 if (name) {
1601                         /* usual named request */
1602                         dparent = mds_id2dentry(obd, &body->id1, NULL);
1603                         LASSERT(!IS_ERR(dparent));
1604                         dchild = ll_lookup_one_len(name, dparent, namesize - 1);
1605                         LASSERT(!IS_ERR(dchild));
1606                 } else {
1607                         /* client wants to get attr. by id */
1608                         dchild = mds_id2dentry(obd, &body->id1, NULL);
1609                         LASSERT(!IS_ERR(dchild));
1610                 }
1611                 LDLM_LOCK_PUT(granted_lock);
1612         }
1613
1614         cleanup_phase = 2; /* dchild, dparent, locks */
1615
1616         if (!DENTRY_VALID(dchild)) {
1617                 intent_set_disposition(rep, DISP_LOOKUP_NEG);
1618                 /*
1619                  * in the intent case, the policy clears this error: the
1620                  * disposition is enough.
1621                  */
1622                 rc = -ENOENT;
1623                 GOTO(cleanup, rc);
1624         } else {
1625                 intent_set_disposition(rep, DISP_LOOKUP_POS);
1626         }
1627
1628         if (req->rq_repmsg == NULL) {
1629                 if (dchild->d_flags & DCACHE_CROSS_REF)
1630                         rc = mds_getattr_pack_msg_cf(req, dchild, offset);
1631                 else
1632                         rc = mds_getattr_pack_msg(req, dchild, offset);
1633                 if (rc != 0) {
1634                         CERROR ("mds_getattr_pack_msg: %d\n", rc);
1635                         GOTO (cleanup, rc);
1636                 }
1637         }
1638
1639         rc = mds_getattr_internal(obd, dchild, req, offset, body,
1640                                   reply_offset, rsd);
1641         if (rc)
1642                 GOTO(cleanup, rc); /* returns the lock to the client */
1643
1644         /* probably MDS knows actual size? */
1645         body = lustre_msg_buf(req->rq_repmsg, reply_offset, sizeof(*body));
1646         LASSERT(body != NULL);
1647         mds_getattr_size(obd, dchild, req, body);
1648
1649         GOTO(cleanup, rc);
1650
1651  cleanup:
1652         switch (cleanup_phase) {
1653         case 2:
1654                 if (resent_req == 0) {
1655                         if (rc && DENTRY_VALID(dchild))
1656                                 ldlm_lock_decref(child_lockh, LCK_PR);
1657                         if (name)
1658                                 ldlm_lock_decref(parent_lockh, LCK_PR);
1659 #ifdef S_PDIROPS
1660                         if (parent_lockh[1].cookie != 0)
1661                                 ldlm_lock_decref(parent_lockh + 1, update_mode);
1662 #endif
1663                         if (dparent)
1664                                 l_dput(dparent);
1665
1666                         /* audit stuff for getattr */
1667                         if (dchild->d_inode)
1668                                 mds_audit_stat(req, &body->id1, dchild, rc);
1669                 }
1670                 l_dput(dchild);
1671         case 1:
1672                 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, &uc);
1673         default:
1674                 mds_exit_ucred(&uc);
1675         }
1676         return rc;
1677 }
1678
1679 static int mds_getattr(struct ptlrpc_request *req, int offset)
1680 {
1681         struct obd_device *obd = req->rq_export->exp_obd;
1682         struct lvfs_run_ctxt saved;
1683         struct dentry *de;
1684         struct mds_req_sec_desc *rsd;
1685         struct mds_body *body;
1686         struct lvfs_ucred uc = {NULL, NULL,};
1687         int rc = 0;
1688         ENTRY;
1689
1690         MD_COUNTER_INCREMENT(obd, getattr);
1691
1692         rsd = lustre_swab_mds_secdesc(req, MDS_REQ_SECDESC_OFF);
1693         if (!rsd) {
1694                 CERROR("Can't unpack security desc\n");
1695                 RETURN(-EFAULT);
1696         }
1697
1698         body = lustre_swab_reqbuf(req, offset, sizeof(*body),
1699                                   lustre_swab_mds_body);
1700         if (body == NULL) {
1701                 CERROR ("Can't unpack body\n");
1702                 RETURN (-EFAULT);
1703         }
1704
1705         rc = mds_init_ucred(&uc, req, rsd);
1706         if (rc) {
1707                 mds_exit_ucred(&uc);
1708                 RETURN(rc);
1709         }
1710
1711         push_ctxt(&saved, &obd->obd_lvfs_ctxt, &uc);
1712         de = mds_id2dentry(obd, &body->id1, NULL);
1713         if (IS_ERR(de)) {
1714                 rc = req->rq_status = PTR_ERR(de);
1715                 GOTO(out_pop, rc);
1716         }
1717
1718         rc = mds_getattr_pack_msg(req, de, offset);
1719         if (rc != 0) {
1720                 CERROR("mds_getattr_pack_msg: %d\n", rc);
1721                 GOTO(out_pop, rc);
1722         }
1723
1724         req->rq_status = mds_getattr_internal(obd, de, req, offset, body,
1725                                               0, rsd);
1726         l_dput(de);
1727
1728         EXIT;
1729 out_pop:
1730         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, &uc);
1731         mds_exit_ucred(&uc);
1732         return rc;
1733 }
1734 static int mds_access_check(struct ptlrpc_request *req, int offset)
1735 {
1736         struct obd_device *obd = req->rq_export->exp_obd;
1737         struct lvfs_run_ctxt saved;
1738         struct dentry *de;
1739         struct mds_req_sec_desc *rsd;
1740         struct mds_body *body;
1741         struct lvfs_ucred uc;
1742         int rep_size[2] = {sizeof(*body),
1743                            sizeof(struct mds_remote_perm)};
1744         int rc = 0, rep_offset;
1745         ENTRY;
1746
1747         if (!req->rq_export->exp_mds_data.med_remote) {
1748                 CERROR("from local client "LPU64"\n", req->rq_peer.peer_id.nid);
1749                 RETURN(-EINVAL);
1750         }
1751
1752         rsd = lustre_swab_mds_secdesc(req, MDS_REQ_SECDESC_OFF);
1753         if (!rsd) {
1754                 CERROR("Can't unpack security desc\n");
1755                 RETURN(-EFAULT);
1756         }
1757
1758         body = lustre_swab_reqbuf(req, offset, sizeof(*body),
1759                                   lustre_swab_mds_body);
1760         if (body == NULL) {
1761                 CERROR ("Can't unpack body\n");
1762                 RETURN (-EFAULT);
1763         }
1764
1765         MD_COUNTER_INCREMENT(obd, access_check);
1766
1767         rc = mds_init_ucred(&uc, req, rsd);
1768         if (rc) {
1769                 CERROR("init ucred error: %d\n", rc);
1770                 RETURN(rc);
1771         }
1772         push_ctxt(&saved, &obd->obd_lvfs_ctxt, &uc);
1773
1774         de = mds_id2dentry(obd, &body->id1, NULL);
1775         if (IS_ERR(de)) {
1776                 CERROR("grab ino "LPU64": err %ld\n",
1777                        body->id1.li_stc.u.e3s.l3s_ino, PTR_ERR(de));
1778                 GOTO(out_pop, rc = PTR_ERR(de));
1779         }
1780
1781         rc = lustre_pack_reply(req, 2, rep_size, NULL);
1782         if (rc) {
1783                 CERROR("pack reply error: %d\n", rc);
1784                 GOTO(out_dput, rc = -EINVAL);
1785         }
1786
1787         body = lustre_msg_buf(req->rq_repmsg, 0, sizeof(*body));
1788         LASSERT(body);
1789
1790         rep_offset = 1;
1791         rc = mds_pack_remote_perm(req, &rep_offset, body, de->d_inode);
1792
1793         EXIT;
1794
1795 out_dput:
1796         l_dput(de);
1797 out_pop:
1798         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, &uc);
1799         mds_exit_ucred(&uc);
1800         return rc;
1801 }
1802
1803 static int mds_obd_statfs(struct obd_device *obd, struct obd_statfs *osfs,
1804                           unsigned long max_age)
1805 {
1806         int rc;
1807         ENTRY;
1808
1809         spin_lock(&obd->obd_osfs_lock);
1810         rc = fsfilt_statfs(obd, obd->u.mds.mds_sb, max_age);
1811         if (rc == 0)
1812                 memcpy(osfs, &obd->obd_osfs, sizeof(*osfs));
1813         spin_unlock(&obd->obd_osfs_lock);
1814
1815         RETURN(rc);
1816 }
1817
1818 static int mds_statfs(struct ptlrpc_request *req)
1819 {
1820         struct obd_device *obd = req->rq_export->exp_obd;
1821         int rc, size = sizeof(struct obd_statfs);
1822         ENTRY;
1823
1824         /* This will trigger a watchdog timeout */
1825         OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_STATFS_LCW_SLEEP,
1826                          (MDS_SERVICE_WATCHDOG_TIMEOUT / 1000) + 1);
1827
1828         rc = lustre_pack_reply(req, 1, &size, NULL);
1829         if (rc || OBD_FAIL_CHECK(OBD_FAIL_MDS_STATFS_PACK)) {
1830                 CERROR("mds: statfs lustre_pack_reply failed: rc = %d\n", rc);
1831                 GOTO(out, rc);
1832         }
1833
1834         OBD_COUNTER_INCREMENT(obd, statfs);
1835
1836         /* We call this so that we can cache a bit - 1 jiffie worth */
1837         rc = mds_obd_statfs(obd, lustre_msg_buf(req->rq_repmsg, 0, size),
1838                             jiffies - HZ);
1839         if (rc) {
1840                 CERROR("mds_obd_statfs failed: rc %d\n", rc);
1841                 GOTO(out, rc);
1842         }
1843
1844         EXIT;
1845 out:
1846         req->rq_status = rc;
1847         return rc;
1848 }
1849
1850 static int mds_sync(struct ptlrpc_request *req, int offset)
1851 {
1852         struct obd_device *obd = req->rq_export->exp_obd;
1853         struct mds_obd *mds = &obd->u.mds;
1854         struct mds_body *body;
1855         int rc, size = sizeof(*body);
1856         ENTRY;
1857
1858         body = lustre_swab_reqbuf(req, offset, sizeof(*body),
1859                                   lustre_swab_mds_body);
1860         if (body == NULL)
1861                 GOTO(out, rc = -EPROTO);
1862
1863         rc = lustre_pack_reply(req, 1, &size, NULL);
1864         if (rc || OBD_FAIL_CHECK(OBD_FAIL_MDS_SYNC_PACK)) {
1865                 CERROR("fsync lustre_pack_reply failed: rc = %d\n", rc);
1866                 GOTO(out, rc);
1867         }
1868
1869         if (id_ino(&body->id1) == 0) {
1870                 /* an id of zero is taken to mean "sync whole filesystem" */
1871                 rc = fsfilt_sync(obd, mds->mds_sb);
1872                 if (rc)
1873                         GOTO(out, rc);
1874         } else {
1875                 /* just any file to grab fsync method - "file" arg unused */
1876                 struct file *file = mds->mds_rcvd_filp;
1877                 struct mds_body *rep_body;
1878                 struct dentry *de;
1879
1880                 de = mds_id2dentry(obd, &body->id1, NULL);
1881                 if (IS_ERR(de))
1882                         GOTO(out, rc = PTR_ERR(de));
1883
1884                 rc = file->f_op->fsync(NULL, de, 1);
1885                 if (rc)
1886                         GOTO(out, rc);
1887
1888                 rep_body = lustre_msg_buf(req->rq_repmsg, 0, sizeof(*rep_body));
1889                 mds_pack_inode2body(obd, rep_body, de->d_inode,
1890                                     (body->valid & OBD_MD_FID) ? 1 : 0);
1891                 l_dput(de);
1892         }
1893
1894         EXIT;
1895 out:
1896         req->rq_status = rc;
1897         return rc;
1898 }
1899
1900 /* mds_readpage does not take a DLM lock on the inode, because the client must
1901  * already have a PR lock.
1902  *
1903  * If we were to take another one here, a deadlock will result, if another
1904  * thread is already waiting for a PW lock. */
1905 static int mds_readpage(struct ptlrpc_request *req, int offset)
1906 {
1907         struct obd_device *obd = req->rq_export->exp_obd;
1908         struct vfsmount *mnt;
1909         struct dentry *de;
1910         struct file *file;
1911         struct mds_req_sec_desc *rsd;
1912         struct mds_body *body, *repbody;
1913         struct lvfs_run_ctxt saved;
1914         int rc, size = sizeof(*repbody);
1915         struct lvfs_ucred uc = {NULL, NULL,};
1916         ENTRY;
1917
1918         rc = lustre_pack_reply(req, 1, &size, NULL);
1919         if (rc || OBD_FAIL_CHECK(OBD_FAIL_MDS_READPAGE_PACK)) {
1920                 CERROR("mds: out of memory\n");
1921                 GOTO(out, rc = -ENOMEM);
1922         }
1923
1924         rsd = lustre_swab_mds_secdesc(req, MDS_REQ_SECDESC_OFF);
1925         if (!rsd) {
1926                 CERROR("Can't unpack security desc\n");
1927                 GOTO (out, rc = -EFAULT);
1928         }
1929
1930         body = lustre_swab_reqbuf(req, offset, sizeof(*body),
1931                                   lustre_swab_mds_body);
1932         if (body == NULL) {
1933                 CERROR("Can't unpack body\n");
1934                 GOTO (out, rc = -EFAULT);
1935         }
1936
1937         rc = mds_init_ucred(&uc, req, rsd);
1938         if (rc) {
1939                 mds_audit_auth(req, &uc, AUDIT_READDIR, &body->id1,
1940                                NULL, 0);
1941                 GOTO(out, rc);
1942         }
1943
1944         push_ctxt(&saved, &obd->obd_lvfs_ctxt, &uc);
1945         de = mds_id2dentry(obd, &body->id1, &mnt);
1946         if (IS_ERR(de))
1947                 GOTO(out_pop, rc = PTR_ERR(de));
1948
1949         CDEBUG(D_INODE, "ino %lu\n", de->d_inode->i_ino);
1950
1951         file = dentry_open(de, mnt, O_RDONLY | O_LARGEFILE);
1952         /* note: in case of an error, dentry_open puts dentry */
1953         if (IS_ERR(file))
1954                 GOTO(out_pop, rc = PTR_ERR(file));
1955
1956         /* body->size is actually the offset -eeb */
1957         if ((body->size & (de->d_inode->i_blksize - 1)) != 0) {
1958                 CERROR("offset "LPU64" not on a block boundary of %lu\n",
1959                        body->size, de->d_inode->i_blksize);
1960                 GOTO(out_file, rc = -EFAULT);
1961         }
1962
1963         /* body->nlink is actually the #bytes to read -eeb */
1964         if (body->nlink & (de->d_inode->i_blksize - 1)) {
1965                 CERROR("size %u is not multiple of blocksize %lu\n",
1966                        body->nlink, de->d_inode->i_blksize);
1967                 GOTO(out_file, rc = -EFAULT);
1968         }
1969
1970         repbody = lustre_msg_buf(req->rq_repmsg, 0, sizeof (*repbody));
1971         repbody->size = file->f_dentry->d_inode->i_size;
1972         repbody->valid = OBD_MD_FLSIZE;
1973
1974         /* to make this asynchronous make sure that the handling function
1975            doesn't send a reply when this function completes. Instead a
1976            callback function would send the reply */
1977         /* body->size is actually the offset -eeb */
1978         rc = mds_sendpage(req, file, body->size, body->nlink);
1979
1980         EXIT;
1981 out_file:
1982         filp_close(file, 0);
1983 out_pop:
1984         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, &uc);
1985 out:
1986         mds_exit_ucred(&uc);
1987         req->rq_status = rc;
1988         return 0;
1989 }
1990
1991 /* update master MDS ID, which is stored in local inode EA. */
1992 int mds_update_mid(struct obd_device *obd, struct lustre_id *id,
1993                    void *data, int data_len)
1994 {
1995         struct mds_obd *mds = &obd->u.mds;
1996         struct dentry *dentry;
1997         void *handle;
1998         int rc = 0;
1999         ENTRY;
2000
2001         LASSERT(id);
2002         LASSERT(obd);
2003         
2004         dentry = mds_id2dentry(obd, id, NULL);
2005         if (IS_ERR(dentry))
2006                 GOTO(out, rc = PTR_ERR(dentry));
2007
2008         if (!dentry->d_inode) {
2009                 CERROR("Can't find object "DLID4".\n",
2010                        OLID4(id));
2011                 GOTO(out_dentry, rc = -EINVAL);
2012         }
2013
2014         handle = fsfilt_start(obd, dentry->d_inode,
2015                               FSFILT_OP_SETATTR, NULL);
2016         if (IS_ERR(handle))
2017                 GOTO(out_dentry, rc = PTR_ERR(handle));
2018
2019         rc = mds_update_inode_mid(obd, dentry->d_inode, handle,
2020                                   (struct lustre_id *)data);
2021         if (rc) {
2022                 CERROR("Can't update inode "DLID4" master id, "
2023                        "error = %d.\n", OLID4(id), rc);
2024                 GOTO(out_commit, rc);
2025         }
2026
2027         EXIT;
2028 out_commit:
2029         fsfilt_commit(obd, mds->mds_sb, dentry->d_inode,
2030                       handle, 0);
2031 out_dentry:
2032         l_dput(dentry);
2033 out:
2034         return rc;
2035 }
2036 EXPORT_SYMBOL(mds_update_mid);
2037
2038 /* read master MDS ID, which is stored in local inode EA. */
2039 int mds_read_mid(struct obd_device *obd, struct lustre_id *id,
2040                  void *data, int data_len)
2041 {
2042         struct dentry *dentry;
2043         int rc = 0;
2044         ENTRY;
2045
2046         LASSERT(id);
2047         LASSERT(obd);
2048         
2049         dentry = mds_id2dentry(obd, id, NULL);
2050         if (IS_ERR(dentry))
2051                 GOTO(out, rc = PTR_ERR(dentry));
2052
2053         if (!dentry->d_inode) {
2054                 CERROR("Can't find object "DLID4".\n",
2055                        OLID4(id));
2056                 GOTO(out_dentry, rc = -EINVAL);
2057         }
2058
2059         down(&dentry->d_inode->i_sem);
2060         rc = mds_read_inode_mid(obd, dentry->d_inode,
2061                                 (struct lustre_id *)data);
2062         up(&dentry->d_inode->i_sem);
2063         if (rc) {
2064                 CERROR("Can't read inode "DLID4" master id, "
2065                        "error = %d.\n", OLID4(id), rc);
2066                 GOTO(out_dentry, rc);
2067         }
2068
2069         EXIT;
2070 out_dentry:
2071         l_dput(dentry);
2072 out:
2073         return rc;
2074 }
2075 EXPORT_SYMBOL(mds_read_mid);
2076
2077 int mds_read_md(struct obd_device *obd, struct lustre_id *id, 
2078                 char **data, int *datalen)
2079 {
2080         struct dentry *dentry;
2081         struct mds_obd *mds = &obd->u.mds;
2082         int rc = 0, mea = 0;
2083         char *ea;
2084         ENTRY;
2085
2086         LASSERT(id);
2087         LASSERT(obd);
2088         
2089         dentry = mds_id2dentry(obd, id, NULL);
2090         if (IS_ERR(dentry))
2091                 GOTO(out, rc = PTR_ERR(dentry));
2092
2093         if (!dentry->d_inode) {
2094                 CERROR("Can't find object "DLID4".\n",
2095                        OLID4(id));
2096                 GOTO(out_dentry, rc = -EINVAL);
2097         }
2098         if (S_ISDIR(dentry->d_inode->i_mode)) {
2099                 *datalen = obd_packmd(mds->mds_md_exp, NULL, NULL);
2100                 mea = 1; 
2101         } else {
2102                 *datalen = obd_packmd(mds->mds_dt_exp, NULL, NULL); 
2103                 mea = 0;
2104         }
2105         OBD_ALLOC(ea, *datalen);
2106         if (!ea) {
2107                 *datalen = 0;
2108                 GOTO(out_dentry, rc = PTR_ERR(dentry));
2109         } 
2110         *data = ea;
2111         down(&dentry->d_inode->i_sem);
2112         rc = fsfilt_get_md(obd, dentry->d_inode, *data, *datalen,
2113                            (mea ? EA_MEA : EA_LOV));
2114         up(&dentry->d_inode->i_sem);
2115         
2116         if (rc < 0) 
2117                 CERROR("Error %d reading eadata for ino %lu\n",
2118                         rc, dentry->d_inode->i_ino);
2119 out_dentry:
2120         l_dput(dentry);
2121 out:
2122         RETURN(rc);
2123 }
2124 EXPORT_SYMBOL(mds_read_md);
2125
2126 int mds_reint(struct ptlrpc_request *req, int offset,
2127               struct lustre_handle *lockh)
2128 {
2129         struct mds_update_record *rec;
2130         struct mds_req_sec_desc *rsd;
2131         int rc;
2132         ENTRY;
2133
2134         OBD_ALLOC(rec, sizeof(*rec));
2135         if (rec == NULL)
2136                 RETURN(-ENOMEM);
2137
2138         rsd = lustre_swab_mds_secdesc(req, MDS_REQ_SECDESC_OFF);
2139         if (!rsd) {
2140                 CERROR("Can't unpack security desc\n");
2141                 GOTO(out, rc = -EFAULT);
2142         }
2143
2144         rc = mds_update_unpack(req, offset, rec);
2145         if (rc || OBD_FAIL_CHECK(OBD_FAIL_MDS_REINT_UNPACK)) {
2146                 CERROR("invalid record\n");
2147                 GOTO(out, req->rq_status = -EINVAL);
2148         }
2149
2150         rc = mds_init_ucred(&rec->ur_uc, req, rsd);
2151         if (rc) {
2152                 audit_op code = AUDIT_NONE;
2153                 char * au_name = NULL;
2154                 int au_len = 0;
2155                 switch (rec->ur_opcode) {
2156                         case REINT_SETATTR:
2157                                 code = AUDIT_SETATTR;
2158                                 break;
2159                         case REINT_CREATE:
2160                                 code = AUDIT_CREATE;
2161                                 au_name = rec->ur_name;
2162                                 au_len = rec->ur_namelen;
2163                                 break;
2164                         case REINT_LINK:
2165                                 code = AUDIT_LINK;
2166                                 break;
2167                         case REINT_UNLINK:
2168                                 code = AUDIT_UNLINK;
2169                                 break;
2170                         case REINT_RENAME:
2171                                 code = AUDIT_RENAME;
2172                                 break;
2173                         case REINT_OPEN:
2174                                 au_name = rec->ur_name;
2175                                 au_len = rec->ur_namelen;
2176                                 code = AUDIT_OPEN;
2177                                 break;
2178                         default:
2179                                 CERROR("Wrong opcode in reint\n");
2180                                 LBUG();
2181                 }
2182
2183                 mds_audit_auth(req, &rec->ur_uc, code, rec->ur_id1,  
2184                                au_name, au_len);
2185                 GOTO(out, rc);
2186         }
2187
2188         /* rc will be used to interrupt a for loop over multiple records */
2189         rc = mds_reint_rec(rec, offset, req, lockh);
2190
2191         /* audit stuff for OPEN */
2192         if (offset == 3 && rec->ur_opcode == REINT_OPEN)
2193                 mds_audit_open(req, rec, rc);
2194
2195  out:
2196         mds_exit_ucred(&rec->ur_uc);
2197         OBD_FREE(rec, sizeof(*rec));
2198         RETURN(rc);
2199 }
2200
2201 static int mds_filter_recovery_request(struct ptlrpc_request *req,
2202                                        struct obd_device *obd, int *process)
2203 {
2204         switch (req->rq_reqmsg->opc) {
2205         case MDS_CONNECT: /* This will never get here, but for completeness. */
2206         case OST_CONNECT: /* This will never get here, but for completeness. */
2207         case MDS_DISCONNECT:
2208         case OST_DISCONNECT:
2209                *process = 1;
2210                RETURN(0);
2211
2212         case MDS_CLOSE:
2213         case MDS_SYNC: /* used in unmounting */
2214         case OBD_PING:
2215         case MDS_REINT:
2216         case LDLM_ENQUEUE:
2217         case OST_CREATE:
2218                 *process = target_queue_recovery_request(req, obd);
2219                 RETURN(0);
2220
2221         default:
2222                 DEBUG_REQ(D_ERROR, req, "not permitted during recovery");
2223                 *process = 0;
2224                 /* XXX what should we set rq_status to here? */
2225                 req->rq_status = -EAGAIN;
2226                 RETURN(ptlrpc_error(req));
2227         }
2228 }
2229
2230 static char *reint_names[] = {
2231         [REINT_SETATTR] "setattr",
2232         [REINT_CREATE]  "create",
2233         [REINT_LINK]    "link",
2234         [REINT_UNLINK]  "unlink",
2235         [REINT_RENAME]  "rename",
2236         [REINT_OPEN]    "open",
2237 };
2238
2239 #define FILTER_VALID_FLAGS (OBD_MD_FLTYPE | OBD_MD_FLMODE | OBD_MD_FLGENER  | \
2240                             OBD_MD_FLSIZE | OBD_MD_FLBLOCKS | OBD_MD_FLBLKSZ| \
2241                             OBD_MD_FLATIME | OBD_MD_FLMTIME | OBD_MD_FLCTIME| \
2242                             OBD_MD_FLID) 
2243
2244 static void reconstruct_create(struct ptlrpc_request *req)
2245 {
2246         struct mds_export_data *med = &req->rq_export->exp_mds_data;
2247         struct mds_client_data *mcd = med->med_mcd;
2248         struct dentry *dentry;
2249         struct ost_body *body;
2250         struct lustre_id id;
2251         int rc;
2252         ENTRY;
2253
2254         /* copy rc, transno and disp; steal locks */
2255         mds_req_from_mcd(req, mcd);
2256         if (req->rq_status) {
2257                 EXIT;
2258                 return;
2259         }
2260
2261         id_gen(&id) = 0;
2262         id_group(&id) = 0;
2263
2264         id_ino(&id) = mcd->mcd_last_data;
2265         LASSERT(id_ino(&id) != 0);
2266
2267         dentry = mds_id2dentry(req2obd(req), &id, NULL);
2268         if (IS_ERR(dentry)) {
2269                 CERROR("can't find inode "LPU64"\n", id_ino(&id));
2270                 req->rq_status = PTR_ERR(dentry);
2271                 EXIT;
2272                 return;
2273         }
2274
2275         CWARN("reconstruct reply for x"LPU64" (remote ino) "LPU64" -> %lu/%u\n",
2276               req->rq_xid, id_ino(&id), dentry->d_inode->i_ino,
2277               dentry->d_inode->i_generation);
2278
2279         body = lustre_msg_buf(req->rq_repmsg, 0, sizeof (*body));
2280         obdo_from_inode(&body->oa, dentry->d_inode, FILTER_VALID_FLAGS);
2281         body->oa.o_id = dentry->d_inode->i_ino;
2282         body->oa.o_generation = dentry->d_inode->i_generation;
2283         body->oa.o_valid |= OBD_MD_FLID | OBD_MD_FLGENER;
2284
2285         down(&dentry->d_inode->i_sem);
2286         rc = mds_read_inode_sid(req2obd(req), dentry->d_inode, &id);
2287         up(&dentry->d_inode->i_sem);
2288         if (rc) {
2289                 CERROR("Can't read inode self id, inode %lu, "
2290                        "rc %d\n", dentry->d_inode->i_ino, rc);
2291                 id_fid(&id) = 0;
2292         }
2293
2294         body->oa.o_fid = id_fid(&id);
2295         body->oa.o_mds = id_group(&id);
2296         l_dput(dentry);
2297
2298         EXIT;
2299 }
2300
2301 static int mds_inode_init_acl(struct obd_device *obd, void *handle,
2302                               struct dentry *de, void *xattr, int xattr_size)
2303 {
2304         struct inode *inode = de->d_inode;
2305         struct posix_acl *acl;
2306         mode_t mode;
2307         int rc = 0;
2308
2309         LASSERT(handle);
2310         LASSERT(inode);
2311         LASSERT(xattr);
2312         LASSERT(xattr_size > 0);
2313
2314         if (!inode->i_op->getxattr || !inode->i_op->setxattr) {
2315                 CERROR("backend fs dosen't support xattr\n");
2316                 return -EOPNOTSUPP;
2317         }
2318
2319         /* set default acl */
2320         if (S_ISDIR(inode->i_mode)) {
2321                 rc = inode->i_op->setxattr(de, XATTR_NAME_ACL_DEFAULT,
2322                                            xattr, xattr_size, 0);
2323                 if (rc) {
2324                         CERROR("set default acl err: %d\n", rc);
2325                         return rc;
2326                 }
2327         }
2328
2329         /* set access acl */
2330         acl = posix_acl_from_xattr(xattr, xattr_size);
2331         if (acl == NULL || IS_ERR(acl)) {
2332                 CERROR("insane attr data\n");
2333                 return PTR_ERR(acl);
2334         }
2335
2336         if (posix_acl_valid(acl)) {
2337                 CERROR("default acl not valid: %d\n", rc);
2338                 rc = -EFAULT;
2339                 goto out;
2340         }
2341
2342         mode = inode->i_mode;
2343         rc = posix_acl_create_masq(acl, &mode);
2344         if (rc < 0) {
2345                 CERROR("create masq err %d\n", rc);
2346                 goto out;
2347         }
2348
2349         if (inode->i_mode != mode) {
2350                 struct iattr iattr = { .ia_valid = ATTR_MODE,
2351                                        .ia_mode = mode };
2352                 int rc2;
2353
2354                 rc2 = fsfilt_setattr(obd, de, handle, &iattr, 0);
2355                 if (rc2) {
2356                         CERROR("setattr mode err: %d\n", rc2);
2357                         rc = rc2;
2358                         goto out;
2359                 }
2360         }
2361
2362         if (rc > 0) {
2363                 /* we didn't change acl except mode bits of some
2364                  * entries, so should be fit into original size.
2365                  */
2366                 rc = posix_acl_to_xattr(acl, xattr, xattr_size);
2367                 LASSERT(rc > 0);
2368
2369                 rc = inode->i_op->setxattr(de, XATTR_NAME_ACL_ACCESS,
2370                                            xattr, xattr_size, 0);
2371                 if (rc)
2372                         CERROR("set access acl err: %d\n", rc);
2373         }
2374 out:
2375         posix_acl_release(acl);
2376         return rc;
2377 }
2378
2379 static int mdt_obj_create(struct ptlrpc_request *req)
2380 {
2381         struct obd_device *obd = req->rq_export->exp_obd;
2382         struct mds_obd *mds = &obd->u.mds;
2383         struct ost_body *body, *repbody;
2384         void *acl = NULL;
2385         int acl_size;
2386         char idname[LL_ID_NAMELEN];
2387         int size = sizeof(*repbody);
2388         struct inode *parent_inode;
2389         struct lvfs_run_ctxt saved;
2390         int rc, cleanup_phase = 0;
2391         struct dentry *new = NULL;
2392         struct dentry_params dp;
2393         int mealen, flags = 0;
2394         struct lvfs_ucred uc;
2395         struct lustre_id id;
2396         struct mea *mea;
2397         void *handle = NULL;
2398         unsigned long cr_inum = 0;
2399         __u64 fid = 0;
2400         ENTRY;
2401        
2402         DEBUG_REQ(D_HA, req, "create remote object");
2403         parent_inode = mds->mds_unnamed_dir->d_inode;
2404
2405         body = lustre_swab_reqbuf(req, 0, sizeof(*body),
2406                                   lustre_swab_ost_body);
2407         if (body == NULL)
2408                 RETURN(-EFAULT);
2409
2410         /* acl data is packed transparently, no swab here */
2411         LASSERT(req->rq_reqmsg->bufcount >= 2);
2412         acl_size = req->rq_reqmsg->buflens[1];
2413         if (acl_size) {
2414                 acl = lustre_msg_buf(req->rq_reqmsg, 1, acl_size);
2415                 if (!acl) {
2416                         CERROR("No default acl buf?\n");
2417                         RETURN(-EFAULT);
2418                 }
2419         }
2420
2421         rc = lustre_pack_reply(req, 1, &size, NULL);
2422         if (rc)
2423                 RETURN(rc);
2424
2425         MDS_CHECK_RESENT(req, reconstruct_create(req));
2426
2427         uc.luc_lsd = NULL;
2428         uc.luc_ginfo = NULL;
2429         uc.luc_uid = body->oa.o_uid;
2430         uc.luc_gid = body->oa.o_gid;
2431         uc.luc_fsuid = body->oa.o_uid;
2432         uc.luc_fsgid = body->oa.o_gid;
2433
2434         push_ctxt(&saved, &obd->obd_lvfs_ctxt, &uc);
2435         repbody = lustre_msg_buf(req->rq_repmsg, 0, sizeof(*repbody));
2436
2437         /* in REPLAY case inum should be given (client or other MDS fills it) */
2438         if (body->oa.o_id && ((body->oa.o_flags & OBD_FL_RECREATE_OBJS) ||
2439             (lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY))) {
2440                 /*
2441                  * this is re-create request from MDS holding directory name.
2442                  * we have to lookup given ino/gen first. if it exists (good
2443                  * case) then there is nothing to do. if it does not then we
2444                  * have to recreate it.
2445                  */
2446                 id_ino(&id) = body->oa.o_id;
2447                 id_gen(&id) = body->oa.o_generation;
2448  
2449                 new = mds_id2dentry(obd, &id, NULL);
2450                 if (!IS_ERR(new) && new->d_inode) {
2451                         struct lustre_id sid;
2452                                 
2453                         CDEBUG(D_OTHER, "mkdir repairing %lu/%lu\n",
2454                                (unsigned long)id_ino(&id),
2455                                (unsigned long)id_gen(&id));
2456                         
2457                         obdo_from_inode(&repbody->oa, new->d_inode,
2458                                         FILTER_VALID_FLAGS);
2459                         
2460                         repbody->oa.o_id = new->d_inode->i_ino;
2461                         repbody->oa.o_generation = new->d_inode->i_generation;
2462                         repbody->oa.o_valid |= OBD_MD_FLID | OBD_MD_FLGENER;
2463                         cleanup_phase = 1;
2464
2465                         down(&new->d_inode->i_sem);
2466                         rc = mds_read_inode_sid(obd, new->d_inode, &sid);
2467                         up(&new->d_inode->i_sem);
2468                         if (rc) {
2469                                 CERROR("Can't read inode self id "
2470                                        "inode %lu, rc %d.\n",
2471                                        new->d_inode->i_ino, rc);
2472                                 GOTO(cleanup, rc);
2473                         }
2474
2475                         repbody->oa.o_fid = id_fid(&sid);
2476                         repbody->oa.o_mds = id_group(&sid);
2477                         LASSERT(id_fid(&sid) != 0);
2478
2479                         /* 
2480                          * here we could use fid passed in body->oa.o_fid and
2481                          * thus avoid mds_read_inode_sid().
2482                          */
2483                         cr_inum = new->d_inode->i_ino;
2484                         GOTO(cleanup, rc = 0);
2485                 }
2486         }
2487         
2488         down(&parent_inode->i_sem);
2489         handle = fsfilt_start(obd, parent_inode, FSFILT_OP_MKDIR, NULL);
2490         if (IS_ERR(handle)) {
2491                 up(&parent_inode->i_sem);
2492                 CERROR("fsfilt_start() failed, rc = %d\n",
2493                        (int)PTR_ERR(handle));
2494                 GOTO(cleanup, rc = PTR_ERR(handle));
2495         }
2496         cleanup_phase = 1; /* transaction */
2497
2498 repeat:
2499         rc = sprintf(idname, "%u.%u", ll_insecure_random_int(), current->pid);
2500         new = lookup_one_len(idname, mds->mds_unnamed_dir, rc);
2501         if (IS_ERR(new)) {
2502                 CERROR("%s: can't lookup new inode (%s) for mkdir: %d\n",
2503                        obd->obd_name, idname, (int) PTR_ERR(new));
2504                 fsfilt_commit(obd, mds->mds_sb, new->d_inode, handle, 0);
2505                 up(&parent_inode->i_sem);
2506                 RETURN(PTR_ERR(new));
2507         } else if (new->d_inode) {
2508                 CERROR("%s: name exists. repeat\n", obd->obd_name);
2509                 goto repeat;
2510         }
2511         if ((body->oa.o_flags & OBD_FL_RECREATE_OBJS) ||
2512              lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY) {
2513                 fid = body->oa.o_fid;
2514         } else { 
2515                 fid = mds_alloc_fid(obd);
2516         }
2517         new->d_fsdata = (void *)&dp;
2518         dp.p_inum = 0;
2519         dp.p_ptr = req;
2520         dp.p_fid = fid;
2521         dp.p_group = mds->mds_num;
2522
2523         if ((lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY) ||
2524             (body->oa.o_flags & OBD_FL_RECREATE_OBJS)) {
2525                 LASSERT(body->oa.o_id != 0);
2526                 dp.p_inum = body->oa.o_id;
2527                 DEBUG_REQ(D_HA, req, "replay create obj %lu/%lu",
2528                           (unsigned long)body->oa.o_id,
2529                           (unsigned long)body->oa.o_generation);
2530         }
2531
2532         rc = vfs_mkdir(parent_inode, new, body->oa.o_mode);
2533         if (rc == 0) {
2534                 if (acl) {
2535                         rc = mds_inode_init_acl(obd, handle, new,
2536                                                 acl, acl_size);
2537                         if (rc) {
2538                                 up(&parent_inode->i_sem);
2539                                 GOTO(cleanup, rc);
2540                         }
2541                 }
2542                 if ((body->oa.o_flags & OBD_FL_RECREATE_OBJS) ||
2543                     lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY) {
2544                         new->d_inode->i_generation = body->oa.o_generation;
2545                         mark_inode_dirty(new->d_inode);
2546                         
2547                         /*
2548                          * avoiding asserts in cache flush case, as
2549                          * @body->oa.o_id should be zero.
2550                          */
2551                         if (body->oa.o_id) {
2552                                 LASSERTF(body->oa.o_id == new->d_inode->i_ino, 
2553                                          "BUG 3550: failed to recreate obj "
2554                                          LPU64" -> %lu\n", body->oa.o_id,
2555                                          new->d_inode->i_ino);
2556                                 
2557                                 LASSERTF(body->oa.o_generation == 
2558                                          new->d_inode->i_generation,
2559                                          "BUG 3550: failed to recreate obj/gen "
2560                                          LPU64"/%u -> %lu/%u\n", body->oa.o_id,
2561                                          body->oa.o_generation,
2562                                          new->d_inode->i_ino, 
2563                                          new->d_inode->i_generation);
2564                         }
2565                 }
2566                 
2567                 obdo_from_inode(&repbody->oa, new->d_inode, FILTER_VALID_FLAGS);
2568                 repbody->oa.o_id = new->d_inode->i_ino;
2569                 repbody->oa.o_generation = new->d_inode->i_generation;
2570                 repbody->oa.o_valid |= OBD_MD_FLID | OBD_MD_FLGENER | OBD_MD_FID;
2571
2572                 if ((body->oa.o_flags & OBD_FL_RECREATE_OBJS) ||
2573                     lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY) {
2574                         LASSERT(body->oa.o_id != 0);
2575                         LASSERT(body->oa.o_fid != 0);
2576                 }
2577                 
2578                 mds_inode2id(obd, &id, new->d_inode, fid);
2579                 mds_update_inode_ids(obd, new->d_inode, handle, &id, 
2580                                      obdo_id(&body->oa));
2581
2582                 /* initializing o_fid after it is allocated. */
2583                 repbody->oa.o_fid = id_fid(&id);
2584                 repbody->oa.o_mds = id_group(&id);
2585
2586                 rc = fsfilt_del_dir_entry(obd, new);
2587                 up(&parent_inode->i_sem);
2588                 if (rc) {
2589                         CERROR("can't remove name for object: %d\n", rc);
2590                         GOTO(cleanup, rc);
2591                 }
2592                 
2593                 cleanup_phase = 2; /* created directory object */
2594
2595                 CDEBUG(D_OTHER, "created dirobj: %lu/%lu mode %o\n",
2596                        (unsigned long)new->d_inode->i_ino,
2597                        (unsigned long)new->d_inode->i_generation,
2598                        (unsigned)new->d_inode->i_mode);
2599                 cr_inum = new->d_inode->i_ino;
2600         } else {
2601                 up(&parent_inode->i_sem);
2602                 CERROR("%s: can't create dirobj: %d\n", obd->obd_name, rc);
2603                 GOTO(cleanup, rc);
2604         }
2605
2606         if (body->oa.o_valid & OBD_MD_FLID) {
2607                 /* this is new object for splitted dir. We have to prevent
2608                  * recursive splitting on it -bzzz */
2609                 mealen = obd_size_diskmd(mds->mds_md_exp, NULL);
2610
2611                 OBD_ALLOC(mea, mealen);
2612                 if (mea == NULL)
2613                         GOTO(cleanup, rc = -ENOMEM);
2614
2615                 mea->mea_magic = MEA_MAGIC_ALL_CHARS;
2616                 mea->mea_master = body->oa.o_mds;      /* master mds num */
2617                 mea->mea_count = 0;
2618                 
2619                 obdo2id(&mea->mea_ids[body->oa.o_mds], &body->oa);
2620
2621                 down(&new->d_inode->i_sem);
2622                 rc = fsfilt_set_md(obd, new->d_inode, handle,
2623                                    mea, mealen, EA_MEA);
2624                 up(&new->d_inode->i_sem);
2625                 if (rc)
2626                         CERROR("fsfilt_set_md() failed, "
2627                                "rc = %d\n", rc);
2628
2629                 OBD_FREE(mea, mealen);
2630                 
2631                 CDEBUG(D_OTHER, "%s: mark non-splittable %lu/%u - %d\n",
2632                        obd->obd_name, new->d_inode->i_ino,
2633                        new->d_inode->i_generation, flags);
2634         } else if (body->oa.o_easize) {
2635                 /* we pass LCK_EX to split routine to signal that we have
2636                  * exclusive access to the directory. simple because nobody
2637                  * knows it already exists -bzzz */
2638                 rc = mds_try_to_split_dir(obd, new, NULL,
2639                                           body->oa.o_easize, LCK_EX);
2640                 if (rc < 0) {
2641                         CERROR("Can't split directory %lu, error = %d.\n",
2642                                new->d_inode->i_ino, rc);
2643                 } else {
2644                         rc = 0;
2645                 }
2646         }
2647
2648         EXIT;
2649 cleanup:
2650         switch (cleanup_phase) {
2651         case 2: /* object has been created, but we'll may want to replay it later */
2652                 if (rc == 0)
2653                         ptlrpc_require_repack(req);
2654         case 1: /* transaction */
2655                 rc = mds_finish_transno(mds, parent_inode, handle,
2656                                         req, rc, cr_inum);
2657         }
2658
2659         l_dput(new);
2660         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, &uc);
2661         return rc;
2662 }
2663
2664 static int mdt_get_info(struct ptlrpc_request *req)
2665 {
2666         struct obd_export *exp = req->rq_export;
2667         int keylen, rc = 0;
2668         char *key;
2669         ENTRY;
2670
2671         key = lustre_msg_buf(req->rq_reqmsg, 0, 1);
2672         if (key == NULL) {
2673                 DEBUG_REQ(D_HA, req, "no get_info key");
2674                 RETURN(-EFAULT);
2675         }
2676         keylen = req->rq_reqmsg->buflens[0];
2677
2678         if ((keylen < strlen("mdsize") || strcmp(key, "mdsize") != 0) &&
2679             (keylen < strlen("mdsnum") || strcmp(key, "mdsnum") != 0) &&
2680             (keylen < strlen("rootid") || strcmp(key, "rootid") != 0))
2681                 RETURN(-EPROTO);
2682
2683         if (keylen >= strlen("rootid") && !strcmp(key, "rootid")) {
2684                 struct lustre_id *reply;
2685                 int size = sizeof(*reply);
2686                 
2687                 rc = lustre_pack_reply(req, 1, &size, NULL);
2688                 if (rc)
2689                         RETURN(rc);
2690
2691                 reply = lustre_msg_buf(req->rq_repmsg, 0, size);
2692                 rc = obd_get_info(exp, keylen, key, (__u32 *)&size, reply);
2693         } else {
2694                 obd_id *reply;
2695                 int size = sizeof(*reply);
2696                 
2697                 rc = lustre_pack_reply(req, 1, &size, NULL);
2698                 if (rc)
2699                         RETURN(rc);
2700
2701                 reply = lustre_msg_buf(req->rq_repmsg, 0, size);
2702                 rc = obd_get_info(exp, keylen, key, (__u32 *)&size, reply);
2703         }
2704
2705         req->rq_repmsg->status = 0;
2706         RETURN(rc);
2707 }
2708
2709 static int mds_set_info(struct obd_export *exp, __u32 keylen,
2710                         void *key, __u32 vallen, void *val)
2711 {
2712         struct obd_device *obd;
2713         struct mds_obd *mds;
2714         int rc = 0;
2715         ENTRY;
2716
2717         obd = class_exp2obd(exp);
2718         if (obd == NULL) {
2719                 CDEBUG(D_IOCTL, "invalid client cookie "LPX64"\n",
2720                        exp->exp_handle.h_cookie);
2721                 RETURN(-EINVAL);
2722         }
2723
2724         mds = &obd->u.mds;
2725         if (keylen >= strlen("mds_type") &&
2726              memcmp(key, "mds_type", keylen) == 0) {
2727                 int valsize;
2728                 __u32 group;
2729                 
2730                 CDEBUG(D_IOCTL, "set mds type to %x\n", *(int*)val);
2731                 
2732                 mds->mds_obd_type = *(int*)val;
2733                 group = FILTER_GROUP_FIRST_MDS + mds->mds_obd_type;
2734                 valsize = sizeof(group);
2735                 
2736                 /* mds number has been changed, so the corresponding obdfilter
2737                  * exp need to be changed too. */
2738                 rc = obd_set_info(mds->mds_dt_exp, strlen("mds_conn"),
2739                                   "mds_conn", valsize, &group);
2740                 RETURN(rc);
2741         } else if (keylen == 5 && memcmp(key, "audit", 5) == 0) {
2742                 rc = mds_set_audit(obd, val);
2743                 RETURN(rc);
2744         } else if (keylen >= strlen("ids") && memcmp(key, "ids", keylen) == 0) {
2745                 struct lustre_id *ids = (struct lustre_id *)val;
2746                 struct dentry *de;
2747                 struct inode *inode;
2748                 void *handle;
2749                 int err;
2750
2751                 de = mds_id2dentry(obd, ids, NULL);
2752                 if (IS_ERR(de)) {
2753                         rc = PTR_ERR(de);
2754                         CERROR("lookup by an id error %d\n", rc);
2755                         RETURN(rc);
2756                 }
2757                 inode = de->d_inode;
2758                 if (inode == NULL)
2759                         GOTO(out_put, rc = -ENOENT);
2760                 
2761                 down(&inode->i_sem);
2762                 handle = fsfilt_start(obd, inode, FSFILT_OP_SETATTR, NULL);
2763                 if (IS_ERR(handle)) {
2764                         up(&inode->i_sem);
2765                         GOTO(out_put, rc = PTR_ERR(handle));
2766                 }
2767
2768                 rc = mds_update_inode_ids(obd, inode, handle, NULL, ids + 1);
2769                 
2770                 err = fsfilt_commit(obd, mds->mds_sb, inode, handle, 
2771                                     exp->exp_sync);
2772                 if (err) {
2773                         CERROR("error committing transaction: %d\n", err);
2774                         if (!rc) rc = err;
2775                 }
2776                 up(&inode->i_sem);
2777 out_put:
2778                 l_dput(de);
2779                 RETURN(rc);
2780         }
2781
2782         if (keylen >= strlen("crypto_type") &&
2783              memcmp(key, "crypto_type", keylen) == 0) {
2784                 rc = mds_set_crypto_type(obd, val, vallen); 
2785                 RETURN(rc);
2786         }
2787
2788         CDEBUG(D_IOCTL, "invalid key\n");
2789         RETURN(-EINVAL);
2790 }
2791
2792 static int mdt_set_info(struct ptlrpc_request *req)
2793 {
2794         char *key, *val;
2795         struct obd_export *exp = req->rq_export;
2796         int keylen, rc = 0, vallen = 0;
2797         ENTRY;
2798
2799         key = lustre_msg_buf(req->rq_reqmsg, 0, 1);
2800         if (key == NULL) {
2801                 DEBUG_REQ(D_HA, req, "no set_info key");
2802                 RETURN(-EFAULT);
2803         }
2804         keylen = req->rq_reqmsg->buflens[0];
2805
2806         if ((keylen == strlen("mds_type") &&
2807             memcmp(key, "mds_type", keylen) == 0) ||
2808             (keylen == strlen("crypto_type") &&
2809             memcmp(key, "crypto_type", keylen) == 0)) {
2810                 rc = lustre_pack_reply(req, 0, NULL, NULL);
2811                 if (rc)
2812                         RETURN(rc);
2813                 
2814                 val = lustre_msg_buf(req->rq_reqmsg, 1, 0);
2815                 vallen = req->rq_reqmsg->buflens[1];
2816
2817                 rc = obd_set_info(exp, keylen, key, vallen, val);
2818                 req->rq_repmsg->status = 0;
2819                 RETURN(rc);
2820         } else if (keylen == 5 && memcmp(key, "audit", 5) == 0) {
2821                 struct audit_attr_msg msg, *p;
2822                 int rc = 0;
2823
2824                 rc = lustre_pack_reply(req, 0, NULL, NULL);
2825                 if (rc)
2826                         RETURN(rc);
2827                 
2828                 p = lustre_swab_reqbuf(req, 1, sizeof(msg),
2829                                        lustre_swab_audit_attr);
2830
2831                 msg = *p;
2832                 CDEBUG(D_INFO, "Get new audit setting 0x%x\n", (__u32)msg.attr);
2833                 rc = obd_set_info(exp, keylen, key, sizeof(msg), &msg);
2834
2835                 req->rq_repmsg->status = rc;
2836                 RETURN(rc);
2837         } else if (keylen == strlen("ids") &&
2838                    memcmp(key, "ids", keylen) == 0) {
2839                 struct lustre_id *id, ids[2];
2840                 
2841                 rc = lustre_pack_reply(req, 0, NULL, NULL);
2842                 if (rc)
2843                         RETURN(rc);
2844                 id = lustre_swab_reqbuf(req, 1, sizeof(struct lustre_id), 
2845                                         lustre_swab_lustre_id);
2846                 ids[1] = *id;
2847                 id = lustre_swab_reqbuf(req, 2, sizeof(struct lustre_id),
2848                                         lustre_swab_lustre_id);
2849                 ids[2] = *id;
2850
2851                 rc = obd_set_info(exp, keylen, key, vallen, ids);
2852                 req->rq_repmsg->status = rc;
2853                 RETURN(rc);
2854         }
2855
2856         CDEBUG(D_IOCTL, "invalid key\n");
2857         RETURN(-EINVAL);
2858 }
2859
2860 static void mds_revoke_export_locks(struct obd_export *exp)
2861 {
2862         struct list_head *locklist = &exp->exp_ldlm_data.led_held_locks;
2863         struct list_head work;
2864         struct ldlm_lock *lock, *next;
2865         struct ldlm_lock_desc desc;
2866
2867         if (!exp->u.eu_mds_data.med_remote)
2868                 return;
2869
2870         ENTRY;
2871         CERROR("implement right locking here! -bzzz\n");
2872         INIT_LIST_HEAD(&work);
2873         spin_lock(&exp->exp_ldlm_data.led_lock);
2874         list_for_each_entry_safe(lock, next, locklist, l_export_chain) {
2875
2876                 lock_res_and_lock(lock);
2877                 if (lock->l_req_mode != lock->l_granted_mode) {
2878                         unlock_res_and_lock(lock);
2879                         continue;
2880                 }
2881
2882                 LASSERT(lock->l_resource);
2883                 if (lock->l_resource->lr_type != LDLM_IBITS &&
2884                     lock->l_resource->lr_type != LDLM_PLAIN) {
2885                         unlock_res_and_lock(lock);
2886                         continue;
2887                 }
2888
2889                 if (lock->l_flags & LDLM_FL_AST_SENT) {
2890                         unlock_res_and_lock(lock);
2891                         continue;
2892                 }
2893
2894                 lock->l_flags |= LDLM_FL_AST_SENT;
2895                 unlock_res_and_lock(lock);
2896
2897                 /* the desc just pretend to exclusive */
2898                 ldlm_lock2desc(lock, &desc);
2899                 desc.l_req_mode = LCK_EX;
2900                 desc.l_granted_mode = 0;
2901
2902                 lock->l_blocking_ast(lock, &desc, NULL, LDLM_CB_BLOCKING);
2903         }
2904         spin_unlock(&exp->exp_ldlm_data.led_lock);
2905
2906         EXIT;
2907 }
2908
2909 static int mds_msg_check_version(struct lustre_msg *msg)
2910 {
2911         int rc;
2912
2913         switch (msg->opc) {
2914         case MDS_CONNECT:
2915         case MDS_DISCONNECT:
2916         case OBD_PING:
2917                 rc = lustre_msg_check_version(msg, LUSTRE_OBD_VERSION);
2918                 if (rc)
2919                         CERROR("bad opc %u version %08x, expecting %08x\n",
2920                                msg->opc, msg->version, LUSTRE_OBD_VERSION);
2921                 break;
2922         case MDS_STATFS:
2923         case MDS_GETSTATUS:
2924         case MDS_GETATTR:
2925         case MDS_GETATTR_LOCK:
2926         case MDS_ACCESS_CHECK:
2927         case MDS_READPAGE:
2928         case MDS_REINT:
2929         case MDS_CLOSE:
2930         case MDS_DONE_WRITING:
2931         case MDS_PIN:
2932         case MDS_SYNC:
2933                 rc = lustre_msg_check_version(msg, LUSTRE_MDS_VERSION);
2934                 if (rc)
2935                         CERROR("bad opc %u version %08x, expecting %08x\n",
2936                                msg->opc, msg->version, LUSTRE_MDS_VERSION);
2937                 break;
2938         case LDLM_ENQUEUE:
2939         case LDLM_CONVERT:
2940         case LDLM_BL_CALLBACK:
2941         case LDLM_CP_CALLBACK:
2942                 rc = lustre_msg_check_version(msg, LUSTRE_DLM_VERSION);
2943                 if (rc)
2944                         CERROR("bad opc %u version %08x, expecting %08x\n",
2945                                msg->opc, msg->version, LUSTRE_DLM_VERSION);
2946                 break;
2947         case OBD_LOG_CANCEL:
2948         case LLOG_ORIGIN_HANDLE_OPEN:
2949         case LLOG_ORIGIN_HANDLE_NEXT_BLOCK:
2950         case LLOG_ORIGIN_HANDLE_PREV_BLOCK:
2951         case LLOG_ORIGIN_HANDLE_READ_HEADER:
2952         case LLOG_ORIGIN_HANDLE_CLOSE:
2953         case LLOG_CATINFO:
2954                 rc = lustre_msg_check_version(msg, LUSTRE_LOG_VERSION);
2955                 if (rc)
2956                         CERROR("bad opc %u version %08x, expecting %08x\n",
2957                                msg->opc, msg->version, LUSTRE_LOG_VERSION);
2958                 break;
2959         case OST_CREATE:
2960         case OST_WRITE:
2961         case OST_GET_INFO:
2962         case OST_SET_INFO:
2963                 rc = lustre_msg_check_version(msg, LUSTRE_OBD_VERSION);
2964                 if (rc)
2965                         CERROR("bad opc %u version %08x, expecting %08x\n",
2966                                msg->opc, msg->version, LUSTRE_OBD_VERSION);
2967                 break;
2968         case SEC_INIT:
2969         case SEC_INIT_CONTINUE:
2970         case SEC_FINI:
2971                 rc = 0;
2972                 break;
2973         default:
2974                 CERROR("MDS unknown opcode %d\n", msg->opc);
2975                 rc = -ENOTSUPP;
2976                 break;
2977         }
2978
2979         return rc;
2980 }
2981
2982 int mds_handle(struct ptlrpc_request *req)
2983 {
2984         int should_process, fail = OBD_FAIL_MDS_ALL_REPLY_NET;
2985         struct obd_device *obd = NULL;
2986         struct mds_obd *mds = NULL; /* quell gcc overwarning */
2987         int rc = 0;
2988         ENTRY;
2989
2990         OBD_FAIL_RETURN(OBD_FAIL_MDS_ALL_REQUEST_NET | OBD_FAIL_ONCE, 0);
2991
2992         rc = mds_msg_check_version(req->rq_reqmsg);
2993         if (rc) {
2994                 CERROR("MDS drop mal-formed request\n");
2995                 RETURN(rc);
2996         }
2997
2998         /* Security opc should NOT trigger any recovery events */
2999         if (req->rq_reqmsg->opc == SEC_INIT ||
3000             req->rq_reqmsg->opc == SEC_INIT_CONTINUE) {
3001                 if (req->rq_export) {
3002                         mds_req_add_idmapping(req,
3003                                               &req->rq_export->exp_mds_data);
3004                         mds_revoke_export_locks(req->rq_export);
3005                 }
3006                 GOTO(out, rc = 0);
3007         } else if (req->rq_reqmsg->opc == SEC_FINI) {
3008                 if (req->rq_export) {
3009                         mds_req_del_idmapping(req,
3010                                               &req->rq_export->exp_mds_data);
3011                         mds_revoke_export_locks(req->rq_export);
3012                 }
3013                 GOTO(out, rc = 0);
3014         }
3015
3016         LASSERT(current->journal_info == NULL);
3017         /* XXX identical to OST */
3018         if (req->rq_reqmsg->opc != MDS_CONNECT) {
3019                 struct mds_export_data *med;
3020                 int recovering;
3021
3022                 if (req->rq_export == NULL) {
3023                         CERROR("operation %d on unconnected MDS from %s\n",
3024                                req->rq_reqmsg->opc,
3025                                req->rq_peerstr);
3026                         req->rq_status = -ENOTCONN;
3027                         GOTO(out, rc = -ENOTCONN);
3028                 }
3029
3030                 med = &req->rq_export->exp_mds_data;
3031                 obd = req->rq_export->exp_obd;
3032                 mds = &obd->u.mds;
3033
3034                 /* sanity check: if the xid matches, the request must
3035                  * be marked as a resent or replayed */
3036                 if (req->rq_xid == le64_to_cpu(med->med_mcd->mcd_last_xid) ||
3037                    req->rq_xid == le64_to_cpu(med->med_mcd->mcd_last_close_xid)) {
3038                         LASSERTF(lustre_msg_get_flags(req->rq_reqmsg) &
3039                                  (MSG_RESENT | MSG_REPLAY),
3040                                  "rq_xid "LPU64" matches last_xid, "
3041                                  "expected RESENT flag\n",
3042                                  req->rq_xid);
3043                 }
3044                 /* else: note the opposite is not always true; a
3045                  * RESENT req after a failover will usually not match
3046                  * the last_xid, since it was likely never
3047                  * committed. A REPLAYed request will almost never
3048                  * match the last xid, however it could for a
3049                  * committed, but still retained, open. */
3050
3051                 spin_lock_bh(&obd->obd_processing_task_lock);
3052                 recovering = obd->obd_recovering;
3053                 spin_unlock_bh(&obd->obd_processing_task_lock);
3054                 if (recovering) {
3055                         rc = mds_filter_recovery_request(req, obd,
3056                                                          &should_process);
3057                         if (rc || should_process == 0) {
3058                                 RETURN(rc);
3059                         } else if (should_process < 0) {
3060                                 req->rq_status = should_process;
3061                                 rc = ptlrpc_error(req);
3062                                 RETURN(rc);
3063                         }
3064                 }
3065         }
3066
3067         switch (req->rq_reqmsg->opc) {
3068         case MDS_CONNECT:
3069                 DEBUG_REQ(D_INODE, req, "connect");
3070                 OBD_FAIL_RETURN(OBD_FAIL_MDS_CONNECT_NET, 0);
3071                 rc = target_handle_connect(req);
3072                 if (!rc) {
3073                         struct mds_export_data *med;
3074
3075                         LASSERT(req->rq_export);
3076                         med = &req->rq_export->u.eu_mds_data;
3077                         mds_init_export_data(req, med);
3078                         mds_req_add_idmapping(req, med);
3079
3080                         /* Now that we have an export, set mds. */
3081                         obd = req->rq_export->exp_obd;
3082                         mds = mds_req2mds(req);
3083                 }
3084                 break;
3085
3086         case MDS_DISCONNECT:
3087                 DEBUG_REQ(D_INODE, req, "disconnect");
3088                 OBD_FAIL_RETURN(OBD_FAIL_MDS_DISCONNECT_NET, 0);
3089                 rc = target_handle_disconnect(req);
3090                 req->rq_status = rc;            /* superfluous? */
3091                 break;
3092
3093         case MDS_GETSTATUS:
3094                 DEBUG_REQ(D_INODE, req, "getstatus");
3095                 OBD_FAIL_RETURN(OBD_FAIL_MDS_GETSTATUS_NET, 0);
3096                 rc = mds_getstatus(req);
3097                 break;
3098
3099         case MDS_GETATTR:
3100                 DEBUG_REQ(D_INODE, req, "getattr");
3101                 OBD_FAIL_RETURN(OBD_FAIL_MDS_GETATTR_NET, 0);
3102                 rc = mds_getattr(req, MDS_REQ_REC_OFF);
3103                 break;
3104
3105         case MDS_ACCESS_CHECK:
3106                 DEBUG_REQ(D_INODE, req, "access_check");
3107                 OBD_FAIL_RETURN(OBD_FAIL_MDS_ACCESS_CHECK_NET, 0);
3108                 rc = mds_access_check(req, MDS_REQ_REC_OFF);
3109                 break;
3110
3111         case MDS_GETATTR_LOCK: {
3112                 struct lustre_handle lockh;
3113                 DEBUG_REQ(D_INODE, req, "getattr_lock");
3114                 OBD_FAIL_RETURN(OBD_FAIL_MDS_GETATTR_LOCK_NET, 0);
3115
3116                 /* If this request gets a reconstructed reply, we won't be
3117                  * acquiring any new locks in mds_getattr_lock, so we don't
3118                  * want to cancel.
3119                  */
3120                 lockh.cookie = 0;
3121                 rc = mds_getattr_lock(req, MDS_REQ_REC_OFF, &lockh,
3122                                       MDS_INODELOCK_UPDATE);
3123                 /* this non-intent call (from an ioctl) is special */
3124                 req->rq_status = rc;
3125                 if (rc == 0 && lockh.cookie)
3126                         ldlm_lock_decref(&lockh, LCK_PR);
3127                 break;
3128         }
3129         case MDS_STATFS:
3130                 DEBUG_REQ(D_INODE, req, "statfs");
3131                 OBD_FAIL_RETURN(OBD_FAIL_MDS_STATFS_NET, 0);
3132                 rc = mds_statfs(req);
3133                 break;
3134
3135         case MDS_READPAGE:
3136                 DEBUG_REQ(D_INODE, req, "readpage");
3137                 OBD_FAIL_RETURN(OBD_FAIL_MDS_READPAGE_NET, 0);
3138                 rc = mds_readpage(req, MDS_REQ_REC_OFF);
3139
3140                 if (OBD_FAIL_CHECK_ONCE(OBD_FAIL_MDS_SENDPAGE)) {
3141                         if (req->rq_reply_state) {
3142                                 lustre_free_reply_state (req->rq_reply_state);
3143                                 req->rq_reply_state = NULL;
3144                         }
3145                         RETURN(0);
3146                 }
3147
3148                 break;
3149         case MDS_REINT: {
3150                 __u32 *opcp = lustre_msg_buf(req->rq_reqmsg, MDS_REQ_REC_OFF,
3151                                              sizeof (*opcp));
3152                 __u32  opc;
3153                 int size[3] = {sizeof(struct mds_body), mds->mds_max_mdsize,
3154                                mds->mds_max_cookiesize};
3155                 int bufcount;
3156
3157                 /* NB only peek inside req now; mds_reint() will swab it */
3158                 if (opcp == NULL) {
3159                         CERROR ("Can't inspect opcode\n");
3160                         rc = -EINVAL;
3161                         break;
3162                 }
3163                 opc = *opcp;
3164                 if (lustre_msg_swabbed (req->rq_reqmsg))
3165                         __swab32s(&opc);
3166
3167                 DEBUG_REQ(D_INODE, req, "reint %d (%s)", opc,
3168                           (opc < sizeof(reint_names) / sizeof(reint_names[0]) ||
3169                            reint_names[opc] == NULL) ? reint_names[opc] :
3170                                                        "unknown opcode");
3171
3172                 OBD_FAIL_RETURN(OBD_FAIL_MDS_REINT_NET, 0);
3173
3174                 if (opc == REINT_UNLINK || opc == REINT_RENAME)
3175                         bufcount = 3;
3176                 else if (opc == REINT_OPEN)
3177                         bufcount = 2;
3178                 else
3179                         bufcount = 1;
3180
3181                 /* for SETATTR: I have different reply setting for
3182                  * remote setfacl, so delay the reply buffer allocation.
3183                  */
3184                 if (opc != REINT_SETATTR) {
3185                         rc = lustre_pack_reply(req, bufcount, size, NULL);
3186                         if (rc)
3187                                 break;
3188                 }
3189
3190                 rc = mds_reint(req, MDS_REQ_REC_OFF, NULL);
3191                 fail = OBD_FAIL_MDS_REINT_NET_REP;
3192                 break;
3193         }
3194
3195         case MDS_CLOSE:
3196                 DEBUG_REQ(D_INODE, req, "close");
3197                 OBD_FAIL_RETURN(OBD_FAIL_MDS_CLOSE_NET, 0);
3198                 rc = mds_close(req, MDS_REQ_REC_OFF);
3199                 break;
3200
3201         case MDS_DONE_WRITING:
3202                 DEBUG_REQ(D_INODE, req, "done_writing");
3203                 OBD_FAIL_RETURN(OBD_FAIL_MDS_DONE_WRITING_NET, 0);
3204                 rc = mds_done_writing(req, MDS_REQ_REC_OFF);
3205                 break;
3206
3207         case MDS_PIN:
3208                 DEBUG_REQ(D_INODE, req, "pin");
3209                 OBD_FAIL_RETURN(OBD_FAIL_MDS_PIN_NET, 0);
3210                 rc = mds_pin(req, MDS_REQ_REC_OFF);
3211                 break;
3212
3213         case MDS_SYNC:
3214                 DEBUG_REQ(D_INODE, req, "sync");
3215                 OBD_FAIL_RETURN(OBD_FAIL_MDS_SYNC_NET, 0);
3216                 rc = mds_sync(req, MDS_REQ_REC_OFF);
3217                 break;
3218         case MDS_PARSE_ID:
3219                 DEBUG_REQ(D_INODE, req, "parseid");
3220                 rc = mds_parse_id(req);
3221                 break;
3222         case OBD_PING:
3223                 DEBUG_REQ(D_INODE, req, "ping");
3224                 rc = target_handle_ping(req);
3225                 break;
3226
3227         case OBD_LOG_CANCEL:
3228                 CDEBUG(D_INODE, "log cancel\n");
3229                 OBD_FAIL_RETURN(OBD_FAIL_OBD_LOG_CANCEL_NET, 0);
3230                 rc = -ENOTSUPP; /* la la la */
3231                 break;
3232
3233         case LDLM_ENQUEUE:
3234                 DEBUG_REQ(D_INODE, req, "enqueue");
3235                 OBD_FAIL_RETURN(OBD_FAIL_LDLM_ENQUEUE, 0);
3236                 rc = ldlm_handle_enqueue(req, ldlm_server_completion_ast,
3237                                          ldlm_server_blocking_ast, NULL);
3238                 fail = OBD_FAIL_LDLM_REPLY;
3239                 break;
3240         case LDLM_CONVERT:
3241                 DEBUG_REQ(D_INODE, req, "convert");
3242                 OBD_FAIL_RETURN(OBD_FAIL_LDLM_CONVERT, 0);
3243                 rc = ldlm_handle_convert(req);
3244                 break;
3245         case LDLM_BL_CALLBACK:
3246         case LDLM_CP_CALLBACK:
3247                 DEBUG_REQ(D_INODE, req, "callback");
3248                 CERROR("callbacks should not happen on MDS\n");
3249                 LBUG();
3250                 OBD_FAIL_RETURN(OBD_FAIL_LDLM_BL_CALLBACK, 0);
3251                 break;
3252         case LLOG_ORIGIN_HANDLE_OPEN:
3253                 DEBUG_REQ(D_INODE, req, "llog_init");
3254                 OBD_FAIL_RETURN(OBD_FAIL_OBD_LOGD_NET, 0);
3255                 rc = llog_origin_handle_open(req);
3256                 break;
3257         case LLOG_ORIGIN_HANDLE_NEXT_BLOCK:
3258                 DEBUG_REQ(D_INODE, req, "llog next block");
3259                 OBD_FAIL_RETURN(OBD_FAIL_OBD_LOGD_NET, 0);
3260                 rc = llog_origin_handle_next_block(req);
3261                 break;
3262         case LLOG_ORIGIN_HANDLE_PREV_BLOCK:
3263                 DEBUG_REQ(D_INODE, req, "llog prev block");
3264                 OBD_FAIL_RETURN(OBD_FAIL_OBD_LOGD_NET, 0);
3265                 rc = llog_origin_handle_prev_block(req);
3266                 break;
3267         case LLOG_ORIGIN_HANDLE_READ_HEADER:
3268                 DEBUG_REQ(D_INODE, req, "llog read header");
3269                 OBD_FAIL_RETURN(OBD_FAIL_OBD_LOGD_NET, 0);
3270                 rc = llog_origin_handle_read_header(req);
3271                 break;
3272         case LLOG_ORIGIN_HANDLE_CLOSE:
3273                 DEBUG_REQ(D_INODE, req, "llog close");
3274                 OBD_FAIL_RETURN(OBD_FAIL_OBD_LOGD_NET, 0);
3275                 rc = llog_origin_handle_close(req);
3276                 break;
3277         case OST_CREATE:
3278                 DEBUG_REQ(D_INODE, req, "ost_create");
3279                 rc = mdt_obj_create(req);
3280                 break;
3281         case OST_GET_INFO:
3282                 DEBUG_REQ(D_INODE, req, "get_info");
3283                 rc = mdt_get_info(req);
3284                 break;
3285         case OST_SET_INFO:
3286                 DEBUG_REQ(D_INODE, req, "set_info");
3287                 rc = mdt_set_info(req);
3288                 break;
3289         case OST_WRITE:
3290                 CDEBUG(D_INODE, "write\n");
3291                 OBD_FAIL_RETURN(OBD_FAIL_OST_BRW_NET, 0);
3292                 rc = ost_brw_write(req, NULL);
3293                 LASSERT(current->journal_info == NULL);
3294                 /* mdt_brw sends its own replies */
3295                 RETURN(rc);
3296                 break;
3297         case LLOG_CATINFO:
3298                 DEBUG_REQ(D_INODE, req, "llog catinfo");
3299                 OBD_FAIL_RETURN(OBD_FAIL_OBD_LOGD_NET, 0);
3300                 rc = llog_catinfo(req);
3301                 break;
3302         default:
3303                 req->rq_status = -ENOTSUPP;
3304                 rc = ptlrpc_error(req);
3305                 RETURN(rc);
3306         }
3307
3308         LASSERT(current->journal_info == NULL);
3309
3310         EXIT;
3311
3312         /* If we're DISCONNECTing, the mds_export_data is already freed */
3313         if (!rc && req->rq_reqmsg->opc != MDS_DISCONNECT) {
3314                 struct mds_export_data *med = &req->rq_export->exp_mds_data;
3315                 struct obd_device *obd = list_entry(mds, struct obd_device,
3316                                                     u.mds);
3317                 req->rq_repmsg->last_xid =
3318                         le64_to_cpu(med->med_mcd->mcd_last_xid);
3319
3320                 if (!obd->obd_no_transno) {
3321                         req->rq_repmsg->last_committed =
3322                                 obd->obd_last_committed;
3323                 } else {
3324                         DEBUG_REQ(D_IOCTL, req,
3325                                   "not sending last_committed update");
3326                 }
3327                 CDEBUG(D_INFO, "last_transno "LPU64", last_committed "LPU64
3328                        ", xid "LPU64"\n",
3329                        mds->mds_last_transno, obd->obd_last_committed,
3330                        req->rq_xid);
3331         }
3332  out:
3333
3334
3335         target_send_reply(req, rc, fail);
3336         return 0;
3337 }
3338
3339 /* Update the server data on disk.  This stores the new mount_count and also the
3340  * last_rcvd value to disk.  If we don't have a clean shutdown, then the server
3341  * last_rcvd value may be less than that of the clients.  This will alert us
3342  * that we may need to do client recovery.
3343  *
3344  * Also assumes for mds_last_transno that we are not modifying it (no locking).
3345  */
3346 int mds_update_server_data(struct obd_device *obd, int force_sync)
3347 {
3348         struct mds_obd *mds = &obd->u.mds;
3349         struct mds_server_data *msd = mds->mds_server_data;
3350         struct file *filp = mds->mds_rcvd_filp;
3351         struct lvfs_run_ctxt saved;
3352         loff_t off = 0;
3353         int rc;
3354         ENTRY;
3355
3356         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
3357         msd->msd_last_transno = cpu_to_le64(mds->mds_last_transno);
3358
3359         CDEBUG(D_SUPER, "MDS mount_count is "LPU64", last_transno is "LPU64"\n",
3360                mds->mds_mount_count, mds->mds_last_transno);
3361         rc = fsfilt_write_record(obd, filp, msd, sizeof(*msd), &off, force_sync);
3362         if (rc)
3363                 CERROR("error writing MDS server data: rc = %d\n", rc);
3364         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
3365
3366         RETURN(rc);
3367 }
3368
3369 /* saves last allocated fid counter to file. */
3370 int mds_update_last_fid(struct obd_device *obd, void *handle,
3371                         int force_sync)
3372 {
3373         struct mds_obd *mds = &obd->u.mds;
3374         struct file *filp = mds->mds_fid_filp;
3375         struct lvfs_run_ctxt saved;
3376         loff_t off = 0;
3377         __u64 last_fid;
3378         int rc = 0;
3379         ENTRY;
3380
3381         spin_lock(&mds->mds_last_fid_lock);
3382         last_fid = mds->mds_last_fid;
3383         spin_unlock(&mds->mds_last_fid_lock);
3384
3385         CDEBUG(D_SUPER, "MDS last_fid is #"LPU64"\n",
3386                last_fid);
3387
3388         if (handle) {
3389                 fsfilt_add_journal_cb(obd, mds->mds_sb, last_fid,
3390                                       handle, mds_commit_last_fid_cb,
3391                                       NULL);
3392         }
3393                 
3394         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
3395         rc = fsfilt_write_record(obd, filp, &last_fid, sizeof(last_fid),
3396                                  &off, force_sync);
3397         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
3398
3399         if (rc) {
3400                 CERROR("error writing MDS last_fid #"LPU64
3401                        ", err = %d\n", last_fid, rc);
3402                 RETURN(rc);
3403         }
3404                 
3405         CDEBUG(D_SUPER, "wrote fid #"LPU64" at idx "
3406                "%llu: err = %d\n", last_fid, off, rc);
3407
3408         RETURN(rc);
3409 }
3410
3411 void mds_set_last_fid(struct obd_device *obd, __u64 fid)
3412 {
3413         struct mds_obd *mds = &obd->u.mds;
3414
3415         spin_lock(&mds->mds_last_fid_lock);
3416         if (fid > mds->mds_last_fid)
3417                 mds->mds_last_fid = fid;
3418         spin_unlock(&mds->mds_last_fid_lock);
3419 }
3420
3421 void mds_commit_last_transno_cb(struct obd_device *obd,
3422                                 __u64 transno, void *data,
3423                                 int error)
3424 {
3425         obd_transno_commit_cb(obd, transno, error);
3426 }
3427
3428 void mds_commit_last_fid_cb(struct obd_device *obd,
3429                             __u64 fid, void *data,
3430                             int error)
3431 {
3432         if (error) {
3433                 CERROR("%s: fid "LPD64" commit error: %d\n",
3434                        obd->obd_name, fid, error);
3435                 return;
3436         }
3437         
3438         CDEBUG(D_HA, "%s: fid "LPD64" committed\n",
3439                obd->obd_name, fid);
3440 }
3441
3442 __u64 mds_alloc_fid(struct obd_device *obd)
3443 {
3444         struct mds_obd *mds = &obd->u.mds;
3445         __u64 fid;
3446         
3447         spin_lock(&mds->mds_last_fid_lock);
3448         fid = ++mds->mds_last_fid;
3449         spin_unlock(&mds->mds_last_fid_lock);
3450
3451         return fid;
3452 }
3453
3454 /*
3455  * reads inode self id from inode EA. Probably later this should be replaced by
3456  * caching inode self id to avoid raeding it every time it is needed.
3457  */
3458 int mds_read_inode_sid(struct obd_device *obd, struct inode *inode,
3459                        struct lustre_id *id)
3460 {
3461         int rc;
3462         ENTRY;
3463
3464         LASSERT(id != NULL);
3465         LASSERT(obd != NULL);
3466         LASSERT(inode != NULL);
3467
3468         rc = fsfilt_get_md(obd, inode, &id->li_fid,
3469                            sizeof(id->li_fid), EA_SID);
3470         if (rc < 0) {
3471                 CERROR("fsfilt_get_md() failed, "
3472                        "rc = %d\n", rc);
3473                 RETURN(rc);
3474         } else if (!rc) {
3475                 rc = -ENODATA;
3476                 RETURN(rc);
3477         } else {
3478                 rc = 0;
3479         }
3480         id_ino(id) = inode->i_ino;
3481         id_gen(id) = inode->i_generation;
3482         id_type(id) = S_IFMT & inode->i_mode;
3483
3484         RETURN(rc);
3485 }
3486
3487 int mds_read_inode_pid(struct obd_device *obd, struct inode *inode,
3488                        struct lustre_id *id)
3489 {
3490         int rc;
3491         ENTRY;
3492
3493         LASSERT(inode && id);
3494
3495         rc = fsfilt_get_md(obd, inode, id, sizeof(*id), EA_PID);
3496         if (rc < 0)
3497                CERROR("get parent id from EA failed, rc=%d\n", rc);
3498         else if (!rc)
3499                 rc = -ENODATA;
3500         else
3501                 rc = 0;
3502
3503         RETURN(rc);
3504 }
3505
3506 /* updates inode self id in EA. */
3507 int mds_update_inode_ids(struct obd_device *obd, struct inode *inode,
3508                          void *handle, struct lustre_id *id,
3509                          struct lustre_id *pid)
3510 {
3511         int rc = 0;
3512         ENTRY;
3513         
3514         LASSERT(id || pid);
3515         LASSERT(id == NULL || id_fid(id) != 0);
3516         LASSERT(pid == NULL || id_fid(pid) != 0);
3517         LASSERT(obd != NULL);
3518         LASSERT(inode != NULL);
3519         
3520         if (id) {
3521                 mds_set_last_fid(obd, id_fid(id));
3522                 rc = fsfilt_set_md(obd, inode, handle, &id->li_fid,
3523                                    sizeof(id->li_fid), EA_SID);
3524                 LASSERTF(rc == 0, "failed to update fid:  %d\n", rc);
3525         }
3526         if (pid) {
3527                 rc = fsfilt_set_md(obd, inode, handle, pid,
3528                                    sizeof(*pid), EA_PID);
3529                 LASSERTF(rc == 0, "failed to update parent fid:  %d\n", rc);
3530         }
3531
3532         RETURN(rc);
3533 }
3534
3535 /* 
3536  * reads inode id on master MDS. This is usualy done by CMOBD to update requests
3537  * to master MDS by correct store cookie, needed to find inode on master MDS
3538  * quickly.
3539  */
3540 int mds_read_inode_mid(struct obd_device *obd, struct inode *inode,
3541                        struct lustre_id *id)
3542 {
3543         int rc;
3544         ENTRY;
3545
3546         LASSERT(id != NULL);
3547         LASSERT(obd != NULL);
3548         LASSERT(inode != NULL);
3549
3550         rc = fsfilt_get_md(obd, inode, id, sizeof(*id), EA_MID);
3551         if (rc < 0) {
3552                 CERROR("fsfilt_get_md() failed, rc = %d\n", rc);
3553                 RETURN(rc);
3554         } else if (!rc) {
3555                 rc = -ENODATA;
3556                 RETURN(rc);
3557         } else {
3558                 rc = 0;
3559         }
3560
3561         RETURN(rc);
3562 }
3563
3564 /*
3565  * updates master inode id. Usualy this is done by CMOBD after an inode is
3566  * created and relationship between cache MDS and master one should be
3567  * established.
3568  */
3569 int mds_update_inode_mid(struct obd_device *obd, struct inode *inode,
3570                          void *handle, struct lustre_id *id)
3571 {
3572         int rc = 0;
3573         ENTRY;
3574
3575         LASSERT(id != NULL);
3576         LASSERT(obd != NULL);
3577         LASSERT(inode != NULL);
3578         
3579         rc = fsfilt_set_md(obd, inode, handle, id,
3580                            sizeof(*id), EA_MID);
3581         if (rc) {
3582                 CERROR("fsfilt_set_md() failed, "
3583                        "rc = %d\n", rc);
3584                 RETURN(rc);
3585         }
3586
3587         RETURN(rc);
3588 }
3589
3590 /* mount the file system (secretly) */
3591 static int mds_setup(struct obd_device *obd, obd_count len, void *buf)
3592 {
3593         struct lustre_cfg* lcfg = buf;
3594         struct mds_obd *mds = &obd->u.mds;
3595         struct lvfs_obd_ctxt *lvfs_ctxt = NULL;
3596         char *options = NULL;
3597         struct vfsmount *mnt;
3598         char ns_name[48];
3599         unsigned long page;
3600         int rc = 0;
3601         ENTRY;
3602
3603         if (lcfg->lcfg_bufcount < 3)
3604                 RETURN(rc = -EINVAL);
3605
3606         if (LUSTRE_CFG_BUFLEN(lcfg, 1) == 0 || LUSTRE_CFG_BUFLEN(lcfg, 2) == 0)
3607                 RETURN(rc = -EINVAL);
3608
3609         obd->obd_fsops = fsfilt_get_ops(lustre_cfg_string(lcfg, 2));
3610         if (IS_ERR(obd->obd_fsops))
3611                 RETURN(rc = PTR_ERR(obd->obd_fsops));
3612
3613         mds->mds_max_mdsize = sizeof(struct lov_mds_md);
3614
3615         page = get_zeroed_page(GFP_KERNEL);
3616         if (!page)
3617                 RETURN(-ENOMEM);
3618
3619         options = (char *)page;
3620
3621         /*
3622          * here we use "iopen_nopriv" hardcoded, because it affects MDS utility
3623          * and the rest of options are passed by mount options. Probably this
3624          * should be moved to somewhere else like startup scripts or lconf. */
3625         sprintf(options, "iopen_nopriv");
3626         
3627         if (LUSTRE_CFG_BUFLEN(lcfg, 4) > 0 && lustre_cfg_buf(lcfg, 4))
3628                 sprintf(options + strlen(options), ",%s",
3629                         lustre_cfg_string(lcfg, 4));
3630
3631         /* we have to know mdsnum before touching underlying fs -bzzz */
3632         atomic_set(&mds->mds_open_count, 0);
3633         sema_init(&mds->mds_md_sem, 1);
3634         sema_init(&mds->mds_create_sem, 1);
3635         mds->mds_md_connected = 0;
3636         mds->mds_md_name = NULL;
3637
3638         if (LUSTRE_CFG_BUFLEN(lcfg, 5) > 0 && lustre_cfg_buf(lcfg, 5) &&
3639             strncmp(lustre_cfg_string(lcfg, 5), "dumb", LUSTRE_CFG_BUFLEN(lcfg, 5))) {
3640                 class_uuid_t uuid;
3641
3642                 generate_random_uuid(uuid);
3643                 class_uuid_unparse(uuid, &mds->mds_md_uuid);
3644
3645                 OBD_ALLOC(mds->mds_md_name, LUSTRE_CFG_BUFLEN(lcfg, 5));
3646                 if (mds->mds_md_name == NULL) 
3647                         RETURN(rc = -ENOMEM);
3648
3649                 memcpy(mds->mds_md_name, lustre_cfg_buf(lcfg, 5),
3650                        LUSTRE_CFG_BUFLEN(lcfg, 5));
3651                 
3652                 CDEBUG(D_OTHER, "MDS: %s is master for %s\n",
3653                        obd->obd_name, mds->mds_md_name);
3654
3655                 rc = mds_md_connect(obd, mds->mds_md_name);
3656                 if (rc) {
3657                         OBD_FREE(mds->mds_md_name, LUSTRE_CFG_BUFLEN(lcfg, 5));
3658                         GOTO(err_ops, rc);
3659                 }
3660         }
3661
3662         mds->mds_obd_type = MDS_MASTER_OBD;
3663
3664         if (LUSTRE_CFG_BUFLEN(lcfg, 6) > 0 && lustre_cfg_buf(lcfg, 6) &&
3665             strncmp(lustre_cfg_string(lcfg, 6), "dumb", 
3666                     LUSTRE_CFG_BUFLEN(lcfg, 6))) {
3667                 if (!memcmp(lustre_cfg_string(lcfg, 6), "master", 
3668                             strlen("master"))) {
3669                         mds->mds_obd_type = MDS_MASTER_OBD;
3670                 } else if (!memcmp(lustre_cfg_string(lcfg, 6), "cache", 
3671                                    strlen("cache"))) {
3672                         mds->mds_obd_type = MDS_CACHE_OBD;
3673                 }     
3674         }
3675
3676         rc = lvfs_mount_fs(lustre_cfg_string(lcfg, 1), 
3677                            lustre_cfg_string(lcfg, 2),
3678                            options, 0, &lvfs_ctxt);
3679
3680         free_page(page);
3681
3682         if (rc || !lvfs_ctxt) {
3683                 CERROR("lvfs_mount_fs failed: rc = %d\n", rc);
3684                 GOTO(err_ops, rc);
3685         }
3686
3687         mnt = lvfs_ctxt->loc_mnt;
3688         mds->mds_lvfs_ctxt = lvfs_ctxt;
3689         ll_clear_rdonly(ll_sbdev(mnt->mnt_sb));
3690
3691         CDEBUG(D_SUPER, "%s: mnt = %p\n", lustre_cfg_string(lcfg, 1), mnt);
3692
3693         sema_init(&mds->mds_epoch_sem, 1);
3694         atomic_set(&mds->mds_real_clients, 0);
3695         spin_lock_init(&mds->mds_transno_lock);
3696         spin_lock_init(&mds->mds_last_fid_lock);
3697         sema_init(&mds->mds_orphan_recovery_sem, 1);
3698         mds->mds_max_cookiesize = sizeof(struct llog_cookie);
3699
3700         sprintf(ns_name, "mds-%s", obd->obd_uuid.uuid);
3701         obd->obd_namespace = ldlm_namespace_new(ns_name, LDLM_NAMESPACE_SERVER);
3702
3703         if (obd->obd_namespace == NULL) {
3704                 mds_cleanup(obd, 0);
3705                 GOTO(err_put, rc = -ENOMEM);
3706         }
3707         ldlm_register_intent(obd->obd_namespace, mds_intent_policy);
3708
3709         rc = mds_fs_setup(obd, mnt);
3710         if (rc) {
3711                 CERROR("%s: MDS filesystem method init failed: rc = %d\n",
3712                        obd->obd_name, rc);
3713                 GOTO(err_ns, rc);
3714         }
3715
3716         rc = llog_start_commit_thread();
3717         if (rc < 0)
3718
3719                 GOTO(err_fs, rc);
3720
3721
3722         if (LUSTRE_CFG_BUFLEN(lcfg, 3) > 0 && lustre_cfg_buf(lcfg, 3) &&
3723             strncmp(lustre_cfg_string(lcfg, 3), "dumb", 
3724                     LUSTRE_CFG_BUFLEN(lcfg, 3))) {
3725                 class_uuid_t uuid;
3726
3727                 generate_random_uuid(uuid);
3728                 class_uuid_unparse(uuid, &mds->mds_dt_uuid);
3729
3730                 OBD_ALLOC(mds->mds_profile, LUSTRE_CFG_BUFLEN(lcfg, 3));
3731                 if (mds->mds_profile == NULL)
3732                         GOTO(err_fs, rc = -ENOMEM);
3733
3734                 strncpy(mds->mds_profile, lustre_cfg_string(lcfg, 3),
3735                         LUSTRE_CFG_BUFLEN(lcfg, 3));
3736         }
3737
3738         /* 
3739          * setup root dir and files ID dir if lmv already connected, or there is
3740          * not lmv at all.
3741          */
3742         if (mds->mds_md_exp || (LUSTRE_CFG_BUFLEN(lcfg, 3) > 0 && 
3743                                 lustre_cfg_buf(lcfg, 3) &&
3744                                 strncmp(lustre_cfg_string(lcfg, 3), "dumb", 
3745                                         LUSTRE_CFG_BUFLEN(lcfg, 3)))) {
3746                 rc = mds_fs_setup_rootid(obd);
3747                 if (rc)
3748                         GOTO(err_fs, rc);
3749
3750                 rc = mds_fs_setup_virtid(obd);
3751                 if (rc)
3752                         GOTO(err_fs, rc);
3753
3754         }
3755
3756         ptlrpc_init_client(LDLM_CB_REQUEST_PORTAL, LDLM_CB_REPLY_PORTAL,
3757                            "mds_ldlm_client", &obd->obd_ldlm_client);
3758         obd->obd_replayable = 1;
3759         
3760         mds->mds_crypto_type = NO_CRYPTO;
3761         
3762         rc = mds_postsetup(obd);
3763         if (rc)
3764                 GOTO(err_fs, rc);
3765
3766         RETURN(0);
3767
3768 err_fs:
3769         /* No extra cleanup needed for llog_init_commit_thread() */
3770         mds_fs_cleanup(obd, 0);
3771 err_ns:
3772         ldlm_namespace_free(obd->obd_namespace, 0);
3773         obd->obd_namespace = NULL;
3774 err_put:
3775         unlock_kernel();
3776         lvfs_umount_fs(mds->mds_lvfs_ctxt);
3777         mds->mds_sb = 0;
3778         lock_kernel();
3779 err_ops:
3780         fsfilt_put_ops(obd->obd_fsops);
3781         return rc;
3782 }
3783
3784 static int mds_fs_post_setup(struct obd_device *obd)
3785 {
3786         struct mds_obd *mds = &obd->u.mds;
3787         struct dentry *dentry;
3788         int rc = 0;
3789         ENTRY;
3790        
3791         dentry = mds_id2dentry(obd, &mds->mds_rootid, NULL);
3792         if (IS_ERR(dentry)) {
3793                 CERROR("Can't find ROOT, err = %d\n",
3794                        (int)PTR_ERR(dentry));
3795                 RETURN(PTR_ERR(dentry));
3796         }
3797         rc = fsfilt_post_setup(obd, dentry);
3798         //set id2name function handler
3799         fsfilt_set_info(obd, mds->mds_sb, NULL, 7, "id2name",
3800                         sizeof(mds_audit_id2name), mds_audit_id2name);
3801
3802         l_dput(dentry);
3803         RETURN(rc); 
3804 }
3805
3806 static int mds_postsetup(struct obd_device *obd)
3807 {
3808         struct mds_obd *mds = &obd->u.mds;
3809         int rc = 0;
3810         ENTRY;
3811
3812         rc = obd_llog_setup(obd, &obd->obd_llogs, LLOG_CONFIG_ORIG_CTXT, 
3813                             obd, 0, NULL, &llog_lvfs_ops);
3814         if (rc)
3815                 RETURN(rc);
3816
3817         if (mds->mds_profile) {
3818                 struct llog_ctxt *lgctxt;
3819                 struct lvfs_run_ctxt saved;
3820                 struct lustre_profile *lprof;
3821                 struct config_llog_instance cfg;
3822
3823                 cfg.cfg_instance = NULL;
3824                 cfg.cfg_uuid = mds->mds_dt_uuid;
3825                 push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
3826
3827                 lgctxt = llog_get_context(&obd->obd_llogs, LLOG_CONFIG_ORIG_CTXT);
3828                 if (!lgctxt) {
3829                         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
3830                         GOTO(err_llog, rc = -EINVAL);
3831                 }
3832                 
3833                 rc = class_config_process_llog(lgctxt, mds->mds_profile, &cfg);
3834                 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
3835
3836                 if (rc)
3837                         GOTO(err_llog, rc);
3838
3839                 lprof = class_get_profile(mds->mds_profile);
3840                 if (lprof == NULL) {
3841                         CERROR("No profile found: %s\n", mds->mds_profile);
3842                         GOTO(err_cleanup, rc = -ENOENT);
3843                 }
3844                 rc = mds_dt_connect(obd, lprof->lp_lov);
3845                 if (rc)
3846                         GOTO(err_cleanup, rc);
3847
3848                 rc = mds_md_postsetup(obd);
3849                 if (rc)
3850                         GOTO(err_cleanup, rc);
3851         }
3852         rc = mds_fs_post_setup(obd);
3853         if (rc)
3854                 CERROR("can not post setup fsfilt\n");        
3855         RETURN(rc);
3856 err_cleanup:
3857         mds_dt_clean(obd);
3858 err_llog:
3859         obd_llog_cleanup(llog_get_context(&obd->obd_llogs,
3860                                           LLOG_CONFIG_ORIG_CTXT));
3861         return rc;
3862 }
3863
3864 int mds_postrecov_common(struct obd_device *obd)
3865 {
3866         struct mds_obd *mds = &obd->u.mds;
3867         struct llog_ctxt *ctxt;
3868         int rc, item = 0, valsize;
3869          __u32 group;
3870         ENTRY;
3871
3872         LASSERT(!obd->obd_recovering);
3873         ctxt = llog_get_context(&obd->obd_llogs, LLOG_UNLINK_ORIG_CTXT);
3874         LASSERT(ctxt != NULL);
3875
3876         /* clean PENDING dir */
3877         rc = mds_cleanup_orphans(obd);
3878         if (rc < 0)
3879                 GOTO(out, rc);
3880         item = rc;
3881
3882         group = FILTER_GROUP_FIRST_MDS + mds->mds_num;
3883         valsize = sizeof(group);
3884         rc = obd_set_info(mds->mds_dt_exp, strlen("mds_conn"),
3885                           "mds_conn", valsize, &group);
3886         if (rc)
3887                 GOTO(out, rc);
3888
3889         rc = llog_connect(ctxt, obd->u.mds.mds_dt_desc.ld_tgt_count,
3890                           NULL, NULL, NULL);
3891         if (rc) {
3892                 CERROR("%s: failed at llog_origin_connect: %d\n", 
3893                        obd->obd_name, rc);
3894                 GOTO(out, rc);
3895         }
3896
3897         /* remove the orphaned precreated objects */
3898         rc = mds_dt_clear_orphans(mds, NULL /* all OSTs */);
3899         if (rc)
3900                 GOTO(err_llog, rc);
3901
3902 out:
3903         RETURN(rc < 0 ? rc : item);
3904
3905 err_llog:
3906         /* cleanup all llogging subsystems */
3907         rc = obd_llog_finish(obd, &obd->obd_llogs,
3908                              mds->mds_dt_desc.ld_tgt_count);
3909         if (rc)
3910                 CERROR("%s: failed to cleanup llogging subsystems\n",
3911                         obd->obd_name);
3912         goto out;
3913 }
3914
3915 int mds_postrecov(struct obd_device *obd)
3916 {
3917         int rc;
3918         ENTRY;
3919         rc = mds_postrecov_common(obd);
3920         if (rc == 0)
3921                 rc = mds_md_reconnect(obd);
3922         RETURN(rc);
3923 }
3924
3925 int mds_dt_clean(struct obd_device *obd)
3926 {
3927         struct mds_obd *mds = &obd->u.mds;
3928         ENTRY;
3929
3930         if (mds->mds_profile) {
3931                 char * cln_prof;
3932                 struct llog_ctxt *llctx;
3933                 struct lvfs_run_ctxt saved;
3934                 struct config_llog_instance cfg;
3935                 int len = strlen(mds->mds_profile) + sizeof("-clean") + 1;
3936
3937                 OBD_ALLOC(cln_prof, len);
3938                 sprintf(cln_prof, "%s-clean", mds->mds_profile);
3939
3940                 cfg.cfg_instance = NULL;
3941                 cfg.cfg_uuid = mds->mds_dt_uuid;
3942
3943                 push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
3944                 llctx = llog_get_context(&obd->obd_llogs,
3945                                          LLOG_CONFIG_ORIG_CTXT);
3946                 class_config_process_llog(llctx, cln_prof, &cfg);
3947                 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
3948
3949                 OBD_FREE(cln_prof, len);
3950                 OBD_FREE(mds->mds_profile, strlen(mds->mds_profile) + 1);
3951                 mds->mds_profile = NULL;
3952         }
3953         RETURN(0);
3954 }
3955
3956 int mds_md_clean(struct obd_device *obd)
3957 {
3958         struct mds_obd *mds = &obd->u.mds;
3959         ENTRY;
3960
3961         if (mds->mds_md_name) {
3962                 OBD_FREE(mds->mds_md_name, strlen(mds->mds_md_name) + 1);
3963                 mds->mds_md_name = NULL;
3964         }
3965         RETURN(0);
3966 }
3967
3968 static int mds_precleanup(struct obd_device *obd, int flags)
3969 {
3970         int rc = 0;
3971         ENTRY;
3972
3973         mds_md_clean(obd);
3974         mds_dt_disconnect(obd, flags);
3975         mds_dt_clean(obd);
3976         obd_llog_cleanup(llog_get_context(&obd->obd_llogs, LLOG_CONFIG_ORIG_CTXT));
3977         RETURN(rc);
3978 }
3979
3980 extern void lgss_svc_cache_purge_all(void);
3981 static int mds_cleanup(struct obd_device *obd, int flags)
3982 {
3983         struct mds_obd *mds = &obd->u.mds;
3984         ENTRY;
3985
3986         if (mds->mds_sb == NULL)
3987                 RETURN(0);
3988
3989         mds_update_server_data(obd, 1);
3990         mds_update_last_fid(obd, NULL, 1);
3991         
3992         if (mds->mds_dt_objids != NULL) {
3993                 int size = mds->mds_dt_desc.ld_tgt_count *
3994                         sizeof(obd_id);
3995                 OBD_FREE(mds->mds_dt_objids, size);
3996         }
3997         mds_fs_cleanup(obd, flags);
3998
3999         unlock_kernel();
4000
4001         /* 2 seems normal on mds, (may_umount() also expects 2
4002           fwiw), but we only see 1 at this point in obdfilter. */
4003         lvfs_umount_fs(mds->mds_lvfs_ctxt);
4004
4005         mds->mds_sb = 0;
4006
4007         ldlm_namespace_free(obd->obd_namespace, flags & OBD_OPT_FORCE);
4008
4009         spin_lock_bh(&obd->obd_processing_task_lock);
4010         if (obd->obd_recovering) {
4011                 target_cancel_recovery_timer(obd);
4012                 obd->obd_recovering = 0;
4013         }
4014         spin_unlock_bh(&obd->obd_processing_task_lock);
4015
4016         lock_kernel();
4017         fsfilt_put_ops(obd->obd_fsops);
4018
4019 #ifdef ENABLE_GSS
4020         /* XXX */
4021         lgss_svc_cache_purge_all();
4022 #endif
4023
4024         spin_lock(&mds->mds_denylist_lock);
4025         while (!list_empty( &mds->mds_denylist ) ) {
4026                 deny_sec_t *p_deny_sec = list_entry(mds->mds_denylist.next,
4027                                                     deny_sec_t, list);
4028                 list_del(&p_deny_sec->list);
4029                 OBD_FREE(p_deny_sec, sizeof(*p_deny_sec));
4030         }
4031         spin_unlock(&mds->mds_denylist_lock);
4032
4033         RETURN(0);
4034 }
4035
4036 static int set_security(const char *value, char **sec)
4037 {
4038         if (!strcmp(value, "null"))
4039                 *sec = "null";
4040         else if (!strcmp(value, "krb5i"))
4041                 *sec = "krb5i";
4042         else if (!strcmp(value, "krb5p"))
4043                 *sec = "krb5p";
4044         else {
4045                 CERROR("Unrecognized security flavor %s\n", value);
4046                 return -EINVAL;
4047         }
4048
4049         return 0;
4050 }
4051
4052 static int mds_process_config(struct obd_device *obd, obd_count len, void *buf)
4053 {
4054         struct lustre_cfg *lcfg = buf;
4055         struct mds_obd *mds = &obd->u.mds;
4056         int rc = 0;
4057         ENTRY;
4058
4059         switch(lcfg->lcfg_command) {
4060         case LCFG_SET_SECURITY: {
4061                 if ((LUSTRE_CFG_BUFLEN(lcfg, 1) == 0) ||
4062                     (LUSTRE_CFG_BUFLEN(lcfg, 2) == 0))
4063                         GOTO(out, rc = -EINVAL);
4064
4065                 if (!strcmp(lustre_cfg_string(lcfg, 1), "mds_sec"))
4066                         rc = set_security(lustre_cfg_string(lcfg, 2),
4067                                           &mds->mds_mds_sec);
4068                 else if (!strcmp(lustre_cfg_string(lcfg, 1), "oss_sec"))
4069                         rc = set_security(lustre_cfg_string(lcfg, 2),
4070                                           &mds->mds_ost_sec);
4071                 else if (!strcmp(lustre_cfg_string(lcfg, 1), "deny_sec")){
4072                         spin_lock(&mds->mds_denylist_lock);
4073                         rc = add_deny_security(lustre_cfg_string(lcfg, 2),
4074                                                &mds->mds_denylist);
4075                         spin_unlock(&mds->mds_denylist_lock);
4076                 } else {
4077                         CERROR("Unrecognized key\n");
4078                         rc = -EINVAL;
4079                 }
4080                 break;
4081         }
4082         default:
4083                 CERROR("Unknown command: %d\n", lcfg->lcfg_command);
4084                 GOTO(out, rc = -EINVAL);
4085         }
4086 out:
4087         RETURN(rc);
4088 }
4089
4090 static void fixup_handle_for_resent_req(struct ptlrpc_request *req,
4091                                         int offset,
4092                                         struct ldlm_lock *new_lock,
4093                                         struct ldlm_lock **old_lock,
4094                                         struct lustre_handle *lockh)
4095 {
4096         struct obd_export *exp = req->rq_export;
4097         struct obd_device *obd = exp->exp_obd;
4098         struct ldlm_request *dlmreq =
4099                 lustre_msg_buf(req->rq_reqmsg, offset, sizeof (*dlmreq));
4100         struct lustre_handle remote_hdl = dlmreq->lock_handle1;
4101         struct list_head *iter;
4102
4103         if (!(lustre_msg_get_flags(req->rq_reqmsg) & MSG_RESENT))
4104                 return;
4105
4106         spin_lock(&obd->obd_namespace->ns_hash_lock);
4107         list_for_each(iter, &exp->exp_ldlm_data.led_held_locks) {
4108                 struct ldlm_lock *lock;
4109                 lock = list_entry(iter, struct ldlm_lock, l_export_chain);
4110                 if (lock == new_lock)
4111                         continue;
4112                 if (lock->l_remote_handle.cookie == remote_hdl.cookie) {
4113                         lockh->cookie = lock->l_handle.h_cookie;
4114                         LDLM_DEBUG(lock, "restoring lock cookie");
4115                         DEBUG_REQ(D_HA, req, "restoring lock cookie "LPX64,
4116                                   lockh->cookie);
4117                         if (old_lock)
4118                                 *old_lock = LDLM_LOCK_GET(lock);
4119                         spin_unlock(&obd->obd_namespace->ns_hash_lock);
4120                         return;
4121                 }
4122         }
4123         spin_unlock(&obd->obd_namespace->ns_hash_lock);
4124
4125         /* If the xid matches, then we know this is a resent request,
4126          * and allow it. (It's probably an OPEN, for which we don't
4127          * send a lock */
4128         if (req->rq_xid == 
4129             le64_to_cpu(exp->exp_mds_data.med_mcd->mcd_last_xid))
4130                 return;
4131
4132         if (req->rq_xid == 
4133             le64_to_cpu(exp->exp_mds_data.med_mcd->mcd_last_close_xid))
4134                 return;
4135
4136         /* This remote handle isn't enqueued, so we never received or
4137          * processed this request.  Clear MSG_RESENT, because it can
4138          * be handled like any normal request now. */
4139
4140         lustre_msg_clear_flags(req->rq_reqmsg, MSG_RESENT);
4141
4142         DEBUG_REQ(D_HA, req, "no existing lock with rhandle "LPX64,
4143                   remote_hdl.cookie);
4144 }
4145
4146 int intent_disposition(struct ldlm_reply *rep, int flag)
4147 {
4148         if (!rep)
4149                 return 0;
4150         return (rep->lock_policy_res1 & flag);
4151 }
4152
4153 void intent_set_disposition(struct ldlm_reply *rep, int flag)
4154 {
4155         if (!rep)
4156                 return;
4157         rep->lock_policy_res1 |= flag;
4158 }
4159
4160 static int mds_intent_prepare_reply_buffers(struct ptlrpc_request *req, 
4161                                             struct ldlm_intent *it)
4162 {
4163         struct mds_obd *mds = &req->rq_export->exp_obd->u.mds;
4164         int rc, reply_buffers;
4165         int repsize[5] = {sizeof(struct ldlm_reply),
4166                           sizeof(struct mds_body),
4167                           mds->mds_max_mdsize};
4168         ENTRY;       
4169  
4170         reply_buffers = 3;
4171         if (it->opc & ( IT_OPEN | IT_GETATTR | IT_LOOKUP | IT_CHDIR )) {
4172                 if (req->rq_export->exp_mds_data.med_remote) {
4173                         repsize[reply_buffers++] = 
4174                                 sizeof(struct mds_remote_perm);
4175                 } else {
4176                         repsize[reply_buffers++] = sizeof(int);
4177                         repsize[reply_buffers++] = 
4178                                 xattr_acl_size(LL_ACL_MAX_ENTRIES);
4179                 }
4180                 /*FIXME: ugly here, should be optimize for there 
4181                  * is no crypto key*/
4182                 repsize[reply_buffers++] = sizeof(int);
4183                 repsize[reply_buffers++] = sizeof(struct crypto_key); 
4184         }
4185
4186         rc = lustre_pack_reply(req, reply_buffers, repsize, NULL);
4187
4188         RETURN(rc);
4189 }
4190
4191 static int mds_intent_policy(struct ldlm_namespace *ns,
4192                              struct ldlm_lock **lockp, void *req_cookie,
4193                              ldlm_mode_t mode, int flags, void *data)
4194 {
4195         struct ptlrpc_request *req = req_cookie;
4196         struct ldlm_lock *lock = *lockp;
4197         struct ldlm_intent *it;
4198         struct ldlm_reply *rep;
4199         struct lustre_handle lockh[2] = {{0}, {0}};
4200         struct ldlm_lock *new_lock = NULL;
4201         int getattr_part = MDS_INODELOCK_UPDATE;
4202         int rc;
4203
4204         int offset = MDS_REQ_INTENT_REC_OFF; 
4205         ENTRY;
4206
4207         LASSERT(req != NULL);
4208         MD_COUNTER_INCREMENT(req->rq_export->exp_obd, intent_lock);
4209
4210         if (req->rq_reqmsg->bufcount <= MDS_REQ_INTENT_IT_OFF) {
4211                 /* No intent was provided */
4212                 int size = sizeof(struct ldlm_reply);
4213                 rc = lustre_pack_reply(req, 1, &size, NULL);
4214                 LASSERT(rc == 0);
4215                 RETURN(0);
4216         }
4217
4218         it = lustre_swab_reqbuf(req, MDS_REQ_INTENT_IT_OFF, sizeof(*it),
4219                                 lustre_swab_ldlm_intent);
4220         if (it == NULL) {
4221                 CERROR("Intent missing\n");
4222                 RETURN(req->rq_status = -EFAULT);
4223         }
4224
4225         LDLM_DEBUG(lock, "intent policy, opc: %s", ldlm_it2str(it->opc));
4226
4227         rc = mds_intent_prepare_reply_buffers(req, it);
4228
4229         if (rc)
4230                 RETURN(req->rq_status = rc);
4231
4232         rep = lustre_msg_buf(req->rq_repmsg, 0, sizeof(*rep));
4233         LASSERT(rep != NULL);
4234
4235         intent_set_disposition(rep, DISP_IT_EXECD);
4236
4237         /* execute policy */
4238         switch ((long)it->opc) {
4239         case IT_OPEN:
4240         case IT_CREAT|IT_OPEN:
4241                 fixup_handle_for_resent_req(req, MDS_REQ_INTENT_LOCKREQ_OFF,
4242                                             lock, NULL, lockh);
4243                 /* XXX swab here to assert that an mds_open reint
4244                  * packet is following */
4245                 fixup_handle_for_resent_req(req, MDS_REQ_INTENT_LOCKREQ_OFF, 
4246                                             lock, NULL, lockh);
4247                 rep->lock_policy_res2 = mds_reint(req, offset, lockh);
4248                 
4249                 if (rep->lock_policy_res2) {
4250                         /* 
4251                          * mds_open() returns ENOLCK where it should return
4252                          * zero, but it has no lock to return.
4253                          */
4254                         if (rep->lock_policy_res2 == ENOLCK)
4255                                 rep->lock_policy_res2 = 0;
4256
4257                         RETURN(ELDLM_LOCK_ABORTED);
4258                 }
4259                 
4260                 /*
4261                  * IT_OPEN may return lock on cross-node dentry that we want to
4262                  * hold during attr retrival -bzzz
4263                  */
4264                 if (lockh[0].cookie == 0)
4265                         RETURN(ELDLM_LOCK_ABORTED);
4266                 
4267                 break;
4268         case IT_LOOKUP:
4269                 getattr_part = MDS_INODELOCK_LOOKUP;
4270         case IT_CHDIR:
4271         case IT_GETATTR:
4272                 getattr_part |= MDS_INODELOCK_LOOKUP;
4273         case IT_READDIR:
4274                 fixup_handle_for_resent_req(req, MDS_REQ_INTENT_LOCKREQ_OFF, 
4275                                             lock, &new_lock, lockh);
4276                 rep->lock_policy_res2 = mds_getattr_lock(req, offset, lockh,
4277                                                          getattr_part);
4278                 /* FIXME: LDLM can set req->rq_status. MDS sets
4279                    policy_res{1,2} with disposition and status.
4280                    - replay: returns 0 & req->status is old status
4281                    - otherwise: returns req->status */
4282                 if (intent_disposition(rep, DISP_LOOKUP_NEG))
4283                         rep->lock_policy_res2 = 0;
4284                 if (!intent_disposition(rep, DISP_LOOKUP_POS) ||
4285                     rep->lock_policy_res2)
4286                         RETURN(ELDLM_LOCK_ABORTED);
4287                 if (req->rq_status != 0) {
4288                         LBUG();
4289                         rep->lock_policy_res2 = req->rq_status;
4290                         RETURN(ELDLM_LOCK_ABORTED);
4291                 }
4292                 break;
4293         case IT_UNLINK:
4294                 rc = mds_lock_and_check_slave(offset, req, lockh);
4295                 if ((rep->lock_policy_res2 = rc)) {
4296                         if (rc == ENOLCK)
4297                                 rep->lock_policy_res2 = 0;
4298                         RETURN(ELDLM_LOCK_ABORTED);
4299                 }
4300                 break;
4301         default:
4302                 CERROR("Unhandled intent "LPD64"\n", it->opc);
4303                 LBUG();
4304         }
4305
4306         /* By this point, whatever function we called above must have either
4307          * filled in 'lockh', been an intent replay, or returned an error.  We
4308          * want to allow replayed RPCs to not get a lock, since we would just
4309          * drop it below anyways because lock replay is done separately by the
4310          * client afterwards.  For regular RPCs we want to give the new lock to
4311          * the client instead of whatever lock it was about to get. */
4312         if (new_lock == NULL)
4313                 new_lock = ldlm_handle2lock(&lockh[0]);
4314         if (new_lock == NULL && (flags & LDLM_FL_INTENT_ONLY))
4315                 RETURN(0);
4316
4317         LASSERTF(new_lock != NULL, "op "LPX64" lockh "LPX64"\n",
4318                  it->opc, lockh[0].cookie);
4319
4320         /* If we've already given this lock to a client once, then we should
4321          * have no readers or writers.  Otherwise, we should have one reader
4322          * _or_ writer ref (which will be zeroed below) before returning the
4323          * lock to a client. */
4324         if (new_lock->l_export == req->rq_export) {
4325                 LASSERT(new_lock->l_readers + new_lock->l_writers == 0);
4326         } else {
4327                 LASSERT(new_lock->l_export == NULL);
4328                 LASSERT(new_lock->l_readers + new_lock->l_writers == 1);
4329         }
4330
4331         *lockp = new_lock;
4332
4333         if (new_lock->l_export == req->rq_export) {
4334                 /* Already gave this to the client, which means that we
4335                  * reconstructed a reply. */
4336                 LASSERT(lustre_msg_get_flags(req->rq_reqmsg) &
4337                         MSG_RESENT);
4338                 RETURN(ELDLM_LOCK_REPLACED);
4339         }
4340
4341         /* Fixup the lock to be given to the client */
4342         lock_res_and_lock(new_lock);
4343         new_lock->l_readers = 0;
4344         new_lock->l_writers = 0;
4345
4346         new_lock->l_export = class_export_get(req->rq_export);
4347
4348         spin_lock(&new_lock->l_export->exp_ldlm_data.led_lock);
4349         list_add(&new_lock->l_export_chain,
4350                  &new_lock->l_export->exp_ldlm_data.led_held_locks);
4351         spin_unlock(&new_lock->l_export->exp_ldlm_data.led_lock);
4352
4353         new_lock->l_blocking_ast = lock->l_blocking_ast;
4354         new_lock->l_completion_ast = lock->l_completion_ast;
4355
4356         memcpy(&new_lock->l_remote_handle, &lock->l_remote_handle,
4357                sizeof(lock->l_remote_handle));
4358
4359         new_lock->l_flags &= ~LDLM_FL_LOCAL;
4360
4361         unlock_res_and_lock(new_lock);
4362         LDLM_LOCK_PUT(new_lock);
4363
4364         RETURN(ELDLM_LOCK_REPLACED);
4365 }
4366
4367 int mds_attach(struct obd_device *dev, obd_count len, void *data)
4368 {
4369         struct lprocfs_static_vars lvars;
4370         int rc = 0;
4371         struct mds_obd *mds = &dev->u.mds;
4372
4373         spin_lock_init(&mds->mds_denylist_lock);
4374         INIT_LIST_HEAD(&mds->mds_denylist);
4375
4376         lprocfs_init_multi_vars(0, &lvars);
4377
4378         rc = lprocfs_obd_attach(dev, lvars.obd_vars);
4379         if (rc)
4380                 return rc;
4381
4382         return lprocfs_alloc_md_stats(dev, 0);
4383 }
4384
4385 int mds_detach(struct obd_device *dev)
4386 {
4387         lprocfs_free_md_stats(dev);
4388         return lprocfs_obd_detach(dev);
4389 }
4390
4391 int mdt_attach(struct obd_device *dev, obd_count len, void *data)
4392 {
4393         struct lprocfs_static_vars lvars;
4394
4395         lprocfs_init_multi_vars(1, &lvars);
4396         return lprocfs_obd_attach(dev, lvars.obd_vars);
4397 }
4398
4399 int mdt_detach(struct obd_device *dev)
4400 {
4401         return lprocfs_obd_detach(dev);
4402 }
4403
4404 static int mdt_setup(struct obd_device *obd, obd_count len, void *buf)
4405 {
4406         struct mds_obd *mds = &obd->u.mds;
4407         int rc = 0;
4408         ENTRY;
4409
4410         mds->mds_service =
4411                 ptlrpc_init_svc(MDS_NBUFS, MDS_BUFSIZE, MDS_MAXREQSIZE,
4412                                 MDS_REQUEST_PORTAL, MDC_REPLY_PORTAL,
4413                                 MDS_SERVICE_WATCHDOG_TIMEOUT,
4414                                 mds_handle, "mds", obd->obd_proc_entry);
4415
4416         if (!mds->mds_service) {
4417                 CERROR("failed to start service\n");
4418                 RETURN(-ENOMEM);
4419         }
4420
4421         rc = ptlrpc_start_n_threads(obd, mds->mds_service, MDT_NUM_THREADS,
4422                                     "ll_mdt");
4423         if (rc)
4424                 GOTO(err_thread, rc);
4425
4426         mds->mds_setattr_service =
4427                 ptlrpc_init_svc(MDS_NBUFS, MDS_BUFSIZE, MDS_MAXREQSIZE,
4428                                 MDS_SETATTR_PORTAL, MDC_REPLY_PORTAL,
4429                                 MDS_SERVICE_WATCHDOG_TIMEOUT,
4430                                 mds_handle, "mds_setattr",
4431                                 obd->obd_proc_entry);
4432         if (!mds->mds_setattr_service) {
4433                 CERROR("failed to start getattr service\n");
4434                 GOTO(err_thread, rc = -ENOMEM);
4435         }
4436
4437         rc = ptlrpc_start_n_threads(obd, mds->mds_setattr_service,
4438                                     MDT_NUM_THREADS, "ll_mdt_attr");
4439         if (rc)
4440                 GOTO(err_thread2, rc);
4441
4442         mds->mds_readpage_service =
4443                 ptlrpc_init_svc(MDS_NBUFS, MDS_BUFSIZE, MDS_MAXREQSIZE,
4444                                 MDS_READPAGE_PORTAL, MDC_REPLY_PORTAL,
4445                                 MDS_SERVICE_WATCHDOG_TIMEOUT,
4446                                 mds_handle, "mds_readpage",
4447                                 obd->obd_proc_entry);
4448         if (!mds->mds_readpage_service) {
4449                 CERROR("failed to start readpage service\n");
4450                 GOTO(err_thread2, rc = -ENOMEM);
4451         }
4452
4453         rc = ptlrpc_start_n_threads(obd, mds->mds_readpage_service,
4454                                     MDT_NUM_THREADS, "ll_mdt_rdpg");
4455
4456         if (rc)
4457                 GOTO(err_thread3, rc);
4458
4459         RETURN(0);
4460
4461 err_thread3:
4462         ptlrpc_unregister_service(mds->mds_readpage_service);
4463 err_thread2:
4464         ptlrpc_unregister_service(mds->mds_setattr_service);
4465 err_thread:
4466         ptlrpc_unregister_service(mds->mds_service);
4467         return rc;
4468 }
4469
4470 static int mdt_cleanup(struct obd_device *obd, int flags)
4471 {
4472         struct mds_obd *mds = &obd->u.mds;
4473         ENTRY;
4474
4475         ptlrpc_stop_all_threads(mds->mds_readpage_service);
4476         ptlrpc_unregister_service(mds->mds_readpage_service);
4477
4478         ptlrpc_stop_all_threads(mds->mds_setattr_service);
4479         ptlrpc_unregister_service(mds->mds_setattr_service);
4480
4481         ptlrpc_stop_all_threads(mds->mds_service);
4482         ptlrpc_unregister_service(mds->mds_service);
4483
4484         RETURN(0);
4485 }
4486
4487 static struct dentry *mds_lvfs_id2dentry(__u64 ino, __u32 gen,
4488                                          __u64 gr, void *data)
4489 {
4490         struct lustre_id id;
4491         struct obd_device *obd = data;
4492         
4493         id_ino(&id) = ino;
4494         id_gen(&id) = gen;
4495         return mds_id2dentry(obd, &id, NULL);
4496 }
4497
4498 static int mds_get_info(struct obd_export *exp, __u32 keylen,
4499                         void *key, __u32 *valsize, void *val)
4500 {
4501         struct obd_device *obd;
4502         struct mds_obd *mds;
4503         int rc = 0;
4504         ENTRY;
4505
4506         obd = class_exp2obd(exp);
4507         mds = &obd->u.mds;
4508         
4509         if (obd == NULL) {
4510                 CDEBUG(D_IOCTL, "invalid client cookie "LPX64"\n",
4511                        exp->exp_handle.h_cookie);
4512                 RETURN(-EINVAL);
4513         }
4514
4515         if (keylen >= strlen("reint_log") && memcmp(key, "reint_log", 9) == 0) {
4516                 /* get log_context handle. */
4517                 struct llog_ctxt *ctxt;
4518                 unsigned long *llh_handle = val;
4519                 *valsize = sizeof(unsigned long);
4520                 ctxt = llog_get_context(&obd->obd_llogs, LLOG_REINT_ORIG_CTXT);
4521                 if (!ctxt) {
4522                         CERROR("Cannot get REINT llog context\n");
4523                         RETURN(-ENOENT);
4524                 }
4525                 *llh_handle = (unsigned long)ctxt;
4526                 RETURN(0);
4527         }
4528         if (keylen >= strlen("cache_sb") && memcmp(key, "cache_sb", 8) == 0) {
4529                 /* get log_context handle. */
4530                 unsigned long *sb = val;
4531                 *valsize = sizeof(unsigned long);
4532                 *sb = (unsigned long)obd->u.mds.mds_sb;
4533                 RETURN(0);
4534         }
4535
4536         if (keylen >= strlen("mdsize") && memcmp(key, "mdsize", keylen) == 0) {
4537                 __u32 *mdsize = val;
4538                 *valsize = sizeof(*mdsize);
4539                 *mdsize = mds->mds_max_mdsize;
4540                 RETURN(0);
4541         }
4542
4543         if (keylen >= strlen("mdsnum") && strcmp(key, "mdsnum") == 0) {
4544                 __u32 *mdsnum = val;
4545                 *valsize = sizeof(*mdsnum);
4546                 *mdsnum = mds->mds_num;
4547                 RETURN(0);
4548         }
4549
4550         if (keylen >= strlen("rootid") && strcmp(key, "rootid") == 0) {
4551                 struct lustre_id *rootid = val;
4552                 *valsize = sizeof(*rootid);
4553                 *rootid = mds->mds_rootid;
4554                 RETURN(0);
4555         }
4556         
4557         if (keylen >= strlen("lovdesc") && strcmp(key, "lovdesc") == 0) {
4558                 struct lov_desc *desc = val;
4559                 *valsize = sizeof(*desc);
4560                 *desc = mds->mds_dt_desc;
4561                 RETURN(0);
4562         }
4563         
4564         rc = fsfilt_get_info(obd, mds->mds_sb, NULL, keylen, key, valsize, val);
4565         if (rc)
4566                 CDEBUG(D_IOCTL, "invalid key\n");
4567         
4568         RETURN(rc);
4569 }
4570
4571 struct lvfs_callback_ops mds_lvfs_ops = {
4572         l_id2dentry:     mds_lvfs_id2dentry,
4573 };
4574
4575 int mds_preprw(int cmd, struct obd_export *exp, struct obdo *oa,
4576                 int objcount, struct obd_ioobj *obj,
4577                 int niocount, struct niobuf_remote *nb,
4578                 struct niobuf_local *res,
4579                 struct obd_trans_info *oti);
4580
4581 int mds_commitrw(int cmd, struct obd_export *exp, struct obdo *oa,
4582                  int objcount, struct obd_ioobj *obj, int niocount,
4583                  struct niobuf_local *res, struct obd_trans_info *oti,
4584                  int rc);
4585
4586 /* use obd ops to offer management infrastructure */
4587 static struct obd_ops mds_obd_ops = {
4588         .o_owner           = THIS_MODULE,
4589         .o_attach          = mds_attach,
4590         .o_detach          = mds_detach,
4591         .o_connect         = mds_connect,
4592         .o_connect_post    = mds_connect_post,
4593         .o_init_export     = mds_init_export,
4594         .o_destroy_export  = mds_destroy_export,
4595         .o_disconnect      = mds_disconnect,
4596         .o_setup           = mds_setup,
4597         .o_precleanup      = mds_precleanup,
4598         .o_cleanup         = mds_cleanup,
4599         .o_process_config  = mds_process_config,
4600         .o_postrecov       = mds_postrecov,
4601         .o_statfs          = mds_obd_statfs,
4602         .o_iocontrol       = mds_iocontrol,
4603         .o_create          = mds_obd_create,
4604         .o_destroy         = mds_obd_destroy,
4605         .o_llog_init       = mds_llog_init,
4606         .o_llog_finish     = mds_llog_finish,
4607         .o_notify          = mds_notify,
4608         .o_get_info        = mds_get_info,
4609         .o_set_info        = mds_set_info,
4610         .o_preprw          = mds_preprw, 
4611         .o_commitrw        = mds_commitrw,
4612 };
4613
4614 static struct obd_ops mdt_obd_ops = {
4615         .o_owner           = THIS_MODULE,
4616         .o_attach          = mdt_attach,
4617         .o_detach          = mdt_detach,
4618         .o_setup           = mdt_setup,
4619         .o_cleanup         = mdt_cleanup,
4620 };
4621
4622 static int __init mds_init(void)
4623 {
4624         struct lprocfs_static_vars lvars;
4625
4626         mds_init_lsd_cache();
4627         mds_init_rmtacl_upcall_cache();
4628
4629         lprocfs_init_multi_vars(0, &lvars);
4630         class_register_type(&mds_obd_ops, NULL, lvars.module_vars,
4631                             OBD_MDS_DEVICENAME);
4632         lprocfs_init_multi_vars(1, &lvars);
4633         class_register_type(&mdt_obd_ops, NULL, lvars.module_vars,
4634                             OBD_MDT_DEVICENAME);
4635
4636         return 0;
4637 }
4638
4639 static void /*__exit*/ mds_exit(void)
4640 {
4641         mds_cleanup_rmtacl_upcall_cache();
4642         mds_cleanup_lsd_cache();
4643
4644         class_unregister_type(OBD_MDS_DEVICENAME);
4645         class_unregister_type(OBD_MDT_DEVICENAME);
4646 }
4647
4648 MODULE_AUTHOR("Cluster File Systems, Inc. <info@clusterfs.com>");
4649 MODULE_DESCRIPTION("Lustre Metadata Server (MDS)");
4650 MODULE_LICENSE("GPL");
4651
4652 module_init(mds_init);
4653 module_exit(mds_exit);