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 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 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 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
|
#!/usr/bin/perl -w
# Create portable tree out of PP package.
# Author : Johan Vromans
# Created On : Mon Apr 27 15:13:18 2020
# Last Modified By: Johan Vromans
# Last Modified On: Wed Apr 29 20:33:01 2020
# Update Count : 37
# Status : Unknown, Use with caution!
################ Common stuff ################
use strict;
use warnings;
# Package name.
my $my_package = 'Sciurix';
# Program name and version.
my ($my_name, $my_version) = qw( pp2ppl 0.01 );
################ Command line parameters ################
use Getopt::Long 2.13;
# Command line options.
my $dest; # dest dir
my $verbose = 1; # verbose processing
# Development options (not shown with -help).
my $debug = 0; # debugging
my $trace = 0; # trace (show process)
my $test = 0; # test mode.
# Process command line options.
app_options();
# Post-processing.
$trace |= ($debug || $test);
################ Presets ################
my $TMPDIR = $ENV{TMPDIR} || $ENV{TEMP} || '/usr/tmp';
################ The Process ################
# 1. extract embedded files to $dest/lib
# 2. process as ZIP:
# - extract lib/ to $dest/lib
# - extract shlib/ to $dest
# - extract rest as is
use File::Spec::Functions;
use File::Basename;
use File::Path;
use Archive::Zip qw( :ERROR_CODES :CONSTANTS );
my $exe = shift;
mkpath( $dest );
extract_embedded( $exe, catdir( $dest, "lib" ) );
extract_zip( $exe, $dest );
################ Subroutines ################
sub extract_zip {
my ($exe, $extract) = @_;
my $zip = Archive::Zip->new;
unless ( $zip->read($exe) == AZ_OK ) {
die("$exe [zip] open error\n");
}
foreach my $member ( $zip->members ) {
next if $member->isDirectory;
# Get file name.
my $x = $member->fileName;
# shlibs to root.
$x =~ s;^shlib/.*?([^/]+)$;$1;;
if ( $verbose ) {
my $skip = -f catfile( $dest, $x );
print STDERR ( $skip ? "Skipping \"" : "Extracting \"",
$member->fileName);
print STDERR ("\" to \"$x") unless $x eq $member->fileName;
print STDERR ("\"\n");
next if $skip;
}
$zip->extractMember( $member, catfile( $dest, $x ) ) == AZ_OK
or die("Zip extract $x error\n");
}
}
sub extract_embedded {
# Code stolen from extract_embedded.pl, which is code stolen from
# one of Roderich Schupp's mails to the PAR mailing list. He
# attributes this to: code stolen from PAR script/parl.pl.
my ( $exe, $extract ) = @_;
open( my $fh, '<:raw', $exe) or die("$exe: $!\n");
# Search for the "\nPAR.pm\n" signature backward from the end of the file.
my $buf;
my $size = -s $exe;
my $offset = 512;
my $idx = -1;
while ( 1 ) {
$offset = $size if $offset > $size;
seek( $fh, -$offset, 2 ) or die("$exe: Seek failed: $!\n");
my $nread = read( $fh, $buf, $offset );
die("$exe: Read failed: $!\n") unless $nread == $offset;
$idx = rindex( $buf, "\nPAR.pm\n" );
last if $idx >= 0 || $offset == $size || $offset > 128 * 1024;
$offset *= 2;
}
die("$exe: No PAR signature found\n") unless $idx >= 0;
# Seek 4 bytes backward from the signature to get the offset
# of the first embedded FILE, then seek to it.
$offset -= $idx - 4;
seek( $fh, -$offset, 2 );
read( $fh, $buf, 4 );
seek( $fh, -$offset - unpack("N", $buf), 2 );
printf STDERR ( "$exe: Embedded files start at offset %d\n",
$exe, tell($fh) ) if $trace;
read( $fh, $buf, 4 );
while ( $buf eq "FILE" ) {
read( $fh, $buf, 4 );
read( $fh, $buf, unpack("N", $buf) );
( my $fullname = $buf ) =~ s|^([a-f\d]{8})/||; # strip CRC
read( $fh, $buf, 4 );
read( $fh, $buf, unpack("N", $buf) );
my $file = catdir( $extract, split(/\//, $fullname) );
if ( -f $file ) {
warn("Skipping: \"$fullname\"\n") if $verbose;
next;
}
my $dir = dirname($file);
unless ( -d $dir ) {
# print STDERR "Creating directory $dir...\n";
mkpath($dir);
}
print STDERR ("Extracting \"$file\"\n" ) if $verbose;
open( my $out, '>:raw', $file )
or die("Error creating \"$file\": $!\n");
print $out $buf;
close($out)
or die("Error closing \"$file\": $!\n");
}
continue {
read( $fh, $buf, 4 );
}
close $fh;
}
################ Subroutines ################
sub app_options {
my $help = 0; # handled locally
my $ident = 0; # handled locally
my $man = 0; # handled locally
my $pod2usage = sub {
# Load Pod::Usage only if needed.
require Pod::Usage;
Pod::Usage->import;
&pod2usage;
};
# Process options.
if ( @ARGV > 0 ) {
GetOptions( 'dest=s' => \$dest,
'ident' => \$ident,
'verbose+' => \$verbose,
'quiet' => sub { $verbose = 0 },
'trace' => \$trace,
'help|?' => \$help,
'man' => \$man,
'debug' => \$debug)
or $pod2usage->(2);
}
if ( $ident or $help or $man ) {
print STDERR ("This is $my_package [$my_name $my_version]\n");
}
if ( $man or $help ) {
$pod2usage->(1) if $help;
$pod2usage->(VERBOSE => 2) if $man;
}
unless ( $dest && @ARGV == 1 ) {
$pod2usage->(2);
}
}
__END__
################ Documentation ################
=head1 NAME
sample - skeleton for GetOpt::Long and Pod::Usage
=head1 SYNOPSIS
sample [options] [file ...]
Options:
--ident shows identification
--help shows a brief help message and exits
--man shows full documentation and exits
--verbose provides more verbose information
--quiet runs as silently as possible
=head1 OPTIONS
=over 8
=item B<--help>
Prints a brief help message and exits.
=item B<--man>
Prints the manual page and exits.
=item B<--ident>
Prints program identification.
=item B<--verbose>
Provides more verbose information.
This option may be repeated to increase verbosity.
=item B<--quiet>
Suppresses all non-essential information.
=item I<file>
The input file(s) to process, if any.
=back
=head1 DESCRIPTION
B<This program> will read the given input file(s) and do someting
useful with the contents thereof.
=cut
|