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