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