Whamcloud - gitweb
- fixed typos in comments and some alingment in cobd.
[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") && strcmp(key, "mds_type") == 0) {
837                 struct ptlrpc_request *req;
838                 char *bufs[2] = {key, val};
839                 int rc, size[2] = {keylen, vallen};
840
841                 req = ptlrpc_prep_req(class_exp2cliimp(exp), LUSTRE_OBD_VERSION,
842                                       OST_SET_INFO, 2, size, bufs);
843                 if (req == NULL)
844                         RETURN(-ENOMEM);
845
846                 req->rq_replen = lustre_msg_size(0, NULL);
847                 rc = ptlrpc_queue_wait(req);
848                 ptlrpc_req_finished(req);
849                 RETURN(rc);
850         } else if (keylen >= strlen("inter_mds") && strcmp(key, "inter_mds") == 0) {
851                 struct obd_import *imp = class_exp2cliimp(exp);
852                 imp->imp_server_timeout = 1;
853                 CDEBUG(D_OTHER, "%s: timeout / 2\n", exp->exp_obd->obd_name);
854                 RETURN(0);
855         } else if (keylen == strlen("sec") && memcmp(key, "sec", keylen) == 0) {
856                 struct client_obd *cli = &exp->exp_obd->u.cli;
857
858                 if (vallen == strlen("null") &&
859                     memcmp(val, "null", vallen) == 0) {
860                         cli->cl_sec_flavor = PTLRPC_SEC_NULL;
861                         cli->cl_sec_subflavor = 0;
862                         RETURN(0);
863                 }
864                 if (vallen == strlen("krb5i") &&
865                     memcmp(val, "krb5i", vallen) == 0) {
866                         cli->cl_sec_flavor = PTLRPC_SEC_GSS;
867                         cli->cl_sec_subflavor = PTLRPC_SEC_GSS_KRB5I;
868                         RETURN(0);
869                 }
870                 if (vallen == strlen("krb5p") &&
871                     memcmp(val, "krb5p", vallen) == 0) {
872                         cli->cl_sec_flavor = PTLRPC_SEC_GSS;
873                         cli->cl_sec_subflavor = PTLRPC_SEC_GSS_KRB5P;
874                         RETURN(0);
875                 }
876                 CERROR("unrecognized security type %s\n", (char*) val);
877                 rc = -EINVAL;
878         } else if (keylen == strlen("async") && memcmp(key, "async", keylen) == 0) {
879                 struct client_obd *cl = &exp->exp_obd->u.cli;
880                 if (vallen != sizeof(int))
881                         RETURN(-EINVAL);
882                 cl->cl_async = *(int *)val;
883                 CDEBUG(D_HA, "%s: set async = %d\n",
884                        exp->exp_obd->obd_name, cl->cl_async);
885                 RETURN(0);
886         }
887         RETURN(rc);
888 }
889
890 static int mdc_statfs(struct obd_device *obd, struct obd_statfs *osfs,
891                       unsigned long max_age)
892 {
893         struct obd_statfs *msfs;
894         struct ptlrpc_request *req;
895         int rc, size = sizeof(*msfs);
896         ENTRY;
897
898         /* We could possibly pass max_age in the request (as an absolute
899          * timestamp or a "seconds.usec ago") so the target can avoid doing
900          * extra calls into the filesystem if that isn't necessary (e.g.
901          * during mount that would help a bit).  Having relative timestamps
902          * is not so great if request processing is slow, while absolute
903          * timestamps are not ideal because they need time synchronization. */
904         req = ptlrpc_prep_req(obd->u.cli.cl_import, LUSTRE_MDS_VERSION,
905                               MDS_STATFS, 0, NULL, NULL);
906         if (!req)
907                 RETURN(-ENOMEM);
908
909         req->rq_replen = lustre_msg_size(1, &size);
910
911         mdc_get_rpc_lock(obd->u.cli.cl_rpc_lock, NULL);
912         rc = ptlrpc_queue_wait(req);
913         mdc_put_rpc_lock(obd->u.cli.cl_rpc_lock, NULL);
914
915         if (rc) {
916                 /* this can be LMV fake import, whcih is not connected. */
917                 if (!req->rq_import->imp_connection)
918                         memset(osfs, 0, sizeof(*osfs));
919                 GOTO(out, rc);
920         }
921
922         msfs = lustre_swab_repbuf(req, 0, sizeof(*msfs),
923                                   lustre_swab_obd_statfs);
924         if (msfs == NULL) {
925                 CERROR("Can't unpack obd_statfs\n");
926                 GOTO(out, rc = -EPROTO);
927         }
928
929         memcpy(osfs, msfs, sizeof (*msfs));
930         EXIT;
931 out:
932         ptlrpc_req_finished(req);
933         return rc;
934 }
935
936 static int mdc_pin(struct obd_export *exp, obd_id ino, __u32 gen, int type,
937                    struct obd_client_handle *handle, int flag)
938 {
939         struct ptlrpc_request *req;
940         struct mds_body *body;
941         int rc, size[2] = {0, sizeof(*body)};
942         ENTRY;
943
944         //size[0] = lustre_secdesc_size();
945
946         req = ptlrpc_prep_req(class_exp2cliimp(exp), LUSTRE_MDS_VERSION,
947                               MDS_PIN, 2, size, NULL);
948         if (req == NULL)
949                 RETURN(-ENOMEM);
950
951         //lustre_pack_secdesc(req, size[0]);
952
953         body = lustre_msg_buf(req->rq_reqmsg, 
954                               MDS_REQ_REC_OFF, sizeof(*body));
955
956         /* FIXME-UMKA: here should be also mdsnum and fid. */
957         mdc_pack_id(&body->id1, ino, gen, type, 0, 0);
958         body->flags = flag;
959
960         req->rq_replen = lustre_msg_size(1, &size[1]);
961
962         mdc_get_rpc_lock(exp->exp_obd->u.cli.cl_rpc_lock, NULL);
963         rc = ptlrpc_queue_wait(req);
964         mdc_put_rpc_lock(exp->exp_obd->u.cli.cl_rpc_lock, NULL);
965         if (rc) {
966                 CERROR("pin failed: %d\n", rc);
967                 ptlrpc_req_finished(req);
968                 RETURN(rc);
969         }
970
971         body = lustre_swab_repbuf(req, 0, sizeof(*body), lustre_swab_mds_body);
972         if (body == NULL) {
973                 ptlrpc_req_finished(req);
974                 RETURN(rc);
975         }
976
977         memcpy(&handle->och_fh, &body->handle, sizeof(body->handle));
978         handle->och_magic = OBD_CLIENT_HANDLE_MAGIC;
979
980         OBD_ALLOC(handle->och_mod, sizeof(*handle->och_mod));
981         if (handle->och_mod == NULL) {
982                 DEBUG_REQ(D_ERROR, req, "can't allocate mdc_open_data");
983                 RETURN(-ENOMEM);
984         }
985         handle->och_mod->mod_open_req = req; /* will be dropped by unpin */
986
987         RETURN(rc);
988 }
989
990 static int mdc_unpin(struct obd_export *exp,
991                      struct obd_client_handle *handle, int flag)
992 {
993         struct ptlrpc_request *req;
994         struct mds_body *body;
995         int rc, size[2] = {0, sizeof(*body)};
996         ENTRY;
997
998         if (handle->och_magic != OBD_CLIENT_HANDLE_MAGIC)
999                 RETURN(0);
1000
1001         //size[0] = lustre_secdesc_size();
1002
1003         req = ptlrpc_prep_req(class_exp2cliimp(exp), LUSTRE_MDS_VERSION,
1004                               MDS_CLOSE, 2, size, NULL);
1005         if (req == NULL)
1006                 RETURN(-ENOMEM);
1007
1008         //lustre_pack_secdesc(req, size[0]);
1009
1010         body = lustre_msg_buf(req->rq_reqmsg, MDS_REQ_REC_OFF, sizeof(*body));
1011         memcpy(&body->handle, &handle->och_fh, sizeof(body->handle));
1012         body->flags = flag;
1013
1014         req->rq_replen = lustre_msg_size(0, NULL);
1015         mdc_get_rpc_lock(exp->exp_obd->u.cli.cl_rpc_lock, NULL);
1016         rc = ptlrpc_queue_wait(req);
1017         mdc_put_rpc_lock(exp->exp_obd->u.cli.cl_rpc_lock, NULL);
1018
1019         if (rc != 0)
1020                 CERROR("unpin failed: %d\n", rc);
1021
1022         ptlrpc_req_finished(req);
1023         ptlrpc_req_finished(handle->och_mod->mod_open_req);
1024         OBD_FREE(handle->och_mod, sizeof(*handle->och_mod));
1025         RETURN(rc);
1026 }
1027
1028 int mdc_sync(struct obd_export *exp, struct lustre_id *id,
1029              struct ptlrpc_request **request)
1030 {
1031         struct ptlrpc_request *req;
1032         struct mds_body *body;
1033         int size[2] = {0, sizeof(*body)};
1034         int rc;
1035         ENTRY;
1036
1037         //size[0] = lustre_secdesc_size();
1038
1039         req = ptlrpc_prep_req(class_exp2cliimp(exp), LUSTRE_MDS_VERSION,
1040                               MDS_SYNC, 2, size, NULL);
1041         if (!req)
1042                 RETURN(rc = -ENOMEM);
1043
1044         //lustre_pack_secdesc(req, size[0]);
1045
1046         if (id) {
1047                 body = lustre_msg_buf(req->rq_reqmsg, MDS_REQ_REC_OFF,
1048                                       sizeof (*body));
1049                 memcpy(&body->id1, id, sizeof(*id));
1050         }
1051
1052         req->rq_replen = lustre_msg_size(1, &size[1]);
1053
1054         rc = ptlrpc_queue_wait(req);
1055         if (rc || request == NULL)
1056                 ptlrpc_req_finished(req);
1057         else
1058                 *request = req;
1059
1060         RETURN(rc);
1061 }
1062
1063 static int mdc_import_event(struct obd_device *obd, struct obd_import *imp,
1064                             enum obd_import_event event)
1065 {
1066         int rc = 0;
1067
1068         LASSERT(imp->imp_obd == obd);
1069
1070         switch (event) {
1071         case IMP_EVENT_DISCON: {
1072                 break;
1073         }
1074         case IMP_EVENT_INACTIVE: {
1075                 if (obd->obd_observer)
1076                         rc = obd_notify(obd->obd_observer, obd, 0, 0);
1077                 break;
1078         }
1079         case IMP_EVENT_INVALIDATE: {
1080                 struct ldlm_namespace *ns = obd->obd_namespace;
1081
1082                 ldlm_namespace_cleanup(ns, LDLM_FL_LOCAL_ONLY);
1083
1084                 break;
1085         }
1086         case IMP_EVENT_ACTIVE: {
1087                 if (obd->obd_observer)
1088                         rc = obd_notify(obd->obd_observer, obd, 1, 0);
1089                 break;
1090         }
1091         default:
1092                 CERROR("Unknown import event %d\n", event);
1093                 LBUG();
1094         }
1095         RETURN(rc);
1096 }
1097
1098 static int mdc_attach(struct obd_device *dev, obd_count len, void *data)
1099 {
1100         struct lprocfs_static_vars lvars;
1101
1102         lprocfs_init_vars(mdc, &lvars);
1103         return lprocfs_obd_attach(dev, lvars.obd_vars);
1104 }
1105
1106 static int mdc_detach(struct obd_device *dev)
1107 {
1108         return lprocfs_obd_detach(dev);
1109 }
1110
1111 static int mdc_setup(struct obd_device *obd, obd_count len, void *buf)
1112 {
1113         struct client_obd *cli = &obd->u.cli;
1114         int rc;
1115         ENTRY;
1116
1117         OBD_ALLOC(cli->cl_rpc_lock, sizeof (*cli->cl_rpc_lock));
1118         if (!cli->cl_rpc_lock)
1119                 RETURN(-ENOMEM);
1120         mdc_init_rpc_lock(cli->cl_rpc_lock);
1121
1122         ptlrpcd_addref();
1123
1124         OBD_ALLOC(cli->cl_setattr_lock, sizeof (*cli->cl_setattr_lock));
1125         if (!cli->cl_setattr_lock)
1126                 GOTO(err_rpc_lock, rc = -ENOMEM);
1127         mdc_init_rpc_lock(cli->cl_setattr_lock);
1128
1129         OBD_ALLOC(cli->cl_close_lock, sizeof (*cli->cl_close_lock));
1130         if (!cli->cl_close_lock)
1131                 GOTO(err_setattr_lock, rc = -ENOMEM);
1132         mdc_init_rpc_lock(cli->cl_close_lock);
1133
1134         rc = client_obd_setup(obd, len, buf);
1135         if (rc)
1136                 GOTO(err_close_lock, rc);
1137
1138         rc = obd_llog_init(obd, &obd->obd_llogs, obd, 0, NULL);
1139         if (rc) {
1140                 mdc_cleanup(obd, 0);
1141                 CERROR("failed to setup llogging subsystems\n");
1142         }
1143
1144         RETURN(rc);
1145
1146 err_close_lock:
1147         OBD_FREE(cli->cl_close_lock, sizeof (*cli->cl_close_lock));
1148 err_setattr_lock:
1149         OBD_FREE(cli->cl_setattr_lock, sizeof (*cli->cl_setattr_lock));
1150 err_rpc_lock:
1151         OBD_FREE(cli->cl_rpc_lock, sizeof (*cli->cl_rpc_lock));
1152         ptlrpcd_decref();
1153         RETURN(rc);
1154 }
1155
1156 static int mdc_init_ea_size(struct obd_export *exp, int easize, int cookiesize)
1157 {
1158         struct obd_device *obd = exp->exp_obd;
1159         struct client_obd *cli = &obd->u.cli;
1160         ENTRY;
1161
1162         if (cli->cl_max_mds_easize < easize)
1163                 cli->cl_max_mds_easize = easize;
1164         if (cli->cl_max_mds_cookiesize < cookiesize)
1165                 cli->cl_max_mds_cookiesize = cookiesize;
1166         RETURN(0);
1167 }
1168
1169 static int mdc_precleanup(struct obd_device *obd, int flags)
1170 {
1171         int rc = 0;
1172         
1173         rc = obd_llog_finish(obd, &obd->obd_llogs, 0);
1174         if (rc != 0)
1175                 CERROR("failed to cleanup llogging subsystems\n");
1176
1177         RETURN(rc);
1178 }
1179
1180 static int mdc_cleanup(struct obd_device *obd, int flags)
1181 {
1182         struct client_obd *cli = &obd->u.cli;
1183
1184         OBD_FREE(cli->cl_rpc_lock, sizeof (*cli->cl_rpc_lock));
1185         OBD_FREE(cli->cl_setattr_lock, sizeof (*cli->cl_setattr_lock));
1186         OBD_FREE(cli->cl_close_lock, sizeof (*cli->cl_close_lock));
1187
1188         ptlrpcd_decref();
1189
1190         return client_obd_cleanup(obd, flags);
1191 }
1192
1193
1194 static int mdc_llog_init(struct obd_device *obd, struct obd_llogs *llogs, 
1195                          struct obd_device *tgt, int count,
1196                          struct llog_catid *logid)
1197 {
1198         struct llog_ctxt *ctxt;
1199         int rc;
1200         ENTRY;
1201
1202         rc = obd_llog_setup(obd, llogs, LLOG_CONFIG_REPL_CTXT, tgt, 0, NULL,
1203                             &llog_client_ops);
1204         if (rc == 0) {
1205                 ctxt = llog_get_context(llogs, LLOG_CONFIG_REPL_CTXT);
1206                 ctxt->loc_imp = obd->u.cli.cl_import;
1207         }
1208
1209         RETURN(rc);
1210 }
1211
1212 static int mdc_llog_finish(struct obd_device *obd,
1213                            struct obd_llogs *llogs, int count)
1214 {
1215         int rc;
1216         ENTRY;
1217
1218         rc = obd_llog_cleanup(llog_get_context(llogs, LLOG_CONFIG_REPL_CTXT));
1219         RETURN(rc);
1220 }
1221 static struct obd_device *mdc_get_real_obd(struct obd_export *exp,
1222                                            struct lustre_id *id)
1223 {
1224        ENTRY;
1225        RETURN(exp->exp_obd);
1226 }
1227
1228 static int mdc_get_info(struct obd_export *exp, __u32 keylen,
1229                         void *key, __u32 *valsize, void *val)
1230 {
1231         struct ptlrpc_request *req;
1232         char *bufs[1] = {key};
1233         int rc = 0;
1234         ENTRY;
1235         
1236         if (!valsize || !val)
1237                 RETURN(-EFAULT);
1238
1239         if (keylen == strlen("remote_flag") && !strcmp(key, "remote_flag")) {
1240                 struct obd_import *imp;
1241                 struct obd_connect_data *data;
1242
1243                 imp = class_exp2cliimp(exp);
1244                 if (!imp) {
1245                         LBUG();
1246                         RETURN(-EINVAL);
1247                 }
1248
1249                 if (imp->imp_state != LUSTRE_IMP_FULL) {
1250                         CERROR("import state not full\n");
1251                         RETURN(-EINVAL);
1252                 }
1253
1254                 data = &imp->imp_connect_data;
1255                 if (data->ocd_connect_flags & OBD_CONNECT_REMOTE) {
1256                         *((int *)val) = 1;
1257                         RETURN(0);
1258                 } else if (data->ocd_connect_flags & OBD_CONNECT_LOCAL) {
1259                         *((int *)val) = 0;
1260                         RETURN(0);
1261                 }
1262                 CERROR("no remote flag set?\n");
1263                 RETURN(-EINVAL);
1264         }
1265
1266         if ((keylen < strlen("mdsize") || strcmp(key, "mdsize") != 0) &&
1267             (keylen < strlen("mdsnum") || strcmp(key, "mdsnum") != 0) &&
1268             (keylen < strlen("rootid") || strcmp(key, "rootid") != 0))
1269                 RETURN(-EPROTO);
1270                 
1271         req = ptlrpc_prep_req(class_exp2cliimp(exp), LUSTRE_OBD_VERSION,
1272                               OST_GET_INFO, 1, (int *)&keylen, bufs);
1273         if (req == NULL)
1274                 RETURN(-ENOMEM);
1275
1276         req->rq_replen = lustre_msg_size(1, (int *)valsize);
1277         rc = ptlrpc_queue_wait(req);
1278         if (rc)
1279                 GOTO(out_req, rc);
1280
1281         if (keylen >= strlen("rootid") && !strcmp(key, "rootid")) {
1282                 struct lustre_id *reply;
1283                 
1284                 reply = lustre_swab_repbuf(req, 0, sizeof(*reply),
1285                                            lustre_swab_lustre_id);
1286                 if (reply == NULL) {
1287                         CERROR("Can't unpack %s\n", (char *)key);
1288                         GOTO(out_req, rc = -EPROTO);
1289                 }
1290
1291                 *(struct lustre_id *)val = *reply;
1292         } else {
1293                 __u32 *reply;
1294                 
1295                 reply = lustre_swab_repbuf(req, 0, sizeof(*reply),
1296                                            lustre_swab_generic_32s);
1297                 if (reply == NULL) {
1298                         CERROR("Can't unpack %s\n", (char *)key);
1299                         GOTO(out_req, rc = -EPROTO);
1300                 }
1301                 *((__u32 *)val) = *reply;
1302         }
1303 out_req:
1304         ptlrpc_req_finished(req);
1305         RETURN(rc);
1306 }
1307
1308 int mdc_obj_create(struct obd_export *exp, struct obdo *oa,
1309                    void *acl, int acl_size,
1310                    struct lov_stripe_md **ea, struct obd_trans_info *oti)
1311 {
1312         struct ptlrpc_request *request;
1313         struct ost_body *body;
1314         char *acl_buf;
1315         int rc, size[2] = { sizeof(*body), acl_size };
1316         ENTRY;
1317
1318         LASSERT(oa);
1319
1320         request = ptlrpc_prep_req(class_exp2cliimp(exp), LUSTRE_OBD_VERSION,
1321                                   OST_CREATE, 2, size, NULL);
1322         if (!request)
1323                 GOTO(out_req, rc = -ENOMEM);
1324
1325         body = lustre_msg_buf(request->rq_reqmsg, 0, sizeof (*body));
1326         memcpy(&body->oa, oa, sizeof(body->oa));
1327
1328         if (acl_size) {
1329                 acl_buf = lustre_msg_buf(request->rq_reqmsg, 1, acl_size);
1330                 memcpy(acl_buf, acl, acl_size);
1331         }
1332
1333         request->rq_replen = lustre_msg_size(1, size);
1334         rc = ptlrpc_queue_wait(request);
1335         if (rc)
1336                 GOTO(out_req, rc);
1337
1338         body = lustre_swab_repbuf(request, 0, sizeof(*body),
1339                                   lustre_swab_ost_body);
1340         if (body == NULL) {
1341                 CERROR ("can't unpack ost_body\n");
1342                 GOTO (out_req, rc = -EPROTO);
1343         }
1344
1345         memcpy(oa, &body->oa, sizeof(*oa));
1346
1347         /* store ino/generation for recovery */
1348         body = lustre_msg_buf(request->rq_reqmsg, 0, sizeof (*body));
1349         body->oa.o_id = oa->o_id;
1350         body->oa.o_generation = oa->o_generation;
1351         body->oa.o_fid = oa->o_fid;
1352         body->oa.o_mds = oa->o_mds;
1353
1354         CDEBUG(D_HA, "transno: "LPD64"\n", request->rq_repmsg->transno);
1355         EXIT;
1356 out_req:
1357         ptlrpc_req_finished(request);
1358         return rc;
1359 }
1360
1361 int mdc_brw(int rw, struct obd_export *exp, struct obdo *oa,
1362             struct lov_stripe_md *ea, obd_count oa_bufs,
1363             struct brw_page *pgarr, struct obd_trans_info *oti)
1364 {
1365         struct ptlrpc_bulk_desc *desc;
1366         struct niobuf_remote *niobuf;
1367         struct ptlrpc_request *req;
1368         struct obd_ioobj *ioobj;
1369         struct ost_body *body;
1370         int err, opc, i;
1371         int size[3];
1372
1373         opc = ((rw & OBD_BRW_WRITE) != 0) ? OST_WRITE : OST_READ;
1374         
1375         size[0] = sizeof(*body);
1376         size[1] = sizeof(*ioobj);
1377         size[2] = oa_bufs * sizeof(*niobuf);
1378
1379         req = ptlrpc_prep_req(class_exp2cliimp(exp), LUSTRE_OBD_VERSION, opc,
1380                               3, size, NULL);
1381         LASSERT(req != NULL);
1382
1383         if (opc == OST_WRITE)
1384                 desc = ptlrpc_prep_bulk_imp(req, oa_bufs, BULK_GET_SOURCE,
1385                                             OST_BULK_PORTAL);
1386         else
1387                 desc = ptlrpc_prep_bulk_imp(req, oa_bufs, BULK_PUT_SINK,
1388                                             OST_BULK_PORTAL);
1389         LASSERT(desc != NULL);
1390
1391         body = lustre_msg_buf(req->rq_reqmsg, 0, sizeof(*body));
1392         ioobj = lustre_msg_buf(req->rq_reqmsg, 1, sizeof(*ioobj));
1393         niobuf = lustre_msg_buf(req->rq_reqmsg, 2, oa_bufs * sizeof(*niobuf));
1394
1395         memcpy(&body->oa, oa, sizeof(*oa));
1396         obdo_to_ioobj(oa, ioobj);
1397         ioobj->ioo_bufcnt = oa_bufs;
1398
1399         for (i = 0; i < oa_bufs; i++, niobuf++) {
1400                 struct brw_page *pg = &pgarr[i];
1401
1402                 LASSERT(pg->count > 0);
1403                 LASSERT((pg->disk_offset & ~PAGE_MASK) + pg->count <= PAGE_SIZE);
1404
1405                 ptlrpc_prep_bulk_page(desc, pg->pg, pg->disk_offset & ~PAGE_MASK,
1406                                       pg->count);
1407
1408                 niobuf->offset = pg->disk_offset;
1409                 niobuf->len = pg->count;
1410                 niobuf->flags = pg->flag;
1411         }
1412
1413         /* size[0] still sizeof (*body) */
1414         if (opc == OST_WRITE) {
1415                 /* 1 RC per niobuf */
1416                 size[1] = sizeof(__u32) * oa_bufs;
1417                 req->rq_replen = lustre_msg_size(2, size);
1418         } else {
1419                 /* 1 RC for the whole I/O */
1420                 req->rq_replen = lustre_msg_size(1, size);
1421         }
1422         err = ptlrpc_queue_wait(req);
1423         LASSERT(err == 0);
1424
1425         ptlrpc_req_finished(req);
1426         return 0;
1427 }
1428
1429 static int mdc_valid_attrs(struct obd_export *exp,
1430                            struct lustre_id *id)
1431 {
1432         struct ldlm_res_id res_id = { .name = {0} };
1433         struct obd_device *obd = exp->exp_obd;
1434         struct lustre_handle lockh;
1435         ldlm_policy_data_t policy;
1436         int flags;
1437         ENTRY;
1438
1439         res_id.name[0] = id_fid(id);
1440         res_id.name[1] = id_group(id);
1441         policy.l_inodebits.bits = MDS_INODELOCK_UPDATE;
1442
1443         CDEBUG(D_INFO, "trying to match res "LPU64"\n",
1444                res_id.name[0]);
1445
1446         /* FIXME use LDLM_FL_TEST_LOCK instead */
1447         flags = LDLM_FL_BLOCK_GRANTED | LDLM_FL_CBPENDING;
1448         if (ldlm_lock_match(obd->obd_namespace, flags, &res_id,
1449                             LDLM_IBITS, &policy, LCK_PR, &lockh)) {
1450                 ldlm_lock_decref(&lockh, LCK_PR);
1451                 RETURN(1);
1452         }
1453
1454         if (ldlm_lock_match(obd->obd_namespace, flags, &res_id,
1455                             LDLM_IBITS, &policy, LCK_PW, &lockh)) {
1456                 ldlm_lock_decref(&lockh, LCK_PW);
1457                 RETURN(1);
1458         }
1459         RETURN(0);
1460 }
1461
1462 static int mdc_change_cbdata_name(struct obd_export *exp,
1463                                   struct lustre_id *pid,
1464                                   char *name, int len,
1465                                   struct lustre_id *cid,
1466                                   ldlm_iterator_t it, void *data)
1467 {
1468         int rc;
1469         rc = mdc_change_cbdata(exp, cid, it, data);
1470         RETURN(rc);
1471 }
1472
1473 struct obd_ops mdc_obd_ops = {
1474         .o_owner         = THIS_MODULE,
1475         .o_attach        = mdc_attach,
1476         .o_detach        = mdc_detach,
1477         .o_setup         = mdc_setup,
1478         .o_precleanup    = mdc_precleanup,
1479         .o_cleanup       = mdc_cleanup,
1480         .o_add_conn      = client_import_add_conn,
1481         .o_del_conn      = client_import_del_conn,
1482         .o_connect       = client_connect_import,
1483         .o_disconnect    = client_disconnect_export,
1484         .o_iocontrol     = mdc_iocontrol,
1485         .o_packmd        = mdc_packmd,
1486         .o_unpackmd      = mdc_unpackmd,
1487         .o_statfs        = mdc_statfs,
1488         .o_pin           = mdc_pin,
1489         .o_unpin         = mdc_unpin,
1490         .o_import_event  = mdc_import_event,
1491         .o_llog_init     = mdc_llog_init,
1492         .o_llog_finish   = mdc_llog_finish,
1493         .o_create        = mdc_obj_create,
1494         .o_set_info      = mdc_set_info,
1495         .o_get_info      = mdc_get_info,
1496         .o_brw           = mdc_brw,
1497         .o_cancel_unused = mdc_cancel_unused,
1498         .o_init_ea_size  = mdc_init_ea_size,
1499 };
1500
1501 struct md_ops mdc_md_ops = {
1502         .m_getstatus     = mdc_getstatus,
1503         .m_getattr       = mdc_getattr,
1504         .m_close         = mdc_close,
1505         .m_create        = mdc_create,
1506         .m_done_writing  = mdc_done_writing,
1507         .m_enqueue       = mdc_enqueue,
1508         .m_getattr_lock  = mdc_getattr_lock,
1509         .m_intent_lock   = mdc_intent_lock,
1510         .m_link          = mdc_link,
1511         .m_rename        = mdc_rename,
1512         .m_setattr       = mdc_setattr,
1513         .m_sync          = mdc_sync,
1514         .m_readpage      = mdc_readpage,
1515         .m_unlink        = mdc_unlink,
1516         .m_valid_attrs   = mdc_valid_attrs,
1517         .m_req2lustre_md = mdc_req2lustre_md,
1518         .m_set_open_replay_data   = mdc_set_open_replay_data,
1519         .m_clear_open_replay_data = mdc_clear_open_replay_data,
1520         .m_store_inode_generation = mdc_store_inode_generation,
1521         .m_set_lock_data = mdc_set_lock_data,
1522         .m_get_real_obd  = mdc_get_real_obd,
1523         .m_change_cbdata_name = mdc_change_cbdata_name,
1524         .m_change_cbdata = mdc_change_cbdata,
1525 };
1526
1527 int __init mdc_init(void)
1528 {
1529         struct lprocfs_static_vars lvars;
1530         lprocfs_init_vars(mdc, &lvars);
1531         return class_register_type(&mdc_obd_ops, &mdc_md_ops, lvars.module_vars,
1532                                    LUSTRE_MDC_NAME);
1533 }
1534
1535 #ifdef __KERNEL__
1536 static void /*__exit*/ mdc_exit(void)
1537 {
1538         class_unregister_type(LUSTRE_MDC_NAME);
1539 }
1540
1541 MODULE_AUTHOR("Cluster File Systems, Inc. <info@clusterfs.com>");
1542 MODULE_DESCRIPTION("Lustre Metadata Client");
1543 MODULE_LICENSE("GPL");
1544
1545 EXPORT_SYMBOL(mdc_req2lustre_md);
1546 EXPORT_SYMBOL(mdc_change_cbdata);
1547 EXPORT_SYMBOL(mdc_getstatus);
1548 EXPORT_SYMBOL(mdc_getattr);
1549 EXPORT_SYMBOL(mdc_getattr_lock);
1550 EXPORT_SYMBOL(mdc_create);
1551 EXPORT_SYMBOL(mdc_unlink);
1552 EXPORT_SYMBOL(mdc_rename);
1553 EXPORT_SYMBOL(mdc_link);
1554 EXPORT_SYMBOL(mdc_readpage);
1555 EXPORT_SYMBOL(mdc_setattr);
1556 EXPORT_SYMBOL(mdc_close);
1557 EXPORT_SYMBOL(mdc_done_writing);
1558 EXPORT_SYMBOL(mdc_sync);
1559 EXPORT_SYMBOL(mdc_set_open_replay_data);
1560 EXPORT_SYMBOL(mdc_clear_open_replay_data);
1561 EXPORT_SYMBOL(mdc_store_inode_generation);
1562
1563 module_init(mdc_init);
1564 module_exit(mdc_exit);
1565 #endif