mirror of
https://github.com/martijnvanbrummelen/nwipe.git
synced 2026-02-20 13:42:14 +00:00
Merge branch 'master' into master
This commit is contained in:
@@ -27,7 +27,7 @@ BraceWrapping:
|
||||
AfterStruct: true
|
||||
AfterUnion: true
|
||||
BeforeCatch: false
|
||||
BeforeElse: false
|
||||
BeforeElse: true
|
||||
IndentBraces: false
|
||||
BreakBeforeBinaryOperators: NonAssignment
|
||||
BreakBeforeBraces: Custom
|
||||
|
||||
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
@@ -1,6 +1,6 @@
|
||||
name: CI_on_Ubuntu-latest
|
||||
|
||||
on: [push]
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
@@ -20,5 +20,7 @@ jobs:
|
||||
- name: compiling
|
||||
run: make
|
||||
# Changing the path should no longer be necessary when clang-format6 is installed.
|
||||
# - name: verifying code style
|
||||
- name: verifying code style
|
||||
# TODO use check-format when all the code has been formatted.
|
||||
# run: export PATH=$PATH:/usr/lib/llvm-5.0/bin && make check-format
|
||||
run: export PATH=$PATH:/usr/lib/llvm-5.0/bin && clang-format -i -style=file src/nwipe.c src/nwipe.h src/options.c src/options.h && git diff-index --quiet HEAD
|
||||
|
||||
6
.github/workflows/ci_ubuntu-16.04.yml
vendored
6
.github/workflows/ci_ubuntu-16.04.yml
vendored
@@ -1,6 +1,6 @@
|
||||
name: CI_on_ubuntu-16.04
|
||||
|
||||
on: [push]
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
@@ -20,5 +20,7 @@ jobs:
|
||||
- name: compiling
|
||||
run: make
|
||||
# Changing the path should no longer be necessary when clang-format6 is installed.
|
||||
# - name: verifying code style
|
||||
- name: verifying code style
|
||||
# TODO use check-format when all the code has been formatted.
|
||||
# run: export PATH=$PATH:/usr/lib/llvm-5.0/bin && make check-format
|
||||
run: export PATH=$PATH:/usr/lib/llvm-5.0/bin && clang-format -i -style=file src/nwipe.c src/nwipe.h src/options.c src/options.h && git diff-index --quiet HEAD
|
||||
|
||||
27
src/nwipe.c
27
src/nwipe.c
@@ -50,12 +50,12 @@ int terminate_signal;
|
||||
|
||||
int main( int argc, char** argv )
|
||||
{
|
||||
int nwipe_optind; // The result of nwipe_options().
|
||||
int nwipe_enumerated; // The number of contexts that have been enumerated.
|
||||
int nwipe_error = 0; // An error counter.
|
||||
int nwipe_selected = 0; // The number of contexts that have been selected.
|
||||
pthread_t nwipe_gui_thread = 0; // The thread ID of the GUI thread.
|
||||
pthread_t nwipe_sigint_thread; // The thread ID of the sigint handler.
|
||||
int nwipe_optind; // The result of nwipe_options().
|
||||
int nwipe_enumerated; // The number of contexts that have been enumerated.
|
||||
int nwipe_error = 0; // An error counter.
|
||||
int nwipe_selected = 0; // The number of contexts that have been selected.
|
||||
pthread_t nwipe_gui_thread = 0; // The thread ID of the GUI thread.
|
||||
pthread_t nwipe_sigint_thread; // The thread ID of the sigint handler.
|
||||
|
||||
/* The entropy source file handle. */
|
||||
int nwipe_entropy;
|
||||
@@ -197,7 +197,6 @@ int main( int argc, char** argv )
|
||||
c1[i]->prng_seed.length = 0;
|
||||
c1[i]->prng_seed.s = 0;
|
||||
c1[i]->prng_state = 0;
|
||||
|
||||
}
|
||||
|
||||
/* Check for initialization errors. */
|
||||
@@ -253,7 +252,6 @@ int main( int argc, char** argv )
|
||||
/* Copy the context. */
|
||||
c2[j++] = c1[i];
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/* TODO: free c1 and c2 memory. */
|
||||
@@ -320,7 +318,6 @@ int main( int argc, char** argv )
|
||||
if( ioctl( c2[i]->device_fd, BLKBSZGET, &c2[i]->block_size ) == 0 )
|
||||
{
|
||||
nwipe_log( NWIPE_LOG_INFO, "Device '%s' has block size %i.", c2[i]->device_name, c2[i]->block_size );
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -401,7 +398,6 @@ int main( int argc, char** argv )
|
||||
nwipe_gui_free();
|
||||
return errno;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/* Change the terminal mode to non-blocking input. */
|
||||
@@ -539,7 +535,6 @@ int main( int argc, char** argv )
|
||||
|
||||
/* Exit. */
|
||||
return return_status;
|
||||
|
||||
}
|
||||
|
||||
void* signal_hand( void* ptr )
|
||||
@@ -626,11 +621,13 @@ void* signal_hand( void* ptr )
|
||||
if( c[i]->result == 0 )
|
||||
{
|
||||
nwipe_log( NWIPE_LOG_INFO, "%s: Success", c[i]->device_name );
|
||||
} else if( c[i]->signal )
|
||||
}
|
||||
else if( c[i]->signal )
|
||||
{
|
||||
nwipe_log(
|
||||
NWIPE_LOG_INFO, "%s: >>> FAILURE! <<<: signal %i", c[i]->device_name, c[i]->signal );
|
||||
} else
|
||||
}
|
||||
else
|
||||
{
|
||||
nwipe_log(
|
||||
NWIPE_LOG_INFO, "%s: >>> FAILURE! <<<: code %i", c[i]->device_name, c[i]->result );
|
||||
@@ -653,15 +650,11 @@ void* signal_hand( void* ptr )
|
||||
return ( (void*) 0 );
|
||||
|
||||
break;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
return ( 0 );
|
||||
|
||||
}
|
||||
|
||||
int cleanup()
|
||||
|
||||
@@ -114,5 +114,3 @@ typedef unsigned char u8;
|
||||
void* signal_hand( void* );
|
||||
|
||||
#endif /* NWIPE_H_ */
|
||||
|
||||
/* eof */
|
||||
|
||||
861
src/options.c
861
src/options.c
@@ -33,455 +33,448 @@ nwipe_options_t nwipe_options;
|
||||
|
||||
int nwipe_options_parse( int argc, char** argv )
|
||||
{
|
||||
extern char* optarg; /* The working getopt option argument. */
|
||||
extern int optind; /* The working getopt index into argv. */
|
||||
extern int optopt; /* The last unhandled getopt option. */
|
||||
extern int opterr; /* The last getopt error number. */
|
||||
extern char* optarg; // The working getopt option argument.
|
||||
extern int optind; // The working getopt index into argv.
|
||||
extern int optopt; // The last unhandled getopt option.
|
||||
extern int opterr; // The last getopt error number.
|
||||
|
||||
extern nwipe_prng_t nwipe_twister;
|
||||
extern nwipe_prng_t nwipe_isaac;
|
||||
|
||||
/* The getopt() result holder. */
|
||||
int nwipe_opt;
|
||||
extern nwipe_prng_t nwipe_twister;
|
||||
extern nwipe_prng_t nwipe_isaac;
|
||||
|
||||
/* The getopt() result holder. */
|
||||
int nwipe_opt;
|
||||
|
||||
/* Excluded drive indexes */
|
||||
int idx_drive_chr;
|
||||
int idx_optarg;
|
||||
int idx_drive;
|
||||
|
||||
/* Array index variable. */
|
||||
int i;
|
||||
|
||||
/* The list of acceptable short options. */
|
||||
char nwipe_options_short[] = "Vhl:m:p:r:e:";
|
||||
|
||||
/* The list of acceptable long options. */
|
||||
static struct option nwipe_options_long[] = {
|
||||
/* Set when the user wants to wipe without a confirmation prompt. */
|
||||
{"autonuke", no_argument, 0, 0},
|
||||
|
||||
/* A GNU standard option. Corresponds to the 'h' short option. */
|
||||
{"help", no_argument, 0, 'h'},
|
||||
|
||||
/* The wipe method. Corresponds to the 'm' short option. */
|
||||
{"method", required_argument, 0, 'm'},
|
||||
|
||||
/* Log file. Corresponds to the 'l' short option. */
|
||||
{"logfile", required_argument, 0, 'l'},
|
||||
|
||||
/* Exclude devices, comma separated list */
|
||||
{"exclude", required_argument, 0, 'e'},
|
||||
|
||||
/* The Pseudo Random Number Generator. */
|
||||
{"prng", required_argument, 0, 'p'},
|
||||
|
||||
/* The number of times to run the method. */
|
||||
{"rounds", required_argument, 0, 'r'},
|
||||
|
||||
/* Whether to blank the disk after wiping. */
|
||||
{"noblank", no_argument, 0, 0},
|
||||
|
||||
/* Whether to exit after wiping or wait for a keypress. */
|
||||
{"nowait", no_argument, 0, 0},
|
||||
|
||||
/* Whether to allow signals to interrupt a wipe. */
|
||||
{"nosignals", no_argument, 0, 0},
|
||||
|
||||
/* Whether to exit after wiping or wait for a keypress. */
|
||||
{"nogui", no_argument, 0, 0},
|
||||
|
||||
/* A flag to indicate whether the devices whould be opened in sync mode. */
|
||||
{"sync", required_argument, 0, 0},
|
||||
|
||||
/* Verify that wipe patterns are being written to the device. */
|
||||
{"verify", required_argument, 0, 0},
|
||||
|
||||
/* Display program version. */
|
||||
{"version", no_argument, 0, 'V'},
|
||||
|
||||
/* Requisite padding for getopt(). */
|
||||
{0, 0, 0, 0}};
|
||||
|
||||
/* Set default options. */
|
||||
nwipe_options.autonuke = 0;
|
||||
nwipe_options.method = &nwipe_dodshort;
|
||||
nwipe_options.prng = &nwipe_twister;
|
||||
nwipe_options.rounds = 1;
|
||||
nwipe_options.noblank = 0;
|
||||
nwipe_options.nowait = 0;
|
||||
nwipe_options.nosignals = 0;
|
||||
nwipe_options.nogui = 0;
|
||||
nwipe_options.sync = 100000;
|
||||
nwipe_options.verify = NWIPE_VERIFY_LAST;
|
||||
memset( nwipe_options.logfile, '\0', sizeof( nwipe_options.logfile ) );
|
||||
|
||||
/* Initialise each of the strings in the excluded drives array */
|
||||
for( i = 0; i < MAX_NUMBER_EXCLUDED_DRIVES; i++ )
|
||||
{
|
||||
nwipe_options.exclude[i][0] = 0;
|
||||
}
|
||||
|
||||
/* Parse command line options. */
|
||||
while( 1 )
|
||||
{
|
||||
/* Get the next command line option with (3)getopt. */
|
||||
nwipe_opt = getopt_long( argc, argv, nwipe_options_short, nwipe_options_long, &i );
|
||||
|
||||
/* Break when we have processed all of the given options. */
|
||||
if( nwipe_opt < 0 )
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
||||
switch( nwipe_opt )
|
||||
{
|
||||
case 0: /* Long options without short counterparts. */
|
||||
|
||||
if( strcmp( nwipe_options_long[i].name, "autonuke" ) == 0 )
|
||||
{
|
||||
nwipe_options.autonuke = 1;
|
||||
break;
|
||||
}
|
||||
|
||||
if( strcmp( nwipe_options_long[i].name, "noblank" ) == 0 )
|
||||
{
|
||||
nwipe_options.noblank = 1;
|
||||
break;
|
||||
}
|
||||
|
||||
if( strcmp( nwipe_options_long[i].name, "nowait" ) == 0 )
|
||||
{
|
||||
nwipe_options.nowait = 1;
|
||||
break;
|
||||
}
|
||||
|
||||
if( strcmp( nwipe_options_long[i].name, "nosignals" ) == 0 )
|
||||
{
|
||||
nwipe_options.nosignals = 1;
|
||||
break;
|
||||
}
|
||||
|
||||
if( strcmp( nwipe_options_long[i].name, "nogui" ) == 0 )
|
||||
{
|
||||
nwipe_options.nogui = 1;
|
||||
nwipe_options.nowait = 1;
|
||||
break;
|
||||
}
|
||||
|
||||
if( strcmp( nwipe_options_long[i].name, "sync" ) == 0 )
|
||||
{
|
||||
if( sscanf( optarg, " %i", &nwipe_options.sync ) != 1 \
|
||||
|| nwipe_options.sync < 1
|
||||
)
|
||||
{
|
||||
fprintf( stderr, "Error: The sync argument must be a positive integer.\n" );
|
||||
exit( EINVAL );
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
if( strcmp( nwipe_options_long[i].name, "verify" ) == 0 )
|
||||
{
|
||||
|
||||
if( strcmp( optarg, "0" ) == 0 || strcmp( optarg, "off" ) == 0 )
|
||||
{
|
||||
nwipe_options.verify = NWIPE_VERIFY_NONE;
|
||||
break;
|
||||
}
|
||||
|
||||
if( strcmp( optarg, "1" ) == 0 || strcmp( optarg, "last" ) == 0 )
|
||||
{
|
||||
nwipe_options.verify = NWIPE_VERIFY_LAST;
|
||||
break;
|
||||
}
|
||||
|
||||
if( strcmp( optarg, "2" ) == 0 || strcmp( optarg, "all" ) == 0 )
|
||||
{
|
||||
nwipe_options.verify = NWIPE_VERIFY_ALL;
|
||||
break;
|
||||
}
|
||||
|
||||
/* Else we do not know this verification level. */
|
||||
fprintf( stderr, "Error: Unknown verification level '%s'.\n", optarg );
|
||||
exit( EINVAL );
|
||||
}
|
||||
|
||||
/* getopt_long should raise on invalid option, so we should never get here. */
|
||||
exit( EINVAL );
|
||||
|
||||
case 'm': /* Method option. */
|
||||
|
||||
if( strcmp( optarg, "dod522022m" ) == 0 || strcmp( optarg, "dod" ) == 0 )
|
||||
{
|
||||
nwipe_options.method = &nwipe_dod522022m;
|
||||
break;
|
||||
}
|
||||
|
||||
if( strcmp( optarg, "dodshort" ) == 0 || strcmp( optarg, "dod3pass" ) == 0 )
|
||||
{
|
||||
nwipe_options.method = &nwipe_dodshort;
|
||||
break;
|
||||
}
|
||||
|
||||
if( strcmp( optarg, "gutmann" ) == 0 )
|
||||
{
|
||||
nwipe_options.method = &nwipe_gutmann;
|
||||
break;
|
||||
}
|
||||
|
||||
if( strcmp( optarg, "ops2" ) == 0 )
|
||||
{
|
||||
nwipe_options.method = &nwipe_ops2;
|
||||
break;
|
||||
}
|
||||
|
||||
if( strcmp( optarg, "random" ) == 0 || strcmp( optarg, "prng" ) == 0
|
||||
|| strcmp( optarg, "stream" ) == 0 )
|
||||
{
|
||||
nwipe_options.method = &nwipe_random;
|
||||
break;
|
||||
}
|
||||
|
||||
if( strcmp( optarg, "zero" ) == 0 || strcmp( optarg, "quick" ) == 0 )
|
||||
{
|
||||
nwipe_options.method = &nwipe_zero;
|
||||
break;
|
||||
}
|
||||
|
||||
if( strcmp( optarg, "verify" ) == 0 )
|
||||
{
|
||||
nwipe_options.method = &nwipe_verify;
|
||||
break;
|
||||
}
|
||||
|
||||
if( strcmp( optarg, "is5enh" ) == 0 )
|
||||
{
|
||||
nwipe_options.method = &nwipe_is5enh;
|
||||
break;
|
||||
}
|
||||
|
||||
/* Else we do not know this wipe method. */
|
||||
fprintf( stderr, "Error: Unknown wipe method '%s'.\n", optarg );
|
||||
exit( EINVAL );
|
||||
|
||||
case 'l': /* Log file option. */
|
||||
|
||||
nwipe_options.logfile[strlen( optarg )] = '\0';
|
||||
strncpy( nwipe_options.logfile, optarg, sizeof( nwipe_options.logfile ) );
|
||||
break;
|
||||
|
||||
case 'e': /* exclude drives option */
|
||||
|
||||
idx_drive_chr = 0;
|
||||
idx_optarg = 0;
|
||||
idx_drive = 0;
|
||||
|
||||
/* Create an array of excluded drives from the comma separated string */
|
||||
while( optarg[idx_optarg] != 0 && idx_drive < MAX_NUMBER_EXCLUDED_DRIVES )
|
||||
{
|
||||
/* drop the leading '=' character if used */
|
||||
if( optarg[idx_optarg] == '=' && idx_optarg == 0 )
|
||||
{
|
||||
idx_optarg++;
|
||||
continue;
|
||||
}
|
||||
|
||||
if( optarg[idx_optarg] == ',' )
|
||||
{
|
||||
/* terminate string and move onto next drive */
|
||||
nwipe_options.exclude[idx_drive++][idx_drive_chr] = 0;
|
||||
idx_drive_chr = 0;
|
||||
idx_optarg++;
|
||||
} else
|
||||
{
|
||||
if( idx_drive_chr < MAX_DRIVE_PATH_LENGTH )
|
||||
{
|
||||
nwipe_options.exclude[idx_drive][idx_drive_chr++] =
|
||||
optarg[idx_optarg++];
|
||||
} else
|
||||
{ /* This section deals with file names that exceed
|
||||
MAX_DRIVE_PATH_LENGTH */
|
||||
nwipe_options.exclude[idx_drive][idx_drive_chr] = 0;
|
||||
while( optarg[idx_optarg] != 0 && optarg[idx_optarg] != ',' )
|
||||
{
|
||||
idx_optarg++;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
case 'h': /* Display help. */
|
||||
|
||||
display_help();
|
||||
break;
|
||||
|
||||
case 'p': /* PRNG option. */
|
||||
|
||||
if( strcmp( optarg, "mersenne" ) == 0 || strcmp( optarg, "twister" ) == 0 )
|
||||
{
|
||||
nwipe_options.prng = &nwipe_twister;
|
||||
break;
|
||||
}
|
||||
|
||||
if( strcmp( optarg, "isaac" ) == 0 )
|
||||
{
|
||||
nwipe_options.prng = &nwipe_isaac;
|
||||
break;
|
||||
}
|
||||
|
||||
/* Else we do not know this PRNG. */
|
||||
fprintf( stderr, "Error: Unknown prng '%s'.\n", optarg );
|
||||
exit( EINVAL );
|
||||
|
||||
case 'r': /* Rounds option. */
|
||||
|
||||
if( sscanf( optarg, " %i", &nwipe_options.rounds ) != 1 || nwipe_options.rounds < 1 )
|
||||
{
|
||||
fprintf( stderr, "Error: The rounds argument must be a positive integer.\n" );
|
||||
exit( EINVAL );
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
case 'V': /* Version option. */
|
||||
|
||||
printf( "%s version %s\n", program_name, version_string );
|
||||
exit( EXIT_SUCCESS );
|
||||
|
||||
default:
|
||||
|
||||
/* Bogus command line argument. */
|
||||
display_help();
|
||||
exit( EINVAL );
|
||||
|
||||
} /* method */
|
||||
|
||||
} /* command line options */
|
||||
|
||||
/* Return the number of options that were processed. */
|
||||
return optind;
|
||||
|
||||
} /* nwipe_options_parse */
|
||||
/* Excluded drive indexes */
|
||||
int idx_drive_chr;
|
||||
int idx_optarg;
|
||||
int idx_drive;
|
||||
|
||||
/* Array index variable. */
|
||||
int i;
|
||||
|
||||
/* The list of acceptable short options. */
|
||||
char nwipe_options_short[] = "Vhl:m:p:r:e:";
|
||||
|
||||
/* The list of acceptable long options. */
|
||||
static struct option nwipe_options_long[] = {
|
||||
/* Set when the user wants to wipe without a confirmation prompt. */
|
||||
{"autonuke", no_argument, 0, 0},
|
||||
|
||||
/* A GNU standard option. Corresponds to the 'h' short option. */
|
||||
{"help", no_argument, 0, 'h'},
|
||||
|
||||
/* The wipe method. Corresponds to the 'm' short option. */
|
||||
{"method", required_argument, 0, 'm'},
|
||||
|
||||
/* Log file. Corresponds to the 'l' short option. */
|
||||
{"logfile", required_argument, 0, 'l'},
|
||||
|
||||
/* Exclude devices, comma separated list */
|
||||
{"exclude", required_argument, 0, 'e'},
|
||||
|
||||
/* The Pseudo Random Number Generator. */
|
||||
{"prng", required_argument, 0, 'p'},
|
||||
|
||||
/* The number of times to run the method. */
|
||||
{"rounds", required_argument, 0, 'r'},
|
||||
|
||||
/* Whether to blank the disk after wiping. */
|
||||
{"noblank", no_argument, 0, 0},
|
||||
|
||||
/* Whether to exit after wiping or wait for a keypress. */
|
||||
{"nowait", no_argument, 0, 0},
|
||||
|
||||
/* Whether to allow signals to interrupt a wipe. */
|
||||
{"nosignals", no_argument, 0, 0},
|
||||
|
||||
/* Whether to exit after wiping or wait for a keypress. */
|
||||
{"nogui", no_argument, 0, 0},
|
||||
|
||||
/* A flag to indicate whether the devices whould be opened in sync mode. */
|
||||
{"sync", required_argument, 0, 0},
|
||||
|
||||
/* Verify that wipe patterns are being written to the device. */
|
||||
{"verify", required_argument, 0, 0},
|
||||
|
||||
/* Display program version. */
|
||||
{"version", no_argument, 0, 'V'},
|
||||
|
||||
/* Requisite padding for getopt(). */
|
||||
{0, 0, 0, 0}};
|
||||
|
||||
/* Set default options. */
|
||||
nwipe_options.autonuke = 0;
|
||||
nwipe_options.method = &nwipe_dodshort;
|
||||
nwipe_options.prng = &nwipe_twister;
|
||||
nwipe_options.rounds = 1;
|
||||
nwipe_options.noblank = 0;
|
||||
nwipe_options.nowait = 0;
|
||||
nwipe_options.nosignals = 0;
|
||||
nwipe_options.nogui = 0;
|
||||
nwipe_options.sync = 100000;
|
||||
nwipe_options.verify = NWIPE_VERIFY_LAST;
|
||||
memset( nwipe_options.logfile, '\0', sizeof( nwipe_options.logfile ) );
|
||||
|
||||
/* Initialise each of the strings in the excluded drives array */
|
||||
for( i = 0; i < MAX_NUMBER_EXCLUDED_DRIVES; i++ )
|
||||
{
|
||||
nwipe_options.exclude[i][0] = 0;
|
||||
}
|
||||
|
||||
/* Parse command line options. */
|
||||
while( 1 )
|
||||
{
|
||||
/* Get the next command line option with (3)getopt. */
|
||||
nwipe_opt = getopt_long( argc, argv, nwipe_options_short, nwipe_options_long, &i );
|
||||
|
||||
/* Break when we have processed all of the given options. */
|
||||
if( nwipe_opt < 0 )
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
||||
switch( nwipe_opt )
|
||||
{
|
||||
case 0: /* Long options without short counterparts. */
|
||||
|
||||
if( strcmp( nwipe_options_long[i].name, "autonuke" ) == 0 )
|
||||
{
|
||||
nwipe_options.autonuke = 1;
|
||||
break;
|
||||
}
|
||||
|
||||
if( strcmp( nwipe_options_long[i].name, "noblank" ) == 0 )
|
||||
{
|
||||
nwipe_options.noblank = 1;
|
||||
break;
|
||||
}
|
||||
|
||||
if( strcmp( nwipe_options_long[i].name, "nowait" ) == 0 )
|
||||
{
|
||||
nwipe_options.nowait = 1;
|
||||
break;
|
||||
}
|
||||
|
||||
if( strcmp( nwipe_options_long[i].name, "nosignals" ) == 0 )
|
||||
{
|
||||
nwipe_options.nosignals = 1;
|
||||
break;
|
||||
}
|
||||
|
||||
if( strcmp( nwipe_options_long[i].name, "nogui" ) == 0 )
|
||||
{
|
||||
nwipe_options.nogui = 1;
|
||||
nwipe_options.nowait = 1;
|
||||
break;
|
||||
}
|
||||
|
||||
if( strcmp( nwipe_options_long[i].name, "sync" ) == 0 )
|
||||
{
|
||||
if( sscanf( optarg, " %i", &nwipe_options.sync ) != 1 || nwipe_options.sync < 1 )
|
||||
{
|
||||
fprintf( stderr, "Error: The sync argument must be a positive integer.\n" );
|
||||
exit( EINVAL );
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
if( strcmp( nwipe_options_long[i].name, "verify" ) == 0 )
|
||||
{
|
||||
|
||||
if( strcmp( optarg, "0" ) == 0 || strcmp( optarg, "off" ) == 0 )
|
||||
{
|
||||
nwipe_options.verify = NWIPE_VERIFY_NONE;
|
||||
break;
|
||||
}
|
||||
|
||||
if( strcmp( optarg, "1" ) == 0 || strcmp( optarg, "last" ) == 0 )
|
||||
{
|
||||
nwipe_options.verify = NWIPE_VERIFY_LAST;
|
||||
break;
|
||||
}
|
||||
|
||||
if( strcmp( optarg, "2" ) == 0 || strcmp( optarg, "all" ) == 0 )
|
||||
{
|
||||
nwipe_options.verify = NWIPE_VERIFY_ALL;
|
||||
break;
|
||||
}
|
||||
|
||||
/* Else we do not know this verification level. */
|
||||
fprintf( stderr, "Error: Unknown verification level '%s'.\n", optarg );
|
||||
exit( EINVAL );
|
||||
}
|
||||
|
||||
/* getopt_long should raise on invalid option, so we should never get here. */
|
||||
exit( EINVAL );
|
||||
|
||||
case 'm': /* Method option. */
|
||||
|
||||
if( strcmp( optarg, "dod522022m" ) == 0 || strcmp( optarg, "dod" ) == 0 )
|
||||
{
|
||||
nwipe_options.method = &nwipe_dod522022m;
|
||||
break;
|
||||
}
|
||||
|
||||
if( strcmp( optarg, "dodshort" ) == 0 || strcmp( optarg, "dod3pass" ) == 0 )
|
||||
{
|
||||
nwipe_options.method = &nwipe_dodshort;
|
||||
break;
|
||||
}
|
||||
|
||||
if( strcmp( optarg, "gutmann" ) == 0 )
|
||||
{
|
||||
nwipe_options.method = &nwipe_gutmann;
|
||||
break;
|
||||
}
|
||||
|
||||
if( strcmp( optarg, "ops2" ) == 0 )
|
||||
{
|
||||
nwipe_options.method = &nwipe_ops2;
|
||||
break;
|
||||
}
|
||||
|
||||
if( strcmp( optarg, "random" ) == 0 || strcmp( optarg, "prng" ) == 0
|
||||
|| strcmp( optarg, "stream" ) == 0 )
|
||||
{
|
||||
nwipe_options.method = &nwipe_random;
|
||||
break;
|
||||
}
|
||||
|
||||
if( strcmp( optarg, "zero" ) == 0 || strcmp( optarg, "quick" ) == 0 )
|
||||
{
|
||||
nwipe_options.method = &nwipe_zero;
|
||||
break;
|
||||
}
|
||||
|
||||
if( strcmp( optarg, "verify" ) == 0 )
|
||||
{
|
||||
nwipe_options.method = &nwipe_verify;
|
||||
break;
|
||||
}
|
||||
|
||||
if( strcmp( optarg, "is5enh" ) == 0 )
|
||||
{
|
||||
nwipe_options.method = &nwipe_is5enh;
|
||||
break;
|
||||
}
|
||||
|
||||
/* Else we do not know this wipe method. */
|
||||
fprintf( stderr, "Error: Unknown wipe method '%s'.\n", optarg );
|
||||
exit( EINVAL );
|
||||
|
||||
case 'l': /* Log file option. */
|
||||
|
||||
nwipe_options.logfile[strlen( optarg )] = '\0';
|
||||
strncpy( nwipe_options.logfile, optarg, sizeof( nwipe_options.logfile ) );
|
||||
break;
|
||||
|
||||
case 'e': /* exclude drives option */
|
||||
|
||||
idx_drive_chr = 0;
|
||||
idx_optarg = 0;
|
||||
idx_drive = 0;
|
||||
|
||||
/* Create an array of excluded drives from the comma separated string */
|
||||
while( optarg[idx_optarg] != 0 && idx_drive < MAX_NUMBER_EXCLUDED_DRIVES )
|
||||
{
|
||||
/* drop the leading '=' character if used */
|
||||
if( optarg[idx_optarg] == '=' && idx_optarg == 0 )
|
||||
{
|
||||
idx_optarg++;
|
||||
continue;
|
||||
}
|
||||
|
||||
if( optarg[idx_optarg] == ',' )
|
||||
{
|
||||
/* terminate string and move onto next drive */
|
||||
nwipe_options.exclude[idx_drive++][idx_drive_chr] = 0;
|
||||
idx_drive_chr = 0;
|
||||
idx_optarg++;
|
||||
}
|
||||
else
|
||||
{
|
||||
if( idx_drive_chr < MAX_DRIVE_PATH_LENGTH )
|
||||
{
|
||||
nwipe_options.exclude[idx_drive][idx_drive_chr++] = optarg[idx_optarg++];
|
||||
}
|
||||
else
|
||||
{
|
||||
/* This section deals with file names that exceed MAX_DRIVE_PATH_LENGTH */
|
||||
nwipe_options.exclude[idx_drive][idx_drive_chr] = 0;
|
||||
while( optarg[idx_optarg] != 0 && optarg[idx_optarg] != ',' )
|
||||
{
|
||||
idx_optarg++;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
case 'h': /* Display help. */
|
||||
|
||||
display_help();
|
||||
break;
|
||||
|
||||
case 'p': /* PRNG option. */
|
||||
|
||||
if( strcmp( optarg, "mersenne" ) == 0 || strcmp( optarg, "twister" ) == 0 )
|
||||
{
|
||||
nwipe_options.prng = &nwipe_twister;
|
||||
break;
|
||||
}
|
||||
|
||||
if( strcmp( optarg, "isaac" ) == 0 )
|
||||
{
|
||||
nwipe_options.prng = &nwipe_isaac;
|
||||
break;
|
||||
}
|
||||
|
||||
/* Else we do not know this PRNG. */
|
||||
fprintf( stderr, "Error: Unknown prng '%s'.\n", optarg );
|
||||
exit( EINVAL );
|
||||
|
||||
case 'r': /* Rounds option. */
|
||||
|
||||
if( sscanf( optarg, " %i", &nwipe_options.rounds ) != 1 || nwipe_options.rounds < 1 )
|
||||
{
|
||||
fprintf( stderr, "Error: The rounds argument must be a positive integer.\n" );
|
||||
exit( EINVAL );
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
case 'V': /* Version option. */
|
||||
|
||||
printf( "%s version %s\n", program_name, version_string );
|
||||
exit( EXIT_SUCCESS );
|
||||
|
||||
default:
|
||||
|
||||
/* Bogus command line argument. */
|
||||
display_help();
|
||||
exit( EINVAL );
|
||||
|
||||
} /* method */
|
||||
|
||||
} /* command line options */
|
||||
|
||||
/* Return the number of options that were processed. */
|
||||
return optind;
|
||||
}
|
||||
|
||||
void nwipe_options_log( void )
|
||||
{
|
||||
/**
|
||||
* Prints a manifest of options to the log.
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* Prints a manifest of options to the log.
|
||||
*/
|
||||
|
||||
nwipe_log( NWIPE_LOG_NOTICE, "Program options are set as follows..." );
|
||||
nwipe_log( NWIPE_LOG_NOTICE, "Program options are set as follows..." );
|
||||
|
||||
if( nwipe_options.autonuke )
|
||||
{
|
||||
nwipe_log( NWIPE_LOG_NOTICE, " autonuke = %i (on)", nwipe_options.autonuke );
|
||||
}
|
||||
if( nwipe_options.autonuke )
|
||||
{
|
||||
nwipe_log( NWIPE_LOG_NOTICE, " autonuke = %i (on)", nwipe_options.autonuke );
|
||||
}
|
||||
else
|
||||
{
|
||||
nwipe_log( NWIPE_LOG_NOTICE, " autonuke = %i (off)", nwipe_options.autonuke );
|
||||
}
|
||||
|
||||
else
|
||||
{
|
||||
nwipe_log( NWIPE_LOG_NOTICE, " autonuke = %i (off)", nwipe_options.autonuke );
|
||||
}
|
||||
if( nwipe_options.noblank )
|
||||
{
|
||||
nwipe_log( NWIPE_LOG_NOTICE, " do not perform a final blank pass" );
|
||||
}
|
||||
|
||||
if( nwipe_options.noblank )
|
||||
{
|
||||
nwipe_log( NWIPE_LOG_NOTICE, " do not perform a final blank pass" );
|
||||
}
|
||||
if( nwipe_options.nowait )
|
||||
{
|
||||
nwipe_log( NWIPE_LOG_NOTICE, " do not wait for a key before exiting" );
|
||||
}
|
||||
|
||||
if( nwipe_options.nowait )
|
||||
{
|
||||
nwipe_log( NWIPE_LOG_NOTICE, " do not wait for a key before exiting" );
|
||||
}
|
||||
if( nwipe_options.nosignals )
|
||||
{
|
||||
nwipe_log( NWIPE_LOG_NOTICE, " do not allow signals to interrupt a wipe" );
|
||||
}
|
||||
|
||||
if( nwipe_options.nosignals )
|
||||
{
|
||||
nwipe_log( NWIPE_LOG_NOTICE, " do not allow signals to interrupt a wipe" );
|
||||
}
|
||||
if( nwipe_options.nogui )
|
||||
{
|
||||
nwipe_log( NWIPE_LOG_NOTICE, " do not show GUI interface" );
|
||||
}
|
||||
|
||||
if( nwipe_options.nogui )
|
||||
{
|
||||
nwipe_log( NWIPE_LOG_NOTICE, " do not show GUI interface" );
|
||||
}
|
||||
nwipe_log( NWIPE_LOG_NOTICE, " banner = %s", banner );
|
||||
nwipe_log( NWIPE_LOG_NOTICE, " method = %s", nwipe_method_label( nwipe_options.method ) );
|
||||
nwipe_log( NWIPE_LOG_NOTICE, " rounds = %i", nwipe_options.rounds );
|
||||
nwipe_log( NWIPE_LOG_NOTICE, " sync = %i", nwipe_options.sync );
|
||||
|
||||
nwipe_log( NWIPE_LOG_NOTICE, " banner = %s", banner );
|
||||
nwipe_log( NWIPE_LOG_NOTICE, " method = %s", nwipe_method_label( nwipe_options.method ) );
|
||||
nwipe_log( NWIPE_LOG_NOTICE, " rounds = %i", nwipe_options.rounds );
|
||||
nwipe_log( NWIPE_LOG_NOTICE, " sync = %i", nwipe_options.sync );
|
||||
switch( nwipe_options.verify )
|
||||
{
|
||||
case NWIPE_VERIFY_NONE:
|
||||
nwipe_log( NWIPE_LOG_NOTICE, " verify = %i (off)", nwipe_options.verify );
|
||||
break;
|
||||
|
||||
switch( nwipe_options.verify )
|
||||
{
|
||||
case NWIPE_VERIFY_NONE:
|
||||
nwipe_log( NWIPE_LOG_NOTICE, " verify = %i (off)", nwipe_options.verify );
|
||||
break;
|
||||
case NWIPE_VERIFY_LAST:
|
||||
nwipe_log( NWIPE_LOG_NOTICE, " verify = %i (last pass)", nwipe_options.verify );
|
||||
break;
|
||||
|
||||
case NWIPE_VERIFY_LAST:
|
||||
nwipe_log( NWIPE_LOG_NOTICE, " verify = %i (last pass)", nwipe_options.verify );
|
||||
break;
|
||||
case NWIPE_VERIFY_ALL:
|
||||
nwipe_log( NWIPE_LOG_NOTICE, " verify = %i (all passes)", nwipe_options.verify );
|
||||
break;
|
||||
|
||||
case NWIPE_VERIFY_ALL:
|
||||
nwipe_log( NWIPE_LOG_NOTICE, " verify = %i (all passes)", nwipe_options.verify );
|
||||
break;
|
||||
|
||||
default:
|
||||
nwipe_log( NWIPE_LOG_NOTICE, " verify = %i", nwipe_options.verify );
|
||||
break;
|
||||
}
|
||||
|
||||
} /* nwipe_options_log */
|
||||
|
||||
/**
|
||||
* display_help
|
||||
* displays the help section to STDOUT and exits
|
||||
*/
|
||||
void display_help()
|
||||
{
|
||||
printf("Usage: %s [options] [device1] [device2] ...\n", program_name);
|
||||
printf("Options:\n" );
|
||||
/* Limit line length to a maximum of 80 characters so it looks good in 80x25 terminals i.e shredos */
|
||||
/* ___12345678901234567890123456789012345678901234567890123456789012345678901234567890< Do not exceed */
|
||||
puts(" -V, --version Prints the version number\n");
|
||||
puts(" -h, --help Prints this help\n");
|
||||
puts(" --autonuke If no devices have been specified on the command line,");
|
||||
puts(" starts wiping all devices immediately. If devices have");
|
||||
puts(" been specified, starts wiping only those specified");
|
||||
puts(" devices immediately.\n");
|
||||
puts(" --sync=NUM Will perform a sync after NUM writes (default: 0)");
|
||||
puts(" 0 - fdatasync after the disk is completely written");
|
||||
puts(" 1 - fdatasync after every write");
|
||||
puts(" 1000000 - fdatasync after 1000000 writes ect.");
|
||||
puts(" --verify=TYPE Whether to perform verification of erasure");
|
||||
puts(" (default: last)");
|
||||
puts(" off - Do not verify");
|
||||
puts(" last - Verify after the last pass");
|
||||
puts(" all - Verify every pass\n");
|
||||
puts(" -m, --method=METHOD The wiping method. See man page for more details.");
|
||||
puts(" (default: dodshort)");
|
||||
puts(" dod522022m / dod - 7 pass DOD 5220.22-M method");
|
||||
puts(" dodshort / dod3pass - 3 pass DOD method");
|
||||
puts(" gutmann - Peter Gutmann's Algorithm");
|
||||
puts(" ops2 - RCMP TSSIT OPS-II");
|
||||
puts(" random / prng / stream - PRNG Stream");
|
||||
puts(" zero / quick - Overwrite with zeros");
|
||||
puts(" verify - Verifies disk is zero filled\n");
|
||||
puts(" -l, --logfile=FILE Filename to log to. Default is STDOUT\n");
|
||||
puts(" -p, --prng=METHOD PRNG option (mersenne|twister|isaac)\n");
|
||||
puts(" -r, --rounds=NUM Number of times to wipe the device using the selected");
|
||||
puts(" method (default: 1)\n" );
|
||||
puts(" --noblank Do not blank disk after wipe");
|
||||
puts(" (default is to complete a final blank pass)\n" );
|
||||
puts(" --nowait Do not wait for a key before exiting");
|
||||
puts(" (default is to wait)\n" );
|
||||
puts(" --nosignals Do not allow signals to interrupt a wipe");
|
||||
puts(" (default is to allow)\n" );
|
||||
puts(" --nogui Do not show the GUI interface. Automatically invokes" );
|
||||
puts(" the nowait option. Must be used with the --autonuke");
|
||||
puts(" option. Send SIGUSR1 to log current stats\n");
|
||||
puts(" -e, --exclude=DEVICES Up to ten comma separated devices to be excluded");
|
||||
puts(" --exclude=/dev/sdc");
|
||||
puts(" --exclude=/dev/sdc,/dev/sdd");
|
||||
puts(" --exclude=/dev/sdc,/dev/sdd,/dev/mapper/cryptswap1\n");
|
||||
puts("");
|
||||
exit( EXIT_SUCCESS );
|
||||
default:
|
||||
nwipe_log( NWIPE_LOG_NOTICE, " verify = %i", nwipe_options.verify );
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
/* eof */
|
||||
void display_help()
|
||||
{
|
||||
/**
|
||||
* displays the help section to STDOUT and exits.
|
||||
*/
|
||||
|
||||
printf( "Usage: %s [options] [device1] [device2] ...\n", program_name );
|
||||
printf( "Options:\n" );
|
||||
/* Limit line length to a maximum of 80 characters so it looks good in 80x25 terminals i.e shredos */
|
||||
/* ___12345678901234567890123456789012345678901234567890123456789012345678901234567890< Do not exceed */
|
||||
puts( " -V, --version Prints the version number\n" );
|
||||
puts( " -h, --help Prints this help\n" );
|
||||
puts( " --autonuke If no devices have been specified on the command line," );
|
||||
puts( " starts wiping all devices immediately. If devices have" );
|
||||
puts( " been specified, starts wiping only those specified" );
|
||||
puts( " devices immediately.\n" );
|
||||
puts( " --sync=NUM Will perform a sync after NUM writes (default: 0)" );
|
||||
puts( " 0 - fdatasync after the disk is completely written" );
|
||||
puts( " 1 - fdatasync after every write" );
|
||||
puts( " 1000000 - fdatasync after 1000000 writes ect." );
|
||||
puts( " --verify=TYPE Whether to perform verification of erasure" );
|
||||
puts( " (default: last)" );
|
||||
puts( " off - Do not verify" );
|
||||
puts( " last - Verify after the last pass" );
|
||||
puts( " all - Verify every pass\n" );
|
||||
puts( " -m, --method=METHOD The wiping method. See man page for more details." );
|
||||
puts( " (default: dodshort)" );
|
||||
puts( " dod522022m / dod - 7 pass DOD 5220.22-M method" );
|
||||
puts( " dodshort / dod3pass - 3 pass DOD method" );
|
||||
puts( " gutmann - Peter Gutmann's Algorithm" );
|
||||
puts( " ops2 - RCMP TSSIT OPS-II" );
|
||||
puts( " random / prng / stream - PRNG Stream" );
|
||||
puts( " zero / quick - Overwrite with zeros" );
|
||||
puts( " verify - Verifies disk is zero filled\n" );
|
||||
puts( " -l, --logfile=FILE Filename to log to. Default is STDOUT\n" );
|
||||
puts( " -p, --prng=METHOD PRNG option (mersenne|twister|isaac)\n" );
|
||||
puts( " -r, --rounds=NUM Number of times to wipe the device using the selected" );
|
||||
puts( " method (default: 1)\n" );
|
||||
puts( " --noblank Do not blank disk after wipe" );
|
||||
puts( " (default is to complete a final blank pass)\n" );
|
||||
puts( " --nowait Do not wait for a key before exiting" );
|
||||
puts( " (default is to wait)\n" );
|
||||
puts( " --nosignals Do not allow signals to interrupt a wipe" );
|
||||
puts( " (default is to allow)\n" );
|
||||
puts( " --nogui Do not show the GUI interface. Automatically invokes" );
|
||||
puts( " the nowait option. Must be used with the --autonuke" );
|
||||
puts( " option. Send SIGUSR1 to log current stats\n" );
|
||||
puts( " -e, --exclude=DEVICES Up to ten comma separated devices to be excluded" );
|
||||
puts( " --exclude=/dev/sdc" );
|
||||
puts( " --exclude=/dev/sdc,/dev/sdd" );
|
||||
puts( " --exclude=/dev/sdc,/dev/sdd,/dev/mapper/cryptswap1\n" );
|
||||
puts( "" );
|
||||
exit( EXIT_SUCCESS );
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
* options.h: Command line processing routines for nwipe.
|
||||
*
|
||||
* Copyright Darik Horn <dajhorn-dban@vanadac.com>.
|
||||
*
|
||||
*
|
||||
* Modifications to original dwipe Copyright Andy Beverley <andy@andybev.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it under
|
||||
@@ -16,28 +16,27 @@
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along with
|
||||
* this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#ifndef OPTIONS_H_
|
||||
#define OPTIONS_H_
|
||||
|
||||
/* Program knobs. */
|
||||
#define NWIPE_KNOB_ENTROPY "/dev/urandom"
|
||||
#define NWIPE_KNOB_IDENTITY_SIZE 512
|
||||
#define NWIPE_KNOB_LABEL_SIZE 128
|
||||
#define NWIPE_KNOB_LOADAVG "/proc/loadavg"
|
||||
#define NWIPE_KNOB_LOG_BUFFERSIZE 1024 /* Maximum length of a log event. */
|
||||
#define NWIPE_KNOB_PARTITIONS "/proc/partitions"
|
||||
#define NWIPE_KNOB_PARTITIONS_PREFIX "/dev/"
|
||||
#define NWIPE_KNOB_PRNG_STATE_LENGTH 512 /* 128 words */
|
||||
#define NWIPE_KNOB_SCSI "/proc/scsi/scsi"
|
||||
#define NWIPE_KNOB_SLEEP 1
|
||||
#define NWIPE_KNOB_STAT "/proc/stat"
|
||||
#define MAX_NUMBER_EXCLUDED_DRIVES 10
|
||||
#define MAX_DRIVE_PATH_LENGTH 200 /* e.g. /dev/sda is only 8 characters long, so 200 should be plenty*/
|
||||
#define NWIPE_KNOB_ENTROPY "/dev/urandom"
|
||||
#define NWIPE_KNOB_IDENTITY_SIZE 512
|
||||
#define NWIPE_KNOB_LABEL_SIZE 128
|
||||
#define NWIPE_KNOB_LOADAVG "/proc/loadavg"
|
||||
#define NWIPE_KNOB_LOG_BUFFERSIZE 1024 // Maximum length of a log event.
|
||||
#define NWIPE_KNOB_PARTITIONS "/proc/partitions"
|
||||
#define NWIPE_KNOB_PARTITIONS_PREFIX "/dev/"
|
||||
#define NWIPE_KNOB_PRNG_STATE_LENGTH 512 // 128 words
|
||||
#define NWIPE_KNOB_SCSI "/proc/scsi/scsi"
|
||||
#define NWIPE_KNOB_SLEEP 1
|
||||
#define NWIPE_KNOB_STAT "/proc/stat"
|
||||
#define MAX_NUMBER_EXCLUDED_DRIVES 10
|
||||
#define MAX_DRIVE_PATH_LENGTH 200 // e.g. /dev/sda is only 8 characters long, so 200 should be plenty.
|
||||
|
||||
/* Function prototypes for loading options from the environment and command line. */
|
||||
int nwipe_options_parse( int argc, char** argv );
|
||||
@@ -46,26 +45,23 @@ void nwipe_options_log( void );
|
||||
/* Function to display help text */
|
||||
void display_help();
|
||||
|
||||
typedef struct /* nwipe_options_t */
|
||||
typedef struct
|
||||
{
|
||||
int autonuke; /* Do not prompt the user for confirmation when set. */
|
||||
int noblank; /* Do not perform a final blanking pass. */
|
||||
int nowait; /* Do not wait for a final key before exiting. */
|
||||
int nosignals; /* Do not allow signals to interrupt a wipe. */
|
||||
int nogui ; /* Do not show the GUI. */
|
||||
char* banner; /* The product banner shown on the top line of the screen. */
|
||||
// nwipe_method_t method; /* A function pointer to the wipe method that will be used. */
|
||||
void* method; /* A function pointer to the wipe method that will be used. */
|
||||
char logfile[FILENAME_MAX]; /* The filename to log the output to */
|
||||
char exclude[MAX_NUMBER_EXCLUDED_DRIVES][MAX_DRIVE_PATH_LENGTH]; /* Drives excluded from the search */
|
||||
nwipe_prng_t* prng; /* The pseudo random number generator implementation. */
|
||||
int rounds; /* The number of times that the wipe method should be called. */
|
||||
int sync; /* A flag to indicate whether and how often writes should be sync'd. */
|
||||
nwipe_verify_t verify; /* A flag to indicate whether writes should be verified. */
|
||||
int autonuke; // Do not prompt the user for confirmation when set.
|
||||
int noblank; // Do not perform a final blanking pass.
|
||||
int nowait; // Do not wait for a final key before exiting.
|
||||
int nosignals; // Do not allow signals to interrupt a wipe.
|
||||
int nogui; // Do not show the GUI.
|
||||
char* banner; // The product banner shown on the top line of the screen.
|
||||
void* method; // A function pointer to the wipe method that will be used.
|
||||
char logfile[FILENAME_MAX]; // The filename to log the output to.
|
||||
char exclude[MAX_NUMBER_EXCLUDED_DRIVES][MAX_DRIVE_PATH_LENGTH]; // Drives excluded from the search.
|
||||
nwipe_prng_t* prng; // The pseudo random number generator implementation.
|
||||
int rounds; // The number of times that the wipe method should be called.
|
||||
int sync; // A flag to indicate whether and how often writes should be sync'd.
|
||||
nwipe_verify_t verify; // A flag to indicate whether writes should be verified.
|
||||
} nwipe_options_t;
|
||||
|
||||
extern nwipe_options_t nwipe_options;
|
||||
|
||||
#endif /* OPTIONS_H_ */
|
||||
|
||||
/* eof */
|
||||
|
||||
Reference in New Issue
Block a user