Newer
Older
/*
* Copyright (c) 2014-2015 - Zephyr Software LLC
*
* This file may be used and modified for non-commercial purposes as long as
* all copyright, permission, and nonwarranty notices are preserved.
* Redistribution is prohibited without prior written consent from Zephyr
* Software.
*
* Please contact the authors for restrictions applying to commercial use.
*
* THIS SOURCE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
* MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
* Author: Zephyr Software
* e-mail: jwd@zephyr-software.com
* URL : http://www.zephyr-software.com/
*
*/
#include <stdlib.h>
#include <fstream>
#include <libIRDB-core.hpp>
#include <libgen.h>
#include "scfi_instr.hpp"
using namespace std;
using namespace libIRDB;
#define BINARY_NAME "a.ncexe"
#define SHARED_OBJECTS_DIR "shared_objects"
void usage(char* name)
{
" [--clamp-mask <mask>] -- In hex, defaults to 0xffffffff\n"
" [--color|--no-color] -- defaults to no-color\n"
" [--protect-jumps|--no-protect-jumps] -- defaults to protect-jumps \n"
" [--protect-rets|--no-protect-rets] -- defaults to protect-rets \n"
" [--protect-safefn|--no-protect-safefn] -- defaults to no-protect-safefn\n"
" [ --common-slow-path | --no-common-slow-path ] -- defaults to common-slow-path\n"
"default: --no-color --protect-jumps --protect-rets --no-protect-safefn --common-slow-path\n";
if(!getenv("FIX_CALLS_FIX_ALL_CALLS"))
{
cerr<<"FIX_CALLS_FIX_ALL_CALLS should be set."<<endl;
exit(1);
}
uint32_t clampmask=(uint32_t)-1;
bool do_jumps=true;
bool do_rets=true;
if(string(argv[i])=="--clamp-mask")
{
if(i<argc)
{
i++;
clampmask=strtol(argv[i], NULL, 0); // interpret argv[i] as a variable base string
cout<<"Using clamp mask = "<<hex<<clampmask<<endl;
}
else
{
cerr<<"--clamp-mask must take a (hex) value"<<endl;
usage(argv[0]);
exit(1);
}
}
else if(string(argv[i])=="--color")
else if(string(argv[i])=="--protect-jumps")
else if(string(argv[i])=="--no-protect-jumps")
else if(string(argv[i])=="--protect-rets")
else if(string(argv[i])=="--no-protect-rets")
else if(string(argv[i])=="--protect-safefn")
{
cout<<"protecting safe functions..."<<endl;
do_safefn=true;
}
else if(string(argv[i])=="--no-protect-safefn")
{
cout<<"Not protecting safe functions..."<<endl;
do_safefn=false;
}
else if(string(argv[i])=="--common-slow-path")
{
cout<<"Using common slow path..."<<endl;
do_common_slow_path=true;
}
else if(string(argv[i])=="--no-common-slow-path")
{
cout<<"Not using common slow path..."<<endl;
do_common_slow_path=false;
}
else
{
cerr<<"Unknown option: "<< argv[i] << endl;
usage(argv[0]);
exit(1);
}
string programName(argv[0]);
int variantID = atoi(argv[1]);
VariantID_t *pidp=NULL;
/* setup the interface to the sql server */
pqxxDB_t pqxx_interface;
BaseObj_t::SetInterface(&pqxx_interface);
pidp=new VariantID_t(variantID);
assert(pidp->IsRegistered()==true);
bool one_success = false;
for(set<File_t*>::iterator it=pidp->GetFiles().begin();
it!=pidp->GetFiles().end();
++it)
{
File_t* this_file = *it;
FileIR_t *firp = new FileIR_t(*pidp, this_file);
cout<<"Transforming "<<this_file->GetURL()<<endl;
assert(firp && pidp);
try
{
SCFI_Instrument scfii(firp, do_coloring, do_common_slow_path, do_jumps, do_rets, do_safefn, clampmask);
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
int success=scfii.execute();
if (success)
{
cout<<"Writing changes for "<<this_file->GetURL()<<endl;
one_success = true;
firp->WriteToDB();
delete firp;
}
else
{
cout<<"Skipping (no changes) "<<this_file->GetURL()<<endl;
}
}
catch (DatabaseError_t pnide)
{
cerr << programName << ": Unexpected database error: " << pnide << "file url: " << this_file->GetURL() << endl;
}
catch (...)
{
cerr << programName << ": Unexpected error file url: " << this_file->GetURL() << endl;
}
} // end file iterator
// if any integer transforms for any files succeeded, we commit
if (one_success)
{
cout<<"Commiting changes...\n";
pqxx_interface.Commit();
}
return 0;
}