2023-08-03 03:00:00 -07:00
|
|
|
/*
|
|
|
|
* Copyright 2023 Henri Verbeet for CodeWeavers
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _GNU_SOURCE
|
|
|
|
#define _GNU_SOURCE
|
|
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <getopt.h>
|
2023-08-03 03:00:01 -07:00
|
|
|
#include <sys/stat.h>
|
2023-08-03 03:00:00 -07:00
|
|
|
|
|
|
|
#include "vkd3d_common.h"
|
|
|
|
#include "vkd3d_shader.h"
|
2023-08-03 03:00:01 -07:00
|
|
|
#ifdef HAVE_NCURSES
|
|
|
|
#include <term.h>
|
|
|
|
#endif
|
2023-08-03 03:00:00 -07:00
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
2023-08-03 03:00:01 -07:00
|
|
|
OPTION_COLOUR = CHAR_MAX + 1,
|
|
|
|
OPTION_HELP,
|
|
|
|
OPTION_LIST,
|
|
|
|
OPTION_NO_COLOUR,
|
2023-08-03 03:00:00 -07:00
|
|
|
OPTION_VERSION,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct options
|
|
|
|
{
|
2023-08-03 03:00:01 -07:00
|
|
|
const char *input_filename;
|
2023-08-03 03:00:00 -07:00
|
|
|
bool print_help;
|
2023-08-03 03:00:01 -07:00
|
|
|
bool list;
|
2023-08-03 03:00:00 -07:00
|
|
|
bool print_version;
|
2023-08-03 03:00:01 -07:00
|
|
|
|
|
|
|
struct colours
|
|
|
|
{
|
|
|
|
const char *reset;
|
|
|
|
const char *index;
|
|
|
|
const char *label;
|
|
|
|
} colours;
|
2023-08-03 03:00:00 -07:00
|
|
|
};
|
|
|
|
|
2023-08-03 03:00:01 -07:00
|
|
|
static bool has_colour(void)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_NCURSES
|
|
|
|
bool supported;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!isatty(fileno(stdout)))
|
|
|
|
return false;
|
|
|
|
setupterm(NULL, fileno(stdout), &ret);
|
|
|
|
if (ret != 1)
|
|
|
|
return false;
|
|
|
|
supported = !!tigetstr("setaf");
|
|
|
|
del_curterm(cur_term);
|
|
|
|
|
|
|
|
return supported;
|
|
|
|
#else
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2023-08-03 03:00:00 -07:00
|
|
|
static bool parse_command_line(int argc, char **argv, struct options *options)
|
|
|
|
{
|
|
|
|
int option;
|
|
|
|
|
|
|
|
static struct option long_options[] =
|
|
|
|
{
|
2023-08-03 03:00:01 -07:00
|
|
|
{"colour", no_argument, NULL, OPTION_COLOUR},
|
2023-08-03 03:00:00 -07:00
|
|
|
{"help", no_argument, NULL, OPTION_HELP},
|
2023-08-03 03:00:01 -07:00
|
|
|
{"list", no_argument, NULL, OPTION_LIST},
|
|
|
|
{"no-colour", no_argument, NULL, OPTION_NO_COLOUR},
|
2023-08-03 03:00:00 -07:00
|
|
|
{"version", no_argument, NULL, OPTION_VERSION},
|
|
|
|
{NULL, 0, NULL, 0},
|
|
|
|
};
|
|
|
|
|
2023-08-03 03:00:01 -07:00
|
|
|
static const struct colours colours =
|
|
|
|
{
|
|
|
|
.reset = "\x1b[m",
|
|
|
|
.index = "\x1b[92m",
|
|
|
|
.label = "\x1b[93m",
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct colours no_colours =
|
|
|
|
{
|
|
|
|
.reset = "",
|
|
|
|
.index = "",
|
|
|
|
.label = "",
|
|
|
|
};
|
|
|
|
|
2023-08-03 03:00:00 -07:00
|
|
|
memset(options, 0, sizeof(*options));
|
2023-08-03 03:00:01 -07:00
|
|
|
if (!getenv("NO_COLOUR") && !getenv("NO_COLOR") && has_colour())
|
|
|
|
options->colours = colours;
|
|
|
|
else
|
|
|
|
options->colours = no_colours;
|
2023-08-03 03:00:00 -07:00
|
|
|
|
|
|
|
for (;;)
|
|
|
|
{
|
2023-08-03 03:00:01 -07:00
|
|
|
if ((option = getopt_long(argc, argv, "htV", long_options, NULL)) == -1)
|
2023-08-03 03:00:00 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
switch (option)
|
|
|
|
{
|
2023-08-03 03:00:01 -07:00
|
|
|
case OPTION_COLOUR:
|
|
|
|
options->colours = colours;
|
|
|
|
break;
|
|
|
|
|
2023-08-03 03:00:00 -07:00
|
|
|
case 'h':
|
|
|
|
case OPTION_HELP:
|
|
|
|
options->print_help = true;
|
|
|
|
return true;
|
|
|
|
|
2023-08-03 03:00:01 -07:00
|
|
|
case 't':
|
|
|
|
case OPTION_LIST:
|
|
|
|
options->list = true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case OPTION_NO_COLOUR:
|
|
|
|
options->colours = no_colours;
|
|
|
|
break;
|
|
|
|
|
2023-08-03 03:00:00 -07:00
|
|
|
case 'V':
|
|
|
|
case OPTION_VERSION:
|
|
|
|
options->print_version = true;
|
|
|
|
return true;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-03 03:00:01 -07:00
|
|
|
if (optind < argc)
|
|
|
|
options->input_filename = argv[argc - 1];
|
|
|
|
|
2023-08-03 03:00:00 -07:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void print_usage(const char *program_name)
|
|
|
|
{
|
|
|
|
static const char usage[] =
|
2023-08-03 03:00:01 -07:00
|
|
|
"[options...] [file]\n"
|
2023-08-03 03:00:00 -07:00
|
|
|
"Options:\n"
|
2023-08-03 03:00:01 -07:00
|
|
|
" --colour Enable colour, even when not supported by the output.\n"
|
2023-08-03 03:00:00 -07:00
|
|
|
" -h, --help Display this information and exit.\n"
|
2023-08-03 03:00:01 -07:00
|
|
|
" -t, --list List the contents of the DXBC blob.\n"
|
|
|
|
" --no-colour Disable colour, even when supported by the output.\n"
|
2023-08-03 03:00:00 -07:00
|
|
|
" -V, --version Display version information and exit.\n"
|
|
|
|
" -- Stop option processing. Any subsequent argument is\n"
|
2023-08-03 03:00:01 -07:00
|
|
|
" interpreted as a filename.\n"
|
|
|
|
"\n"
|
|
|
|
"If the input file is '-' or not specified, input will be read from standard\n"
|
|
|
|
"input.\n";
|
2023-08-03 03:00:00 -07:00
|
|
|
|
|
|
|
fprintf(stderr, "Usage: %s %s", program_name, usage);
|
|
|
|
}
|
|
|
|
|
2023-08-03 03:00:01 -07:00
|
|
|
static FILE *open_input(const char *filename, bool *close)
|
|
|
|
{
|
|
|
|
FILE *f;
|
|
|
|
|
|
|
|
*close = false;
|
|
|
|
|
|
|
|
if (!filename || !strcmp(filename, "-"))
|
|
|
|
return stdin;
|
|
|
|
|
|
|
|
if (!(f = fopen(filename, "rb")))
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Unable to open '%s' for reading.\n", filename);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
*close = true;
|
|
|
|
return f;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool read_input(FILE *f, struct vkd3d_shader_code *dxbc)
|
|
|
|
{
|
|
|
|
size_t size = 4096;
|
|
|
|
struct stat st;
|
|
|
|
size_t pos = 0;
|
|
|
|
uint8_t *data;
|
|
|
|
size_t ret;
|
|
|
|
|
|
|
|
memset(dxbc, 0, sizeof(*dxbc));
|
|
|
|
|
|
|
|
if (fstat(fileno(f), &st) == -1)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Could not stat input.\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (S_ISREG(st.st_mode))
|
|
|
|
size = st.st_size;
|
|
|
|
|
|
|
|
if (!(data = malloc(size)))
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Out of memory.\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
if (pos >= size)
|
|
|
|
{
|
|
|
|
if (size > SIZE_MAX / 2 || !(data = realloc(data, size * 2)))
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Out of memory.\n");
|
|
|
|
free(data);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
size *= 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(ret = fread(&data[pos], 1, size - pos, f)))
|
|
|
|
break;
|
|
|
|
pos += ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!feof(f))
|
|
|
|
{
|
|
|
|
free(data);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
dxbc->code = data;
|
|
|
|
dxbc->size = pos;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *dump_tag(char *out, uint32_t tag)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
memcpy(out, &tag, sizeof(tag));
|
|
|
|
for (i = 0; i < sizeof(tag); ++i)
|
|
|
|
{
|
|
|
|
if (!isprint(out[i]))
|
|
|
|
out[i] = '.';
|
|
|
|
}
|
|
|
|
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void dump_dxbc(const struct vkd3d_shader_dxbc_desc *dxbc_desc, const struct options *options)
|
|
|
|
{
|
|
|
|
const struct colours *colours = &options->colours;
|
|
|
|
struct vkd3d_shader_dxbc_section_desc *section;
|
|
|
|
char tag[4];
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
printf(" %stag%s: %08x (%.4s)\n",
|
|
|
|
colours->label, colours->reset,
|
|
|
|
dxbc_desc->tag, dump_tag(tag, dxbc_desc->tag));
|
|
|
|
printf(" %schecksum%s: %08x %08x %08x %08x\n",
|
|
|
|
colours->label, colours->reset,
|
|
|
|
dxbc_desc->checksum[0], dxbc_desc->checksum[1],
|
|
|
|
dxbc_desc->checksum[2], dxbc_desc->checksum[3]);
|
|
|
|
printf(" %sversion%s: %u\n", colours->label, colours->reset, dxbc_desc->version);
|
|
|
|
printf(" %ssize%s: %#zx (%zu) bytes\n", colours->label, colours->reset, dxbc_desc->size, dxbc_desc->size);
|
|
|
|
printf(" %ssections%s: %zu\n\n", colours->label, colours->reset, dxbc_desc->section_count);
|
|
|
|
|
|
|
|
printf(" %s#%s %stag%s %ssize%s\n",
|
|
|
|
colours->label, colours->reset,
|
|
|
|
colours->label, colours->reset,
|
|
|
|
colours->label, colours->reset);
|
|
|
|
for (i = 0; i < dxbc_desc->section_count; ++i)
|
|
|
|
{
|
|
|
|
section = &dxbc_desc->sections[i];
|
|
|
|
printf("%s%2zu%s %08x (%.4s) 0x%08zx (%zu) bytes\n",
|
|
|
|
colours->index, i, colours->reset,
|
|
|
|
section->tag, dump_tag(tag, section->tag),
|
|
|
|
section->data.size, section->data.size);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-03 03:00:00 -07:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2023-08-03 03:00:01 -07:00
|
|
|
struct vkd3d_shader_dxbc_desc dxbc_desc;
|
|
|
|
struct vkd3d_shader_code dxbc;
|
2023-08-03 03:00:00 -07:00
|
|
|
struct options options;
|
2023-08-03 03:00:01 -07:00
|
|
|
bool close_input;
|
|
|
|
char *messages;
|
|
|
|
int fail = 1;
|
|
|
|
FILE *input;
|
|
|
|
int ret;
|
2023-08-03 03:00:00 -07:00
|
|
|
|
|
|
|
if (!parse_command_line(argc, argv, &options))
|
|
|
|
{
|
|
|
|
print_usage(argv[0]);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (options.print_help || (argc < 2 && isatty(fileno(stdin))))
|
|
|
|
{
|
|
|
|
print_usage(argv[0]);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (options.print_version)
|
|
|
|
{
|
|
|
|
const char *version = vkd3d_shader_get_version(NULL, NULL);
|
|
|
|
|
|
|
|
fprintf(stdout, "vkd3d-dxbc version " PACKAGE_VERSION " using %s\n", version);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2023-08-03 03:00:01 -07:00
|
|
|
if (!(input = open_input(options.input_filename, &close_input)))
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
if (!read_input(input, &dxbc))
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Failed to read input blob.\n");
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = vkd3d_shader_parse_dxbc(&dxbc, 0, &dxbc_desc, &messages);
|
|
|
|
if (messages)
|
|
|
|
fputs(messages, stderr);
|
|
|
|
vkd3d_shader_free_messages(messages);
|
|
|
|
if (ret < 0)
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
if (options.list)
|
|
|
|
dump_dxbc(&dxbc_desc, &options);
|
|
|
|
|
|
|
|
vkd3d_shader_free_dxbc(&dxbc_desc);
|
|
|
|
vkd3d_shader_free_shader_code(&dxbc);
|
|
|
|
fail = 0;
|
|
|
|
done:
|
|
|
|
if (close_input)
|
|
|
|
fclose(input);
|
|
|
|
return fail;
|
2023-08-03 03:00:00 -07:00
|
|
|
}
|