Whamcloud - gitweb
land b_hd_sec_client_oss onto HEAD.
[fs/lustre-release.git] / lustre / mdc / mdc_request.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * Copyright (C) 2001-2004 Cluster File Systems, Inc.
5  *
6  *   This file is part of Lustre, http://www.sf.net/projects/lustre/
7  *
8  *   Lustre is free software; you can redistribute it and/or
9  *   modify it under the terms of version 2 of the GNU General Public
10  *   License as published by the Free Software Foundation.
11  *
12  *   Lustre is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *   GNU General Public License for more details.
16  *
17  *   You should have received a copy of the GNU General Public License
18  *   along with Lustre; if not, write to the Free Software
19  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  */
21
22 #ifndef EXPORT_SYMTAB
23 # define EXPORT_SYMTAB
24 #endif
25 #define DEBUG_SUBSYSTEM S_MDC
26
27 #ifdef __KERNEL__
28 # include <linux/module.h>
29 # include <linux/pagemap.h>
30 # include <linux/miscdevice.h>
31 # include <linux/init.h>
32 #else
33 # include <liblustre.h>
34 #endif
35
36 #include <linux/obd_class.h>
37 #include <linux/lustre_mds.h>
38 #include <linux/lustre_dlm.h>
39 #include <linux/lustre_sec.h>
40 #include <linux/lprocfs_status.h>
41 #include <linux/lustre_acl.h>
42 #include "mdc_internal.h"
43
44 #define REQUEST_MINOR 244
45
46 static int mdc_cleanup(struct obd_device *obd, int flags);
47
48 extern int mds_queue_req(struct ptlrpc_request *);
49 /* Helper that implements most of mdc_getstatus and signal_completed_replay. */
50 /* XXX this should become mdc_get_info("key"), sending MDS_GET_INFO RPC */
51 static int send_getstatus(struct obd_import *imp, struct lustre_id *rootid,
52                           int level, int msg_flags)
53 {
54         struct ptlrpc_request *req;
55         struct mds_body *body;
56         int rc, size[2] = {0, sizeof(*body)};
57         ENTRY;
58
59         //size[0] = lustre_secdesc_size();
60
61         req = ptlrpc_prep_req(imp, LUSTRE_MDS_VERSION, MDS_GETSTATUS,
62                               2, size, NULL);
63         if (!req)
64                 GOTO(out, rc = -ENOMEM);
65
66         //lustre_pack_secdesc(req, size[0]);
67
68         body = lustre_msg_buf(req->rq_reqmsg, MDS_REQ_REC_OFF, sizeof (*body));
69         req->rq_send_state = level;
70         req->rq_replen = lustre_msg_size(1, &size[1]);
71
72         req->rq_reqmsg->flags |= msg_flags;
73         rc = ptlrpc_queue_wait(req);
74
75         if (!rc) {
76                 body = lustre_swab_repbuf (req, 0, sizeof (*body),
77                                            lustre_swab_mds_body);
78                 if (body == NULL) {
79                         CERROR ("Can't extract mds_body\n");
80                         GOTO (out, rc = -EPROTO);
81                 }
82
83                 memcpy(rootid, &body->id1, sizeof(*rootid));
84
85                 CDEBUG(D_NET, "root ino="LPU64", last_committed="LPU64
86                        ", last_xid="LPU64"\n", rootid->li_stc.u.e3s.l3s_ino,
87                        req->rq_repmsg->last_committed, req->rq_repmsg->last_xid);
88         }
89
90         EXIT;
91  out:
92         ptlrpc_req_finished(req);
93         return rc;
94 }
95
96 /* This should be mdc_get_info("rootid") */
97 int mdc_getstatus(struct obd_export *exp, struct lustre_id *rootid)
98 {
99         return send_getstatus(class_exp2cliimp(exp), rootid,
100                               LUSTRE_IMP_FULL, 0);
101 }
102
103 int mdc_getattr_common(struct obd_export *exp, unsigned int ea_size,
104                        struct ptlrpc_request *req)
105 {
106         struct mds_body *body, *reqbody;
107         void            *eadata;
108         int              rc;
109         int              repsize[4] = {sizeof(*body)};
110         int              bufcount = 1;
111         ENTRY;
112
113         /* request message already built */
114
115         if (ea_size != 0) {
116                 repsize[bufcount++] = ea_size;
117                 CDEBUG(D_INODE, "reserved %u bytes for MD/symlink in packet\n",
118                        ea_size);
119         }
120
121         reqbody = lustre_msg_buf(req->rq_reqmsg, 1, sizeof(*reqbody));
122
123         if (reqbody->valid & OBD_MD_FLACL_ACCESS) {
124                 repsize[bufcount++] = 4;
125                 repsize[bufcount++] = xattr_acl_size(LL_ACL_MAX_ENTRIES);
126         }
127
128         req->rq_replen = lustre_msg_size(bufcount, repsize);
129
130         mdc_get_rpc_lock(exp->exp_obd->u.cli.cl_rpc_lock, NULL);
131         rc = ptlrpc_queue_wait(req);
132         mdc_put_rpc_lock(exp->exp_obd->u.cli.cl_rpc_lock, NULL);
133         if (rc != 0)
134                 RETURN (rc);
135
136         body = lustre_swab_repbuf (req, 0, sizeof (*body),
137                                    lustre_swab_mds_body);
138         if (body == NULL) {
139                 CERROR ("Can't unpack mds_body\n");
140                 RETURN (-EPROTO);
141         }
142
143         CDEBUG(D_NET, "mode: %o\n", body->mode);
144
145         LASSERT_REPSWAB (req, 1);
146
147         /* Skip the check if getxattr/listxattr are called with no buffers */
148         if ((reqbody->valid & (OBD_MD_FLEA | OBD_MD_FLEALIST)) &&
149             (reqbody->eadatasize != 0)){
150                 if (body->eadatasize != 0) {
151                 /* reply indicates presence of eadata; check it's there... */
152                         eadata = lustre_msg_buf (req->rq_repmsg, 1,
153                                                  body->eadatasize);
154                         if (eadata == NULL) {
155                                 CERROR ("Missing/short eadata\n");
156                                 RETURN (-EPROTO);
157                         }
158                  }
159          }
160
161         RETURN (0);
162 }
163
164 static int mdc_cancel_unused(struct obd_export *exp,
165                              struct lov_stripe_md *lsm, 
166                              int flags, void *opaque)
167 {
168         struct obd_device *obd = class_exp2obd(exp);
169
170         ENTRY;
171         RETURN(ldlm_cli_cancel_unused(obd->obd_namespace,
172                                       NULL, flags, opaque));
173 }
174
175 int mdc_getattr(struct obd_export *exp, struct lustre_id *id,
176                 __u64 valid, const char *ea_name, int ea_namelen,
177                 unsigned int ea_size, struct ptlrpc_request **request)
178 {
179         struct ptlrpc_request *req;
180         struct mds_body *body;
181         int bufcount = 2;
182         int size[3] = {0, sizeof(*body)};
183         int rc;
184         ENTRY;
185
186         /* XXX do we need to make another request here?  We just did a getattr
187          *     to do the lookup in the first place.
188          */
189         size[0] = lustre_secdesc_size();
190
191         LASSERT((ea_name != NULL) == (ea_namelen != 0));
192         if (valid & (OBD_MD_FLEA | OBD_MD_FLEALIST)) {
193                 size[bufcount] = ea_namelen;
194                 bufcount++;
195         }
196
197         req = ptlrpc_prep_req(class_exp2cliimp(exp), LUSTRE_MDS_VERSION,
198                               MDS_GETATTR, bufcount, size, NULL);
199         if (!req)
200                 GOTO(out, rc = -ENOMEM);
201
202         lustre_pack_secdesc(req, size[0]);
203
204         body = lustre_msg_buf(req->rq_reqmsg, MDS_REQ_REC_OFF, sizeof (*body));
205         memcpy(&body->id1, id, sizeof(*id));
206         body->valid = valid;
207         body->eadatasize = ea_size;
208
209
210         if (valid & OBD_MD_FLEA) {
211                 LASSERT(strnlen(ea_name, ea_namelen) == (ea_namelen - 1));
212                 memcpy(lustre_msg_buf(req->rq_reqmsg, 2, ea_namelen),
213                        ea_name, ea_namelen);
214         }
215
216         rc = mdc_getattr_common(exp, ea_size, req);
217         if (rc != 0) {
218                 ptlrpc_req_finished (req);
219                 req = NULL;
220         }
221  out:
222         *request = req;
223         RETURN (rc);
224 }
225
226 int mdc_getattr_lock(struct obd_export *exp, struct lustre_id *id,
227                      char *filename, int namelen, __u64 valid,
228                      unsigned int ea_size, struct ptlrpc_request **request)
229 {
230         struct ptlrpc_request *req;
231         struct mds_body *body;
232         int rc, size[3] = {0, sizeof(*body), namelen};
233         ENTRY;
234
235         size[0] = lustre_secdesc_size();
236
237         req = ptlrpc_prep_req(class_exp2cliimp(exp), LUSTRE_MDS_VERSION,
238                               MDS_GETATTR_LOCK, 3, size, NULL);
239         if (!req)
240                 GOTO(out, rc = -ENOMEM);
241
242         lustre_pack_secdesc(req, size[0]);
243
244         body = lustre_msg_buf(req->rq_reqmsg, MDS_REQ_REC_OFF, sizeof (*body));
245         memcpy(&body->id1, id, sizeof(*id));
246         body->valid = valid;
247         body->eadatasize = ea_size;
248
249         if (filename != NULL) {
250                 LASSERT (strnlen (filename, namelen) == namelen - 1);
251                 memcpy(lustre_msg_buf(req->rq_reqmsg, 2, namelen),
252                        filename, namelen);
253         } else {
254                 LASSERT(namelen == 1);
255         }
256
257         rc = mdc_getattr_common(exp, ea_size, req);
258         if (rc != 0) {
259                 ptlrpc_req_finished (req);
260                 req = NULL;
261         }
262  out:
263         *request = req;
264         RETURN(rc);
265 }
266
267 /* This should be called with both the request and the reply still packed. */
268 int mdc_store_inode_generation(struct obd_export *exp,
269                                struct ptlrpc_request *req,
270                                int reqoff, int repoff)
271 {
272         struct mds_rec_create *rec =
273                 lustre_msg_buf(req->rq_reqmsg, reqoff, sizeof(*rec));
274         struct mds_body *body =
275                 lustre_msg_buf(req->rq_repmsg, repoff, sizeof(*body));
276
277         LASSERT (rec != NULL);
278         LASSERT (body != NULL);
279
280         memcpy(&rec->cr_replayid, &body->id1, sizeof(rec->cr_replayid));
281         DEBUG_REQ(D_HA, req, "storing generation for ino "DLID4,
282                   OLID4(&rec->cr_replayid));
283         return 0;
284 }
285
286 int mdc_req2lustre_md(struct obd_export *exp_lmv, struct ptlrpc_request *req, 
287                       unsigned int offset, struct obd_export *exp_lov, 
288                       struct lustre_md *md)
289 {
290         void *buf;
291         int rc = 0;
292         int size, acl_off;
293         struct posix_acl *acl;
294         struct lov_mds_md *lmm;
295         ENTRY;
296
297         LASSERT(md != NULL);
298         memset(md, 0, sizeof(*md));
299
300         md->body = lustre_msg_buf(req->rq_repmsg, offset,
301                                   sizeof(*md->body));
302         if (!md->body)
303                 RETURN(-ENOMEM);
304
305         LASSERT_REPSWABBED(req, offset);
306
307         if (!(md->body->valid & OBD_MD_FLEASIZE) && 
308             !(md->body->valid & OBD_MD_FLDIREA))
309                 RETURN(0);
310
311         if (S_ISREG(md->body->mode)) {
312                 if (md->body->eadatasize == 0) {
313                         CERROR("invalid EA size (0) is detected\n");
314                         RETURN(-EPROTO);
315                 }
316
317                 lmm = lustre_msg_buf(req->rq_repmsg, offset + 1,
318                                      md->body->eadatasize);
319                 if (!lmm)
320                         RETURN(-EINVAL);
321
322                 LASSERT(exp_lov != NULL);
323                 
324                 rc = obd_unpackmd(exp_lov, &md->lsm, lmm,
325                                   md->body->eadatasize);
326                 if (rc > 0) {
327                         LASSERT(rc >= sizeof(*md->lsm));
328                         rc = 0;
329                 }
330         } else if (S_ISDIR(md->body->mode)) {
331                 /* dir can be non-splitted */
332                 if (md->body->eadatasize == 0)
333                         RETURN(0);
334
335                 lmm = lustre_msg_buf(req->rq_repmsg, offset + 1,
336                                      md->body->eadatasize);
337                 if (!lmm)
338                         RETURN(-EINVAL);
339
340                 if (md->body->valid & OBD_MD_MEA) {
341                         LASSERT(exp_lmv != NULL);
342                 
343                         rc = obd_unpackmd(exp_lmv, (void *)&md->mea,
344                                           lmm, md->body->eadatasize);
345                         if (rc > 0) {
346                                 LASSERT(rc >= sizeof(*md->mea));
347                                 rc = 0;
348                         }
349                 }
350         } else {
351                 LASSERT(S_ISCHR(md->body->mode) ||
352                         S_ISBLK(md->body->mode) ||
353                         S_ISFIFO(md->body->mode)||
354                         S_ISLNK(md->body->mode) ||
355                         S_ISSOCK(md->body->mode));
356         }
357
358         acl_off = (md->body->valid & OBD_MD_FLEASIZE) ? (offset + 2) :
359                   (offset + 1);
360
361         if (md->body->valid & OBD_MD_FLACL_ACCESS) {
362                 size = le32_to_cpu(*(__u32 *) lustre_msg_buf(req->rq_repmsg, 
363                                    acl_off, 4));
364                 buf = lustre_msg_buf(req->rq_repmsg, acl_off + 1, size);
365
366                 acl = posix_acl_from_xattr(buf, size);
367                 if (IS_ERR(acl)) {
368                         rc = PTR_ERR(acl);
369                         CERROR("convert xattr to acl failed: %d\n", rc);
370                         RETURN(rc);
371                 } else if (acl) {
372                         rc = posix_acl_valid(acl);
373                         if (rc) {
374                                 CERROR("acl valid error: %d\n", rc);
375                                 posix_acl_release(acl);
376                                 RETURN(rc);
377                         }
378                 }
379
380                 md->acl_access = acl;
381         }
382         RETURN(rc);
383 }
384
385 static void mdc_commit_open(struct ptlrpc_request *req)
386 {
387         struct mdc_open_data *mod = req->rq_cb_data;
388         if (mod == NULL)
389                 return;
390
391         if (mod->mod_close_req != NULL)
392                 mod->mod_close_req->rq_cb_data = NULL;
393
394         if (mod->mod_och != NULL)
395                 mod->mod_och->och_mod = NULL;
396
397         OBD_FREE(mod, sizeof(*mod));
398         req->rq_cb_data = NULL;
399 }
400
401 static void mdc_replay_open(struct ptlrpc_request *req)
402 {
403         struct mdc_open_data *mod = req->rq_cb_data;
404         struct obd_client_handle *och;
405         struct ptlrpc_request *close_req;
406         struct lustre_handle old;
407         struct mds_body *body;
408         ENTRY;
409
410         body = lustre_swab_repbuf(req, 1, sizeof(*body), lustre_swab_mds_body);
411         LASSERT (body != NULL);
412
413         if (mod == NULL) {
414                 DEBUG_REQ(D_ERROR, req,
415                           "can't properly replay without open data");
416                 EXIT;
417                 return;
418         }
419
420         och = mod->mod_och;
421         if (och != NULL) {
422                 struct lustre_handle *file_fh;
423                 LASSERT(och->och_magic == OBD_CLIENT_HANDLE_MAGIC);
424                 file_fh = &och->och_fh;
425                 CDEBUG(D_HA, "updating handle from "LPX64" to "LPX64"\n",
426                        file_fh->cookie, body->handle.cookie);
427                 memcpy(&old, file_fh, sizeof(old));
428                 memcpy(file_fh, &body->handle, sizeof(*file_fh));
429         }
430
431         close_req = mod->mod_close_req;
432         if (close_req != NULL) {
433                 struct mds_body *close_body;
434                 LASSERT(close_req->rq_reqmsg->opc == MDS_CLOSE);
435                 close_body = lustre_msg_buf(close_req->rq_reqmsg,
436                                             MDS_REQ_REC_OFF,
437                                             sizeof(*close_body));
438                 if (och != NULL)
439                         LASSERT(!memcmp(&old, &close_body->handle, sizeof old));
440                 DEBUG_REQ(D_HA, close_req, "updating close body with new fh");
441                 memcpy(&close_body->handle, &body->handle,
442                        sizeof(close_body->handle));
443         }
444
445         EXIT;
446 }
447
448 int mdc_set_open_replay_data(struct obd_export *exp,
449                              struct obd_client_handle *och,
450                              struct ptlrpc_request *open_req)
451 {
452         struct mdc_open_data *mod;
453         struct mds_rec_create *rec;
454         struct mds_body *body;
455
456         rec = lustre_msg_buf(open_req->rq_reqmsg, MDS_REQ_INTENT_REC_OFF,
457                              sizeof(*rec));
458         body = lustre_msg_buf(open_req->rq_repmsg, 1, sizeof(*body));
459
460         LASSERT(rec != NULL);
461         /* outgoing messages always in my byte order */
462         LASSERT(body != NULL);
463         /* incoming message in my byte order (it's been swabbed) */
464         LASSERT_REPSWABBED(open_req, 1);
465
466         OBD_ALLOC(mod, sizeof(*mod));
467         if (mod == NULL) {
468                 DEBUG_REQ(D_ERROR, open_req, "can't allocate mdc_open_data");
469                 return 0;
470         }
471
472         och->och_mod = mod;
473         mod->mod_och = och;
474         mod->mod_open_req = open_req;
475
476         memcpy(&rec->cr_replayid, &body->id1, sizeof rec->cr_replayid);
477         open_req->rq_replay_cb = mdc_replay_open;
478         open_req->rq_commit_cb = mdc_commit_open;
479         open_req->rq_cb_data = mod;
480         DEBUG_REQ(D_HA, open_req, "set up replay data");
481         return 0;
482 }
483
484 int mdc_clear_open_replay_data(struct obd_export *exp,
485                                struct obd_client_handle *och)
486 {
487         struct mdc_open_data *mod = och->och_mod;
488
489         /* Don't free the structure now (it happens in mdc_commit_open, after
490          * we're sure we won't need to fix up the close request in the future),
491          * but make sure that replay doesn't poke at the och, which is about to
492          * be freed. */
493         LASSERT(mod != LP_POISON);
494         if (mod != NULL)
495                 mod->mod_och = NULL;
496         och->och_mod = NULL;
497         return 0;
498 }
499
500 static void mdc_commit_close(struct ptlrpc_request *req)
501 {
502         struct mdc_open_data *mod = req->rq_cb_data;
503         struct ptlrpc_request *open_req;
504         struct obd_import *imp = req->rq_import;
505
506         DEBUG_REQ(D_HA, req, "close req committed");
507         if (mod == NULL)
508                 return;
509
510         mod->mod_close_req = NULL;
511         req->rq_cb_data = NULL;
512         req->rq_commit_cb = NULL;
513
514         open_req = mod->mod_open_req;
515         LASSERT(open_req != NULL);
516         LASSERT(open_req != LP_POISON);
517         LASSERT(open_req->rq_type != LI_POISON);
518
519         DEBUG_REQ(D_HA, open_req, "open req balanced");
520         if (open_req->rq_transno == 0) {
521                 DEBUG_REQ(D_ERROR, open_req, "BUG 3892  open");
522                 DEBUG_REQ(D_ERROR, req, "BUG 3892 close");
523                 LASSERTF(open_req->rq_transno != 0, "BUG 3892");
524         }
525         LASSERT(open_req->rq_import == imp);
526
527         /* We no longer want to preserve this for transno-unconditional
528          * replay. */
529         spin_lock(&open_req->rq_lock);
530         open_req->rq_replay = 0;
531         spin_unlock(&open_req->rq_lock);
532 }
533
534 static int mdc_close_interpret(struct ptlrpc_request *req,
535                                void *data, int rc)
536 {
537         union ptlrpc_async_args *aa = data;
538         struct mdc_rpc_lock *close_lock;
539         struct obd_device *obd = aa->pointer_arg[1];
540         unsigned long flags;
541
542         spin_lock_irqsave(&req->rq_lock, flags);
543         close_lock = aa->pointer_arg[0];
544         aa->pointer_arg[0] = NULL;
545         spin_unlock_irqrestore (&req->rq_lock, flags);
546
547         if (close_lock == NULL) {
548                 CERROR("called with NULL close_lock\n");
549         } else {
550                 mdc_put_rpc_lock(close_lock, NULL);
551                 LASSERTF(close_lock == obd->u.cli.cl_close_lock, "%p != %p\n",
552                          close_lock, obd->u.cli.cl_close_lock);
553         }
554         wake_up(&req->rq_reply_waitq);
555         RETURN(rc);
556 }
557
558 /* We can't use ptlrpc_check_reply, because we don't want to wake up for
559  * anything but a reply or an error. */
560 static int mdc_close_check_reply(struct ptlrpc_request *req)
561 {
562         int rc = 0;
563         unsigned long flags;
564
565         spin_lock_irqsave(&req->rq_lock, flags);
566         if (req->rq_async_args.pointer_arg[0] == NULL)
567                 rc = 1;
568         spin_unlock_irqrestore (&req->rq_lock, flags);
569         return rc;
570 }
571
572 int mdc_close(struct obd_export *exp, struct obdo *oa,
573               struct obd_client_handle *och,
574               struct ptlrpc_request **request)
575 {
576         struct obd_device *obd = class_exp2obd(exp);
577         struct obd_import *imp = class_exp2cliimp(exp);
578         int reqsize[3] = {0, sizeof(struct mds_body),
579                           obd->u.cli.cl_max_mds_cookiesize};
580         int rc, repsize[3] = {sizeof(struct mds_body),
581                               obd->u.cli.cl_max_mds_easize,
582                               obd->u.cli.cl_max_mds_cookiesize};
583         struct ptlrpc_request *req;
584         struct mdc_open_data *mod;
585         struct l_wait_info lwi;
586         ENTRY;
587
588         if (imp->imp_connection == NULL) {
589                 CERROR("request on not connected import %s\n",
590                         imp->imp_obd->obd_name);
591                 RETURN(-EIO);
592         }
593
594         req = ptlrpc_prep_req(class_exp2cliimp(exp), LUSTRE_MDS_VERSION,
595                               MDS_CLOSE, 3, reqsize, NULL);
596         if (req == NULL)
597                 GOTO(out, rc = -ENOMEM);
598
599         //reqsize[0] = lustre_secdesc_size();
600         //lustre_pack_secdesc(req, reqsize[0]);
601
602         /* Ensure that this close's handle is fixed up during replay. */
603         LASSERT(och != NULL);
604         mod = och->och_mod;
605         if (likely(mod != NULL)) {
606                 mod->mod_close_req = req;
607                 LASSERT(mod->mod_open_req->rq_type != LI_POISON);
608                 DEBUG_REQ(D_HA, mod->mod_open_req, "matched open");
609         } else {
610                 CDEBUG(D_HA, "couldn't find open req; "
611                        "expecting close error\n");
612         }
613
614         mdc_close_pack(req, 1, oa, oa->o_valid, och);
615
616         req->rq_replen = lustre_msg_size(3, repsize);
617         req->rq_commit_cb = mdc_commit_close;
618         LASSERT(req->rq_cb_data == NULL);
619         req->rq_cb_data = mod;
620
621         /* We hand a ref to the rpcd here, so we need another one of our own. */
622         ptlrpc_request_addref(req);
623
624         mdc_get_rpc_lock(obd->u.cli.cl_close_lock, NULL);
625         req->rq_interpret_reply = mdc_close_interpret;
626         req->rq_async_args.pointer_arg[0] = obd->u.cli.cl_close_lock;
627         req->rq_async_args.pointer_arg[1] = obd;
628         ptlrpcd_add_req(req);
629
630         lwi = LWI_TIMEOUT_INTR(MAX(req->rq_timeout * HZ, 1), NULL, NULL, NULL);
631         rc = l_wait_event(req->rq_reply_waitq, mdc_close_check_reply(req),
632                           &lwi);
633         if (req->rq_repmsg == NULL) {
634                 CDEBUG(D_HA, "request failed to send: %p, %d\n", req,
635                        req->rq_status);
636                 if (rc == 0)
637                         rc = req->rq_status ? req->rq_status : -EIO;
638         } else if (rc == 0) {
639                 rc = req->rq_repmsg->status;
640                 if (req->rq_repmsg->type == PTL_RPC_MSG_ERR) {
641                         DEBUG_REQ(D_ERROR, req, "type == PTL_RPC_MSG_ERR, "
642                                   "err = %d", rc);
643                         if (rc > 0)
644                                 rc = -rc;
645                 } else {
646                         if (mod == NULL)
647                                 CERROR("Unexpected: can't find mdc_open_data, but "
648                                        "close succeeded. Please tell CFS.\n");
649                         if (!lustre_swab_repbuf(req, 0, sizeof(struct mds_body),
650                                                 lustre_swab_mds_body))
651                         {
652                                 CERROR("Error unpacking mds_body\n");
653                                 rc = -EPROTO;
654                         }
655                 }
656         }
657         if (req->rq_async_args.pointer_arg[0] != NULL) {
658                 CERROR("returned without dropping close lock: rc %d, "
659                        "dropping it now\n", rc);
660                 mdc_close_interpret(req, &req->rq_async_args, rc);
661         }
662
663         EXIT;
664  out:
665         *request = req;
666         return rc;
667 }
668
669 int mdc_done_writing(struct obd_export *exp, struct obdo *obdo)
670 {
671         struct ptlrpc_request *req;
672         struct mds_body *body;
673         int rc, size[2] = {0, sizeof(*body)};
674         ENTRY;
675
676         size[0] = lustre_secdesc_size();
677
678         req = ptlrpc_prep_req(class_exp2cliimp(exp), LUSTRE_MDS_VERSION,
679                               MDS_DONE_WRITING, 2, size, NULL);
680         if (req == NULL)
681                 RETURN(-ENOMEM);
682
683         lustre_pack_secdesc(req, size[0]);
684
685         body = lustre_msg_buf(req->rq_reqmsg, MDS_REQ_REC_OFF, 
686                               sizeof(*body));
687         
688         mdc_pack_id(&body->id1, obdo->o_id, 0, obdo->o_mode, 
689                     obdo->o_mds, obdo->o_fid);
690         
691         body->size = obdo->o_size;
692         body->blocks = obdo->o_blocks;
693         body->flags = obdo->o_flags;
694         body->valid = obdo->o_valid;
695
696         req->rq_replen = lustre_msg_size(1, &size[1]);
697
698         rc = ptlrpc_queue_wait(req);
699         ptlrpc_req_finished(req);
700         RETURN(rc);
701 }
702
703 int mdc_readpage(struct obd_export *exp,
704                  struct lustre_id *id,
705                  __u64 offset, struct page *page,
706                  struct ptlrpc_request **request)
707 {
708         struct obd_import *imp = class_exp2cliimp(exp);
709         struct ptlrpc_request *req = NULL;
710         struct ptlrpc_bulk_desc *desc = NULL;
711         struct mds_body *body;
712         int rc, size[2] = {0, sizeof(*body)};
713         ENTRY;
714
715         CDEBUG(D_INODE, "inode: %ld\n", (long)id->li_stc.u.e3s.l3s_ino);
716
717         size[0] = lustre_secdesc_size();
718
719         req = ptlrpc_prep_req(imp, LUSTRE_MDS_VERSION, MDS_READPAGE,
720                               2, size, NULL);
721         if (req == NULL)
722                 GOTO(out, rc = -ENOMEM);
723         /* XXX FIXME bug 249 */
724         req->rq_request_portal = MDS_READPAGE_PORTAL;
725
726         lustre_pack_secdesc(req, size[0]);
727
728         desc = ptlrpc_prep_bulk_imp(req, 1, BULK_PUT_SINK, MDS_BULK_PORTAL);
729         if (desc == NULL)
730                 GOTO(out, rc = -ENOMEM);
731         /* NB req now owns desc and will free it when it gets freed */
732
733         ptlrpc_prep_bulk_page(desc, page, 0, PAGE_CACHE_SIZE);
734         mdc_readdir_pack(req, 1, offset, PAGE_CACHE_SIZE, id);
735
736         req->rq_replen = lustre_msg_size(1, &size[1]);
737         rc = ptlrpc_queue_wait(req);
738
739         if (rc == 0) {
740                 body = lustre_swab_repbuf(req, 0, sizeof (*body),
741                                           lustre_swab_mds_body);
742                 if (body == NULL) {
743                         CERROR("Can't unpack mds_body\n");
744                         GOTO(out, rc = -EPROTO);
745                 }
746
747                 if (req->rq_bulk->bd_nob_transferred != PAGE_CACHE_SIZE) {
748                         CERROR ("Unexpected # bytes transferred: %d"
749                                 " (%ld expected)\n",
750                                 req->rq_bulk->bd_nob_transferred,
751                                 PAGE_CACHE_SIZE);
752                         GOTO (out, rc = -EPROTO);
753                 }
754         }
755
756         EXIT;
757  out:
758         *request = req;
759         return rc;
760 }
761
762 static int mdc_iocontrol(unsigned int cmd, struct obd_export *exp, int len,
763                          void *karg, void *uarg)
764 {
765         struct obd_device *obd = exp->exp_obd;
766         struct obd_ioctl_data *data = karg;
767         struct obd_import *imp = obd->u.cli.cl_import;
768         struct llog_ctxt *ctxt;
769         int rc;
770         ENTRY;
771
772 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
773         MOD_INC_USE_COUNT;
774 #else
775         if (!try_module_get(THIS_MODULE)) {
776                 CERROR("Can't get module. Is it alive?");
777                 return -EINVAL;
778         }
779 #endif
780         switch (cmd) {
781         case OBD_IOC_CLIENT_RECOVER:
782                 rc = ptlrpc_recover_import(imp, data->ioc_inlbuf1);
783                 if (rc < 0)
784                         GOTO(out, rc);
785                 GOTO(out, rc = 0);
786         case IOC_OSC_SET_ACTIVE:
787                 rc = ptlrpc_set_import_active(imp, data->ioc_offset);
788                 GOTO(out, rc);
789         case IOC_OSC_CTL_RECOVERY:
790                 rc = ptlrpc_import_control_recovery(imp, data->ioc_offset);
791                 GOTO(out, rc);
792         case OBD_IOC_PARSE: {
793                 ctxt = llog_get_context(&exp->exp_obd->obd_llogs,
794                                         LLOG_CONFIG_REPL_CTXT);
795                 rc = class_config_process_llog(ctxt, data->ioc_inlbuf1, NULL);
796                 GOTO(out, rc);
797         }
798 #ifdef __KERNEL__
799         case OBD_IOC_LLOG_INFO:
800         case OBD_IOC_LLOG_PRINT: {
801                 ctxt = llog_get_context(&obd->obd_llogs, LLOG_CONFIG_REPL_CTXT);
802                 rc = llog_ioctl(ctxt, cmd, data);
803
804                 GOTO(out, rc);
805         }
806 #endif
807         default:
808                 CERROR("mdc_ioctl(): unrecognised ioctl %#x\n", cmd);
809                 GOTO(out, rc = -ENOTTY);
810         }
811 out:
812 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
813         MOD_DEC_USE_COUNT;
814 #else
815         module_put(THIS_MODULE);
816 #endif
817
818         return rc;
819 }
820
821 int mdc_set_info(struct obd_export *exp, obd_count keylen,
822                  void *key, obd_count vallen, void *val)
823 {
824         int rc = -EINVAL;
825
826         if (keylen == strlen("initial_recov") &&
827             memcmp(key, "initial_recov", strlen("initial_recov")) == 0) {
828                 struct obd_import *imp = exp->exp_obd->u.cli.cl_import;
829                 if (vallen != sizeof(int))
830                         RETURN(-EINVAL);
831                 imp->imp_initial_recov = *(int *)val;
832                 CDEBUG(D_HA, "%s: set imp_no_init_recov = %d\n",
833                        exp->exp_obd->obd_name,
834                        imp->imp_initial_recov);
835                 RETURN(0);
836         } else if (keylen >= strlen("mds_type") &&
837                    strcmp(key, "mds_type") == 0) {
838                 struct ptlrpc_request *req;
839                 char *bufs[2] = {key, val};
840                 int rc, size[2] = {keylen, vallen};
841
842                 req = ptlrpc_prep_req(class_exp2cliimp(exp), LUSTRE_OBD_VERSION,
843                                       OST_SET_INFO, 2, size, bufs);
844                 if (req == NULL)
845                         RETURN(-ENOMEM);
846
847                 req->rq_replen = lustre_msg_size(0, NULL);
848                 rc = ptlrpc_queue_wait(req);
849                 ptlrpc_req_finished(req);
850                 RETURN(rc);
851         } else if (keylen >= strlen("inter_mds") && strcmp(key, "inter_mds") == 0) {
852                 struct obd_import *imp = class_exp2cliimp(exp);
853                 imp->imp_server_timeout = 1;
854                 CDEBUG(D_OTHER, "%s: timeout / 2\n", exp->exp_obd->obd_name);
855                 RETURN(0);
856         } else if (keylen == strlen("sec") &&
857                    memcmp(key, "sec", keylen) == 0) {
858                 struct client_obd *cli = &exp->exp_obd->u.cli;
859
860                 if (vallen == strlen("null") &&
861                     memcmp(val, "null", vallen) == 0) {
862                         cli->cl_sec_flavor = PTLRPC_SEC_NULL;
863                         cli->cl_sec_subflavor = 0;
864                         RETURN(0);
865                 }
866                 if (vallen == strlen("krb5i") &&
867                     memcmp(val, "krb5i", vallen) == 0) {
868                         cli->cl_sec_flavor = PTLRPC_SEC_GSS;
869                         cli->cl_sec_subflavor = PTLRPC_SEC_GSS_KRB5I;
870                         RETURN(0);
871                 }
872                 if (vallen == strlen("krb5p") &&
873                     memcmp(val, "krb5p", vallen) == 0) {
874                         cli->cl_sec_flavor = PTLRPC_SEC_GSS;
875                         cli->cl_sec_subflavor = PTLRPC_SEC_GSS_KRB5P;
876                         RETURN(0);
877                 }
878                 CERROR("unrecognized security type %s\n", (char*) val);
879                 rc = -EINVAL;
880         } else if (keylen == strlen("async") && memcmp(key, "async", keylen) == 0) {
881                 struct client_obd *cl = &exp->exp_obd->u.cli;
882                 if (vallen != sizeof(int))
883                         RETURN(-EINVAL);
884                 cl->cl_async = *(int *)val;
885                 CDEBUG(D_HA, "%s: set async = %d\n",
886                        exp->exp_obd->obd_name, cl->cl_async);
887                 RETURN(0);
888         }
889         RETURN(rc);
890 }
891
892 static int mdc_statfs(struct obd_device *obd, struct obd_statfs *osfs,
893                       unsigned long max_age)
894 {
895         struct obd_statfs *msfs;
896         struct ptlrpc_request *req;
897         int rc, size = sizeof(*msfs);
898         ENTRY;
899
900         /* We could possibly pass max_age in the request (as an absolute
901          * timestamp or a "seconds.usec ago") so the target can avoid doing
902          * extra calls into the filesystem if that isn't necessary (e.g.
903          * during mount that would help a bit).  Having relative timestamps
904          * is not so great if request processing is slow, while absolute
905          * timestamps are not ideal because they need time synchronization. */
906         req = ptlrpc_prep_req(obd->u.cli.cl_import, LUSTRE_MDS_VERSION,
907                               MDS_STATFS, 0, NULL, NULL);
908         if (!req)
909                 RETURN(-ENOMEM);
910
911         req->rq_replen = lustre_msg_size(1, &size);
912
913         mdc_get_rpc_lock(obd->u.cli.cl_rpc_lock, NULL);
914         rc = ptlrpc_queue_wait(req);
915         mdc_put_rpc_lock(obd->u.cli.cl_rpc_lock, NULL);
916
917         if (rc) {
918                 /* this can be LMV fake import, whcih is not connected. */
919                 if (!req->rq_import->imp_connection)
920                         memset(osfs, 0, sizeof(*osfs));
921                 GOTO(out, rc);
922         }
923
924         msfs = lustre_swab_repbuf(req, 0, sizeof(*msfs),
925                                   lustre_swab_obd_statfs);
926         if (msfs == NULL) {
927                 CERROR("Can't unpack obd_statfs\n");
928                 GOTO(out, rc = -EPROTO);
929         }
930
931         memcpy(osfs, msfs, sizeof (*msfs));
932         EXIT;
933 out:
934         ptlrpc_req_finished(req);
935         return rc;
936 }
937
938 static int mdc_pin(struct obd_export *exp, obd_id ino, __u32 gen, int type,
939                    struct obd_client_handle *handle, int flag)
940 {
941         struct ptlrpc_request *req;
942         struct mds_body *body;
943         int rc, size[2] = {0, sizeof(*body)};
944         ENTRY;
945
946         //size[0] = lustre_secdesc_size();
947
948         req = ptlrpc_prep_req(class_exp2cliimp(exp), LUSTRE_MDS_VERSION,
949                               MDS_PIN, 2, size, NULL);
950         if (req == NULL)
951                 RETURN(-ENOMEM);
952
953         //lustre_pack_secdesc(req, size[0]);
954
955         body = lustre_msg_buf(req->rq_reqmsg, 
956                               MDS_REQ_REC_OFF, sizeof(*body));
957
958         /* FIXME-UMKA: here should be also mdsnum and fid. */
959         mdc_pack_id(&body->id1, ino, gen, type, 0, 0);
960         body->flags = flag;
961
962         req->rq_replen = lustre_msg_size(1, &size[1]);
963
964         mdc_get_rpc_lock(exp->exp_obd->u.cli.cl_rpc_lock, NULL);
965         rc = ptlrpc_queue_wait(req);
966         mdc_put_rpc_lock(exp->exp_obd->u.cli.cl_rpc_lock, NULL);
967         if (rc) {
968                 CERROR("pin failed: %d\n", rc);
969                 ptlrpc_req_finished(req);
970                 RETURN(rc);
971         }
972
973         body = lustre_swab_repbuf(req, 0, sizeof(*body), lustre_swab_mds_body);
974         if (body == NULL) {
975                 ptlrpc_req_finished(req);
976                 RETURN(rc);
977         }
978
979         memcpy(&handle->och_fh, &body->handle, sizeof(body->handle));
980         handle->och_magic = OBD_CLIENT_HANDLE_MAGIC;
981
982         OBD_ALLOC(handle->och_mod, sizeof(*handle->och_mod));
983         if (handle->och_mod == NULL) {
984                 DEBUG_REQ(D_ERROR, req, "can't allocate mdc_open_data");
985                 RETURN(-ENOMEM);
986         }
987         handle->och_mod->mod_open_req = req; /* will be dropped by unpin */
988
989         RETURN(rc);
990 }
991
992 static int mdc_unpin(struct obd_export *exp,
993                      struct obd_client_handle *handle, int flag)
994 {
995         struct ptlrpc_request *req;
996         struct mds_body *body;
997         int rc, size[2] = {0, sizeof(*body)};
998         ENTRY;
999
1000         if (handle->och_magic != OBD_CLIENT_HANDLE_MAGIC)
1001                 RETURN(0);
1002
1003         //size[0] = lustre_secdesc_size();
1004
1005         req = ptlrpc_prep_req(class_exp2cliimp(exp), LUSTRE_MDS_VERSION,
1006                               MDS_CLOSE, 2, size, NULL);
1007         if (req == NULL)
1008                 RETURN(-ENOMEM);
1009
1010         //lustre_pack_secdesc(req, size[0]);
1011
1012         body = lustre_msg_buf(req->rq_reqmsg, MDS_REQ_REC_OFF, sizeof(*body));
1013         memcpy(&body->handle, &handle->och_fh, sizeof(body->handle));
1014         body->flags = flag;
1015
1016         req->rq_replen = lustre_msg_size(0, NULL);
1017         mdc_get_rpc_lock(exp->exp_obd->u.cli.cl_rpc_lock, NULL);
1018         rc = ptlrpc_queue_wait(req);
1019         mdc_put_rpc_lock(exp->exp_obd->u.cli.cl_rpc_lock, NULL);
1020
1021         if (rc != 0)
1022                 CERROR("unpin failed: %d\n", rc);
1023
1024         ptlrpc_req_finished(req);
1025         ptlrpc_req_finished(handle->och_mod->mod_open_req);
1026         OBD_FREE(handle->och_mod, sizeof(*handle->och_mod));
1027         RETURN(rc);
1028 }
1029
1030 int mdc_sync(struct obd_export *exp, struct lustre_id *id,
1031              struct ptlrpc_request **request)
1032 {
1033         struct ptlrpc_request *req;
1034         struct mds_body *body;
1035         int size[2] = {0, sizeof(*body)};
1036         int rc;
1037         ENTRY;
1038
1039         //size[0] = lustre_secdesc_size();
1040
1041         req = ptlrpc_prep_req(class_exp2cliimp(exp), LUSTRE_MDS_VERSION,
1042                               MDS_SYNC, 2, size, NULL);
1043         if (!req)
1044                 RETURN(rc = -ENOMEM);
1045
1046         //lustre_pack_secdesc(req, size[0]);
1047
1048         if (id) {
1049                 body = lustre_msg_buf(req->rq_reqmsg, MDS_REQ_REC_OFF,
1050                                       sizeof (*body));
1051                 memcpy(&body->id1, id, sizeof(*id));
1052         }
1053
1054         req->rq_replen = lustre_msg_size(1, &size[1]);
1055
1056         rc = ptlrpc_queue_wait(req);
1057         if (rc || request == NULL)
1058                 ptlrpc_req_finished(req);
1059         else
1060                 *request = req;
1061
1062         RETURN(rc);
1063 }
1064
1065 static int mdc_import_event(struct obd_device *obd, struct obd_import *imp,
1066                             enum obd_import_event event)
1067 {
1068         int rc = 0;
1069
1070         LASSERT(imp->imp_obd == obd);
1071
1072         switch (event) {
1073         case IMP_EVENT_DISCON: {
1074                 break;
1075         }
1076         case IMP_EVENT_INACTIVE: {
1077                 if (obd->obd_observer)
1078                         rc = obd_notify(obd->obd_observer, obd, 0, 0);
1079                 break;
1080         }
1081         case IMP_EVENT_INVALIDATE: {
1082                 struct ldlm_namespace *ns = obd->obd_namespace;
1083
1084                 ldlm_namespace_cleanup(ns, LDLM_FL_LOCAL_ONLY);
1085
1086                 break;
1087         }
1088         case IMP_EVENT_ACTIVE: {
1089                 if (obd->obd_observer)
1090                         rc = obd_notify(obd->obd_observer, obd, 1, 0);
1091                 break;
1092         }
1093         default:
1094                 CERROR("Unknown import event %d\n", event);
1095                 LBUG();
1096         }
1097         RETURN(rc);
1098 }
1099
1100 static int mdc_attach(struct obd_device *dev, obd_count len, void *data)
1101 {
1102         struct lprocfs_static_vars lvars;
1103
1104         lprocfs_init_vars(mdc, &lvars);
1105         return lprocfs_obd_attach(dev, lvars.obd_vars);
1106 }
1107
1108 static int mdc_detach(struct obd_device *dev)
1109 {
1110         return lprocfs_obd_detach(dev);
1111 }
1112
1113 static int mdc_setup(struct obd_device *obd, obd_count len, void *buf)
1114 {
1115         struct client_obd *cli = &obd->u.cli;
1116         int rc;
1117         ENTRY;
1118
1119         OBD_ALLOC(cli->cl_rpc_lock, sizeof (*cli->cl_rpc_lock));
1120         if (!cli->cl_rpc_lock)
1121                 RETURN(-ENOMEM);
1122         mdc_init_rpc_lock(cli->cl_rpc_lock);
1123
1124         ptlrpcd_addref();
1125
1126         OBD_ALLOC(cli->cl_setattr_lock, sizeof (*cli->cl_setattr_lock));
1127         if (!cli->cl_setattr_lock)
1128                 GOTO(err_rpc_lock, rc = -ENOMEM);
1129         mdc_init_rpc_lock(cli->cl_setattr_lock);
1130
1131         OBD_ALLOC(cli->cl_close_lock, sizeof (*cli->cl_close_lock));
1132         if (!cli->cl_close_lock)
1133                 GOTO(err_setattr_lock, rc = -ENOMEM);
1134         mdc_init_rpc_lock(cli->cl_close_lock);
1135
1136         rc = client_obd_setup(obd, len, buf);
1137         if (rc)
1138                 GOTO(err_close_lock, rc);
1139
1140         rc = obd_llog_init(obd, &obd->obd_llogs, obd, 0, NULL);
1141         if (rc) {
1142                 mdc_cleanup(obd, 0);
1143                 CERROR("failed to setup llogging subsystems\n");
1144         }
1145
1146         RETURN(rc);
1147
1148 err_close_lock:
1149         OBD_FREE(cli->cl_close_lock, sizeof (*cli->cl_close_lock));
1150 err_setattr_lock:
1151         OBD_FREE(cli->cl_setattr_lock, sizeof (*cli->cl_setattr_lock));
1152 err_rpc_lock:
1153         OBD_FREE(cli->cl_rpc_lock, sizeof (*cli->cl_rpc_lock));
1154         ptlrpcd_decref();
1155         RETURN(rc);
1156 }
1157
1158 static int mdc_init_ea_size(struct obd_export *exp, int easize, int cookiesize)
1159 {
1160         struct obd_device *obd = exp->exp_obd;
1161         struct client_obd *cli = &obd->u.cli;
1162         ENTRY;
1163
1164         if (cli->cl_max_mds_easize < easize)
1165                 cli->cl_max_mds_easize = easize;
1166         if (cli->cl_max_mds_cookiesize < cookiesize)
1167                 cli->cl_max_mds_cookiesize = cookiesize;
1168         RETURN(0);
1169 }
1170
1171 static int mdc_precleanup(struct obd_device *obd, int flags)
1172 {
1173         int rc = 0;
1174         
1175         rc = obd_llog_finish(obd, &obd->obd_llogs, 0);
1176         if (rc != 0)
1177                 CERROR("failed to cleanup llogging subsystems\n");
1178
1179         RETURN(rc);
1180 }
1181
1182 static int mdc_cleanup(struct obd_device *obd, int flags)
1183 {
1184         struct client_obd *cli = &obd->u.cli;
1185
1186         OBD_FREE(cli->cl_rpc_lock, sizeof (*cli->cl_rpc_lock));
1187         OBD_FREE(cli->cl_setattr_lock, sizeof (*cli->cl_setattr_lock));
1188         OBD_FREE(cli->cl_close_lock, sizeof (*cli->cl_close_lock));
1189
1190         ptlrpcd_decref();
1191
1192         return client_obd_cleanup(obd, flags);
1193 }
1194
1195
1196 static int mdc_llog_init(struct obd_device *obd, struct obd_llogs *llogs, 
1197                          struct obd_device *tgt, int count,
1198                          struct llog_catid *logid)
1199 {
1200         struct llog_ctxt *ctxt;
1201         int rc;
1202         ENTRY;
1203
1204         rc = obd_llog_setup(obd, llogs, LLOG_CONFIG_REPL_CTXT, tgt, 0, NULL,
1205                             &llog_client_ops);
1206         if (rc == 0) {
1207                 ctxt = llog_get_context(llogs, LLOG_CONFIG_REPL_CTXT);
1208                 ctxt->loc_imp = obd->u.cli.cl_import;
1209         }
1210
1211         RETURN(rc);
1212 }
1213
1214 static int mdc_llog_finish(struct obd_device *obd,
1215                            struct obd_llogs *llogs, int count)
1216 {
1217         int rc;
1218         ENTRY;
1219
1220         rc = obd_llog_cleanup(llog_get_context(llogs, LLOG_CONFIG_REPL_CTXT));
1221         RETURN(rc);
1222 }
1223 static struct obd_device *mdc_get_real_obd(struct obd_export *exp,
1224                                            struct lustre_id *id)
1225 {
1226        ENTRY;
1227        RETURN(exp->exp_obd);
1228 }
1229
1230 static int mdc_get_info(struct obd_export *exp, __u32 keylen,
1231                         void *key, __u32 *valsize, void *val)
1232 {
1233         struct ptlrpc_request *req;
1234         char *bufs[1] = {key};
1235         int rc = 0;
1236         ENTRY;
1237         
1238         if (!valsize || !val)
1239                 RETURN(-EFAULT);
1240
1241         if (keylen == strlen("remote_flag") && !strcmp(key, "remote_flag")) {
1242                 struct obd_import *imp;
1243                 struct obd_connect_data *data;
1244
1245                 imp = class_exp2cliimp(exp);
1246                 if (!imp) {
1247                         LBUG();
1248                         RETURN(-EINVAL);
1249                 }
1250
1251                 if (imp->imp_state != LUSTRE_IMP_FULL) {
1252                         CERROR("import state not full\n");
1253                         RETURN(-EINVAL);
1254                 }
1255
1256                 data = &imp->imp_connect_data;
1257                 if (data->ocd_connect_flags & OBD_CONNECT_REMOTE) {
1258                         *((int *)val) = 1;
1259                         RETURN(0);
1260                 } else if (data->ocd_connect_flags & OBD_CONNECT_LOCAL) {
1261                         *((int *)val) = 0;
1262                         RETURN(0);
1263                 }
1264                 CERROR("no remote flag set?\n");
1265                 RETURN(-EINVAL);
1266         }
1267
1268         if ((keylen < strlen("mdsize") || strcmp(key, "mdsize") != 0) &&
1269             (keylen < strlen("mdsnum") || strcmp(key, "mdsnum") != 0) &&
1270             (keylen < strlen("rootid") || strcmp(key, "rootid") != 0))
1271                 RETURN(-EPROTO);
1272                 
1273         req = ptlrpc_prep_req(class_exp2cliimp(exp), LUSTRE_OBD_VERSION,
1274                               OST_GET_INFO, 1, (int *)&keylen, bufs);
1275         if (req == NULL)
1276                 RETURN(-ENOMEM);
1277
1278         req->rq_replen = lustre_msg_size(1, (int *)valsize);
1279         rc = ptlrpc_queue_wait(req);
1280         if (rc)
1281                 GOTO(out_req, rc);
1282
1283         if (keylen >= strlen("rootid") && !strcmp(key, "rootid")) {
1284                 struct lustre_id *reply;
1285                 
1286                 reply = lustre_swab_repbuf(req, 0, sizeof(*reply),
1287                                            lustre_swab_lustre_id);
1288                 if (reply == NULL) {
1289                         CERROR("Can't unpack %s\n", (char *)key);
1290                         GOTO(out_req, rc = -EPROTO);
1291                 }
1292
1293                 *(struct lustre_id *)val = *reply;
1294         } else {
1295                 __u32 *reply;
1296                 
1297                 reply = lustre_swab_repbuf(req, 0, sizeof(*reply),
1298                                            lustre_swab_generic_32s);
1299                 if (reply == NULL) {
1300                         CERROR("Can't unpack %s\n", (char *)key);
1301                         GOTO(out_req, rc = -EPROTO);
1302                 }
1303                 *((__u32 *)val) = *reply;
1304         }
1305 out_req:
1306         ptlrpc_req_finished(req);
1307         RETURN(rc);
1308 }
1309
1310 int mdc_obj_create(struct obd_export *exp, struct obdo *oa,
1311                    void *acl, int acl_size,
1312                    struct lov_stripe_md **ea, struct obd_trans_info *oti)
1313 {
1314         struct ptlrpc_request *request;
1315         struct ost_body *body;
1316         char *acl_buf;
1317         int rc, size[2] = { sizeof(*body), acl_size };
1318         ENTRY;
1319
1320         LASSERT(oa);
1321
1322         request = ptlrpc_prep_req(class_exp2cliimp(exp), LUSTRE_OBD_VERSION,
1323                                   OST_CREATE, 2, size, NULL);
1324         if (!request)
1325                 GOTO(out_req, rc = -ENOMEM);
1326
1327         body = lustre_msg_buf(request->rq_reqmsg, 0, sizeof (*body));
1328         memcpy(&body->oa, oa, sizeof(body->oa));
1329
1330         if (acl_size) {
1331                 acl_buf = lustre_msg_buf(request->rq_reqmsg, 1, acl_size);
1332                 memcpy(acl_buf, acl, acl_size);
1333         }
1334
1335         request->rq_replen = lustre_msg_size(1, size);
1336         rc = ptlrpc_queue_wait(request);
1337         if (rc)
1338                 GOTO(out_req, rc);
1339
1340         body = lustre_swab_repbuf(request, 0, sizeof(*body),
1341                                   lustre_swab_ost_body);
1342         if (body == NULL) {
1343                 CERROR ("can't unpack ost_body\n");
1344                 GOTO (out_req, rc = -EPROTO);
1345         }
1346
1347         memcpy(oa, &body->oa, sizeof(*oa));
1348
1349         /* store ino/generation for recovery */
1350         body = lustre_msg_buf(request->rq_reqmsg, 0, sizeof (*body));
1351         body->oa.o_id = oa->o_id;
1352         body->oa.o_generation = oa->o_generation;
1353         body->oa.o_fid = oa->o_fid;
1354         body->oa.o_mds = oa->o_mds;
1355
1356         CDEBUG(D_HA, "transno: "LPD64"\n", request->rq_repmsg->transno);
1357         EXIT;
1358 out_req:
1359         ptlrpc_req_finished(request);
1360         return rc;
1361 }
1362
1363 int mdc_brw(int rw, struct obd_export *exp, struct obdo *oa,
1364             struct lov_stripe_md *ea, obd_count oa_bufs,
1365             struct brw_page *pgarr, struct obd_trans_info *oti)
1366 {
1367         struct ptlrpc_bulk_desc *desc;
1368         struct niobuf_remote *niobuf;
1369         struct ptlrpc_request *req;
1370         struct obd_ioobj *ioobj;
1371         struct ost_body *body;
1372         int err, opc, i;
1373         int size[3];
1374
1375         opc = ((rw & OBD_BRW_WRITE) != 0) ? OST_WRITE : OST_READ;
1376         
1377         size[0] = sizeof(*body);
1378         size[1] = sizeof(*ioobj);
1379         size[2] = oa_bufs * sizeof(*niobuf);
1380
1381         req = ptlrpc_prep_req(class_exp2cliimp(exp), LUSTRE_OBD_VERSION, opc,
1382                               3, size, NULL);
1383         LASSERT(req != NULL);
1384
1385         if (opc == OST_WRITE)
1386                 desc = ptlrpc_prep_bulk_imp(req, oa_bufs, BULK_GET_SOURCE,
1387                                             OST_BULK_PORTAL);
1388         else
1389                 desc = ptlrpc_prep_bulk_imp(req, oa_bufs, BULK_PUT_SINK,
1390                                             OST_BULK_PORTAL);
1391         LASSERT(desc != NULL);
1392
1393         body = lustre_msg_buf(req->rq_reqmsg, 0, sizeof(*body));
1394         ioobj = lustre_msg_buf(req->rq_reqmsg, 1, sizeof(*ioobj));
1395         niobuf = lustre_msg_buf(req->rq_reqmsg, 2, oa_bufs * sizeof(*niobuf));
1396
1397         memcpy(&body->oa, oa, sizeof(*oa));
1398         obdo_to_ioobj(oa, ioobj);
1399         ioobj->ioo_bufcnt = oa_bufs;
1400
1401         for (i = 0; i < oa_bufs; i++, niobuf++) {
1402                 struct brw_page *pg = &pgarr[i];
1403
1404                 LASSERT(pg->count > 0);
1405                 LASSERT((pg->disk_offset & ~PAGE_MASK) + pg->count <= PAGE_SIZE);
1406
1407                 ptlrpc_prep_bulk_page(desc, pg->pg, pg->disk_offset & ~PAGE_MASK,
1408                                       pg->count);
1409
1410                 niobuf->offset = pg->disk_offset;
1411                 niobuf->len = pg->count;
1412                 niobuf->flags = pg->flag;
1413         }
1414
1415         /* size[0] still sizeof (*body) */
1416         if (opc == OST_WRITE) {
1417                 /* 1 RC per niobuf */
1418                 size[1] = sizeof(__u32) * oa_bufs;
1419                 req->rq_replen = lustre_msg_size(2, size);
1420         } else {
1421                 /* 1 RC for the whole I/O */
1422                 req->rq_replen = lustre_msg_size(1, size);
1423         }
1424         err = ptlrpc_queue_wait(req);
1425         LASSERT(err == 0);
1426
1427         ptlrpc_req_finished(req);
1428         return 0;
1429 }
1430
1431 static int mdc_valid_attrs(struct obd_export *exp,
1432                            struct lustre_id *id)
1433 {
1434         struct ldlm_res_id res_id = { .name = {0} };
1435         struct obd_device *obd = exp->exp_obd;
1436         struct lustre_handle lockh;
1437         ldlm_policy_data_t policy;
1438         int flags;
1439         ENTRY;
1440
1441         res_id.name[0] = id_fid(id);
1442         res_id.name[1] = id_group(id);
1443         policy.l_inodebits.bits = MDS_INODELOCK_UPDATE;
1444
1445         CDEBUG(D_INFO, "trying to match res "LPU64"\n",
1446                res_id.name[0]);
1447
1448         /* FIXME use LDLM_FL_TEST_LOCK instead */
1449         flags = LDLM_FL_BLOCK_GRANTED | LDLM_FL_CBPENDING;
1450         if (ldlm_lock_match(obd->obd_namespace, flags, &res_id,
1451                             LDLM_IBITS, &policy, LCK_PR, &lockh)) {
1452                 ldlm_lock_decref(&lockh, LCK_PR);
1453                 RETURN(1);
1454         }
1455
1456         if (ldlm_lock_match(obd->obd_namespace, flags, &res_id,
1457                             LDLM_IBITS, &policy, LCK_PW, &lockh)) {
1458                 ldlm_lock_decref(&lockh, LCK_PW);
1459                 RETURN(1);
1460         }
1461         RETURN(0);
1462 }
1463
1464 static int mdc_change_cbdata_name(struct obd_export *exp,
1465                                   struct lustre_id *pid,
1466                                   char *name, int len,
1467                                   struct lustre_id *cid,
1468                                   ldlm_iterator_t it, void *data)
1469 {
1470         int rc;
1471         rc = mdc_change_cbdata(exp, cid, it, data);
1472         RETURN(rc);
1473 }
1474
1475 struct obd_ops mdc_obd_ops = {
1476         .o_owner         = THIS_MODULE,
1477         .o_attach        = mdc_attach,
1478         .o_detach        = mdc_detach,
1479         .o_setup         = mdc_setup,
1480         .o_precleanup    = mdc_precleanup,
1481         .o_cleanup       = mdc_cleanup,
1482         .o_add_conn      = client_import_add_conn,
1483         .o_del_conn      = client_import_del_conn,
1484         .o_connect       = client_connect_import,
1485         .o_disconnect    = client_disconnect_export,
1486         .o_iocontrol     = mdc_iocontrol,
1487         .o_packmd        = mdc_packmd,
1488         .o_unpackmd      = mdc_unpackmd,
1489         .o_statfs        = mdc_statfs,
1490         .o_pin           = mdc_pin,
1491         .o_unpin         = mdc_unpin,
1492         .o_import_event  = mdc_import_event,
1493         .o_llog_init     = mdc_llog_init,
1494         .o_llog_finish   = mdc_llog_finish,
1495         .o_create        = mdc_obj_create,
1496         .o_set_info      = mdc_set_info,
1497         .o_get_info      = mdc_get_info,
1498         .o_brw           = mdc_brw,
1499         .o_cancel_unused = mdc_cancel_unused,
1500         .o_init_ea_size  = mdc_init_ea_size,
1501 };
1502
1503 struct md_ops mdc_md_ops = {
1504         .m_getstatus     = mdc_getstatus,
1505         .m_getattr       = mdc_getattr,
1506         .m_close         = mdc_close,
1507         .m_create        = mdc_create,
1508         .m_done_writing  = mdc_done_writing,
1509         .m_enqueue       = mdc_enqueue,
1510         .m_getattr_lock  = mdc_getattr_lock,
1511         .m_intent_lock   = mdc_intent_lock,
1512         .m_link          = mdc_link,
1513         .m_rename        = mdc_rename,
1514         .m_setattr       = mdc_setattr,
1515         .m_sync          = mdc_sync,
1516         .m_readpage      = mdc_readpage,
1517         .m_unlink        = mdc_unlink,
1518         .m_valid_attrs   = mdc_valid_attrs,
1519         .m_req2lustre_md = mdc_req2lustre_md,
1520         .m_set_open_replay_data   = mdc_set_open_replay_data,
1521         .m_clear_open_replay_data = mdc_clear_open_replay_data,
1522         .m_store_inode_generation = mdc_store_inode_generation,
1523         .m_set_lock_data = mdc_set_lock_data,
1524         .m_get_real_obd  = mdc_get_real_obd,
1525         .m_change_cbdata_name = mdc_change_cbdata_name,
1526         .m_change_cbdata = mdc_change_cbdata,
1527 };
1528
1529 int __init mdc_init(void)
1530 {
1531         struct lprocfs_static_vars lvars;
1532         lprocfs_init_vars(mdc, &lvars);
1533         return class_register_type(&mdc_obd_ops, &mdc_md_ops, lvars.module_vars,
1534                                    LUSTRE_MDC_NAME);
1535 }
1536
1537 #ifdef __KERNEL__
1538 static void /*__exit*/ mdc_exit(void)
1539 {
1540         class_unregister_type(LUSTRE_MDC_NAME);
1541 }
1542
1543 MODULE_AUTHOR("Cluster File Systems, Inc. <info@clusterfs.com>");
1544 MODULE_DESCRIPTION("Lustre Metadata Client");
1545 MODULE_LICENSE("GPL");
1546
1547 EXPORT_SYMBOL(mdc_req2lustre_md);
1548 EXPORT_SYMBOL(mdc_change_cbdata);
1549 EXPORT_SYMBOL(mdc_getstatus);
1550 EXPORT_SYMBOL(mdc_getattr);
1551 EXPORT_SYMBOL(mdc_getattr_lock);
1552 EXPORT_SYMBOL(mdc_create);
1553 EXPORT_SYMBOL(mdc_unlink);
1554 EXPORT_SYMBOL(mdc_rename);
1555 EXPORT_SYMBOL(mdc_link);
1556 EXPORT_SYMBOL(mdc_readpage);
1557 EXPORT_SYMBOL(mdc_setattr);
1558 EXPORT_SYMBOL(mdc_close);
1559 EXPORT_SYMBOL(mdc_done_writing);
1560 EXPORT_SYMBOL(mdc_sync);
1561 EXPORT_SYMBOL(mdc_set_open_replay_data);
1562 EXPORT_SYMBOL(mdc_clear_open_replay_data);
1563 EXPORT_SYMBOL(mdc_store_inode_generation);
1564
1565 module_init(mdc_init);
1566 module_exit(mdc_exit);
1567 #endif