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