2013-12-07 07:07:54 +00:00
|
|
|
// -*- Mode: C++ -*-
|
|
|
|
//
|
|
|
|
// Copyright (C) 2013 Red Hat, Inc.
|
|
|
|
//
|
|
|
|
// This file is part of the GNU Application Binary Interface Generic
|
|
|
|
// Analysis and Instrumentation Library (libabigail). 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 3, 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
|
|
|
|
// General Lesser Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this program; see the file COPYING-LGPLV3. If
|
|
|
|
// not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//
|
|
|
|
// Author: Dodji Seketeli
|
|
|
|
|
|
|
|
/// @file
|
|
|
|
///
|
|
|
|
/// This program reads an elf file, try to load its debug info (in
|
|
|
|
/// DWARF format) and emit it back in a set of "text sections" in native
|
|
|
|
/// libabigail XML format.
|
|
|
|
|
|
|
|
#include <cassert>
|
|
|
|
#include <cstring>
|
|
|
|
#include <cstdio>
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <string>
|
|
|
|
#include <iostream>
|
|
|
|
#include <fstream>
|
|
|
|
#include "abg-tools-utils.h"
|
|
|
|
#include "abg-corpus.h"
|
|
|
|
#include "abg-dwarf-reader.h"
|
2014-01-07 13:12:26 +00:00
|
|
|
#include "abg-writer.h"
|
2013-12-07 07:07:54 +00:00
|
|
|
|
|
|
|
using std::string;
|
|
|
|
using std::cerr;
|
|
|
|
using std::cout;
|
|
|
|
using std::ostream;
|
|
|
|
using std::ofstream;
|
|
|
|
|
|
|
|
struct options
|
|
|
|
{
|
|
|
|
string in_file_path;
|
|
|
|
string out_file_path;
|
2014-05-22 11:14:44 +00:00
|
|
|
char** di_root_path;
|
|
|
|
|
|
|
|
options()
|
|
|
|
: di_root_path(0)
|
|
|
|
{}
|
2013-12-07 07:07:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
display_usage(const string& prog_name, ostream& out)
|
|
|
|
{
|
|
|
|
out << "usage: " << prog_name << "[options] [<path-to-elf-file>]\n"
|
|
|
|
<< " where options can be: \n"
|
|
|
|
<< " --help display this message\n"
|
2014-05-22 11:14:44 +00:00
|
|
|
<< " --debug-info-dir <dir-path> look for debug info under 'dir-path'\n"
|
2013-12-07 07:07:54 +00:00
|
|
|
<< " --out-file <file-path> write the output to 'file-path'\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
parse_command_line(int argc, char* argv[], options& opts)
|
|
|
|
{
|
|
|
|
if (argc < 2)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
for (int i = 1; i < argc; ++i)
|
|
|
|
{
|
|
|
|
if (argv[i][0] != '-')
|
|
|
|
{
|
|
|
|
if (opts.in_file_path.empty())
|
|
|
|
opts.in_file_path = argv[i];
|
|
|
|
else
|
|
|
|
return false;
|
|
|
|
}
|
2014-05-22 11:14:44 +00:00
|
|
|
else if (!strcmp(argv[i], "--debug-info-dir"))
|
|
|
|
{
|
|
|
|
if (argc <= i + 1
|
|
|
|
|| argv[i + 1][0] == '-'
|
|
|
|
|| !opts.out_file_path.empty())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
opts.di_root_path = &argv[i + 1];
|
|
|
|
++i;
|
|
|
|
}
|
2013-12-07 07:07:54 +00:00
|
|
|
else if (!strcmp(argv[i], "--out-file"))
|
|
|
|
{
|
|
|
|
if (argc <= i + 1
|
|
|
|
|| argv[i + 1][0] == '-'
|
|
|
|
|| !opts.out_file_path.empty())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
opts.out_file_path = argv[i + 1];
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
else if (!strcmp(argv[i], "--help"))
|
|
|
|
return false;
|
|
|
|
else
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char* argv[])
|
|
|
|
{
|
|
|
|
options opts;
|
|
|
|
|
|
|
|
if (!parse_command_line(argc, argv, opts))
|
|
|
|
{
|
|
|
|
display_usage(argv[0], cerr);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(!opts.in_file_path.empty());
|
2014-01-07 13:12:26 +00:00
|
|
|
if (!abigail::tools::check_file(opts.in_file_path, cerr))
|
2013-12-07 07:07:54 +00:00
|
|
|
return 1;
|
|
|
|
|
2014-01-07 13:12:26 +00:00
|
|
|
abigail::tools::file_type type =
|
|
|
|
abigail::tools::guess_file_type(opts.in_file_path);
|
2014-06-02 15:05:05 +00:00
|
|
|
if (type != abigail::tools::FILE_TYPE_ELF
|
|
|
|
&& type != abigail::tools::FILE_TYPE_AR)
|
2014-01-07 13:12:26 +00:00
|
|
|
{
|
|
|
|
cerr << opts.in_file_path << " is not an ELF file\n";
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2013-12-07 07:07:54 +00:00
|
|
|
using abigail::corpus;
|
|
|
|
using abigail::corpus_sptr;
|
|
|
|
using abigail::translation_units;
|
|
|
|
using abigail::dwarf_reader::read_corpus_from_elf;
|
|
|
|
|
2014-05-22 11:14:44 +00:00
|
|
|
corpus_sptr corp = read_corpus_from_elf(opts.in_file_path,
|
|
|
|
opts.di_root_path);
|
2013-12-07 07:07:54 +00:00
|
|
|
if (!corp)
|
|
|
|
{
|
2014-05-22 11:14:44 +00:00
|
|
|
if (opts.di_root_path == 0)
|
|
|
|
{
|
|
|
|
cerr <<
|
|
|
|
"Could not read debug info from "
|
|
|
|
<< opts.in_file_path << "\n";
|
|
|
|
|
|
|
|
cerr << "You might want to supply the root directory where "
|
|
|
|
"to search debug info from, using the "
|
|
|
|
"--debug-info-dir option\n";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cerr << "Could not read debug info for " << opts.in_file_path
|
|
|
|
<< " from debug info root directory " << *opts.di_root_path
|
|
|
|
<< "\n";
|
|
|
|
}
|
2013-12-07 07:07:54 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-01-07 13:12:26 +00:00
|
|
|
abigail::xml_writer::write_corpus_to_native_xml(corp, 0, cout);
|
2013-12-07 07:07:54 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|