blob: be58f72eca1fcbb2e959b9496c6cdf70d8abc37c [file] [log] [blame]
Elliott Hughesdc75b012017-07-05 13:54:44 -07001/*
2 * Copyright (c) 1991, 1992 Paul Kranenburg <pk@cs.few.eur.nl>
3 * Copyright (c) 1993 Branko Lankester <branko@hacktic.nl>
4 * Copyright (c) 1993, 1994, 1995, 1996 Rick Sladkey <jrs@world.std.com>
5 * Copyright (c) 1996-1999 Wichert Akkerman <wichert@cistron.nl>
Elliott Hughesb7556142018-02-20 17:03:16 -08006 * Copyright (c) 1999-2018 The strace developers.
Elliott Hughesdc75b012017-07-05 13:54:44 -07007 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. The name of the author may not be used to endorse or promote products
18 * derived from this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 */
31
32#include "defs.h"
Elliott Hughesb7556142018-02-20 17:03:16 -080033#include "xstring.h"
Elliott Hughesdc75b012017-07-05 13:54:44 -070034#include <stdarg.h>
35
36const char *
37xlookup(const struct xlat *xlat, const uint64_t val)
38{
39 for (; xlat->str != NULL; xlat++)
40 if (xlat->val == val)
41 return xlat->str;
42 return NULL;
43}
44
45static int
46xlat_bsearch_compare(const void *a, const void *b)
47{
48 const uint64_t val1 = *(const uint64_t *) a;
49 const uint64_t val2 = ((const struct xlat *) b)->val;
50 return (val1 > val2) ? 1 : (val1 < val2) ? -1 : 0;
51}
52
53const char *
54xlat_search(const struct xlat *xlat, const size_t nmemb, const uint64_t val)
55{
56 const struct xlat *e =
57 bsearch((const void *) &val,
58 xlat, nmemb, sizeof(*xlat), xlat_bsearch_compare);
59
60 return e ? e->str : NULL;
61}
62
63/**
64 * Print entry in struct xlat table, if there.
65 *
66 * @param val Value to search a literal representation for.
67 * @param dflt String (abbreviated in comment syntax) which should be emitted
68 * if no appropriate xlat value has been found.
69 * @param xlat (And the following arguments) Pointers to arrays of xlat values.
70 * The last argument should be NULL.
71 * @return 1 if appropriate xlat value has been found, 0 otherwise.
72 */
73int
74printxvals(const uint64_t val, const char *dflt, const struct xlat *xlat, ...)
75{
76 va_list args;
77
78 va_start(args, xlat);
79 for (; xlat; xlat = va_arg(args, const struct xlat *)) {
80 const char *str = xlookup(xlat, val);
81
82 if (str) {
83 tprints(str);
84 va_end(args);
85 return 1;
86 }
87 }
88 /* No hits -- print raw # instead. */
89 tprintf("%#" PRIx64, val);
90 tprints_comment(dflt);
91
92 va_end(args);
93
94 return 0;
95}
96
Elliott Hughesb7556142018-02-20 17:03:16 -080097int
98sprintxval(char *const buf, const size_t size, const struct xlat *const x,
99 const unsigned int val, const char *const dflt)
100{
101 const char *const str = xlookup(x, val);
102
103 if (str)
104 return xsnprintf(buf, size, "%s", str);
105 if (dflt)
106 return xsnprintf(buf, size, "%#x /* %s */", val, dflt);
107
108 return xsnprintf(buf, size, "%#x", val);
109}
110
Elliott Hughesdc75b012017-07-05 13:54:44 -0700111/**
112 * Print entry in sorted struct xlat table, if it is there.
113 *
114 * @param xlat Pointer to an array of xlat values (not terminated with
115 * XLAT_END).
116 * @param xlat_size Number of xlat elements present in array (usually ARRAY_SIZE
117 * if array is declared in the unit's scope and not
118 * terminated with XLAT_END).
119 * @param val Value to search literal representation for.
120 * @param dflt String (abbreviated in comment syntax) which should be
121 * emitted if no appropriate xlat value has been found.
122 * @return 1 if appropriate xlat value has been found, 0
123 * otherwise.
124 */
125int
126printxval_searchn(const struct xlat *xlat, size_t xlat_size, uint64_t val,
127 const char *dflt)
128{
129 const char *s = xlat_search(xlat, xlat_size, val);
130
131 if (s) {
132 tprints(s);
133 return 1;
134 }
135
136 tprintf("%#" PRIx64, val);
137 tprints_comment(dflt);
138
139 return 0;
140}
141
142/*
Elliott Hughesdc75b012017-07-05 13:54:44 -0700143 * Interpret `xlat' as an array of flags.
144 * Print to static string the entries whose bits are on in `flags'
Elliott Hughesb7556142018-02-20 17:03:16 -0800145 * Return static string. If 0 is provided as flags, and there is no flag that
146 * has the value of 0 (it should be the first in xlat table), return NULL.
Elliott Hughesdc75b012017-07-05 13:54:44 -0700147 */
148const char *
149sprintflags(const char *prefix, const struct xlat *xlat, uint64_t flags)
150{
151 static char outstr[1024];
152 char *outptr;
153 int found = 0;
154
155 outptr = stpcpy(outstr, prefix);
156
157 if (flags == 0 && xlat->val == 0 && xlat->str) {
158 strcpy(outptr, xlat->str);
159 return outstr;
160 }
161
162 for (; xlat->str; xlat++) {
163 if (xlat->val && (flags & xlat->val) == xlat->val) {
164 if (found)
165 *outptr++ = '|';
166 outptr = stpcpy(outptr, xlat->str);
167 found = 1;
168 flags &= ~xlat->val;
169 if (!flags)
170 break;
171 }
172 }
Elliott Hughesb7556142018-02-20 17:03:16 -0800173
Elliott Hughesdc75b012017-07-05 13:54:44 -0700174 if (flags) {
175 if (found)
176 *outptr++ = '|';
Elliott Hughesb7556142018-02-20 17:03:16 -0800177 outptr = xappendstr(outstr, outptr, "%#" PRIx64, flags);
178 } else {
179 if (!found)
180 return NULL;
Elliott Hughesdc75b012017-07-05 13:54:44 -0700181 }
182
183 return outstr;
184}
185
186int
187printflags_ex(uint64_t flags, const char *dflt, const struct xlat *xlat, ...)
188{
189 unsigned int n = 0;
190 va_list args;
191
192 va_start(args, xlat);
193 for (; xlat; xlat = va_arg(args, const struct xlat *)) {
194 for (; (flags || !n) && xlat->str; ++xlat) {
195 if ((flags == xlat->val) ||
196 (xlat->val && (flags & xlat->val) == xlat->val)) {
197 tprintf("%s%s", (n++ ? "|" : ""), xlat->str);
198 flags &= ~xlat->val;
199 }
200 if (!flags)
201 break;
202 }
203 }
204 va_end(args);
205
206 if (n) {
207 if (flags) {
208 tprintf("|%#" PRIx64, flags);
209 n++;
210 }
211 } else {
212 if (flags) {
213 tprintf("%#" PRIx64, flags);
214 tprints_comment(dflt);
215 } else {
216 if (dflt)
217 tprints("0");
218 }
219 }
220
221 return n;
222}