Whamcloud - gitweb
LU-3336 lfsck: orphan OST-objects iteration
[fs/lustre-release.git] / lustre / ptlrpc / pack_generic.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2013, Intel Corporation.
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 cfs_size_round(offsetof(struct lustre_msg_v2,
61                                        lm_buflens[count]));
62 }
63
64 int lustre_msg_hdr_size(__u32 magic, int count)
65 {
66         switch (magic) {
67         case LUSTRE_MSG_MAGIC_V2:
68                 return lustre_msg_hdr_size_v2(count);
69         default:
70                 LASSERTF(0, "incorrect message magic: %08x\n", magic);
71                 return -EINVAL;
72         }
73 }
74 EXPORT_SYMBOL(lustre_msg_hdr_size);
75
76 void ptlrpc_buf_set_swabbed(struct ptlrpc_request *req, const int inout,
77                             int index)
78 {
79         if (inout)
80                 lustre_set_req_swabbed(req, index);
81         else
82                 lustre_set_rep_swabbed(req, index);
83 }
84 EXPORT_SYMBOL(ptlrpc_buf_set_swabbed);
85
86 int ptlrpc_buf_need_swab(struct ptlrpc_request *req, const int inout,
87                          int index)
88 {
89         if (inout)
90                 return (ptlrpc_req_need_swab(req) &&
91                         !lustre_req_swabbed(req, index));
92         else
93                 return (ptlrpc_rep_need_swab(req) &&
94                         !lustre_rep_swabbed(req, index));
95 }
96 EXPORT_SYMBOL(ptlrpc_buf_need_swab);
97
98 static inline int lustre_msg_check_version_v2(struct lustre_msg_v2 *msg,
99                                               __u32 version)
100 {
101         __u32 ver = lustre_msg_get_version(msg);
102         return (ver & LUSTRE_VERSION_MASK) != version;
103 }
104
105 int lustre_msg_check_version(struct lustre_msg *msg, __u32 version)
106 {
107         switch (msg->lm_magic) {
108         case LUSTRE_MSG_MAGIC_V1:
109                 CERROR("msg v1 not supported - please upgrade you system\n");
110                 return -EINVAL;
111         case LUSTRE_MSG_MAGIC_V2:
112                 return lustre_msg_check_version_v2(msg, version);
113         default:
114                 CERROR("incorrect message magic: %08x\n", msg->lm_magic);
115                 return 0;
116         }
117 }
118 EXPORT_SYMBOL(lustre_msg_check_version);
119
120 /* early reply size */
121 int lustre_msg_early_size()
122 {
123         static int size = 0;
124         if (!size) {
125                 /* Always reply old ptlrpc_body_v2 to keep interoprability
126                  * with the old client (< 2.3) which doesn't have pb_jobid
127                  * in the ptlrpc_body.
128                  *
129                  * XXX Remove this whenever we dorp interoprability with such
130                  *     client.
131                  */
132                 __u32 pblen = sizeof(struct ptlrpc_body_v2);
133                 size = lustre_msg_size(LUSTRE_MSG_MAGIC_V2, 1, &pblen);
134         }
135         return size;
136 }
137 EXPORT_SYMBOL(lustre_msg_early_size);
138
139 int lustre_msg_size_v2(int count, __u32 *lengths)
140 {
141         int size;
142         int i;
143
144         size = lustre_msg_hdr_size_v2(count);
145         for (i = 0; i < count; i++)
146                 size += cfs_size_round(lengths[i]);
147
148         return size;
149 }
150 EXPORT_SYMBOL(lustre_msg_size_v2);
151
152 /* This returns the size of the buffer that is required to hold a lustre_msg
153  * with the given sub-buffer lengths.
154  * NOTE: this should only be used for NEW requests, and should always be
155  *       in the form of a v2 request.  If this is a connection to a v1
156  *       target then the first buffer will be stripped because the ptlrpc
157  *       data is part of the lustre_msg_v1 header. b=14043 */
158 int lustre_msg_size(__u32 magic, int count, __u32 *lens)
159 {
160         __u32 size[] = { sizeof(struct ptlrpc_body) };
161
162         if (!lens) {
163                 LASSERT(count == 1);
164                 lens = size;
165         }
166
167         LASSERT(count > 0);
168         LASSERT(lens[MSG_PTLRPC_BODY_OFF] >= sizeof(struct ptlrpc_body_v2));
169
170         switch (magic) {
171         case LUSTRE_MSG_MAGIC_V2:
172                 return lustre_msg_size_v2(count, lens);
173         default:
174                 LASSERTF(0, "incorrect message magic: %08x\n", magic);
175                 return -EINVAL;
176         }
177 }
178 EXPORT_SYMBOL(lustre_msg_size);
179
180 /* This is used to determine the size of a buffer that was already packed
181  * and will correctly handle the different message formats. */
182 int lustre_packed_msg_size(struct lustre_msg *msg)
183 {
184         switch (msg->lm_magic) {
185         case LUSTRE_MSG_MAGIC_V2:
186                 return lustre_msg_size_v2(msg->lm_bufcount, msg->lm_buflens);
187         default:
188                 CERROR("incorrect message magic: %08x\n", msg->lm_magic);
189                 return 0;
190         }
191 }
192 EXPORT_SYMBOL(lustre_packed_msg_size);
193
194 void lustre_init_msg_v2(struct lustre_msg_v2 *msg, int count, __u32 *lens,
195                         char **bufs)
196 {
197         char *ptr;
198         int i;
199
200         msg->lm_bufcount = count;
201         /* XXX: lm_secflvr uninitialized here */
202         msg->lm_magic = LUSTRE_MSG_MAGIC_V2;
203
204         for (i = 0; i < count; i++)
205                 msg->lm_buflens[i] = lens[i];
206
207         if (bufs == NULL)
208                 return;
209
210         ptr = (char *)msg + lustre_msg_hdr_size_v2(count);
211         for (i = 0; i < count; i++) {
212                 char *tmp = bufs[i];
213                 LOGL(tmp, lens[i], ptr);
214         }
215 }
216 EXPORT_SYMBOL(lustre_init_msg_v2);
217
218 static int lustre_pack_request_v2(struct ptlrpc_request *req,
219                                   int count, __u32 *lens, char **bufs)
220 {
221         int reqlen, rc;
222
223         reqlen = lustre_msg_size_v2(count, lens);
224
225         rc = sptlrpc_cli_alloc_reqbuf(req, reqlen);
226         if (rc)
227                 return rc;
228
229         req->rq_reqlen = reqlen;
230
231         lustre_init_msg_v2(req->rq_reqmsg, count, lens, bufs);
232         lustre_msg_add_version(req->rq_reqmsg, PTLRPC_MSG_VERSION);
233         return 0;
234 }
235
236 int lustre_pack_request(struct ptlrpc_request *req, __u32 magic, int count,
237                         __u32 *lens, char **bufs)
238 {
239         __u32 size[] = { sizeof(struct ptlrpc_body) };
240
241         if (!lens) {
242                 LASSERT(count == 1);
243                 lens = size;
244         }
245
246         LASSERT(count > 0);
247         LASSERT(lens[MSG_PTLRPC_BODY_OFF] == sizeof(struct ptlrpc_body));
248
249         /* only use new format, we don't need to be compatible with 1.4 */
250         magic = LUSTRE_MSG_MAGIC_V2;
251
252         switch (magic) {
253         case LUSTRE_MSG_MAGIC_V2:
254                 return lustre_pack_request_v2(req, count, lens, bufs);
255         default:
256                 LASSERTF(0, "incorrect message magic: %08x\n", magic);
257                 return -EINVAL;
258         }
259 }
260 EXPORT_SYMBOL(lustre_pack_request);
261
262 #if RS_DEBUG
263 CFS_LIST_HEAD(ptlrpc_rs_debug_lru);
264 spinlock_t ptlrpc_rs_debug_lock;
265
266 #define PTLRPC_RS_DEBUG_LRU_ADD(rs)                                     \
267 do {                                                                    \
268         spin_lock(&ptlrpc_rs_debug_lock);                               \
269         cfs_list_add_tail(&(rs)->rs_debug_list, &ptlrpc_rs_debug_lru);  \
270         spin_unlock(&ptlrpc_rs_debug_lock);                             \
271 } while (0)
272
273 #define PTLRPC_RS_DEBUG_LRU_DEL(rs)                                     \
274 do {                                                                    \
275         spin_lock(&ptlrpc_rs_debug_lock);                               \
276         cfs_list_del(&(rs)->rs_debug_list);                             \
277         spin_unlock(&ptlrpc_rs_debug_lock);                             \
278 } while (0)
279 #else
280 # define PTLRPC_RS_DEBUG_LRU_ADD(rs) do {} while(0)
281 # define PTLRPC_RS_DEBUG_LRU_DEL(rs) do {} while(0)
282 #endif
283
284 struct ptlrpc_reply_state *
285 lustre_get_emerg_rs(struct ptlrpc_service_part *svcpt)
286 {
287         struct ptlrpc_reply_state *rs = NULL;
288
289         spin_lock(&svcpt->scp_rep_lock);
290
291         /* See if we have anything in a pool, and wait if nothing */
292         while (cfs_list_empty(&svcpt->scp_rep_idle)) {
293                 struct l_wait_info      lwi;
294                 int                     rc;
295
296                 spin_unlock(&svcpt->scp_rep_lock);
297                 /* If we cannot get anything for some long time, we better
298                  * bail out instead of waiting infinitely */
299                 lwi = LWI_TIMEOUT(cfs_time_seconds(10), NULL, NULL);
300                 rc = l_wait_event(svcpt->scp_rep_waitq,
301                                   !cfs_list_empty(&svcpt->scp_rep_idle), &lwi);
302                 if (rc != 0)
303                         goto out;
304                 spin_lock(&svcpt->scp_rep_lock);
305         }
306
307         rs = cfs_list_entry(svcpt->scp_rep_idle.next,
308                             struct ptlrpc_reply_state, rs_list);
309         cfs_list_del(&rs->rs_list);
310
311         spin_unlock(&svcpt->scp_rep_lock);
312
313         memset(rs, 0, svcpt->scp_service->srv_max_reply_size);
314         rs->rs_size = svcpt->scp_service->srv_max_reply_size;
315         rs->rs_svcpt = svcpt;
316         rs->rs_prealloc = 1;
317 out:
318         return rs;
319 }
320
321 void lustre_put_emerg_rs(struct ptlrpc_reply_state *rs)
322 {
323         struct ptlrpc_service_part *svcpt = rs->rs_svcpt;
324
325         spin_lock(&svcpt->scp_rep_lock);
326         cfs_list_add(&rs->rs_list, &svcpt->scp_rep_idle);
327         spin_unlock(&svcpt->scp_rep_lock);
328         wake_up(&svcpt->scp_rep_waitq);
329 }
330
331 int lustre_pack_reply_v2(struct ptlrpc_request *req, int count,
332                          __u32 *lens, char **bufs, int flags)
333 {
334         struct ptlrpc_reply_state *rs;
335         int                        msg_len, rc;
336         ENTRY;
337
338         LASSERT(req->rq_reply_state == NULL);
339
340         if ((flags & LPRFL_EARLY_REPLY) == 0) {
341                 spin_lock(&req->rq_lock);
342                 req->rq_packed_final = 1;
343                 spin_unlock(&req->rq_lock);
344         }
345
346         msg_len = lustre_msg_size_v2(count, lens);
347         rc = sptlrpc_svc_alloc_rs(req, msg_len);
348         if (rc)
349                 RETURN(rc);
350
351         rs = req->rq_reply_state;
352         cfs_atomic_set(&rs->rs_refcount, 1);    /* 1 ref for rq_reply_state */
353         rs->rs_cb_id.cbid_fn = reply_out_callback;
354         rs->rs_cb_id.cbid_arg = rs;
355         rs->rs_svcpt = req->rq_rqbd->rqbd_svcpt;
356         CFS_INIT_LIST_HEAD(&rs->rs_exp_list);
357         CFS_INIT_LIST_HEAD(&rs->rs_obd_list);
358         CFS_INIT_LIST_HEAD(&rs->rs_list);
359         spin_lock_init(&rs->rs_lock);
360
361         req->rq_replen = msg_len;
362         req->rq_reply_state = rs;
363         req->rq_repmsg = rs->rs_msg;
364
365         lustre_init_msg_v2(rs->rs_msg, count, lens, bufs);
366         lustre_msg_add_version(rs->rs_msg, PTLRPC_MSG_VERSION);
367
368         PTLRPC_RS_DEBUG_LRU_ADD(rs);
369
370         RETURN(0);
371 }
372 EXPORT_SYMBOL(lustre_pack_reply_v2);
373
374 int lustre_pack_reply_flags(struct ptlrpc_request *req, int count, __u32 *lens,
375                             char **bufs, int flags)
376 {
377         int rc = 0;
378         __u32 size[] = { sizeof(struct ptlrpc_body) };
379
380         if (!lens) {
381                 LASSERT(count == 1);
382                 lens = size;
383         }
384
385         LASSERT(count > 0);
386         LASSERT(lens[MSG_PTLRPC_BODY_OFF] == sizeof(struct ptlrpc_body));
387
388         switch (req->rq_reqmsg->lm_magic) {
389         case LUSTRE_MSG_MAGIC_V2:
390                 rc = lustre_pack_reply_v2(req, count, lens, bufs, flags);
391                 break;
392         default:
393                 LASSERTF(0, "incorrect message magic: %08x\n",
394                          req->rq_reqmsg->lm_magic);
395                 rc = -EINVAL;
396         }
397         if (rc != 0)
398                 CERROR("lustre_pack_reply failed: rc=%d size=%d\n", rc,
399                        lustre_msg_size(req->rq_reqmsg->lm_magic, count, lens));
400         return rc;
401 }
402 EXPORT_SYMBOL(lustre_pack_reply_flags);
403
404 int lustre_pack_reply(struct ptlrpc_request *req, int count, __u32 *lens,
405                       char **bufs)
406 {
407         return lustre_pack_reply_flags(req, count, lens, bufs, 0);
408 }
409 EXPORT_SYMBOL(lustre_pack_reply);
410
411 void *lustre_msg_buf_v2(struct lustre_msg_v2 *m, int n, int min_size)
412 {
413         int i, offset, buflen, bufcount;
414
415         LASSERT(m != NULL);
416         LASSERT(n >= 0);
417
418         bufcount = m->lm_bufcount;
419         if (unlikely(n >= bufcount)) {
420                 CDEBUG(D_INFO, "msg %p buffer[%d] not present (count %d)\n",
421                        m, n, bufcount);
422                 return NULL;
423         }
424
425         buflen = m->lm_buflens[n];
426         if (unlikely(buflen < min_size)) {
427                 CERROR("msg %p buffer[%d] size %d too small "
428                        "(required %d, opc=%d)\n", m, n, buflen, min_size,
429                        n == MSG_PTLRPC_BODY_OFF ? -1 : lustre_msg_get_opc(m));
430                 return NULL;
431         }
432
433         offset = lustre_msg_hdr_size_v2(bufcount);
434         for (i = 0; i < n; i++)
435                 offset += cfs_size_round(m->lm_buflens[i]);
436
437         return (char *)m + offset;
438 }
439
440 void *lustre_msg_buf(struct lustre_msg *m, int n, int min_size)
441 {
442         switch (m->lm_magic) {
443         case LUSTRE_MSG_MAGIC_V2:
444                 return lustre_msg_buf_v2(m, n, min_size);
445         default:
446                 LASSERTF(0, "incorrect message magic: %08x(msg:%p)\n", m->lm_magic, m);
447                 return NULL;
448         }
449 }
450 EXPORT_SYMBOL(lustre_msg_buf);
451
452 int lustre_shrink_msg_v2(struct lustre_msg_v2 *msg, int segment,
453                          unsigned int newlen, int move_data)
454 {
455         char   *tail = NULL, *newpos;
456         int     tail_len = 0, n;
457
458         LASSERT(msg);
459         LASSERT(msg->lm_bufcount > segment);
460         LASSERT(msg->lm_buflens[segment] >= newlen);
461
462         if (msg->lm_buflens[segment] == newlen)
463                 goto out;
464
465         if (move_data && msg->lm_bufcount > segment + 1) {
466                 tail = lustre_msg_buf_v2(msg, segment + 1, 0);
467                 for (n = segment + 1; n < msg->lm_bufcount; n++)
468                         tail_len += cfs_size_round(msg->lm_buflens[n]);
469         }
470
471         msg->lm_buflens[segment] = newlen;
472
473         if (tail && tail_len) {
474                 newpos = lustre_msg_buf_v2(msg, segment + 1, 0);
475                 LASSERT(newpos <= tail);
476                 if (newpos != tail)
477                         memmove(newpos, tail, tail_len);
478         }
479 out:
480         return lustre_msg_size_v2(msg->lm_bufcount, msg->lm_buflens);
481 }
482
483 /*
484  * for @msg, shrink @segment to size @newlen. if @move_data is non-zero,
485  * we also move data forward from @segment + 1.
486  *
487  * if @newlen == 0, we remove the segment completely, but we still keep the
488  * totally bufcount the same to save possible data moving. this will leave a
489  * unused segment with size 0 at the tail, but that's ok.
490  *
491  * return new msg size after shrinking.
492  *
493  * CAUTION:
494  * + if any buffers higher than @segment has been filled in, must call shrink
495  *   with non-zero @move_data.
496  * + caller should NOT keep pointers to msg buffers which higher than @segment
497  *   after call shrink.
498  */
499 int lustre_shrink_msg(struct lustre_msg *msg, int segment,
500                       unsigned int newlen, int move_data)
501 {
502         switch (msg->lm_magic) {
503         case LUSTRE_MSG_MAGIC_V2:
504                 return lustre_shrink_msg_v2(msg, segment, newlen, move_data);
505         default:
506                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
507         }
508 }
509 EXPORT_SYMBOL(lustre_shrink_msg);
510
511 void lustre_free_reply_state(struct ptlrpc_reply_state *rs)
512 {
513         PTLRPC_RS_DEBUG_LRU_DEL(rs);
514
515         LASSERT (cfs_atomic_read(&rs->rs_refcount) == 0);
516         LASSERT (!rs->rs_difficult || rs->rs_handled);
517         LASSERT (!rs->rs_on_net);
518         LASSERT (!rs->rs_scheduled);
519         LASSERT (rs->rs_export == NULL);
520         LASSERT (rs->rs_nlocks == 0);
521         LASSERT (cfs_list_empty(&rs->rs_exp_list));
522         LASSERT (cfs_list_empty(&rs->rs_obd_list));
523
524         sptlrpc_svc_free_rs(rs);
525 }
526 EXPORT_SYMBOL(lustre_free_reply_state);
527
528 static int lustre_unpack_msg_v2(struct lustre_msg_v2 *m, int len)
529 {
530         int swabbed, required_len, i;
531
532         /* Now we know the sender speaks my language. */
533         required_len = lustre_msg_hdr_size_v2(0);
534         if (len < required_len) {
535                 /* can't even look inside the message */
536                 CERROR("message length %d too small for lustre_msg\n", len);
537                 return -EINVAL;
538         }
539
540         swabbed = (m->lm_magic == LUSTRE_MSG_MAGIC_V2_SWABBED);
541
542         if (swabbed) {
543                 __swab32s(&m->lm_magic);
544                 __swab32s(&m->lm_bufcount);
545                 __swab32s(&m->lm_secflvr);
546                 __swab32s(&m->lm_repsize);
547                 __swab32s(&m->lm_cksum);
548                 __swab32s(&m->lm_flags);
549                 CLASSERT(offsetof(typeof(*m), lm_padding_2) != 0);
550                 CLASSERT(offsetof(typeof(*m), lm_padding_3) != 0);
551         }
552
553         required_len = lustre_msg_hdr_size_v2(m->lm_bufcount);
554         if (len < required_len) {
555                 /* didn't receive all the buffer lengths */
556                 CERROR ("message length %d too small for %d buflens\n",
557                         len, m->lm_bufcount);
558                 return -EINVAL;
559         }
560
561         for (i = 0; i < m->lm_bufcount; i++) {
562                 if (swabbed)
563                         __swab32s(&m->lm_buflens[i]);
564                 required_len += cfs_size_round(m->lm_buflens[i]);
565         }
566
567         if (len < required_len) {
568                 CERROR("len: %d, required_len %d\n", len, required_len);
569                 CERROR("bufcount: %d\n", m->lm_bufcount);
570                 for (i = 0; i < m->lm_bufcount; i++)
571                         CERROR("buffer %d length %d\n", i, m->lm_buflens[i]);
572                 return -EINVAL;
573         }
574
575         return swabbed;
576 }
577
578 int __lustre_unpack_msg(struct lustre_msg *m, int len)
579 {
580         int required_len, rc;
581         ENTRY;
582
583         /* We can provide a slightly better error log, if we check the
584          * message magic and version first.  In the future, struct
585          * lustre_msg may grow, and we'd like to log a version mismatch,
586          * rather than a short message.
587          *
588          */
589         required_len = offsetof(struct lustre_msg, lm_magic) +
590                        sizeof(m->lm_magic);
591         if (len < required_len) {
592                 /* can't even look inside the message */
593                 CERROR("message length %d too small for magic/version check\n",
594                        len);
595                 RETURN(-EINVAL);
596         }
597
598         rc = lustre_unpack_msg_v2(m, len);
599
600         RETURN(rc);
601 }
602 EXPORT_SYMBOL(__lustre_unpack_msg);
603
604 int ptlrpc_unpack_req_msg(struct ptlrpc_request *req, int len)
605 {
606         int rc;
607         rc = __lustre_unpack_msg(req->rq_reqmsg, len);
608         if (rc == 1) {
609                 lustre_set_req_swabbed(req, MSG_PTLRPC_HEADER_OFF);
610                 rc = 0;
611         }
612         return rc;
613 }
614 EXPORT_SYMBOL(ptlrpc_unpack_req_msg);
615
616 int ptlrpc_unpack_rep_msg(struct ptlrpc_request *req, int len)
617 {
618         int rc;
619         rc = __lustre_unpack_msg(req->rq_repmsg, len);
620         if (rc == 1) {
621                 lustre_set_rep_swabbed(req, MSG_PTLRPC_HEADER_OFF);
622                 rc = 0;
623         }
624         return rc;
625 }
626 EXPORT_SYMBOL(ptlrpc_unpack_rep_msg);
627
628 static inline int lustre_unpack_ptlrpc_body_v2(struct ptlrpc_request *req,
629                                                const int inout, int offset)
630 {
631         struct ptlrpc_body *pb;
632         struct lustre_msg_v2 *m = inout ? req->rq_reqmsg : req->rq_repmsg;
633
634         pb = lustre_msg_buf_v2(m, offset, sizeof(struct ptlrpc_body_v2));
635         if (!pb) {
636                 CERROR("error unpacking ptlrpc body\n");
637                 return -EFAULT;
638         }
639         if (ptlrpc_buf_need_swab(req, inout, offset)) {
640                 lustre_swab_ptlrpc_body(pb);
641                 ptlrpc_buf_set_swabbed(req, inout, offset);
642         }
643
644         if ((pb->pb_version & ~LUSTRE_VERSION_MASK) != PTLRPC_MSG_VERSION) {
645                  CERROR("wrong lustre_msg version %08x\n", pb->pb_version);
646                  return -EINVAL;
647         }
648
649         if (!inout)
650                 pb->pb_status = ptlrpc_status_ntoh(pb->pb_status);
651
652         return 0;
653 }
654
655 int lustre_unpack_req_ptlrpc_body(struct ptlrpc_request *req, int offset)
656 {
657         switch (req->rq_reqmsg->lm_magic) {
658         case LUSTRE_MSG_MAGIC_V2:
659                 return lustre_unpack_ptlrpc_body_v2(req, 1, offset);
660         default:
661                 CERROR("bad lustre msg magic: %08x\n",
662                        req->rq_reqmsg->lm_magic);
663                 return -EINVAL;
664         }
665 }
666
667 int lustre_unpack_rep_ptlrpc_body(struct ptlrpc_request *req, int offset)
668 {
669         switch (req->rq_repmsg->lm_magic) {
670         case LUSTRE_MSG_MAGIC_V2:
671                 return lustre_unpack_ptlrpc_body_v2(req, 0, offset);
672         default:
673                 CERROR("bad lustre msg magic: %08x\n",
674                        req->rq_repmsg->lm_magic);
675                 return -EINVAL;
676         }
677 }
678
679 static inline int lustre_msg_buflen_v2(struct lustre_msg_v2 *m, int n)
680 {
681         if (n >= m->lm_bufcount)
682                 return 0;
683
684         return m->lm_buflens[n];
685 }
686
687 /**
688  * lustre_msg_buflen - return the length of buffer \a n in message \a m
689  * \param m lustre_msg (request or reply) to look at
690  * \param n message index (base 0)
691  *
692  * returns zero for non-existent message indices
693  */
694 int lustre_msg_buflen(struct lustre_msg *m, int n)
695 {
696         switch (m->lm_magic) {
697         case LUSTRE_MSG_MAGIC_V2:
698                 return lustre_msg_buflen_v2(m, n);
699         default:
700                 CERROR("incorrect message magic: %08x\n", m->lm_magic);
701                 return -EINVAL;
702         }
703 }
704 EXPORT_SYMBOL(lustre_msg_buflen);
705
706 static inline void
707 lustre_msg_set_buflen_v2(struct lustre_msg_v2 *m, int n, int len)
708 {
709         if (n >= m->lm_bufcount)
710                 LBUG();
711
712         m->lm_buflens[n] = len;
713 }
714
715 void lustre_msg_set_buflen(struct lustre_msg *m, int n, int len)
716 {
717         switch (m->lm_magic) {
718         case LUSTRE_MSG_MAGIC_V2:
719                 lustre_msg_set_buflen_v2(m, n, len);
720                 return;
721         default:
722                 LASSERTF(0, "incorrect message magic: %08x\n", m->lm_magic);
723         }
724 }
725
726 EXPORT_SYMBOL(lustre_msg_set_buflen);
727
728 /* NB return the bufcount for lustre_msg_v2 format, so if message is packed
729  * in V1 format, the result is one bigger. (add struct ptlrpc_body). */
730 int lustre_msg_bufcount(struct lustre_msg *m)
731 {
732         switch (m->lm_magic) {
733         case LUSTRE_MSG_MAGIC_V2:
734                 return m->lm_bufcount;
735         default:
736                 CERROR("incorrect message magic: %08x\n", m->lm_magic);
737                 return -EINVAL;
738         }
739 }
740 EXPORT_SYMBOL(lustre_msg_bufcount);
741
742 char *lustre_msg_string(struct lustre_msg *m, int index, int max_len)
743 {
744         /* max_len == 0 means the string should fill the buffer */
745         char *str;
746         int slen, blen;
747
748         switch (m->lm_magic) {
749         case LUSTRE_MSG_MAGIC_V2:
750                 str = lustre_msg_buf_v2(m, index, 0);
751                 blen = lustre_msg_buflen_v2(m, index);
752                 break;
753         default:
754                 LASSERTF(0, "incorrect message magic: %08x\n", m->lm_magic);
755         }
756
757         if (str == NULL) {
758                 CERROR ("can't unpack string in msg %p buffer[%d]\n", m, index);
759                 return NULL;
760         }
761
762         slen = strnlen(str, blen);
763
764         if (slen == blen) {                     /* not NULL terminated */
765                 CERROR("can't unpack non-NULL terminated string in "
766                         "msg %p buffer[%d] len %d\n", m, index, blen);
767                 return NULL;
768         }
769
770         if (max_len == 0) {
771                 if (slen != blen - 1) {
772                         CERROR("can't unpack short string in msg %p "
773                                "buffer[%d] len %d: strlen %d\n",
774                                m, index, blen, slen);
775                         return NULL;
776                 }
777         } else if (slen > max_len) {
778                 CERROR("can't unpack oversized string in msg %p "
779                        "buffer[%d] len %d strlen %d: max %d expected\n",
780                        m, index, blen, slen, max_len);
781                 return NULL;
782         }
783
784         return str;
785 }
786 EXPORT_SYMBOL(lustre_msg_string);
787
788 /* Wrap up the normal fixed length cases */
789 static inline void *__lustre_swab_buf(struct lustre_msg *msg, int index,
790                                       int min_size, void *swabber)
791 {
792         void *ptr = NULL;
793
794         LASSERT(msg != NULL);
795         switch (msg->lm_magic) {
796         case LUSTRE_MSG_MAGIC_V2:
797                 ptr = lustre_msg_buf_v2(msg, index, min_size);
798                 break;
799         default:
800                 CERROR("incorrect message magic: %08x\n", msg->lm_magic);
801         }
802
803         if (ptr && swabber)
804                 ((void (*)(void *))swabber)(ptr);
805
806         return ptr;
807 }
808
809 static inline struct ptlrpc_body *lustre_msg_ptlrpc_body(struct lustre_msg *msg)
810 {
811         return lustre_msg_buf_v2(msg, MSG_PTLRPC_BODY_OFF,
812                                  sizeof(struct ptlrpc_body_v2));
813 }
814
815 __u32 lustre_msghdr_get_flags(struct lustre_msg *msg)
816 {
817         switch (msg->lm_magic) {
818         case LUSTRE_MSG_MAGIC_V1:
819         case LUSTRE_MSG_MAGIC_V1_SWABBED:
820                 return 0;
821         case LUSTRE_MSG_MAGIC_V2:
822                 /* already in host endian */
823                 return msg->lm_flags;
824         default:
825                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
826                 return 0;
827         }
828 }
829 EXPORT_SYMBOL(lustre_msghdr_get_flags);
830
831 void lustre_msghdr_set_flags(struct lustre_msg *msg, __u32 flags)
832 {
833         switch (msg->lm_magic) {
834         case LUSTRE_MSG_MAGIC_V1:
835                 return;
836         case LUSTRE_MSG_MAGIC_V2:
837                 msg->lm_flags = flags;
838                 return;
839         default:
840                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
841         }
842 }
843
844 __u32 lustre_msg_get_flags(struct lustre_msg *msg)
845 {
846         switch (msg->lm_magic) {
847         case LUSTRE_MSG_MAGIC_V2: {
848                 struct ptlrpc_body *pb = lustre_msg_ptlrpc_body(msg);
849                 if (!pb) {
850                         CERROR("invalid msg %p: no ptlrpc body!\n", msg);
851                         return 0;
852                 }
853                 return pb->pb_flags;
854         }
855         default:
856                 /* flags might be printed in debug code while message
857                  * uninitialized */
858                 return 0;
859         }
860 }
861 EXPORT_SYMBOL(lustre_msg_get_flags);
862
863 void lustre_msg_add_flags(struct lustre_msg *msg, int flags)
864 {
865         switch (msg->lm_magic) {
866         case LUSTRE_MSG_MAGIC_V2: {
867                 struct ptlrpc_body *pb = lustre_msg_ptlrpc_body(msg);
868                 LASSERTF(pb, "invalid msg %p: no ptlrpc body!\n", msg);
869                 pb->pb_flags |= flags;
870                 return;
871         }
872         default:
873                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
874         }
875 }
876 EXPORT_SYMBOL(lustre_msg_add_flags);
877
878 void lustre_msg_set_flags(struct lustre_msg *msg, int flags)
879 {
880         switch (msg->lm_magic) {
881         case LUSTRE_MSG_MAGIC_V2: {
882                 struct ptlrpc_body *pb = lustre_msg_ptlrpc_body(msg);
883                 LASSERTF(pb, "invalid msg %p: no ptlrpc body!\n", msg);
884                 pb->pb_flags = flags;
885                 return;
886         }
887         default:
888                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
889         }
890 }
891 EXPORT_SYMBOL(lustre_msg_set_flags);
892
893 void lustre_msg_clear_flags(struct lustre_msg *msg, int flags)
894 {
895         switch (msg->lm_magic) {
896         case LUSTRE_MSG_MAGIC_V2: {
897                 struct ptlrpc_body *pb = lustre_msg_ptlrpc_body(msg);
898                 LASSERTF(pb, "invalid msg %p: no ptlrpc body!\n", msg);
899                 pb->pb_flags &= ~(MSG_GEN_FLAG_MASK & flags);
900                 return;
901         }
902         default:
903                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
904         }
905 }
906 EXPORT_SYMBOL(lustre_msg_clear_flags);
907
908 __u32 lustre_msg_get_op_flags(struct lustre_msg *msg)
909 {
910         switch (msg->lm_magic) {
911         case LUSTRE_MSG_MAGIC_V2: {
912                 struct ptlrpc_body *pb = lustre_msg_ptlrpc_body(msg);
913                 if (!pb) {
914                         CERROR("invalid msg %p: no ptlrpc body!\n", msg);
915                         return 0;
916                 }
917                 return pb->pb_op_flags;
918         }
919         default:
920                 return 0;
921         }
922 }
923 EXPORT_SYMBOL(lustre_msg_get_op_flags);
924
925 void lustre_msg_add_op_flags(struct lustre_msg *msg, int flags)
926 {
927         switch (msg->lm_magic) {
928         case LUSTRE_MSG_MAGIC_V2: {
929                 struct ptlrpc_body *pb = lustre_msg_ptlrpc_body(msg);
930                 LASSERTF(pb, "invalid msg %p: no ptlrpc body!\n", msg);
931                 pb->pb_op_flags |= flags;
932                 return;
933         }
934         default:
935                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
936         }
937 }
938 EXPORT_SYMBOL(lustre_msg_add_op_flags);
939
940 void lustre_msg_set_op_flags(struct lustre_msg *msg, int flags)
941 {
942         switch (msg->lm_magic) {
943         case LUSTRE_MSG_MAGIC_V2: {
944                 struct ptlrpc_body *pb = lustre_msg_ptlrpc_body(msg);
945                 LASSERTF(pb, "invalid msg %p: no ptlrpc body!\n", msg);
946                 pb->pb_op_flags |= flags;
947                 return;
948         }
949         default:
950                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
951         }
952 }
953 EXPORT_SYMBOL(lustre_msg_set_op_flags);
954
955 struct lustre_handle *lustre_msg_get_handle(struct lustre_msg *msg)
956 {
957         switch (msg->lm_magic) {
958         case LUSTRE_MSG_MAGIC_V2: {
959                 struct ptlrpc_body *pb = lustre_msg_ptlrpc_body(msg);
960                 if (!pb) {
961                         CERROR("invalid msg %p: no ptlrpc body!\n", msg);
962                         return NULL;
963                 }
964                 return &pb->pb_handle;
965         }
966         default:
967                 CERROR("incorrect message magic: %08x\n", msg->lm_magic);
968                 return NULL;
969         }
970 }
971 EXPORT_SYMBOL(lustre_msg_get_handle);
972
973 __u32 lustre_msg_get_type(struct lustre_msg *msg)
974 {
975         switch (msg->lm_magic) {
976         case LUSTRE_MSG_MAGIC_V2: {
977                 struct ptlrpc_body *pb = lustre_msg_ptlrpc_body(msg);
978                 if (!pb) {
979                         CERROR("invalid msg %p: no ptlrpc body!\n", msg);
980                         return PTL_RPC_MSG_ERR;
981                 }
982                 return pb->pb_type;
983         }
984         default:
985                 CERROR("incorrect message magic: %08x\n", msg->lm_magic);
986                 return PTL_RPC_MSG_ERR;
987         }
988 }
989 EXPORT_SYMBOL(lustre_msg_get_type);
990
991 __u32 lustre_msg_get_version(struct lustre_msg *msg)
992 {
993         switch (msg->lm_magic) {
994         case LUSTRE_MSG_MAGIC_V2: {
995                 struct ptlrpc_body *pb = lustre_msg_ptlrpc_body(msg);
996                 if (!pb) {
997                         CERROR("invalid msg %p: no ptlrpc body!\n", msg);
998                         return 0;
999                 }
1000                 return pb->pb_version;
1001         }
1002         default:
1003                 CERROR("incorrect message magic: %08x\n", msg->lm_magic);
1004                 return 0;
1005         }
1006 }
1007 EXPORT_SYMBOL(lustre_msg_get_version);
1008
1009 void lustre_msg_add_version(struct lustre_msg *msg, int version)
1010 {
1011         switch (msg->lm_magic) {
1012         case LUSTRE_MSG_MAGIC_V2: {
1013                 struct ptlrpc_body *pb = lustre_msg_ptlrpc_body(msg);
1014                 LASSERTF(pb, "invalid msg %p: no ptlrpc body!\n", msg);
1015                 pb->pb_version |= version;
1016                 return;
1017         }
1018         default:
1019                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
1020         }
1021 }
1022 EXPORT_SYMBOL(lustre_msg_add_version);
1023
1024 __u32 lustre_msg_get_opc(struct lustre_msg *msg)
1025 {
1026         switch (msg->lm_magic) {
1027         case LUSTRE_MSG_MAGIC_V2: {
1028                 struct ptlrpc_body *pb = lustre_msg_ptlrpc_body(msg);
1029                 if (!pb) {
1030                         CERROR("invalid msg %p: no ptlrpc body!\n", msg);
1031                         return 0;
1032                 }
1033                 return pb->pb_opc;
1034         }
1035         default:
1036                 CERROR("incorrect message magic: %08x(msg:%p)\n", msg->lm_magic, msg);
1037                 LBUG();
1038                 return 0;
1039         }
1040 }
1041 EXPORT_SYMBOL(lustre_msg_get_opc);
1042
1043 __u64 lustre_msg_get_last_xid(struct lustre_msg *msg)
1044 {
1045         switch (msg->lm_magic) {
1046         case LUSTRE_MSG_MAGIC_V2: {
1047                 struct ptlrpc_body *pb = lustre_msg_ptlrpc_body(msg);
1048                 if (!pb) {
1049                         CERROR("invalid msg %p: no ptlrpc body!\n", msg);
1050                         return 0;
1051                 }
1052                 return pb->pb_last_xid;
1053         }
1054         default:
1055                 CERROR("incorrect message magic: %08x\n", msg->lm_magic);
1056                 return 0;
1057         }
1058 }
1059 EXPORT_SYMBOL(lustre_msg_get_last_xid);
1060
1061 __u64 lustre_msg_get_last_committed(struct lustre_msg *msg)
1062 {
1063         switch (msg->lm_magic) {
1064         case LUSTRE_MSG_MAGIC_V2: {
1065                 struct ptlrpc_body *pb = lustre_msg_ptlrpc_body(msg);
1066                 if (!pb) {
1067                         CERROR("invalid msg %p: no ptlrpc body!\n", msg);
1068                         return 0;
1069                 }
1070                 return pb->pb_last_committed;
1071         }
1072         default:
1073                 CERROR("incorrect message magic: %08x\n", msg->lm_magic);
1074                 return 0;
1075         }
1076 }
1077 EXPORT_SYMBOL(lustre_msg_get_last_committed);
1078
1079 __u64 *lustre_msg_get_versions(struct lustre_msg *msg)
1080 {
1081         switch (msg->lm_magic) {
1082         case LUSTRE_MSG_MAGIC_V1:
1083                 return NULL;
1084         case LUSTRE_MSG_MAGIC_V2: {
1085                 struct ptlrpc_body *pb = lustre_msg_ptlrpc_body(msg);
1086                 if (!pb) {
1087                         CERROR("invalid msg %p: no ptlrpc body!\n", msg);
1088                         return NULL;
1089                 }
1090                 return pb->pb_pre_versions;
1091         }
1092         default:
1093                 CERROR("incorrect message magic: %08x\n", msg->lm_magic);
1094                 return NULL;
1095         }
1096 }
1097 EXPORT_SYMBOL(lustre_msg_get_versions);
1098
1099 __u64 lustre_msg_get_transno(struct lustre_msg *msg)
1100 {
1101         switch (msg->lm_magic) {
1102         case LUSTRE_MSG_MAGIC_V2: {
1103                 struct ptlrpc_body *pb = lustre_msg_ptlrpc_body(msg);
1104                 if (!pb) {
1105                         CERROR("invalid msg %p: no ptlrpc body!\n", msg);
1106                         return 0;
1107                 }
1108                 return pb->pb_transno;
1109         }
1110         default:
1111                 CERROR("incorrect message magic: %08x\n", msg->lm_magic);
1112                 return 0;
1113         }
1114 }
1115 EXPORT_SYMBOL(lustre_msg_get_transno);
1116
1117 int lustre_msg_get_status(struct lustre_msg *msg)
1118 {
1119         switch (msg->lm_magic) {
1120         case LUSTRE_MSG_MAGIC_V2: {
1121                 struct ptlrpc_body *pb = lustre_msg_ptlrpc_body(msg);
1122                 if (!pb) {
1123                         CERROR("invalid msg %p: no ptlrpc body!\n", msg);
1124                         return -EINVAL;
1125                 }
1126                 return pb->pb_status;
1127         }
1128         default:
1129                 /* status might be printed in debug code while message
1130                  * uninitialized */
1131                 return -EINVAL;
1132         }
1133 }
1134 EXPORT_SYMBOL(lustre_msg_get_status);
1135
1136 __u64 lustre_msg_get_slv(struct lustre_msg *msg)
1137 {
1138         switch (msg->lm_magic) {
1139         case LUSTRE_MSG_MAGIC_V2: {
1140                 struct ptlrpc_body *pb = lustre_msg_ptlrpc_body(msg);
1141                 if (!pb) {
1142                         CERROR("invalid msg %p: no ptlrpc body!\n", msg);
1143                         return -EINVAL;
1144                 }
1145                 return pb->pb_slv;
1146         }
1147         default:
1148                 CERROR("invalid msg magic %08x\n", msg->lm_magic);
1149                 return -EINVAL;
1150         }
1151 }
1152 EXPORT_SYMBOL(lustre_msg_get_slv);
1153
1154
1155 void lustre_msg_set_slv(struct lustre_msg *msg, __u64 slv)
1156 {
1157         switch (msg->lm_magic) {
1158         case LUSTRE_MSG_MAGIC_V2: {
1159                 struct ptlrpc_body *pb = lustre_msg_ptlrpc_body(msg);
1160                 if (!pb) {
1161                         CERROR("invalid msg %p: no ptlrpc body!\n", msg);
1162                         return;
1163                 }
1164                 pb->pb_slv = slv;
1165                 return;
1166         }
1167         default:
1168                 CERROR("invalid msg magic %x\n", msg->lm_magic);
1169                 return;
1170         }
1171 }
1172 EXPORT_SYMBOL(lustre_msg_set_slv);
1173
1174 __u32 lustre_msg_get_limit(struct lustre_msg *msg)
1175 {
1176         switch (msg->lm_magic) {
1177         case LUSTRE_MSG_MAGIC_V2: {
1178                 struct ptlrpc_body *pb = lustre_msg_ptlrpc_body(msg);
1179                 if (!pb) {
1180                         CERROR("invalid msg %p: no ptlrpc body!\n", msg);
1181                         return -EINVAL;
1182                 }
1183                 return pb->pb_limit;
1184         }
1185         default:
1186                 CERROR("invalid msg magic %x\n", msg->lm_magic);
1187                 return -EINVAL;
1188         }
1189 }
1190 EXPORT_SYMBOL(lustre_msg_get_limit);
1191
1192
1193 void lustre_msg_set_limit(struct lustre_msg *msg, __u64 limit)
1194 {
1195         switch (msg->lm_magic) {
1196         case LUSTRE_MSG_MAGIC_V2: {
1197                 struct ptlrpc_body *pb = lustre_msg_ptlrpc_body(msg);
1198                 if (!pb) {
1199                         CERROR("invalid msg %p: no ptlrpc body!\n", msg);
1200                         return;
1201                 }
1202                 pb->pb_limit = limit;
1203                 return;
1204         }
1205         default:
1206                 CERROR("invalid msg magic %08x\n", msg->lm_magic);
1207                 return;
1208         }
1209 }
1210 EXPORT_SYMBOL(lustre_msg_set_limit);
1211
1212 __u32 lustre_msg_get_conn_cnt(struct lustre_msg *msg)
1213 {
1214         switch (msg->lm_magic) {
1215         case LUSTRE_MSG_MAGIC_V2: {
1216                 struct ptlrpc_body *pb = lustre_msg_ptlrpc_body(msg);
1217                 if (!pb) {
1218                         CERROR("invalid msg %p: no ptlrpc body!\n", msg);
1219                         return 0;
1220                 }
1221                 return pb->pb_conn_cnt;
1222         }
1223         default:
1224                 CERROR("incorrect message magic: %08x\n", msg->lm_magic);
1225                 return 0;
1226         }
1227 }
1228 EXPORT_SYMBOL(lustre_msg_get_conn_cnt);
1229
1230 int lustre_msg_is_v1(struct lustre_msg *msg)
1231 {
1232         switch (msg->lm_magic) {
1233         case LUSTRE_MSG_MAGIC_V1:
1234         case LUSTRE_MSG_MAGIC_V1_SWABBED:
1235                 return 1;
1236         default:
1237                 return 0;
1238         }
1239 }
1240 EXPORT_SYMBOL(lustre_msg_is_v1);
1241
1242 __u32 lustre_msg_get_magic(struct lustre_msg *msg)
1243 {
1244         switch (msg->lm_magic) {
1245         case LUSTRE_MSG_MAGIC_V2:
1246                 return msg->lm_magic;
1247         default:
1248                 CERROR("incorrect message magic: %08x\n", msg->lm_magic);
1249                 return 0;
1250         }
1251 }
1252 EXPORT_SYMBOL(lustre_msg_get_magic);
1253
1254 __u32 lustre_msg_get_timeout(struct lustre_msg *msg)
1255 {
1256         switch (msg->lm_magic) {
1257         case LUSTRE_MSG_MAGIC_V1:
1258         case LUSTRE_MSG_MAGIC_V1_SWABBED:
1259                 return 0;
1260         case LUSTRE_MSG_MAGIC_V2: {
1261                 struct ptlrpc_body *pb = lustre_msg_ptlrpc_body(msg);
1262                 if (!pb) {
1263                         CERROR("invalid msg %p: no ptlrpc body!\n", msg);
1264                         return 0;
1265
1266                 }
1267                 return pb->pb_timeout;
1268         }
1269         default:
1270                 CERROR("incorrect message magic: %08x\n", msg->lm_magic);
1271                 return 0;
1272         }
1273 }
1274
1275 __u32 lustre_msg_get_service_time(struct lustre_msg *msg)
1276 {
1277         switch (msg->lm_magic) {
1278         case LUSTRE_MSG_MAGIC_V1:
1279         case LUSTRE_MSG_MAGIC_V1_SWABBED:
1280                 return 0;
1281         case LUSTRE_MSG_MAGIC_V2: {
1282                 struct ptlrpc_body *pb = lustre_msg_ptlrpc_body(msg);
1283                 if (!pb) {
1284                         CERROR("invalid msg %p: no ptlrpc body!\n", msg);
1285                         return 0;
1286
1287                 }
1288                 return pb->pb_service_time;
1289         }
1290         default:
1291                 CERROR("incorrect message magic: %08x\n", msg->lm_magic);
1292                 return 0;
1293         }
1294 }
1295
1296 char *lustre_msg_get_jobid(struct lustre_msg *msg)
1297 {
1298         switch (msg->lm_magic) {
1299         case LUSTRE_MSG_MAGIC_V1:
1300         case LUSTRE_MSG_MAGIC_V1_SWABBED:
1301                 return NULL;
1302         case LUSTRE_MSG_MAGIC_V2: {
1303                 struct ptlrpc_body *pb =
1304                         lustre_msg_buf_v2(msg, MSG_PTLRPC_BODY_OFF,
1305                                           sizeof(struct ptlrpc_body));
1306                 if (!pb)
1307                         return NULL;
1308
1309                 return pb->pb_jobid;
1310         }
1311         default:
1312                 CERROR("incorrect message magic: %08x\n", msg->lm_magic);
1313                 return NULL;
1314         }
1315 }
1316 EXPORT_SYMBOL(lustre_msg_get_jobid);
1317
1318 __u32 lustre_msg_get_cksum(struct lustre_msg *msg)
1319 {
1320         switch (msg->lm_magic) {
1321         case LUSTRE_MSG_MAGIC_V2:
1322                 return msg->lm_cksum;
1323         default:
1324                 CERROR("incorrect message magic: %08x\n", msg->lm_magic);
1325                 return 0;
1326         }
1327 }
1328
1329 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2, 7, 50, 0)
1330 /*
1331  * In 1.6 and 1.8 the checksum was computed only on struct ptlrpc_body as
1332  * it was in 1.6 (88 bytes, smaller than the full size in 1.8).  It makes
1333  * more sense to compute the checksum on the full ptlrpc_body, regardless
1334  * of what size it is, but in order to keep interoperability with 1.8 we
1335  * can optionally also checksum only the first 88 bytes (caller decides). */
1336 # define ptlrpc_body_cksum_size_compat18         88
1337
1338 __u32 lustre_msg_calc_cksum(struct lustre_msg *msg, int compat18)
1339 #else
1340 # warning "remove checksum compatibility support for b1_8"
1341 __u32 lustre_msg_calc_cksum(struct lustre_msg *msg)
1342 #endif
1343 {
1344         switch (msg->lm_magic) {
1345         case LUSTRE_MSG_MAGIC_V2: {
1346                 struct ptlrpc_body *pb = lustre_msg_ptlrpc_body(msg);
1347 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2, 7, 50, 0)
1348                 __u32 crc;
1349                 unsigned int hsize = 4;
1350                 __u32 len = compat18 ? ptlrpc_body_cksum_size_compat18 :
1351                             lustre_msg_buflen(msg, MSG_PTLRPC_BODY_OFF);
1352                 LASSERTF(pb, "invalid msg %p: no ptlrpc body!\n", msg);
1353                 cfs_crypto_hash_digest(CFS_HASH_ALG_CRC32, (unsigned char *)pb,
1354                                        len, NULL, 0, (unsigned char *)&crc,
1355                                        &hsize);
1356                 return crc;
1357 #else
1358 # warning "remove checksum compatibility support for b1_8"
1359                 __u32 crc;
1360                 unsigned int hsize = 4;
1361                 cfs_crypto_hash_digest(CFS_HASH_ALG_CRC32, (unsigned char *)pb,
1362                                    lustre_msg_buflen(msg, MSG_PTLRPC_BODY_OFF),
1363                                    NULL, 0, (unsigned char *)&crc, &hsize);
1364                 return crc;
1365 #endif
1366         }
1367         default:
1368                 CERROR("incorrect message magic: %08x\n", msg->lm_magic);
1369                 return 0;
1370         }
1371 }
1372
1373 void lustre_msg_set_handle(struct lustre_msg *msg, struct lustre_handle *handle)
1374 {
1375         switch (msg->lm_magic) {
1376         case LUSTRE_MSG_MAGIC_V2: {
1377                 struct ptlrpc_body *pb = lustre_msg_ptlrpc_body(msg);
1378                 LASSERTF(pb, "invalid msg %p: no ptlrpc body!\n", msg);
1379                 pb->pb_handle = *handle;
1380                 return;
1381         }
1382         default:
1383                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
1384         }
1385 }
1386 EXPORT_SYMBOL(lustre_msg_set_handle);
1387
1388 void lustre_msg_set_type(struct lustre_msg *msg, __u32 type)
1389 {
1390         switch (msg->lm_magic) {
1391         case LUSTRE_MSG_MAGIC_V2: {
1392                 struct ptlrpc_body *pb = lustre_msg_ptlrpc_body(msg);
1393                 LASSERTF(pb, "invalid msg %p: no ptlrpc body!\n", msg);
1394                 pb->pb_type = type;
1395                 return;
1396         }
1397         default:
1398                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
1399         }
1400 }
1401 EXPORT_SYMBOL(lustre_msg_set_type);
1402
1403 void lustre_msg_set_opc(struct lustre_msg *msg, __u32 opc)
1404 {
1405         switch (msg->lm_magic) {
1406         case LUSTRE_MSG_MAGIC_V2: {
1407                 struct ptlrpc_body *pb = lustre_msg_ptlrpc_body(msg);
1408                 LASSERTF(pb, "invalid msg %p: no ptlrpc body!\n", msg);
1409                 pb->pb_opc = opc;
1410                 return;
1411         }
1412         default:
1413                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
1414         }
1415 }
1416 EXPORT_SYMBOL(lustre_msg_set_opc);
1417
1418 void lustre_msg_set_last_xid(struct lustre_msg *msg, __u64 last_xid)
1419 {
1420         switch (msg->lm_magic) {
1421         case LUSTRE_MSG_MAGIC_V2: {
1422                 struct ptlrpc_body *pb = lustre_msg_ptlrpc_body(msg);
1423                 LASSERTF(pb, "invalid msg %p: no ptlrpc body!\n", msg);
1424                 pb->pb_last_xid = last_xid;
1425                 return;
1426         }
1427         default:
1428                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
1429         }
1430 }
1431 EXPORT_SYMBOL(lustre_msg_set_last_xid);
1432
1433 void lustre_msg_set_last_committed(struct lustre_msg *msg, __u64 last_committed)
1434 {
1435         switch (msg->lm_magic) {
1436         case LUSTRE_MSG_MAGIC_V2: {
1437                 struct ptlrpc_body *pb = lustre_msg_ptlrpc_body(msg);
1438                 LASSERTF(pb, "invalid msg %p: no ptlrpc body!\n", msg);
1439                 pb->pb_last_committed = last_committed;
1440                 return;
1441         }
1442         default:
1443                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
1444         }
1445 }
1446 EXPORT_SYMBOL(lustre_msg_set_last_committed);
1447
1448 void lustre_msg_set_versions(struct lustre_msg *msg, __u64 *versions)
1449 {
1450         switch (msg->lm_magic) {
1451         case LUSTRE_MSG_MAGIC_V1:
1452                 return;
1453         case LUSTRE_MSG_MAGIC_V2: {
1454                 struct ptlrpc_body *pb = lustre_msg_ptlrpc_body(msg);
1455                 LASSERTF(pb, "invalid msg %p: no ptlrpc body!\n", msg);
1456                 pb->pb_pre_versions[0] = versions[0];
1457                 pb->pb_pre_versions[1] = versions[1];
1458                 pb->pb_pre_versions[2] = versions[2];
1459                 pb->pb_pre_versions[3] = versions[3];
1460                 return;
1461         }
1462         default:
1463                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
1464         }
1465 }
1466 EXPORT_SYMBOL(lustre_msg_set_versions);
1467
1468 void lustre_msg_set_transno(struct lustre_msg *msg, __u64 transno)
1469 {
1470         switch (msg->lm_magic) {
1471         case LUSTRE_MSG_MAGIC_V2: {
1472                 struct ptlrpc_body *pb = lustre_msg_ptlrpc_body(msg);
1473                 LASSERTF(pb, "invalid msg %p: no ptlrpc body!\n", msg);
1474                 pb->pb_transno = transno;
1475                 return;
1476         }
1477         default:
1478                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
1479         }
1480 }
1481 EXPORT_SYMBOL(lustre_msg_set_transno);
1482
1483 void lustre_msg_set_status(struct lustre_msg *msg, __u32 status)
1484 {
1485         switch (msg->lm_magic) {
1486         case LUSTRE_MSG_MAGIC_V2: {
1487                 struct ptlrpc_body *pb = lustre_msg_ptlrpc_body(msg);
1488                 LASSERTF(pb, "invalid msg %p: no ptlrpc body!\n", msg);
1489                 pb->pb_status = status;
1490                 return;
1491         }
1492         default:
1493                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
1494         }
1495 }
1496 EXPORT_SYMBOL(lustre_msg_set_status);
1497
1498 void lustre_msg_set_conn_cnt(struct lustre_msg *msg, __u32 conn_cnt)
1499 {
1500         switch (msg->lm_magic) {
1501         case LUSTRE_MSG_MAGIC_V2: {
1502                 struct ptlrpc_body *pb = lustre_msg_ptlrpc_body(msg);
1503                 LASSERTF(pb, "invalid msg %p: no ptlrpc body!\n", msg);
1504                 pb->pb_conn_cnt = conn_cnt;
1505                 return;
1506         }
1507         default:
1508                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
1509         }
1510 }
1511 EXPORT_SYMBOL(lustre_msg_set_conn_cnt);
1512
1513 void lustre_msg_set_timeout(struct lustre_msg *msg, __u32 timeout)
1514 {
1515         switch (msg->lm_magic) {
1516         case LUSTRE_MSG_MAGIC_V1:
1517                 return;
1518         case LUSTRE_MSG_MAGIC_V2: {
1519                 struct ptlrpc_body *pb = lustre_msg_ptlrpc_body(msg);
1520                 LASSERTF(pb, "invalid msg %p: no ptlrpc body!\n", msg);
1521                 pb->pb_timeout = timeout;
1522                 return;
1523         }
1524         default:
1525                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
1526         }
1527 }
1528
1529 void lustre_msg_set_service_time(struct lustre_msg *msg, __u32 service_time)
1530 {
1531         switch (msg->lm_magic) {
1532         case LUSTRE_MSG_MAGIC_V1:
1533                 return;
1534         case LUSTRE_MSG_MAGIC_V2: {
1535                 struct ptlrpc_body *pb = lustre_msg_ptlrpc_body(msg);
1536                 LASSERTF(pb, "invalid msg %p: no ptlrpc body!\n", msg);
1537                 pb->pb_service_time = service_time;
1538                 return;
1539         }
1540         default:
1541                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
1542         }
1543 }
1544
1545 void lustre_msg_set_jobid(struct lustre_msg *msg, char *jobid)
1546 {
1547         switch (msg->lm_magic) {
1548         case LUSTRE_MSG_MAGIC_V1:
1549                 return;
1550         case LUSTRE_MSG_MAGIC_V2: {
1551                 __u32 opc = lustre_msg_get_opc(msg);
1552                 struct ptlrpc_body *pb;
1553
1554                 /* Don't set jobid for ldlm ast RPCs, they've been shrinked.
1555                  * See the comment in ptlrpc_request_pack(). */
1556                 if (!opc || opc == LDLM_BL_CALLBACK ||
1557                     opc == LDLM_CP_CALLBACK || opc == LDLM_GL_CALLBACK)
1558                         return;
1559
1560                 pb = lustre_msg_buf_v2(msg, MSG_PTLRPC_BODY_OFF,
1561                                        sizeof(struct ptlrpc_body));
1562                 LASSERTF(pb, "invalid msg %p: no ptlrpc body!\n", msg);
1563
1564                 if (jobid != NULL)
1565                         memcpy(pb->pb_jobid, jobid, JOBSTATS_JOBID_SIZE);
1566                 else if (pb->pb_jobid[0] == '\0')
1567                         lustre_get_jobid(pb->pb_jobid);
1568                 return;
1569         }
1570         default:
1571                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
1572         }
1573 }
1574 EXPORT_SYMBOL(lustre_msg_set_jobid);
1575
1576 void lustre_msg_set_cksum(struct lustre_msg *msg, __u32 cksum)
1577 {
1578         switch (msg->lm_magic) {
1579         case LUSTRE_MSG_MAGIC_V1:
1580                 return;
1581         case LUSTRE_MSG_MAGIC_V2:
1582                 msg->lm_cksum = cksum;
1583                 return;
1584         default:
1585                 LASSERTF(0, "incorrect message magic: %08x\n", msg->lm_magic);
1586         }
1587 }
1588
1589
1590 void ptlrpc_request_set_replen(struct ptlrpc_request *req)
1591 {
1592         int count = req_capsule_filled_sizes(&req->rq_pill, RCL_SERVER);
1593
1594         req->rq_replen = lustre_msg_size(req->rq_reqmsg->lm_magic, count,
1595                                          req->rq_pill.rc_area[RCL_SERVER]);
1596         if (req->rq_reqmsg->lm_magic == LUSTRE_MSG_MAGIC_V2)
1597                 req->rq_reqmsg->lm_repsize = req->rq_replen;
1598 }
1599 EXPORT_SYMBOL(ptlrpc_request_set_replen);
1600
1601 void ptlrpc_req_set_repsize(struct ptlrpc_request *req, int count, __u32 *lens)
1602 {
1603         req->rq_replen = lustre_msg_size(req->rq_reqmsg->lm_magic, count, lens);
1604         if (req->rq_reqmsg->lm_magic == LUSTRE_MSG_MAGIC_V2)
1605                 req->rq_reqmsg->lm_repsize = req->rq_replen;
1606 }
1607 EXPORT_SYMBOL(ptlrpc_req_set_repsize);
1608
1609 /**
1610  * Send a remote set_info_async.
1611  *
1612  * This may go from client to server or server to client.
1613  */
1614 int do_set_info_async(struct obd_import *imp,
1615                       int opcode, int version,
1616                       obd_count keylen, void *key,
1617                       obd_count vallen, void *val,
1618                       struct ptlrpc_request_set *set)
1619 {
1620         struct ptlrpc_request *req;
1621         char                  *tmp;
1622         int                    rc;
1623         ENTRY;
1624
1625         req = ptlrpc_request_alloc(imp, &RQF_OBD_SET_INFO);
1626         if (req == NULL)
1627                 RETURN(-ENOMEM);
1628
1629         req_capsule_set_size(&req->rq_pill, &RMF_SETINFO_KEY,
1630                              RCL_CLIENT, keylen);
1631         req_capsule_set_size(&req->rq_pill, &RMF_SETINFO_VAL,
1632                              RCL_CLIENT, vallen);
1633         rc = ptlrpc_request_pack(req, version, opcode);
1634         if (rc) {
1635                 ptlrpc_request_free(req);
1636                 RETURN(rc);
1637         }
1638
1639         tmp = req_capsule_client_get(&req->rq_pill, &RMF_SETINFO_KEY);
1640         memcpy(tmp, key, keylen);
1641         tmp = req_capsule_client_get(&req->rq_pill, &RMF_SETINFO_VAL);
1642         memcpy(tmp, val, vallen);
1643
1644         ptlrpc_request_set_replen(req);
1645
1646         if (set) {
1647                 ptlrpc_set_add_req(set, req);
1648                 ptlrpc_check_set(NULL, set);
1649         } else {
1650                 rc = ptlrpc_queue_wait(req);
1651                 ptlrpc_req_finished(req);
1652         }
1653
1654         RETURN(rc);
1655 }
1656 EXPORT_SYMBOL(do_set_info_async);
1657
1658 /* byte flipping routines for all wire types declared in
1659  * lustre_idl.h implemented here.
1660  */
1661 void lustre_swab_ptlrpc_body(struct ptlrpc_body *b)
1662 {
1663         __swab32s (&b->pb_type);
1664         __swab32s (&b->pb_version);
1665         __swab32s (&b->pb_opc);
1666         __swab32s (&b->pb_status);
1667         __swab64s (&b->pb_last_xid);
1668         __swab64s (&b->pb_last_seen);
1669         __swab64s (&b->pb_last_committed);
1670         __swab64s (&b->pb_transno);
1671         __swab32s (&b->pb_flags);
1672         __swab32s (&b->pb_op_flags);
1673         __swab32s (&b->pb_conn_cnt);
1674         __swab32s (&b->pb_timeout);
1675         __swab32s (&b->pb_service_time);
1676         __swab32s (&b->pb_limit);
1677         __swab64s (&b->pb_slv);
1678         __swab64s (&b->pb_pre_versions[0]);
1679         __swab64s (&b->pb_pre_versions[1]);
1680         __swab64s (&b->pb_pre_versions[2]);
1681         __swab64s (&b->pb_pre_versions[3]);
1682         CLASSERT(offsetof(typeof(*b), pb_padding) != 0);
1683         /* While we need to maintain compatibility between
1684          * clients and servers without ptlrpc_body_v2 (< 2.3)
1685          * do not swab any fields beyond pb_jobid, as we are
1686          * using this swab function for both ptlrpc_body
1687          * and ptlrpc_body_v2. */
1688         CLASSERT(offsetof(typeof(*b), pb_jobid) != 0);
1689 }
1690 EXPORT_SYMBOL(lustre_swab_ptlrpc_body);
1691
1692 void lustre_swab_connect(struct obd_connect_data *ocd)
1693 {
1694         __swab64s(&ocd->ocd_connect_flags);
1695         __swab32s(&ocd->ocd_version);
1696         __swab32s(&ocd->ocd_grant);
1697         __swab64s(&ocd->ocd_ibits_known);
1698         __swab32s(&ocd->ocd_index);
1699         __swab32s(&ocd->ocd_brw_size);
1700         /* ocd_blocksize and ocd_inodespace don't need to be swabbed because
1701          * they are 8-byte values */
1702         __swab16s(&ocd->ocd_grant_extent);
1703         __swab32s(&ocd->ocd_unused);
1704         __swab64s(&ocd->ocd_transno);
1705         __swab32s(&ocd->ocd_group);
1706         __swab32s(&ocd->ocd_cksum_types);
1707         __swab32s(&ocd->ocd_instance);
1708         /* Fields after ocd_cksum_types are only accessible by the receiver
1709          * if the corresponding flag in ocd_connect_flags is set. Accessing
1710          * any field after ocd_maxbytes on the receiver without a valid flag
1711          * may result in out-of-bound memory access and kernel oops. */
1712         if (ocd->ocd_connect_flags & OBD_CONNECT_MAX_EASIZE)
1713                 __swab32s(&ocd->ocd_max_easize);
1714         if (ocd->ocd_connect_flags & OBD_CONNECT_MAXBYTES)
1715                 __swab64s(&ocd->ocd_maxbytes);
1716         CLASSERT(offsetof(typeof(*ocd), padding1) != 0);
1717         CLASSERT(offsetof(typeof(*ocd), padding2) != 0);
1718         CLASSERT(offsetof(typeof(*ocd), padding3) != 0);
1719         CLASSERT(offsetof(typeof(*ocd), padding4) != 0);
1720         CLASSERT(offsetof(typeof(*ocd), padding5) != 0);
1721         CLASSERT(offsetof(typeof(*ocd), padding6) != 0);
1722         CLASSERT(offsetof(typeof(*ocd), padding7) != 0);
1723         CLASSERT(offsetof(typeof(*ocd), padding8) != 0);
1724         CLASSERT(offsetof(typeof(*ocd), padding9) != 0);
1725         CLASSERT(offsetof(typeof(*ocd), paddingA) != 0);
1726         CLASSERT(offsetof(typeof(*ocd), paddingB) != 0);
1727         CLASSERT(offsetof(typeof(*ocd), paddingC) != 0);
1728         CLASSERT(offsetof(typeof(*ocd), paddingD) != 0);
1729         CLASSERT(offsetof(typeof(*ocd), paddingE) != 0);
1730         CLASSERT(offsetof(typeof(*ocd), paddingF) != 0);
1731 }
1732
1733 void lustre_swab_obdo (struct obdo  *o)
1734 {
1735         __swab64s (&o->o_valid);
1736         lustre_swab_ost_id(&o->o_oi);
1737         __swab64s (&o->o_parent_seq);
1738         __swab64s (&o->o_size);
1739         __swab64s (&o->o_mtime);
1740         __swab64s (&o->o_atime);
1741         __swab64s (&o->o_ctime);
1742         __swab64s (&o->o_blocks);
1743         __swab64s (&o->o_grant);
1744         __swab32s (&o->o_blksize);
1745         __swab32s (&o->o_mode);
1746         __swab32s (&o->o_uid);
1747         __swab32s (&o->o_gid);
1748         __swab32s (&o->o_flags);
1749         __swab32s (&o->o_nlink);
1750         __swab32s (&o->o_parent_oid);
1751         __swab32s (&o->o_misc);
1752         __swab64s (&o->o_ioepoch);
1753         __swab32s (&o->o_stripe_idx);
1754         __swab32s (&o->o_parent_ver);
1755         /* o_handle is opaque */
1756         /* o_lcookie is swabbed elsewhere */
1757         __swab32s (&o->o_uid_h);
1758         __swab32s (&o->o_gid_h);
1759         __swab64s (&o->o_data_version);
1760         CLASSERT(offsetof(typeof(*o), o_padding_4) != 0);
1761         CLASSERT(offsetof(typeof(*o), o_padding_5) != 0);
1762         CLASSERT(offsetof(typeof(*o), o_padding_6) != 0);
1763
1764 }
1765 EXPORT_SYMBOL(lustre_swab_obdo);
1766
1767 void lustre_swab_obd_statfs (struct obd_statfs *os)
1768 {
1769         __swab64s (&os->os_type);
1770         __swab64s (&os->os_blocks);
1771         __swab64s (&os->os_bfree);
1772         __swab64s (&os->os_bavail);
1773         __swab64s (&os->os_files);
1774         __swab64s (&os->os_ffree);
1775         /* no need to swab os_fsid */
1776         __swab32s (&os->os_bsize);
1777         __swab32s (&os->os_namelen);
1778         __swab64s (&os->os_maxbytes);
1779         __swab32s (&os->os_state);
1780         CLASSERT(offsetof(typeof(*os), os_fprecreated) != 0);
1781         CLASSERT(offsetof(typeof(*os), os_spare2) != 0);
1782         CLASSERT(offsetof(typeof(*os), os_spare3) != 0);
1783         CLASSERT(offsetof(typeof(*os), os_spare4) != 0);
1784         CLASSERT(offsetof(typeof(*os), os_spare5) != 0);
1785         CLASSERT(offsetof(typeof(*os), os_spare6) != 0);
1786         CLASSERT(offsetof(typeof(*os), os_spare7) != 0);
1787         CLASSERT(offsetof(typeof(*os), os_spare8) != 0);
1788         CLASSERT(offsetof(typeof(*os), os_spare9) != 0);
1789 }
1790 EXPORT_SYMBOL(lustre_swab_obd_statfs);
1791
1792 void lustre_swab_obd_ioobj(struct obd_ioobj *ioo)
1793 {
1794         lustre_swab_ost_id(&ioo->ioo_oid);
1795         __swab32s(&ioo->ioo_max_brw);
1796         __swab32s(&ioo->ioo_bufcnt);
1797 }
1798 EXPORT_SYMBOL(lustre_swab_obd_ioobj);
1799
1800 void lustre_swab_niobuf_remote (struct niobuf_remote *nbr)
1801 {
1802         __swab64s (&nbr->offset);
1803         __swab32s (&nbr->len);
1804         __swab32s (&nbr->flags);
1805 }
1806 EXPORT_SYMBOL(lustre_swab_niobuf_remote);
1807
1808 void lustre_swab_ost_body (struct ost_body *b)
1809 {
1810         lustre_swab_obdo (&b->oa);
1811 }
1812 EXPORT_SYMBOL(lustre_swab_ost_body);
1813
1814 void lustre_swab_ost_last_id(obd_id *id)
1815 {
1816         __swab64s(id);
1817 }
1818 EXPORT_SYMBOL(lustre_swab_ost_last_id);
1819
1820 void lustre_swab_generic_32s(__u32 *val)
1821 {
1822         __swab32s(val);
1823 }
1824 EXPORT_SYMBOL(lustre_swab_generic_32s);
1825
1826 void lustre_swab_gl_desc(union ldlm_gl_desc *desc)
1827 {
1828         lustre_swab_lu_fid(&desc->lquota_desc.gl_id.qid_fid);
1829         __swab64s(&desc->lquota_desc.gl_flags);
1830         __swab64s(&desc->lquota_desc.gl_ver);
1831         __swab64s(&desc->lquota_desc.gl_hardlimit);
1832         __swab64s(&desc->lquota_desc.gl_softlimit);
1833         __swab64s(&desc->lquota_desc.gl_time);
1834         CLASSERT(offsetof(typeof(desc->lquota_desc), gl_pad2) != 0);
1835 }
1836
1837 void lustre_swab_ost_lvb_v1(struct ost_lvb_v1 *lvb)
1838 {
1839         __swab64s(&lvb->lvb_size);
1840         __swab64s(&lvb->lvb_mtime);
1841         __swab64s(&lvb->lvb_atime);
1842         __swab64s(&lvb->lvb_ctime);
1843         __swab64s(&lvb->lvb_blocks);
1844 }
1845 EXPORT_SYMBOL(lustre_swab_ost_lvb_v1);
1846
1847 void lustre_swab_ost_lvb(struct ost_lvb *lvb)
1848 {
1849         __swab64s(&lvb->lvb_size);
1850         __swab64s(&lvb->lvb_mtime);
1851         __swab64s(&lvb->lvb_atime);
1852         __swab64s(&lvb->lvb_ctime);
1853         __swab64s(&lvb->lvb_blocks);
1854         __swab32s(&lvb->lvb_mtime_ns);
1855         __swab32s(&lvb->lvb_atime_ns);
1856         __swab32s(&lvb->lvb_ctime_ns);
1857         __swab32s(&lvb->lvb_padding);
1858 }
1859 EXPORT_SYMBOL(lustre_swab_ost_lvb);
1860
1861 void lustre_swab_lquota_lvb(struct lquota_lvb *lvb)
1862 {
1863         __swab64s(&lvb->lvb_flags);
1864         __swab64s(&lvb->lvb_id_may_rel);
1865         __swab64s(&lvb->lvb_id_rel);
1866         __swab64s(&lvb->lvb_id_qunit);
1867         __swab64s(&lvb->lvb_pad1);
1868 }
1869 EXPORT_SYMBOL(lustre_swab_lquota_lvb);
1870
1871 void lustre_swab_mdt_body (struct mdt_body *b)
1872 {
1873         lustre_swab_lu_fid(&b->fid1);
1874         lustre_swab_lu_fid(&b->fid2);
1875         /* handle is opaque */
1876         __swab64s(&b->valid);
1877         __swab64s(&b->size);
1878         __swab64s(&b->mtime);
1879         __swab64s(&b->atime);
1880         __swab64s(&b->ctime);
1881         __swab64s(&b->blocks);
1882         __swab64s(&b->ioepoch);
1883         __swab64s(&b->t_state);
1884         __swab32s(&b->fsuid);
1885         __swab32s(&b->fsgid);
1886         __swab32s(&b->capability);
1887         __swab32s(&b->mode);
1888         __swab32s(&b->uid);
1889         __swab32s(&b->gid);
1890         __swab32s(&b->flags);
1891         __swab32s(&b->rdev);
1892         __swab32s(&b->nlink);
1893         CLASSERT(offsetof(typeof(*b), unused2) != 0);
1894         __swab32s(&b->suppgid);
1895         __swab32s(&b->eadatasize);
1896         __swab32s(&b->aclsize);
1897         __swab32s(&b->max_mdsize);
1898         __swab32s(&b->max_cookiesize);
1899         __swab32s(&b->uid_h);
1900         __swab32s(&b->gid_h);
1901         CLASSERT(offsetof(typeof(*b), padding_5) != 0);
1902 }
1903 EXPORT_SYMBOL(lustre_swab_mdt_body);
1904
1905 void lustre_swab_mdt_ioepoch (struct mdt_ioepoch *b)
1906 {
1907         /* handle is opaque */
1908          __swab64s (&b->ioepoch);
1909          __swab32s (&b->flags);
1910          CLASSERT(offsetof(typeof(*b), padding) != 0);
1911 }
1912 EXPORT_SYMBOL(lustre_swab_mdt_ioepoch);
1913
1914 void lustre_swab_mgs_target_info(struct mgs_target_info *mti)
1915 {
1916         int i;
1917         __swab32s(&mti->mti_lustre_ver);
1918         __swab32s(&mti->mti_stripe_index);
1919         __swab32s(&mti->mti_config_ver);
1920         __swab32s(&mti->mti_flags);
1921         __swab32s(&mti->mti_instance);
1922         __swab32s(&mti->mti_nid_count);
1923         CLASSERT(sizeof(lnet_nid_t) == sizeof(__u64));
1924         for (i = 0; i < MTI_NIDS_MAX; i++)
1925                 __swab64s(&mti->mti_nids[i]);
1926 }
1927 EXPORT_SYMBOL(lustre_swab_mgs_target_info);
1928
1929 void lustre_swab_mgs_nidtbl_entry(struct mgs_nidtbl_entry *entry)
1930 {
1931         int i;
1932
1933         __swab64s(&entry->mne_version);
1934         __swab32s(&entry->mne_instance);
1935         __swab32s(&entry->mne_index);
1936         __swab32s(&entry->mne_length);
1937
1938         /* mne_nid_(count|type) must be one byte size because we're gonna
1939          * access it w/o swapping. */
1940         CLASSERT(sizeof(entry->mne_nid_count) == sizeof(__u8));
1941         CLASSERT(sizeof(entry->mne_nid_type) == sizeof(__u8));
1942
1943         /* remove this assertion if ipv6 is supported. */
1944         LASSERT(entry->mne_nid_type == 0);
1945         for (i = 0; i < entry->mne_nid_count; i++) {
1946                 CLASSERT(sizeof(lnet_nid_t) == sizeof(__u64));
1947                 __swab64s(&entry->u.nids[i]);
1948         }
1949 }
1950 EXPORT_SYMBOL(lustre_swab_mgs_nidtbl_entry);
1951
1952 void lustre_swab_mgs_config_body(struct mgs_config_body *body)
1953 {
1954         __swab64s(&body->mcb_offset);
1955         __swab32s(&body->mcb_units);
1956         __swab16s(&body->mcb_type);
1957 }
1958 EXPORT_SYMBOL(lustre_swab_mgs_config_body);
1959
1960 void lustre_swab_mgs_config_res(struct mgs_config_res *body)
1961 {
1962         __swab64s(&body->mcr_offset);
1963         __swab64s(&body->mcr_size);
1964 }
1965 EXPORT_SYMBOL(lustre_swab_mgs_config_res);
1966
1967 static void lustre_swab_obd_dqinfo (struct obd_dqinfo *i)
1968 {
1969         __swab64s (&i->dqi_bgrace);
1970         __swab64s (&i->dqi_igrace);
1971         __swab32s (&i->dqi_flags);
1972         __swab32s (&i->dqi_valid);
1973 }
1974
1975 static void lustre_swab_obd_dqblk (struct obd_dqblk *b)
1976 {
1977         __swab64s (&b->dqb_ihardlimit);
1978         __swab64s (&b->dqb_isoftlimit);
1979         __swab64s (&b->dqb_curinodes);
1980         __swab64s (&b->dqb_bhardlimit);
1981         __swab64s (&b->dqb_bsoftlimit);
1982         __swab64s (&b->dqb_curspace);
1983         __swab64s (&b->dqb_btime);
1984         __swab64s (&b->dqb_itime);
1985         __swab32s (&b->dqb_valid);
1986         CLASSERT(offsetof(typeof(*b), dqb_padding) != 0);
1987 }
1988
1989 void lustre_swab_obd_quotactl (struct obd_quotactl *q)
1990 {
1991         __swab32s (&q->qc_cmd);
1992         __swab32s (&q->qc_type);
1993         __swab32s (&q->qc_id);
1994         __swab32s (&q->qc_stat);
1995         lustre_swab_obd_dqinfo (&q->qc_dqinfo);
1996         lustre_swab_obd_dqblk (&q->qc_dqblk);
1997 }
1998 EXPORT_SYMBOL(lustre_swab_obd_quotactl);
1999
2000 void lustre_swab_mdt_remote_perm (struct mdt_remote_perm *p)
2001 {
2002         __swab32s (&p->rp_uid);
2003         __swab32s (&p->rp_gid);
2004         __swab32s (&p->rp_fsuid);
2005         __swab32s (&p->rp_fsuid_h);
2006         __swab32s (&p->rp_fsgid);
2007         __swab32s (&p->rp_fsgid_h);
2008         __swab32s (&p->rp_access_perm);
2009         __swab32s (&p->rp_padding);
2010 };
2011 EXPORT_SYMBOL(lustre_swab_mdt_remote_perm);
2012
2013 void lustre_swab_fid2path(struct getinfo_fid2path *gf)
2014 {
2015         lustre_swab_lu_fid(&gf->gf_fid);
2016         __swab64s(&gf->gf_recno);
2017         __swab32s(&gf->gf_linkno);
2018         __swab32s(&gf->gf_pathlen);
2019 }
2020 EXPORT_SYMBOL(lustre_swab_fid2path);
2021
2022 void lustre_swab_fiemap_extent(struct ll_fiemap_extent *fm_extent)
2023 {
2024         __swab64s(&fm_extent->fe_logical);
2025         __swab64s(&fm_extent->fe_physical);
2026         __swab64s(&fm_extent->fe_length);
2027         __swab32s(&fm_extent->fe_flags);
2028         __swab32s(&fm_extent->fe_device);
2029 }
2030
2031 void lustre_swab_fiemap(struct ll_user_fiemap *fiemap)
2032 {
2033         int i;
2034
2035         __swab64s(&fiemap->fm_start);
2036         __swab64s(&fiemap->fm_length);
2037         __swab32s(&fiemap->fm_flags);
2038         __swab32s(&fiemap->fm_mapped_extents);
2039         __swab32s(&fiemap->fm_extent_count);
2040         __swab32s(&fiemap->fm_reserved);
2041
2042         for (i = 0; i < fiemap->fm_mapped_extents; i++)
2043                 lustre_swab_fiemap_extent(&fiemap->fm_extents[i]);
2044 }
2045 EXPORT_SYMBOL(lustre_swab_fiemap);
2046
2047 void lustre_swab_idx_info(struct idx_info *ii)
2048 {
2049         __swab32s(&ii->ii_magic);
2050         __swab32s(&ii->ii_flags);
2051         __swab16s(&ii->ii_count);
2052         __swab32s(&ii->ii_attrs);
2053         lustre_swab_lu_fid(&ii->ii_fid);
2054         __swab64s(&ii->ii_version);
2055         __swab64s(&ii->ii_hash_start);
2056         __swab64s(&ii->ii_hash_end);
2057         __swab16s(&ii->ii_keysize);
2058         __swab16s(&ii->ii_recsize);
2059 }
2060
2061 void lustre_swab_lip_header(struct lu_idxpage *lip)
2062 {
2063         /* swab header */
2064         __swab32s(&lip->lip_magic);
2065         __swab16s(&lip->lip_flags);
2066         __swab16s(&lip->lip_nr);
2067 }
2068 EXPORT_SYMBOL(lustre_swab_lip_header);
2069
2070 void lustre_swab_mdt_rec_reint (struct mdt_rec_reint *rr)
2071 {
2072         __swab32s(&rr->rr_opcode);
2073         __swab32s(&rr->rr_cap);
2074         __swab32s(&rr->rr_fsuid);
2075         /* rr_fsuid_h is unused */
2076         __swab32s(&rr->rr_fsgid);
2077         /* rr_fsgid_h is unused */
2078         __swab32s(&rr->rr_suppgid1);
2079         /* rr_suppgid1_h is unused */
2080         __swab32s(&rr->rr_suppgid2);
2081         /* rr_suppgid2_h is unused */
2082         lustre_swab_lu_fid(&rr->rr_fid1);
2083         lustre_swab_lu_fid(&rr->rr_fid2);
2084         __swab64s(&rr->rr_mtime);
2085         __swab64s(&rr->rr_atime);
2086         __swab64s(&rr->rr_ctime);
2087         __swab64s(&rr->rr_size);
2088         __swab64s(&rr->rr_blocks);
2089         __swab32s(&rr->rr_bias);
2090         __swab32s(&rr->rr_mode);
2091         __swab32s(&rr->rr_flags);
2092         __swab32s(&rr->rr_flags_h);
2093         __swab32s(&rr->rr_umask);
2094
2095         CLASSERT(offsetof(typeof(*rr), rr_padding_4) != 0);
2096 };
2097 EXPORT_SYMBOL(lustre_swab_mdt_rec_reint);
2098
2099 void lustre_swab_lov_desc (struct lov_desc *ld)
2100 {
2101         __swab32s (&ld->ld_tgt_count);
2102         __swab32s (&ld->ld_active_tgt_count);
2103         __swab32s (&ld->ld_default_stripe_count);
2104         __swab32s (&ld->ld_pattern);
2105         __swab64s (&ld->ld_default_stripe_size);
2106         __swab64s (&ld->ld_default_stripe_offset);
2107         __swab32s (&ld->ld_qos_maxage);
2108         /* uuid endian insensitive */
2109 }
2110 EXPORT_SYMBOL(lustre_swab_lov_desc);
2111
2112 void lustre_swab_lmv_desc (struct lmv_desc *ld)
2113 {
2114         __swab32s (&ld->ld_tgt_count);
2115         __swab32s (&ld->ld_active_tgt_count);
2116         __swab32s (&ld->ld_default_stripe_count);
2117         __swab32s (&ld->ld_pattern);
2118         __swab64s (&ld->ld_default_hash_size);
2119         __swab32s (&ld->ld_qos_maxage);
2120         /* uuid endian insensitive */
2121 }
2122
2123 /* This structure is always in little-endian */
2124 static void lustre_swab_lmv_mds_md_v1(struct lmv_mds_md_v1 *lmm1)
2125 {
2126         int i;
2127
2128         __swab32s(&lmm1->lmv_magic);
2129         __swab32s(&lmm1->lmv_stripe_count);
2130         __swab32s(&lmm1->lmv_master_mdt_index);
2131         __swab32s(&lmm1->lmv_hash_type);
2132         __swab32s(&lmm1->lmv_layout_version);
2133         for (i = 0; i < lmm1->lmv_stripe_count; i++)
2134                 lustre_swab_lu_fid(&lmm1->lmv_stripe_fids[i]);
2135 }
2136
2137 void lustre_swab_lmv_mds_md(union lmv_mds_md *lmm)
2138 {
2139         switch (lmm->lmv_magic) {
2140         case LMV_MAGIC_V1:
2141                 lustre_swab_lmv_mds_md_v1(&lmm->lmv_md_v1);
2142                 break;
2143         default:
2144                 break;
2145         }
2146 }
2147
2148 void lustre_swab_lmv_user_md(struct lmv_user_md *lum)
2149 {
2150         int i;
2151
2152         __swab32s(&lum->lum_magic);
2153         __swab32s(&lum->lum_stripe_count);
2154         __swab32s(&lum->lum_stripe_offset);
2155         __swab32s(&lum->lum_hash_type);
2156         __swab32s(&lum->lum_type);
2157         CLASSERT(offsetof(typeof(*lum), lum_padding1) != 0);
2158         for (i = 0; i < lum->lum_stripe_count; i++) {
2159                 __swab32s(&lum->lum_objects[i].lum_mds);
2160                 lustre_swab_lu_fid(&lum->lum_objects[i].lum_fid);
2161         }
2162
2163 }
2164 EXPORT_SYMBOL(lustre_swab_lmv_user_md);
2165
2166 static void print_lum (struct lov_user_md *lum)
2167 {
2168         CDEBUG(D_OTHER, "lov_user_md %p:\n", lum);
2169         CDEBUG(D_OTHER, "\tlmm_magic: %#x\n", lum->lmm_magic);
2170         CDEBUG(D_OTHER, "\tlmm_pattern: %#x\n", lum->lmm_pattern);
2171         CDEBUG(D_OTHER, "\tlmm_object_id: "LPU64"\n", lmm_oi_id(&lum->lmm_oi));
2172         CDEBUG(D_OTHER, "\tlmm_object_gr: "LPU64"\n", lmm_oi_seq(&lum->lmm_oi));
2173         CDEBUG(D_OTHER, "\tlmm_stripe_size: %#x\n", lum->lmm_stripe_size);
2174         CDEBUG(D_OTHER, "\tlmm_stripe_count: %#x\n", lum->lmm_stripe_count);
2175         CDEBUG(D_OTHER, "\tlmm_stripe_offset/lmm_layout_gen: %#x\n",
2176                         lum->lmm_stripe_offset);
2177 }
2178
2179 static void lustre_swab_lmm_oi(struct ost_id *oi)
2180 {
2181         __swab64s(&oi->oi.oi_id);
2182         __swab64s(&oi->oi.oi_seq);
2183 }
2184
2185 static void lustre_swab_lov_user_md_common(struct lov_user_md_v1 *lum)
2186 {
2187         ENTRY;
2188         __swab32s(&lum->lmm_magic);
2189         __swab32s(&lum->lmm_pattern);
2190         lustre_swab_lmm_oi(&lum->lmm_oi);
2191         __swab32s(&lum->lmm_stripe_size);
2192         __swab16s(&lum->lmm_stripe_count);
2193         __swab16s(&lum->lmm_stripe_offset);
2194         print_lum(lum);
2195         EXIT;
2196 }
2197
2198 void lustre_swab_lov_user_md_v1(struct lov_user_md_v1 *lum)
2199 {
2200         ENTRY;
2201         CDEBUG(D_IOCTL, "swabbing lov_user_md v1\n");
2202         lustre_swab_lov_user_md_common(lum);
2203         EXIT;
2204 }
2205 EXPORT_SYMBOL(lustre_swab_lov_user_md_v1);
2206
2207 void lustre_swab_lov_user_md_v3(struct lov_user_md_v3 *lum)
2208 {
2209         ENTRY;
2210         CDEBUG(D_IOCTL, "swabbing lov_user_md v3\n");
2211         lustre_swab_lov_user_md_common((struct lov_user_md_v1 *)lum);
2212         /* lmm_pool_name nothing to do with char */
2213         EXIT;
2214 }
2215 EXPORT_SYMBOL(lustre_swab_lov_user_md_v3);
2216
2217 void lustre_swab_lov_mds_md(struct lov_mds_md *lmm)
2218 {
2219         ENTRY;
2220         CDEBUG(D_IOCTL, "swabbing lov_mds_md\n");
2221         __swab32s(&lmm->lmm_magic);
2222         __swab32s(&lmm->lmm_pattern);
2223         lustre_swab_lmm_oi(&lmm->lmm_oi);
2224         __swab32s(&lmm->lmm_stripe_size);
2225         __swab16s(&lmm->lmm_stripe_count);
2226         __swab16s(&lmm->lmm_layout_gen);
2227         EXIT;
2228 }
2229 EXPORT_SYMBOL(lustre_swab_lov_mds_md);
2230
2231 void lustre_swab_lov_user_md_objects(struct lov_user_ost_data *lod,
2232                                      int stripe_count)
2233 {
2234         int i;
2235         ENTRY;
2236         for (i = 0; i < stripe_count; i++) {
2237                 lustre_swab_ost_id(&(lod[i].l_ost_oi));
2238                 __swab32s(&(lod[i].l_ost_gen));
2239                 __swab32s(&(lod[i].l_ost_idx));
2240         }
2241         EXIT;
2242 }
2243 EXPORT_SYMBOL(lustre_swab_lov_user_md_objects);
2244
2245 void lustre_swab_ldlm_res_id (struct ldlm_res_id *id)
2246 {
2247         int  i;
2248
2249         for (i = 0; i < RES_NAME_SIZE; i++)
2250                 __swab64s (&id->name[i]);
2251 }
2252 EXPORT_SYMBOL(lustre_swab_ldlm_res_id);
2253
2254 void lustre_swab_ldlm_policy_data (ldlm_wire_policy_data_t *d)
2255 {
2256         /* the lock data is a union and the first two fields are always an
2257          * extent so it's ok to process an LDLM_EXTENT and LDLM_FLOCK lock
2258          * data the same way. */
2259         __swab64s(&d->l_extent.start);
2260         __swab64s(&d->l_extent.end);
2261         __swab64s(&d->l_extent.gid);
2262         __swab64s(&d->l_flock.lfw_owner);
2263         __swab32s(&d->l_flock.lfw_pid);
2264 }
2265 EXPORT_SYMBOL(lustre_swab_ldlm_policy_data);
2266
2267 void lustre_swab_ldlm_intent (struct ldlm_intent *i)
2268 {
2269         __swab64s (&i->opc);
2270 }
2271 EXPORT_SYMBOL(lustre_swab_ldlm_intent);
2272
2273 void lustre_swab_ldlm_resource_desc (struct ldlm_resource_desc *r)
2274 {
2275         __swab32s (&r->lr_type);
2276         CLASSERT(offsetof(typeof(*r), lr_padding) != 0);
2277         lustre_swab_ldlm_res_id (&r->lr_name);
2278 }
2279 EXPORT_SYMBOL(lustre_swab_ldlm_resource_desc);
2280
2281 void lustre_swab_ldlm_lock_desc (struct ldlm_lock_desc *l)
2282 {
2283         lustre_swab_ldlm_resource_desc (&l->l_resource);
2284         __swab32s (&l->l_req_mode);
2285         __swab32s (&l->l_granted_mode);
2286         lustre_swab_ldlm_policy_data (&l->l_policy_data);
2287 }
2288 EXPORT_SYMBOL(lustre_swab_ldlm_lock_desc);
2289
2290 void lustre_swab_ldlm_request (struct ldlm_request *rq)
2291 {
2292         __swab32s (&rq->lock_flags);
2293         lustre_swab_ldlm_lock_desc (&rq->lock_desc);
2294         __swab32s (&rq->lock_count);
2295         /* lock_handle[] opaque */
2296 }
2297 EXPORT_SYMBOL(lustre_swab_ldlm_request);
2298
2299 void lustre_swab_ldlm_reply (struct ldlm_reply *r)
2300 {
2301         __swab32s (&r->lock_flags);
2302         CLASSERT(offsetof(typeof(*r), lock_padding) != 0);
2303         lustre_swab_ldlm_lock_desc (&r->lock_desc);
2304         /* lock_handle opaque */
2305         __swab64s (&r->lock_policy_res1);
2306         __swab64s (&r->lock_policy_res2);
2307 }
2308 EXPORT_SYMBOL(lustre_swab_ldlm_reply);
2309
2310 void lustre_swab_quota_body(struct quota_body *b)
2311 {
2312         lustre_swab_lu_fid(&b->qb_fid);
2313         lustre_swab_lu_fid((struct lu_fid *)&b->qb_id);
2314         __swab32s(&b->qb_flags);
2315         __swab64s(&b->qb_count);
2316         __swab64s(&b->qb_usage);
2317         __swab64s(&b->qb_slv_ver);
2318 }
2319
2320 /* Dump functions */
2321 void dump_ioo(struct obd_ioobj *ioo)
2322 {
2323         CDEBUG(D_RPCTRACE,
2324                "obd_ioobj: ioo_oid="DOSTID", ioo_max_brw=%#x, "
2325                "ioo_bufct=%d\n", POSTID(&ioo->ioo_oid), ioo->ioo_max_brw,
2326                ioo->ioo_bufcnt);
2327 }
2328 EXPORT_SYMBOL(dump_ioo);
2329
2330 void dump_rniobuf(struct niobuf_remote *nb)
2331 {
2332         CDEBUG(D_RPCTRACE, "niobuf_remote: offset="LPU64", len=%d, flags=%x\n",
2333                nb->offset, nb->len, nb->flags);
2334 }
2335 EXPORT_SYMBOL(dump_rniobuf);
2336
2337 void dump_obdo(struct obdo *oa)
2338 {
2339         __u32 valid = oa->o_valid;
2340
2341         CDEBUG(D_RPCTRACE, "obdo: o_valid = %08x\n", valid);
2342         if (valid & OBD_MD_FLID)
2343                 CDEBUG(D_RPCTRACE, "obdo: id = "DOSTID"\n", POSTID(&oa->o_oi));
2344         if (valid & OBD_MD_FLFID)
2345                 CDEBUG(D_RPCTRACE, "obdo: o_parent_seq = "LPX64"\n",
2346                        oa->o_parent_seq);
2347         if (valid & OBD_MD_FLSIZE)
2348                 CDEBUG(D_RPCTRACE, "obdo: o_size = "LPD64"\n", oa->o_size);
2349         if (valid & OBD_MD_FLMTIME)
2350                 CDEBUG(D_RPCTRACE, "obdo: o_mtime = "LPD64"\n", oa->o_mtime);
2351         if (valid & OBD_MD_FLATIME)
2352                 CDEBUG(D_RPCTRACE, "obdo: o_atime = "LPD64"\n", oa->o_atime);
2353         if (valid & OBD_MD_FLCTIME)
2354                 CDEBUG(D_RPCTRACE, "obdo: o_ctime = "LPD64"\n", oa->o_ctime);
2355         if (valid & OBD_MD_FLBLOCKS)   /* allocation of space */
2356                 CDEBUG(D_RPCTRACE, "obdo: o_blocks = "LPD64"\n", oa->o_blocks);
2357         if (valid & OBD_MD_FLGRANT)
2358                 CDEBUG(D_RPCTRACE, "obdo: o_grant = "LPD64"\n", oa->o_grant);
2359         if (valid & OBD_MD_FLBLKSZ)
2360                 CDEBUG(D_RPCTRACE, "obdo: o_blksize = %d\n", oa->o_blksize);
2361         if (valid & (OBD_MD_FLTYPE | OBD_MD_FLMODE))
2362                 CDEBUG(D_RPCTRACE, "obdo: o_mode = %o\n",
2363                        oa->o_mode & ((valid & OBD_MD_FLTYPE ?  S_IFMT : 0) |
2364                                      (valid & OBD_MD_FLMODE ? ~S_IFMT : 0)));
2365         if (valid & OBD_MD_FLUID)
2366                 CDEBUG(D_RPCTRACE, "obdo: o_uid = %u\n", oa->o_uid);
2367         if (valid & OBD_MD_FLUID)
2368                 CDEBUG(D_RPCTRACE, "obdo: o_uid_h = %u\n", oa->o_uid_h);
2369         if (valid & OBD_MD_FLGID)
2370                 CDEBUG(D_RPCTRACE, "obdo: o_gid = %u\n", oa->o_gid);
2371         if (valid & OBD_MD_FLGID)
2372                 CDEBUG(D_RPCTRACE, "obdo: o_gid_h = %u\n", oa->o_gid_h);
2373         if (valid & OBD_MD_FLFLAGS)
2374                 CDEBUG(D_RPCTRACE, "obdo: o_flags = %x\n", oa->o_flags);
2375         if (valid & OBD_MD_FLNLINK)
2376                 CDEBUG(D_RPCTRACE, "obdo: o_nlink = %u\n", oa->o_nlink);
2377         else if (valid & OBD_MD_FLCKSUM)
2378                 CDEBUG(D_RPCTRACE, "obdo: o_checksum (o_nlink) = %u\n",
2379                        oa->o_nlink);
2380         if (valid & OBD_MD_FLGENER)
2381                 CDEBUG(D_RPCTRACE, "obdo: o_parent_oid = %x\n",
2382                        oa->o_parent_oid);
2383         if (valid & OBD_MD_FLEPOCH)
2384                 CDEBUG(D_RPCTRACE, "obdo: o_ioepoch = "LPD64"\n",
2385                        oa->o_ioepoch);
2386         if (valid & OBD_MD_FLFID) {
2387                 CDEBUG(D_RPCTRACE, "obdo: o_stripe_idx = %u\n",
2388                        oa->o_stripe_idx);
2389                 CDEBUG(D_RPCTRACE, "obdo: o_parent_ver = %x\n",
2390                        oa->o_parent_ver);
2391         }
2392         if (valid & OBD_MD_FLHANDLE)
2393                 CDEBUG(D_RPCTRACE, "obdo: o_handle = "LPD64"\n",
2394                        oa->o_handle.cookie);
2395         if (valid & OBD_MD_FLCOOKIE)
2396                 CDEBUG(D_RPCTRACE, "obdo: o_lcookie = "
2397                        "(llog_cookie dumping not yet implemented)\n");
2398 }
2399 EXPORT_SYMBOL(dump_obdo);
2400
2401 void dump_ost_body(struct ost_body *ob)
2402 {
2403         dump_obdo(&ob->oa);
2404 }
2405 EXPORT_SYMBOL(dump_ost_body);
2406
2407 void dump_rcs(__u32 *rc)
2408 {
2409         CDEBUG(D_RPCTRACE, "rmf_rcs: %d\n", *rc);
2410 }
2411 EXPORT_SYMBOL(dump_rcs);
2412
2413 static inline int req_ptlrpc_body_swabbed(struct ptlrpc_request *req)
2414 {
2415         LASSERT(req->rq_reqmsg);
2416
2417         switch (req->rq_reqmsg->lm_magic) {
2418         case LUSTRE_MSG_MAGIC_V2:
2419                 return lustre_req_swabbed(req, MSG_PTLRPC_BODY_OFF);
2420         default:
2421                 CERROR("bad lustre msg magic: %#08X\n",
2422                        req->rq_reqmsg->lm_magic);
2423         }
2424         return 0;
2425 }
2426
2427 static inline int rep_ptlrpc_body_swabbed(struct ptlrpc_request *req)
2428 {
2429         LASSERT(req->rq_repmsg);
2430
2431         switch (req->rq_repmsg->lm_magic) {
2432         case LUSTRE_MSG_MAGIC_V2:
2433                 return lustre_rep_swabbed(req, MSG_PTLRPC_BODY_OFF);
2434         default:
2435                 /* uninitialized yet */
2436                 return 0;
2437         }
2438 }
2439
2440 void _debug_req(struct ptlrpc_request *req,
2441                 struct libcfs_debug_msg_data *msgdata,
2442                 const char *fmt, ... )
2443 {
2444         int req_ok = req->rq_reqmsg != NULL;
2445         int rep_ok = req->rq_repmsg != NULL;
2446         lnet_nid_t nid = LNET_NID_ANY;
2447         va_list args;
2448
2449         if (ptlrpc_req_need_swab(req)) {
2450                 req_ok = req_ok && req_ptlrpc_body_swabbed(req);
2451                 rep_ok = rep_ok && rep_ptlrpc_body_swabbed(req);
2452         }
2453
2454         if (req->rq_import && req->rq_import->imp_connection)
2455                 nid = req->rq_import->imp_connection->c_peer.nid;
2456         else if (req->rq_export && req->rq_export->exp_connection)
2457                 nid = req->rq_export->exp_connection->c_peer.nid;
2458
2459         va_start(args, fmt);
2460         libcfs_debug_vmsg2(msgdata, fmt, args,
2461                            " req@%p x"LPU64"/t"LPD64"("LPD64") o%d->%s@%s:%d/%d"
2462                            " lens %d/%d e %d to %d dl "CFS_TIME_T" ref %d "
2463                            "fl "REQ_FLAGS_FMT"/%x/%x rc %d/%d\n",
2464                            req, req->rq_xid, req->rq_transno,
2465                            req_ok ? lustre_msg_get_transno(req->rq_reqmsg) : 0,
2466                            req_ok ? lustre_msg_get_opc(req->rq_reqmsg) : -1,
2467                            req->rq_import ?
2468                                 req->rq_import->imp_obd->obd_name :
2469                                 req->rq_export ?
2470                                      req->rq_export->exp_client_uuid.uuid :
2471                                      "<?>",
2472                            libcfs_nid2str(nid),
2473                            req->rq_request_portal, req->rq_reply_portal,
2474                            req->rq_reqlen, req->rq_replen,
2475                            req->rq_early_count, req->rq_timedout,
2476                            req->rq_deadline,
2477                            cfs_atomic_read(&req->rq_refcount),
2478                            DEBUG_REQ_FLAGS(req),
2479                            req_ok ? lustre_msg_get_flags(req->rq_reqmsg) : -1,
2480                            rep_ok ? lustre_msg_get_flags(req->rq_repmsg) : -1,
2481                            req->rq_status,
2482                            rep_ok ? lustre_msg_get_status(req->rq_repmsg) : -1);
2483         va_end(args);
2484 }
2485 EXPORT_SYMBOL(_debug_req);
2486
2487 void lustre_swab_lustre_capa(struct lustre_capa *c)
2488 {
2489         lustre_swab_lu_fid(&c->lc_fid);
2490         __swab64s (&c->lc_opc);
2491         __swab64s (&c->lc_uid);
2492         __swab64s (&c->lc_gid);
2493         __swab32s (&c->lc_flags);
2494         __swab32s (&c->lc_keyid);
2495         __swab32s (&c->lc_timeout);
2496         __swab32s (&c->lc_expiry);
2497 }
2498 EXPORT_SYMBOL(lustre_swab_lustre_capa);
2499
2500 void lustre_swab_lustre_capa_key(struct lustre_capa_key *k)
2501 {
2502         __swab64s (&k->lk_seq);
2503         __swab32s (&k->lk_keyid);
2504         CLASSERT(offsetof(typeof(*k), lk_padding) != 0);
2505 }
2506 EXPORT_SYMBOL(lustre_swab_lustre_capa_key);
2507
2508 void lustre_swab_hsm_user_state(struct hsm_user_state *state)
2509 {
2510         __swab32s(&state->hus_states);
2511         __swab32s(&state->hus_archive_id);
2512 }
2513 EXPORT_SYMBOL(lustre_swab_hsm_user_state);
2514
2515 void lustre_swab_hsm_state_set(struct hsm_state_set *hss)
2516 {
2517         __swab32s(&hss->hss_valid);
2518         __swab64s(&hss->hss_setmask);
2519         __swab64s(&hss->hss_clearmask);
2520         __swab32s(&hss->hss_archive_id);
2521 }
2522 EXPORT_SYMBOL(lustre_swab_hsm_state_set);
2523
2524 void lustre_swab_hsm_extent(struct hsm_extent *extent)
2525 {
2526         __swab64s(&extent->offset);
2527         __swab64s(&extent->length);
2528 }
2529
2530 void lustre_swab_hsm_current_action(struct hsm_current_action *action)
2531 {
2532         __swab32s(&action->hca_state);
2533         __swab32s(&action->hca_action);
2534         lustre_swab_hsm_extent(&action->hca_location);
2535 }
2536 EXPORT_SYMBOL(lustre_swab_hsm_current_action);
2537
2538 void lustre_swab_hsm_user_item(struct hsm_user_item *hui)
2539 {
2540         lustre_swab_lu_fid(&hui->hui_fid);
2541         lustre_swab_hsm_extent(&hui->hui_extent);
2542 }
2543 EXPORT_SYMBOL(lustre_swab_hsm_user_item);
2544
2545 void lustre_swab_layout_intent(struct layout_intent *li)
2546 {
2547         __swab32s(&li->li_opc);
2548         __swab32s(&li->li_flags);
2549         __swab64s(&li->li_start);
2550         __swab64s(&li->li_end);
2551 }
2552 EXPORT_SYMBOL(lustre_swab_layout_intent);
2553
2554 void lustre_swab_hsm_progress_kernel(struct hsm_progress_kernel *hpk)
2555 {
2556         lustre_swab_lu_fid(&hpk->hpk_fid);
2557         __swab64s(&hpk->hpk_cookie);
2558         __swab64s(&hpk->hpk_extent.offset);
2559         __swab64s(&hpk->hpk_extent.length);
2560         __swab16s(&hpk->hpk_flags);
2561         __swab16s(&hpk->hpk_errval);
2562 }
2563 EXPORT_SYMBOL(lustre_swab_hsm_progress_kernel);
2564
2565 void lustre_swab_hsm_request(struct hsm_request *hr)
2566 {
2567         __swab32s(&hr->hr_action);
2568         __swab32s(&hr->hr_archive_id);
2569         __swab64s(&hr->hr_flags);
2570         __swab32s(&hr->hr_itemcount);
2571         __swab32s(&hr->hr_data_len);
2572 }
2573 EXPORT_SYMBOL(lustre_swab_hsm_request);
2574
2575 void lustre_swab_update_buf(struct update_buf *ub)
2576 {
2577         __swab32s(&ub->ub_magic);
2578         __swab32s(&ub->ub_count);
2579 }
2580 EXPORT_SYMBOL(lustre_swab_update_buf);
2581
2582 void lustre_swab_update_reply_buf(struct update_reply *ur)
2583 {
2584         int i;
2585
2586         __swab32s(&ur->ur_version);
2587         __swab32s(&ur->ur_count);
2588         for (i = 0; i < ur->ur_count; i++)
2589                 __swab32s(&ur->ur_lens[i]);
2590 }
2591 EXPORT_SYMBOL(lustre_swab_update_reply_buf);
2592
2593 void lustre_swab_swap_layouts(struct mdc_swap_layouts *msl)
2594 {
2595         __swab64s(&msl->msl_flags);
2596 }
2597 EXPORT_SYMBOL(lustre_swab_swap_layouts);
2598
2599 void lustre_swab_close_data(struct close_data *cd)
2600 {
2601         lustre_swab_lu_fid(&cd->cd_fid);
2602         __swab64s(&cd->cd_data_version);
2603 }
2604 EXPORT_SYMBOL(lustre_swab_close_data);
2605
2606 void lustre_swab_lfsck_request(struct lfsck_request *lr)
2607 {
2608         __swab32s(&lr->lr_event);
2609         __swab32s(&lr->lr_index);
2610         __swab32s(&lr->lr_flags);
2611         __swab32s(&lr->lr_valid);
2612         __swab32s(&lr->lr_speed);
2613         __swab16s(&lr->lr_version);
2614         __swab16s(&lr->lr_active);
2615         __swab16s(&lr->lr_param);
2616         __swab16s(&lr->lr_async_windows);
2617         CLASSERT(offsetof(typeof(*lr), lr_padding_1) != 0);
2618         lustre_swab_lu_fid(&lr->lr_fid);
2619         CLASSERT(offsetof(typeof(*lr), lr_padding_2) != 0);
2620         CLASSERT(offsetof(typeof(*lr), lr_padding_3) != 0);
2621 }
2622 EXPORT_SYMBOL(lustre_swab_lfsck_request);
2623
2624 void lustre_swab_lfsck_reply(struct lfsck_reply *lr)
2625 {
2626         __swab32s(&lr->lr_status);
2627         CLASSERT(offsetof(typeof(*lr), lr_padding_1) != 0);
2628         CLASSERT(offsetof(typeof(*lr), lr_padding_2) != 0);
2629 }
2630 EXPORT_SYMBOL(lustre_swab_lfsck_reply);
2631
2632 void lustre_swab_orphan_ent(struct lu_orphan_ent *ent)
2633 {
2634         lustre_swab_lu_fid(&ent->loe_key);
2635         lustre_swab_lu_fid(&ent->loe_rec.lor_fid);
2636         __swab32s(&ent->loe_rec.lor_uid);
2637         __swab32s(&ent->loe_rec.lor_gid);
2638 }
2639 EXPORT_SYMBOL(lustre_swab_orphan_ent);