2017-02-20 17:53:56 +00:00
|
|
|
/*
|
2020-08-13 16:19:10 +00:00
|
|
|
anonymizer.cpp - Overwrites string table for a function name.
|
2017-02-20 17:53:56 +00:00
|
|
|
|
|
|
|
Copyright (C) 2017 by Martin Bickel
|
2020-08-13 16:19:10 +00:00
|
|
|
Copyright (C) 2020 by Serge Lamikhov-Center
|
2017-02-20 17:53:56 +00:00
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2020-08-13 16:19:10 +00:00
|
|
|
/*
|
|
|
|
To run the example, you may use the following script:
|
|
|
|
|
|
|
|
#!/usr/bin/bash
|
|
|
|
|
|
|
|
make
|
|
|
|
cp anonymizer temp.elf
|
|
|
|
readelf -a temp.elf > before.txt
|
|
|
|
./anonymizer temp.elf
|
|
|
|
readelf -a temp.elf > after.txt
|
|
|
|
diff before.txt after.txt
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2017-02-20 17:53:56 +00:00
|
|
|
#ifdef _MSC_VER
|
2020-08-13 16:19:10 +00:00
|
|
|
#define _SCL_SECURE_NO_WARNINGS
|
|
|
|
#define ELFIO_NO_INTTYPES
|
2017-02-20 17:53:56 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <iostream>
|
|
|
|
#include <fstream>
|
2020-08-13 16:19:10 +00:00
|
|
|
#include <elfio/elfio.hpp>
|
2017-02-20 17:53:56 +00:00
|
|
|
|
|
|
|
using namespace ELFIO;
|
|
|
|
|
2020-08-21 14:56:08 +00:00
|
|
|
void overwrite_data( const std::string& filename,
|
2020-10-30 15:54:13 +00:00
|
|
|
Elf64_Off offset,
|
2020-08-21 14:56:08 +00:00
|
|
|
std::string& str )
|
2020-08-13 16:19:10 +00:00
|
|
|
{
|
2020-08-21 14:56:08 +00:00
|
|
|
std::ofstream file( filename,
|
|
|
|
std::ios::in | std::ios::out | std::ios::binary );
|
|
|
|
if ( !file )
|
2020-08-13 16:19:10 +00:00
|
|
|
throw "Error opening file" + filename;
|
2020-08-21 14:56:08 +00:00
|
|
|
std::string data( str.length(), '-' );
|
2020-10-30 15:54:13 +00:00
|
|
|
file.seekp( (std::streampos)offset );
|
2020-08-21 14:56:08 +00:00
|
|
|
file.write( data.c_str(), data.length() + 1 );
|
2017-02-20 17:53:56 +00:00
|
|
|
}
|
|
|
|
|
2020-08-21 14:56:08 +00:00
|
|
|
void process_string_table( const section* s, const std::string& filename )
|
2020-08-13 16:19:10 +00:00
|
|
|
{
|
2017-02-20 17:53:56 +00:00
|
|
|
std::cout << "Info: processing string table section" << std::endl;
|
2020-10-30 15:54:13 +00:00
|
|
|
size_t index = 1;
|
2020-08-21 14:56:08 +00:00
|
|
|
while ( index < s->get_size() ) {
|
|
|
|
auto str = std::string( s->get_data() + index );
|
2020-08-13 16:19:10 +00:00
|
|
|
// For the example purpose, we rename main function name only
|
2020-08-21 14:56:08 +00:00
|
|
|
if ( str == "main" )
|
|
|
|
overwrite_data( filename, s->get_offset() + index, str );
|
2020-08-13 16:19:10 +00:00
|
|
|
index += str.length() + 1;
|
2017-02-20 17:53:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-21 14:56:08 +00:00
|
|
|
int main( int argc, char** argv )
|
2017-02-20 17:53:56 +00:00
|
|
|
{
|
2020-08-29 05:38:40 +00:00
|
|
|
if ( argc != 2 ) {
|
|
|
|
std::cout << "Usage: anonymizer <file_name>\n";
|
|
|
|
return 1;
|
|
|
|
}
|
2017-02-20 17:53:56 +00:00
|
|
|
|
2020-08-29 05:38:40 +00:00
|
|
|
std::string filename = argv[1];
|
2017-02-20 17:53:56 +00:00
|
|
|
|
2020-08-29 05:38:40 +00:00
|
|
|
elfio reader;
|
2017-02-20 17:53:56 +00:00
|
|
|
|
2020-08-29 05:38:40 +00:00
|
|
|
if ( !reader.load( filename ) ) {
|
|
|
|
std::cerr << "File " << filename
|
|
|
|
<< " is not found or it is not an ELF file\n";
|
|
|
|
return 1;
|
|
|
|
}
|
2017-02-20 17:53:56 +00:00
|
|
|
|
2020-08-29 05:38:40 +00:00
|
|
|
for ( auto section = reader.sections.begin();
|
|
|
|
section != reader.sections.end(); ++section ) {
|
|
|
|
if ( ( *section )->get_type() == SHT_STRTAB &&
|
|
|
|
std::string( ( *section )->get_name() ) ==
|
|
|
|
std::string( ".strtab" ) ) {
|
|
|
|
process_string_table( *section, filename );
|
2017-02-20 17:53:56 +00:00
|
|
|
}
|
|
|
|
}
|
2020-08-29 05:38:40 +00:00
|
|
|
return 0;
|
2017-02-20 17:53:56 +00:00
|
|
|
}
|