1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
#!/usr/bin/perl -w
#
# 2007 Frank Haverkamp <haver@vnet.ibm.com>
#
# Program for bit-error injection. I am sure that perl experts do it
# in 1 line. Please let me know how it is done right ;-).
#
use strict;
use warnings;
use Getopt::Long;
use Pod::Usage;
my $i;
my $help;
my $result;
my $offset = 0;
my $bitmask = 0x01;
my $in = "input.mif";
my $out = "output.mif";
$result = GetOptions ("offset=i" => \$offset, # numeric
"bitmask=o" => \$bitmask, # numeric
"input=s" => \$in, # string
"output=s" => \$out, # string
"help|?" => \$help) or pod2usage(2);
pod2usage(1) if $help;
my $buf;
open(my $in_fh, "<", $in)
or die "Cannot open file $in: $!";
binmode $in_fh;
open(my $out_fh, ">", $out) or
die "Cannot open file $out: $!";
binmode $out_fh;
$i = 0;
while (sysread($in_fh, $buf, 1)) {
$buf = pack('C', unpack('C', $buf) ^ $bitmask) if ($i == $offset);
syswrite($out_fh, $buf, 1) or
die "Cannot write to offset $offset: $!";
$i++;
}
close $in_fh;
close $out_fh;
__END__
=head1 NAME
inject_biterrors.pl
=head1 SYNOPSIS
inject_biterror.pl [options]
=head1 OPTIONS
=over 8
=item B<--help>
Print a brief help message and exits.
=item B<--offset>=I<offset>
Byte-offset where bit-error should be injected.
=item B<--bitmask>=I<bitmask>
Bit-mask where to inject errors in the byte.
=item B<--input>=I<input-file>
Input file.
=item B<--output>=I<output-file>
Output file.
=back
=head1 DESCRIPTION
B<inject_biterrors.pl> will read the given input file and inject
biterrors at the I<offset> specified. The location of the biterrors
are defined by the I<bitmask> parameter.
=cut
|