mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 04:02:20 +00:00
35439fe4e2
Fix two inconsistencies in feature names as discussed in [1]: 1. Rename "dwarf-unwind-support" to "dwarf-unwind" 2. 'get_cpuid' feature and 'HAVE_AUXTRACE_SUPPORT' names don't look related, change the feature name to 'auxtrace' to match the macro name, as 'get_cpuid' string is not used anywhere to check the feature presence [1]: https://lore.kernel.org/linux-perf-users/ZoRw5we4HLSTZND6@x1/ Suggested-by: Arnaldo Carvalho de Melo <acme@redhat.com> Signed-off-by: Aditya Gupta <adityag@linux.ibm.com> Cc: Athira Rajeev <atrajeev@linux.vnet.ibm.com> Cc: Disha Goel <disgoel@linux.vnet.ibm.com> Cc: Ian Rogers <irogers@google.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Kajol Jain <kjain@linux.ibm.com> Cc: Madhavan Srinivasan <maddy@linux.ibm.com> Cc: Namhyung Kim <namhyung@kernel.org> Link: https://lore.kernel.org/r/20240904190132.415212-7-adityag@linux.ibm.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
181 lines
5.3 KiB
C
181 lines
5.3 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
#include "builtin.h"
|
|
#include "color.h"
|
|
#include "util/debug.h"
|
|
#include "util/header.h"
|
|
#include <tools/config.h>
|
|
#include <stdbool.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <subcmd/parse-options.h>
|
|
|
|
static const char * const check_subcommands[] = { "feature", NULL };
|
|
static struct option check_options[] = {
|
|
OPT_BOOLEAN('q', "quiet", &quiet, "do not show any warnings or messages"),
|
|
OPT_END()
|
|
};
|
|
static struct option check_feature_options[] = { OPT_PARENT(check_options) };
|
|
|
|
static const char *check_usage[] = { NULL, NULL };
|
|
static const char *check_feature_usage[] = {
|
|
"perf check feature <feature_list>",
|
|
NULL
|
|
};
|
|
|
|
struct feature_status supported_features[] = {
|
|
FEATURE_STATUS("aio", HAVE_AIO_SUPPORT),
|
|
FEATURE_STATUS("bpf", HAVE_LIBBPF_SUPPORT),
|
|
FEATURE_STATUS("bpf_skeletons", HAVE_BPF_SKEL),
|
|
FEATURE_STATUS("debuginfod", HAVE_DEBUGINFOD_SUPPORT),
|
|
FEATURE_STATUS("dwarf", HAVE_DWARF_SUPPORT),
|
|
FEATURE_STATUS("dwarf_getlocations", HAVE_DWARF_GETLOCATIONS_SUPPORT),
|
|
FEATURE_STATUS("dwarf-unwind", HAVE_DWARF_UNWIND_SUPPORT),
|
|
FEATURE_STATUS("auxtrace", HAVE_AUXTRACE_SUPPORT),
|
|
FEATURE_STATUS("libaudit", HAVE_LIBAUDIT_SUPPORT),
|
|
FEATURE_STATUS("libbfd", HAVE_LIBBFD_SUPPORT),
|
|
FEATURE_STATUS("libcapstone", HAVE_LIBCAPSTONE_SUPPORT),
|
|
FEATURE_STATUS("libcrypto", HAVE_LIBCRYPTO_SUPPORT),
|
|
FEATURE_STATUS("libdw-dwarf-unwind", HAVE_DWARF_SUPPORT),
|
|
FEATURE_STATUS("libelf", HAVE_LIBELF_SUPPORT),
|
|
FEATURE_STATUS("libnuma", HAVE_LIBNUMA_SUPPORT),
|
|
FEATURE_STATUS("libopencsd", HAVE_CSTRACE_SUPPORT),
|
|
FEATURE_STATUS("libperl", HAVE_LIBPERL_SUPPORT),
|
|
FEATURE_STATUS("libpfm4", HAVE_LIBPFM),
|
|
FEATURE_STATUS("libpython", HAVE_LIBPYTHON_SUPPORT),
|
|
FEATURE_STATUS("libslang", HAVE_SLANG_SUPPORT),
|
|
FEATURE_STATUS("libtraceevent", HAVE_LIBTRACEEVENT),
|
|
FEATURE_STATUS("libunwind", HAVE_LIBUNWIND_SUPPORT),
|
|
FEATURE_STATUS("lzma", HAVE_LZMA_SUPPORT),
|
|
FEATURE_STATUS("numa_num_possible_cpus", HAVE_LIBNUMA_SUPPORT),
|
|
FEATURE_STATUS("syscall_table", HAVE_SYSCALL_TABLE_SUPPORT),
|
|
FEATURE_STATUS("zlib", HAVE_ZLIB_SUPPORT),
|
|
FEATURE_STATUS("zstd", HAVE_ZSTD_SUPPORT),
|
|
|
|
/* this should remain at end, to know the array end */
|
|
FEATURE_STATUS(NULL, _)
|
|
};
|
|
|
|
static void on_off_print(const char *status)
|
|
{
|
|
printf("[ ");
|
|
|
|
if (!strcmp(status, "OFF"))
|
|
color_fprintf(stdout, PERF_COLOR_RED, "%-3s", status);
|
|
else
|
|
color_fprintf(stdout, PERF_COLOR_GREEN, "%-3s", status);
|
|
|
|
printf(" ]");
|
|
}
|
|
|
|
/* Helper function to print status of a feature along with name/macro */
|
|
static void status_print(const char *name, const char *macro,
|
|
const char *status)
|
|
{
|
|
printf("%22s: ", name);
|
|
on_off_print(status);
|
|
printf(" # %s\n", macro);
|
|
}
|
|
|
|
#define STATUS(feature) \
|
|
do { \
|
|
if (feature.is_builtin) \
|
|
status_print(feature.name, feature.macro, "on"); \
|
|
else \
|
|
status_print(feature.name, feature.macro, "OFF"); \
|
|
} while (0)
|
|
|
|
/**
|
|
* check whether "feature" is built-in with perf
|
|
*
|
|
* returns:
|
|
* 0: NOT built-in or Feature not known
|
|
* 1: Built-in
|
|
*/
|
|
static int has_support(const char *feature)
|
|
{
|
|
for (int i = 0; supported_features[i].name; ++i) {
|
|
if ((strcasecmp(feature, supported_features[i].name) == 0) ||
|
|
(strcasecmp(feature, supported_features[i].macro) == 0)) {
|
|
if (!quiet)
|
|
STATUS(supported_features[i]);
|
|
return supported_features[i].is_builtin;
|
|
}
|
|
}
|
|
|
|
if (!quiet)
|
|
pr_err("Unknown feature '%s', please use 'perf version --build-options' to see which ones are available.\n", feature);
|
|
|
|
return 0;
|
|
}
|
|
|
|
|
|
/**
|
|
* Usage: 'perf check feature <feature_list>'
|
|
*
|
|
* <feature_list> can be a single feature name/macro, or a comma-separated list
|
|
* of feature names/macros
|
|
* eg. argument can be "libtraceevent" or "libtraceevent,bpf" etc
|
|
*
|
|
* In case of a comma-separated list, feature_enabled will be 1, only if
|
|
* all features passed in the string are supported
|
|
*
|
|
* Note that argv will get modified
|
|
*/
|
|
static int subcommand_feature(int argc, const char **argv)
|
|
{
|
|
char *feature_list;
|
|
char *feature_name;
|
|
int feature_enabled;
|
|
|
|
argc = parse_options(argc, argv, check_feature_options,
|
|
check_feature_usage, 0);
|
|
|
|
if (!argc)
|
|
usage_with_options(check_feature_usage, check_feature_options);
|
|
|
|
if (argc > 1) {
|
|
pr_err("Too many arguments passed to 'perf check feature'\n");
|
|
return -1;
|
|
}
|
|
|
|
feature_enabled = 1;
|
|
/* feature_list is a non-const copy of 'argv[0]' */
|
|
feature_list = strdup(argv[0]);
|
|
if (!feature_list) {
|
|
pr_err("ERROR: failed to allocate memory for feature list\n");
|
|
return -1;
|
|
}
|
|
|
|
feature_name = strtok(feature_list, ",");
|
|
|
|
while (feature_name) {
|
|
feature_enabled &= has_support(feature_name);
|
|
feature_name = strtok(NULL, ",");
|
|
}
|
|
|
|
free(feature_list);
|
|
|
|
return !feature_enabled;
|
|
}
|
|
|
|
int cmd_check(int argc, const char **argv)
|
|
{
|
|
argc = parse_options_subcommand(argc, argv, check_options,
|
|
check_subcommands, check_usage, 0);
|
|
|
|
if (!argc)
|
|
usage_with_options(check_usage, check_options);
|
|
|
|
if (strcmp(argv[0], "feature") == 0)
|
|
return subcommand_feature(argc, argv);
|
|
|
|
/* If no subcommand matched above, print usage help */
|
|
pr_err("Unknown subcommand: %s\n", argv[0]);
|
|
usage_with_options(check_usage, check_options);
|
|
|
|
/* free usage string allocated by parse_options_subcommand */
|
|
free((void *)check_usage[0]);
|
|
|
|
return 0;
|
|
}
|