X-Git-Url: https://code.wpia.club/?a=blobdiff_plain;f=src%2Fapps%2Fclient.cpp;h=f044c2b84a43d42394ddf457f4b33aad3f06726d;hb=da9f337a893bd317460118f89efa83a3427f797f;hp=87447431665c9c31340aedc737d734f3e5d36648;hpb=fc948d298f3cf27a5b8f73b2a8d6251ccf6c99d2;p=cassiopeia.git diff --git a/src/apps/client.cpp b/src/apps/client.cpp index 8744743..f044c2b 100644 --- a/src/apps/client.cpp +++ b/src/apps/client.cpp @@ -46,19 +46,20 @@ void checkCRLs( std::shared_ptr sign ) { try { std::vector serials; std::pair, std::string> rev = sign->revoke( x.second, serials ); - } catch( const std::exception &e ) { + } catch( const std::exception& e ) { logger::error( "Exception: ", e.what() ); } } } -int main( int argc, const char* argv[] ) { +int main( int argc, const char *argv[] ) { bool once = false; bool resetOnly = false; if( argc == 2 && std::string( "--once" ) == argv[1] ) { once = true; } + if( argc == 2 && std::string( "--reset" ) == argv[1] ) { resetOnly = true; } @@ -80,11 +81,12 @@ int main( int argc, const char* argv[] ) { logger::fatal( "Error: no serial device is given!" ); return -1; } + std::shared_ptr jp = std::make_shared( sqlHost, sqlUser, sqlPass, sqlDB ); std::shared_ptr b = openSerial( serialPath ); - std::shared_ptr m( toBio(), BIO_meth_free); + std::shared_ptr m( toBio(), BIO_meth_free ); std::shared_ptr slip1( BIO_new( m.get() ), BIO_free ); - static_cast( slip1->ptr )->setTarget( std::make_shared( b ), false ); + static_cast( slip1->ptr )->setTarget( std::make_shared( b ), false ); auto sign = std::make_shared( slip1, generateSSLContext( false ) ); // std::shared_ptr sign( new SimpleOpensslSigner() ); @@ -98,7 +100,7 @@ int main( int argc, const char* argv[] ) { time_t lastCRLCheck = 0; while( true ) { - try { + try { time_t current; time( ¤t ); @@ -114,11 +116,13 @@ int main( int argc, const char* argv[] ) { } std::shared_ptr job; + try { job = jp->fetchJob(); - } catch ( std::exception &e ){ - logger::errorf ( "Exception while fetchJob: %s", e.what() ); - } + } catch( std::exception& e ) { + logger::errorf( "Exception while fetchJob: %s", e.what() ); + } + if( !job ) { sleep( 5 ); continue; @@ -126,7 +130,7 @@ int main( int argc, const char* argv[] ) { std::shared_ptr logPtr = openLogfile( std::string( "logs/" ) + job->id + std::string( "_" ) + job->warning + std::string( ".log" ) ); - logger::logger_set log_set({logger::log_target(*logPtr, logger::level::debug)}, logger::auto_register::on); + logger::logger_set log_set( {logger::log_target( *logPtr, logger::level::debug )}, logger::auto_register::on ); logger::note( "TASK ID: ", job->id ); logger::note( "TRY: ", job->warning ); @@ -136,6 +140,13 @@ int main( int argc, const char* argv[] ) { if( job->task == "sign" ) { try { std::shared_ptr cert = jp->fetchTBSCert( job ); + + if( !cert ) { + logger::error( "Unable to load CSR" ); + jp->failJob( job ); + continue; + } + cert->wishFrom = job->from; cert->wishTo = job->to; logger::note( "INFO: Message Digest: ", cert->md ); @@ -149,12 +160,6 @@ int main( int argc, const char* argv[] ) { logger::notef( "INFO: AVA %s: %s", AVA->name, AVA->value ); } - if( !cert ) { - logger::error( "Unable to load CSR" ); - jp->failJob( job ); - continue; - } - logger::notef( "FINE: Found the CSR at '%s'", cert->csr ); cert->csr_content = readFile( keyDir + "/../" + cert->csr ); logger::note( "FINE: CSR content:\n", cert->csr_content ); @@ -168,7 +173,7 @@ int main( int argc, const char* argv[] ) { } logger::note( "FINE: CERTIFICATE LOG:\n", res->log, - "FINE: CERTIFICATE:\n", res->certificate ); + "FINE: CERTIFICATE:\n", res->certificate ); std::string fn = writeBackFile( job->target.c_str(), res->certificate, keyDir ); @@ -205,7 +210,7 @@ int main( int argc, const char* argv[] ) { logger::note( "revoking" ); std::pair, std::string> rev = sign->revoke( CAs.at( data.second ), serials ); std::string date = rev.second; - const unsigned char* pos = ( const unsigned char* ) date.data(); + const unsigned char *pos = ( const unsigned char * ) date.data(); std::shared_ptr time( d2i_ASN1_TIME( NULL, &pos, date.size() ), ASN1_TIME_free ); jp->writeBackRevocation( job, timeToString( time ) ); @@ -221,8 +226,8 @@ int main( int argc, const char* argv[] ) { if( !DAEMON || once ) { return 0; } - } catch ( std::exception &e ){ - logger::errorf ( "std::exception in mainloop: %s", e.what() ); + } catch( std::exception& e ) { + logger::errorf( "std::exception in mainloop: %s", e.what() ); } }