Whamcloud - gitweb
- mdt_obj_create() understands a request which is part of cross-node mkdir()
[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/ext3_fs.h>
43 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
44 # include <linux/smp_lock.h>
45 # include <linux/buffer_head.h>
46 # include <linux/workqueue.h>
47 # include <linux/mount.h>
48 #else
49 # include <linux/locks.h>
50 #endif
51 #include <linux/obd_lov.h>
52 #include <linux/lustre_mds.h>
53 #include <linux/lustre_fsfilt.h>
54 #include <linux/lprocfs_status.h>
55 #include <linux/lustre_commit_confd.h>
56
57 #include "mds_internal.h"
58
59 static int mds_intent_policy(struct ldlm_namespace *ns,
60                              struct ldlm_lock **lockp, void *req_cookie,
61                              ldlm_mode_t mode, int flags, void *data);
62 static int mds_postsetup(struct obd_device *obd);
63 static int mds_cleanup(struct obd_device *obd, int flags);
64
65 /* Assumes caller has already pushed into the kernel filesystem context */
66 static int mds_sendpage(struct ptlrpc_request *req, struct file *file,
67                         loff_t offset, int count)
68 {
69         struct ptlrpc_bulk_desc *desc;
70         struct l_wait_info lwi;
71         struct page **pages;
72         int rc = 0, npages, i, tmpcount, tmpsize = 0;
73         ENTRY;
74
75         LASSERT((offset & (PAGE_SIZE - 1)) == 0); /* I'm dubious about this */
76
77         npages = (count + PAGE_SIZE - 1) >> PAGE_SHIFT;
78         OBD_ALLOC(pages, sizeof(*pages) * npages);
79         if (!pages)
80                 GOTO(out, rc = -ENOMEM);
81
82         desc = ptlrpc_prep_bulk_exp(req, npages, BULK_PUT_SOURCE,
83                                     MDS_BULK_PORTAL);
84         if (desc == NULL)
85                 GOTO(out_free, rc = -ENOMEM);
86
87         for (i = 0, tmpcount = count; i < npages; i++, tmpcount -= tmpsize) {
88                 tmpsize = tmpcount > PAGE_SIZE ? PAGE_SIZE : tmpcount;
89
90                 pages[i] = alloc_pages(GFP_KERNEL, 0);
91                 if (pages[i] == NULL)
92                         GOTO(cleanup_buf, rc = -ENOMEM);
93
94                 ptlrpc_prep_bulk_page(desc, pages[i], 0, tmpsize);
95         }
96
97         for (i = 0, tmpcount = count; i < npages; i++, tmpcount -= tmpsize) {
98                 tmpsize = tmpcount > PAGE_SIZE ? PAGE_SIZE : tmpcount;
99                 CDEBUG(D_EXT2, "reading %u@%llu from dir %lu (size %llu)\n",
100                        tmpsize, offset, file->f_dentry->d_inode->i_ino,
101                        file->f_dentry->d_inode->i_size);
102
103                 rc = fsfilt_readpage(req->rq_export->exp_obd, file,
104                                      page_address(pages[i]), tmpsize, &offset);
105
106                 if (rc != tmpsize)
107                         GOTO(cleanup_buf, rc = -EIO);
108         }
109
110         LASSERT(desc->bd_nob == count);
111
112         rc = ptlrpc_start_bulk_transfer(desc);
113         if (rc)
114                 GOTO(cleanup_buf, rc);
115
116         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_SENDPAGE)) {
117                 CERROR("obd_fail_loc=%x, fail operation rc=%d\n",
118                        OBD_FAIL_MDS_SENDPAGE, rc);
119                 GOTO(abort_bulk, rc);
120         }
121
122         lwi = LWI_TIMEOUT(obd_timeout * HZ / 4, NULL, NULL);
123         rc = l_wait_event(desc->bd_waitq, !ptlrpc_bulk_active(desc), &lwi);
124         LASSERT (rc == 0 || rc == -ETIMEDOUT);
125
126         if (rc == 0) {
127                 if (desc->bd_success &&
128                     desc->bd_nob_transferred == count)
129                         GOTO(cleanup_buf, rc);
130
131                 rc = -ETIMEDOUT; /* XXX should this be a different errno? */
132         }
133         
134         DEBUG_REQ(D_ERROR, req, "bulk failed: %s %d(%d), evicting %s@%s\n",
135                   (rc == -ETIMEDOUT) ? "timeout" : "network error",
136                   desc->bd_nob_transferred, count,
137                   req->rq_export->exp_client_uuid.uuid,
138                   req->rq_export->exp_connection->c_remote_uuid.uuid);
139
140         ptlrpc_fail_export(req->rq_export);
141
142         EXIT;
143  abort_bulk:
144         ptlrpc_abort_bulk (desc);
145  cleanup_buf:
146         for (i = 0; i < npages; i++)
147                 if (pages[i])
148                         __free_pages(pages[i], 0);
149
150         ptlrpc_free_bulk(desc);
151  out_free:
152         OBD_FREE(pages, sizeof(*pages) * npages);
153  out:
154         return rc;
155 }
156
157 /* only valid locked dentries or errors should be returned */
158 struct dentry *mds_fid2locked_dentry(struct obd_device *obd, struct ll_fid *fid,
159                                      struct vfsmount **mnt, int lock_mode,
160                                      struct lustre_handle *lockh,
161                                      char *name, int namelen, __u64 lockpart)
162 {
163         struct mds_obd *mds = &obd->u.mds;
164         struct dentry *de = mds_fid2dentry(mds, fid, mnt), *retval = de;
165         struct ldlm_res_id res_id = { .name = {0} };
166         int flags = 0, rc;
167         ldlm_policy_data_t policy = { .l_inodebits = { lockpart } };
168
169         ENTRY;
170
171         if (IS_ERR(de))
172                 RETURN(de);
173
174         res_id.name[0] = de->d_inode->i_ino;
175         res_id.name[1] = de->d_inode->i_generation;
176 #ifdef S_PDIROPS
177         lockh[1].cookie = 0;
178         if (name && IS_PDIROPS(de->d_inode)) {
179                 ldlm_policy_data_t cpolicy =
180                         { .l_inodebits = { MDS_INODELOCK_UPDATE } };
181                 /* lock just dir { ino, generation } to flush client cache */
182                 if (lock_mode == LCK_PW) {
183                         rc = ldlm_cli_enqueue(NULL, NULL, obd->obd_namespace,
184                                               res_id, LDLM_IBITS,
185                                               &cpolicy, LCK_CW, &flags,
186                                               mds_blocking_ast,
187                                               ldlm_completion_ast, NULL, NULL,
188                                               NULL, 0, NULL, lockh + 1);
189                         if (rc != ELDLM_OK) {
190                                 l_dput(de);
191                                 RETURN(ERR_PTR(-ENOLCK));
192                         }
193                        flags = 0;
194                 }
195
196                 res_id.name[2] = full_name_hash(name, namelen);
197                 CDEBUG(D_INFO, "take lock on %lu:%u:"LPX64"\n",
198                        de->d_inode->i_ino, de->d_inode->i_generation,
199                        res_id.name[2]);
200         }
201 #endif
202         rc = ldlm_cli_enqueue(NULL, NULL, obd->obd_namespace, res_id,
203                               LDLM_IBITS, &policy, lock_mode, &flags,
204                               mds_blocking_ast, ldlm_completion_ast, NULL, NULL,
205                               NULL, 0, NULL, lockh);
206         if (rc != ELDLM_OK) {
207                 l_dput(de);
208                 retval = ERR_PTR(-EIO); /* XXX translate ldlm code */
209 #ifdef S_PDIROPS
210                 if (lockh[1].cookie)
211                         ldlm_lock_decref(lockh + 1, LCK_CW);
212 #endif
213         }
214
215         RETURN(retval);
216 }
217
218 #ifndef DCACHE_DISCONNECTED
219 #define DCACHE_DISCONNECTED DCACHE_NFSD_DISCONNECTED
220 #endif
221
222
223 /* Look up an entry by inode number. */
224 /* this function ONLY returns valid dget'd dentries with an initialized inode
225    or errors */
226 struct dentry *mds_fid2dentry(struct mds_obd *mds, struct ll_fid *fid,
227                               struct vfsmount **mnt)
228 {
229         char fid_name[32];
230         unsigned long ino = fid->id;
231         __u32 generation = fid->generation;
232         struct inode *inode;
233         struct dentry *result;
234
235         if (ino == 0)
236                 RETURN(ERR_PTR(-ESTALE));
237
238         snprintf(fid_name, sizeof(fid_name), "0x%lx", ino);
239
240         CDEBUG(D_DENTRY, "--> mds_fid2dentry: ino/gen %lu/%u, sb %p\n",
241                ino, generation, mds->mds_sb);
242
243         /* under ext3 this is neither supposed to return bad inodes
244            nor NULL inodes. */
245         result = ll_lookup_one_len(fid_name, mds->mds_fid_de, strlen(fid_name));
246         if (IS_ERR(result))
247                 RETURN(result);
248
249         inode = result->d_inode;
250         if (!inode)
251                 RETURN(ERR_PTR(-ENOENT));
252
253         if (generation && inode->i_generation != generation) {
254                 /* we didn't find the right inode.. */
255                 CERROR("bad inode %lu, link: %lu ct: %d or generation %u/%u\n",
256                        inode->i_ino, (unsigned long)inode->i_nlink,
257                        atomic_read(&inode->i_count), inode->i_generation,
258                        generation);
259                 dput(result);
260                 RETURN(ERR_PTR(-ENOENT));
261         }
262
263         if (mnt) {
264                 *mnt = mds->mds_vfsmnt;
265                 mntget(*mnt);
266         }
267
268         RETURN(result);
269 }
270
271
272 /* Establish a connection to the MDS.
273  *
274  * This will set up an export structure for the client to hold state data
275  * about that client, like open files, the last operation number it did
276  * on the server, etc.
277  */
278 static int mds_connect(struct lustre_handle *conn, struct obd_device *obd,
279                        struct obd_uuid *cluuid)
280 {
281         struct obd_export *exp;
282         struct mds_export_data *med; /*  */
283         struct mds_client_data *mcd;
284         int rc, abort_recovery;
285         ENTRY;
286
287         if (!conn || !obd || !cluuid)
288                 RETURN(-EINVAL);
289
290         /* Check for aborted recovery. */
291         spin_lock_bh(&obd->obd_processing_task_lock);
292         abort_recovery = obd->obd_abort_recovery;
293         spin_unlock_bh(&obd->obd_processing_task_lock);
294         if (abort_recovery)
295                 target_abort_recovery(obd);
296
297         /* XXX There is a small race between checking the list and adding a
298          * new connection for the same UUID, but the real threat (list
299          * corruption when multiple different clients connect) is solved.
300          *
301          * There is a second race between adding the export to the list,
302          * and filling in the client data below.  Hence skipping the case
303          * of NULL mcd above.  We should already be controlling multiple
304          * connects at the client, and we can't hold the spinlock over
305          * memory allocations without risk of deadlocking.
306          */
307         rc = class_connect(conn, obd, cluuid);
308         if (rc)
309                 RETURN(rc);
310         exp = class_conn2export(conn);
311         LASSERT(exp);
312         med = &exp->exp_mds_data;
313
314         OBD_ALLOC(mcd, sizeof(*mcd));
315         if (!mcd) {
316                 CERROR("mds: out of memory for client data\n");
317                 GOTO(out, rc = -ENOMEM);
318         }
319
320         memcpy(mcd->mcd_uuid, cluuid, sizeof(mcd->mcd_uuid));
321         med->med_mcd = mcd;
322
323         rc = mds_client_add(obd, &obd->u.mds, med, -1);
324         if (rc == 0)
325                 EXIT;
326 out:
327         if (rc) {
328                 OBD_FREE(mcd, sizeof(*mcd));
329                 class_disconnect(exp, 0);
330         }
331         class_export_put(exp);
332
333         return rc;
334 }
335
336 static int mds_init_export(struct obd_export *exp) 
337 {
338         struct mds_export_data *med = &exp->exp_mds_data;
339
340         INIT_LIST_HEAD(&med->med_open_head);
341         spin_lock_init(&med->med_open_lock);
342         RETURN(0);
343 }
344
345 static int mds_destroy_export(struct obd_export *export)
346 {
347         struct mds_export_data *med;
348         struct obd_device *obd = export->exp_obd;
349         struct obd_run_ctxt saved;
350         int rc = 0;
351         ENTRY;
352
353         med = &export->exp_mds_data;
354         target_destroy_export(export);
355
356         if (obd_uuid_equals(&export->exp_client_uuid, &obd->obd_uuid))
357                 GOTO(out, 0);
358
359         push_ctxt(&saved, &obd->obd_ctxt, NULL);
360         /* Close any open files (which may also cause orphan unlinking). */
361         spin_lock(&med->med_open_lock);
362         while (!list_empty(&med->med_open_head)) {
363                 struct list_head *tmp = med->med_open_head.next;
364                 struct mds_file_data *mfd =
365                         list_entry(tmp, struct mds_file_data, mfd_list);
366                 BDEVNAME_DECLARE_STORAGE(btmp);
367
368                 /* bug 1579: fix force-closing for 2.5 */
369                 struct dentry *dentry = mfd->mfd_dentry;
370
371                 list_del(&mfd->mfd_list);
372                 spin_unlock(&med->med_open_lock);
373
374                 CERROR("force closing client file handle for %*s (%s:%lu)\n",
375                        dentry->d_name.len, dentry->d_name.name,
376                        ll_bdevname(dentry->d_inode->i_sb, btmp),
377                        dentry->d_inode->i_ino);
378                 rc = mds_mfd_close(NULL, obd, mfd, 
379                                    !(export->exp_flags & OBD_OPT_FAILOVER));
380
381                 if (rc)
382                         CDEBUG(D_INODE, "Error closing file: %d\n", rc);
383                 spin_lock(&med->med_open_lock);
384         }
385         spin_unlock(&med->med_open_lock);
386         pop_ctxt(&saved, &obd->obd_ctxt, NULL);
387
388 out:
389         mds_client_free(export, !(export->exp_flags & OBD_OPT_FAILOVER));
390
391         RETURN(rc);
392 }
393
394 static int mds_disconnect(struct obd_export *exp, int flags)
395 {
396         struct obd_device *obd;
397         struct mds_obd *mds;
398         unsigned long irqflags;
399         int rc;
400         ENTRY;
401
402         LASSERT(exp);
403         class_export_get(exp);
404
405         obd = class_exp2obd(exp);
406         if (obd == NULL) {
407                 CDEBUG(D_IOCTL, "invalid client cookie "LPX64"\n",
408                        exp->exp_handle.h_cookie);
409                 RETURN(-EINVAL);
410         }
411         mds = &obd->u.mds;
412
413         if (!(exp->exp_flags & OBD_OPT_REAL_CLIENT)
414                         && !atomic_read(&mds->mds_real_clients)) {
415                 /* there was no client at all */
416                 mds_lmv_disconnect(obd, flags);
417         }
418
419         if ((exp->exp_flags & OBD_OPT_REAL_CLIENT)
420                         && atomic_dec_and_test(&mds->mds_real_clients)) {
421                 /* time to drop LMV connections */
422                 CDEBUG(D_OTHER, "%s: last real client %s disconnected.  "
423                        "Disconnnect from LMV now\n",
424                        obd->obd_name, exp->exp_client_uuid.uuid);
425                 mds_lmv_disconnect(obd, flags);
426         }
427
428         spin_lock_irqsave(&exp->exp_lock, irqflags);
429         exp->exp_flags = flags;
430         spin_unlock_irqrestore(&exp->exp_lock, irqflags);
431
432         /* Disconnect early so that clients can't keep using export */
433         rc = class_disconnect(exp, flags);
434         ldlm_cancel_locks_for_export(exp);
435
436         /* complete all outstanding replies */
437         spin_lock_irqsave(&exp->exp_lock, irqflags);
438         while (!list_empty(&exp->exp_outstanding_replies)) {
439                 struct ptlrpc_reply_state *rs =
440                         list_entry(exp->exp_outstanding_replies.next,
441                                    struct ptlrpc_reply_state, rs_exp_list);
442                 struct ptlrpc_service *svc = rs->rs_srv_ni->sni_service;
443
444                 spin_lock(&svc->srv_lock);
445                 list_del_init(&rs->rs_exp_list);
446                 ptlrpc_schedule_difficult_reply(rs);
447                 spin_unlock(&svc->srv_lock);
448         }
449         spin_unlock_irqrestore(&exp->exp_lock, irqflags);
450
451         class_export_put(exp);
452         RETURN(rc);
453 }
454
455 static int mds_getstatus(struct ptlrpc_request *req)
456 {
457         struct mds_obd *mds = mds_req2mds(req);
458         struct mds_body *body;
459         int rc, size = sizeof(*body);
460         ENTRY;
461
462         rc = lustre_pack_reply(req, 1, &size, NULL);
463         if (rc || OBD_FAIL_CHECK(OBD_FAIL_MDS_GETSTATUS_PACK)) {
464                 CERROR("mds: out of memory for message: size=%d\n", size);
465                 req->rq_status = -ENOMEM;       /* superfluous? */
466                 RETURN(-ENOMEM);
467         }
468
469         body = lustre_msg_buf(req->rq_repmsg, 0, sizeof (*body));
470         memcpy(&body->fid1, &mds->mds_rootfid, sizeof(body->fid1));
471
472         /* the last_committed and last_xid fields are filled in for all
473          * replies already - no need to do so here also.
474          */
475         RETURN(0);
476 }
477
478 int mds_blocking_ast(struct ldlm_lock *lock, struct ldlm_lock_desc *desc,
479                      void *data, int flag)
480 {
481         int do_ast;
482         ENTRY;
483
484         if (flag == LDLM_CB_CANCELING) {
485                 /* Don't need to do anything here. */
486                 RETURN(0);
487         }
488
489         /* XXX layering violation!  -phil */
490         l_lock(&lock->l_resource->lr_namespace->ns_lock);
491         /* Get this: if mds_blocking_ast is racing with mds_intent_policy,
492          * such that mds_blocking_ast is called just before l_i_p takes the
493          * ns_lock, then by the time we get the lock, we might not be the
494          * correct blocking function anymore.  So check, and return early, if
495          * so. */
496         if (lock->l_blocking_ast != mds_blocking_ast) {
497                 l_unlock(&lock->l_resource->lr_namespace->ns_lock);
498                 RETURN(0);
499         }
500
501         lock->l_flags |= LDLM_FL_CBPENDING;
502         do_ast = (!lock->l_readers && !lock->l_writers);
503         l_unlock(&lock->l_resource->lr_namespace->ns_lock);
504
505         if (do_ast) {
506                 struct lustre_handle lockh;
507                 int rc;
508
509                 LDLM_DEBUG(lock, "already unused, calling ldlm_cli_cancel");
510                 ldlm_lock2handle(lock, &lockh);
511                 rc = ldlm_cli_cancel(&lockh);
512                 if (rc < 0)
513                         CERROR("ldlm_cli_cancel: %d\n", rc);
514         } else {
515                 LDLM_DEBUG(lock, "Lock still has references, will be "
516                            "cancelled later");
517         }
518         RETURN(0);
519 }
520
521 /* Call with lock=1 if you want mds_pack_md to take the i_sem.
522  * Call with lock=0 if the caller has already taken the i_sem. */
523 int mds_pack_md(struct obd_device *obd, struct lustre_msg *msg, int offset,
524                 struct mds_body *body, struct inode *inode, int lock)
525 {
526         struct mds_obd *mds = &obd->u.mds;
527         void *lmm;
528         int lmm_size;
529         int rc;
530         ENTRY;
531
532         lmm = lustre_msg_buf(msg, offset, 0);
533         if (lmm == NULL) {
534                 /* Some problem with getting eadata when I sized the reply
535                  * buffer... */
536                 CDEBUG(D_INFO, "no space reserved for inode %lu MD\n",
537                        inode->i_ino);
538                 RETURN(0);
539         }
540         lmm_size = msg->buflens[offset];
541
542         /* I don't really like this, but it is a sanity check on the client
543          * MD request.  However, if the client doesn't know how much space
544          * to reserve for the MD, it shouldn't be bad to have too much space.
545          */
546         if (lmm_size > mds->mds_max_mdsize) {
547                 CWARN("Reading MD for inode %lu of %d bytes > max %d\n",
548                        inode->i_ino, lmm_size, mds->mds_max_mdsize);
549                 // RETURN(-EINVAL);
550         }
551
552         if (lock)
553                 down(&inode->i_sem);
554         rc = fsfilt_get_md(obd, inode, lmm, lmm_size);
555         if (lock)
556                 up(&inode->i_sem);
557         if (rc < 0) {
558                 CERROR("Error %d reading eadata for ino %lu\n",
559                        rc, inode->i_ino);
560         } else if (rc > 0) {
561                 lmm_size = rc;
562                 if (S_ISREG(inode->i_mode))
563                         rc = mds_convert_lov_ea(obd, inode, lmm, lmm_size);
564                 if (rc > 0)
565                         lmm_size = rc;
566                 body->valid |= OBD_MD_FLEASIZE;
567                 body->eadatasize = lmm_size;
568                 rc = 0;
569         }
570
571         RETURN(rc);
572 }
573
574 static int mds_getattr_internal(struct obd_device *obd, struct dentry *dentry,
575                                 struct ptlrpc_request *req,
576                                 struct mds_body *reqbody, int reply_off)
577 {
578         struct mds_body *body;
579         struct inode *inode = dentry->d_inode;
580         int rc = 0;
581         ENTRY;
582
583         if (inode == NULL && !(dentry->d_flags & DCACHE_CROSS_REF))
584                 RETURN(-ENOENT);
585
586         body = lustre_msg_buf(req->rq_repmsg, reply_off, sizeof(*body));
587         LASSERT(body != NULL);                 /* caller prepped reply */
588
589         if (dentry->d_flags & DCACHE_CROSS_REF) {
590                 CDEBUG(D_OTHER, "cross reference: %lu/%lu/%lu\n",
591                        (unsigned long) dentry->d_mdsnum,
592                        (unsigned long) dentry->d_inum,
593                        (unsigned long) dentry->d_generation);
594                 body->valid |= OBD_MD_FLID | OBD_MD_MDS;
595                 body->fid1.id = dentry->d_inum;
596                 body->fid1.mds = dentry->d_mdsnum;
597                 body->fid1.generation = dentry->d_generation;
598                 RETURN(0);
599         }
600         mds_pack_inode2fid(obd, &body->fid1, inode);
601         mds_pack_inode2body(obd, body, inode);
602
603         if (S_ISREG(inode->i_mode) && (reqbody->valid & OBD_MD_FLEASIZE) != 0) {
604                 rc = mds_pack_md(obd, req->rq_repmsg, reply_off + 1, body,
605                                  inode, 1);
606
607                 /* If we have LOV EA data, the OST holds size, atime, mtime */
608                 if (!(body->valid & OBD_MD_FLEASIZE))
609                         body->valid |= (OBD_MD_FLSIZE | OBD_MD_FLBLOCKS |
610                                         OBD_MD_FLATIME | OBD_MD_FLMTIME);
611         } else if (S_ISLNK(inode->i_mode) &&
612                    (reqbody->valid & OBD_MD_LINKNAME) != 0) {
613                 char *symname = lustre_msg_buf(req->rq_repmsg, reply_off + 1,0);
614                 int len;
615
616                 LASSERT (symname != NULL);       /* caller prepped reply */
617                 len = req->rq_repmsg->buflens[reply_off + 1];
618
619                 rc = inode->i_op->readlink(dentry, symname, len);
620                 if (rc < 0) {
621                         CERROR("readlink failed: %d\n", rc);
622                 } else if (rc != len - 1) {
623                         CERROR ("Unexpected readlink rc %d: expecting %d\n",
624                                 rc, len - 1);
625                         rc = -EINVAL;
626                 } else {
627                         CDEBUG(D_INODE, "read symlink dest %s\n", symname);
628                         body->valid |= OBD_MD_LINKNAME;
629                         body->eadatasize = rc + 1;
630                         symname[rc] = 0;        /* NULL terminate */
631                         rc = 0;
632                 }
633         } else if (S_ISDIR(inode->i_mode) &&
634                         (reqbody->valid & OBD_MD_FLEASIZE) != 0) {
635                 rc = mds_pack_md(obd, req->rq_repmsg, reply_off + 1, body,
636                                 inode, 1);
637         } 
638
639         RETURN(rc);
640 }
641
642 static int mds_getattr_pack_msg_cf(struct ptlrpc_request *req,
643                                         struct dentry *dentry,
644                                         int offset)
645 {
646         int rc = 0, size[1] = {sizeof(struct mds_body)};
647         ENTRY;
648
649         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_GETATTR_PACK)) {
650                 CERROR("failed MDS_GETATTR_PACK test\n");
651                 req->rq_status = -ENOMEM;
652                 GOTO(out, rc = -ENOMEM);
653         }
654
655         rc = lustre_pack_reply(req, 1, size, NULL);
656         if (rc) {
657                 CERROR("out of memory\n");
658                 GOTO(out, req->rq_status = rc);
659         }
660
661         EXIT;
662  out:
663         return(rc);
664 }
665
666 static int mds_getattr_pack_msg(struct ptlrpc_request *req, struct inode *inode,
667                                 int offset)
668 {
669         struct mds_obd *mds = mds_req2mds(req);
670         struct mds_body *body;
671         int rc = 0, size[2] = {sizeof(*body)}, bufcount = 1;
672         ENTRY;
673
674         body = lustre_msg_buf(req->rq_reqmsg, offset, sizeof (*body));
675         LASSERT(body != NULL);                 /* checked by caller */
676         LASSERT_REQSWABBED(req, offset);       /* swabbed by caller */
677
678         if ((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode))
679                         && (body->valid & OBD_MD_FLEASIZE)) {
680                 int rc;
681                 down(&inode->i_sem);
682                 rc = fsfilt_get_md(req->rq_export->exp_obd, inode, NULL, 0);
683                 up(&inode->i_sem);
684                 CDEBUG(D_INODE, "got %d bytes MD data for inode %lu\n",
685                        rc, inode->i_ino);
686                 if (rc < 0) {
687                         if (rc != -ENODATA)
688                                 CERROR("error getting inode %lu MD: rc = %d\n",
689                                        inode->i_ino, rc);
690                         size[bufcount] = 0;
691                 } else if (rc > mds->mds_max_mdsize) {
692                         size[bufcount] = 0;
693                         CERROR("MD size %d larger than maximum possible %u\n",
694                                rc, mds->mds_max_mdsize);
695                 } else {
696                         size[bufcount] = rc;
697                 }
698                 bufcount++;
699         } else if (S_ISLNK(inode->i_mode) && (body->valid & OBD_MD_LINKNAME)) {
700                 if (inode->i_size + 1 != body->eadatasize)
701                         CERROR("symlink size: %Lu, reply space: %d\n",
702                                inode->i_size + 1, body->eadatasize);
703                 size[bufcount] = min_t(int, inode->i_size+1, body->eadatasize);
704                 bufcount++;
705                 CDEBUG(D_INODE, "symlink size: %Lu, reply space: %d\n",
706                        inode->i_size + 1, body->eadatasize);
707         }
708
709         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_GETATTR_PACK)) {
710                 CERROR("failed MDS_GETATTR_PACK test\n");
711                 req->rq_status = -ENOMEM;
712                 GOTO(out, rc = -ENOMEM);
713         }
714
715         rc = lustre_pack_reply(req, bufcount, size, NULL);
716         if (rc) {
717                 CERROR("out of memory\n");
718                 GOTO(out, req->rq_status = rc);
719         }
720
721         EXIT;
722  out:
723         return(rc);
724 }
725
726 static int mds_getattr_name(int offset, struct ptlrpc_request *req,
727                             struct lustre_handle *child_lockh, int child_part)
728 {
729         struct obd_device *obd = req->rq_export->exp_obd;
730         struct ldlm_reply *rep = NULL;
731         struct obd_run_ctxt saved;
732         struct mds_body *body;
733         struct dentry *dparent = NULL, *dchild = NULL;
734         struct obd_ucred uc;
735         struct lustre_handle parent_lockh[2];
736         int namesize;
737         int rc = 0, cleanup_phase = 0, resent_req = 0;
738         char *name;
739         ENTRY;
740
741         LASSERT(!strcmp(obd->obd_type->typ_name, "mds"));
742
743         /* Swab now, before anyone looks inside the request */
744
745         body = lustre_swab_reqbuf(req, offset, sizeof(*body),
746                                   lustre_swab_mds_body);
747         if (body == NULL) {
748                 CERROR("Can't swab mds_body\n");
749                 GOTO(cleanup, rc = -EFAULT);
750         }
751
752         LASSERT_REQSWAB(req, offset + 1);
753         name = lustre_msg_string(req->rq_reqmsg, offset + 1, 0);
754         if (name == NULL) {
755                 CERROR("Can't unpack name\n");
756                 GOTO(cleanup, rc = -EFAULT);
757         }
758         namesize = req->rq_reqmsg->buflens[offset + 1];
759
760         LASSERT (offset == 0 || offset == 2);
761         /* if requests were at offset 2, the getattr reply goes back at 1 */
762         if (offset) { 
763                 rep = lustre_msg_buf(req->rq_repmsg, 0, sizeof (*rep));
764                 offset = 1;
765         }
766
767         uc.ouc_fsuid = body->fsuid;
768         uc.ouc_fsgid = body->fsgid;
769         uc.ouc_cap = body->capability;
770         uc.ouc_suppgid1 = body->suppgid;
771         uc.ouc_suppgid2 = -1;
772         push_ctxt(&saved, &obd->obd_ctxt, &uc);
773         cleanup_phase = 1; /* kernel context */
774         intent_set_disposition(rep, DISP_LOOKUP_EXECD);
775
776         LASSERT(namesize > 0);
777         if (namesize == 1) {
778                 /* we have no dentry here, drop LOOKUP bit */
779                 child_part &= ~MDS_INODELOCK_LOOKUP;
780                 CDEBUG(D_OTHER, "%s: request to retrieve attrs for %lu/%lu\n",
781                        obd->obd_name, (unsigned long) body->fid1.id,
782                        (unsigned long) body->fid1.generation);
783                 dchild = mds_fid2locked_dentry(obd, &body->fid1, NULL, LCK_PR,
784                                                parent_lockh, NULL, 0, child_part);
785                 if (IS_ERR(dchild)) {
786                         CERROR("can't find inode: %d\n", (int) PTR_ERR(dchild));
787                         GOTO(cleanup, rc = PTR_ERR(dchild));
788                 }
789                 memcpy(child_lockh, parent_lockh, sizeof(parent_lockh[0]));
790 #ifdef S_PDIROPS
791                 if (parent_lockh[1].cookie)
792                         ldlm_lock_decref(parent_lockh + 1, LCK_CW);
793 #endif
794                 cleanup_phase = 2;
795                 goto fill_inode;
796         }
797         
798         /* FIXME: handle raw lookup */
799 #if 0
800         if (body->valid == OBD_MD_FLID) {
801                 struct mds_body *mds_reply;
802                 int size = sizeof(*mds_reply);
803                 ino_t inum;
804                 // The user requested ONLY the inode number, so do a raw lookup
805                 rc = lustre_pack_reply(req, 1, &size, NULL);
806                 if (rc) {
807                         CERROR("out of memory\n");
808                         GOTO(cleanup, rc);
809                 }
810
811                 rc = dir->i_op->lookup_raw(dir, name, namesize - 1, &inum);
812
813                 mds_reply = lustre_msg_buf(req->rq_repmsg, offset,
814                                            sizeof(*mds_reply));
815                 mds_reply->fid1.id = inum;
816                 mds_reply->valid = OBD_MD_FLID;
817                 GOTO(cleanup, rc);
818         }
819 #endif
820
821         if (child_lockh->cookie != 0) {
822                 LASSERT(lustre_msg_get_flags(req->rq_reqmsg) & MSG_RESENT);
823                 resent_req = 1;
824         }
825
826         if (resent_req == 0) {
827                 rc = mds_get_parent_child_locked(obd, &obd->u.mds, &body->fid1,
828                                                  parent_lockh, &dparent,
829                                                  LCK_PR, MDS_INODELOCK_LOOKUP,
830                                                  name, namesize,
831                                                  child_lockh, &dchild, LCK_PR,
832                                                  child_part);
833                 if (rc)
834                         GOTO(cleanup, rc);
835         } else {
836                 struct ldlm_lock *granted_lock;
837                 struct ll_fid child_fid;
838                 struct ldlm_resource *res;
839                 DEBUG_REQ(D_DLMTRACE, req, "resent, not enqueuing new locks");
840                 granted_lock = ldlm_handle2lock(child_lockh);
841                 LASSERT(granted_lock);
842
843                 res = granted_lock->l_resource;
844                 child_fid.id = res->lr_name.name[0];
845                 child_fid.generation = res->lr_name.name[1];
846                 dchild = mds_fid2dentry(&obd->u.mds, &child_fid, NULL);
847                 LASSERT(dchild);
848                 LDLM_LOCK_PUT(granted_lock);
849         }
850
851         cleanup_phase = 2; /* dchild, dparent, locks */
852
853 fill_inode:
854         if (!DENTRY_VALID(dchild)) {
855                 intent_set_disposition(rep, DISP_LOOKUP_NEG);
856                 /* in the intent case, the policy clears this error:
857                    the disposition is enough */
858                 GOTO(cleanup, rc = -ENOENT);
859         } else {
860                 intent_set_disposition(rep, DISP_LOOKUP_POS);
861         }
862
863         if (req->rq_repmsg == NULL) {
864                 if (dchild->d_flags & DCACHE_CROSS_REF)
865                         rc = mds_getattr_pack_msg_cf(req, dchild, offset);
866                 else
867                         rc = mds_getattr_pack_msg(req, dchild->d_inode, offset);
868                 if (rc != 0) {
869                         CERROR ("mds_getattr_pack_msg: %d\n", rc);
870                         GOTO (cleanup, rc);
871                 }
872         }
873
874         rc = mds_getattr_internal(obd, dchild, req, body, offset);
875         GOTO(cleanup, rc); /* returns the lock to the client */
876
877  cleanup:
878         switch (cleanup_phase) {
879         case 2:
880                 if (resent_req == 0) {
881                         if (rc && DENTRY_VALID(dchild))
882                                 ldlm_lock_decref(child_lockh, LCK_PR);
883                         if (dparent) {
884                                 ldlm_lock_decref(parent_lockh, LCK_PR);
885 #ifdef S_PDIROPS
886                                 if (parent_lockh[1].cookie != 0)
887                                         ldlm_lock_decref(parent_lockh + 1,
888                                                         LCK_CW);
889 #endif
890                         }
891                         if (dparent)
892                                 l_dput(dparent);
893                 }
894                 l_dput(dchild);
895         case 1:
896                 pop_ctxt(&saved, &obd->obd_ctxt, &uc);
897         default: ;
898         }
899         return rc;
900 }
901
902 static int mds_getattr(int offset, struct ptlrpc_request *req)
903 {
904         struct mds_obd *mds = mds_req2mds(req);
905         struct obd_device *obd = req->rq_export->exp_obd;
906         struct obd_run_ctxt saved;
907         struct dentry *de;
908         struct mds_body *body;
909         struct obd_ucred uc;
910         int rc = 0;
911         ENTRY;
912
913         body = lustre_swab_reqbuf (req, offset, sizeof (*body),
914                                    lustre_swab_mds_body);
915         if (body == NULL) {
916                 CERROR ("Can't unpack body\n");
917                 RETURN (-EFAULT);
918         }
919
920         uc.ouc_fsuid = body->fsuid;
921         uc.ouc_fsgid = body->fsgid;
922         uc.ouc_cap = body->capability;
923         push_ctxt(&saved, &obd->obd_ctxt, &uc);
924         de = mds_fid2dentry(mds, &body->fid1, NULL);
925         if (IS_ERR(de)) {
926                 rc = req->rq_status = -ENOENT;
927                 GOTO(out_pop, PTR_ERR(de));
928         }
929
930         rc = mds_getattr_pack_msg(req, de->d_inode, offset);
931         if (rc != 0) {
932                 CERROR ("mds_getattr_pack_msg: %d\n", rc);
933                 GOTO (out_pop, rc);
934         }
935
936         req->rq_status = mds_getattr_internal(obd, de, req, body, 0);
937
938         l_dput(de);
939         GOTO(out_pop, rc);
940 out_pop:
941         pop_ctxt(&saved, &obd->obd_ctxt, &uc);
942         return rc;
943 }
944
945
946 static int mds_obd_statfs(struct obd_device *obd, struct obd_statfs *osfs,
947                           unsigned long max_age)
948 {
949         int rc;
950
951         spin_lock(&obd->obd_osfs_lock);
952         rc = fsfilt_statfs(obd, obd->u.mds.mds_sb, max_age);
953         if (rc == 0)
954                 memcpy(osfs, &obd->obd_osfs, sizeof(*osfs));
955         spin_unlock(&obd->obd_osfs_lock);
956
957         return rc;
958 }
959
960 static int mds_statfs(struct ptlrpc_request *req)
961 {
962         struct obd_device *obd = req->rq_export->exp_obd;
963         int rc, size = sizeof(struct obd_statfs);
964         ENTRY;
965
966         rc = lustre_pack_reply(req, 1, &size, NULL);
967         if (rc || OBD_FAIL_CHECK(OBD_FAIL_MDS_STATFS_PACK)) {
968                 CERROR("mds: statfs lustre_pack_reply failed: rc = %d\n", rc);
969                 GOTO(out, rc);
970         }
971
972         /* We call this so that we can cache a bit - 1 jiffie worth */
973         rc = mds_obd_statfs(obd, lustre_msg_buf(req->rq_repmsg, 0, size),
974                             jiffies - HZ);
975         if (rc) {
976                 CERROR("mds_obd_statfs failed: rc %d\n", rc);
977                 GOTO(out, rc);
978         }
979
980         EXIT;
981 out:
982         req->rq_status = rc;
983         return 0;
984 }
985
986 static int mds_sync(struct ptlrpc_request *req)
987 {
988         struct obd_device *obd = req->rq_export->exp_obd;
989         struct mds_obd *mds = &obd->u.mds;
990         struct mds_body *body;
991         int rc, size = sizeof(*body);
992         ENTRY;
993
994         body = lustre_msg_buf(req->rq_reqmsg, 0, sizeof(*body));
995         if (body == NULL)
996                 GOTO(out, rc = -EPROTO);
997
998         rc = lustre_pack_reply(req, 1, &size, NULL);
999         if (rc || OBD_FAIL_CHECK(OBD_FAIL_MDS_SYNC_PACK)) {
1000                 CERROR("fsync lustre_pack_reply failed: rc = %d\n", rc);
1001                 GOTO(out, rc);
1002         }
1003
1004         if (body->fid1.id == 0) {
1005                 /* a fid of zero is taken to mean "sync whole filesystem" */
1006                 rc = fsfilt_sync(obd, mds->mds_sb);
1007                 if (rc)
1008                         GOTO(out, rc);
1009         } else {
1010                 /* just any file to grab fsync method - "file" arg unused */
1011                 struct file *file = mds->mds_rcvd_filp;
1012                 struct dentry *de;
1013
1014                 de = mds_fid2dentry(mds, &body->fid1, NULL);
1015                 if (IS_ERR(de))
1016                         GOTO(out, rc = PTR_ERR(de));
1017
1018                 rc = file->f_op->fsync(NULL, de, 1);
1019                 l_dput(de);
1020                 if (rc)
1021                         GOTO(out, rc);
1022
1023                 body = lustre_msg_buf(req->rq_repmsg, 0, sizeof(*body));
1024                 mds_pack_inode2fid(obd, &body->fid1, de->d_inode);
1025                 mds_pack_inode2body(obd, body, de->d_inode);
1026         }
1027 out:
1028         req->rq_status = rc;
1029         return 0;
1030 }
1031
1032 /* mds_readpage does not take a DLM lock on the inode, because the client must
1033  * already have a PR lock.
1034  *
1035  * If we were to take another one here, a deadlock will result, if another
1036  * thread is already waiting for a PW lock. */
1037 static int mds_readpage(struct ptlrpc_request *req)
1038 {
1039         struct obd_device *obd = req->rq_export->exp_obd;
1040         struct vfsmount *mnt;
1041         struct dentry *de;
1042         struct file *file;
1043         struct mds_body *body, *repbody;
1044         struct obd_run_ctxt saved;
1045         int rc, size = sizeof(*repbody);
1046         struct obd_ucred uc;
1047         ENTRY;
1048
1049         rc = lustre_pack_reply(req, 1, &size, NULL);
1050         if (rc || OBD_FAIL_CHECK(OBD_FAIL_MDS_READPAGE_PACK)) {
1051                 CERROR("mds: out of memory\n");
1052                 GOTO(out, rc = -ENOMEM);
1053         }
1054
1055         body = lustre_swab_reqbuf(req, 0, sizeof(*body), lustre_swab_mds_body);
1056         if (body == NULL)
1057                 GOTO (out, rc = -EFAULT);
1058
1059         uc.ouc_fsuid = body->fsuid;
1060         uc.ouc_fsgid = body->fsgid;
1061         uc.ouc_cap = body->capability;
1062         push_ctxt(&saved, &obd->obd_ctxt, &uc);
1063         de = mds_fid2dentry(&obd->u.mds, &body->fid1, &mnt);
1064         if (IS_ERR(de))
1065                 GOTO(out_pop, rc = PTR_ERR(de));
1066
1067         CDEBUG(D_INODE, "ino %lu\n", de->d_inode->i_ino);
1068
1069         file = dentry_open(de, mnt, O_RDONLY | O_LARGEFILE);
1070         /* note: in case of an error, dentry_open puts dentry */
1071         if (IS_ERR(file))
1072                 GOTO(out_pop, rc = PTR_ERR(file));
1073
1074         /* body->size is actually the offset -eeb */
1075         if ((body->size & (de->d_inode->i_blksize - 1)) != 0) {
1076                 CERROR("offset "LPU64" not on a block boundary of %lu\n",
1077                        body->size, de->d_inode->i_blksize);
1078                 GOTO(out_file, rc = -EFAULT);
1079         }
1080
1081         /* body->nlink is actually the #bytes to read -eeb */
1082         if (body->nlink & (de->d_inode->i_blksize - 1)) {
1083                 CERROR("size %u is not multiple of blocksize %lu\n",
1084                        body->nlink, de->d_inode->i_blksize);
1085                 GOTO(out_file, rc = -EFAULT);
1086         }
1087
1088         repbody = lustre_msg_buf(req->rq_repmsg, 0, sizeof (*repbody));
1089         repbody->size = file->f_dentry->d_inode->i_size;
1090         repbody->valid = OBD_MD_FLSIZE;
1091
1092         /* to make this asynchronous make sure that the handling function
1093            doesn't send a reply when this function completes. Instead a
1094            callback function would send the reply */
1095         /* body->size is actually the offset -eeb */
1096         rc = mds_sendpage(req, file, body->size, body->nlink);
1097
1098 out_file:
1099         filp_close(file, 0);
1100 out_pop:
1101         pop_ctxt(&saved, &obd->obd_ctxt, &uc);
1102 out:
1103         req->rq_status = rc;
1104         RETURN(0);
1105 }
1106
1107 int mds_reint(struct ptlrpc_request *req, int offset,
1108               struct lustre_handle *lockh)
1109 {
1110         struct mds_update_record *rec; /* 116 bytes on the stack?  no sir! */
1111         int rc;
1112         ENTRY;
1113
1114         OBD_ALLOC(rec, sizeof(*rec));
1115         if (rec == NULL)
1116                 RETURN(-ENOMEM);
1117
1118         rc = mds_update_unpack(req, offset, rec);
1119         if (rc || OBD_FAIL_CHECK(OBD_FAIL_MDS_REINT_UNPACK)) {
1120                 CERROR("invalid record\n");
1121                 GOTO(out, req->rq_status = -EINVAL);
1122         }
1123         /* rc will be used to interrupt a for loop over multiple records */
1124         rc = mds_reint_rec(rec, offset, req, lockh);
1125  out:
1126         OBD_FREE(rec, sizeof(*rec));
1127         RETURN(rc);
1128 }
1129
1130 static int mds_filter_recovery_request(struct ptlrpc_request *req,
1131                                        struct obd_device *obd, int *process)
1132 {
1133         switch (req->rq_reqmsg->opc) {
1134         case MDS_CONNECT: /* This will never get here, but for completeness. */
1135         case OST_CONNECT: /* This will never get here, but for completeness. */
1136         case MDS_DISCONNECT:
1137         case OST_DISCONNECT:
1138                *process = 1;
1139                RETURN(0);
1140
1141         case MDS_CLOSE:
1142         case MDS_SYNC: /* used in unmounting */
1143         case OBD_PING:
1144         case MDS_REINT:
1145         case LDLM_ENQUEUE:
1146         case OST_CREATE:
1147                 *process = target_queue_recovery_request(req, obd);
1148                 RETURN(0);
1149
1150         default:
1151                 DEBUG_REQ(D_ERROR, req, "not permitted during recovery");
1152                 *process = 0;
1153                 /* XXX what should we set rq_status to here? */
1154                 req->rq_status = -EAGAIN;
1155                 RETURN(ptlrpc_error(req));
1156         }
1157 }
1158
1159 static char *reint_names[] = {
1160         [REINT_SETATTR] "setattr",
1161         [REINT_CREATE]  "create",
1162         [REINT_LINK]    "link",
1163         [REINT_UNLINK]  "unlink",
1164         [REINT_RENAME]  "rename",
1165         [REINT_OPEN]    "open",
1166 };
1167
1168 #define FILTER_VALID_FLAGS (OBD_MD_FLTYPE | OBD_MD_FLMODE | OBD_MD_FLGENER  |\
1169                             OBD_MD_FLSIZE | OBD_MD_FLBLOCKS | OBD_MD_FLBLKSZ|\
1170                             OBD_MD_FLATIME | OBD_MD_FLMTIME | OBD_MD_FLCTIME|\
1171                             OBD_MD_FLID) 
1172
1173 static void reconstruct_create(struct ptlrpc_request *req)
1174 {
1175         struct mds_export_data *med = &req->rq_export->exp_mds_data;
1176         struct mds_client_data *mcd = med->med_mcd;
1177         struct ost_body *body;
1178
1179         body = lustre_msg_buf(req->rq_repmsg, 0, sizeof(*body));
1180
1181         /* copy rc, transno and disp; steal locks */
1182         mds_req_from_mcd(req, mcd);
1183         CERROR("reconstruct reply for x"LPU64"\n", req->rq_xid);
1184 }
1185
1186 static int mdt_obj_create(struct ptlrpc_request *req)
1187 {
1188         struct obd_device *obd = req->rq_export->exp_obd;
1189         struct ldlm_res_id res_id = { .name = {0} };
1190         struct mds_obd *mds = &obd->u.mds;
1191         struct ost_body *body, *repbody;
1192         int rc, size = sizeof(*repbody);
1193         char fidname[LL_FID_NAMELEN];
1194         struct inode *parent_inode;
1195         struct lustre_handle lockh;
1196         struct obd_run_ctxt saved;
1197         ldlm_policy_data_t policy;
1198         struct dentry *new = NULL;
1199         struct dentry_params dp;
1200         int mealen, flags = 0;
1201         unsigned int tmpname;
1202         struct obd_ucred uc;
1203         struct mea *mea;
1204         void *handle;
1205         ENTRY;
1206        
1207         DEBUG_REQ(D_HA, req, "create remote object");
1208
1209         parent_inode = mds->mds_objects_dir->d_inode;
1210
1211         body = lustre_swab_reqbuf(req, 0, sizeof(*body),
1212                                   lustre_swab_ost_body);
1213         if (body == NULL)
1214                 RETURN(-EFAULT);
1215
1216         MDS_CHECK_RESENT(req, reconstruct_create(req));
1217
1218         uc.ouc_fsuid = body->oa.o_uid;
1219         uc.ouc_fsgid = body->oa.o_gid;
1220
1221         push_ctxt(&saved, &obd->obd_ctxt, &uc);
1222         
1223         rc = lustre_pack_reply(req, 1, &size, NULL);
1224         if (rc)
1225                 RETURN(rc);
1226
1227         repbody = lustre_msg_buf(req->rq_repmsg, 0, sizeof(*repbody));
1228
1229         if (body->oa.o_flags & OBD_FL_RECREATE_OBJS) {
1230                 /* this is re-create request from MDS holding directory name.
1231                  * we have to lookup given ino/generation first. if it exists
1232                  * (good case) then there is nothing to do. if it does not
1233                  * then we have to recreate it */
1234                 struct ll_fid fid;
1235                 fid.id = body->oa.o_id;
1236                 fid.generation = body->oa.o_generation;
1237                 new = mds_fid2dentry(mds, &fid, NULL);
1238                 if (!IS_ERR(new) && new->d_inode) {
1239                         CWARN("mkdir() repairing is on its way: %lu/%lu\n",
1240                               (unsigned long) fid.id,
1241                               (unsigned long) fid.generation);
1242                         obdo_from_inode(&repbody->oa, new->d_inode,
1243                                         FILTER_VALID_FLAGS);
1244                         repbody->oa.o_id = new->d_inode->i_ino;
1245                         repbody->oa.o_generation = new->d_inode->i_generation;
1246                         repbody->oa.o_valid |= OBD_MD_FLID | OBD_MD_FLGENER;
1247                         GOTO(cleanup2, rc = 0);
1248                 }
1249                 CWARN("hmm. for some reason dir %lu/%lu (or reply) got lost\n",
1250                       (unsigned long) fid.id, (unsigned long) fid.generation);
1251                 LASSERT(new->d_inode == NULL ||
1252                         new->d_inode->i_generation != fid.generation);
1253                 l_dput(new); 
1254         }
1255         
1256         down(&parent_inode->i_sem);
1257         handle = fsfilt_start(obd, parent_inode, FSFILT_OP_MKDIR, NULL);
1258         LASSERT(!IS_ERR(handle));
1259
1260 repeat:
1261         tmpname = ll_insecure_random_int();
1262         rc = sprintf(fidname, "%u", tmpname);
1263         new = lookup_one_len(fidname, mds->mds_objects_dir, rc);
1264         if (IS_ERR(new)) {
1265                 CERROR("%s: can't lookup new inode (%s) for mkdir: %d\n",
1266                        obd->obd_name, fidname, (int) PTR_ERR(new));
1267                 fsfilt_commit(obd, new->d_inode, handle, 0);
1268                 up(&parent_inode->i_sem);
1269                 RETURN(PTR_ERR(new));
1270         } else if (new->d_inode) {
1271                 CERROR("%s: name exists. repeat\n", obd->obd_name);
1272                 goto repeat;
1273         }
1274
1275         new->d_fsdata = (void *) &dp;
1276         dp.p_inum = 0;
1277         dp.p_ptr = req;
1278
1279         if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY) {
1280                 DEBUG_REQ(D_HA, req, "replay create obj %lu/%lu",
1281                           (unsigned long) body->oa.o_id,
1282                           (unsigned long) body->oa.o_generation);
1283                 dp.p_inum = body->oa.o_id;
1284                 dp.p_generation = body->oa.o_generation;
1285         }
1286         rc = vfs_mkdir(parent_inode, new, body->oa.o_mode);
1287         if (rc == 0) {
1288                 obdo_from_inode(&repbody->oa, new->d_inode, FILTER_VALID_FLAGS);
1289                 repbody->oa.o_id = new->d_inode->i_ino;
1290                 repbody->oa.o_generation = new->d_inode->i_generation;
1291                 repbody->oa.o_valid |= OBD_MD_FLID | OBD_MD_FLGENER;
1292
1293                 rc = fsfilt_del_dir_entry(obd, new);
1294                 up(&parent_inode->i_sem);
1295
1296                 if (rc) {
1297                         CERROR("can't remove name for object: %d\n", rc);
1298                         GOTO(cleanup, rc);
1299                 }
1300                         
1301                 /* this lock should be taken to serialize MDS modifications
1302                  * in failure case */
1303                 res_id.name[0] = new->d_inode->i_ino;
1304                 res_id.name[1] = new->d_inode->i_generation;
1305                 policy.l_inodebits.bits = MDS_INODELOCK_UPDATE;
1306                 rc = ldlm_cli_enqueue(NULL, NULL, obd->obd_namespace,
1307                                 res_id, LDLM_IBITS, &policy,
1308                                 LCK_EX, &flags, mds_blocking_ast,
1309                                 ldlm_completion_ast, NULL, NULL,
1310                                 NULL, 0, NULL, &lockh);
1311                 if (rc != ELDLM_OK)
1312                         GOTO(cleanup, rc);
1313
1314                 CDEBUG(D_OTHER, "created dirobj: %lu/%lu mode %o\n",
1315                                 (unsigned long) new->d_inode->i_ino,
1316                                 (unsigned long) new->d_inode->i_generation,
1317                                 (unsigned) new->d_inode->i_mode);
1318         } else {
1319                 up(&parent_inode->i_sem);
1320                 CERROR("%s: can't create dirobj: %d\n", obd->obd_name, rc);
1321         }
1322
1323         if (rc == 0 && body->oa.o_valid & OBD_MD_FLID) {
1324                 /* this is new object for splitted dir. we have to
1325                  * prevent recursive splitting on it -bzzz */
1326                 mealen = obd_size_diskmd(mds->mds_lmv_exp, NULL);
1327                 OBD_ALLOC(mea, mealen);
1328                 if (mea == NULL)
1329                         GOTO(cleanup, rc = -ENOMEM);
1330                 mea->mea_count = 0;
1331                 down(&new->d_inode->i_sem);
1332                 rc = fsfilt_set_md(obd, new->d_inode, handle, mea, mealen);
1333                 up(&new->d_inode->i_sem);
1334                 OBD_FREE(mea, mealen);
1335         }
1336
1337 cleanup:
1338         rc = mds_finish_transno(mds, parent_inode, handle, req, rc, 0);
1339         if (rc == 0)
1340                 ptlrpc_save_lock(req, &lockh, LCK_EX);
1341         else
1342                 ldlm_lock_decref(&lockh, LCK_EX);
1343 cleanup2:
1344         l_dput(new);
1345         pop_ctxt(&saved, &obd->obd_ctxt, &uc);
1346         RETURN(rc);
1347 }
1348
1349 static int mds_get_info(struct obd_export *exp, __u32 keylen,
1350                            void *key, __u32 *vallen, void *val)
1351 {
1352         struct obd_device *obd;
1353         struct mds_obd *mds;
1354         ENTRY;
1355
1356         obd = class_exp2obd(exp);
1357         if (obd == NULL) {
1358                 CDEBUG(D_IOCTL, "invalid client cookie "LPX64"\n",
1359                        exp->exp_handle.h_cookie);
1360                 RETURN(-EINVAL);
1361         }
1362
1363         mds = &obd->u.mds;
1364         keylen == strlen("mdsize");
1365         if (keylen && memcmp(key, "mdsize", keylen) == 0) {
1366                 __u32 *mdsize = val;
1367                 *vallen = sizeof(*mdsize);
1368                 *mdsize = mds->mds_max_mdsize;
1369                 RETURN(0);
1370         }
1371
1372         CDEBUG(D_IOCTL, "invalid key\n");
1373         RETURN(-EINVAL);
1374 }
1375
1376 static int mdt_get_info(struct ptlrpc_request *req)
1377 {
1378         char *key;
1379         struct obd_export *exp = req->rq_export;
1380         int keylen, rc = 0, size = sizeof(obd_id);
1381         obd_id *reply;
1382         ENTRY;
1383
1384         key = lustre_msg_buf(req->rq_reqmsg, 0, 1);
1385         if (key == NULL) {
1386                 DEBUG_REQ(D_HA, req, "no get_info key");
1387                 RETURN(-EFAULT);
1388         }
1389         keylen = req->rq_reqmsg->buflens[0];
1390
1391         if (keylen < strlen("mdsize") || memcmp(key, "mdsize", 6) != 0)
1392                 RETURN(-EPROTO);
1393
1394         rc = lustre_pack_reply(req, 1, &size, NULL);
1395         if (rc)
1396                 RETURN(rc);
1397
1398         reply = lustre_msg_buf(req->rq_repmsg, 0, sizeof(*reply));
1399         rc = obd_get_info(exp, keylen, key, &size, reply);
1400         req->rq_repmsg->status = 0;
1401         RETURN(rc);
1402 }
1403
1404 static int mds_set_info(struct obd_export *exp, __u32 keylen,
1405                            void *key, __u32 vallen, void *val)
1406 {
1407         struct obd_device *obd;
1408         struct mds_obd *mds;
1409         int rc;
1410         ENTRY;
1411
1412         obd = class_exp2obd(exp);
1413         if (obd == NULL) {
1414                 CDEBUG(D_IOCTL, "invalid client cookie "LPX64"\n",
1415                        exp->exp_handle.h_cookie);
1416                 RETURN(-EINVAL);
1417         }
1418
1419         mds = &obd->u.mds;
1420         keylen == strlen("client");
1421         if (keylen && memcmp(key, "client", keylen) == 0) {
1422                 if (!(exp->exp_flags & OBD_OPT_REAL_CLIENT)) {
1423                         atomic_inc(&mds->mds_real_clients);
1424                         CDEBUG(D_OTHER, "%s: peer from %s is real client (%d)\n",
1425                                         obd->obd_name,
1426                                         exp->exp_client_uuid.uuid,
1427                                         atomic_read(&mds->mds_real_clients));
1428                         exp->exp_flags |= OBD_OPT_REAL_CLIENT;
1429                 }
1430                 rc = mds_lmv_connect(obd, mds->mds_lmv_name);
1431                 LASSERT(rc == 0);
1432                 RETURN(0);
1433         }
1434
1435         CDEBUG(D_IOCTL, "invalid key\n");
1436         RETURN(-EINVAL);
1437 }
1438
1439 static int mdt_set_info(struct ptlrpc_request *req)
1440 {
1441         char *key;
1442         struct obd_export *exp = req->rq_export;
1443         int keylen, rc = 0, size = sizeof(obd_id);
1444         ENTRY;
1445
1446         key = lustre_msg_buf(req->rq_reqmsg, 0, 1);
1447         if (key == NULL) {
1448                 DEBUG_REQ(D_HA, req, "no get_info key");
1449                 RETURN(-EFAULT);
1450         }
1451         keylen = req->rq_reqmsg->buflens[0];
1452
1453         if ((keylen < strlen("client") || memcmp(key, "client", 6) != 0))
1454                 RETURN(-EPROTO);
1455
1456         rc = lustre_pack_reply(req, 0, NULL, NULL);
1457         if (rc)
1458                 RETURN(rc);
1459         rc = obd_set_info(exp, keylen, key, size, NULL);
1460         req->rq_repmsg->status = 0;
1461         RETURN(rc);
1462 }
1463
1464 extern int ost_brw_write(struct ptlrpc_request *, struct obd_trans_info *);
1465
1466 int mds_handle(struct ptlrpc_request *req)
1467 {
1468         int should_process, fail = OBD_FAIL_MDS_ALL_REPLY_NET;
1469         int rc = 0;
1470         struct mds_obd *mds = NULL; /* quell gcc overwarning */
1471         struct obd_device *obd = NULL;
1472         ENTRY;
1473
1474         OBD_FAIL_RETURN(OBD_FAIL_MDS_ALL_REQUEST_NET | OBD_FAIL_ONCE, 0);
1475
1476         LASSERT(current->journal_info == NULL);
1477         /* XXX identical to OST */
1478         if (req->rq_reqmsg->opc != MDS_CONNECT) {
1479                 struct mds_export_data *med;
1480                 int recovering, abort_recovery;
1481
1482                 if (req->rq_export == NULL) {
1483                         CERROR("lustre_mds: operation %d on unconnected MDS\n",
1484                                req->rq_reqmsg->opc);
1485                         req->rq_status = -ENOTCONN;
1486                         GOTO(out, rc = -ENOTCONN);
1487                 }
1488
1489                 med = &req->rq_export->exp_mds_data;
1490                 obd = req->rq_export->exp_obd;
1491                 mds = &obd->u.mds;
1492
1493                 /* Check for aborted recovery. */
1494                 spin_lock_bh(&obd->obd_processing_task_lock);
1495                 abort_recovery = obd->obd_abort_recovery;
1496                 recovering = obd->obd_recovering;
1497                 spin_unlock_bh(&obd->obd_processing_task_lock);
1498                 if (abort_recovery) {
1499                         target_abort_recovery(obd);
1500                 } else if (recovering) {
1501                         rc = mds_filter_recovery_request(req, obd,
1502                                                          &should_process);
1503                         if (rc || !should_process)
1504                                 RETURN(rc);
1505                 }
1506         }
1507
1508         switch (req->rq_reqmsg->opc) {
1509         case MDS_CONNECT:
1510                 DEBUG_REQ(D_INODE, req, "connect");
1511                 OBD_FAIL_RETURN(OBD_FAIL_MDS_CONNECT_NET, 0);
1512                 rc = target_handle_connect(req, mds_handle);
1513                 if (!rc)
1514                         /* Now that we have an export, set mds. */
1515                         mds = mds_req2mds(req);
1516                 break;
1517
1518         case MDS_DISCONNECT:
1519                 DEBUG_REQ(D_INODE, req, "disconnect");
1520                 OBD_FAIL_RETURN(OBD_FAIL_MDS_DISCONNECT_NET, 0);
1521                 rc = target_handle_disconnect(req);
1522                 req->rq_status = rc;            /* superfluous? */
1523                 break;
1524
1525         case MDS_GETSTATUS:
1526                 DEBUG_REQ(D_INODE, req, "getstatus");
1527                 OBD_FAIL_RETURN(OBD_FAIL_MDS_GETSTATUS_NET, 0);
1528                 rc = mds_getstatus(req);
1529                 break;
1530
1531         case MDS_GETATTR:
1532                 DEBUG_REQ(D_INODE, req, "getattr");
1533                 OBD_FAIL_RETURN(OBD_FAIL_MDS_GETATTR_NET, 0);
1534                 rc = mds_getattr(0, req);
1535                 break;
1536
1537         case MDS_GETATTR_NAME: {
1538                 struct lustre_handle lockh;
1539                 DEBUG_REQ(D_INODE, req, "getattr_name");
1540                 OBD_FAIL_RETURN(OBD_FAIL_MDS_GETATTR_NAME_NET, 0);
1541
1542                 /* If this request gets a reconstructed reply, we won't be
1543                  * acquiring any new locks in mds_getattr_name, so we don't
1544                  * want to cancel.
1545                  */
1546                 lockh.cookie = 0;
1547                 rc = mds_getattr_name(0, req, &lockh, MDS_INODELOCK_UPDATE);
1548                 /* this non-intent call (from an ioctl) is special */
1549                 req->rq_status = rc;
1550                 if (rc == 0 && lockh.cookie)
1551                         ldlm_lock_decref(&lockh, LCK_PR);
1552                 break;
1553         }
1554         case MDS_STATFS:
1555                 DEBUG_REQ(D_INODE, req, "statfs");
1556                 OBD_FAIL_RETURN(OBD_FAIL_MDS_STATFS_NET, 0);
1557                 rc = mds_statfs(req);
1558                 break;
1559
1560         case MDS_READPAGE:
1561                 DEBUG_REQ(D_INODE, req, "readpage");
1562                 OBD_FAIL_RETURN(OBD_FAIL_MDS_READPAGE_NET, 0);
1563                 rc = mds_readpage(req);
1564
1565                 if (OBD_FAIL_CHECK_ONCE(OBD_FAIL_MDS_SENDPAGE)) {
1566                         if (req->rq_reply_state) {
1567                                 lustre_free_reply_state (req->rq_reply_state);
1568                                 req->rq_reply_state = NULL;
1569                         }
1570                         RETURN(0);
1571                 }
1572
1573                 break;
1574
1575         case MDS_REINT: {
1576                 __u32 *opcp = lustre_msg_buf(req->rq_reqmsg, 0, sizeof (*opcp));
1577                 __u32  opc;
1578                 int size[3] = {sizeof(struct mds_body), mds->mds_max_mdsize,
1579                                mds->mds_max_cookiesize};
1580                 int bufcount;
1581
1582                 /* NB only peek inside req now; mds_reint() will swab it */
1583                 if (opcp == NULL) {
1584                         CERROR ("Can't inspect opcode\n");
1585                         rc = -EINVAL;
1586                         break;
1587                 }
1588                 opc = *opcp;
1589                 if (lustre_msg_swabbed (req->rq_reqmsg))
1590                         __swab32s(&opc);
1591
1592                 DEBUG_REQ(D_INODE, req, "reint %d (%s)", opc,
1593                           (opc < sizeof(reint_names) / sizeof(reint_names[0]) ||
1594                            reint_names[opc] == NULL) ? reint_names[opc] :
1595                                                        "unknown opcode");
1596
1597                 OBD_FAIL_RETURN(OBD_FAIL_MDS_REINT_NET, 0);
1598
1599                 if (opc == REINT_UNLINK)
1600                         bufcount = 3;
1601                 else if (opc == REINT_OPEN || opc == REINT_RENAME)
1602                         bufcount = 2;
1603                 else
1604                         bufcount = 1;
1605
1606                 rc = lustre_pack_reply(req, bufcount, size, NULL);
1607                 if (rc)
1608                         break;
1609
1610                 rc = mds_reint(req, 0, NULL);
1611                 fail = OBD_FAIL_MDS_REINT_NET_REP;
1612                 break;
1613         }
1614
1615         case MDS_CLOSE:
1616                 DEBUG_REQ(D_INODE, req, "close");
1617                 OBD_FAIL_RETURN(OBD_FAIL_MDS_CLOSE_NET, 0);
1618                 rc = mds_close(req);
1619                 break;
1620
1621         case MDS_DONE_WRITING:
1622                 DEBUG_REQ(D_INODE, req, "done_writing");
1623                 OBD_FAIL_RETURN(OBD_FAIL_MDS_DONE_WRITING_NET, 0);
1624                 rc = mds_done_writing(req);
1625                 break;
1626
1627         case MDS_PIN:
1628                 DEBUG_REQ(D_INODE, req, "pin");
1629                 OBD_FAIL_RETURN(OBD_FAIL_MDS_PIN_NET, 0);
1630                 rc = mds_pin(req);
1631                 break;
1632
1633         case MDS_SYNC:
1634                 DEBUG_REQ(D_INODE, req, "sync");
1635                 OBD_FAIL_RETURN(OBD_FAIL_MDS_SYNC_NET, 0);
1636                 rc = mds_sync(req);
1637                 break;
1638
1639         case OBD_PING:
1640                 DEBUG_REQ(D_INODE, req, "ping");
1641                 rc = target_handle_ping(req);
1642                 break;
1643
1644         case OBD_LOG_CANCEL:
1645                 CDEBUG(D_INODE, "log cancel\n");
1646                 OBD_FAIL_RETURN(OBD_FAIL_OBD_LOG_CANCEL_NET, 0);
1647                 rc = -ENOTSUPP; /* la la la */
1648                 break;
1649
1650         case LDLM_ENQUEUE:
1651                 DEBUG_REQ(D_INODE, req, "enqueue");
1652                 OBD_FAIL_RETURN(OBD_FAIL_LDLM_ENQUEUE, 0);
1653                 rc = ldlm_handle_enqueue(req, ldlm_server_completion_ast,
1654                                          ldlm_server_blocking_ast, NULL);
1655                 break;
1656         case LDLM_CONVERT:
1657                 DEBUG_REQ(D_INODE, req, "convert");
1658                 OBD_FAIL_RETURN(OBD_FAIL_LDLM_CONVERT, 0);
1659                 rc = ldlm_handle_convert(req);
1660                 break;
1661         case LDLM_BL_CALLBACK:
1662         case LDLM_CP_CALLBACK:
1663                 DEBUG_REQ(D_INODE, req, "callback");
1664                 CERROR("callbacks should not happen on MDS\n");
1665                 LBUG();
1666                 OBD_FAIL_RETURN(OBD_FAIL_LDLM_BL_CALLBACK, 0);
1667                 break;
1668         case LLOG_ORIGIN_HANDLE_CREATE:
1669                 DEBUG_REQ(D_INODE, req, "llog_init");
1670                 OBD_FAIL_RETURN(OBD_FAIL_OBD_LOGD_NET, 0);
1671                 rc = llog_origin_handle_create(req);
1672                 break;
1673         case LLOG_ORIGIN_HANDLE_NEXT_BLOCK:
1674                 DEBUG_REQ(D_INODE, req, "llog next block");
1675                 OBD_FAIL_RETURN(OBD_FAIL_OBD_LOGD_NET, 0);
1676                 rc = llog_origin_handle_next_block(req);
1677                 break;
1678         case LLOG_ORIGIN_HANDLE_READ_HEADER:
1679                 DEBUG_REQ(D_INODE, req, "llog read header");
1680                 OBD_FAIL_RETURN(OBD_FAIL_OBD_LOGD_NET, 0);
1681                 rc = llog_origin_handle_read_header(req);
1682                 break;
1683         case LLOG_ORIGIN_HANDLE_CLOSE:
1684                 DEBUG_REQ(D_INODE, req, "llog close");
1685                 OBD_FAIL_RETURN(OBD_FAIL_OBD_LOGD_NET, 0);
1686                 rc = llog_origin_handle_close(req);
1687                 break;
1688         case OST_CREATE:
1689                 DEBUG_REQ(D_INODE, req, "ost_create");
1690                 rc = mdt_obj_create(req);
1691                 break;
1692         case OST_GET_INFO:
1693                 DEBUG_REQ(D_INODE, req, "get_info");
1694                 rc = mdt_get_info(req);
1695                 break;
1696         case OST_SET_INFO:
1697                 DEBUG_REQ(D_INODE, req, "set_info");
1698                 rc = mdt_set_info(req);
1699                 break;
1700         case OST_WRITE:
1701                 CDEBUG(D_INODE, "write\n");
1702                 OBD_FAIL_RETURN(OBD_FAIL_OST_BRW_NET, 0);
1703                 rc = ost_brw_write(req, NULL);
1704                 LASSERT(current->journal_info == NULL);
1705                 /* mdt_brw sends its own replies */
1706                 RETURN(rc);
1707                 break;
1708         case LLOG_CATINFO:
1709                 DEBUG_REQ(D_INODE, req, "llog catinfo");
1710                 OBD_FAIL_RETURN(OBD_FAIL_OBD_LOGD_NET, 0);
1711                 rc = llog_catinfo(req);
1712                 break;
1713         default:
1714                 req->rq_status = -ENOTSUPP;
1715                 rc = ptlrpc_error(req);
1716                 RETURN(rc);
1717         }
1718
1719         LASSERT(current->journal_info == NULL);
1720
1721         EXIT;
1722
1723         /* If we're DISCONNECTing, the mds_export_data is already freed */
1724         if (!rc && req->rq_reqmsg->opc != MDS_DISCONNECT) {
1725                 struct mds_export_data *med = &req->rq_export->exp_mds_data;
1726                 struct obd_device *obd = list_entry(mds, struct obd_device,
1727                                                     u.mds);
1728                 req->rq_repmsg->last_xid =
1729                         le64_to_cpu(med->med_mcd->mcd_last_xid);
1730
1731                 if (!obd->obd_no_transno) {
1732                         req->rq_repmsg->last_committed =
1733                                 obd->obd_last_committed;
1734                 } else {
1735                         DEBUG_REQ(D_IOCTL, req,
1736                                   "not sending last_committed update");
1737                 }
1738                 CDEBUG(D_INFO, "last_transno "LPU64", last_committed "LPU64
1739                        ", xid "LPU64"\n",
1740                        mds->mds_last_transno, obd->obd_last_committed,
1741                        req->rq_xid);
1742         }
1743  out:
1744
1745         if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_LAST_REPLAY) {
1746                 if (obd && obd->obd_recovering) {
1747                         DEBUG_REQ(D_HA, req, "LAST_REPLAY, queuing reply");
1748                         return target_queue_final_reply(req, rc);
1749                 }
1750                 /* Lost a race with recovery; let the error path DTRT. */
1751                 rc = req->rq_status = -ENOTCONN;
1752         }
1753
1754         target_send_reply(req, rc, fail);
1755         return 0;
1756 }
1757
1758 /* Update the server data on disk.  This stores the new mount_count and
1759  * also the last_rcvd value to disk.  If we don't have a clean shutdown,
1760  * then the server last_rcvd value may be less than that of the clients.
1761  * This will alert us that we may need to do client recovery.
1762  *
1763  * Also assumes for mds_last_transno that we are not modifying it (no locking).
1764  */
1765 int mds_update_server_data(struct obd_device *obd, int force_sync)
1766 {
1767         struct mds_obd *mds = &obd->u.mds;
1768         struct mds_server_data *msd = mds->mds_server_data;
1769         struct file *filp = mds->mds_rcvd_filp;
1770         struct obd_run_ctxt saved;
1771         loff_t off = 0;
1772         int rc;
1773         ENTRY;
1774
1775         push_ctxt(&saved, &obd->obd_ctxt, NULL);
1776         msd->msd_last_transno = cpu_to_le64(mds->mds_last_transno);
1777
1778         CDEBUG(D_SUPER, "MDS mount_count is "LPU64", last_transno is "LPU64"\n",
1779                mds->mds_mount_count, mds->mds_last_transno);
1780         rc = fsfilt_write_record(obd, filp, msd, sizeof(*msd), &off,force_sync);
1781         if (rc)
1782                 CERROR("error writing MDS server data: rc = %d\n", rc);
1783         pop_ctxt(&saved, &obd->obd_ctxt, NULL);
1784
1785         RETURN(rc);
1786 }
1787
1788
1789 /* mount the file system (secretly) */
1790 static int mds_setup(struct obd_device *obd, obd_count len, void *buf)
1791 {
1792         struct lustre_cfg* lcfg = buf;
1793         struct mds_obd *mds = &obd->u.mds;
1794         struct vfsmount *mnt;
1795         int rc = 0;
1796         unsigned long page;
1797         ENTRY;
1798
1799         dev_clear_rdonly(2);
1800
1801         if (!lcfg->lcfg_inlbuf1 || !lcfg->lcfg_inlbuf2)
1802                 RETURN(rc = -EINVAL);
1803
1804         obd->obd_fsops = fsfilt_get_ops(lcfg->lcfg_inlbuf2);
1805         if (IS_ERR(obd->obd_fsops))
1806                 RETURN(rc = PTR_ERR(obd->obd_fsops));
1807
1808         mds->mds_max_mdsize = sizeof(struct lov_mds_md);
1809
1810         /* we have to know mdsnum before touching underlying fs -bzzz */
1811         if (lcfg->lcfg_inllen4 > 0 && lcfg->lcfg_inlbuf4) {
1812                 class_uuid_t uuid;
1813
1814                 CDEBUG(D_OTHER, "MDS: %s is master for %s\n",
1815                        obd->obd_name, lcfg->lcfg_inlbuf4);
1816
1817                 generate_random_uuid(uuid);
1818                 class_uuid_unparse(uuid, &mds->mds_lmv_uuid);
1819
1820                 OBD_ALLOC(mds->mds_lmv_name, lcfg->lcfg_inllen4);
1821                 if (mds->mds_lmv_name == NULL) 
1822                         RETURN(rc = -ENOMEM);
1823
1824                 memcpy(mds->mds_lmv_name, lcfg->lcfg_inlbuf4,
1825                                 lcfg->lcfg_inllen4);
1826                 rc = mds_lmv_connect(obd, mds->mds_lmv_name);
1827                 if (rc) {
1828                         OBD_FREE(mds->mds_lmv_name, lcfg->lcfg_inllen4);
1829                         GOTO(err_ops, rc);
1830                 }
1831         }
1832
1833         if (!(page = __get_free_page(GFP_KERNEL)))
1834                 RETURN(-ENOMEM);
1835
1836         memset((void *)page, 0, PAGE_SIZE);
1837         sprintf((char *)page, "iopen_nopriv");
1838
1839         mnt = do_kern_mount(lcfg->lcfg_inlbuf2, 0,
1840                             lcfg->lcfg_inlbuf1, (void *)page);
1841         free_page(page);
1842         if (IS_ERR(mnt)) {
1843                 rc = PTR_ERR(mnt);
1844                 CERROR("do_kern_mount failed: rc = %d\n", rc);
1845                 GOTO(err_ops, rc);
1846         }
1847
1848         CDEBUG(D_SUPER, "%s: mnt = %p\n", lcfg->lcfg_inlbuf1, mnt);
1849
1850         sema_init(&mds->mds_orphan_recovery_sem, 1);
1851         sema_init(&mds->mds_epoch_sem, 1);
1852         spin_lock_init(&mds->mds_transno_lock);
1853         mds->mds_max_cookiesize = sizeof(struct llog_cookie);
1854         atomic_set(&mds->mds_open_count, 0);
1855         atomic_set(&mds->mds_real_clients, 0);
1856
1857         obd->obd_namespace = ldlm_namespace_new(obd->obd_name,
1858                                                 LDLM_NAMESPACE_SERVER);
1859         if (obd->obd_namespace == NULL) {
1860                 mds_cleanup(obd, 0);
1861                 GOTO(err_put, rc = -ENOMEM);
1862         }
1863         ldlm_register_intent(obd->obd_namespace, mds_intent_policy);
1864
1865         rc = mds_fs_setup(obd, mnt);
1866         if (rc) {
1867                 CERROR("MDS filesystem method init failed: rc = %d\n", rc);
1868                 GOTO(err_ns, rc);
1869         }
1870
1871         rc = llog_start_commit_thread();
1872         if (rc < 0)
1873                 GOTO(err_fs, rc);
1874         
1875
1876         if (lcfg->lcfg_inllen3 > 0 && lcfg->lcfg_inlbuf3) {
1877                 class_uuid_t uuid;
1878
1879                 generate_random_uuid(uuid);
1880                 class_uuid_unparse(uuid, &mds->mds_lov_uuid);
1881
1882                 OBD_ALLOC(mds->mds_profile, lcfg->lcfg_inllen3);
1883                 if (mds->mds_profile == NULL) 
1884                         GOTO(err_fs, rc = -ENOMEM);
1885
1886                 memcpy(mds->mds_profile, lcfg->lcfg_inlbuf3,
1887                        lcfg->lcfg_inllen3);
1888         }
1889
1890         ptlrpc_init_client(LDLM_CB_REQUEST_PORTAL, LDLM_CB_REPLY_PORTAL,
1891                            "mds_ldlm_client", &obd->obd_ldlm_client);
1892         obd->obd_replayable = 1;
1893
1894         rc = mds_postsetup(obd);
1895         if (rc)
1896                 GOTO(err_fs, rc);
1897         RETURN(0);
1898
1899 err_fs:
1900         /* No extra cleanup needed for llog_init_commit_thread() */
1901         mds_fs_cleanup(obd, 0);
1902 err_ns:
1903         ldlm_namespace_free(obd->obd_namespace, 0);
1904         obd->obd_namespace = NULL;
1905 err_put:
1906         unlock_kernel();
1907         mntput(mds->mds_vfsmnt);
1908         mds->mds_sb = 0;
1909         lock_kernel();
1910 err_ops:
1911         fsfilt_put_ops(obd->obd_fsops);
1912         return rc;
1913 }
1914
1915 static int mds_postsetup(struct obd_device *obd)
1916 {
1917         struct mds_obd *mds = &obd->u.mds;
1918         struct llog_ctxt *ctxt;
1919         int rc = 0;
1920         ENTRY;
1921
1922         rc = llog_setup(obd, &obd->obd_llogs, LLOG_CONFIG_ORIG_CTXT,
1923                         obd, 0, NULL, &llog_lvfs_ops);
1924         if (rc)
1925                 RETURN(rc);
1926
1927         if (mds->mds_profile) {
1928                 struct obd_run_ctxt saved;
1929                 struct lustre_profile *lprof;
1930                 struct config_llog_instance cfg;
1931
1932                 cfg.cfg_instance = NULL;
1933                 cfg.cfg_uuid = mds->mds_lov_uuid;
1934                 push_ctxt(&saved, &obd->obd_ctxt, NULL);
1935                 ctxt = llog_get_context(&obd->obd_llogs, LLOG_CONFIG_ORIG_CTXT); 
1936                 rc = class_config_parse_llog(ctxt, mds->mds_profile, &cfg);
1937                 pop_ctxt(&saved, &obd->obd_ctxt, NULL);
1938                 if (rc)
1939                         GOTO(err_llog, rc);
1940
1941                 lprof = class_get_profile(mds->mds_profile);
1942                 if (lprof == NULL) {
1943                         CERROR("No profile found: %s\n", mds->mds_profile);
1944                         GOTO(err_cleanup, rc = -ENOENT);
1945                 }
1946                 rc = mds_lov_connect(obd, lprof->lp_osc);
1947                 if (rc)
1948                         GOTO(err_cleanup, rc);
1949
1950                 rc = mds_lmv_postsetup(obd);
1951                 if (rc)
1952                         GOTO(err_cleanup, rc);
1953         }
1954
1955         RETURN(rc);
1956
1957 err_cleanup:
1958         mds_lov_clean(obd);
1959 err_llog:
1960         ctxt = llog_get_context(&obd->obd_llogs, LLOG_CONFIG_ORIG_CTXT);
1961         llog_cleanup(ctxt);
1962         RETURN(rc);
1963 }
1964
1965 static int mds_postrecov(struct obd_device *obd) 
1966
1967 {
1968         struct llog_ctxt *ctxt;
1969         int rc, rc2;
1970         ENTRY;
1971
1972         LASSERT(!obd->obd_recovering);
1973         ctxt = llog_get_context(&obd->obd_llogs, LLOG_UNLINK_ORIG_CTXT);
1974         LASSERT(ctxt != NULL);
1975
1976         rc = llog_connect(ctxt, obd->u.mds.mds_lov_desc.ld_tgt_count,
1977                           NULL, NULL, NULL);
1978         if (rc != 0) {
1979                 CERROR("faild at llog_origin_connect: %d\n", rc);
1980         }
1981
1982         rc = mds_cleanup_orphans(obd);
1983
1984         rc2 = mds_lov_set_nextid(obd);
1985         if (rc2 == 0)
1986                 rc2 = rc;
1987         RETURN(rc2);
1988 }
1989
1990 int mds_lov_clean(struct obd_device *obd)
1991 {
1992         struct mds_obd *mds = &obd->u.mds;
1993         struct llog_ctxt *ctxt;
1994
1995         if (mds->mds_profile) {
1996                 char * cln_prof;
1997                 struct config_llog_instance cfg;
1998                 struct obd_run_ctxt saved;
1999                 int len = strlen(mds->mds_profile) + sizeof("-clean") + 1;
2000
2001                 OBD_ALLOC(cln_prof, len);
2002                 sprintf(cln_prof, "%s-clean", mds->mds_profile);
2003
2004                 cfg.cfg_instance = NULL;
2005                 cfg.cfg_uuid = mds->mds_lov_uuid;
2006
2007                 push_ctxt(&saved, &obd->obd_ctxt, NULL);
2008                 ctxt = llog_get_context(&obd->obd_llogs, LLOG_CONFIG_ORIG_CTXT);
2009                 class_config_parse_llog(ctxt, cln_prof, &cfg);
2010                 pop_ctxt(&saved, &obd->obd_ctxt, NULL);
2011
2012                 OBD_FREE(cln_prof, len);
2013                 OBD_FREE(mds->mds_profile, strlen(mds->mds_profile) + 1);
2014                 mds->mds_profile = NULL;
2015         }
2016         RETURN(0);
2017 }
2018
2019 int mds_lmv_clean(struct obd_device *obd)
2020 {
2021         struct mds_obd *mds = &obd->u.mds;
2022
2023         if (mds->mds_lmv_name) {
2024                 OBD_FREE(mds->mds_lmv_name, strlen(mds->mds_lmv_name) + 1);
2025                 mds->mds_lmv_name = NULL;
2026         }
2027         RETURN(0);
2028 }
2029
2030 static int mds_precleanup(struct obd_device *obd, int flags)
2031 {
2032         int rc = 0;
2033         ENTRY;
2034
2035         mds_lmv_clean(obd);
2036         mds_lov_disconnect(obd, flags);
2037         mds_lov_clean(obd);
2038         llog_cleanup(llog_get_context(&obd->obd_llogs, LLOG_CONFIG_ORIG_CTXT));
2039         RETURN(rc);
2040 }
2041
2042 static int mds_cleanup(struct obd_device *obd, int flags)
2043 {
2044         struct mds_obd *mds = &obd->u.mds;
2045         ENTRY;
2046
2047         if (mds->mds_sb == NULL)
2048                 RETURN(0);
2049
2050         mds_update_server_data(obd, 1);
2051         if (mds->mds_lov_objids != NULL) {
2052                 OBD_FREE(mds->mds_lov_objids,
2053                          mds->mds_lov_desc.ld_tgt_count * sizeof(obd_id));
2054         }
2055         mds_fs_cleanup(obd, flags);
2056
2057         unlock_kernel();
2058
2059         /* 2 seems normal on mds, (may_umount() also expects 2
2060           fwiw), but we only see 1 at this point in obdfilter. */
2061         if (atomic_read(&obd->u.mds.mds_vfsmnt->mnt_count) > 2)
2062                 CERROR("%s: mount busy, mnt_count %d != 2\n", obd->obd_name,
2063                        atomic_read(&obd->u.mds.mds_vfsmnt->mnt_count));
2064
2065         mntput(mds->mds_vfsmnt);
2066
2067         mds->mds_sb = 0;
2068
2069         ldlm_namespace_free(obd->obd_namespace, flags & OBD_OPT_FORCE);
2070
2071         spin_lock_bh(&obd->obd_processing_task_lock);
2072         if (obd->obd_recovering) {
2073                 target_cancel_recovery_timer(obd);
2074                 obd->obd_recovering = 0;
2075         }
2076         spin_unlock_bh(&obd->obd_processing_task_lock);
2077
2078         lock_kernel();
2079         dev_clear_rdonly(2);
2080         fsfilt_put_ops(obd->obd_fsops);
2081
2082         RETURN(0);
2083 }
2084
2085 static void fixup_handle_for_resent_req(struct ptlrpc_request *req,
2086                                         struct ldlm_lock *new_lock,
2087                                         struct lustre_handle *lockh)
2088 {
2089         struct obd_export *exp = req->rq_export;
2090         struct obd_device *obd = exp->exp_obd;
2091         struct ldlm_request *dlmreq =
2092                 lustre_msg_buf(req->rq_reqmsg, 0, sizeof (*dlmreq));
2093         struct lustre_handle remote_hdl = dlmreq->lock_handle1;
2094         struct list_head *iter;
2095
2096         if (!(lustre_msg_get_flags(req->rq_reqmsg) & MSG_RESENT))
2097                 return;
2098
2099         l_lock(&obd->obd_namespace->ns_lock);
2100         list_for_each(iter, &exp->exp_ldlm_data.led_held_locks) {
2101                 struct ldlm_lock *lock;
2102                 lock = list_entry(iter, struct ldlm_lock, l_export_chain);
2103                 if (lock == new_lock)
2104                         continue;
2105                 if (lock->l_remote_handle.cookie == remote_hdl.cookie) {
2106                         lockh->cookie = lock->l_handle.h_cookie;
2107                         DEBUG_REQ(D_HA, req, "restoring lock cookie "LPX64,
2108                                   lockh->cookie);
2109                         l_unlock(&obd->obd_namespace->ns_lock);
2110                         return;
2111                 }
2112         }
2113         l_unlock(&obd->obd_namespace->ns_lock);
2114
2115         /* This remote handle isn't enqueued, so we never received or
2116          * processed this request.  Clear MSG_RESENT, because it can
2117          * be handled like any normal request now. */
2118
2119         lustre_msg_clear_flags(req->rq_reqmsg, MSG_RESENT);
2120         
2121         DEBUG_REQ(D_HA, req, "no existing lock with rhandle "LPX64,
2122                   remote_hdl.cookie);
2123 }
2124
2125 int intent_disposition(struct ldlm_reply *rep, int flag)
2126 {
2127         if (!rep)
2128                 return 0;
2129         return (rep->lock_policy_res1 & flag);
2130 }
2131
2132 void intent_set_disposition(struct ldlm_reply *rep, int flag)
2133 {
2134         if (!rep)
2135                 return;
2136         rep->lock_policy_res1 |= flag;
2137 }
2138
2139 static int mds_intent_policy(struct ldlm_namespace *ns,
2140                              struct ldlm_lock **lockp, void *req_cookie,
2141                              ldlm_mode_t mode, int flags, void *data)
2142 {
2143         struct ptlrpc_request *req = req_cookie;
2144         struct ldlm_lock *lock = *lockp;
2145         struct ldlm_intent *it;
2146         struct mds_obd *mds = &req->rq_export->exp_obd->u.mds;
2147         struct ldlm_reply *rep;
2148         struct lustre_handle lockh = { 0 };
2149         struct ldlm_lock *new_lock;
2150         int getattr_part = MDS_INODELOCK_UPDATE;
2151         int rc, offset = 2, repsize[4] = {sizeof(struct ldlm_reply),
2152                                           sizeof(struct mds_body),
2153                                           mds->mds_max_mdsize,
2154                                           mds->mds_max_cookiesize};
2155         ENTRY;
2156
2157         LASSERT(req != NULL);
2158
2159         if (req->rq_reqmsg->bufcount <= 1) {
2160                 /* No intent was provided */
2161                 int size = sizeof(struct ldlm_reply);
2162                 rc = lustre_pack_reply(req, 1, &size, NULL);
2163                 LASSERT(rc == 0);
2164                 RETURN(0);
2165         }
2166
2167         it = lustre_swab_reqbuf(req, 1, sizeof(*it), lustre_swab_ldlm_intent);
2168         if (it == NULL) {
2169                 CERROR("Intent missing\n");
2170                 RETURN(req->rq_status = -EFAULT);
2171         }
2172
2173         LDLM_DEBUG(lock, "intent policy, opc: %s", ldlm_it2str(it->opc));
2174
2175         rc = lustre_pack_reply(req, it->opc == IT_UNLINK ? 4 : 3, repsize,
2176                                NULL);
2177         if (rc)
2178                 RETURN(req->rq_status = rc);
2179
2180         rep = lustre_msg_buf(req->rq_repmsg, 0, sizeof (*rep));
2181         intent_set_disposition(rep, DISP_IT_EXECD);
2182
2183         fixup_handle_for_resent_req(req, lock, &lockh);
2184
2185         /* execute policy */
2186         switch ((long)it->opc) {
2187         case IT_OPEN:
2188         case IT_CREAT|IT_OPEN:
2189                 /* XXX swab here to assert that an mds_open reint
2190                  * packet is following */
2191                 rep->lock_policy_res2 = mds_reint(req, offset, &lockh);
2192 #if 0
2193                 /* We abort the lock if the lookup was negative and
2194                  * we did not make it to the OPEN portion */
2195                 if (!intent_disposition(rep, DISP_LOOKUP_EXECD))
2196                         RETURN(ELDLM_LOCK_ABORTED);
2197                 if (intent_disposition(rep, DISP_LOOKUP_NEG) &&
2198                     !intent_disposition(rep, DISP_OPEN_OPEN))
2199 #endif 
2200                         if (rep->lock_policy_res2) {
2201                                 /* mds_open returns ENOLCK where it
2202                                  * should return zero, but it has no
2203                                  * lock to return */
2204                                 if (rep->lock_policy_res2 == ENOLCK)
2205                                         rep->lock_policy_res2 = 0;
2206                                 RETURN(ELDLM_LOCK_ABORTED);
2207                         }
2208                 break;
2209         case IT_LOOKUP:
2210                 getattr_part = MDS_INODELOCK_LOOKUP;
2211         case IT_GETATTR:
2212                 getattr_part |= MDS_INODELOCK_LOOKUP;
2213         case IT_READDIR:
2214                 rep->lock_policy_res2 = mds_getattr_name(offset, req, &lockh,
2215                                                          getattr_part);
2216                 /* FIXME: LDLM can set req->rq_status. MDS sets
2217                    policy_res{1,2} with disposition and status.
2218                    - replay: returns 0 & req->status is old status 
2219                    - otherwise: returns req->status */
2220                 if (intent_disposition(rep, DISP_LOOKUP_NEG))
2221                         rep->lock_policy_res2 = 0;
2222                 if (!intent_disposition(rep, DISP_LOOKUP_POS) || 
2223                     rep->lock_policy_res2)
2224                         RETURN(ELDLM_LOCK_ABORTED);
2225                 if (req->rq_status != 0) {
2226                         LBUG();
2227                         rep->lock_policy_res2 = req->rq_status;
2228                         RETURN(ELDLM_LOCK_ABORTED);
2229                 }
2230                 break;
2231         default:
2232                 CERROR("Unhandled intent "LPD64"\n", it->opc);
2233                 LBUG();
2234         }
2235
2236         /* By this point, whatever function we called above must have either
2237          * filled in 'lockh', been an intent replay, or returned an error.  We
2238          * want to allow replayed RPCs to not get a lock, since we would just
2239          * drop it below anyways because lock replay is done separately by the
2240          * client afterwards.  For regular RPCs we want to give the new lock to
2241          * the client instead of whatever lock it was about to get. */
2242         new_lock = ldlm_handle2lock(&lockh);
2243         if (new_lock == NULL && (flags & LDLM_FL_INTENT_ONLY))
2244                 RETURN(0);
2245
2246         LASSERT(new_lock != NULL);
2247
2248         /* If we've already given this lock to a client once, then we should
2249          * have no readers or writers.  Otherwise, we should have one reader
2250          * _or_ writer ref (which will be zeroed below) before returning the
2251          * lock to a client. */
2252         if (new_lock->l_export == req->rq_export) {
2253                 LASSERT(new_lock->l_readers + new_lock->l_writers == 0);
2254         } else {
2255                 LASSERT(new_lock->l_export == NULL);
2256                 LASSERT(new_lock->l_readers + new_lock->l_writers == 1);
2257         }
2258
2259         *lockp = new_lock;
2260
2261         if (new_lock->l_export == req->rq_export) {
2262                 /* Already gave this to the client, which means that we
2263                  * reconstructed a reply. */
2264                 LASSERT(lustre_msg_get_flags(req->rq_reqmsg) &
2265                         MSG_RESENT);
2266                 RETURN(ELDLM_LOCK_REPLACED);
2267         }
2268
2269         /* Fixup the lock to be given to the client */
2270         l_lock(&new_lock->l_resource->lr_namespace->ns_lock);
2271         new_lock->l_readers = 0;
2272         new_lock->l_writers = 0;
2273
2274         new_lock->l_export = class_export_get(req->rq_export);
2275         list_add(&new_lock->l_export_chain,
2276                  &new_lock->l_export->exp_ldlm_data.led_held_locks);
2277
2278         new_lock->l_blocking_ast = lock->l_blocking_ast;
2279         new_lock->l_completion_ast = lock->l_completion_ast;
2280
2281         memcpy(&new_lock->l_remote_handle, &lock->l_remote_handle,
2282                sizeof(lock->l_remote_handle));
2283
2284         new_lock->l_flags &= ~LDLM_FL_LOCAL;
2285
2286         LDLM_LOCK_PUT(new_lock);
2287         l_unlock(&new_lock->l_resource->lr_namespace->ns_lock);
2288
2289         RETURN(ELDLM_LOCK_REPLACED);
2290 }
2291
2292 int mds_attach(struct obd_device *dev, obd_count len, void *data)
2293 {
2294         struct lprocfs_static_vars lvars;
2295
2296         lprocfs_init_multi_vars(0, &lvars);
2297         return lprocfs_obd_attach(dev, lvars.obd_vars);
2298 }
2299
2300 int mds_detach(struct obd_device *dev)
2301 {
2302         return lprocfs_obd_detach(dev);
2303 }
2304
2305 int mdt_attach(struct obd_device *dev, obd_count len, void *data)
2306 {
2307         struct lprocfs_static_vars lvars;
2308
2309         lprocfs_init_multi_vars(1, &lvars);
2310         return lprocfs_obd_attach(dev, lvars.obd_vars);
2311 }
2312
2313 int mdt_detach(struct obd_device *dev)
2314 {
2315         return lprocfs_obd_detach(dev);
2316 }
2317
2318 static int mdt_setup(struct obd_device *obddev, obd_count len, void *buf)
2319 {
2320         struct mds_obd *mds = &obddev->u.mds;
2321         int rc = 0;
2322         ENTRY;
2323
2324         mds->mds_service = 
2325                 ptlrpc_init_svc(MDS_NBUFS, MDS_BUFSIZE, MDS_MAXREQSIZE,
2326                                 MDS_REQUEST_PORTAL, MDC_REPLY_PORTAL,
2327                                 mds_handle, "mds",
2328                                 obddev->obd_proc_entry);
2329
2330         if (!mds->mds_service) {
2331                 CERROR("failed to start service\n");
2332                 RETURN(rc = -ENOMEM);
2333         }
2334
2335         rc = ptlrpc_start_n_threads(obddev, mds->mds_service, MDT_NUM_THREADS,
2336                                     "ll_mdt");
2337         if (rc)
2338                 GOTO(err_thread, rc);
2339
2340         mds->mds_setattr_service =
2341                 ptlrpc_init_svc(MDS_NBUFS, MDS_BUFSIZE, MDS_MAXREQSIZE,
2342                                 MDS_SETATTR_PORTAL, MDC_REPLY_PORTAL,
2343                                 mds_handle, "mds_setattr", 
2344                                 obddev->obd_proc_entry);
2345         if (!mds->mds_setattr_service) {
2346                 CERROR("failed to start getattr service\n");
2347                 GOTO(err_thread, rc = -ENOMEM);
2348         }
2349
2350         rc = ptlrpc_start_n_threads(obddev, mds->mds_setattr_service,
2351                                  MDT_NUM_THREADS, "ll_mdt_attr");
2352         if (rc)
2353                 GOTO(err_thread2, rc);
2354                         
2355         mds->mds_readpage_service =
2356                 ptlrpc_init_svc(MDS_NBUFS, MDS_BUFSIZE, MDS_MAXREQSIZE,
2357                                 MDS_READPAGE_PORTAL, MDC_REPLY_PORTAL,
2358                                 mds_handle, "mds_readpage", 
2359                                 obddev->obd_proc_entry);
2360         if (!mds->mds_readpage_service) {
2361                 CERROR("failed to start readpage service\n");
2362                 GOTO(err_thread2, rc = -ENOMEM);
2363         }
2364
2365         rc = ptlrpc_start_n_threads(obddev, mds->mds_readpage_service,
2366                                     MDT_NUM_THREADS, "ll_mdt_rdpg");
2367
2368         if (rc) 
2369                 GOTO(err_thread3, rc);
2370
2371         RETURN(0);
2372
2373 err_thread3:
2374         ptlrpc_unregister_service(mds->mds_readpage_service);
2375 err_thread2:
2376         ptlrpc_unregister_service(mds->mds_setattr_service);
2377 err_thread:
2378         ptlrpc_unregister_service(mds->mds_service);
2379         return rc;
2380 }
2381
2382
2383 static int mdt_cleanup(struct obd_device *obddev, int flags)
2384 {
2385         struct mds_obd *mds = &obddev->u.mds;
2386         ENTRY;
2387
2388         ptlrpc_stop_all_threads(mds->mds_readpage_service);
2389         ptlrpc_unregister_service(mds->mds_readpage_service);
2390
2391         ptlrpc_stop_all_threads(mds->mds_setattr_service);
2392         ptlrpc_unregister_service(mds->mds_setattr_service);
2393
2394         ptlrpc_stop_all_threads(mds->mds_service);
2395         ptlrpc_unregister_service(mds->mds_service);
2396
2397         RETURN(0);
2398 }
2399
2400 static struct dentry *mds_lvfs_fid2dentry(__u64 id, __u32 gen, __u64 gr, void *data)
2401 {
2402         struct obd_device *obd = data;
2403         struct ll_fid fid;
2404         fid.id = id;
2405         fid.generation = gen;
2406         return mds_fid2dentry(&obd->u.mds, &fid, NULL);
2407 }
2408
2409 struct lvfs_callback_ops mds_lvfs_ops = {
2410         l_fid2dentry:     mds_lvfs_fid2dentry,
2411 };
2412
2413 int mds_preprw(int cmd, struct obd_export *exp, struct obdo *oa,
2414                 int objcount, struct obd_ioobj *obj,
2415                 int niocount, struct niobuf_remote *nb,
2416                 struct niobuf_local *res,
2417                 struct obd_trans_info *oti);
2418 int mds_commitrw(int cmd, struct obd_export *exp, struct obdo *oa,
2419                  int objcount, struct obd_ioobj *obj, int niocount,
2420                  struct niobuf_local *res, struct obd_trans_info *oti,
2421                  int rc);
2422
2423 /* use obd ops to offer management infrastructure */
2424 static struct obd_ops mds_obd_ops = {
2425         o_owner:       THIS_MODULE,
2426         o_attach:      mds_attach,
2427         o_detach:      mds_detach,
2428         o_connect:     mds_connect,
2429         o_init_export:  mds_init_export,
2430         o_destroy_export:  mds_destroy_export,
2431         o_disconnect:  mds_disconnect,
2432         o_setup:       mds_setup,
2433         o_precleanup:  mds_precleanup,
2434         o_cleanup:     mds_cleanup,
2435         o_postrecov:   mds_postrecov,
2436         o_statfs:      mds_obd_statfs,
2437         o_iocontrol:   mds_iocontrol,
2438         o_create:      mds_obd_create,
2439         o_destroy:     mds_obd_destroy,
2440         o_llog_init:   mds_llog_init,
2441         o_llog_finish: mds_llog_finish,
2442         o_notify:      mds_notify,
2443         o_get_info:    mds_get_info,
2444         o_set_info:    mds_set_info,
2445         o_preprw:      mds_preprw, 
2446         o_commitrw:    mds_commitrw,
2447 };
2448
2449 static struct obd_ops mdt_obd_ops = {
2450         o_owner:       THIS_MODULE,
2451         o_attach:      mdt_attach,
2452         o_detach:      mdt_detach,
2453         o_setup:       mdt_setup,
2454         o_cleanup:     mdt_cleanup,
2455 };
2456
2457 static int __init mds_init(void)
2458 {
2459         struct lprocfs_static_vars lvars;
2460
2461         lprocfs_init_multi_vars(0, &lvars);
2462         class_register_type(&mds_obd_ops, NULL, lvars.module_vars, LUSTRE_MDS_NAME);
2463         lprocfs_init_multi_vars(1, &lvars);
2464         class_register_type(&mdt_obd_ops, NULL, lvars.module_vars, LUSTRE_MDT_NAME);
2465
2466         return 0;
2467 }
2468
2469 static void /*__exit*/ mds_exit(void)
2470 {
2471         class_unregister_type(LUSTRE_MDS_NAME);
2472         class_unregister_type(LUSTRE_MDT_NAME);
2473 }
2474
2475 MODULE_AUTHOR("Cluster File Systems, Inc. <info@clusterfs.com>");
2476 MODULE_DESCRIPTION("Lustre Metadata Server (MDS)");
2477 MODULE_LICENSE("GPL");
2478
2479 module_init(mds_init);
2480 module_exit(mds_exit);