Whamcloud - gitweb
port llog fixes from b1_6 into HEAD
[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-2005 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 the Lustre file system, http://www.lustre.org
14  *   Lustre is a trademark of Cluster File Systems, Inc.
15  *
16  *   You may have signed or agreed to another license before downloading
17  *   this software.  If so, you are bound by the terms and conditions
18  *   of that agreement, and the following does not apply to you.  See the
19  *   LICENSE file included with this distribution for more information.
20  *
21  *   If you did not agree to a different license, then this copy of Lustre
22  *   is open source software; you can redistribute it and/or modify it
23  *   under the terms of version 2 of the GNU General Public License as
24  *   published by the Free Software Foundation.
25  *
26  *   In either case, Lustre is distributed in the hope that it will be
27  *   useful, but WITHOUT ANY WARRANTY; without even the implied warranty
28  *   of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
29  *   license text for more details.
30  */
31
32 #ifndef EXPORT_SYMTAB
33 # define EXPORT_SYMTAB
34 #endif
35 #define DEBUG_SUBSYSTEM S_MDS
36
37 #include <lustre_mds.h>
38 #include <linux/module.h>
39 #include <linux/init.h>
40 #include <linux/random.h>
41 #include <linux/fs.h>
42 #include <linux/jbd.h>
43 #include <linux/smp_lock.h>
44 #include <linux/buffer_head.h>
45 #include <linux/workqueue.h>
46 #include <linux/mount.h>
47
48 #include <linux/lustre_acl.h>
49 #include <obd_class.h>
50 #include <lustre_dlm.h>
51 #include <obd_lov.h>
52 #include <lustre_fsfilt.h>
53 #include <lprocfs_status.h>
54 #include <lustre_commit_confd.h>
55 #include <lustre_quota.h>
56 #include <lustre_disk.h>
57 #include <lustre_param.h>
58
59 #include "mds_internal.h"
60
61 int mds_num_threads;
62 CFS_MODULE_PARM(mds_num_threads, "i", int, 0444,
63                 "number of MDS service threads to start");
64
65 __u32 mds_max_ost_index=0xFFFF;
66 CFS_MODULE_PARM(mds_max_ost_index, "i", int, 0444,
67                 "maximal OST index");
68
69 static int mds_intent_policy(struct ldlm_namespace *ns,
70                              struct ldlm_lock **lockp, void *req_cookie,
71                              ldlm_mode_t mode, int flags, void *data);
72 static int mds_postsetup(struct obd_device *obd);
73 static int mds_cleanup(struct obd_device *obd);
74
75 /* Assumes caller has already pushed into the kernel filesystem context */
76 static int mds_sendpage(struct ptlrpc_request *req, struct file *file,
77                         loff_t offset, int count)
78 {
79         struct ptlrpc_bulk_desc *desc;
80         struct l_wait_info lwi;
81         struct page **pages;
82         int rc = 0, npages, i, tmpcount, tmpsize = 0;
83         ENTRY;
84
85         LASSERT((offset & ~CFS_PAGE_MASK) == 0); /* I'm dubious about this */
86
87         npages = (count + CFS_PAGE_SIZE - 1) >> CFS_PAGE_SHIFT;
88         OBD_ALLOC(pages, sizeof(*pages) * npages);
89         if (!pages)
90                 GOTO(out, rc = -ENOMEM);
91
92         desc = ptlrpc_prep_bulk_exp(req, npages, BULK_PUT_SOURCE,
93                                     MDS_BULK_PORTAL);
94         if (desc == NULL)
95                 GOTO(out_free, rc = -ENOMEM);
96
97         for (i = 0, tmpcount = count; i < npages; i++, tmpcount -= tmpsize) {
98                 tmpsize = tmpcount > CFS_PAGE_SIZE ? CFS_PAGE_SIZE : tmpcount;
99
100                 OBD_PAGE_ALLOC(pages[i], CFS_ALLOC_STD);
101                 if (pages[i] == NULL)
102                         GOTO(cleanup_buf, rc = -ENOMEM);
103
104                 ptlrpc_prep_bulk_page(desc, pages[i], 0, tmpsize);
105         }
106
107         for (i = 0, tmpcount = count; i < npages; i++, tmpcount -= tmpsize) {
108                 tmpsize = tmpcount > CFS_PAGE_SIZE ? CFS_PAGE_SIZE : tmpcount;
109                 CDEBUG(D_EXT2, "reading %u@%llu from dir %lu (size %llu)\n",
110                        tmpsize, offset, file->f_dentry->d_inode->i_ino,
111                        i_size_read(file->f_dentry->d_inode));
112
113                 rc = fsfilt_readpage(req->rq_export->exp_obd, file,
114                                      kmap(pages[i]), tmpsize, &offset);
115                 kunmap(pages[i]);
116
117                 if (rc != tmpsize)
118                         GOTO(cleanup_buf, rc = -EIO);
119         }
120
121         LASSERT(desc->bd_nob == count);
122
123         rc = ptlrpc_start_bulk_transfer(desc);
124         if (rc)
125                 GOTO(cleanup_buf, rc);
126
127         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_SENDPAGE)) {
128                 CERROR("obd_fail_loc=%x, fail operation rc=%d\n",
129                        OBD_FAIL_MDS_SENDPAGE, rc);
130                 GOTO(abort_bulk, rc);
131         }
132
133         lwi = LWI_TIMEOUT(obd_timeout * HZ / 4, NULL, NULL);
134         rc = l_wait_event(desc->bd_waitq, !ptlrpc_bulk_active(desc), &lwi);
135         LASSERT (rc == 0 || rc == -ETIMEDOUT);
136
137         if (rc == 0) {
138                 if (desc->bd_success &&
139                     desc->bd_nob_transferred == count)
140                         GOTO(cleanup_buf, rc);
141
142                 rc = -ETIMEDOUT; /* XXX should this be a different errno? */
143         }
144
145         DEBUG_REQ(D_ERROR, req, "bulk failed: %s %d(%d), evicting %s@%s",
146                   (rc == -ETIMEDOUT) ? "timeout" : "network error",
147                   desc->bd_nob_transferred, count,
148                   req->rq_export->exp_client_uuid.uuid,
149                   req->rq_export->exp_connection->c_remote_uuid.uuid);
150
151         class_fail_export(req->rq_export);
152
153         EXIT;
154  abort_bulk:
155         ptlrpc_abort_bulk (desc);
156  cleanup_buf:
157         for (i = 0; i < npages; i++)
158                 if (pages[i])
159                         OBD_PAGE_FREE(pages[i]);
160
161         ptlrpc_free_bulk(desc);
162  out_free:
163         OBD_FREE(pages, sizeof(*pages) * npages);
164  out:
165         return rc;
166 }
167
168 /* only valid locked dentries or errors should be returned */
169 struct dentry *mds_fid2locked_dentry(struct obd_device *obd, struct ll_fid *fid,
170                                      struct vfsmount **mnt, int lock_mode,
171                                      struct lustre_handle *lockh,
172                                      __u64 lockpart)
173 {
174         struct mds_obd *mds = &obd->u.mds;
175         struct dentry *de = mds_fid2dentry(mds, fid, mnt), *retval = de;
176         struct ldlm_res_id res_id = { .name = {0} };
177         int flags = LDLM_FL_ATOMIC_CB, rc;
178         ldlm_policy_data_t policy = { .l_inodebits = { lockpart} };
179         ENTRY;
180
181         if (IS_ERR(de))
182                 RETURN(de);
183
184         res_id.name[0] = de->d_inode->i_ino;
185         res_id.name[1] = de->d_inode->i_generation;
186         rc = ldlm_cli_enqueue_local(obd->obd_namespace, &res_id,
187                                     LDLM_IBITS, &policy, lock_mode, &flags,
188                                     ldlm_blocking_ast, ldlm_completion_ast,
189                                     NULL, NULL, 0, NULL, lockh);
190         if (rc != ELDLM_OK) {
191                 l_dput(de);
192                 retval = ERR_PTR(-EIO); /* XXX translate ldlm code */
193         }
194
195         RETURN(retval);
196 }
197
198 /* Look up an entry by inode number. */
199 /* this function ONLY returns valid dget'd dentries with an initialized inode
200    or errors */
201 struct dentry *mds_fid2dentry(struct mds_obd *mds, struct ll_fid *fid,
202                               struct vfsmount **mnt)
203 {
204         char fid_name[32];
205         unsigned long ino = fid->id;
206         __u32 generation = fid->generation;
207         struct inode *inode;
208         struct dentry *result;
209
210         if (ino == 0)
211                 RETURN(ERR_PTR(-ESTALE));
212
213         snprintf(fid_name, sizeof(fid_name), "0x%lx", ino);
214
215         CDEBUG(D_DENTRY, "--> mds_fid2dentry: ino/gen %lu/%u, sb %p\n",
216                ino, generation, mds->mds_obt.obt_sb);
217
218         /* under ext3 this is neither supposed to return bad inodes
219            nor NULL inodes. */
220         result = ll_lookup_one_len(fid_name, mds->mds_fid_de, strlen(fid_name));
221         if (IS_ERR(result))
222                 RETURN(result);
223
224         inode = result->d_inode;
225         if (!inode)
226                 RETURN(ERR_PTR(-ENOENT));
227
228         if (inode->i_generation == 0 || inode->i_nlink == 0) {
229                 LCONSOLE_WARN("Found inode with zero generation or link -- this"
230                               " may indicate disk corruption (inode: %lu/%u, "
231                               "link %lu, count %d)\n", inode->i_ino,
232                               inode->i_generation,(unsigned long)inode->i_nlink,
233                               atomic_read(&inode->i_count));
234                 dput(result);
235                 RETURN(ERR_PTR(-ENOENT));
236         }
237
238         if (generation && inode->i_generation != generation) {
239                 /* we didn't find the right inode.. */
240                 CDEBUG(D_INODE, "found wrong generation: inode %lu, link: %lu, "
241                        "count: %d, generation %u/%u\n", inode->i_ino,
242                        (unsigned long)inode->i_nlink,
243                        atomic_read(&inode->i_count), inode->i_generation,
244                        generation);
245                 dput(result);
246                 RETURN(ERR_PTR(-ENOENT));
247         }
248
249         if (mnt) {
250                 *mnt = mds->mds_vfsmnt;
251                 mntget(*mnt);
252         }
253
254         RETURN(result);
255 }
256
257 static int mds_connect_internal(struct obd_export *exp,
258                                 struct obd_connect_data *data)
259 {
260         struct obd_device *obd = exp->exp_obd;
261         if (data != NULL) {
262                 data->ocd_connect_flags &= MDT_CONNECT_SUPPORTED;
263                 data->ocd_ibits_known &= MDS_INODELOCK_FULL;
264
265                 /* If no known bits (which should not happen, probably,
266                    as everybody should support LOOKUP and UPDATE bits at least)
267                    revert to compat mode with plain locks. */
268                 if (!data->ocd_ibits_known &&
269                     data->ocd_connect_flags & OBD_CONNECT_IBITS)
270                         data->ocd_connect_flags &= ~OBD_CONNECT_IBITS;
271
272                 if (!obd->u.mds.mds_fl_acl)
273                         data->ocd_connect_flags &= ~OBD_CONNECT_ACL;
274
275                 if (!obd->u.mds.mds_fl_user_xattr)
276                         data->ocd_connect_flags &= ~OBD_CONNECT_XATTR;
277
278                 exp->exp_connect_flags = data->ocd_connect_flags;
279                 data->ocd_version = LUSTRE_VERSION_CODE;
280                 exp->exp_mds_data.med_ibits_known = data->ocd_ibits_known;
281         }
282
283         if (obd->u.mds.mds_fl_acl &&
284             ((exp->exp_connect_flags & OBD_CONNECT_ACL) == 0)) {
285                 CWARN("%s: MDS requires ACL support but client does not\n",
286                       obd->obd_name);
287                 return -EBADE;
288         }
289         return 0;
290 }
291
292 static int mds_reconnect(const struct lu_env *env,
293                          struct obd_export *exp, struct obd_device *obd,
294                          struct obd_uuid *cluuid,
295                          struct obd_connect_data *data)
296 {
297         int rc;
298         ENTRY;
299
300         if (exp == NULL || obd == NULL || cluuid == NULL)
301                 RETURN(-EINVAL);
302
303         rc = mds_connect_internal(exp, data);
304
305         RETURN(rc);
306 }
307
308 /* Establish a connection to the MDS.
309  *
310  * This will set up an export structure for the client to hold state data
311  * about that client, like open files, the last operation number it did
312  * on the server, etc.
313  */
314 static int mds_connect(const struct lu_env *env,
315                        struct lustre_handle *conn, struct obd_device *obd,
316                        struct obd_uuid *cluuid, struct obd_connect_data *data)
317 {
318         struct obd_export *exp;
319         struct mds_export_data *med;
320         struct mds_client_data *mcd = NULL;
321         int rc;
322         ENTRY;
323
324         if (!conn || !obd || !cluuid)
325                 RETURN(-EINVAL);
326
327         /* XXX There is a small race between checking the list and adding a
328          * new connection for the same UUID, but the real threat (list
329          * corruption when multiple different clients connect) is solved.
330          *
331          * There is a second race between adding the export to the list,
332          * and filling in the client data below.  Hence skipping the case
333          * of NULL mcd above.  We should already be controlling multiple
334          * connects at the client, and we can't hold the spinlock over
335          * memory allocations without risk of deadlocking.
336          */
337         rc = class_connect(conn, obd, cluuid);
338         if (rc)
339                 RETURN(rc);
340         exp = class_conn2export(conn);
341         LASSERT(exp);
342         med = &exp->exp_mds_data;
343
344         exp->exp_flvr.sf_rpc = SPTLRPC_FLVR_NULL;
345
346         rc = mds_connect_internal(exp, data);
347         if (rc)
348                 GOTO(out, rc);
349
350         OBD_ALLOC(mcd, sizeof(*mcd));
351         if (!mcd)
352                 GOTO(out, rc = -ENOMEM);
353
354         memcpy(mcd->mcd_uuid, cluuid, sizeof(mcd->mcd_uuid));
355         med->med_mcd = mcd;
356
357         rc = mds_client_add(obd, exp, -1);
358         GOTO(out, rc);
359
360 out:
361         if (rc) {
362                 if (mcd) {
363                         OBD_FREE(mcd, sizeof(*mcd));
364                         med->med_mcd = NULL;
365                 }
366                 class_disconnect(exp);
367         } else {
368                 class_export_put(exp);
369         }
370
371         RETURN(rc);
372 }
373
374 int mds_init_export(struct obd_export *exp)
375 {
376         struct mds_export_data *med = &exp->exp_mds_data;
377
378         INIT_LIST_HEAD(&med->med_open_head);
379         spin_lock_init(&med->med_open_lock);
380
381         spin_lock(&exp->exp_lock);
382         exp->exp_connecting = 1;
383         spin_unlock(&exp->exp_lock);
384
385         RETURN(0);
386 }
387
388 static int mds_destroy_export(struct obd_export *export)
389 {
390         struct mds_export_data *med;
391         struct obd_device *obd = export->exp_obd;
392         struct mds_obd *mds = &obd->u.mds;
393         struct lvfs_run_ctxt saved;
394         struct lov_mds_md *lmm;
395         struct llog_cookie *logcookies;
396         int rc = 0;
397         ENTRY;
398
399         med = &export->exp_mds_data;
400         target_destroy_export(export);
401
402         if (obd_uuid_equals(&export->exp_client_uuid, &obd->obd_uuid))
403                 RETURN(0);
404
405         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
406         /* Close any open files (which may also cause orphan unlinking). */
407
408         OBD_ALLOC(lmm, mds->mds_max_mdsize);
409         if (lmm == NULL) {
410                 CWARN("%s: allocation failure during cleanup; can not force "
411                       "close file handles on this service.\n", obd->obd_name);
412                 GOTO(out, rc = -ENOMEM);
413         }
414
415         OBD_ALLOC(logcookies, mds->mds_max_cookiesize);
416         if (logcookies == NULL) {
417                 CWARN("%s: allocation failure during cleanup; can not force "
418                       "close file handles on this service.\n", obd->obd_name);
419                 OBD_FREE(lmm, mds->mds_max_mdsize);
420                 GOTO(out_lmm, rc = -ENOMEM);
421         }
422
423         spin_lock(&med->med_open_lock);
424         while (!list_empty(&med->med_open_head)) {
425                 struct list_head *tmp = med->med_open_head.next;
426                 struct mds_file_data *mfd =
427                         list_entry(tmp, struct mds_file_data, mfd_list);
428                 int lmm_size = mds->mds_max_mdsize;
429                 umode_t mode = mfd->mfd_dentry->d_inode->i_mode;
430                 __u64 valid = 0;
431
432                 /* Remove mfd handle so it can't be found again.
433                  * We are consuming the mfd_list reference here. */
434                 mds_mfd_unlink(mfd, 0);
435                 spin_unlock(&med->med_open_lock);
436
437                 /* If you change this message, be sure to update
438                  * replay_single:test_46 */
439                 CDEBUG(D_INODE|D_IOCTL, "%s: force closing file handle for "
440                        "%.*s (ino %lu)\n", obd->obd_name,
441                        mfd->mfd_dentry->d_name.len,mfd->mfd_dentry->d_name.name,
442                        mfd->mfd_dentry->d_inode->i_ino);
443
444                 rc = mds_get_md(obd, mfd->mfd_dentry->d_inode, lmm, &lmm_size, 1);
445                 if (rc < 0)
446                         CWARN("mds_get_md failure, rc=%d\n", rc);
447                 else
448                         valid |= OBD_MD_FLEASIZE;
449
450                 /* child orphan sem protects orphan_dec_test and
451                  * is_orphan race, mds_mfd_close drops it */
452                 MDS_DOWN_WRITE_ORPHAN_SEM(mfd->mfd_dentry->d_inode);
453                 rc = mds_mfd_close(NULL, REQ_REC_OFF, obd, mfd,
454                                    !(export->exp_flags & OBD_OPT_FAILOVER),
455                                    lmm, lmm_size, logcookies,
456                                    mds->mds_max_cookiesize,
457                                    &valid);
458
459                 if (rc)
460                         CDEBUG(D_INODE|D_IOCTL, "Error closing file: %d\n", rc);
461
462                 if (valid & OBD_MD_FLCOOKIE) {
463                         rc = mds_osc_destroy_orphan(obd, mode, lmm,
464                                                     lmm_size, logcookies, 1);
465                         if (rc < 0) {
466                                 CDEBUG(D_INODE, "%s: destroy of orphan failed,"
467                                        " rc = %d\n", obd->obd_name, rc);
468                                 rc = 0;
469                         }
470                         valid &= ~OBD_MD_FLCOOKIE;
471                 }
472
473                 spin_lock(&med->med_open_lock);
474         }
475         spin_unlock(&med->med_open_lock);
476
477         OBD_FREE(logcookies, mds->mds_max_cookiesize);
478 out_lmm:
479         OBD_FREE(lmm, mds->mds_max_mdsize);
480 out:
481         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
482         mds_client_free(export);
483         RETURN(rc);
484 }
485
486 static int mds_disconnect(struct obd_export *exp)
487 {
488         int rc;
489         ENTRY;
490
491         LASSERT(exp);
492         class_export_get(exp);
493
494         /* Disconnect early so that clients can't keep using export */
495         rc = class_disconnect(exp);
496         if (exp->exp_obd->obd_namespace != NULL)
497                 ldlm_cancel_locks_for_export(exp);
498
499         /* complete all outstanding replies */
500         spin_lock(&exp->exp_lock);
501         while (!list_empty(&exp->exp_outstanding_replies)) {
502                 struct ptlrpc_reply_state *rs =
503                         list_entry(exp->exp_outstanding_replies.next,
504                                    struct ptlrpc_reply_state, rs_exp_list);
505                 struct ptlrpc_service *svc = rs->rs_service;
506
507                 spin_lock(&svc->srv_lock);
508                 list_del_init(&rs->rs_exp_list);
509                 ptlrpc_schedule_difficult_reply(rs);
510                 spin_unlock(&svc->srv_lock);
511         }
512         spin_unlock(&exp->exp_lock);
513
514         class_export_put(exp);
515         RETURN(rc);
516 }
517
518 static int mds_getstatus(struct ptlrpc_request *req)
519 {
520         struct mds_obd *mds = mds_req2mds(req);
521         struct mds_body *body;
522         int rc, size[2] = { sizeof(struct ptlrpc_body), sizeof(*body) };
523         ENTRY;
524
525         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_GETSTATUS_PACK))
526                 RETURN(req->rq_status = -ENOMEM);
527         rc = lustre_pack_reply(req, 2, size, NULL);
528         if (rc)
529                 RETURN(req->rq_status = rc);
530
531         body = lustre_msg_buf(req->rq_repmsg, REPLY_REC_OFF, sizeof(*body));
532         memcpy(&body->fid1, &mds->mds_rootfid, sizeof(body->fid1));
533
534         /* the last_committed and last_xid fields are filled in for all
535          * replies already - no need to do so here also.
536          */
537         RETURN(0);
538 }
539
540 /* get the LOV EA from @inode and store it into @md.  It can be at most
541  * @size bytes, and @size is updated with the actual EA size.
542  * The EA size is also returned on success, and -ve errno on failure.
543  * If there is no EA then 0 is returned. */
544 int mds_get_md(struct obd_device *obd, struct inode *inode, void *md,
545                int *size, int lock)
546 {
547         int rc = 0;
548         int lmm_size;
549
550         if (lock)
551                 LOCK_INODE_MUTEX(inode);
552         rc = fsfilt_get_md(obd, inode, md, *size, "lov");
553
554         if (rc < 0) {
555                 CERROR("Error %d reading eadata for ino %lu\n",
556                        rc, inode->i_ino);
557         } else if (rc > 0) {
558                 lmm_size = rc;
559                 rc = mds_convert_lov_ea(obd, inode, md, lmm_size);
560
561                 if (rc == 0) {
562                         *size = lmm_size;
563                         rc = lmm_size;
564                 } else if (rc > 0) {
565                         *size = rc;
566                 }
567         } else {
568                 *size = 0;
569         }
570         if (lock)
571                 UNLOCK_INODE_MUTEX(inode);
572
573         RETURN (rc);
574 }
575
576
577 /* Call with lock=1 if you want mds_pack_md to take the i_mutex.
578  * Call with lock=0 if the caller has already taken the i_mutex. */
579 int mds_pack_md(struct obd_device *obd, struct lustre_msg *msg, int offset,
580                 struct mds_body *body, struct inode *inode, int lock)
581 {
582         struct mds_obd *mds = &obd->u.mds;
583         void *lmm;
584         int lmm_size;
585         int rc;
586         ENTRY;
587
588         lmm = lustre_msg_buf(msg, offset, 0);
589         if (lmm == NULL) {
590                 /* Some problem with getting eadata when I sized the reply
591                  * buffer... */
592                 CDEBUG(D_INFO, "no space reserved for inode %lu MD\n",
593                        inode->i_ino);
594                 RETURN(0);
595         }
596         lmm_size = lustre_msg_buflen(msg, offset);
597
598         /* I don't really like this, but it is a sanity check on the client
599          * MD request.  However, if the client doesn't know how much space
600          * to reserve for the MD, it shouldn't be bad to have too much space.
601          */
602         if (lmm_size > mds->mds_max_mdsize) {
603                 CWARN("Reading MD for inode %lu of %d bytes > max %d\n",
604                        inode->i_ino, lmm_size, mds->mds_max_mdsize);
605                 // RETURN(-EINVAL);
606         }
607
608         rc = mds_get_md(obd, inode, lmm, &lmm_size, lock);
609         if (rc > 0) {
610                 if (S_ISDIR(inode->i_mode))
611                         body->valid |= OBD_MD_FLDIREA;
612                 else
613                         body->valid |= OBD_MD_FLEASIZE;
614                 body->eadatasize = lmm_size;
615                 rc = 0;
616         }
617
618         RETURN(rc);
619 }
620
621 #ifdef CONFIG_FS_POSIX_ACL
622 static
623 int mds_pack_posix_acl(struct inode *inode, struct lustre_msg *repmsg,
624                        struct mds_body *repbody, int repoff)
625 {
626         struct dentry de = { .d_inode = inode };
627         int buflen, rc;
628         ENTRY;
629
630         LASSERT(repbody->aclsize == 0);
631         LASSERT(lustre_msg_bufcount(repmsg) > repoff);
632
633         buflen = lustre_msg_buflen(repmsg, repoff);
634         if (!buflen)
635                 GOTO(out, 0);
636
637         if (!inode->i_op || !inode->i_op->getxattr)
638                 GOTO(out, 0);
639
640         rc = inode->i_op->getxattr(&de, MDS_XATTR_NAME_ACL_ACCESS,
641                                    lustre_msg_buf(repmsg, repoff, buflen),
642                                    buflen);
643
644         if (rc >= 0)
645                 repbody->aclsize = rc;
646         else if (rc != -ENODATA) {
647                 CERROR("buflen %d, get acl: %d\n", buflen, rc);
648                 RETURN(rc);
649         }
650         EXIT;
651 out:
652         repbody->valid |= OBD_MD_FLACL;
653         return 0;
654 }
655 #else
656 #define mds_pack_posix_acl(inode, repmsg, repbody, repoff) 0
657 #endif
658
659 int mds_pack_acl(struct mds_export_data *med, struct inode *inode,
660                  struct lustre_msg *repmsg, struct mds_body *repbody,
661                  int repoff)
662 {
663         return mds_pack_posix_acl(inode, repmsg, repbody, repoff);
664 }
665
666 static int mds_getattr_internal(struct obd_device *obd, struct dentry *dentry,
667                                 struct ptlrpc_request *req,
668                                 struct mds_body *reqbody, int reply_off)
669 {
670         struct mds_body *body;
671         struct inode *inode = dentry->d_inode;
672         int rc = 0;
673         ENTRY;
674
675         if (inode == NULL)
676                 RETURN(-ENOENT);
677
678         body = lustre_msg_buf(req->rq_repmsg, reply_off, sizeof(*body));
679         LASSERT(body != NULL);                 /* caller prepped reply */
680
681         mds_pack_inode2fid(&body->fid1, inode);
682         body->flags = reqbody->flags; /* copy MDS_BFLAG_EXT_FLAGS if present */
683         mds_pack_inode2body(body, inode);
684         reply_off++;
685
686         if ((S_ISREG(inode->i_mode) && (reqbody->valid & OBD_MD_FLEASIZE)) ||
687             (S_ISDIR(inode->i_mode) && (reqbody->valid & OBD_MD_FLDIREA))) {
688                 rc = mds_pack_md(obd, req->rq_repmsg, reply_off, body,
689                                  inode, 1);
690
691                 /* If we have LOV EA data, the OST holds size, atime, mtime */
692                 if (!(body->valid & OBD_MD_FLEASIZE) &&
693                     !(body->valid & OBD_MD_FLDIREA))
694                         body->valid |= (OBD_MD_FLSIZE | OBD_MD_FLBLOCKS |
695                                         OBD_MD_FLATIME | OBD_MD_FLMTIME);
696
697                 lustre_shrink_reply(req, reply_off, body->eadatasize, 0);
698                 if (body->eadatasize)
699                         reply_off++;
700         } else if (S_ISLNK(inode->i_mode) &&
701                    (reqbody->valid & OBD_MD_LINKNAME) != 0) {
702                 char *symname = lustre_msg_buf(req->rq_repmsg, reply_off, 0);
703                 int len;
704
705                 LASSERT (symname != NULL);       /* caller prepped reply */
706                 len = lustre_msg_buflen(req->rq_repmsg, reply_off);
707
708                 rc = inode->i_op->readlink(dentry, symname, len);
709                 if (rc < 0) {
710                         CERROR("readlink failed: %d\n", rc);
711                 } else if (rc != len - 1) {
712                         CERROR ("Unexpected readlink rc %d: expecting %d\n",
713                                 rc, len - 1);
714                         rc = -EINVAL;
715                 } else {
716                         CDEBUG(D_INODE, "read symlink dest %s\n", symname);
717                         body->valid |= OBD_MD_LINKNAME;
718                         body->eadatasize = rc + 1;
719                         symname[rc] = 0;        /* NULL terminate */
720                         rc = 0;
721                 }
722                 reply_off++;
723         } else if (reqbody->valid == OBD_MD_FLFLAGS &&
724                    reqbody->flags & MDS_BFLAG_EXT_FLAGS) {
725                 int flags;
726
727                 /* We only return the full set of flags on ioctl, otherwise we
728                  * get enough flags from the inode in mds_pack_inode2body(). */
729                 rc = fsfilt_iocontrol(obd, inode, NULL, EXT3_IOC_GETFLAGS,
730                                       (long)&flags);
731                 if (rc == 0)
732                         body->flags = flags | MDS_BFLAG_EXT_FLAGS;
733         }
734
735         if (reqbody->valid & OBD_MD_FLMODEASIZE) {
736                 struct mds_obd *mds = mds_req2mds(req);
737                 body->max_cookiesize = mds->mds_max_cookiesize;
738                 body->max_mdsize = mds->mds_max_mdsize;
739                 body->valid |= OBD_MD_FLMODEASIZE;
740         }
741
742         if (rc)
743                 RETURN(rc);
744
745 #ifdef CONFIG_FS_POSIX_ACL
746         if ((req->rq_export->exp_connect_flags & OBD_CONNECT_ACL) &&
747             (reqbody->valid & OBD_MD_FLACL)) {
748                 rc = mds_pack_acl(&req->rq_export->exp_mds_data,
749                                   inode, req->rq_repmsg,
750                                   body, reply_off);
751
752                 lustre_shrink_reply(req, reply_off, body->aclsize, 0);
753                 if (body->aclsize)
754                         reply_off++;
755         }
756 #endif
757
758         RETURN(rc);
759 }
760
761 static int mds_getattr_pack_msg(struct ptlrpc_request *req, struct inode *inode,
762                                 int offset)
763 {
764         struct mds_obd *mds = mds_req2mds(req);
765         struct mds_body *body;
766         int rc, bufcount = 2;
767         int size[4] = { sizeof(struct ptlrpc_body), sizeof(*body) };
768         ENTRY;
769
770         LASSERT(offset == REQ_REC_OFF); /* non-intent */
771
772         body = lustre_msg_buf(req->rq_reqmsg, offset, sizeof(*body));
773         LASSERT(body != NULL);                    /* checked by caller */
774         LASSERT(lustre_req_swabbed(req, offset)); /* swabbed by caller */
775
776         if ((S_ISREG(inode->i_mode) && (body->valid & OBD_MD_FLEASIZE)) ||
777             (S_ISDIR(inode->i_mode) && (body->valid & OBD_MD_FLDIREA))) {
778                 LOCK_INODE_MUTEX(inode);
779                 rc = fsfilt_get_md(req->rq_export->exp_obd, inode, NULL, 0,
780                                    "lov");
781                 UNLOCK_INODE_MUTEX(inode);
782                 CDEBUG(D_INODE, "got %d bytes MD data for inode %lu\n",
783                        rc, inode->i_ino);
784                 if (rc < 0) {
785                         if (rc != -ENODATA) {
786                                 CERROR("error getting inode %lu MD: rc = %d\n",
787                                        inode->i_ino, rc);
788                                 RETURN(rc);
789                         }
790                         size[bufcount] = 0;
791                 } else if (rc > mds->mds_max_mdsize) {
792                         size[bufcount] = 0;
793                         CERROR("MD size %d larger than maximum possible %u\n",
794                                rc, mds->mds_max_mdsize);
795                 } else {
796                         size[bufcount] = rc;
797                 }
798                 bufcount++;
799         } else if (S_ISLNK(inode->i_mode) && (body->valid & OBD_MD_LINKNAME)) {
800                 if (i_size_read(inode) + 1 != body->eadatasize)
801                         CERROR("symlink size: %Lu, reply space: %d\n",
802                                i_size_read(inode) + 1, body->eadatasize);
803                 size[bufcount] = min_t(int, i_size_read(inode) + 1,
804                                        body->eadatasize);
805                 bufcount++;
806                 CDEBUG(D_INODE, "symlink size: %Lu, reply space: %d\n",
807                        i_size_read(inode) + 1, body->eadatasize);
808         }
809
810 #ifdef CONFIG_FS_POSIX_ACL
811         if ((req->rq_export->exp_connect_flags & OBD_CONNECT_ACL) &&
812             (body->valid & OBD_MD_FLACL)) {
813                 struct dentry de = { .d_inode = inode };
814
815                 size[bufcount] = 0;
816                 if (inode->i_op && inode->i_op->getxattr) {
817                         rc = inode->i_op->getxattr(&de, MDS_XATTR_NAME_ACL_ACCESS,
818                                                    NULL, 0);
819
820                         if (rc < 0) {
821                                 if (rc != -ENODATA) {
822                                         CERROR("got acl size: %d\n", rc);
823                                         RETURN(rc);
824                                 }
825                         } else
826                                 size[bufcount] = rc;
827                 }
828                 bufcount++;
829         }
830 #endif
831
832         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_GETATTR_PACK)) {
833                 CERROR("failed MDS_GETATTR_PACK test\n");
834                 req->rq_status = -ENOMEM;
835                 RETURN(-ENOMEM);
836         }
837
838         rc = lustre_pack_reply(req, bufcount, size, NULL);
839         if (rc) {
840                 req->rq_status = rc;
841                 RETURN(rc);
842         }
843
844         RETURN(0);
845 }
846
847 static int mds_getattr_lock(struct ptlrpc_request *req, int offset,
848                             int child_part, struct lustre_handle *child_lockh)
849 {
850         struct obd_device *obd = req->rq_export->exp_obd;
851         struct mds_obd *mds = &obd->u.mds;
852         struct ldlm_reply *rep = NULL;
853         struct lvfs_run_ctxt saved;
854         struct mds_body *body;
855         struct dentry *dparent = NULL, *dchild = NULL;
856         struct lvfs_ucred uc = {0,};
857         struct lustre_handle parent_lockh;
858         int namesize;
859         int rc = 0, cleanup_phase = 0, resent_req = 0;
860         char *name;
861         ENTRY;
862
863         LASSERT(!strcmp(obd->obd_type->typ_name, LUSTRE_MDS_NAME));
864
865         /* Swab now, before anyone looks inside the request */
866         body = lustre_swab_reqbuf(req, offset, sizeof(*body),
867                                   lustre_swab_mds_body);
868         if (body == NULL) {
869                 CERROR("Can't swab mds_body\n");
870                 RETURN(-EFAULT);
871         }
872
873         lustre_set_req_swabbed(req, offset + 1);
874         name = lustre_msg_string(req->rq_reqmsg, offset + 1, 0);
875         if (name == NULL) {
876                 CERROR("Can't unpack name\n");
877                 RETURN(-EFAULT);
878         }
879         namesize = lustre_msg_buflen(req->rq_reqmsg, offset + 1);
880         /* namesize less than 2 means we have empty name, probably came from
881            revalidate by cfid, so no point in having name to be set */
882         if (namesize <= 1)
883                 name = NULL;
884
885         rc = mds_init_ucred(&uc, req, offset);
886         if (rc)
887                 GOTO(cleanup, rc);
888
889         LASSERT(offset == REQ_REC_OFF || offset == DLM_INTENT_REC_OFF);
890         /* if requests were at offset 2, the getattr reply goes back at 1 */
891         if (offset == DLM_INTENT_REC_OFF) {
892                 rep = lustre_msg_buf(req->rq_repmsg, DLM_LOCKREPLY_OFF,
893                                      sizeof(*rep));
894                 offset = DLM_REPLY_REC_OFF;
895         }
896
897         push_ctxt(&saved, &obd->obd_lvfs_ctxt, &uc);
898         cleanup_phase = 1; /* kernel context */
899         intent_set_disposition(rep, DISP_LOOKUP_EXECD);
900
901         /* FIXME: handle raw lookup */
902 #if 0
903         if (body->valid == OBD_MD_FLID) {
904                 struct mds_body *mds_reply;
905                 int size = sizeof(*mds_reply);
906                 ino_t inum;
907                 // The user requested ONLY the inode number, so do a raw lookup
908                 rc = lustre_pack_reply(req, 1, &size, NULL);
909                 if (rc) {
910                         CERROR("out of memory\n");
911                         GOTO(cleanup, rc);
912                 }
913
914                 rc = dir->i_op->lookup_raw(dir, name, namesize - 1, &inum);
915
916                 mds_reply = lustre_msg_buf(req->rq_repmsg, offset,
917                                            sizeof(*mds_reply));
918                 mds_reply->fid1.id = inum;
919                 mds_reply->valid = OBD_MD_FLID;
920                 GOTO(cleanup, rc);
921         }
922 #endif
923
924         if (lustre_handle_is_used(child_lockh)) {
925                 LASSERT(lustre_msg_get_flags(req->rq_reqmsg) & MSG_RESENT);
926                 resent_req = 1;
927         }
928
929         if (resent_req == 0) {
930                 if (name) {
931                         OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_RESEND, obd_timeout * 2);
932                         rc = mds_get_parent_child_locked(obd, &obd->u.mds,
933                                                          &body->fid1,
934                                                          &parent_lockh,
935                                                          &dparent, LCK_CR,
936                                                          MDS_INODELOCK_UPDATE,
937                                                          name, namesize,
938                                                          child_lockh, &dchild,
939                                                          LCK_CR, child_part);
940                 } else {
941                         /* For revalidate by fid we always take UPDATE lock */
942                         dchild = mds_fid2locked_dentry(obd, &body->fid2, NULL,
943                                                        LCK_CR, child_lockh,
944                                                        child_part);
945                         LASSERT(dchild);
946                         if (IS_ERR(dchild))
947                                 rc = PTR_ERR(dchild);
948                 }
949                 if (rc)
950                         GOTO(cleanup, rc);
951         } else {
952                 struct ldlm_lock *granted_lock;
953                 struct ll_fid child_fid;
954                 struct ldlm_resource *res;
955                 DEBUG_REQ(D_DLMTRACE, req, "resent, not enqueuing new locks");
956                 granted_lock = ldlm_handle2lock(child_lockh);
957                 LASSERTF(granted_lock != NULL, LPU64"/%u lockh "LPX64"\n",
958                          body->fid1.id, body->fid1.generation,
959                          child_lockh->cookie);
960
961
962                 res = granted_lock->l_resource;
963                 child_fid.id = res->lr_name.name[0];
964                 child_fid.generation = res->lr_name.name[1];
965                 dchild = mds_fid2dentry(&obd->u.mds, &child_fid, NULL);
966                 LASSERT(!IS_ERR(dchild));
967                 LDLM_LOCK_PUT(granted_lock);
968         }
969
970         cleanup_phase = 2; /* dchild, dparent, locks */
971
972         if (dchild->d_inode == NULL) {
973                 intent_set_disposition(rep, DISP_LOOKUP_NEG);
974                 /* in the intent case, the policy clears this error:
975                    the disposition is enough */
976                 GOTO(cleanup, rc = -ENOENT);
977         } else {
978                 intent_set_disposition(rep, DISP_LOOKUP_POS);
979         }
980
981         if (req->rq_repmsg == NULL) {
982                 rc = mds_getattr_pack_msg(req, dchild->d_inode, offset);
983                 if (rc != 0) {
984                         CERROR ("mds_getattr_pack_msg: %d\n", rc);
985                         GOTO (cleanup, rc);
986                 }
987         }
988
989         rc = mds_getattr_internal(obd, dchild, req, body, offset);
990         GOTO(cleanup, rc); /* returns the lock to the client */
991
992  cleanup:
993         switch (cleanup_phase) {
994         case 2:
995                 if (resent_req == 0) {
996                         if (rc && dchild->d_inode)
997                                 ldlm_lock_decref(child_lockh, LCK_CR);
998                         if (name) {
999                                 ldlm_lock_decref(&parent_lockh, LCK_CR);
1000                                 l_dput(dparent);
1001                         }
1002                 }
1003                 l_dput(dchild);
1004         case 1:
1005                 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, &uc);
1006         default:
1007                 mds_exit_ucred(&uc, mds);
1008                 if (req->rq_reply_state == NULL) {
1009                         int rc2 = lustre_pack_reply(req, 1, NULL, NULL);
1010                         if (rc == 0)
1011                                 rc = rc2;
1012                         req->rq_status = rc;
1013                 }
1014         }
1015         return rc;
1016 }
1017
1018 static int mds_getattr(struct ptlrpc_request *req, int offset)
1019 {
1020         struct mds_obd *mds = mds_req2mds(req);
1021         struct obd_device *obd = req->rq_export->exp_obd;
1022         struct lvfs_run_ctxt saved;
1023         struct dentry *de;
1024         struct mds_body *body;
1025         struct lvfs_ucred uc = {0,};
1026         int rc = 0;
1027         ENTRY;
1028
1029         OBD_COUNTER_INCREMENT(obd, getattr);
1030
1031         body = lustre_swab_reqbuf(req, offset, sizeof(*body),
1032                                   lustre_swab_mds_body);
1033         if (body == NULL)
1034                 RETURN(-EFAULT);
1035
1036         rc = mds_init_ucred(&uc, req, offset);
1037         if (rc)
1038                 GOTO(out_ucred, rc);
1039
1040         push_ctxt(&saved, &obd->obd_lvfs_ctxt, &uc);
1041         de = mds_fid2dentry(mds, &body->fid1, NULL);
1042         if (IS_ERR(de)) {
1043                 rc = req->rq_status = PTR_ERR(de);
1044                 GOTO(out_pop, rc);
1045         }
1046
1047         rc = mds_getattr_pack_msg(req, de->d_inode, offset);
1048         if (rc != 0) {
1049                 CERROR("mds_getattr_pack_msg: %d\n", rc);
1050                 GOTO(out_pop, rc);
1051         }
1052
1053         req->rq_status = mds_getattr_internal(obd, de, req, body,
1054                                               REPLY_REC_OFF);
1055
1056         l_dput(de);
1057         GOTO(out_pop, rc);
1058 out_pop:
1059         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, &uc);
1060 out_ucred:
1061         if (req->rq_reply_state == NULL) {
1062                 int rc2 = lustre_pack_reply(req, 1, NULL, NULL);
1063                 if (rc == 0)
1064                         rc = rc2;
1065                 req->rq_status = rc;
1066         }
1067         mds_exit_ucred(&uc, mds);
1068         return rc;
1069 }
1070
1071 static int mds_obd_statfs(struct obd_device *obd, struct obd_statfs *osfs,
1072                           __u64 max_age)
1073 {
1074         int rc;
1075
1076         spin_lock(&obd->obd_osfs_lock);
1077         rc = fsfilt_statfs(obd, obd->u.obt.obt_sb, max_age);
1078         if (rc == 0)
1079                 memcpy(osfs, &obd->obd_osfs, sizeof(*osfs));
1080         spin_unlock(&obd->obd_osfs_lock);
1081
1082         return rc;
1083 }
1084
1085 static int mds_statfs(struct ptlrpc_request *req)
1086 {
1087         struct obd_device *obd = req->rq_export->exp_obd;
1088         int rc, size[2] = { sizeof(struct ptlrpc_body),
1089                             sizeof(struct obd_statfs) };
1090         ENTRY;
1091
1092         /* This will trigger a watchdog timeout */
1093         OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_STATFS_LCW_SLEEP,
1094                          (MDS_SERVICE_WATCHDOG_TIMEOUT / 1000) + 1);
1095         OBD_COUNTER_INCREMENT(obd, statfs);
1096
1097         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_STATFS_PACK))
1098                 GOTO(out, rc = -ENOMEM);
1099         rc = lustre_pack_reply(req, 2, size, NULL);
1100         if (rc)
1101                 GOTO(out, rc);
1102
1103         /* We call this so that we can cache a bit - 1 jiffie worth */
1104         rc = mds_obd_statfs(obd, lustre_msg_buf(req->rq_repmsg, REPLY_REC_OFF,
1105                                                 size[REPLY_REC_OFF]),
1106                             cfs_time_current_64() - HZ);
1107         if (rc) {
1108                 CERROR("mds_obd_statfs failed: rc %d\n", rc);
1109                 GOTO(out, rc);
1110         }
1111
1112         EXIT;
1113 out:
1114         req->rq_status = rc;
1115         return 0;
1116 }
1117
1118 static int mds_sync(struct ptlrpc_request *req, int offset)
1119 {
1120         struct obd_device *obd = req->rq_export->exp_obd;
1121         struct mds_obd *mds = &obd->u.mds;
1122         struct mds_body *body;
1123         int rc, size[2] = { sizeof(struct ptlrpc_body), sizeof(*body) };
1124         ENTRY;
1125
1126         body = lustre_swab_reqbuf(req, offset, sizeof(*body),
1127                                   lustre_swab_mds_body);
1128         if (body == NULL)
1129                 GOTO(out, rc = -EFAULT);
1130
1131         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_SYNC_PACK))
1132                 GOTO(out, rc = -ENOMEM);
1133         rc = lustre_pack_reply(req, 2, size, NULL);
1134         if (rc)
1135                 GOTO(out, rc);
1136
1137         if (body->fid1.id == 0) {
1138                 /* a fid of zero is taken to mean "sync whole filesystem" */
1139                 rc = fsfilt_sync(obd, obd->u.obt.obt_sb);
1140                 GOTO(out, rc);
1141         } else {
1142                 struct dentry *de;
1143
1144                 de = mds_fid2dentry(mds, &body->fid1, NULL);
1145                 if (IS_ERR(de))
1146                         GOTO(out, rc = PTR_ERR(de));
1147
1148                 /* The file parameter isn't used for anything */
1149                 if (de->d_inode->i_fop && de->d_inode->i_fop->fsync)
1150                         rc = de->d_inode->i_fop->fsync(NULL, de, 1);
1151                 if (rc == 0) {
1152                         body = lustre_msg_buf(req->rq_repmsg, REPLY_REC_OFF,
1153                                               sizeof(*body));
1154                         mds_pack_inode2fid(&body->fid1, de->d_inode);
1155                         mds_pack_inode2body(body, de->d_inode);
1156                 }
1157
1158                 l_dput(de);
1159                 GOTO(out, rc);
1160         }
1161 out:
1162         req->rq_status = rc;
1163         return 0;
1164 }
1165
1166 /* mds_readpage does not take a DLM lock on the inode, because the client must
1167  * already have a PR lock.
1168  *
1169  * If we were to take another one here, a deadlock will result, if another
1170  * thread is already waiting for a PW lock. */
1171 static int mds_readpage(struct ptlrpc_request *req, int offset)
1172 {
1173         struct obd_device *obd = req->rq_export->exp_obd;
1174         struct mds_obd *mds = &obd->u.mds;
1175         struct vfsmount *mnt;
1176         struct dentry *de;
1177         struct file *file;
1178         struct mds_body *body, *repbody;
1179         struct lvfs_run_ctxt saved;
1180         int rc, size[2] = { sizeof(struct ptlrpc_body), sizeof(*repbody) };
1181         struct lvfs_ucred uc = {0,};
1182         ENTRY;
1183
1184         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_READPAGE_PACK))
1185                 RETURN(-ENOMEM);
1186         rc = lustre_pack_reply(req, 2, size, NULL);
1187         if (rc)
1188                 GOTO(out, rc);
1189
1190         body = lustre_swab_reqbuf(req, offset, sizeof(*body),
1191                                   lustre_swab_mds_body);
1192         if (body == NULL)
1193                 GOTO (out, rc = -EFAULT);
1194
1195         rc = mds_init_ucred(&uc, req, offset);
1196         if (rc)
1197                 GOTO(out, rc);
1198
1199         push_ctxt(&saved, &obd->obd_lvfs_ctxt, &uc);
1200         de = mds_fid2dentry(&obd->u.mds, &body->fid1, &mnt);
1201         if (IS_ERR(de))
1202                 GOTO(out_pop, rc = PTR_ERR(de));
1203
1204         CDEBUG(D_INODE, "ino %lu\n", de->d_inode->i_ino);
1205
1206         file = dentry_open(de, mnt, O_RDONLY | O_LARGEFILE);
1207         /* note: in case of an error, dentry_open puts dentry */
1208         if (IS_ERR(file))
1209                 GOTO(out_pop, rc = PTR_ERR(file));
1210
1211         /* body->size is actually the offset -eeb */
1212         if ((body->size & (de->d_inode->i_sb->s_blocksize - 1)) != 0) {
1213                 CERROR("offset "LPU64" not on a block boundary of %lu\n",
1214                        body->size, de->d_inode->i_sb->s_blocksize);
1215                 GOTO(out_file, rc = -EFAULT);
1216         }
1217
1218         /* body->nlink is actually the #bytes to read -eeb */
1219         if (body->nlink & (de->d_inode->i_sb->s_blocksize - 1)) {
1220                 CERROR("size %u is not multiple of blocksize %lu\n",
1221                        body->nlink, de->d_inode->i_sb->s_blocksize);
1222                 GOTO(out_file, rc = -EFAULT);
1223         }
1224
1225         repbody = lustre_msg_buf(req->rq_repmsg, REPLY_REC_OFF,
1226                                  sizeof(*repbody));
1227         repbody->size = i_size_read(file->f_dentry->d_inode);
1228         repbody->valid = OBD_MD_FLSIZE;
1229
1230         /* to make this asynchronous make sure that the handling function
1231            doesn't send a reply when this function completes. Instead a
1232            callback function would send the reply */
1233         /* body->size is actually the offset -eeb */
1234         rc = mds_sendpage(req, file, body->size, body->nlink);
1235
1236 out_file:
1237         filp_close(file, 0);
1238 out_pop:
1239         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, &uc);
1240 out:
1241         mds_exit_ucred(&uc, mds);
1242         req->rq_status = rc;
1243         RETURN(0);
1244 }
1245
1246 int mds_reint(struct ptlrpc_request *req, int offset,
1247               struct lustre_handle *lockh)
1248 {
1249         struct mds_update_record *rec; /* 116 bytes on the stack?  no sir! */
1250         int rc;
1251
1252         OBD_ALLOC(rec, sizeof(*rec));
1253         if (rec == NULL)
1254                 RETURN(-ENOMEM);
1255
1256         rc = mds_update_unpack(req, offset, rec);
1257         if (rc || OBD_FAIL_CHECK(OBD_FAIL_MDS_REINT_UNPACK)) {
1258                 CERROR("invalid record\n");
1259                 GOTO(out, req->rq_status = -EINVAL);
1260         }
1261
1262         /* rc will be used to interrupt a for loop over multiple records */
1263         rc = mds_reint_rec(rec, offset, req, lockh);
1264  out:
1265         OBD_FREE(rec, sizeof(*rec));
1266         return rc;
1267 }
1268
1269 int mds_filter_recovery_request(struct ptlrpc_request *req,
1270                                 struct obd_device *obd, int *process)
1271 {
1272         switch (lustre_msg_get_opc(req->rq_reqmsg)) {
1273         case MDS_CONNECT: /* This will never get here, but for completeness. */
1274         case OST_CONNECT: /* This will never get here, but for completeness. */
1275         case MDS_DISCONNECT:
1276         case OST_DISCONNECT:
1277                *process = 1;
1278                RETURN(0);
1279
1280         case MDS_CLOSE:
1281         case MDS_DONE_WRITING:
1282         case MDS_SYNC: /* used in unmounting */
1283         case OBD_PING:
1284         case MDS_REINT:
1285         case SEQ_QUERY:
1286         case FLD_QUERY:
1287         case LDLM_ENQUEUE:
1288                 *process = target_queue_recovery_request(req, obd);
1289                 RETURN(0);
1290
1291         default:
1292                 DEBUG_REQ(D_ERROR, req, "not permitted during recovery");
1293                 *process = -EAGAIN;
1294                 RETURN(0);
1295         }
1296 }
1297 EXPORT_SYMBOL(mds_filter_recovery_request);
1298
1299 static char *reint_names[] = {
1300         [REINT_SETATTR] "setattr",
1301         [REINT_CREATE]  "create",
1302         [REINT_LINK]    "link",
1303         [REINT_UNLINK]  "unlink",
1304         [REINT_RENAME]  "rename",
1305         [REINT_OPEN]    "open",
1306 };
1307
1308 static int mds_set_info_rpc(struct obd_export *exp, struct ptlrpc_request *req)
1309 {
1310         void *key, *val;
1311         int keylen, vallen, rc = 0;
1312         ENTRY;
1313
1314         key = lustre_msg_buf(req->rq_reqmsg, REQ_REC_OFF, 1);
1315         if (key == NULL) {
1316                 DEBUG_REQ(D_HA, req, "no set_info key");
1317                 RETURN(-EFAULT);
1318         }
1319         keylen = lustre_msg_buflen(req->rq_reqmsg, REQ_REC_OFF);
1320
1321         val = lustre_msg_buf(req->rq_reqmsg, REQ_REC_OFF + 1, 0);
1322         vallen = lustre_msg_buflen(req->rq_reqmsg, REQ_REC_OFF + 1);
1323
1324         rc = lustre_pack_reply(req, 1, NULL, NULL);
1325         if (rc)
1326                 RETURN(rc);
1327
1328         lustre_msg_set_status(req->rq_repmsg, 0);
1329
1330         if (KEY_IS("read-only")) {
1331                 if (val == NULL || vallen < sizeof(__u32)) {
1332                         DEBUG_REQ(D_HA, req, "no set_info val");
1333                         RETURN(-EFAULT);
1334                 }
1335
1336                 if (*(__u32 *)val)
1337                         exp->exp_connect_flags |= OBD_CONNECT_RDONLY;
1338                 else
1339                         exp->exp_connect_flags &= ~OBD_CONNECT_RDONLY;
1340         } else {
1341                 RETURN(-EINVAL);
1342         }
1343
1344         RETURN(0);
1345 }
1346
1347 static int mds_handle_quotacheck(struct ptlrpc_request *req)
1348 {
1349         struct obd_quotactl *oqctl;
1350         int rc;
1351         ENTRY;
1352
1353         oqctl = lustre_swab_reqbuf(req, REQ_REC_OFF, sizeof(*oqctl),
1354                                    lustre_swab_obd_quotactl);
1355         if (oqctl == NULL)
1356                 RETURN(-EPROTO);
1357
1358         rc = lustre_pack_reply(req, 1, NULL, NULL);
1359         if (rc)
1360                 RETURN(rc);
1361
1362         req->rq_status = obd_quotacheck(req->rq_export, oqctl);
1363         RETURN(0);
1364 }
1365
1366 static int mds_handle_quotactl(struct ptlrpc_request *req)
1367 {
1368         struct obd_quotactl *oqctl, *repoqc;
1369         int rc, size[2] = { sizeof(struct ptlrpc_body), sizeof(*repoqc) };
1370         ENTRY;
1371
1372         oqctl = lustre_swab_reqbuf(req, REQ_REC_OFF, sizeof(*oqctl),
1373                                    lustre_swab_obd_quotactl);
1374         if (oqctl == NULL)
1375                 RETURN(-EPROTO);
1376
1377         rc = lustre_pack_reply(req, 2, size, NULL);
1378         if (rc)
1379                 RETURN(rc);
1380
1381         repoqc = lustre_msg_buf(req->rq_repmsg, REPLY_REC_OFF, sizeof(*repoqc));
1382
1383         req->rq_status = obd_quotactl(req->rq_export, oqctl);
1384         *repoqc = *oqctl;
1385         RETURN(0);
1386 }
1387
1388 int mds_msg_check_version(struct lustre_msg *msg)
1389 {
1390         int rc;
1391
1392         switch (lustre_msg_get_opc(msg)) {
1393         case MDS_CONNECT:
1394         case MDS_DISCONNECT:
1395         case OBD_PING:
1396         case SEC_CTX_INIT:
1397         case SEC_CTX_INIT_CONT:
1398         case SEC_CTX_FINI:
1399                 rc = lustre_msg_check_version(msg, LUSTRE_OBD_VERSION);
1400                 if (rc)
1401                         CERROR("bad opc %u version %08x, expecting %08x\n",
1402                                lustre_msg_get_opc(msg),
1403                                lustre_msg_get_version(msg),
1404                                LUSTRE_OBD_VERSION);
1405                 break;
1406         case MDS_GETSTATUS:
1407         case MDS_GETATTR:
1408         case MDS_GETATTR_NAME:
1409         case MDS_STATFS:
1410         case MDS_READPAGE:
1411         case MDS_WRITEPAGE:
1412         case MDS_IS_SUBDIR:
1413         case MDS_REINT:
1414         case MDS_CLOSE:
1415         case MDS_DONE_WRITING:
1416         case MDS_PIN:
1417         case MDS_SYNC:
1418         case MDS_GETXATTR:
1419         case MDS_SETXATTR:
1420         case MDS_SET_INFO:
1421         case MDS_QUOTACHECK:
1422         case MDS_QUOTACTL:
1423         case QUOTA_DQACQ:
1424         case QUOTA_DQREL:
1425         case SEQ_QUERY:
1426         case FLD_QUERY:
1427                 rc = lustre_msg_check_version(msg, LUSTRE_MDS_VERSION);
1428                 if (rc)
1429                         CERROR("bad opc %u version %08x, expecting %08x\n",
1430                                lustre_msg_get_opc(msg),
1431                                lustre_msg_get_version(msg),
1432                                LUSTRE_MDS_VERSION);
1433                 break;
1434         case LDLM_ENQUEUE:
1435         case LDLM_CONVERT:
1436         case LDLM_BL_CALLBACK:
1437         case LDLM_CP_CALLBACK:
1438                 rc = lustre_msg_check_version(msg, LUSTRE_DLM_VERSION);
1439                 if (rc)
1440                         CERROR("bad opc %u version %08x, expecting %08x\n",
1441                                lustre_msg_get_opc(msg),
1442                                lustre_msg_get_version(msg),
1443                                LUSTRE_DLM_VERSION);
1444                 break;
1445         case OBD_LOG_CANCEL:
1446         case LLOG_ORIGIN_HANDLE_CREATE:
1447         case LLOG_ORIGIN_HANDLE_NEXT_BLOCK:
1448         case LLOG_ORIGIN_HANDLE_READ_HEADER:
1449         case LLOG_ORIGIN_HANDLE_CLOSE:
1450         case LLOG_ORIGIN_HANDLE_DESTROY:
1451         case LLOG_ORIGIN_HANDLE_PREV_BLOCK:
1452         case LLOG_CATINFO:
1453                 rc = lustre_msg_check_version(msg, LUSTRE_LOG_VERSION);
1454                 if (rc)
1455                         CERROR("bad opc %u version %08x, expecting %08x\n",
1456                                lustre_msg_get_opc(msg),
1457                                lustre_msg_get_version(msg),
1458                                LUSTRE_LOG_VERSION);
1459                 break;
1460         default:
1461                 CERROR("MDS unknown opcode %d\n", lustre_msg_get_opc(msg));
1462                 rc = -ENOTSUPP;
1463         }
1464         return rc;
1465 }
1466 EXPORT_SYMBOL(mds_msg_check_version);
1467
1468 int mds_handle(struct ptlrpc_request *req)
1469 {
1470         int should_process, fail = OBD_FAIL_MDS_ALL_REPLY_NET;
1471         int rc;
1472         struct mds_obd *mds = NULL; /* quell gcc overwarning */
1473         struct obd_device *obd = NULL;
1474         ENTRY;
1475
1476         if (OBD_FAIL_CHECK_ORSET(OBD_FAIL_MDS_ALL_REQUEST_NET, OBD_FAIL_ONCE))
1477                 RETURN(0);
1478
1479         LASSERT(current->journal_info == NULL);
1480
1481         rc = mds_msg_check_version(req->rq_reqmsg);
1482         if (rc) {
1483                 CERROR("MDS drop mal-formed request\n");
1484                 RETURN(rc);
1485         }
1486
1487         /* XXX identical to OST */
1488         if (lustre_msg_get_opc(req->rq_reqmsg) != MDS_CONNECT) {
1489                 struct mds_export_data *med;
1490                 int recovering;
1491
1492                 if (req->rq_export == NULL) {
1493                         CERROR("operation %d on unconnected MDS from %s\n",
1494                                lustre_msg_get_opc(req->rq_reqmsg),
1495                                libcfs_id2str(req->rq_peer));
1496                         req->rq_status = -ENOTCONN;
1497                         GOTO(out, rc = -ENOTCONN);
1498                 }
1499
1500                 med = &req->rq_export->exp_mds_data;
1501                 obd = req->rq_export->exp_obd;
1502                 mds = mds_req2mds(req);
1503
1504                 /* sanity check: if the xid matches, the request must
1505                  * be marked as a resent or replayed */
1506                 if (req->rq_xid == le64_to_cpu(med->med_mcd->mcd_last_xid) ||
1507                    req->rq_xid == le64_to_cpu(med->med_mcd->mcd_last_close_xid))
1508                         if (!(lustre_msg_get_flags(req->rq_reqmsg) &
1509                                  (MSG_RESENT | MSG_REPLAY))) {
1510                                 CERROR("rq_xid "LPU64" matches last_xid, "
1511                                        "expected RESENT flag\n",
1512                                         req->rq_xid);
1513                                 req->rq_status = -ENOTCONN;
1514                                 GOTO(out, rc = -EFAULT);
1515                         }
1516                 /* else: note the opposite is not always true; a
1517                  * RESENT req after a failover will usually not match
1518                  * the last_xid, since it was likely never
1519                  * committed. A REPLAYed request will almost never
1520                  * match the last xid, however it could for a
1521                  * committed, but still retained, open. */
1522
1523                 /* Check for aborted recovery. */
1524                 spin_lock_bh(&obd->obd_processing_task_lock);
1525                 recovering = obd->obd_recovering;
1526                 spin_unlock_bh(&obd->obd_processing_task_lock);
1527                 if (recovering) {
1528                         rc = mds_filter_recovery_request(req, obd,
1529                                                          &should_process);
1530                         if (rc || !should_process)
1531                                 RETURN(rc);
1532                         else if (should_process < 0) {
1533                                 req->rq_status = should_process;
1534                                 rc = ptlrpc_error(req);
1535                                 RETURN(rc);
1536                         }
1537                 }
1538         }
1539
1540         switch (lustre_msg_get_opc(req->rq_reqmsg)) {
1541         case MDS_CONNECT:
1542                 DEBUG_REQ(D_INODE, req, "connect");
1543                 if (OBD_FAIL_CHECK(OBD_FAIL_MDS_CONNECT_NET))
1544                         RETURN(0);
1545                 rc = target_handle_connect(req);
1546                 if (!rc) {
1547                         /* Now that we have an export, set mds. */
1548                         /*
1549                          * XXX nikita: these assignments are useless: mds is
1550                          * never used below, and obd is only used for
1551                          * MSG_LAST_REPLAY case, which never happens for
1552                          * MDS_CONNECT.
1553                          */
1554                         obd = req->rq_export->exp_obd;
1555                         mds = mds_req2mds(req);
1556                 }
1557                 break;
1558
1559         case MDS_DISCONNECT:
1560                 DEBUG_REQ(D_INODE, req, "disconnect");
1561                 if (OBD_FAIL_CHECK(OBD_FAIL_MDS_DISCONNECT_NET))
1562                         RETURN(0);
1563                 rc = target_handle_disconnect(req);
1564                 req->rq_status = rc;            /* superfluous? */
1565                 break;
1566
1567         case MDS_GETSTATUS:
1568                 DEBUG_REQ(D_INODE, req, "getstatus");
1569                 if (OBD_FAIL_CHECK(OBD_FAIL_MDS_GETSTATUS_NET))
1570                         RETURN(0);
1571                 rc = mds_getstatus(req);
1572                 break;
1573
1574         case MDS_GETATTR:
1575                 DEBUG_REQ(D_INODE, req, "getattr");
1576                 if (OBD_FAIL_CHECK(OBD_FAIL_MDS_GETATTR_NET))
1577                         RETURN(0);
1578                 rc = mds_getattr(req, REQ_REC_OFF);
1579                 break;
1580
1581         case MDS_SETXATTR:
1582                 DEBUG_REQ(D_INODE, req, "setxattr");
1583                 if (OBD_FAIL_CHECK(OBD_FAIL_MDS_SETXATTR_NET))
1584                         RETURN(0);
1585                 rc = mds_setxattr(req);
1586                 break;
1587
1588         case MDS_GETXATTR:
1589                 DEBUG_REQ(D_INODE, req, "getxattr");
1590                 if (OBD_FAIL_CHECK(OBD_FAIL_MDS_GETXATTR_NET))
1591                         RETURN(0);
1592                 rc = mds_getxattr(req);
1593                 break;
1594
1595         case MDS_GETATTR_NAME: {
1596                 struct lustre_handle lockh = { 0 };
1597                 DEBUG_REQ(D_INODE, req, "getattr_name");
1598                 if (OBD_FAIL_CHECK(OBD_FAIL_MDS_GETATTR_NAME_NET))
1599                         RETURN(0);
1600
1601                 /* If this request gets a reconstructed reply, we won't be
1602                  * acquiring any new locks in mds_getattr_lock, so we don't
1603                  * want to cancel.
1604                  */
1605                 rc = mds_getattr_lock(req, REQ_REC_OFF, MDS_INODELOCK_UPDATE,
1606                                       &lockh);
1607                 /* this non-intent call (from an ioctl) is special */
1608                 req->rq_status = rc;
1609                 if (rc == 0 && lustre_handle_is_used(&lockh))
1610                         ldlm_lock_decref(&lockh, LCK_CR);
1611                 break;
1612         }
1613         case MDS_STATFS:
1614                 DEBUG_REQ(D_INODE, req, "statfs");
1615                 if (OBD_FAIL_CHECK(OBD_FAIL_MDS_STATFS_NET))
1616                         RETURN(0);
1617                 rc = mds_statfs(req);
1618                 break;
1619
1620         case MDS_READPAGE:
1621                 DEBUG_REQ(D_INODE, req, "readpage");
1622                 if (OBD_FAIL_CHECK(OBD_FAIL_MDS_READPAGE_NET))
1623                         RETURN(0);
1624                 rc = mds_readpage(req, REQ_REC_OFF);
1625
1626                 if (OBD_FAIL_CHECK(OBD_FAIL_MDS_SENDPAGE)) {
1627                         RETURN(0);
1628                 }
1629
1630                 break;
1631
1632         case MDS_REINT: {
1633                 __u32 *opcp = lustre_msg_buf(req->rq_reqmsg, REQ_REC_OFF,
1634                                              sizeof(*opcp));
1635                 __u32  opc;
1636                 int op = 0;
1637                 int size[4] = { sizeof(struct ptlrpc_body),
1638                                 sizeof(struct mds_body),
1639                                 mds->mds_max_mdsize,
1640                                 mds->mds_max_cookiesize };
1641                 int bufcount;
1642
1643                 /* NB only peek inside req now; mds_reint() will swab it */
1644                 if (opcp == NULL) {
1645                         CERROR ("Can't inspect opcode\n");
1646                         rc = -EINVAL;
1647                         break;
1648                 }
1649                 opc = *opcp;
1650                 if (lustre_msg_swabbed(req->rq_reqmsg))
1651                         __swab32s(&opc);
1652
1653                 DEBUG_REQ(D_INODE, req, "reint %d (%s)", opc,
1654                           (opc < sizeof(reint_names) / sizeof(reint_names[0]) ||
1655                            reint_names[opc] == NULL) ? reint_names[opc] :
1656                                                        "unknown opcode");
1657                 switch (opc) {
1658                 case REINT_CREATE:
1659                         op = PTLRPC_LAST_CNTR + MDS_REINT_CREATE;
1660                         break;
1661                 case REINT_LINK:
1662                         op = PTLRPC_LAST_CNTR + MDS_REINT_LINK;
1663                         break;
1664                 case REINT_OPEN:
1665                         op = PTLRPC_LAST_CNTR + MDS_REINT_OPEN;
1666                         break;
1667                 case REINT_SETATTR:
1668                         op = PTLRPC_LAST_CNTR + MDS_REINT_SETATTR;
1669                         break;
1670                 case REINT_RENAME:
1671                         op = PTLRPC_LAST_CNTR + MDS_REINT_RENAME;
1672                         break;
1673                 case REINT_UNLINK:
1674                         op = PTLRPC_LAST_CNTR + MDS_REINT_UNLINK;
1675                         break;
1676                 default:
1677                         op = 0;
1678                         break;
1679                 }
1680
1681                 if (op && req->rq_rqbd->rqbd_service->srv_stats)
1682                         lprocfs_counter_incr(
1683                                 req->rq_rqbd->rqbd_service->srv_stats, op);
1684
1685                 if (OBD_FAIL_CHECK(OBD_FAIL_MDS_REINT_NET))
1686                         RETURN(0);
1687
1688                 if (opc == REINT_UNLINK || opc == REINT_RENAME)
1689                         bufcount = 4;
1690                 else if (opc == REINT_OPEN)
1691                         bufcount = 3;
1692                 else
1693                         bufcount = 2;
1694
1695                 rc = lustre_pack_reply(req, bufcount, size, NULL);
1696                 if (rc)
1697                         break;
1698
1699                 rc = mds_reint(req, REQ_REC_OFF, NULL);
1700                 fail = OBD_FAIL_MDS_REINT_NET_REP;
1701                 break;
1702         }
1703
1704         case MDS_CLOSE:
1705                 DEBUG_REQ(D_INODE, req, "close");
1706                 if (OBD_FAIL_CHECK(OBD_FAIL_MDS_CLOSE_NET))
1707                         RETURN(0);
1708                 rc = mds_close(req, REQ_REC_OFF);
1709                 fail = OBD_FAIL_MDS_CLOSE_NET_REP;
1710                 break;
1711
1712         case MDS_DONE_WRITING:
1713                 DEBUG_REQ(D_INODE, req, "done_writing");
1714                 if (OBD_FAIL_CHECK(OBD_FAIL_MDS_DONE_WRITING_NET))
1715                         RETURN(0);
1716                 rc = mds_done_writing(req, REQ_REC_OFF);
1717                 break;
1718
1719         case MDS_PIN:
1720                 DEBUG_REQ(D_INODE, req, "pin");
1721                 if (OBD_FAIL_CHECK(OBD_FAIL_MDS_PIN_NET))
1722                         RETURN(0);
1723                 rc = mds_pin(req, REQ_REC_OFF);
1724                 break;
1725
1726         case MDS_SYNC:
1727                 DEBUG_REQ(D_INODE, req, "sync");
1728                 if (OBD_FAIL_CHECK(OBD_FAIL_MDS_SYNC_NET))
1729                         RETURN(0);
1730                 rc = mds_sync(req, REQ_REC_OFF);
1731                 break;
1732
1733         case MDS_SET_INFO:
1734                 DEBUG_REQ(D_INODE, req, "set_info");
1735                 rc = mds_set_info_rpc(req->rq_export, req);
1736                 break;
1737
1738         case MDS_QUOTACHECK:
1739                 DEBUG_REQ(D_INODE, req, "quotacheck");
1740                 if (OBD_FAIL_CHECK(OBD_FAIL_MDS_QUOTACHECK_NET))
1741                         RETURN(0);
1742                 rc = mds_handle_quotacheck(req);
1743                 break;
1744
1745         case MDS_QUOTACTL:
1746                 DEBUG_REQ(D_INODE, req, "quotactl");
1747                 if (OBD_FAIL_CHECK(OBD_FAIL_MDS_QUOTACTL_NET))
1748                         RETURN(0);
1749                 rc = mds_handle_quotactl(req);
1750                 break;
1751
1752         case OBD_PING:
1753                 DEBUG_REQ(D_INODE, req, "ping");
1754                 rc = target_handle_ping(req);
1755                 break;
1756
1757         case OBD_LOG_CANCEL:
1758                 CDEBUG(D_INODE, "log cancel\n");
1759                 if (OBD_FAIL_CHECK(OBD_FAIL_OBD_LOG_CANCEL_NET))
1760                         RETURN(0);
1761                 rc = -ENOTSUPP; /* la la la */
1762                 break;
1763
1764         case LDLM_ENQUEUE:
1765                 DEBUG_REQ(D_INODE, req, "enqueue");
1766                 if (OBD_FAIL_CHECK(OBD_FAIL_LDLM_ENQUEUE))
1767                         RETURN(0);
1768                 rc = ldlm_handle_enqueue(req, ldlm_server_completion_ast,
1769                                          ldlm_server_blocking_ast, NULL);
1770                 fail = OBD_FAIL_LDLM_REPLY;
1771                 break;
1772         case LDLM_CONVERT:
1773                 DEBUG_REQ(D_INODE, req, "convert");
1774                 if (OBD_FAIL_CHECK(OBD_FAIL_LDLM_CONVERT))
1775                         RETURN(0);
1776                 rc = ldlm_handle_convert(req);
1777                 break;
1778         case LDLM_BL_CALLBACK:
1779         case LDLM_CP_CALLBACK:
1780                 DEBUG_REQ(D_INODE, req, "callback");
1781                 CERROR("callbacks should not happen on MDS\n");
1782                 LBUG();
1783                 if (OBD_FAIL_CHECK(OBD_FAIL_LDLM_BL_CALLBACK))
1784                         RETURN(0);
1785                 break;
1786         case LLOG_ORIGIN_HANDLE_CREATE:
1787                 DEBUG_REQ(D_INODE, req, "llog_init");
1788                 if (OBD_FAIL_CHECK(OBD_FAIL_OBD_LOGD_NET))
1789                         RETURN(0);
1790                 rc = llog_origin_handle_create(req);
1791                 break;
1792         case LLOG_ORIGIN_HANDLE_DESTROY:
1793                 DEBUG_REQ(D_INODE, req, "llog_init");
1794                 if (OBD_FAIL_CHECK(OBD_FAIL_OBD_LOGD_NET))
1795                         RETURN(0);
1796                 rc = llog_origin_handle_destroy(req);
1797                 break;
1798         case LLOG_ORIGIN_HANDLE_NEXT_BLOCK:
1799                 DEBUG_REQ(D_INODE, req, "llog next block");
1800                 if (OBD_FAIL_CHECK(OBD_FAIL_OBD_LOGD_NET))
1801                         RETURN(0);
1802                 rc = llog_origin_handle_next_block(req);
1803                 break;
1804         case LLOG_ORIGIN_HANDLE_PREV_BLOCK:
1805                 DEBUG_REQ(D_INODE, req, "llog prev block");
1806                 if (OBD_FAIL_CHECK(OBD_FAIL_OBD_LOGD_NET))
1807                         RETURN(0);
1808                 rc = llog_origin_handle_prev_block(req);
1809                 break;
1810         case LLOG_ORIGIN_HANDLE_READ_HEADER:
1811                 DEBUG_REQ(D_INODE, req, "llog read header");
1812                 if (OBD_FAIL_CHECK(OBD_FAIL_OBD_LOGD_NET))
1813                         RETURN(0);
1814                 rc = llog_origin_handle_read_header(req);
1815                 break;
1816         case LLOG_ORIGIN_HANDLE_CLOSE:
1817                 DEBUG_REQ(D_INODE, req, "llog close");
1818                 if (OBD_FAIL_CHECK(OBD_FAIL_OBD_LOGD_NET))
1819                         RETURN(0);
1820                 rc = llog_origin_handle_close(req);
1821                 break;
1822         case LLOG_CATINFO:
1823                 DEBUG_REQ(D_INODE, req, "llog catinfo");
1824                 if (OBD_FAIL_CHECK(OBD_FAIL_OBD_LOGD_NET))
1825                         RETURN(0);
1826                 rc = llog_catinfo(req);
1827                 break;
1828         default:
1829                 req->rq_status = -ENOTSUPP;
1830                 rc = ptlrpc_error(req);
1831                 RETURN(rc);
1832         }
1833
1834         LASSERT(current->journal_info == NULL);
1835
1836         /* If we're DISCONNECTing, the mds_export_data is already freed */
1837         if (!rc && lustre_msg_get_opc(req->rq_reqmsg) != MDS_DISCONNECT) {
1838                 struct mds_export_data *med = &req->rq_export->exp_mds_data;
1839
1840                 /* I don't think last_xid is used for anyway, so I'm not sure
1841                    if we need to care about last_close_xid here.*/
1842                 lustre_msg_set_last_xid(req->rq_repmsg,
1843                                        le64_to_cpu(med->med_mcd->mcd_last_xid));
1844
1845                 target_committed_to_req(req);
1846         }
1847
1848         EXIT;
1849  out:
1850
1851         target_send_reply(req, rc, fail);
1852         return 0;
1853 }
1854
1855 /* Update the server data on disk.  This stores the new mount_count and
1856  * also the last_rcvd value to disk.  If we don't have a clean shutdown,
1857  * then the server last_rcvd value may be less than that of the clients.
1858  * This will alert us that we may need to do client recovery.
1859  *
1860  * Also assumes for mds_last_transno that we are not modifying it (no locking).
1861  */
1862 int mds_update_server_data(struct obd_device *obd, int force_sync)
1863 {
1864         struct mds_obd *mds = &obd->u.mds;
1865         struct lr_server_data *lsd = mds->mds_server_data;
1866         struct file *filp = mds->mds_rcvd_filp;
1867         struct lvfs_run_ctxt saved;
1868         loff_t off = 0;
1869         int rc;
1870         ENTRY;
1871
1872         CDEBUG(D_SUPER, "MDS mount_count is "LPU64", last_transno is "LPU64"\n",
1873                mds->mds_mount_count, mds->mds_last_transno);
1874
1875         spin_lock(&mds->mds_transno_lock);
1876         lsd->lsd_last_transno = cpu_to_le64(mds->mds_last_transno);
1877         spin_unlock(&mds->mds_transno_lock);
1878
1879         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
1880         rc = fsfilt_write_record(obd, filp, lsd, sizeof(*lsd), &off,force_sync);
1881         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
1882         if (rc)
1883                 CERROR("error writing MDS server data: rc = %d\n", rc);
1884         RETURN(rc);
1885 }
1886
1887 static void fsoptions_to_mds_flags(struct mds_obd *mds, char *options)
1888 {
1889         char *p = options;
1890
1891         if (!options)
1892                 return;
1893
1894         while (*options) {
1895                 int len;
1896
1897                 while (*p && *p != ',')
1898                         p++;
1899
1900                 len = p - options;
1901                 if (len == sizeof("user_xattr") - 1 &&
1902                     memcmp(options, "user_xattr", len) == 0) {
1903                         mds->mds_fl_user_xattr = 1;
1904                         LCONSOLE_INFO("Enabling user_xattr\n");
1905                 } else if (len == sizeof("nouser_xattr") - 1 &&
1906                            memcmp(options, "nouser_xattr", len) == 0) {
1907                         mds->mds_fl_user_xattr = 0;
1908                         LCONSOLE_INFO("Disabling user_xattr\n");
1909                 } else if (len == sizeof("acl") - 1 &&
1910                            memcmp(options, "acl", len) == 0) {
1911 #ifdef CONFIG_FS_POSIX_ACL
1912                         mds->mds_fl_acl = 1;
1913                         LCONSOLE_INFO("Enabling ACL\n");
1914 #else
1915                         CWARN("ignoring unsupported acl mount option\n");
1916 #endif
1917                 } else if (len == sizeof("noacl") - 1 &&
1918                            memcmp(options, "noacl", len) == 0) {
1919 #ifdef CONFIG_FS_POSIX_ACL
1920                         mds->mds_fl_acl = 0;
1921                         LCONSOLE_INFO("Disabling ACL\n");
1922 #endif
1923                 }
1924
1925                 options = ++p;
1926         }
1927 }
1928 static int mds_lov_presetup (struct mds_obd *mds, struct lustre_cfg *lcfg)
1929 {
1930         int rc = 0;
1931         ENTRY;
1932
1933         if (lcfg->lcfg_bufcount >= 4 && LUSTRE_CFG_BUFLEN(lcfg, 3) > 0) {
1934                 class_uuid_t uuid;
1935
1936                 ll_generate_random_uuid(uuid);
1937                 class_uuid_unparse(uuid, &mds->mds_lov_uuid);
1938
1939                 OBD_ALLOC(mds->mds_profile, LUSTRE_CFG_BUFLEN(lcfg, 3));
1940                 if (mds->mds_profile == NULL)
1941                         RETURN(-ENOMEM);
1942
1943                 strncpy(mds->mds_profile, lustre_cfg_string(lcfg, 3),
1944                         LUSTRE_CFG_BUFLEN(lcfg, 3));
1945         }
1946         RETURN(rc);
1947 }
1948
1949 /* mount the file system (secretly).  lustre_cfg parameters are:
1950  * 1 = device
1951  * 2 = fstype
1952  * 3 = config name
1953  * 4 = mount options
1954  */
1955 static int mds_setup(struct obd_device *obd, struct lustre_cfg* lcfg)
1956 {
1957         struct lprocfs_static_vars lvars;
1958         struct mds_obd *mds = &obd->u.mds;
1959         struct lustre_mount_info *lmi;
1960         struct vfsmount *mnt;
1961         struct lustre_sb_info *lsi;
1962         struct obd_uuid uuid;
1963         __u8 *uuid_ptr;
1964         char *str, *label;
1965         char ns_name[48];
1966         int rc = 0;
1967         ENTRY;
1968
1969         /* setup 1:/dev/loop/0 2:ext3 3:mdsA 4:errors=remount-ro,iopen_nopriv */
1970
1971         CLASSERT(offsetof(struct obd_device, u.obt) ==
1972                  offsetof(struct obd_device, u.mds.mds_obt));
1973
1974         if (lcfg->lcfg_bufcount < 3)
1975                 RETURN(-EINVAL);
1976
1977         if (LUSTRE_CFG_BUFLEN(lcfg, 1) == 0 || LUSTRE_CFG_BUFLEN(lcfg, 2) == 0)
1978                 RETURN(-EINVAL);
1979
1980         lmi = server_get_mount(obd->obd_name);
1981         if (!lmi) {
1982                 CERROR("Not mounted in lustre_fill_super?\n");
1983                 RETURN(-EINVAL);
1984         }
1985
1986         /* We mounted in lustre_fill_super.
1987            lcfg bufs 1, 2, 4 (device, fstype, mount opts) are ignored.*/
1988
1989         lsi = s2lsi(lmi->lmi_sb);
1990         fsoptions_to_mds_flags(mds, lsi->lsi_ldd->ldd_mount_opts);
1991         fsoptions_to_mds_flags(mds, lsi->lsi_lmd->lmd_opts);
1992         mnt = lmi->lmi_mnt;
1993         obd->obd_fsops = fsfilt_get_ops(MT_STR(lsi->lsi_ldd));
1994         if (IS_ERR(obd->obd_fsops))
1995                 GOTO(err_put, rc = PTR_ERR(obd->obd_fsops));
1996
1997         CDEBUG(D_SUPER, "%s: mnt = %p\n", lustre_cfg_string(lcfg, 1), mnt);
1998
1999         LASSERT(!lvfs_check_rdonly(lvfs_sbdev(mnt->mnt_sb)));
2000
2001         sema_init(&mds->mds_epoch_sem, 1);
2002         spin_lock_init(&mds->mds_transno_lock);
2003         mds->mds_max_mdsize = sizeof(struct lov_mds_md);
2004         mds->mds_max_cookiesize = sizeof(struct llog_cookie);
2005         mds->mds_atime_diff = MAX_ATIME_DIFF;
2006         mds->mds_evict_ost_nids = 1;
2007
2008         sprintf(ns_name, "mds-%s", obd->obd_uuid.uuid);
2009         obd->obd_namespace = ldlm_namespace_new(ns_name, LDLM_NAMESPACE_SERVER,
2010                                                 LDLM_NAMESPACE_GREEDY);
2011         if (obd->obd_namespace == NULL) {
2012                 mds_cleanup(obd);
2013                 GOTO(err_ops, rc = -ENOMEM);
2014         }
2015         ldlm_register_intent(obd->obd_namespace, mds_intent_policy);
2016
2017         lprocfs_mds_init_vars(&lvars);
2018         if (lprocfs_obd_setup(obd, lvars.obd_vars) == 0 &&
2019             lprocfs_alloc_obd_stats(obd, LPROC_MDS_LAST) == 0) {
2020                 /* Init private stats here */
2021                 mds_stats_counter_init(obd->obd_stats);
2022                 obd->obd_proc_exports = proc_mkdir("exports",
2023                                                    obd->obd_proc_entry);
2024         }
2025
2026         rc = mds_fs_setup(obd, mnt);
2027         if (rc) {
2028                 CERROR("%s: MDS filesystem method init failed: rc = %d\n",
2029                        obd->obd_name, rc);
2030                 GOTO(err_ns, rc);
2031         }
2032
2033         rc = mds_lov_presetup(mds, lcfg);
2034         if (rc < 0)
2035                 GOTO(err_fs, rc);
2036
2037         ptlrpc_init_client(LDLM_CB_REQUEST_PORTAL, LDLM_CB_REPLY_PORTAL,
2038                            "mds_ldlm_client", &obd->obd_ldlm_client);
2039         obd->obd_replayable = 1;
2040
2041         rc = lquota_setup(mds_quota_interface_ref, obd);
2042         if (rc)
2043                 GOTO(err_fs, rc);
2044
2045 #if 0
2046         mds->mds_group_hash = upcall_cache_init(obd->obd_name);
2047         if (IS_ERR(mds->mds_group_hash)) {
2048                 rc = PTR_ERR(mds->mds_group_hash);
2049                 mds->mds_group_hash = NULL;
2050                 GOTO(err_qctxt, rc);
2051         }
2052 #endif
2053
2054         /* Don't wait for mds_postrecov trying to clear orphans */
2055         obd->obd_async_recov = 1;
2056         rc = mds_postsetup(obd);
2057         /* Bug 11557 - allow async abort_recov start
2058            FIXME can remove most of this obd_async_recov plumbing
2059         obd->obd_async_recov = 0;
2060         */
2061         if (rc)
2062                 GOTO(err_qctxt, rc);
2063
2064         uuid_ptr = fsfilt_uuid(obd, obd->u.obt.obt_sb);
2065         if (uuid_ptr != NULL) {
2066                 class_uuid_unparse(uuid_ptr, &uuid);
2067                 str = uuid.uuid;
2068         } else {
2069                 str = "no UUID";
2070         }
2071
2072         label = fsfilt_get_label(obd, obd->u.obt.obt_sb);
2073         if (obd->obd_recovering) {
2074                 LCONSOLE_WARN("MDT %s now serving %s (%s%s%s), but will be in "
2075                               "recovery until %d %s reconnect, or if no clients"
2076                               " reconnect for %d:%.02d; during that time new "
2077                               "clients will not be allowed to connect. "
2078                               "Recovery progress can be monitored by watching "
2079                               "/proc/fs/lustre/mds/%s/recovery_status.\n",
2080                               obd->obd_name, lustre_cfg_string(lcfg, 1),
2081                               label ?: "", label ? "/" : "", str,
2082                               obd->obd_max_recoverable_clients,
2083                               (obd->obd_max_recoverable_clients == 1) ?
2084                               "client" : "clients",
2085                               (int)(OBD_RECOVERY_TIMEOUT) / 60,
2086                               (int)(OBD_RECOVERY_TIMEOUT) % 60,
2087                               obd->obd_name);
2088         } else {
2089                 LCONSOLE_INFO("MDT %s now serving %s (%s%s%s) with recovery "
2090                               "%s\n", obd->obd_name, lustre_cfg_string(lcfg, 1),
2091                               label ?: "", label ? "/" : "", str,
2092                               obd->obd_replayable ? "enabled" : "disabled");
2093         }
2094
2095         if (ldlm_timeout == LDLM_TIMEOUT_DEFAULT)
2096                 ldlm_timeout = 6;
2097
2098         RETURN(0);
2099
2100 err_qctxt:
2101         lquota_cleanup(mds_quota_interface_ref, obd);
2102 err_fs:
2103         /* No extra cleanup needed for llog_init_commit_thread() */
2104         mds_fs_cleanup(obd);
2105 #if 0
2106         upcall_cache_cleanup(mds->mds_group_hash);
2107         mds->mds_group_hash = NULL;
2108 #endif
2109 err_ns:
2110         lprocfs_obd_cleanup(obd);
2111         lprocfs_free_obd_stats(obd);
2112         ldlm_namespace_free(obd->obd_namespace, 0);
2113         obd->obd_namespace = NULL;
2114 err_ops:
2115         fsfilt_put_ops(obd->obd_fsops);
2116 err_put:
2117         server_put_mount(obd->obd_name, mnt);
2118         obd->u.obt.obt_sb = NULL;
2119         return rc;
2120 }
2121
2122 static int mds_lov_clean(struct obd_device *obd)
2123 {
2124         struct mds_obd *mds = &obd->u.mds;
2125         struct obd_device *osc = mds->mds_osc_obd;
2126         ENTRY;
2127
2128         if (mds->mds_profile) {
2129                 class_del_profile(mds->mds_profile);
2130                 OBD_FREE(mds->mds_profile, strlen(mds->mds_profile) + 1);
2131                 mds->mds_profile = NULL;
2132         }
2133
2134         /* There better be a lov */
2135         if (!osc)
2136                 RETURN(0);
2137         if (IS_ERR(osc))
2138                 RETURN(PTR_ERR(osc));
2139
2140         obd_register_observer(osc, NULL);
2141
2142         /* Give lov our same shutdown flags */
2143         osc->obd_force = obd->obd_force;
2144         osc->obd_fail = obd->obd_fail;
2145
2146         /* Cleanup the lov */
2147         obd_disconnect(mds->mds_osc_exp);
2148         class_manual_cleanup(osc);
2149         mds->mds_osc_exp = NULL;
2150
2151         RETURN(0);
2152 }
2153
2154 static int mds_postsetup(struct obd_device *obd)
2155 {
2156         struct mds_obd *mds = &obd->u.mds;
2157         int rc = 0;
2158         ENTRY;
2159
2160         rc = llog_setup(obd, &obd->obd_olg, LLOG_CONFIG_ORIG_CTXT, obd, 0, NULL,
2161                         &llog_lvfs_ops);
2162         if (rc)
2163                 RETURN(rc);
2164
2165         rc = llog_setup(obd, &obd->obd_olg, LLOG_LOVEA_ORIG_CTXT, obd, 0, NULL,
2166                         &llog_lvfs_ops);
2167         if (rc)
2168                 RETURN(rc);
2169
2170         if (mds->mds_profile) {
2171                 struct lustre_profile *lprof;
2172                 /* The profile defines which osc and mdc to connect to, for a
2173                    client.  We reuse that here to figure out the name of the
2174                    lov to use (and ignore lprof->lp_md).
2175                    The profile was set in the config log with
2176                    LCFG_MOUNTOPT profilenm oscnm mdcnm */
2177                 lprof = class_get_profile(mds->mds_profile);
2178                 if (lprof == NULL) {
2179                         CERROR("No profile found: %s\n", mds->mds_profile);
2180                         GOTO(err_cleanup, rc = -ENOENT);
2181                 }
2182                 rc = mds_lov_connect(obd, lprof->lp_dt);
2183                 if (rc)
2184                         GOTO(err_cleanup, rc);
2185         }
2186
2187         RETURN(rc);
2188
2189 err_cleanup:
2190         mds_lov_clean(obd);
2191         llog_cleanup(llog_get_context(obd, LLOG_CONFIG_ORIG_CTXT));
2192         llog_cleanup(llog_get_context(obd, LLOG_LOVEA_ORIG_CTXT));
2193         RETURN(rc);
2194 }
2195
2196 int mds_postrecov(struct obd_device *obd)
2197 {
2198         int rc = 0;
2199         ENTRY;
2200
2201         if (obd->obd_fail)
2202                 RETURN(0);
2203
2204         LASSERT(!obd->obd_recovering);
2205         LASSERT(!llog_ctxt_null(obd, LLOG_MDS_OST_ORIG_CTXT));
2206
2207         /* clean PENDING dir */
2208         if (strncmp(obd->obd_name, MDD_OBD_NAME, strlen(MDD_OBD_NAME)))
2209                 rc = mds_cleanup_pending(obd);
2210                 if (rc < 0)
2211                         GOTO(out, rc);
2212
2213         /* FIXME Does target_finish_recovery really need this to block? */
2214         /* Notify the LOV, which will in turn call mds_notify for each tgt */
2215         /* This means that we have to hack obd_notify to think we're obd_set_up
2216            during mds_lov_connect. */
2217         obd_notify(obd->u.mds.mds_osc_obd, NULL,
2218                    obd->obd_async_recov ? OBD_NOTIFY_SYNC_NONBLOCK :
2219                    OBD_NOTIFY_SYNC, NULL);
2220
2221         /* quota recovery */
2222         lquota_recovery(mds_quota_interface_ref, obd);
2223
2224 out:
2225         RETURN(rc);
2226 }
2227
2228 /* We need to be able to stop an mds_lov_synchronize */
2229 static int mds_lov_early_clean(struct obd_device *obd)
2230 {
2231         struct mds_obd *mds = &obd->u.mds;
2232         struct obd_device *osc = mds->mds_osc_obd;
2233
2234         if (!osc || (!obd->obd_force && !obd->obd_fail))
2235                 return(0);
2236
2237         CDEBUG(D_HA, "abort inflight\n");
2238         return (obd_precleanup(osc, OBD_CLEANUP_EARLY));
2239 }
2240
2241 static int mds_precleanup(struct obd_device *obd, enum obd_cleanup_stage stage)
2242 {
2243         int rc = 0;
2244         ENTRY;
2245
2246         switch (stage) {
2247         case OBD_CLEANUP_EARLY:
2248                 break;
2249         case OBD_CLEANUP_EXPORTS:
2250                 /*XXX Use this for mdd mds cleanup, so comment out
2251                  *this target_cleanup_recovery for this tmp MDD MDS
2252                  *Wangdi*/
2253                 if (strncmp(obd->obd_name, MDD_OBD_NAME, strlen(MDD_OBD_NAME)))
2254                         target_cleanup_recovery(obd);
2255                 mds_lov_early_clean(obd);
2256                 break;
2257         case OBD_CLEANUP_SELF_EXP:
2258                 mds_lov_disconnect(obd);
2259                 mds_lov_clean(obd);
2260                 llog_cleanup(llog_get_context(obd, LLOG_CONFIG_ORIG_CTXT));
2261                 llog_cleanup(llog_get_context(obd, LLOG_LOVEA_ORIG_CTXT));
2262                 rc = obd_llog_finish(obd, 0);
2263                 break;
2264         case OBD_CLEANUP_OBD:
2265                 break;
2266         }
2267         RETURN(rc);
2268 }
2269
2270 static int mds_cleanup(struct obd_device *obd)
2271 {
2272         struct mds_obd *mds = &obd->u.mds;
2273         lvfs_sbdev_type save_dev;
2274         ENTRY;
2275
2276         if (obd->u.obt.obt_sb == NULL)
2277                 RETURN(0);
2278         save_dev = lvfs_sbdev(obd->u.obt.obt_sb);
2279
2280         if (mds->mds_osc_exp)
2281                 /* lov export was disconnected by mds_lov_clean;
2282                    we just need to drop our ref */
2283                 class_export_put(mds->mds_osc_exp);
2284
2285         lprocfs_obd_cleanup(obd);
2286         lprocfs_free_obd_stats(obd);
2287
2288         lquota_cleanup(mds_quota_interface_ref, obd);
2289
2290         mds_update_server_data(obd, 1);
2291         /* XXX
2292         mds_lov_destroy_objids(obd);
2293         */
2294         mds_fs_cleanup(obd);
2295
2296 #if 0
2297         upcall_cache_cleanup(mds->mds_group_hash);
2298         mds->mds_group_hash = NULL;
2299 #endif
2300
2301         server_put_mount(obd->obd_name, mds->mds_vfsmnt);
2302         obd->u.obt.obt_sb = NULL;
2303
2304         ldlm_namespace_free(obd->obd_namespace, obd->obd_force);
2305
2306         spin_lock_bh(&obd->obd_processing_task_lock);
2307         if (obd->obd_recovering) {
2308                 target_cancel_recovery_timer(obd);
2309                 obd->obd_recovering = 0;
2310         }
2311         spin_unlock_bh(&obd->obd_processing_task_lock);
2312
2313         fsfilt_put_ops(obd->obd_fsops);
2314
2315         LCONSOLE_INFO("MDT %s has stopped.\n", obd->obd_name);
2316
2317         RETURN(0);
2318 }
2319
2320 static void fixup_handle_for_resent_req(struct ptlrpc_request *req, int offset,
2321                                         struct ldlm_lock *new_lock,
2322                                         struct ldlm_lock **old_lock,
2323                                         struct lustre_handle *lockh)
2324 {
2325         struct obd_export *exp = req->rq_export;
2326         struct ldlm_request *dlmreq =
2327                 lustre_msg_buf(req->rq_reqmsg, offset, sizeof(*dlmreq));
2328         struct lustre_handle remote_hdl = dlmreq->lock_handle[0];
2329         struct list_head *iter;
2330
2331         if (!(lustre_msg_get_flags(req->rq_reqmsg) & MSG_RESENT))
2332                 return;
2333
2334         spin_lock(&exp->exp_ldlm_data.led_lock);
2335         list_for_each(iter, &exp->exp_ldlm_data.led_held_locks) {
2336                 struct ldlm_lock *lock;
2337                 lock = list_entry(iter, struct ldlm_lock, l_export_chain);
2338                 if (lock == new_lock)
2339                         continue;
2340                 if (lock->l_remote_handle.cookie == remote_hdl.cookie) {
2341                         lockh->cookie = lock->l_handle.h_cookie;
2342                         LDLM_DEBUG(lock, "restoring lock cookie");
2343                         DEBUG_REQ(D_DLMTRACE, req,"restoring lock cookie "LPX64,
2344                                   lockh->cookie);
2345                         if (old_lock)
2346                                 *old_lock = LDLM_LOCK_GET(lock);
2347                         spin_unlock(&exp->exp_ldlm_data.led_lock);
2348                         return;
2349                 }
2350         }
2351         spin_unlock(&exp->exp_ldlm_data.led_lock);
2352
2353         /* If the xid matches, then we know this is a resent request,
2354          * and allow it. (It's probably an OPEN, for which we don't
2355          * send a lock */
2356         if (req->rq_xid ==
2357             le64_to_cpu(exp->exp_mds_data.med_mcd->mcd_last_xid))
2358                 return;
2359
2360         if (req->rq_xid ==
2361             le64_to_cpu(exp->exp_mds_data.med_mcd->mcd_last_close_xid))
2362                 return;
2363
2364         /* This remote handle isn't enqueued, so we never received or
2365          * processed this request.  Clear MSG_RESENT, because it can
2366          * be handled like any normal request now. */
2367
2368         lustre_msg_clear_flags(req->rq_reqmsg, MSG_RESENT);
2369
2370         DEBUG_REQ(D_DLMTRACE, req, "no existing lock with rhandle "LPX64,
2371                   remote_hdl.cookie);
2372 }
2373
2374 int intent_disposition(struct ldlm_reply *rep, int flag)
2375 {
2376         if (!rep)
2377                 return 0;
2378         return (rep->lock_policy_res1 & flag);
2379 }
2380
2381 void intent_set_disposition(struct ldlm_reply *rep, int flag)
2382 {
2383         if (!rep)
2384                 return;
2385         rep->lock_policy_res1 |= flag;
2386 }
2387
2388 static int mds_intent_policy(struct ldlm_namespace *ns,
2389                              struct ldlm_lock **lockp, void *req_cookie,
2390                              ldlm_mode_t mode, int flags, void *data)
2391 {
2392         struct ptlrpc_request *req = req_cookie;
2393         struct ldlm_lock *lock = *lockp;
2394         struct ldlm_intent *it;
2395         struct mds_obd *mds = &req->rq_export->exp_obd->u.mds;
2396         struct ldlm_reply *rep;
2397         struct lustre_handle lockh = { 0 };
2398         struct ldlm_lock *new_lock = NULL;
2399         int getattr_part = MDS_INODELOCK_UPDATE;
2400         int repsize[5] = { [MSG_PTLRPC_BODY_OFF] = sizeof(struct ptlrpc_body),
2401                            [DLM_LOCKREPLY_OFF]   = sizeof(struct ldlm_reply),
2402                            [DLM_REPLY_REC_OFF]   = sizeof(struct mds_body),
2403                            [DLM_REPLY_REC_OFF+1] = mds->mds_max_mdsize };
2404         int repbufcnt = 4, rc;
2405         ENTRY;
2406
2407         LASSERT(req != NULL);
2408
2409         if (lustre_msg_bufcount(req->rq_reqmsg) <= DLM_INTENT_IT_OFF) {
2410                 /* No intent was provided */
2411                 rc = lustre_pack_reply(req, 2, repsize, NULL);
2412                 if (rc)
2413                         RETURN(rc);
2414                 RETURN(0);
2415         }
2416
2417         it = lustre_swab_reqbuf(req, DLM_INTENT_IT_OFF, sizeof(*it),
2418                                 lustre_swab_ldlm_intent);
2419         if (it == NULL) {
2420                 CERROR("Intent missing\n");
2421                 RETURN(req->rq_status = -EFAULT);
2422         }
2423
2424         LDLM_DEBUG(lock, "intent policy, opc: %s", ldlm_it2str(it->opc));
2425
2426         if ((req->rq_export->exp_connect_flags & OBD_CONNECT_ACL) &&
2427             (it->opc & (IT_OPEN | IT_GETATTR | IT_LOOKUP)))
2428                 /* we should never allow OBD_CONNECT_ACL if not configured */
2429                 repsize[repbufcnt++] = LUSTRE_POSIX_ACL_MAX_SIZE;
2430         else if (it->opc & IT_UNLINK)
2431                 repsize[repbufcnt++] = mds->mds_max_cookiesize;
2432
2433         rc = lustre_pack_reply(req, repbufcnt, repsize, NULL);
2434         if (rc)
2435                 RETURN(req->rq_status = rc);
2436
2437         rep = lustre_msg_buf(req->rq_repmsg, DLM_LOCKREPLY_OFF, sizeof(*rep));
2438         intent_set_disposition(rep, DISP_IT_EXECD);
2439
2440
2441         /* execute policy */
2442         switch ((long)it->opc) {
2443         case IT_OPEN:
2444         case IT_CREAT|IT_OPEN:
2445                 mds_counter_incr(req->rq_export, LPROC_MDS_OPEN);
2446                 fixup_handle_for_resent_req(req, DLM_LOCKREQ_OFF, lock, NULL,
2447                                             &lockh);
2448                 /* XXX swab here to assert that an mds_open reint
2449                  * packet is following */
2450                 rep->lock_policy_res2 = mds_reint(req, DLM_INTENT_REC_OFF,
2451                                                   &lockh);
2452 #if 0
2453                 /* We abort the lock if the lookup was negative and
2454                  * we did not make it to the OPEN portion */
2455                 if (!intent_disposition(rep, DISP_LOOKUP_EXECD))
2456                         RETURN(ELDLM_LOCK_ABORTED);
2457                 if (intent_disposition(rep, DISP_LOOKUP_NEG) &&
2458                     !intent_disposition(rep, DISP_OPEN_OPEN))
2459 #endif
2460
2461                 /* If there was an error of some sort or if we are not
2462                  * returning any locks */
2463                 if (rep->lock_policy_res2 ||
2464                     !intent_disposition(rep, DISP_OPEN_LOCK))
2465                         RETURN(ELDLM_LOCK_ABORTED);
2466                 break;
2467         case IT_LOOKUP:
2468                         getattr_part = MDS_INODELOCK_LOOKUP;
2469         case IT_GETATTR:
2470                         getattr_part |= MDS_INODELOCK_LOOKUP;
2471                         OBD_COUNTER_INCREMENT(req->rq_export->exp_obd, getattr);
2472         case IT_READDIR:
2473                 fixup_handle_for_resent_req(req, DLM_LOCKREQ_OFF, lock,
2474                                             &new_lock, &lockh);
2475
2476                 /* INODEBITS_INTEROP: if this lock was converted from a
2477                  * plain lock (client does not support inodebits), then
2478                  * child lock must be taken with both lookup and update
2479                  * bits set for all operations.
2480                  */
2481                 if (!(req->rq_export->exp_connect_flags & OBD_CONNECT_IBITS))
2482                         getattr_part = MDS_INODELOCK_LOOKUP |
2483                                        MDS_INODELOCK_UPDATE;
2484
2485                 rep->lock_policy_res2 = mds_getattr_lock(req,DLM_INTENT_REC_OFF,
2486                                                          getattr_part, &lockh);
2487                 /* FIXME: LDLM can set req->rq_status. MDS sets
2488                    policy_res{1,2} with disposition and status.
2489                    - replay: returns 0 & req->status is old status
2490                    - otherwise: returns req->status */
2491                 if (intent_disposition(rep, DISP_LOOKUP_NEG))
2492                         rep->lock_policy_res2 = 0;
2493                 if (!intent_disposition(rep, DISP_LOOKUP_POS) ||
2494                     rep->lock_policy_res2)
2495                         RETURN(ELDLM_LOCK_ABORTED);
2496                 if (req->rq_status != 0) {
2497                         LBUG();
2498                         rep->lock_policy_res2 = req->rq_status;
2499                         RETURN(ELDLM_LOCK_ABORTED);
2500                 }
2501                 break;
2502         default:
2503                 CERROR("Unhandled intent "LPD64"\n", it->opc);
2504                 RETURN(-EFAULT);
2505         }
2506
2507         /* By this point, whatever function we called above must have either
2508          * filled in 'lockh', been an intent replay, or returned an error.  We
2509          * want to allow replayed RPCs to not get a lock, since we would just
2510          * drop it below anyways because lock replay is done separately by the
2511          * client afterwards.  For regular RPCs we want to give the new lock to
2512          * the client instead of whatever lock it was about to get. */
2513         if (new_lock == NULL)
2514                 new_lock = ldlm_handle2lock(&lockh);
2515         if (new_lock == NULL && (flags & LDLM_FL_INTENT_ONLY))
2516                 RETURN(0);
2517
2518         LASSERTF(new_lock != NULL, "op "LPX64" lockh "LPX64"\n",
2519                  it->opc, lockh.cookie);
2520
2521         /* If we've already given this lock to a client once, then we should
2522          * have no readers or writers.  Otherwise, we should have one reader
2523          * _or_ writer ref (which will be zeroed below) before returning the
2524          * lock to a client. */
2525         if (new_lock->l_export == req->rq_export) {
2526                 LASSERT(new_lock->l_readers + new_lock->l_writers == 0);
2527         } else {
2528                 LASSERT(new_lock->l_export == NULL);
2529                 LASSERT(new_lock->l_readers + new_lock->l_writers == 1);
2530         }
2531
2532         *lockp = new_lock;
2533
2534         if (new_lock->l_export == req->rq_export) {
2535                 /* Already gave this to the client, which means that we
2536                  * reconstructed a reply. */
2537                 LASSERT(lustre_msg_get_flags(req->rq_reqmsg) &
2538                         MSG_RESENT);
2539                 RETURN(ELDLM_LOCK_REPLACED);
2540         }
2541
2542         /* Fixup the lock to be given to the client */
2543         lock_res_and_lock(new_lock);
2544         new_lock->l_readers = 0;
2545         new_lock->l_writers = 0;
2546
2547         new_lock->l_export = class_export_get(req->rq_export);
2548         spin_lock(&req->rq_export->exp_ldlm_data.led_lock);
2549         list_add(&new_lock->l_export_chain,
2550                  &new_lock->l_export->exp_ldlm_data.led_held_locks);
2551         spin_unlock(&req->rq_export->exp_ldlm_data.led_lock);
2552
2553         new_lock->l_blocking_ast = lock->l_blocking_ast;
2554         new_lock->l_completion_ast = lock->l_completion_ast;
2555
2556         memcpy(&new_lock->l_remote_handle, &lock->l_remote_handle,
2557                sizeof(lock->l_remote_handle));
2558
2559         new_lock->l_flags &= ~LDLM_FL_LOCAL;
2560
2561         unlock_res_and_lock(new_lock);
2562         LDLM_LOCK_PUT(new_lock);
2563
2564         RETURN(ELDLM_LOCK_REPLACED);
2565 }
2566
2567 static int mdt_setup(struct obd_device *obd, struct lustre_cfg *lcfg)
2568 {
2569         struct mds_obd *mds = &obd->u.mds;
2570         struct lprocfs_static_vars lvars;
2571         int mds_min_threads;
2572         int mds_max_threads;
2573         int rc = 0;
2574         ENTRY;
2575
2576         lprocfs_mdt_init_vars(&lvars);
2577         lprocfs_obd_setup(obd, lvars.obd_vars);
2578
2579         sema_init(&mds->mds_health_sem, 1);
2580
2581         if (mds_num_threads) {
2582                 /* If mds_num_threads is set, it is the min and the max. */
2583                 if (mds_num_threads > MDS_THREADS_MAX)
2584                         mds_num_threads = MDS_THREADS_MAX;
2585                 if (mds_num_threads < MDS_THREADS_MIN)
2586                         mds_num_threads = MDS_THREADS_MIN;
2587                 mds_max_threads = mds_min_threads = mds_num_threads;
2588         } else {
2589                 /* Base min threads on memory and cpus */
2590                 mds_min_threads = num_possible_cpus() * num_physpages >>
2591                         (27 - CFS_PAGE_SHIFT);
2592                 if (mds_min_threads < MDS_THREADS_MIN)
2593                         mds_min_threads = MDS_THREADS_MIN;
2594                 /* Largest auto threads start value */
2595                 if (mds_min_threads > 32)
2596                         mds_min_threads = 32;
2597                 mds_max_threads = min(MDS_THREADS_MAX, mds_min_threads * 4);
2598         }
2599
2600         mds->mds_service =
2601                 ptlrpc_init_svc(MDS_NBUFS, MDS_BUFSIZE, MDS_MAXREQSIZE,
2602                                 MDS_MAXREPSIZE, MDS_REQUEST_PORTAL,
2603                                 MDC_REPLY_PORTAL, MDS_SERVICE_WATCHDOG_TIMEOUT,
2604                                 mds_handle, LUSTRE_MDS_NAME,
2605                                 obd->obd_proc_entry, NULL,
2606                                 mds_min_threads, mds_max_threads, "ll_mdt", 0);
2607
2608         if (!mds->mds_service) {
2609                 CERROR("failed to start service\n");
2610                 GOTO(err_lprocfs, rc = -ENOMEM);
2611         }
2612
2613         rc = ptlrpc_start_threads(obd, mds->mds_service);
2614         if (rc)
2615                 GOTO(err_thread, rc);
2616
2617         mds->mds_setattr_service =
2618                 ptlrpc_init_svc(MDS_NBUFS, MDS_BUFSIZE, MDS_MAXREQSIZE,
2619                                 MDS_MAXREPSIZE, MDS_SETATTR_PORTAL,
2620                                 MDC_REPLY_PORTAL, MDS_SERVICE_WATCHDOG_TIMEOUT,
2621                                 mds_handle, "mds_setattr",
2622                                 obd->obd_proc_entry, NULL,
2623                                 mds_min_threads, mds_max_threads,
2624                                 "ll_mdt_attr", 0);
2625         if (!mds->mds_setattr_service) {
2626                 CERROR("failed to start getattr service\n");
2627                 GOTO(err_thread, rc = -ENOMEM);
2628         }
2629
2630         rc = ptlrpc_start_threads(obd, mds->mds_setattr_service);
2631         if (rc)
2632                 GOTO(err_thread2, rc);
2633
2634         mds->mds_readpage_service =
2635                 ptlrpc_init_svc(MDS_NBUFS, MDS_BUFSIZE, MDS_MAXREQSIZE,
2636                                 MDS_MAXREPSIZE, MDS_READPAGE_PORTAL,
2637                                 MDC_REPLY_PORTAL, MDS_SERVICE_WATCHDOG_TIMEOUT,
2638                                 mds_handle, "mds_readpage",
2639                                 obd->obd_proc_entry, NULL,
2640                                 MDS_THREADS_MIN_READPAGE, mds_max_threads,
2641                                 "ll_mdt_rdpg", 0);
2642         if (!mds->mds_readpage_service) {
2643                 CERROR("failed to start readpage service\n");
2644                 GOTO(err_thread2, rc = -ENOMEM);
2645         }
2646
2647         rc = ptlrpc_start_threads(obd, mds->mds_readpage_service);
2648
2649         if (rc)
2650                 GOTO(err_thread3, rc);
2651
2652         ping_evictor_start();
2653
2654         RETURN(0);
2655
2656 err_thread3:
2657         ptlrpc_unregister_service(mds->mds_readpage_service);
2658         mds->mds_readpage_service = NULL;
2659 err_thread2:
2660         ptlrpc_unregister_service(mds->mds_setattr_service);
2661         mds->mds_setattr_service = NULL;
2662 err_thread:
2663         ptlrpc_unregister_service(mds->mds_service);
2664         mds->mds_service = NULL;
2665 err_lprocfs:
2666         lprocfs_obd_cleanup(obd);
2667         return rc;
2668 }
2669
2670 static int mdt_cleanup(struct obd_device *obd)
2671 {
2672         struct mds_obd *mds = &obd->u.mds;
2673         ENTRY;
2674
2675         ping_evictor_stop();
2676
2677         down(&mds->mds_health_sem);
2678         ptlrpc_unregister_service(mds->mds_readpage_service);
2679         ptlrpc_unregister_service(mds->mds_setattr_service);
2680         ptlrpc_unregister_service(mds->mds_service);
2681         mds->mds_readpage_service = NULL;
2682         mds->mds_setattr_service = NULL;
2683         mds->mds_service = NULL;
2684         up(&mds->mds_health_sem);
2685
2686         lprocfs_obd_cleanup(obd);
2687
2688         RETURN(0);
2689 }
2690
2691 static int mdt_health_check(struct obd_device *obd)
2692 {
2693         struct mds_obd *mds = &obd->u.mds;
2694         int rc = 0;
2695
2696         down(&mds->mds_health_sem);
2697         rc |= ptlrpc_service_health_check(mds->mds_readpage_service);
2698         rc |= ptlrpc_service_health_check(mds->mds_setattr_service);
2699         rc |= ptlrpc_service_health_check(mds->mds_service);
2700         up(&mds->mds_health_sem);
2701
2702         /*
2703          * health_check to return 0 on healthy
2704          * and 1 on unhealthy.
2705          */
2706         if(rc != 0)
2707                 rc = 1;
2708
2709         return rc;
2710 }
2711
2712 static struct dentry *mds_lvfs_fid2dentry(__u64 id, __u32 gen, __u64 gr,
2713                                           void *data)
2714 {
2715         struct obd_device *obd = data;
2716         struct ll_fid fid;
2717         fid.id = id;
2718         fid.generation = gen;
2719         return mds_fid2dentry(&obd->u.mds, &fid, NULL);
2720 }
2721
2722 static int mds_health_check(struct obd_device *obd)
2723 {
2724         struct obd_device_target *odt = &obd->u.obt;
2725 #ifdef USE_HEALTH_CHECK_WRITE
2726         struct mds_obd *mds = &obd->u.mds;
2727 #endif
2728         int rc = 0;
2729
2730         if (odt->obt_sb->s_flags & MS_RDONLY)
2731                 rc = 1;
2732
2733 #ifdef USE_HEALTH_CHECK_WRITE
2734         LASSERT(mds->mds_health_check_filp != NULL);
2735         rc |= !!lvfs_check_io_health(obd, mds->mds_health_check_filp);
2736 #endif
2737         return rc;
2738 }
2739
2740 static int mds_process_config(struct obd_device *obd, obd_count len, void *buf)
2741 {
2742         struct lustre_cfg *lcfg = buf;
2743         struct lprocfs_static_vars lvars;
2744         int rc;
2745
2746         lprocfs_mds_init_vars(&lvars);
2747
2748         rc = class_process_proc_param(PARAM_MDT, lvars.obd_vars, lcfg, obd);
2749         return(rc);
2750 }
2751
2752 struct lvfs_callback_ops mds_lvfs_ops = {
2753         l_fid2dentry:     mds_lvfs_fid2dentry,
2754 };
2755
2756 /* use obd ops to offer management infrastructure */
2757 static struct obd_ops mds_obd_ops = {
2758         .o_owner           = THIS_MODULE,
2759         .o_connect         = mds_connect,
2760         .o_reconnect       = mds_reconnect,
2761         .o_init_export     = mds_init_export,
2762         .o_destroy_export  = mds_destroy_export,
2763         .o_disconnect      = mds_disconnect,
2764         .o_setup           = mds_setup,
2765         .o_precleanup      = mds_precleanup,
2766         .o_cleanup         = mds_cleanup,
2767         .o_postrecov       = mds_postrecov,
2768         .o_statfs          = mds_obd_statfs,
2769         .o_iocontrol       = mds_iocontrol,
2770         .o_create          = mds_obd_create,
2771         .o_destroy         = mds_obd_destroy,
2772         .o_llog_init       = mds_llog_init,
2773         .o_llog_finish     = mds_llog_finish,
2774         .o_notify          = mds_notify,
2775         .o_health_check    = mds_health_check,
2776         .o_process_config  = mds_process_config,
2777 };
2778
2779 static struct obd_ops mdt_obd_ops = {
2780         .o_owner           = THIS_MODULE,
2781         .o_setup           = mdt_setup,
2782         .o_cleanup         = mdt_cleanup,
2783         .o_health_check    = mdt_health_check,
2784 };
2785
2786 quota_interface_t *mds_quota_interface_ref;
2787 extern quota_interface_t mds_quota_interface;
2788
2789 static __attribute__((unused)) int __init mds_init(void)
2790 {
2791         int rc;
2792         struct lprocfs_static_vars lvars;
2793
2794         request_module("lquota");
2795         mds_quota_interface_ref = PORTAL_SYMBOL_GET(mds_quota_interface);
2796         rc = lquota_init(mds_quota_interface_ref);
2797         if (rc) {
2798                 if (mds_quota_interface_ref)
2799                         PORTAL_SYMBOL_PUT(mds_quota_interface);
2800                 return rc;
2801         }
2802         init_obd_quota_ops(mds_quota_interface_ref, &mds_obd_ops);
2803
2804         lprocfs_mds_init_vars(&lvars);
2805         class_register_type(&mds_obd_ops, NULL,
2806                             lvars.module_vars, LUSTRE_MDS_NAME, NULL);
2807         lprocfs_mds_init_vars(&lvars);
2808         mdt_obd_ops = mdt_obd_ops; //make compiler happy
2809 //        class_register_type(&mdt_obd_ops, NULL,
2810 //                            lvars.module_vars, LUSTRE_MDT_NAME, NULL);
2811
2812         return 0;
2813 }
2814
2815 static __attribute__((unused)) void /*__exit*/ mds_exit(void)
2816 {
2817         lquota_exit(mds_quota_interface_ref);
2818         if (mds_quota_interface_ref)
2819                 PORTAL_SYMBOL_PUT(mds_quota_interface);
2820
2821         class_unregister_type(LUSTRE_MDS_NAME);
2822 //        class_unregister_type(LUSTRE_MDT_NAME);
2823 }
2824 /*mds still need lov setup here*/
2825 static int mds_cmd_setup(struct obd_device *obd, struct lustre_cfg *lcfg)
2826 {
2827         struct mds_obd *mds = &obd->u.mds;
2828         struct lvfs_run_ctxt saved;
2829         const char     *dev;
2830         struct vfsmount *mnt;
2831         struct lustre_sb_info *lsi;
2832         struct lustre_mount_info *lmi;
2833         struct dentry  *dentry;
2834         int rc = 0;
2835         ENTRY;
2836
2837         CDEBUG(D_INFO, "obd %s setup \n", obd->obd_name);
2838         if (strncmp(obd->obd_name, MDD_OBD_NAME, strlen(MDD_OBD_NAME)))
2839                 RETURN(0);
2840
2841         if (lcfg->lcfg_bufcount < 5) {
2842                 CERROR("invalid arg for setup %s\n", MDD_OBD_NAME);
2843                 RETURN(-EINVAL);
2844         }
2845         dev = lustre_cfg_string(lcfg, 4);
2846         lmi = server_get_mount(dev);
2847         LASSERT(lmi != NULL);
2848
2849         lsi = s2lsi(lmi->lmi_sb);
2850         mnt = lmi->lmi_mnt;
2851         /* FIXME: MDD LOV initialize objects.
2852          * we need only lmi here but not get mount
2853          * OSD did mount already, so put mount back
2854          */
2855         atomic_dec(&lsi->lsi_mounts);
2856         mntput(mnt);
2857
2858         obd->obd_fsops = fsfilt_get_ops(MT_STR(lsi->lsi_ldd));
2859         mds_init_ctxt(obd, mnt);
2860
2861         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
2862         dentry = simple_mkdir(current->fs->pwd, "OBJECTS", 0777, 1);
2863         if (IS_ERR(dentry)) {
2864                 rc = PTR_ERR(dentry);
2865                 CERROR("cannot create OBJECTS directory: rc = %d\n", rc);
2866                 GOTO(err_putfs, rc);
2867         }
2868         mds->mds_objects_dir = dentry;
2869
2870         dentry = lookup_one_len("__iopen__", current->fs->pwd,
2871                                 strlen("__iopen__"));
2872         if (IS_ERR(dentry)) {
2873                 rc = PTR_ERR(dentry);
2874                 CERROR("cannot lookup __iopen__ directory: rc = %d\n", rc);
2875                 GOTO(err_objects, rc);
2876         }
2877
2878         mds->mds_fid_de = dentry;
2879         if (!dentry->d_inode || is_bad_inode(dentry->d_inode)) {
2880                 rc = -ENOENT;
2881                 CERROR("__iopen__ directory has no inode? rc = %d\n", rc);
2882                 GOTO(err_fid, rc);
2883         }
2884         rc = mds_lov_init_objids(obd);
2885         if (rc != 0) {
2886                CERROR("cannot init lov objid rc = %d\n", rc);
2887                GOTO(err_fid, rc );
2888         }
2889
2890         rc = mds_lov_presetup(mds, lcfg);
2891         if (rc < 0)
2892                 GOTO(err_objects, rc);
2893
2894         /* Don't wait for mds_postrecov trying to clear orphans */
2895         obd->obd_async_recov = 1;
2896         rc = mds_postsetup(obd);
2897         /* Bug 11557 - allow async abort_recov start
2898            FIXME can remove most of this obd_async_recov plumbing
2899         obd->obd_async_recov = 0;
2900         */
2901
2902         if (rc)
2903                 GOTO(err_objects, rc);
2904
2905         mds->mds_max_mdsize = sizeof(struct lov_mds_md);
2906         mds->mds_max_cookiesize = sizeof(struct llog_cookie);
2907
2908 err_pop:
2909         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
2910         RETURN(rc);
2911 err_fid:
2912         dput(mds->mds_fid_de);
2913 err_objects:
2914         dput(mds->mds_objects_dir);
2915 err_putfs:
2916         fsfilt_put_ops(obd->obd_fsops);
2917         goto err_pop;
2918 }
2919
2920 static int mds_cmd_cleanup(struct obd_device *obd)
2921 {
2922         struct mds_obd *mds = &obd->u.mds;
2923         struct lvfs_run_ctxt saved;
2924         int rc = 0;
2925         ENTRY;
2926
2927         if (obd->obd_fail)
2928                 LCONSOLE_WARN("%s: shutting down for failover; client state "
2929                               "will be preserved.\n", obd->obd_name);
2930
2931         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
2932
2933         mds_lov_destroy_objids(obd);
2934
2935         if (mds->mds_objects_dir != NULL) {
2936                 l_dput(mds->mds_objects_dir);
2937                 mds->mds_objects_dir = NULL;
2938         }
2939
2940         shrink_dcache_parent(mds->mds_fid_de);
2941         dput(mds->mds_fid_de);
2942         LL_DQUOT_OFF(obd->u.obt.obt_sb);
2943         fsfilt_put_ops(obd->obd_fsops);
2944
2945         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
2946         RETURN(rc);
2947 }
2948
2949 #if 0
2950 static int mds_cmd_health_check(struct obd_device *obd)
2951 {
2952         return 0;
2953 }
2954 #endif
2955 static struct obd_ops mds_cmd_obd_ops = {
2956         .o_owner           = THIS_MODULE,
2957         .o_setup           = mds_cmd_setup,
2958         .o_cleanup         = mds_cmd_cleanup,
2959         .o_precleanup      = mds_precleanup,
2960         .o_create          = mds_obd_create,
2961         .o_destroy         = mds_obd_destroy,
2962         .o_llog_init       = mds_llog_init,
2963         .o_llog_finish     = mds_llog_finish,
2964         .o_notify          = mds_notify,
2965         .o_postrecov       = mds_postrecov,
2966         //   .o_health_check    = mds_cmd_health_check,
2967 };
2968
2969 static int __init mds_cmd_init(void)
2970 {
2971         struct lprocfs_static_vars lvars;
2972
2973         lprocfs_mds_init_vars(&lvars);
2974         class_register_type(&mds_cmd_obd_ops, NULL, lvars.module_vars,
2975                             LUSTRE_MDS_NAME, NULL);
2976
2977         return 0;
2978 }
2979
2980 static void /*__exit*/ mds_cmd_exit(void)
2981 {
2982         class_unregister_type(LUSTRE_MDS_NAME);
2983 }
2984
2985 MODULE_AUTHOR("Cluster File Systems, Inc. <info@clusterfs.com>");
2986 MODULE_DESCRIPTION("Lustre Metadata Server (MDS)");
2987 MODULE_LICENSE("GPL");
2988
2989 module_init(mds_cmd_init);
2990 module_exit(mds_cmd_exit);