1 //===-- llvm-strings.cpp - Printable String dumping utility ---------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This program is a utility that works like binutils "strings", that is, it
10 // prints out printable strings in a binary, objdump, or archive file.
12 //===----------------------------------------------------------------------===//
15 #include "llvm/Object/Binary.h"
16 #include "llvm/Option/Arg.h"
17 #include "llvm/Option/ArgList.h"
18 #include "llvm/Option/Option.h"
19 #include "llvm/Support/CommandLine.h"
20 #include "llvm/Support/Error.h"
21 #include "llvm/Support/Format.h"
22 #include "llvm/Support/InitLLVM.h"
23 #include "llvm/Support/MemoryBuffer.h"
24 #include "llvm/Support/Program.h"
25 #include "llvm/Support/WithColor.h"
30 using namespace llvm::object
;
34 OPT_INVALID
= 0, // This is not an option ID.
35 #define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \
36 HELPTEXT, METAVAR, VALUES) \
42 #define PREFIX(NAME, VALUE) const char *const NAME[] = VALUE;
46 const opt::OptTable::Info InfoTable
[] = {
47 #define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \
48 HELPTEXT, METAVAR, VALUES) \
50 PREFIX, NAME, HELPTEXT, \
51 METAVAR, OPT_##ID, opt::Option::KIND##Class, \
52 PARAM, FLAGS, OPT_##GROUP, \
53 OPT_##ALIAS, ALIASARGS, VALUES},
58 class StringsOptTable
: public opt::OptTable
{
60 StringsOptTable() : OptTable(InfoTable
) { setGroupedShortOptions(true); }
64 static StringRef ToolName
;
66 static cl::list
<std::string
> InputFileNames(cl::Positional
,
67 cl::desc("<input object files>"),
70 static int MinLength
= 4;
71 static bool PrintFileName
;
73 enum radix
{ none
, octal
, hexadecimal
, decimal
};
76 [[noreturn
]] static void reportCmdLineError(const Twine
&Message
) {
77 WithColor::error(errs(), ToolName
) << Message
<< "\n";
82 static void parseIntArg(const opt::InputArgList
&Args
, int ID
, T
&Value
) {
83 if (const opt::Arg
*A
= Args
.getLastArg(ID
)) {
84 StringRef
V(A
->getValue());
85 if (!llvm::to_integer(V
, Value
, 0) || Value
<= 0)
86 reportCmdLineError("expected a positive integer, but got '" + V
+ "'");
90 static void strings(raw_ostream
&OS
, StringRef FileName
, StringRef Contents
) {
91 auto print
= [&OS
, FileName
](unsigned Offset
, StringRef L
) {
92 if (L
.size() < static_cast<size_t>(MinLength
))
95 OS
<< FileName
<< ": ";
100 OS
<< format("%7o ", Offset
);
103 OS
<< format("%7x ", Offset
);
106 OS
<< format("%7u ", Offset
);
112 const char *B
= Contents
.begin();
113 const char *P
= nullptr, *E
= nullptr, *S
= nullptr;
114 for (P
= Contents
.begin(), E
= Contents
.end(); P
< E
; ++P
) {
115 if (isPrint(*P
) || *P
== '\t') {
119 print(S
- B
, StringRef(S
, P
- S
));
124 print(S
- B
, StringRef(S
, E
- S
));
127 int main(int argc
, char **argv
) {
128 InitLLVM
X(argc
, argv
);
130 StringSaver
Saver(A
);
133 opt::InputArgList Args
=
134 Tbl
.parseArgs(argc
, argv
, OPT_UNKNOWN
, Saver
,
135 [&](StringRef Msg
) { reportCmdLineError(Msg
); });
136 if (Args
.hasArg(OPT_help
)) {
139 (Twine(ToolName
) + " [options] <input object files>").str().c_str(),
140 "llvm string dumper");
141 // TODO Replace this with OptTable API once it adds extrahelp support.
142 outs() << "\nPass @FILE as argument to read options from FILE.\n";
145 if (Args
.hasArg(OPT_version
)) {
146 outs() << ToolName
<< '\n';
147 cl::PrintVersionMessage();
151 parseIntArg(Args
, OPT_bytes_EQ
, MinLength
);
152 PrintFileName
= Args
.hasArg(OPT_print_file_name
);
153 StringRef R
= Args
.getLastArgValue(OPT_radix_EQ
);
163 reportCmdLineError("--radix value should be one of: '' (no offset), 'o' "
164 "(octal), 'd' (decimal), 'x' (hexadecimal)");
166 if (MinLength
== 0) {
167 errs() << "invalid minimum string length 0\n";
171 std::vector
<std::string
> InputFileNames
= Args
.getAllArgValues(OPT_INPUT
);
172 if (InputFileNames
.empty())
173 InputFileNames
.push_back("-");
175 for (const auto &File
: InputFileNames
) {
176 ErrorOr
<std::unique_ptr
<MemoryBuffer
>> Buffer
=
177 MemoryBuffer::getFileOrSTDIN(File
);
178 if (std::error_code EC
= Buffer
.getError())
179 errs() << File
<< ": " << EC
.message() << '\n';
181 strings(llvm::outs(), File
== "-" ? "{standard input}" : File
,
182 Buffer
.get()->getMemBufferRef().getBuffer());