2015-12-20 22:21:57 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2020-06-04 19:07:02 +00:00
|
|
|
#include <haproxy/channel-t.h>
|
2020-06-04 16:02:10 +00:00
|
|
|
#include <haproxy/connection-t.h>
|
2022-05-27 07:47:12 +00:00
|
|
|
#include <haproxy/stconn-t.h>
|
2020-06-04 19:21:03 +00:00
|
|
|
#include <haproxy/http_ana-t.h>
|
2020-06-04 21:46:14 +00:00
|
|
|
#include <haproxy/stream-t.h>
|
2020-06-04 15:25:40 +00:00
|
|
|
#include <haproxy/task-t.h>
|
2015-12-20 22:21:57 +00:00
|
|
|
|
2020-02-06 07:33:08 +00:00
|
|
|
// 1 bit per flag, no hole permitted here
|
|
|
|
#define SHOW_AS_ANA 0x00000001
|
|
|
|
#define SHOW_AS_CHN 0x00000002
|
|
|
|
#define SHOW_AS_CONN 0x00000004
|
2022-05-27 07:57:31 +00:00
|
|
|
#define SHOW_AS_SC 0x00000008
|
2022-04-04 09:28:27 +00:00
|
|
|
#define SHOW_AS_SET 0x00000010
|
|
|
|
#define SHOW_AS_STRM 0x00000020
|
|
|
|
#define SHOW_AS_TASK 0x00000040
|
|
|
|
#define SHOW_AS_TXN 0x00000080
|
2022-05-27 14:29:30 +00:00
|
|
|
#define SHOW_AS_SD 0x00000100
|
2020-02-06 07:33:08 +00:00
|
|
|
|
|
|
|
// command line names, must be in exact same order as the SHOW_AS_* flags above
|
|
|
|
// so that show_as_words[i] matches flag 1U<<i.
|
2022-05-27 14:29:30 +00:00
|
|
|
const char *show_as_words[] = { "ana", "chn", "conn", "sc", "stet", "strm", "task", "txn", "sd", };
|
2020-02-06 07:33:08 +00:00
|
|
|
|
2015-12-20 22:21:57 +00:00
|
|
|
#define SHOW_FLAG(f,n) \
|
|
|
|
do { \
|
|
|
|
if (!((f) & (n))) break; \
|
|
|
|
(f) &= ~(n); \
|
|
|
|
printf(#n"%s", (f) ? " | " : ""); \
|
|
|
|
} while (0)
|
|
|
|
|
2022-09-09 12:51:57 +00:00
|
|
|
/* will be sufficient for even largest flag names */
|
|
|
|
static char tmpbuf[4096];
|
|
|
|
|
2020-02-06 07:33:08 +00:00
|
|
|
unsigned int get_show_as(const char *word)
|
|
|
|
{
|
|
|
|
int w = 0;
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
if (w == sizeof(show_as_words) / sizeof(*show_as_words))
|
|
|
|
return 0;
|
|
|
|
if (strcmp(word, show_as_words[w]) == 0)
|
|
|
|
return 1U << w;
|
|
|
|
w++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-20 22:21:57 +00:00
|
|
|
void show_chn_ana(unsigned int f)
|
|
|
|
{
|
2022-09-09 12:51:57 +00:00
|
|
|
chn_show_analysers(tmpbuf, sizeof(tmpbuf), " | ", f);
|
|
|
|
printf("chn->ana = %s\n", tmpbuf);
|
2015-12-20 22:21:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void show_chn_flags(unsigned int f)
|
|
|
|
{
|
2022-09-09 12:51:57 +00:00
|
|
|
chn_show_flags(tmpbuf, sizeof(tmpbuf), " | ", f);
|
|
|
|
printf("chn->flags = %s\n", tmpbuf);
|
2015-12-20 22:21:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void show_conn_flags(unsigned int f)
|
|
|
|
{
|
2022-09-09 13:04:32 +00:00
|
|
|
conn_show_flags(tmpbuf, sizeof(tmpbuf), " | ", f);
|
|
|
|
printf("conn->flags = %s\n", tmpbuf);
|
2015-12-20 22:21:57 +00:00
|
|
|
}
|
2022-03-22 15:06:25 +00:00
|
|
|
|
2022-05-27 14:29:30 +00:00
|
|
|
void show_sd_flags(unsigned int f)
|
2022-03-22 15:06:25 +00:00
|
|
|
{
|
2022-09-09 13:26:38 +00:00
|
|
|
se_show_flags(tmpbuf, sizeof(tmpbuf), " | ", f);
|
|
|
|
printf("sd->flags = %s\n", tmpbuf);
|
2022-03-22 15:06:25 +00:00
|
|
|
}
|
2022-09-09 13:26:38 +00:00
|
|
|
|
2022-05-27 07:57:31 +00:00
|
|
|
void show_sc_flags(unsigned int f)
|
2018-03-01 07:55:21 +00:00
|
|
|
{
|
2022-09-09 13:26:38 +00:00
|
|
|
sc_show_flags(tmpbuf, sizeof(tmpbuf), " | ", f);
|
|
|
|
printf("sc->flags = %s\n", tmpbuf);
|
2018-03-01 07:55:21 +00:00
|
|
|
}
|
2015-12-20 22:21:57 +00:00
|
|
|
|
2022-03-30 17:39:30 +00:00
|
|
|
void show_strm_et(unsigned int f)
|
2015-12-20 22:21:57 +00:00
|
|
|
{
|
2022-09-09 13:38:30 +00:00
|
|
|
strm_et_show_flags(tmpbuf, sizeof(tmpbuf), " | ", f);
|
|
|
|
printf("strm->et = %s\n", tmpbuf);
|
2015-12-20 22:21:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void show_task_state(unsigned int f)
|
|
|
|
{
|
2022-09-09 14:19:33 +00:00
|
|
|
task_show_state(tmpbuf, sizeof(tmpbuf), " | ", f);
|
|
|
|
printf("task->state = %s\n", tmpbuf);
|
2015-12-20 22:21:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void show_txn_flags(unsigned int f)
|
|
|
|
{
|
|
|
|
printf("txn->flags = ");
|
|
|
|
|
|
|
|
if (!f) {
|
|
|
|
printf("0\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-03-29 13:23:40 +00:00
|
|
|
SHOW_FLAG(f, TX_L7_RETRY);
|
|
|
|
SHOW_FLAG(f, TX_D_L7_RETRY);
|
2015-12-20 22:21:57 +00:00
|
|
|
SHOW_FLAG(f, TX_NOT_FIRST);
|
|
|
|
SHOW_FLAG(f, TX_USE_PX_CONN);
|
2022-01-18 09:46:10 +00:00
|
|
|
SHOW_FLAG(f, TX_CACHE_HAS_SEC_KEY);
|
2019-07-16 12:32:23 +00:00
|
|
|
SHOW_FLAG(f, TX_CON_WANT_TUN);
|
2015-12-20 22:21:57 +00:00
|
|
|
|
2022-01-18 09:46:10 +00:00
|
|
|
SHOW_FLAG(f, TX_CACHE_IGNORE);
|
2015-12-20 22:21:57 +00:00
|
|
|
SHOW_FLAG(f, TX_CACHE_COOK);
|
|
|
|
SHOW_FLAG(f, TX_CACHEABLE);
|
|
|
|
SHOW_FLAG(f, TX_SCK_PRESENT);
|
|
|
|
|
|
|
|
//printf("%s", f ? "" : " | ");
|
|
|
|
switch (f & TX_SCK_MASK) {
|
|
|
|
case TX_SCK_NONE: f &= ~TX_SCK_MASK ; /*printf("TX_SCK_NONE%s", f ? " | " : "");*/ break;
|
|
|
|
case TX_SCK_FOUND: f &= ~TX_SCK_MASK ; printf("TX_SCK_FOUND%s", f ? " | " : ""); break;
|
|
|
|
case TX_SCK_DELETED: f &= ~TX_SCK_MASK ; printf("TX_SCK_DELETED%s", f ? " | " : ""); break;
|
|
|
|
case TX_SCK_INSERTED: f &= ~TX_SCK_MASK ; printf("TX_SCK_INSERTED%s", f ? " | " : ""); break;
|
|
|
|
case TX_SCK_REPLACED: f &= ~TX_SCK_MASK ; printf("TX_SCK_REPLACED%s", f ? " | " : ""); break;
|
|
|
|
case TX_SCK_UPDATED: f &= ~TX_SCK_MASK ; printf("TX_SCK_UPDATED%s", f ? " | " : ""); break;
|
|
|
|
default: printf("TX_SCK_MASK(%02x)", f); f &= ~TX_SCK_MASK ; printf("%s", f ? " | " : ""); break;
|
|
|
|
}
|
|
|
|
|
|
|
|
//printf("%s", f ? "" : " | ");
|
|
|
|
switch (f & TX_CK_MASK) {
|
|
|
|
case TX_CK_NONE: f &= ~TX_CK_MASK ; /*printf("TX_CK_NONE%s", f ? " | " : "");*/ break;
|
|
|
|
case TX_CK_INVALID: f &= ~TX_CK_MASK ; printf("TX_CK_INVALID%s", f ? " | " : ""); break;
|
|
|
|
case TX_CK_DOWN: f &= ~TX_CK_MASK ; printf("TX_CK_DOWN%s", f ? " | " : ""); break;
|
|
|
|
case TX_CK_VALID: f &= ~TX_CK_MASK ; printf("TX_CK_VALID%s", f ? " | " : ""); break;
|
|
|
|
case TX_CK_EXPIRED: f &= ~TX_CK_MASK ; printf("TX_CK_EXPIRED%s", f ? " | " : ""); break;
|
|
|
|
case TX_CK_OLD: f &= ~TX_CK_MASK ; printf("TX_CK_OLD%s", f ? " | " : ""); break;
|
|
|
|
case TX_CK_UNUSED: f &= ~TX_CK_MASK ; printf("TX_CK_UNUSED%s", f ? " | " : ""); break;
|
|
|
|
default: printf("TX_CK_MASK(%02x)", f); f &= ~TX_CK_MASK ; printf("%s", f ? " | " : ""); break;
|
|
|
|
}
|
|
|
|
|
|
|
|
SHOW_FLAG(f, TX_CLTARPIT);
|
2022-01-18 09:46:10 +00:00
|
|
|
SHOW_FLAG(f, TX_CONST_REPLY);
|
2015-12-20 22:21:57 +00:00
|
|
|
|
|
|
|
if (f) {
|
|
|
|
printf("EXTRA(0x%08x)", f);
|
|
|
|
}
|
|
|
|
putchar('\n');
|
|
|
|
}
|
|
|
|
|
|
|
|
void show_strm_flags(unsigned int f)
|
|
|
|
{
|
2022-09-09 14:10:40 +00:00
|
|
|
strm_show_flags(tmpbuf, sizeof(tmpbuf), " | ", f);
|
|
|
|
printf("strm->flags = %s\n", tmpbuf);
|
|
|
|
return;
|
2015-12-20 22:21:57 +00:00
|
|
|
}
|
|
|
|
|
2020-02-06 07:33:08 +00:00
|
|
|
void usage_exit(const char *name)
|
|
|
|
{
|
2022-09-09 12:16:49 +00:00
|
|
|
int word, nbword;
|
|
|
|
|
|
|
|
fprintf(stderr, "Usage: %s [", name);
|
|
|
|
|
|
|
|
nbword = sizeof(show_as_words) / sizeof(*show_as_words);
|
|
|
|
for (word = 0; word < nbword; word++)
|
|
|
|
fprintf(stderr, "%s%s", word ? "|" : "", show_as_words[word]);
|
|
|
|
fprintf(stderr, "]* { [+-][0x]value* | - }\n");
|
2020-02-06 07:33:08 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2015-12-20 22:21:57 +00:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
unsigned int flags;
|
2020-02-06 07:33:08 +00:00
|
|
|
unsigned int show_as = 0;
|
|
|
|
unsigned int f;
|
|
|
|
const char *name = argv[0];
|
2020-02-06 17:17:50 +00:00
|
|
|
char line[20];
|
|
|
|
char *value;
|
2020-02-06 07:48:16 +00:00
|
|
|
int multi = 0;
|
2020-02-06 17:17:50 +00:00
|
|
|
int use_stdin = 0;
|
2020-02-06 07:33:08 +00:00
|
|
|
char *err;
|
|
|
|
|
|
|
|
while (argc > 0) {
|
|
|
|
argv++; argc--;
|
|
|
|
if (argc < 1)
|
|
|
|
usage_exit(name);
|
|
|
|
|
|
|
|
f = get_show_as(argv[0]);
|
2020-02-06 07:48:16 +00:00
|
|
|
if (!f)
|
|
|
|
break;
|
2020-02-06 07:33:08 +00:00
|
|
|
show_as |= f;
|
2015-12-20 22:21:57 +00:00
|
|
|
}
|
|
|
|
|
2020-02-06 07:33:08 +00:00
|
|
|
if (!show_as)
|
|
|
|
show_as = ~0U;
|
|
|
|
|
2020-02-06 07:48:16 +00:00
|
|
|
if (argc > 1)
|
|
|
|
multi = 1;
|
2015-12-20 22:21:57 +00:00
|
|
|
|
2020-02-06 17:17:50 +00:00
|
|
|
if (strcmp(argv[0], "-") == 0)
|
|
|
|
use_stdin = 1;
|
|
|
|
|
2020-02-06 07:48:16 +00:00
|
|
|
while (argc > 0) {
|
2020-02-06 17:17:50 +00:00
|
|
|
if (use_stdin) {
|
|
|
|
value = fgets(line, sizeof(line), stdin);
|
|
|
|
if (!value)
|
|
|
|
break;
|
|
|
|
|
2020-04-02 10:25:26 +00:00
|
|
|
/* skip common leading delimiters that slip from copy-paste */
|
2020-02-06 17:17:50 +00:00
|
|
|
while (*value == ' ' || *value == '\t' || *value == ':' || *value == '=')
|
|
|
|
value++;
|
|
|
|
|
|
|
|
/* stop at the end of the number and trim any C suffix like "UL" */
|
|
|
|
err = value;
|
|
|
|
while (*err == '-' || *err == '+' ||
|
2021-04-02 15:47:21 +00:00
|
|
|
(isalnum((unsigned char)*err) && toupper((unsigned char)*err) != 'U' && toupper((unsigned char)*err) != 'L'))
|
2020-02-06 17:17:50 +00:00
|
|
|
err++;
|
2021-04-03 13:26:56 +00:00
|
|
|
*err = 0;
|
2020-02-06 17:17:50 +00:00
|
|
|
} else {
|
|
|
|
value = argv[0];
|
|
|
|
argv++; argc--;
|
|
|
|
}
|
|
|
|
|
|
|
|
flags = strtoul(value, &err, 0);
|
|
|
|
if (!*value || *err) {
|
|
|
|
fprintf(stderr, "Unparsable value: <%s>\n", value);
|
2020-02-06 07:48:16 +00:00
|
|
|
usage_exit(name);
|
|
|
|
}
|
|
|
|
|
2020-02-06 17:17:50 +00:00
|
|
|
if (multi || use_stdin)
|
2020-02-06 07:48:16 +00:00
|
|
|
printf("### 0x%08x:\n", flags);
|
|
|
|
|
|
|
|
if (show_as & SHOW_AS_ANA) show_chn_ana(flags);
|
|
|
|
if (show_as & SHOW_AS_CHN) show_chn_flags(flags);
|
|
|
|
if (show_as & SHOW_AS_CONN) show_conn_flags(flags);
|
2022-05-27 07:57:31 +00:00
|
|
|
if (show_as & SHOW_AS_SC) show_sc_flags(flags);
|
2022-05-27 14:29:30 +00:00
|
|
|
if (show_as & SHOW_AS_SD) show_sd_flags(flags);
|
2022-03-30 17:39:30 +00:00
|
|
|
if (show_as & SHOW_AS_SET) show_strm_et(flags);
|
2020-02-06 07:48:16 +00:00
|
|
|
if (show_as & SHOW_AS_STRM) show_strm_flags(flags);
|
|
|
|
if (show_as & SHOW_AS_TASK) show_task_state(flags);
|
|
|
|
if (show_as & SHOW_AS_TXN) show_txn_flags(flags);
|
|
|
|
}
|
2015-12-20 22:21:57 +00:00
|
|
|
return 0;
|
|
|
|
}
|