Whamcloud - gitweb
4247568892b843d169482a1eb79a3b6e24dc887a
[fs/lustre-release.git] / lustre / ptlrpc / pack_generic.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/ptlrpc/pack_generic.c
37  *
38  * (Un)packing of OST requests
39  *
40  * Author: Peter J. Braam <braam@clusterfs.com>
41  * Author: Phil Schwan <phil@clusterfs.com>
42  * Author: Eric Barton <eeb@clusterfs.com>
43  */
44
45 #define DEBUG_SUBSYSTEM S_RPC
46 #ifndef __KERNEL__
47 # include <liblustre.h>
48 #endif
49
50 #include <libcfs/libcfs.h>
51
52 #include <obd_support.h>
53 #include <obd_class.h>
54 #include <lustre_net.h>
55 #include <obd_cksum.h>
56 #include <lustre/ll_fiemap.h>
57
58 static inline int lustre_msg_hdr_size_v2(int count)
59 {
60         return size_round(offsetof(struct lustre_msg_v2, lm_buflens[count]));
61 }
62
63 int lustre_msg_hdr_size(__u32 magic, int count)
64 {
65         switch (magic) {
66         case LUSTRE_MSG_MAGIC_V2:
67                 return lustre_msg_hdr_size_v2(count);
68         default:
69                 LASSERTF(0, "incorrect message magic: %08x\n", magic);
70                 return -EINVAL;
71         }
72 }
73 EXPORT_SYMBOL(lustre_msg_hdr_size);
74
75 int lustre_msg_swabbed(struct lustre_msg *msg)
76 {
77         return (msg->lm_magic == LUSTRE_MSG_MAGIC_V2_SWABBED);
78 }
79
80 static inline int
81 lustre_msg_check_version_v2(struct lustre_msg_v2 *msg, __u32 version)
82 {
83         __u32 ver = lustre_msg_get_version(msg);
84         return (ver & LUSTRE_VERSION_MASK) != version;
85 }
86
87 int lustre_msg_check_version(struct lustre_msg *msg, __u32 version)
88 {
89         switch (msg->lm_magic) {
90         case LUSTRE_MSG_MAGIC_V1:
91         case LUSTRE_MSG_MAGIC_V1_SWABBED:
92                 CERROR("msg v1 not supported - please upgrade you system\n");
93                 return -EINVAL; 
94         case LUSTRE_MSG_MAGIC_V2:
95         case LUSTRE_MSG_MAGIC_V2_SWABBED:
96                 return lustre_msg_check_version_v2(msg, version);
97         default:
98                 CERROR("incorrect message magic: %08x\n", msg->lm_magic);
99                 return 0;
100         }
101 }
102
103 /* early reply size */
104 int lustre_msg_early_size() {
105         static int size = 0;
106         if (!size)
107                 size = lustre_msg_size(LUSTRE_MSG_MAGIC_V2, 1, NULL);
108         return size;
109 }
110 EXPORT_SYMBOL(lustre_msg_early_size);
111
112 int lustre_msg_size_v2(int count, __u32 *lengths)
113 {
114         int size;
115         int i;
116
117         size = lustre_msg_hdr_size_v2(count);
118         for (i = 0; i < count; i++)
119                 size += size_round(lengths[i]);
120
121         return size;
122 }
123 EXPORT_SYMBOL(lustre_msg_size_v2);
124
125 /* This returns the size of the buffer that is required to hold a lustre_msg
126  * with the given sub-buffer lengths.
127  * NOTE: this should only be used for NEW requests, and should always be
128  *       in the form of a v2 request.  If this is a connection to a v1
129  *       target then the first buffer will be stripped because the ptlrpc
130  *       data is part of the lustre_msg_v1 header. b=14043 */
131 int lustre_msg_size(__u32 magic, int count, __u32 *lens)
132 {
133         __u32 size[] = { sizeof(struct ptlrpc_body) };
134
135         if (!lens) {
136                 LASSERT(count == 1);
137                 lens = size;
138         }
139
140         LASSERT(count > 0);
141         LASSERT(lens[MSG_PTLRPC_BODY_OFF] == sizeof(struct ptlrpc_body));
142
143         switch (magic) {
144         case LUSTRE_MSG_MAGIC_V2:
145                 return lustre_msg_size_v2(count, lens);
146         default:
147                 LASSERTF(0, "incorrect message magic: %08x\n", magic);
148                 return -EINVAL;
149         }
150 }
151
152 /* This is used to determine the size of a buffer that was already packed
153  * and will correctly handle the different message formats. */
154 int lustre_packed_msg_size(struct lustre_msg *msg)
155 {
156         switch (msg->lm_magic) {
157         case LUSTRE_MSG_MAGIC_V2:
158                 return lustre_msg_size_v2(msg->lm_bufcount, msg->lm_buflens);
159         default:
160                 CERROR("incorrect message magic: %08x\n", msg->lm_magic);
161                 return 0;
162         }
163 }
164
165 void lustre_init_msg_v2(struct lustre_msg_v2 *msg, int count, __u32 *lens,
166                         char **bufs)
167 {
168         char *ptr;
169         int i;
170
171         msg->lm_bufcount = count;
172         /* XXX: lm_secflvr uninitialized here */
173         msg->lm_magic = LUSTRE_MSG_MAGIC_V2;
174
175         for (i = 0; i < count; i++)
176                 msg->lm_buflens[i] = lens[i];
177
178         if (bufs == NULL)
179                 return;
180
181         ptr = (char *)msg + lustre_msg_hdr_size_v2(count);
182         for (i = 0; i < count; i++) {
183                 char *tmp = bufs[i];
184                 LOGL(tmp, lens[i], ptr);
185         }
186 }
187 EXPORT_SYMBOL(lustre_init_msg_v2);
188
189 static int lustre_pack_request_v2(struct ptlrpc_request *req,
190                                   int count, __u32 *lens, char **bufs)
191 {
192         int reqlen, rc;
193
194         reqlen = lustre_msg_size_v2(count, lens);
195
196         rc = sptlrpc_cli_alloc_reqbuf(req, reqlen);
197         if (rc)
198                 return rc;
199
200         req->rq_reqlen = reqlen;
201
202         lustre_init_msg_v2(req->rq_reqmsg, count, lens, bufs);
203         lustre_msg_add_version(req->rq_reqmsg, PTLRPC_MSG_VERSION);
204         lustre_set_req_swabbed(req, MSG_PTLRPC_BODY_OFF);
205         return 0;
206 }
207
208 int lustre_pack_request(struct ptlrpc_request *req, __u32 magic, int count,
209                         __u32 *lens, char **bufs)
210 {
211         __u32 size[] = { sizeof(struct ptlrpc_body) };
212
213         if (!lens) {
214                 LASSERT(count == 1);
215                 lens = size;
216         }
217
218         LASSERT(count > 0);
219         LASSERT(lens[MSG_PTLRPC_BODY_OFF] == sizeof(struct ptlrpc_body));
220
221         /* only use new format, we don't need to be compatible with 1.4 */
222         magic = LUSTRE_MSG_MAGIC_V2;
223
224         switch (magic) {
225         case LUSTRE_MSG_MAGIC_V2:
226                 return lustre_pack_request_v2(req, count, lens, bufs);
227         default:
228                 LASSERTF(0, "incorrect message magic: %08x\n", magic);
229                 return -EINVAL;
230         }
231 }
232
233 #if RS_DEBUG
234 CFS_LIST_HEAD(ptlrpc_rs_debug_lru);
235 spinlock_t ptlrpc_rs_debug_lock;
236
237 #define PTLRPC_RS_DEBUG_LRU_ADD(rs)                                     \
238 do {                                                                    \
239         spin_lock(&ptlrpc_rs_debug_lock);                               \
240         list_add_tail(&(rs)->rs_debug_list, &ptlrpc_rs_debug_lru);      \
241         spin_unlock(&ptlrpc_rs_debug_lock);                             \
242 } while (0)
243
244 #define PTLRPC_RS_DEBUG_LRU_DEL(rs)             \
245 do {                                            \
246         spin_lock(&ptlrpc_rs_debug_lock);       \
247         list_del(&(rs)->rs_debug_list);         \
248         spin_unlock(&ptlrpc_rs_debug_lock);     \
249 } while (0)
250 #else
251 # define PTLRPC_RS_DEBUG_LRU_ADD(rs) do {} while(0)
252 # define PTLRPC_RS_DEBUG_LRU_DEL(rs) do {} while(0)
253 #endif
254
255 struct ptlrpc_reply_state *lustre_get_emerg_rs(struct ptlrpc_service *svc)
256 {
257         struct ptlrpc_reply_state *rs = NULL;
258
259         spin_lock(&svc->srv_lock);
260         /* See if we have anything in a pool, and wait if nothing */
261         while (list_empty(&svc->srv_free_rs_list)) {
262                 struct l_wait_info lwi;
263                 int rc;
264                 spin_unlock(&svc->srv_lock);
265                 /* If we cannot get anything for some long time, we better
266                    bail out instead of waiting infinitely */
267                 lwi = LWI_TIMEOUT(cfs_time_seconds(10), NULL, NULL);
268                 rc = l_wait_event(svc->srv_free_rs_waitq,
269                                   !list_empty(&svc->srv_free_rs_list), &lwi);
270                 if (rc)
271                         goto out;
272                 spin_lock(&svc->srv_lock);
273         }
274
275         rs = list_entry(svc->srv_free_rs_list.next, struct ptlrpc_reply_state,
276                         rs_list);
277         list_del(&rs->rs_list);
278         spin_unlock(&svc->srv_lock);
279         LASSERT(rs);
280         memset(rs, 0, svc->srv_max_reply_size);
281         rs->rs_service = svc;
282         rs->rs_prealloc = 1;
283 out:
284         return rs;
285 }
286
287 void lustre_put_emerg_rs(struct ptlrpc_reply_state *rs)
288 {
289         struct ptlrpc_service *svc = rs->rs_service;
290
291         LASSERT(svc);
292
293         spin_lock(&svc->srv_lock);
294         list_add(&rs->rs_list, &svc->srv_free_rs_list);
295         spin_unlock(&svc->srv_lock);
296         cfs_waitq_signal(&svc->srv_free_rs_waitq);
297 }
298
299 int lustre_pack_reply_v2(struct ptlrpc_request *req, int count,
300                          __u32 *lens, char **bufs, int flags)
301 {
302         struct ptlrpc_reply_state *rs;
303         int                        msg_len, rc;
304         ENTRY;
305
306         LASSERT(req->rq_reply_state == NULL);
307
308         if ((flags & LPRFL_EARLY_REPLY) == 0)
309                 req->rq_packed_final = 1;
310
311         msg_len = lustre_msg_size_v2(count, lens);
312         rc = sptlrpc_svc_alloc_rs(req, msg_len);
313         if (rc)
314                 RETURN(rc);
315
316         rs = req->rq_reply_state;
317         atomic_set(&rs->rs_refcount, 1);        /* 1 ref for rq_reply_state */
318         rs->rs_cb_id.cbid_fn = reply_out_callback;
319         rs->rs_cb_id.cbid_arg = rs;
320         rs->rs_service = req->rq_rqbd->rqbd_service;
321         CFS_INIT_LIST_HEAD(&rs->rs_exp_list);
322         CFS_INIT_LIST_HEAD(&rs->rs_obd_list);
323
324         req->rq_replen = msg_len;
325         req->rq_reply_state = rs;
326         req->rq_repmsg = rs->rs_msg;
327
328         lustre_init_msg_v2(rs->rs_msg, count, lens, bufs);
329         lustre_msg_add_version(rs->rs_msg, PTLRPC_MSG_VERSION);
330         lustre_set_rep_swabbed(req, MSG_PTLRPC_BODY_OFF);
331
332         PTLRPC_RS_DEBUG_LRU_ADD(rs);
333
334         RETURN(0);
335 }
336 EXPORT_SYMBOL(lustre_pack_reply_v2);
337
338 int lustre_pack_reply_flags(struct ptlrpc_request *req, int count, __u32 *lens,
339                             char **bufs, int flags)
340 {
341         int rc = 0;
342         __u32 size[] = { sizeof(struct ptlrpc_body) };
343
344         if (!lens) {
345                 LASSERT(count == 1);
346                 lens = size;
347         }
348
349         LASSERT(count > 0);
350         LASSERT(lens[MSG_PTLRPC_BODY_OFF] == sizeof(struct ptlrpc_body));
351
352         switch (req->rq_reqmsg->lm_magic) {
353         case LUSTRE_MSG_MAGIC_V2:
354         case LUSTRE_MSG_MAGIC_V2_SWABBED:
355                 rc = lustre_pack_reply_v2(req, count, lens, bufs, flags);
356                 break;
357         default:
358                 LASSERTF(0, "incorrect message magic: %08x\n",
359                          req->rq_reqmsg->lm_magic);
360                 rc = -EINVAL;
361         }
362         if (rc != 0)
363                 CERROR("lustre_pack_reply failed: rc=%d size=%d\n", rc,
364                        lustre_msg_size(req->rq_reqmsg->lm_magic, count, lens));
365         return rc;
366 }
367
368 int lustre_pack_reply(struct ptlrpc_request *req, int count, __u32 *lens,
369                       char **bufs)
370 {
371         return lustre_pack_reply_flags(req, count, lens, bufs, 0);
372 }
373
374 void *lustre_msg_buf_v2(struct lustre_msg_v2 *m, int n, int min_size)
375 {
376         int i, offset, buflen, bufcount;
377
378         LASSERT(m != NULL);
379         LASSERT(n >= 0);
380
381         bufcount = m->lm_bufcount;
382         if (unlikely(n >= bufcount)) {
383                 CDEBUG(D_INFO, "msg %p buffer[%d] not present (count %d)\n",
384                        m, n, bufcount);
385                 return NULL;
386         }
387
388         buflen = m->lm_buflens[n];
389         if (unlikely(buflen < min_size)) {
390                 CERROR("msg %p buffer[%d] size %d too small (required %d)\n",
391                        m, n, buflen, min_size);
392                 return NULL;
393         }
394
395         offset = lustre_msg_hdr_size_v2(bufcount);
396         for (i = 0; i < n; i++)
397                 offset += size_round(m->lm_buflens[i]);
398
399         return (char *)m + offset;
400 }
401
402 void *lustre_msg_buf(struct lustre_msg *m, int n, int min_size)
403 {
404         switch (m->lm_magic) {
405         case LUSTRE_MSG_MAGIC_V2:
406         case LUSTRE_MSG_MAGIC_V2_SWABBED:
407                 return lustre_msg_buf_v2(m, n, min_size);
408         default:
409                 LASSERTF(0, "incorrect message magic: %08x(msg:%p)\n", m->lm_magic, m);
410                 return NULL;
411         }
412 }
413
414 int lustre_shrink_msg_v2(struct lustre_msg_v2 *msg, int segment,
415                          unsigned int newlen, int move_data)
416 {
417         char   *tail = NULL, *newpos;
418         int     tail_len = 0, n;
419
420         LASSERT(msg);
421         LASSERT(msg->lm_bufcount > segment);
422         LASSERT(msg->lm_buflens[segment] >= newlen);
423
424         if (msg->lm_buflens[segment] == newlen)
425                 goto out;
426
427         if (move_data && msg->lm_bufcount > segment + 1) {
428                 tail = lustre_msg_buf_v2(msg, segment + 1, 0);
429                 for (n = segment + 1; n < msg->lm_bufcount; n++)
430                         tail_len += size_round(msg->lm_buflens[n]);
431         }
432
433         msg->lm_buflens[segment] = newlen;
434
435         if (tail && tail_len) {
436                 newpos = lustre_msg_buf_v2(msg, segment + 1, 0);
437                 LASSERT(newpos <= tail);
438                 if (newpos != tail)
439                         memcpy(newpos, tail, tail_len);
440         }
441 out:
442         return lustre_msg_size_v2(msg->lm_bufcount, msg->lm_buflens);
443 }
444
445 /*
446  * for @msg, shrink @segment to size @newlen. if @move_data is non-zero,
447  * we also move data forward from @segment + 1.
448  *
449  * if @newlen == 0, we remove the segment completely, but we still keep the
450  * totally bufcount the same to save possible data moving. this will leave a
451  * unused segment with size 0 at the tail, but that's ok.
452  *
453  * return new msg size after shrinking.
454  *
455  * CAUTION:
456  * + if any buffers higher than @segment has been filled in, must call shrink
457  *   with non-zero @move_data.
458  * + caller should NOT keep pointers to msg buffers which higher than @segment
459  *   after call shrink.
460  */
461 int lustre_shrink_msg(struct lustre_msg *msg, int segment,
462                       unsigned int newlen, int move_data)
463 {
464         switch (msg->lm_magic) {
465         case LUSTRE_MSG_MAGIC_V2:
466                 return lustre_shrink_msg_v2(msg, segment, newlen, move_data);
467         default:
468                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
469         }
470 }
471
472 void lustre_free_reply_state(struct ptlrpc_reply_state *rs)
473 {
474         PTLRPC_RS_DEBUG_LRU_DEL(rs);
475
476         LASSERT (atomic_read(&rs->rs_refcount) == 0);
477         LASSERT (!rs->rs_difficult || rs->rs_handled);
478         LASSERT (!rs->rs_on_net);
479         LASSERT (!rs->rs_scheduled);
480         LASSERT (rs->rs_export == NULL);
481         LASSERT (rs->rs_nlocks == 0);
482         LASSERT (list_empty(&rs->rs_exp_list));
483         LASSERT (list_empty(&rs->rs_obd_list));
484
485         sptlrpc_svc_free_rs(rs);
486 }
487
488 static int lustre_unpack_msg_v2(struct lustre_msg_v2 *m, int len)
489 {
490         int flipped, required_len, i;
491
492         /* Now we know the sender speaks my language. */
493         required_len = lustre_msg_hdr_size_v2(0);
494         if (len < required_len) {
495                 /* can't even look inside the message */
496                 CERROR("message length %d too small for lustre_msg\n", len);
497                 return -EINVAL;
498         }
499
500         flipped = lustre_msg_swabbed(m);
501
502         if (flipped) {
503                 __swab32s(&m->lm_bufcount);
504                 __swab32s(&m->lm_secflvr);
505                 __swab32s(&m->lm_repsize);
506                 __swab32s(&m->lm_cksum);
507                 __swab32s(&m->lm_flags);
508                 CLASSERT(offsetof(typeof(*m), lm_padding_2) != 0);
509                 CLASSERT(offsetof(typeof(*m), lm_padding_3) != 0);
510         }
511
512         required_len = lustre_msg_hdr_size_v2(m->lm_bufcount);
513         if (len < required_len) {
514                 /* didn't receive all the buffer lengths */
515                 CERROR ("message length %d too small for %d buflens\n",
516                         len, m->lm_bufcount);
517                 return -EINVAL;
518         }
519         
520         for (i = 0; i < m->lm_bufcount; i++) {
521                 if (flipped)
522                         __swab32s(&m->lm_buflens[i]);
523                 required_len += size_round(m->lm_buflens[i]);
524         }
525
526         if (len < required_len) {
527                 CERROR("len: %d, required_len %d\n", len, required_len);
528                 CERROR("bufcount: %d\n", m->lm_bufcount);
529                 for (i = 0; i < m->lm_bufcount; i++)
530                         CERROR("buffer %d length %d\n", i, m->lm_buflens[i]);
531                 return -EINVAL;
532         }
533
534         return 0;
535 }
536
537 int lustre_unpack_msg(struct lustre_msg *m, int len)
538 {
539         int required_len, rc;
540         ENTRY;
541
542         /* We can provide a slightly better error log, if we check the
543          * message magic and version first.  In the future, struct
544          * lustre_msg may grow, and we'd like to log a version mismatch,
545          * rather than a short message.
546          *
547          */
548         required_len = offsetof(struct lustre_msg, lm_magic) +
549                        sizeof(m->lm_magic);
550         if (len < required_len) {
551                 /* can't even look inside the message */
552                 CERROR("message length %d too small for magic/version check\n",
553                        len);
554                 RETURN(-EINVAL);
555         }
556
557         switch (m->lm_magic) {
558         case LUSTRE_MSG_MAGIC_V2:
559         case LUSTRE_MSG_MAGIC_V2_SWABBED:
560                 rc = lustre_unpack_msg_v2(m, len);
561                 break;
562         default:
563                 CERROR("bad lustre msg magic: %#08X\n", m->lm_magic);
564                 return -EINVAL;
565         }
566
567         RETURN(rc);
568 }
569
570 static inline int lustre_unpack_ptlrpc_body_v2(struct lustre_msg_v2 *m,
571                                                int offset)
572 {
573         struct ptlrpc_body *pb;
574
575         pb = lustre_msg_buf_v2(m, offset, sizeof(*pb));
576         if (!pb) {
577                 CERROR("error unpacking ptlrpc body\n");
578                 return -EFAULT;
579         }
580         if (lustre_msg_swabbed(m))
581                 lustre_swab_ptlrpc_body(pb);
582
583         if ((pb->pb_version & ~LUSTRE_VERSION_MASK) != PTLRPC_MSG_VERSION) {
584                  CERROR("wrong lustre_msg version %08x\n", pb->pb_version);
585                  return -EINVAL;
586         }
587
588         return flipped;
589 }
590
591 int lustre_unpack_req_ptlrpc_body(struct ptlrpc_request *req, int offset)
592 {
593         switch (req->rq_reqmsg->lm_magic) {
594         case LUSTRE_MSG_MAGIC_V2:
595         case LUSTRE_MSG_MAGIC_V2_SWABBED:
596                 lustre_set_req_swabbed(req, offset);
597                 return lustre_unpack_ptlrpc_body_v2(req->rq_reqmsg, offset);
598         default:
599                 CERROR("bad lustre msg magic: %#08X\n",
600                        req->rq_reqmsg->lm_magic);
601                 return -EINVAL;
602         }
603 }
604
605 int lustre_unpack_rep_ptlrpc_body(struct ptlrpc_request *req, int offset)
606 {
607         switch (req->rq_repmsg->lm_magic) {
608         case LUSTRE_MSG_MAGIC_V2:
609         case LUSTRE_MSG_MAGIC_V2_SWABBED:
610                 lustre_set_rep_swabbed(req, offset);
611                 return lustre_unpack_ptlrpc_body_v2(req->rq_repmsg, offset);
612         default:
613                 CERROR("bad lustre msg magic: %#08X\n",
614                        req->rq_repmsg->lm_magic);
615                 return -EINVAL;
616         }
617 }
618
619 static inline int lustre_msg_buflen_v2(struct lustre_msg_v2 *m, int n)
620 {
621         if (n >= m->lm_bufcount)
622                 return 0;
623
624         return m->lm_buflens[n];
625 }
626
627 /**
628  * lustre_msg_buflen - return the length of buffer @n in message @m
629  * @m - lustre_msg (request or reply) to look at
630  * @n - message index (base 0)
631  *
632  * returns zero for non-existent message indices
633  */
634 int lustre_msg_buflen(struct lustre_msg *m, int n)
635 {
636         switch (m->lm_magic) {
637         case LUSTRE_MSG_MAGIC_V2:
638         case LUSTRE_MSG_MAGIC_V2_SWABBED:
639                 return lustre_msg_buflen_v2(m, n);
640         default:
641                 CERROR("incorrect message magic: %08x\n", m->lm_magic);
642                 return -EINVAL;
643         }
644 }
645 EXPORT_SYMBOL(lustre_msg_buflen);
646
647 static inline void
648 lustre_msg_set_buflen_v2(struct lustre_msg_v2 *m, int n, int len)
649 {
650         if (n >= m->lm_bufcount)
651                 LBUG();
652
653         m->lm_buflens[n] = len;
654 }
655
656 void lustre_msg_set_buflen(struct lustre_msg *m, int n, int len)
657 {
658         switch (m->lm_magic) {
659         case LUSTRE_MSG_MAGIC_V2:
660                 lustre_msg_set_buflen_v2(m, n, len);
661                 return;
662         default:
663                 LASSERTF(0, "incorrect message magic: %08x\n", m->lm_magic);
664         }
665 }
666
667 EXPORT_SYMBOL(lustre_msg_set_buflen);
668
669 /* NB return the bufcount for lustre_msg_v2 format, so if message is packed
670  * in V1 format, the result is one bigger. (add struct ptlrpc_body). */
671 int lustre_msg_bufcount(struct lustre_msg *m)
672 {
673         switch (m->lm_magic) {
674         case LUSTRE_MSG_MAGIC_V2:
675         case LUSTRE_MSG_MAGIC_V2_SWABBED:
676                 return m->lm_bufcount;
677         default:
678                 CERROR("incorrect message magic: %08x\n", m->lm_magic);
679                 return -EINVAL;
680         }
681 }
682 EXPORT_SYMBOL(lustre_msg_bufcount);
683
684 char *lustre_msg_string(struct lustre_msg *m, int index, int max_len)
685 {
686         /* max_len == 0 means the string should fill the buffer */
687         char *str;
688         int slen, blen;
689
690         switch (m->lm_magic) {
691         case LUSTRE_MSG_MAGIC_V2:
692         case LUSTRE_MSG_MAGIC_V2_SWABBED:
693                 str = lustre_msg_buf_v2(m, index, 0);
694                 blen = lustre_msg_buflen_v2(m, index);
695                 break;
696         default:
697                 LASSERTF(0, "incorrect message magic: %08x\n", m->lm_magic);
698         }
699
700         if (str == NULL) {
701                 CERROR ("can't unpack string in msg %p buffer[%d]\n", m, index);
702                 return NULL;
703         }
704
705         slen = strnlen(str, blen);
706
707         if (slen == blen) {                     /* not NULL terminated */
708                 CERROR("can't unpack non-NULL terminated string in "
709                         "msg %p buffer[%d] len %d\n", m, index, blen);
710                 return NULL;
711         }
712
713         if (max_len == 0) {
714                 if (slen != blen - 1) {
715                         CERROR("can't unpack short string in msg %p "
716                                "buffer[%d] len %d: strlen %d\n",
717                                m, index, blen, slen);
718                         return NULL;
719                 }
720         } else if (slen > max_len) {
721                 CERROR("can't unpack oversized string in msg %p "
722                        "buffer[%d] len %d strlen %d: max %d expected\n",
723                        m, index, blen, slen, max_len);
724                 return NULL;
725         }
726
727         return str;
728 }
729
730 /* Wrap up the normal fixed length cases */
731 void *lustre_swab_buf(struct lustre_msg *msg, int index, int min_size,
732                       void *swabber)
733 {
734         void *ptr = NULL;
735
736         switch (msg->lm_magic) {
737         case LUSTRE_MSG_MAGIC_V2:
738         case LUSTRE_MSG_MAGIC_V2_SWABBED:
739                 ptr = lustre_msg_buf_v2(msg, index, min_size);
740                 break;
741         default:
742                 CERROR("incorrect message magic: %08x\n", msg->lm_magic);
743         }
744         if (ptr == NULL)
745                 return NULL;
746
747         if (swabber != NULL && lustre_msg_swabbed(msg))
748                 ((void (*)(void *))swabber)(ptr);
749
750         return ptr;
751 }
752
753 void *lustre_swab_reqbuf(struct ptlrpc_request *req, int index, int min_size,
754                          void *swabber)
755 {
756         lustre_set_req_swabbed(req, index);
757         return lustre_swab_buf(req->rq_reqmsg, index, min_size, swabber);
758 }
759
760 void *lustre_swab_repbuf(struct ptlrpc_request *req, int index, int min_size,
761                          void *swabber)
762 {
763         lustre_set_rep_swabbed(req, index);
764         return lustre_swab_buf(req->rq_repmsg, index, min_size, swabber);
765 }
766
767 __u32 lustre_msghdr_get_flags(struct lustre_msg *msg)
768 {
769         switch (msg->lm_magic) {
770         case LUSTRE_MSG_MAGIC_V1:
771         case LUSTRE_MSG_MAGIC_V1_SWABBED:
772                 return 0;
773         case LUSTRE_MSG_MAGIC_V2:
774         case LUSTRE_MSG_MAGIC_V2_SWABBED:
775                 /* already in host endian */
776                 return msg->lm_flags;
777         default:
778                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
779                 return 0;
780         }
781 }
782 EXPORT_SYMBOL(lustre_msghdr_get_flags);
783
784 void lustre_msghdr_set_flags(struct lustre_msg *msg, __u32 flags)
785 {
786         switch (msg->lm_magic) {
787         case LUSTRE_MSG_MAGIC_V1:
788                 return;
789         case LUSTRE_MSG_MAGIC_V2:
790                 msg->lm_flags = flags;
791                 return;
792         default:
793                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
794         }
795 }
796
797 __u32 lustre_msg_get_flags(struct lustre_msg *msg)
798 {
799         switch (msg->lm_magic) {
800         case LUSTRE_MSG_MAGIC_V2:
801         case LUSTRE_MSG_MAGIC_V2_SWABBED: {
802                 struct ptlrpc_body *pb;
803
804                 pb = lustre_msg_buf_v2(msg, MSG_PTLRPC_BODY_OFF, sizeof(*pb));
805                 if (!pb) {
806                         CERROR("invalid msg %p: no ptlrpc body!\n", msg);
807                         return 0;
808                 }
809                 return pb->pb_flags;
810         }
811         default:
812                 /* flags might be printed in debug code while message
813                  * uninitialized */
814                 return 0;
815         }
816 }
817
818 void lustre_msg_add_flags(struct lustre_msg *msg, int flags)
819 {
820         switch (msg->lm_magic) {
821         case LUSTRE_MSG_MAGIC_V2: {
822                 struct ptlrpc_body *pb;
823
824                 pb = lustre_msg_buf_v2(msg, MSG_PTLRPC_BODY_OFF, sizeof(*pb));
825                 LASSERTF(pb, "invalid msg %p: no ptlrpc body!\n", msg);
826                 pb->pb_flags |= flags;
827                 return;
828         }
829         default:
830                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
831         }
832 }
833
834 void lustre_msg_set_flags(struct lustre_msg *msg, int flags)
835 {
836         switch (msg->lm_magic) {
837         case LUSTRE_MSG_MAGIC_V2: {
838                 struct ptlrpc_body *pb;
839
840                 pb = lustre_msg_buf_v2(msg, MSG_PTLRPC_BODY_OFF, sizeof(*pb));
841                 LASSERTF(pb, "invalid msg %p: no ptlrpc body!\n", msg);
842                 pb->pb_flags = flags;
843                 return;
844         }
845         default:
846                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
847         }
848 }
849
850 void lustre_msg_clear_flags(struct lustre_msg *msg, int flags)
851 {
852         switch (msg->lm_magic) {
853         case LUSTRE_MSG_MAGIC_V2:
854         case LUSTRE_MSG_MAGIC_V2_SWABBED: {
855                 struct ptlrpc_body *pb;
856
857                 pb = lustre_msg_buf_v2(msg, MSG_PTLRPC_BODY_OFF, sizeof(*pb));
858                 LASSERTF(pb, "invalid msg %p: no ptlrpc body!\n", msg);
859                 pb->pb_flags &= ~(MSG_GEN_FLAG_MASK & flags);
860                 return;
861         }
862         default:
863                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
864         }
865 }
866
867 __u32 lustre_msg_get_op_flags(struct lustre_msg *msg)
868 {
869         switch (msg->lm_magic) {
870         case LUSTRE_MSG_MAGIC_V2:
871         case LUSTRE_MSG_MAGIC_V2_SWABBED: {
872                 struct ptlrpc_body *pb;
873
874                 pb = lustre_msg_buf_v2(msg, MSG_PTLRPC_BODY_OFF, sizeof(*pb));
875                 if (!pb) {
876                         CERROR("invalid msg %p: no ptlrpc body!\n", msg);
877                         return 0;
878                 }
879                 return pb->pb_op_flags;
880         }
881         default:
882                 return 0;
883         }
884 }
885
886 void lustre_msg_add_op_flags(struct lustre_msg *msg, int flags)
887 {
888         switch (msg->lm_magic) {
889         case LUSTRE_MSG_MAGIC_V2: {
890                 struct ptlrpc_body *pb;
891
892                 pb = lustre_msg_buf_v2(msg, MSG_PTLRPC_BODY_OFF, sizeof(*pb));
893                 LASSERTF(pb, "invalid msg %p: no ptlrpc body!\n", msg);
894                 pb->pb_op_flags |= flags;
895                 return;
896         }
897         default:
898                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
899         }
900 }
901
902 void lustre_msg_set_op_flags(struct lustre_msg *msg, int flags)
903 {
904         switch (msg->lm_magic) {
905         case LUSTRE_MSG_MAGIC_V2: {
906                 struct ptlrpc_body *pb;
907
908                 pb = lustre_msg_buf_v2(msg, MSG_PTLRPC_BODY_OFF, sizeof(*pb));
909                 LASSERTF(pb, "invalid msg %p: no ptlrpc body!\n", msg);
910                 pb->pb_op_flags |= flags;
911                 return;
912         }
913         default:
914                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
915         }
916 }
917
918 struct lustre_handle *lustre_msg_get_handle(struct lustre_msg *msg)
919 {
920         switch (msg->lm_magic) {
921         case LUSTRE_MSG_MAGIC_V2:
922         case LUSTRE_MSG_MAGIC_V2_SWABBED: {
923                 struct ptlrpc_body *pb;
924
925                 pb = lustre_msg_buf_v2(msg, MSG_PTLRPC_BODY_OFF, sizeof(*pb));
926                 if (!pb) {
927                         CERROR("invalid msg %p: no ptlrpc body!\n", msg);
928                         return NULL;
929                 }
930                 return &pb->pb_handle;
931         }
932         default:
933                 CERROR("incorrect message magic: %08x\n", msg->lm_magic);
934                 return NULL;
935         }
936 }
937
938 __u32 lustre_msg_get_type(struct lustre_msg *msg)
939 {
940         switch (msg->lm_magic) {
941         case LUSTRE_MSG_MAGIC_V2:
942         case LUSTRE_MSG_MAGIC_V2_SWABBED: {
943                 struct ptlrpc_body *pb;
944
945                 pb = lustre_msg_buf_v2(msg, MSG_PTLRPC_BODY_OFF, sizeof(*pb));
946                 if (!pb) {
947                         CERROR("invalid msg %p: no ptlrpc body!\n", msg);
948                         return PTL_RPC_MSG_ERR;
949                 }
950                 return pb->pb_type;
951         }
952         default:
953                 CERROR("incorrect message magic: %08x\n", msg->lm_magic);
954                 return PTL_RPC_MSG_ERR;
955         }
956 }
957
958 __u32 lustre_msg_get_version(struct lustre_msg *msg)
959 {
960         switch (msg->lm_magic) {
961         case LUSTRE_MSG_MAGIC_V2:
962         case LUSTRE_MSG_MAGIC_V2_SWABBED: {
963                 struct ptlrpc_body *pb;
964
965                 pb = lustre_msg_buf_v2(msg, MSG_PTLRPC_BODY_OFF, sizeof(*pb));
966                 if (!pb) {
967                         CERROR("invalid msg %p: no ptlrpc body!\n", msg);
968                         return 0;
969                 }
970                 return pb->pb_version;
971         }
972         default:
973                 CERROR("incorrect message magic: %08x\n", msg->lm_magic);
974                 return 0;
975         }
976 }
977
978 void lustre_msg_add_version(struct lustre_msg *msg, int version)
979 {
980         switch (msg->lm_magic) {
981         case LUSTRE_MSG_MAGIC_V2:
982         case LUSTRE_MSG_MAGIC_V2_SWABBED: {
983                 struct ptlrpc_body *pb;
984
985                 pb = lustre_msg_buf_v2(msg, MSG_PTLRPC_BODY_OFF, sizeof(*pb));
986                 LASSERTF(pb, "invalid msg %p: no ptlrpc body!\n", msg);
987                 pb->pb_version |= version;
988                 return;
989         }
990         default:
991                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
992         }
993 }
994
995 __u32 lustre_msg_get_opc(struct lustre_msg *msg)
996 {
997         switch (msg->lm_magic) {
998         case LUSTRE_MSG_MAGIC_V2:
999         case LUSTRE_MSG_MAGIC_V2_SWABBED: {
1000                 struct ptlrpc_body *pb;
1001
1002                 pb = lustre_msg_buf_v2(msg, MSG_PTLRPC_BODY_OFF, sizeof(*pb));
1003                 if (!pb) {
1004                         CERROR("invalid msg %p: no ptlrpc body!\n", msg);
1005                         return 0;
1006                 }
1007                 return pb->pb_opc;
1008         }
1009         default:
1010                 CERROR("incorrect message magic: %08x(msg:%p)\n", msg->lm_magic, msg);
1011                 return 0;
1012         }
1013 }
1014
1015 __u64 lustre_msg_get_last_xid(struct lustre_msg *msg)
1016 {
1017         switch (msg->lm_magic) {
1018         case LUSTRE_MSG_MAGIC_V2:
1019         case LUSTRE_MSG_MAGIC_V2_SWABBED: {
1020                 struct ptlrpc_body *pb;
1021
1022                 pb = lustre_msg_buf_v2(msg, MSG_PTLRPC_BODY_OFF, sizeof(*pb));
1023                 if (!pb) {
1024                         CERROR("invalid msg %p: no ptlrpc body!\n", msg);
1025                         return 0;
1026                 }
1027                 return pb->pb_last_xid;
1028         }
1029         default:
1030                 CERROR("incorrect message magic: %08x\n", msg->lm_magic);
1031                 return 0;
1032         }
1033 }
1034
1035 __u64 lustre_msg_get_last_committed(struct lustre_msg *msg)
1036 {
1037         switch (msg->lm_magic) {
1038         case LUSTRE_MSG_MAGIC_V2:
1039         case LUSTRE_MSG_MAGIC_V2_SWABBED: {
1040                 struct ptlrpc_body *pb;
1041
1042                 pb = lustre_msg_buf_v2(msg, MSG_PTLRPC_BODY_OFF, sizeof(*pb));
1043                 if (!pb) {
1044                         CERROR("invalid msg %p: no ptlrpc body!\n", msg);
1045                         return 0;
1046                 }
1047                 return pb->pb_last_committed;
1048         }
1049         default:
1050                 CERROR("incorrect message magic: %08x\n", msg->lm_magic);
1051                 return 0;
1052         }
1053 }
1054
1055 __u64 lustre_msg_get_transno(struct lustre_msg *msg)
1056 {
1057         switch (msg->lm_magic) {
1058         case LUSTRE_MSG_MAGIC_V2:
1059         case LUSTRE_MSG_MAGIC_V2_SWABBED: {
1060                 struct ptlrpc_body *pb;
1061
1062                 pb = lustre_msg_buf_v2(msg, MSG_PTLRPC_BODY_OFF, sizeof(*pb));
1063                 if (!pb) {
1064                         CERROR("invalid msg %p: no ptlrpc body!\n", msg);
1065                         return 0;
1066                 }
1067                 return pb->pb_transno;
1068         }
1069         default:
1070                 CERROR("incorrect message magic: %08x\n", msg->lm_magic);
1071                 return 0;
1072         }
1073 }
1074
1075 int lustre_msg_get_status(struct lustre_msg *msg)
1076 {
1077         switch (msg->lm_magic) {
1078         case LUSTRE_MSG_MAGIC_V2:
1079         case LUSTRE_MSG_MAGIC_V2_SWABBED: {
1080                 struct ptlrpc_body *pb;
1081
1082                 pb = lustre_msg_buf_v2(msg, MSG_PTLRPC_BODY_OFF, sizeof(*pb));
1083                 if (!pb) {
1084                         CERROR("invalid msg %p: no ptlrpc body!\n", msg);
1085                         return -EINVAL;
1086                 }
1087                 return pb->pb_status;
1088         }
1089         default:
1090                 /* status might be printed in debug code while message
1091                  * uninitialized */
1092                 return -EINVAL;
1093         }
1094 }
1095
1096 __u64 lustre_msg_get_slv(struct lustre_msg *msg)
1097 {
1098         switch (msg->lm_magic) {
1099         case LUSTRE_MSG_MAGIC_V2:
1100         case LUSTRE_MSG_MAGIC_V2_SWABBED: {
1101                 struct ptlrpc_body *pb;
1102
1103                 pb = lustre_msg_buf_v2(msg, MSG_PTLRPC_BODY_OFF, sizeof(*pb));
1104                 if (!pb) {
1105                         CERROR("invalid msg %p: no ptlrpc body!\n", msg);
1106                         return -EINVAL;
1107                 }
1108                 return pb->pb_slv;
1109         }
1110         default:
1111                 CERROR("invalid msg magic %x\n", msg->lm_magic);
1112                 return -EINVAL;
1113         }
1114 }
1115
1116
1117 void lustre_msg_set_slv(struct lustre_msg *msg, __u64 slv)
1118 {
1119         switch (msg->lm_magic) {
1120         case LUSTRE_MSG_MAGIC_V2:
1121         case LUSTRE_MSG_MAGIC_V2_SWABBED: {
1122                 struct ptlrpc_body *pb;
1123
1124                 pb = lustre_msg_buf_v2(msg, MSG_PTLRPC_BODY_OFF, sizeof(*pb));
1125                 if (!pb) {
1126                         CERROR("invalid msg %p: no ptlrpc body!\n", msg);
1127                         return;
1128                 }
1129                 pb->pb_slv = slv;
1130                 return;
1131         }
1132         default:
1133                 CERROR("invalid msg magic %x\n", msg->lm_magic);
1134                 return;
1135         }
1136 }
1137
1138 __u32 lustre_msg_get_limit(struct lustre_msg *msg)
1139 {
1140         switch (msg->lm_magic) {
1141         case LUSTRE_MSG_MAGIC_V2:
1142         case LUSTRE_MSG_MAGIC_V2_SWABBED: {
1143                 struct ptlrpc_body *pb;
1144
1145                 pb = lustre_msg_buf_v2(msg, MSG_PTLRPC_BODY_OFF, sizeof(*pb));
1146                 if (!pb) {
1147                         CERROR("invalid msg %p: no ptlrpc body!\n", msg);
1148                         return -EINVAL;
1149                 }
1150                 return pb->pb_limit;
1151         }
1152         default:
1153                 CERROR("invalid msg magic %x\n", msg->lm_magic);
1154                 return -EINVAL;
1155         }
1156 }
1157
1158
1159 void lustre_msg_set_limit(struct lustre_msg *msg, __u64 limit)
1160 {
1161         switch (msg->lm_magic) {
1162         case LUSTRE_MSG_MAGIC_V2:
1163         case LUSTRE_MSG_MAGIC_V2_SWABBED: {
1164                 struct ptlrpc_body *pb;
1165
1166                 pb = lustre_msg_buf_v2(msg, MSG_PTLRPC_BODY_OFF, sizeof(*pb));
1167                 if (!pb) {
1168                         CERROR("invalid msg %p: no ptlrpc body!\n", msg);
1169                         return;
1170                 }
1171                 pb->pb_limit = limit;
1172                 return;
1173         }
1174         default:
1175                 CERROR("invalid msg magic %x\n", msg->lm_magic);
1176                 return;
1177         }
1178 }
1179
1180 __u32 lustre_msg_get_conn_cnt(struct lustre_msg *msg)
1181 {
1182         switch (msg->lm_magic) {
1183         case LUSTRE_MSG_MAGIC_V2:
1184         case LUSTRE_MSG_MAGIC_V2_SWABBED: {
1185                 struct ptlrpc_body *pb;
1186
1187                 pb = lustre_msg_buf_v2(msg, MSG_PTLRPC_BODY_OFF, sizeof(*pb));
1188                 if (!pb) {
1189                         CERROR("invalid msg %p: no ptlrpc body!\n", msg);
1190                         return 0;
1191                 }
1192                 return pb->pb_conn_cnt;
1193         }
1194         default:
1195                 CERROR("incorrect message magic: %08x\n", msg->lm_magic);
1196                 return 0;
1197         }
1198 }
1199
1200 int lustre_msg_is_v1(struct lustre_msg *msg)
1201 {
1202         switch (msg->lm_magic) {
1203         case LUSTRE_MSG_MAGIC_V1:
1204         case LUSTRE_MSG_MAGIC_V1_SWABBED:
1205                 return 1;
1206         default:
1207                 return 0;
1208         }
1209 }
1210
1211 __u32 lustre_msg_get_magic(struct lustre_msg *msg)
1212 {
1213         switch (msg->lm_magic) {
1214         case LUSTRE_MSG_MAGIC_V2:
1215         case LUSTRE_MSG_MAGIC_V2_SWABBED:
1216                 return msg->lm_magic;
1217         default:
1218                 CERROR("incorrect message magic: %08x\n", msg->lm_magic);
1219                 return 0;
1220         }
1221 }
1222
1223 __u32 lustre_msg_get_timeout(struct lustre_msg *msg)
1224 {
1225         switch (msg->lm_magic) {
1226         case LUSTRE_MSG_MAGIC_V1:
1227         case LUSTRE_MSG_MAGIC_V1_SWABBED:
1228                 return 0;
1229         case LUSTRE_MSG_MAGIC_V2:
1230         case LUSTRE_MSG_MAGIC_V2_SWABBED: {
1231                 struct ptlrpc_body *pb;
1232
1233                 pb = lustre_msg_buf_v2(msg, MSG_PTLRPC_BODY_OFF, sizeof(*pb));
1234                 if (!pb) {
1235                         CERROR("invalid msg %p: no ptlrpc body!\n", msg);
1236                         return 0;
1237
1238                 }
1239                 return pb->pb_timeout;
1240         }
1241         default:
1242                 CERROR("incorrect message magic: %08x\n", msg->lm_magic);
1243                 return 0;
1244         }
1245 }
1246
1247 __u32 lustre_msg_get_service_time(struct lustre_msg *msg)
1248 {
1249         switch (msg->lm_magic) {
1250         case LUSTRE_MSG_MAGIC_V1:
1251         case LUSTRE_MSG_MAGIC_V1_SWABBED:
1252                 return 0;
1253         case LUSTRE_MSG_MAGIC_V2:
1254         case LUSTRE_MSG_MAGIC_V2_SWABBED: {
1255                 struct ptlrpc_body *pb;
1256
1257                 pb = lustre_msg_buf_v2(msg, MSG_PTLRPC_BODY_OFF, sizeof(*pb));
1258                 if (!pb) {
1259                         CERROR("invalid msg %p: no ptlrpc body!\n", msg);
1260                         return 0;
1261
1262                 }
1263                 return pb->pb_service_time;
1264         }
1265         default:
1266                 CERROR("incorrect message magic: %08x\n", msg->lm_magic);
1267                 return 0;
1268         }
1269 }
1270
1271 __u32 lustre_msg_get_cksum(struct lustre_msg *msg)
1272 {
1273         switch (msg->lm_magic) {
1274         case LUSTRE_MSG_MAGIC_V1:
1275         case LUSTRE_MSG_MAGIC_V1_SWABBED:
1276                 return 0;
1277         case LUSTRE_MSG_MAGIC_V2:
1278         case LUSTRE_MSG_MAGIC_V2_SWABBED:
1279                 return msg->lm_cksum;
1280         default:
1281                 CERROR("incorrect message magic: %08x\n", msg->lm_magic);
1282                 return 0;
1283         }
1284 }
1285
1286 __u32 lustre_msg_calc_cksum(struct lustre_msg *msg)
1287 {
1288         switch (msg->lm_magic) {
1289         case LUSTRE_MSG_MAGIC_V1:
1290         case LUSTRE_MSG_MAGIC_V1_SWABBED:
1291                 return 0;
1292         case LUSTRE_MSG_MAGIC_V2:
1293         case LUSTRE_MSG_MAGIC_V2_SWABBED: {
1294                 struct ptlrpc_body *pb;
1295                 pb = lustre_msg_buf_v2(msg, MSG_PTLRPC_BODY_OFF, sizeof(*pb));
1296                 LASSERTF(pb, "invalid msg %p: no ptlrpc body!\n", msg);
1297                 return crc32_le(~(__u32)0, (unsigned char *)pb, sizeof(*pb));
1298         }
1299         default:
1300                 CERROR("incorrect message magic: %08x\n", msg->lm_magic);
1301                 return 0;
1302         }
1303 }
1304
1305 void lustre_msg_set_handle(struct lustre_msg *msg, struct lustre_handle *handle)
1306 {
1307         switch (msg->lm_magic) {
1308         case LUSTRE_MSG_MAGIC_V2: {
1309                 struct ptlrpc_body *pb;
1310
1311                 pb = lustre_msg_buf_v2(msg, MSG_PTLRPC_BODY_OFF, sizeof(*pb));
1312                 LASSERTF(pb, "invalid msg %p: no ptlrpc body!\n", msg);
1313                 pb->pb_handle = *handle;
1314                 return;
1315         }
1316         default:
1317                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
1318         }
1319 }
1320
1321 void lustre_msg_set_type(struct lustre_msg *msg, __u32 type)
1322 {
1323         switch (msg->lm_magic) {
1324         case LUSTRE_MSG_MAGIC_V2: {
1325                 struct ptlrpc_body *pb;
1326
1327                 pb = lustre_msg_buf_v2(msg, MSG_PTLRPC_BODY_OFF, sizeof(*pb));
1328                 LASSERTF(pb, "invalid msg %p: no ptlrpc body!\n", msg);
1329                 pb->pb_type = type;
1330                 return;
1331         }
1332         default:
1333                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
1334         }
1335 }
1336
1337 void lustre_msg_set_opc(struct lustre_msg *msg, __u32 opc)
1338 {
1339         switch (msg->lm_magic) {
1340         case LUSTRE_MSG_MAGIC_V2: {
1341                 struct ptlrpc_body *pb;
1342
1343                 pb = lustre_msg_buf_v2(msg, MSG_PTLRPC_BODY_OFF, sizeof(*pb));
1344                 LASSERTF(pb, "invalid msg %p: no ptlrpc body!\n", msg);
1345                 pb->pb_opc = opc;
1346                 return;
1347         }
1348         default:
1349                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
1350         }
1351 }
1352
1353 void lustre_msg_set_last_xid(struct lustre_msg *msg, __u64 last_xid)
1354 {
1355         switch (msg->lm_magic) {
1356         case LUSTRE_MSG_MAGIC_V2: {
1357                 struct ptlrpc_body *pb;
1358
1359                 pb = lustre_msg_buf_v2(msg, MSG_PTLRPC_BODY_OFF, sizeof(*pb));
1360                 LASSERTF(pb, "invalid msg %p: no ptlrpc body!\n", msg);
1361                 pb->pb_last_xid = last_xid;
1362                 return;
1363         }
1364         default:
1365                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
1366         }
1367 }
1368
1369 void lustre_msg_set_last_committed(struct lustre_msg *msg, __u64 last_committed)
1370 {
1371         switch (msg->lm_magic) {
1372         case LUSTRE_MSG_MAGIC_V2: {
1373                 struct ptlrpc_body *pb;
1374
1375                 pb = lustre_msg_buf_v2(msg, MSG_PTLRPC_BODY_OFF, sizeof(*pb));
1376                 LASSERTF(pb, "invalid msg %p: no ptlrpc body!\n", msg);
1377                 pb->pb_last_committed = last_committed;
1378                 return;
1379         }
1380         default:
1381                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
1382         }
1383 }
1384
1385 void lustre_msg_set_transno(struct lustre_msg *msg, __u64 transno)
1386 {
1387         switch (msg->lm_magic) {
1388         case LUSTRE_MSG_MAGIC_V2: {
1389                 struct ptlrpc_body *pb;
1390
1391                 pb = lustre_msg_buf_v2(msg, MSG_PTLRPC_BODY_OFF, sizeof(*pb));
1392                 LASSERTF(pb, "invalid msg %p: no ptlrpc body!\n", msg);
1393                 pb->pb_transno = transno;
1394                 return;
1395         }
1396         default:
1397                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
1398         }
1399 }
1400
1401 void lustre_msg_set_status(struct lustre_msg *msg, __u32 status)
1402 {
1403         switch (msg->lm_magic) {
1404         case LUSTRE_MSG_MAGIC_V2: {
1405                 struct ptlrpc_body *pb;
1406
1407                 pb = lustre_msg_buf_v2(msg, MSG_PTLRPC_BODY_OFF, sizeof(*pb));
1408                 LASSERTF(pb, "invalid msg %p: no ptlrpc body!\n", msg);
1409                 pb->pb_status = status;
1410                 return;
1411         }
1412         default:
1413                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
1414         }
1415 }
1416
1417 void lustre_msg_set_conn_cnt(struct lustre_msg *msg, __u32 conn_cnt)
1418 {
1419         switch (msg->lm_magic) {
1420         case LUSTRE_MSG_MAGIC_V2: {
1421                 struct ptlrpc_body *pb;
1422
1423                 pb = lustre_msg_buf_v2(msg, MSG_PTLRPC_BODY_OFF, sizeof(*pb));
1424                 LASSERTF(pb, "invalid msg %p: no ptlrpc body!\n", msg);
1425                 pb->pb_conn_cnt = conn_cnt;
1426                 return;
1427         }
1428         default:
1429                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
1430         }
1431 }
1432
1433 void lustre_msg_set_timeout(struct lustre_msg *msg, __u32 timeout)
1434 {
1435         switch (msg->lm_magic) {
1436         case LUSTRE_MSG_MAGIC_V1:
1437                 return;
1438         case LUSTRE_MSG_MAGIC_V2: {
1439                 struct ptlrpc_body *pb;
1440
1441                 pb = lustre_msg_buf_v2(msg, MSG_PTLRPC_BODY_OFF, sizeof(*pb));
1442                 LASSERTF(pb, "invalid msg %p: no ptlrpc body!\n", msg);
1443                 pb->pb_timeout = timeout;
1444                 return;
1445         }
1446         default:
1447                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
1448         }
1449 }
1450
1451 void lustre_msg_set_service_time(struct lustre_msg *msg, __u32 service_time)
1452 {
1453         switch (msg->lm_magic) {
1454         case LUSTRE_MSG_MAGIC_V1:
1455                 return;
1456         case LUSTRE_MSG_MAGIC_V2: {
1457                 struct ptlrpc_body *pb;
1458
1459                 pb = lustre_msg_buf_v2(msg, MSG_PTLRPC_BODY_OFF, sizeof(*pb));
1460                 LASSERTF(pb, "invalid msg %p: no ptlrpc body!\n", msg);
1461                 pb->pb_service_time = service_time;
1462                 return;
1463         }
1464         default:
1465                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
1466         }
1467 }
1468
1469 void lustre_msg_set_cksum(struct lustre_msg *msg, __u32 cksum)
1470 {
1471         switch (msg->lm_magic) {
1472         case LUSTRE_MSG_MAGIC_V1:
1473                 return;
1474         case LUSTRE_MSG_MAGIC_V2:
1475                 msg->lm_cksum = cksum;
1476                 return;
1477         default:
1478                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
1479         }
1480 }
1481
1482
1483 void ptlrpc_request_set_replen(struct ptlrpc_request *req)
1484 {
1485         int count = req_capsule_filled_sizes(&req->rq_pill, RCL_SERVER);
1486
1487         req->rq_replen = lustre_msg_size(req->rq_reqmsg->lm_magic, count,
1488                                          req->rq_pill.rc_area[RCL_SERVER]);
1489         if (req->rq_reqmsg->lm_magic == LUSTRE_MSG_MAGIC_V2)
1490                 req->rq_reqmsg->lm_repsize = req->rq_replen;
1491 }
1492
1493 void ptlrpc_req_set_repsize(struct ptlrpc_request *req, int count, __u32 *lens)
1494 {
1495         req->rq_replen = lustre_msg_size(req->rq_reqmsg->lm_magic, count, lens);
1496         if (req->rq_reqmsg->lm_magic == LUSTRE_MSG_MAGIC_V2)
1497                 req->rq_reqmsg->lm_repsize = req->rq_replen;
1498 }
1499
1500 /* byte flipping routines for all wire types declared in
1501  * lustre_idl.h implemented here.
1502  */
1503 void lustre_swab_ptlrpc_body(struct ptlrpc_body *b)
1504 {
1505         __swab32s (&b->pb_type);
1506         __swab32s (&b->pb_version);
1507         __swab32s (&b->pb_opc);
1508         __swab32s (&b->pb_status);
1509         __swab64s (&b->pb_last_xid);
1510         __swab64s (&b->pb_last_seen);
1511         __swab64s (&b->pb_last_committed);
1512         __swab64s (&b->pb_transno);
1513         __swab32s (&b->pb_flags);
1514         __swab32s (&b->pb_op_flags);
1515         __swab32s (&b->pb_conn_cnt);
1516         __swab32s (&b->pb_timeout);
1517         __swab32s (&b->pb_service_time);
1518         __swab32s (&b->pb_limit);
1519         __swab64s (&b->pb_slv);
1520         __swab64s (&b->pb_pre_versions[0]);
1521         __swab64s (&b->pb_pre_versions[1]);
1522         __swab64s (&b->pb_pre_versions[2]);
1523         __swab64s (&b->pb_pre_versions[3]);
1524         CLASSERT(offsetof(typeof(*b), pb_padding) != 0);
1525 }
1526
1527 void lustre_swab_connect(struct obd_connect_data *ocd)
1528 {
1529         __swab64s(&ocd->ocd_connect_flags);
1530         __swab32s(&ocd->ocd_version);
1531         __swab32s(&ocd->ocd_grant);
1532         __swab64s(&ocd->ocd_ibits_known);
1533         __swab32s(&ocd->ocd_index);
1534         __swab32s(&ocd->ocd_brw_size);
1535         __swab32s(&ocd->ocd_nllu);
1536         __swab32s(&ocd->ocd_nllg);
1537         __swab64s(&ocd->ocd_transno);
1538         __swab32s(&ocd->ocd_group);
1539         __swab32s(&ocd->ocd_cksum_types);
1540         CLASSERT(offsetof(typeof(*ocd), padding1) != 0);
1541         CLASSERT(offsetof(typeof(*ocd), padding2) != 0);
1542 }
1543
1544 void lustre_swab_obdo (struct obdo  *o)
1545 {
1546         __swab64s (&o->o_valid);
1547         __swab64s (&o->o_id);
1548         __swab64s (&o->o_gr);
1549         __swab64s (&o->o_fid);
1550         __swab64s (&o->o_size);
1551         __swab64s (&o->o_mtime);
1552         __swab64s (&o->o_atime);
1553         __swab64s (&o->o_ctime);
1554         __swab64s (&o->o_blocks);
1555         __swab64s (&o->o_grant);
1556         __swab32s (&o->o_blksize);
1557         __swab32s (&o->o_mode);
1558         __swab32s (&o->o_uid);
1559         __swab32s (&o->o_gid);
1560         __swab32s (&o->o_flags);
1561         __swab32s (&o->o_nlink);
1562         __swab32s (&o->o_generation);
1563         __swab32s (&o->o_misc);
1564         __swab32s (&o->o_easize);
1565         __swab32s (&o->o_mds);
1566         __swab32s (&o->o_stripe_idx);
1567         __swab32s (&o->o_padding_1);
1568         /* o_inline is opaque */
1569 }
1570
1571 void lustre_swab_obd_statfs (struct obd_statfs *os)
1572 {
1573         __swab64s (&os->os_type);
1574         __swab64s (&os->os_blocks);
1575         __swab64s (&os->os_bfree);
1576         __swab64s (&os->os_bavail);
1577         __swab64s (&os->os_files);
1578         __swab64s (&os->os_ffree);
1579         /* no need to swab os_fsid */
1580         __swab32s (&os->os_bsize);
1581         __swab32s (&os->os_namelen);
1582         __swab64s (&os->os_maxbytes);
1583         __swab32s (&os->os_state);
1584         /* no need to swap os_spare */
1585 }
1586
1587 void lustre_swab_obd_ioobj (struct obd_ioobj *ioo)
1588 {
1589         __swab64s (&ioo->ioo_id);
1590         __swab64s (&ioo->ioo_gr);
1591         __swab32s (&ioo->ioo_type);
1592         __swab32s (&ioo->ioo_bufcnt);
1593 }
1594
1595 void lustre_swab_niobuf_remote (struct niobuf_remote *nbr)
1596 {
1597         __swab64s (&nbr->offset);
1598         __swab32s (&nbr->len);
1599         __swab32s (&nbr->flags);
1600 }
1601
1602 void lustre_swab_ost_body (struct ost_body *b)
1603 {
1604         lustre_swab_obdo (&b->oa);
1605 }
1606
1607 void lustre_swab_ost_last_id(obd_id *id)
1608 {
1609         __swab64s(id);
1610 }
1611
1612 void lustre_swab_generic_32s(__u32 *val)
1613 {
1614         __swab32s(val);
1615 }
1616
1617 void lustre_swab_ost_lvb(struct ost_lvb *lvb)
1618 {
1619         __swab64s(&lvb->lvb_size);
1620         __swab64s(&lvb->lvb_mtime);
1621         __swab64s(&lvb->lvb_atime);
1622         __swab64s(&lvb->lvb_ctime);
1623         __swab64s(&lvb->lvb_blocks);
1624 }
1625
1626 void lustre_swab_mds_status_req (struct mds_status_req *r)
1627 {
1628         __swab32s (&r->flags);
1629         __swab32s (&r->repbuf);
1630 }
1631
1632 void lustre_swab_mds_body (struct mds_body *b)
1633 {
1634         lustre_swab_ll_fid (&b->fid1);
1635         lustre_swab_ll_fid (&b->fid2);
1636         /* handle is opaque */
1637         __swab64s (&b->valid);
1638         __swab64s (&b->size);
1639         __swab64s (&b->mtime);
1640         __swab64s (&b->atime);
1641         __swab64s (&b->ctime);
1642         __swab64s (&b->blocks);
1643         __swab64s (&b->io_epoch);
1644         __swab64s (&b->ino);
1645         __swab32s (&b->fsuid);
1646         __swab32s (&b->fsgid);
1647         __swab32s (&b->capability);
1648         __swab32s (&b->mode);
1649         __swab32s (&b->uid);
1650         __swab32s (&b->gid);
1651         __swab32s (&b->flags);
1652         __swab32s (&b->rdev);
1653         __swab32s (&b->nlink);
1654         __swab32s (&b->generation);
1655         __swab32s (&b->suppgid);
1656         __swab32s (&b->eadatasize);
1657         __swab32s (&b->aclsize);
1658         __swab32s (&b->max_mdsize);
1659         __swab32s (&b->max_cookiesize);
1660         __swab32s (&b->padding_4);
1661 }
1662
1663 void lustre_swab_mdt_body (struct mdt_body *b)
1664 {
1665         lustre_swab_lu_fid (&b->fid1);
1666         lustre_swab_lu_fid (&b->fid2);
1667         /* handle is opaque */
1668         __swab64s (&b->valid);
1669         __swab64s (&b->size);
1670         __swab64s (&b->mtime);
1671         __swab64s (&b->atime);
1672         __swab64s (&b->ctime);
1673         __swab64s (&b->blocks);
1674         __swab64s (&b->ioepoch);
1675         __swab64s (&b->ino);
1676         __swab32s (&b->fsuid);
1677         __swab32s (&b->fsgid);
1678         __swab32s (&b->capability);
1679         __swab32s (&b->mode);
1680         __swab32s (&b->uid);
1681         __swab32s (&b->gid);
1682         __swab32s (&b->flags);
1683         __swab32s (&b->rdev);
1684         __swab32s (&b->nlink);
1685         __swab32s (&b->generation);
1686         __swab32s (&b->suppgid);
1687         __swab32s (&b->eadatasize);
1688         __swab32s (&b->aclsize);
1689         __swab32s (&b->max_mdsize);
1690         __swab32s (&b->max_cookiesize);
1691         __swab32s (&b->padding_4);
1692 }
1693
1694 void lustre_swab_mdt_epoch (struct mdt_epoch *b)
1695 {
1696         /* handle is opaque */
1697          __swab64s (&b->ioepoch);
1698          __swab32s (&b->flags);
1699          CLASSERT(offsetof(typeof(*b), padding) != 0);
1700 }
1701
1702 void lustre_swab_mgs_target_info(struct mgs_target_info *mti)
1703 {
1704         int i;
1705         __swab32s(&mti->mti_lustre_ver);
1706         __swab32s(&mti->mti_stripe_index);
1707         __swab32s(&mti->mti_config_ver);
1708         __swab32s(&mti->mti_flags);
1709         __swab32s(&mti->mti_nid_count);
1710         CLASSERT(sizeof(lnet_nid_t) == sizeof(__u64));
1711         for (i = 0; i < MTI_NIDS_MAX; i++)
1712                 __swab64s(&mti->mti_nids[i]);
1713 }
1714
1715 static void lustre_swab_obd_dqinfo (struct obd_dqinfo *i)
1716 {
1717         __swab64s (&i->dqi_bgrace);
1718         __swab64s (&i->dqi_igrace);
1719         __swab32s (&i->dqi_flags);
1720         __swab32s (&i->dqi_valid);
1721 }
1722
1723 static void lustre_swab_obd_dqblk (struct obd_dqblk *b)
1724 {
1725         __swab64s (&b->dqb_ihardlimit);
1726         __swab64s (&b->dqb_isoftlimit);
1727         __swab64s (&b->dqb_curinodes);
1728         __swab64s (&b->dqb_bhardlimit);
1729         __swab64s (&b->dqb_bsoftlimit);
1730         __swab64s (&b->dqb_curspace);
1731         __swab64s (&b->dqb_btime);
1732         __swab64s (&b->dqb_itime);
1733         __swab32s (&b->dqb_valid);
1734         CLASSERT(offsetof(typeof(*b), padding) != 0);
1735 }
1736
1737 void lustre_swab_obd_quotactl (struct obd_quotactl *q)
1738 {
1739         __swab32s (&q->qc_cmd);
1740         __swab32s (&q->qc_type);
1741         __swab32s (&q->qc_id);
1742         __swab32s (&q->qc_stat);
1743         lustre_swab_obd_dqinfo (&q->qc_dqinfo);
1744         lustre_swab_obd_dqblk (&q->qc_dqblk);
1745 }
1746
1747 void lustre_swab_mds_remote_perm (struct mds_remote_perm *p)
1748 {
1749         __swab32s (&p->rp_uid);
1750         __swab32s (&p->rp_gid);
1751         __swab32s (&p->rp_fsuid);
1752         __swab32s (&p->rp_fsgid);
1753         __swab32s (&p->rp_access_perm);
1754 };
1755
1756 void lustre_swab_mdt_remote_perm (struct mdt_remote_perm *p)
1757 {
1758         __swab32s (&p->rp_uid);
1759         __swab32s (&p->rp_gid);
1760         __swab32s (&p->rp_fsuid);
1761         __swab32s (&p->rp_fsgid);
1762         __swab32s (&p->rp_access_perm);
1763 };
1764
1765 void lustre_swab_mds_rec_setattr (struct mds_rec_setattr *sa)
1766 {
1767         __swab32s (&sa->sa_opcode);
1768         __swab32s (&sa->sa_fsuid);
1769         __swab32s (&sa->sa_fsgid);
1770         __swab32s (&sa->sa_cap);
1771         __swab32s (&sa->sa_suppgid);
1772         __swab32s (&sa->sa_mode);
1773         lustre_swab_ll_fid (&sa->sa_fid);
1774         __swab64s (&sa->sa_valid);
1775         __swab64s (&sa->sa_size);
1776         __swab64s (&sa->sa_mtime);
1777         __swab64s (&sa->sa_atime);
1778         __swab64s (&sa->sa_ctime);
1779         __swab32s (&sa->sa_uid);
1780         __swab32s (&sa->sa_gid);
1781         __swab32s (&sa->sa_attr_flags);
1782         CLASSERT(offsetof(typeof(*sa), sa_padding) != 0);
1783 }
1784
1785 void lustre_swab_mds_rec_join (struct mds_rec_join *jr)
1786 {
1787         __swab64s(&jr->jr_headsize);
1788         lustre_swab_ll_fid(&jr->jr_fid);
1789 }
1790
1791 void lustre_swab_mdt_rec_join (struct mdt_rec_join *jr)
1792 {
1793         __swab64s(&jr->jr_headsize);
1794         lustre_swab_lu_fid(&jr->jr_fid);
1795 }
1796
1797 void lustre_swab_mds_rec_create (struct mds_rec_create *cr)
1798 {
1799         __swab32s (&cr->cr_opcode);
1800         __swab32s (&cr->cr_fsuid);
1801         __swab32s (&cr->cr_fsgid);
1802         __swab32s (&cr->cr_cap);
1803         __swab32s (&cr->cr_flags); /* for use with open */
1804         __swab32s (&cr->cr_mode);
1805         lustre_swab_ll_fid (&cr->cr_fid);
1806         lustre_swab_ll_fid (&cr->cr_replayfid);
1807         __swab64s (&cr->cr_time);
1808         __swab64s (&cr->cr_rdev);
1809         __swab32s (&cr->cr_suppgid);
1810         CLASSERT(offsetof(typeof(*cr), cr_padding_1) != 0);
1811         CLASSERT(offsetof(typeof(*cr), cr_padding_2) != 0);
1812         CLASSERT(offsetof(typeof(*cr), cr_padding_3) != 0);
1813         CLASSERT(offsetof(typeof(*cr), cr_padding_4) != 0);
1814         CLASSERT(offsetof(typeof(*cr), cr_padding_5) != 0);
1815 }
1816
1817 void lustre_swab_mds_rec_link (struct mds_rec_link *lk)
1818 {
1819         __swab32s (&lk->lk_opcode);
1820         __swab32s (&lk->lk_fsuid);
1821         __swab32s (&lk->lk_fsgid);
1822         __swab32s (&lk->lk_cap);
1823         __swab32s (&lk->lk_suppgid1);
1824         __swab32s (&lk->lk_suppgid2);
1825         lustre_swab_ll_fid (&lk->lk_fid1);
1826         lustre_swab_ll_fid (&lk->lk_fid2);
1827         __swab64s (&lk->lk_time);
1828         CLASSERT(offsetof(typeof(*lk), lk_padding_1) != 0);
1829         CLASSERT(offsetof(typeof(*lk), lk_padding_2) != 0);
1830         CLASSERT(offsetof(typeof(*lk), lk_padding_3) != 0);
1831         CLASSERT(offsetof(typeof(*lk), lk_padding_4) != 0);
1832 }
1833
1834 void lustre_swab_mds_rec_unlink (struct mds_rec_unlink *ul)
1835 {
1836         __swab32s (&ul->ul_opcode);
1837         __swab32s (&ul->ul_fsuid);
1838         __swab32s (&ul->ul_fsgid);
1839         __swab32s (&ul->ul_cap);
1840         __swab32s (&ul->ul_suppgid);
1841         __swab32s (&ul->ul_mode);
1842         lustre_swab_ll_fid (&ul->ul_fid1);
1843         lustre_swab_ll_fid (&ul->ul_fid2);
1844         __swab64s (&ul->ul_time);
1845         CLASSERT(offsetof(typeof(*ul), ul_padding_1) != 0);
1846         CLASSERT(offsetof(typeof(*ul), ul_padding_2) != 0);
1847         CLASSERT(offsetof(typeof(*ul), ul_padding_3) != 0);
1848         CLASSERT(offsetof(typeof(*ul), ul_padding_4) != 0);
1849 }
1850
1851 void lustre_swab_fiemap_extent(struct ll_fiemap_extent *fm_extent)
1852 {
1853         __swab64s(&fm_extent->fe_logical);
1854         __swab64s(&fm_extent->fe_physical);
1855         __swab64s(&fm_extent->fe_length);
1856         __swab32s(&fm_extent->fe_flags);
1857         __swab32s(&fm_extent->fe_device);
1858 }
1859
1860 void lustre_swab_fiemap(struct ll_user_fiemap *fiemap)
1861 {
1862         int i;
1863
1864         __swab64s(&fiemap->fm_start);
1865         __swab64s(&fiemap->fm_length);
1866         __swab32s(&fiemap->fm_flags);
1867         __swab32s(&fiemap->fm_mapped_extents);
1868         __swab32s(&fiemap->fm_extent_count);
1869         __swab32s(&fiemap->fm_reserved);
1870
1871         for (i = 0; i < fiemap->fm_mapped_extents; i++)
1872                 lustre_swab_fiemap_extent(&fiemap->fm_extents[i]);
1873 }
1874
1875 void lustre_swab_mds_rec_rename (struct mds_rec_rename *rn)
1876 {
1877         __swab32s (&rn->rn_opcode);
1878         __swab32s (&rn->rn_fsuid);
1879         __swab32s (&rn->rn_fsgid);
1880         __swab32s (&rn->rn_cap);
1881         __swab32s (&rn->rn_suppgid1);
1882         __swab32s (&rn->rn_suppgid2);
1883         lustre_swab_ll_fid (&rn->rn_fid1);
1884         lustre_swab_ll_fid (&rn->rn_fid2);
1885         __swab64s (&rn->rn_time);
1886         CLASSERT(offsetof(typeof(*rn), rn_padding_1) != 0);
1887         CLASSERT(offsetof(typeof(*rn), rn_padding_2) != 0);
1888         CLASSERT(offsetof(typeof(*rn), rn_padding_3) != 0);
1889         CLASSERT(offsetof(typeof(*rn), rn_padding_4) != 0);
1890 }
1891
1892 void lustre_swab_mdt_rec_reint (struct mdt_rec_reint *rr)
1893 {
1894         __swab32s (&rr->rr_opcode);
1895         __swab32s (&rr->rr_fsuid);
1896         __swab32s (&rr->rr_fsgid);
1897         __swab32s (&rr->rr_cap);
1898         __swab32s (&rr->rr_suppgid1);
1899         __swab32s (&rr->rr_suppgid2);
1900         /* handle is opaque */
1901         lustre_swab_lu_fid (&rr->rr_fid1);
1902         lustre_swab_lu_fid (&rr->rr_fid2);
1903         __swab64s (&rr->rr_mtime);
1904         __swab64s (&rr->rr_atime);
1905         __swab64s (&rr->rr_ctime);
1906         __swab64s (&rr->rr_size);
1907         __swab64s (&rr->rr_blocks);
1908         __swab32s (&rr->rr_bias);
1909         __swab32s (&rr->rr_mode);
1910         __swab32s (&rr->rr_padding_1);
1911         __swab32s (&rr->rr_padding_2);
1912         __swab32s (&rr->rr_padding_3);
1913         __swab32s (&rr->rr_padding_4);
1914
1915         CLASSERT(offsetof(typeof(*rr), rr_padding_1) != 0);
1916         CLASSERT(offsetof(typeof(*rr), rr_padding_2) != 0);
1917         CLASSERT(offsetof(typeof(*rr), rr_padding_3) != 0);
1918         CLASSERT(offsetof(typeof(*rr), rr_padding_4) != 0);
1919 };
1920
1921 void lustre_swab_lov_desc (struct lov_desc *ld)
1922 {
1923         __swab32s (&ld->ld_tgt_count);
1924         __swab32s (&ld->ld_active_tgt_count);
1925         __swab32s (&ld->ld_default_stripe_count);
1926         __swab64s (&ld->ld_default_stripe_size);
1927         __swab64s (&ld->ld_default_stripe_offset);
1928         __swab32s (&ld->ld_pattern);
1929         __swab32s (&ld->ld_qos_maxage);
1930         /* uuid endian insensitive */
1931 }
1932
1933 /*begin adding MDT by huanghua@clusterfs.com*/
1934 void lustre_swab_lmv_desc (struct lmv_desc *ld)
1935 {
1936         __swab32s (&ld->ld_tgt_count);
1937         __swab32s (&ld->ld_active_tgt_count);
1938         /* uuid endian insensitive */
1939 }
1940 /*end adding MDT by huanghua@clusterfs.com*/
1941 void lustre_swab_md_fld (struct md_fld *mf)
1942 {
1943         __swab64s(&mf->mf_seq);
1944         __swab64s(&mf->mf_mds);
1945 }
1946
1947 static void print_lum (struct lov_user_md *lum)
1948 {
1949         CDEBUG(D_OTHER, "lov_user_md %p:\n", lum);
1950         CDEBUG(D_OTHER, "\tlmm_magic: %#x\n", lum->lmm_magic);
1951         CDEBUG(D_OTHER, "\tlmm_pattern: %#x\n", lum->lmm_pattern);
1952         CDEBUG(D_OTHER, "\tlmm_object_id: "LPU64"\n", lum->lmm_object_id);
1953         CDEBUG(D_OTHER, "\tlmm_object_gr: "LPU64"\n", lum->lmm_object_gr);
1954         CDEBUG(D_OTHER, "\tlmm_stripe_size: %#x\n", lum->lmm_stripe_size);
1955         CDEBUG(D_OTHER, "\tlmm_stripe_count: %#x\n", lum->lmm_stripe_count);
1956         CDEBUG(D_OTHER, "\tlmm_stripe_offset: %#x\n", lum->lmm_stripe_offset);
1957 }
1958
1959 static void lustre_swab_lov_user_md_common(struct lov_user_md_v1 *lum)
1960 {
1961         ENTRY;
1962         __swab32s(&lum->lmm_magic);
1963         __swab32s(&lum->lmm_pattern);
1964         __swab64s(&lum->lmm_object_id);
1965         __swab64s(&lum->lmm_object_gr);
1966         __swab32s(&lum->lmm_stripe_size);
1967         __swab16s(&lum->lmm_stripe_count);
1968         __swab16s(&lum->lmm_stripe_offset);
1969         print_lum(lum);
1970         EXIT;
1971 }
1972
1973 static void print_lumj (struct lov_user_md_join *lumj)
1974 {
1975         CDEBUG(D_OTHER, "lov_user_md %p:\n", lumj);
1976         CDEBUG(D_OTHER, "\tlmm_magic: %#x\n", lumj->lmm_magic);
1977         CDEBUG(D_OTHER, "\tlmm_pattern: %#x\n", lumj->lmm_pattern);
1978         CDEBUG(D_OTHER, "\tlmm_object_id: "LPU64"\n", lumj->lmm_object_id);
1979         CDEBUG(D_OTHER, "\tlmm_object_gr: "LPU64"\n", lumj->lmm_object_gr);
1980         CDEBUG(D_OTHER, "\tlmm_stripe_size: %#x\n", lumj->lmm_stripe_size);
1981         CDEBUG(D_OTHER, "\tlmm_stripe_count: %#x\n", lumj->lmm_stripe_count);
1982         CDEBUG(D_OTHER, "\tlmm_extent_count: %#x\n", lumj->lmm_extent_count);
1983 }
1984
1985 void lustre_swab_lov_user_md_v1(struct lov_user_md_v1 *lum)
1986 {
1987         ENTRY;
1988         CDEBUG(D_IOCTL, "swabbing lov_user_md v1\n");
1989         lustre_swab_lov_user_md_common(lum);
1990         EXIT;
1991 }
1992
1993 void lustre_swab_lov_user_md_v3(struct lov_user_md_v3 *lum)
1994 {
1995         ENTRY;
1996         CDEBUG(D_IOCTL, "swabbing lov_user_md v3\n");
1997         lustre_swab_lov_user_md_common((struct lov_user_md_v1 *)lum);
1998         /* lmm_pool_name nothing to do with char */
1999         EXIT;
2000 }
2001
2002 void lustre_swab_lov_user_md_join(struct lov_user_md_join *lumj)
2003 {
2004         ENTRY;
2005         CDEBUG(D_IOCTL, "swabbing lov_user_md_join\n");
2006         __swab32s(&lumj->lmm_magic);
2007         __swab32s(&lumj->lmm_pattern);
2008         __swab64s(&lumj->lmm_object_id);
2009         __swab64s(&lumj->lmm_object_gr);
2010         __swab32s(&lumj->lmm_stripe_size);
2011         __swab32s(&lumj->lmm_stripe_count);
2012         __swab32s(&lumj->lmm_extent_count);
2013         print_lumj(lumj);
2014         EXIT;
2015 }
2016
2017 void lustre_swab_lov_user_md_objects(struct lov_user_ost_data *lod,
2018                                      int stripe_count)
2019 {
2020         int i;
2021         ENTRY;
2022         for (i = 0; i < stripe_count; i++) {
2023                 __swab64s(&(lod[i].l_object_id));
2024                 __swab64s(&(lod[i].l_object_gr));
2025                 __swab32s(&(lod[i].l_ost_gen));
2026                 __swab32s(&(lod[i].l_ost_idx));
2027         }
2028         EXIT;
2029 }
2030
2031
2032 void lustre_swab_ldlm_res_id (struct ldlm_res_id *id)
2033 {
2034         int  i;
2035
2036         for (i = 0; i < RES_NAME_SIZE; i++)
2037                 __swab64s (&id->name[i]);
2038 }
2039
2040 void lustre_swab_ldlm_policy_data (ldlm_policy_data_t *d)
2041 {
2042         /* the lock data is a union and the first two fields are always an
2043          * extent so it's ok to process an LDLM_EXTENT and LDLM_FLOCK lock
2044          * data the same way. */
2045         __swab64s(&d->l_extent.start);
2046         __swab64s(&d->l_extent.end);
2047         __swab64s(&d->l_extent.gid);
2048         __swab32s(&d->l_flock.pid);
2049 }
2050
2051 void lustre_swab_ldlm_intent (struct ldlm_intent *i)
2052 {
2053         __swab64s (&i->opc);
2054 }
2055
2056 void lustre_swab_ldlm_resource_desc (struct ldlm_resource_desc *r)
2057 {
2058         __swab32s (&r->lr_type);
2059         CLASSERT(offsetof(typeof(*r), lr_padding) != 0);
2060         lustre_swab_ldlm_res_id (&r->lr_name);
2061 }
2062
2063 void lustre_swab_ldlm_lock_desc (struct ldlm_lock_desc *l)
2064 {
2065         lustre_swab_ldlm_resource_desc (&l->l_resource);
2066         __swab32s (&l->l_req_mode);
2067         __swab32s (&l->l_granted_mode);
2068         lustre_swab_ldlm_policy_data (&l->l_policy_data);
2069 }
2070
2071 void lustre_swab_ldlm_request (struct ldlm_request *rq)
2072 {
2073         __swab32s (&rq->lock_flags);
2074         lustre_swab_ldlm_lock_desc (&rq->lock_desc);
2075         __swab32s (&rq->lock_count);
2076         /* lock_handle[] opaque */
2077 }
2078
2079 void lustre_swab_ldlm_reply (struct ldlm_reply *r)
2080 {
2081         __swab32s (&r->lock_flags);
2082         CLASSERT(offsetof(typeof(*r), lock_padding) != 0);
2083         lustre_swab_ldlm_lock_desc (&r->lock_desc);
2084         /* lock_handle opaque */
2085         __swab64s (&r->lock_policy_res1);
2086         __swab64s (&r->lock_policy_res2);
2087 }
2088
2089 /* no one calls this */
2090 int llog_log_swabbed(struct llog_log_hdr *hdr)
2091 {
2092         if (hdr->llh_hdr.lrh_type == __swab32(LLOG_HDR_MAGIC))
2093                 return 1;
2094         if (hdr->llh_hdr.lrh_type == LLOG_HDR_MAGIC)
2095                 return 0;
2096         return -1;
2097 }
2098
2099 void lustre_swab_qdata(struct qunit_data *d)
2100 {
2101         __swab32s (&d->qd_id);
2102         __swab32s (&d->qd_flags);
2103         __swab64s (&d->qd_count);
2104 }
2105
2106 void lustre_swab_qdata_old(struct qunit_data_old *d)
2107 {
2108         __swab32s (&d->qd_id);
2109         __swab32s (&d->qd_type);
2110         __swab32s (&d->qd_count);
2111         __swab32s (&d->qd_isblk);
2112 }
2113
2114 #ifdef __KERNEL__
2115 struct qunit_data *lustre_quota_old_to_new(struct qunit_data_old *d)
2116 {
2117         struct qunit_data_old tmp;
2118         struct qunit_data *ret;
2119         ENTRY;
2120
2121         if (!d)
2122                 return NULL;
2123
2124         tmp = *d;
2125         ret = (struct qunit_data *)d;
2126         ret->qd_id = tmp.qd_id;
2127         ret->qd_flags = (tmp.qd_type ? QUOTA_IS_GRP : 0) | (tmp.qd_isblk ? QUOTA_IS_BLOCK : 0);
2128         ret->qd_count = tmp.qd_count;
2129         RETURN(ret);
2130
2131 }
2132 EXPORT_SYMBOL(lustre_quota_old_to_new);
2133
2134 struct qunit_data_old *lustre_quota_new_to_old(struct qunit_data *d)
2135 {
2136         struct qunit_data tmp;
2137         struct qunit_data_old *ret;
2138         ENTRY;
2139
2140         if (!d)
2141                 return NULL;
2142
2143         tmp = *d;
2144         ret = (struct qunit_data_old *)d;
2145         ret->qd_id = tmp.qd_id;
2146         ret->qd_type = ((tmp.qd_flags & QUOTA_IS_GRP) ? GRPQUOTA : USRQUOTA);
2147         ret->qd_count = (__u32)tmp.qd_count;
2148         ret->qd_isblk = ((tmp.qd_flags & QUOTA_IS_BLOCK) ? 1 : 0);
2149         RETURN(ret);
2150 }
2151 EXPORT_SYMBOL(lustre_quota_new_to_old);
2152 #endif /* __KERNEL__ */
2153
2154 static inline int req_ptlrpc_body_swabbed(struct ptlrpc_request *req)
2155 {
2156         LASSERT(req->rq_reqmsg);
2157
2158         switch (req->rq_reqmsg->lm_magic) {
2159         case LUSTRE_MSG_MAGIC_V2:
2160         case LUSTRE_MSG_MAGIC_V2_SWABBED:
2161                 return lustre_req_swabbed(req, MSG_PTLRPC_BODY_OFF);
2162         default:
2163                 CERROR("bad lustre msg magic: %#08X\n",
2164                        req->rq_reqmsg->lm_magic);
2165         }
2166         return 0;
2167 }
2168
2169 static inline int rep_ptlrpc_body_swabbed(struct ptlrpc_request *req)
2170 {
2171         LASSERT(req->rq_repmsg);
2172
2173         switch (req->rq_repmsg->lm_magic) {
2174         case LUSTRE_MSG_MAGIC_V2:
2175         case LUSTRE_MSG_MAGIC_V2_SWABBED:
2176                 return lustre_rep_swabbed(req, MSG_PTLRPC_BODY_OFF);
2177         default:
2178                 /* uninitialized yet */
2179                 return 0;
2180         }
2181 }
2182
2183 void _debug_req(struct ptlrpc_request *req, __u32 mask,
2184                 struct libcfs_debug_msg_data *data, const char *fmt, ... )
2185 {
2186         va_list args;
2187
2188         va_start(args, fmt);
2189         libcfs_debug_vmsg2(data->msg_cdls, data->msg_subsys, mask, data->msg_file,
2190                            data->msg_fn, data->msg_line, fmt, args,
2191                            " req@%p x"LPD64"/t"LPD64"("LPD64") o%d->%s@%s:%d/%d"
2192                            " lens %d/%d e %d to %d dl "CFS_TIME_T" ref %d "
2193                            "fl "REQ_FLAGS_FMT"/%x/%x rc %d/%d\n",
2194                            req, req->rq_xid, req->rq_transno,
2195                            req->rq_reqmsg ? lustre_msg_get_transno(req->rq_reqmsg) : 0,
2196                            req->rq_reqmsg ? lustre_msg_get_opc(req->rq_reqmsg) : -1,
2197                            req->rq_import ? obd2cli_tgt(req->rq_import->imp_obd) :
2198                            req->rq_export ?
2199                            (char*)req->rq_export->exp_client_uuid.uuid : "<?>",
2200                            req->rq_import ?
2201                            (char *)req->rq_import->imp_connection->c_remote_uuid.uuid :
2202                            req->rq_export ?
2203                            (char *)req->rq_export->exp_connection->c_remote_uuid.uuid : "<?>",
2204                            req->rq_request_portal, req->rq_reply_portal,
2205                            req->rq_reqlen, req->rq_replen,
2206                            req->rq_early_count, req->rq_timeout, req->rq_deadline,
2207                            atomic_read(&req->rq_refcount), DEBUG_REQ_FLAGS(req),
2208                            req->rq_reqmsg && req_ptlrpc_body_swabbed(req) ?
2209                            lustre_msg_get_flags(req->rq_reqmsg) : -1,
2210                            req->rq_repmsg && rep_ptlrpc_body_swabbed(req) ?
2211                            lustre_msg_get_flags(req->rq_repmsg) : -1,
2212                            req->rq_status,
2213                            req->rq_repmsg && rep_ptlrpc_body_swabbed(req) ?
2214                            lustre_msg_get_status(req->rq_repmsg) : -1);
2215 }
2216 EXPORT_SYMBOL(_debug_req);
2217
2218 void lustre_swab_lustre_capa(struct lustre_capa *c)
2219 {
2220         lustre_swab_lu_fid(&c->lc_fid);
2221         __swab64s (&c->lc_opc);
2222         __swab32s (&c->lc_uid);
2223         __swab32s (&c->lc_flags);
2224         __swab32s (&c->lc_keyid);
2225         __swab32s (&c->lc_timeout);
2226         __swab64s (&c->lc_expiry);
2227 }
2228
2229 void lustre_swab_lustre_capa_key (struct lustre_capa_key *k)
2230 {
2231         __swab64s (&k->lk_mdsid);
2232         __swab32s (&k->lk_keyid);
2233         __swab32s (&k->lk_padding);
2234 }