2 * Copyright (c) 2012 The DragonFly Project. All rights reserved.
4 * This code is derived from software contributed to The DragonFly Project
5 * by Matthew Dillon <dillon@dragonflybsd.org>
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
17 * 3. Neither the name of The DragonFly Project nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific, prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
27 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 #include "dmsg_local.h"
38 dmsg_basecmd_str(uint32_t cmd
)
46 switch(cmd
& DMSGF_PROTOS
) {
63 snprintf(protobuf
, sizeof(protobuf
), "%x_",
64 (cmd
& DMSGF_PROTOS
) >> 20);
69 switch(cmd
& (DMSGF_PROTOS
|
88 if (cmd
& DMSGF_DELETE
)
97 snprintf(cmdbuf
, sizeof(cmdbuf
),
98 "%06x", (cmd
& (DMSGF_PROTOS
|
104 snprintf(buf
, sizeof(buf
), "%s%s", protostr
, cmdstr
);
109 dmsg_msg_str(dmsg_msg_t
*msg
)
112 static char buf
[256];
116 const char *statestr
;
124 if ((state
= msg
->state
) != NULL
) {
125 basecmd
= (state
->rxcmd
& DMSGF_REPLY
) ?
126 state
->txcmd
: state
->rxcmd
;
127 snprintf(statebuf
, sizeof(statebuf
),
128 " %s=%s,L=%s%s,R=%s%s",
129 ((state
->txcmd
& DMSGF_REPLY
) ?
130 "rcvcmd" : "sndcmd"),
131 dmsg_basecmd_str(basecmd
),
132 ((state
->txcmd
& DMSGF_CREATE
) ? "C" : ""),
133 ((state
->txcmd
& DMSGF_DELETE
) ? "D" : ""),
134 ((state
->rxcmd
& DMSGF_CREATE
) ? "C" : ""),
135 ((state
->rxcmd
& DMSGF_DELETE
) ? "D" : "")
145 switch(msg
->any
.head
.error
) {
149 case DMSG_IOQ_ERROR_SYNC
:
150 errstr
= "err=IOQ:NOSYNC";
152 case DMSG_IOQ_ERROR_EOF
:
153 errstr
= "err=IOQ:STREAMEOF";
155 case DMSG_IOQ_ERROR_SOCK
:
156 errstr
= "err=IOQ:SOCKERR";
158 case DMSG_IOQ_ERROR_FIELD
:
159 errstr
= "err=IOQ:BADFIELD";
161 case DMSG_IOQ_ERROR_HCRC
:
162 errstr
= "err=IOQ:BADHCRC";
164 case DMSG_IOQ_ERROR_XCRC
:
165 errstr
= "err=IOQ:BADXCRC";
167 case DMSG_IOQ_ERROR_ACRC
:
168 errstr
= "err=IOQ:BADACRC";
170 case DMSG_IOQ_ERROR_STATE
:
171 errstr
= "err=IOQ:BADSTATE";
173 case DMSG_IOQ_ERROR_NOPEER
:
174 errstr
= "err=IOQ:PEERCONFIG";
176 case DMSG_IOQ_ERROR_NORKEY
:
177 errstr
= "err=IOQ:BADRKEY";
179 case DMSG_IOQ_ERROR_NOLKEY
:
180 errstr
= "err=IOQ:BADLKEY";
182 case DMSG_IOQ_ERROR_KEYXCHGFAIL
:
183 errstr
= "err=IOQ:BADKEYXCHG";
185 case DMSG_IOQ_ERROR_KEYFMT
:
186 errstr
= "err=IOQ:BADFMT";
188 case DMSG_IOQ_ERROR_BADURANDOM
:
189 errstr
= "err=IOQ:BADRANDOM";
191 case DMSG_IOQ_ERROR_MSGSEQ
:
192 errstr
= "err=IOQ:BADSEQ";
194 case DMSG_IOQ_ERROR_EALREADY
:
195 errstr
= "err=IOQ:DUPMSG";
197 case DMSG_IOQ_ERROR_TRANS
:
198 errstr
= "err=IOQ:BADTRANS";
200 case DMSG_IOQ_ERROR_IVWRAP
:
201 errstr
= "err=IOQ:IVWRAP";
203 case DMSG_IOQ_ERROR_MACFAIL
:
204 errstr
= "err=IOQ:MACFAIL";
206 case DMSG_IOQ_ERROR_ALGO
:
207 errstr
= "err=IOQ:ALGOFAIL";
209 case DMSG_ERR_NOSUPP
:
210 errstr
= "err=NOSUPPORT";
213 snprintf(errbuf
, sizeof(errbuf
),
214 " err=%d", msg
->any
.head
.error
);
223 if (msg
->any
.head
.cmd
& (DMSGF_CREATE
| DMSGF_DELETE
|
224 DMSGF_ABORT
| DMSGF_REPLY
)) {
226 if (msg
->any
.head
.cmd
& DMSGF_CREATE
)
228 if (msg
->any
.head
.cmd
& DMSGF_DELETE
)
230 if (msg
->any
.head
.cmd
& DMSGF_REPLY
)
232 if (msg
->any
.head
.cmd
& DMSGF_ABORT
)
240 snprintf(buf
, sizeof(buf
),
241 "msg=%s%s %s %s hcrc=%08x id=%016jx",
242 dmsg_basecmd_str(msg
->any
.head
.cmd
),
246 msg
->any
.head
.hdr_crc
,
247 msg
->any
.head
.msgid
);