This file is indexed.

/usr/bin/chdist is in devscripts 2.11.6ubuntu1.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

  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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
#!/usr/bin/perl

# Debian GNU/Linux chdist.  Copyright (C) 2007 Lucas Nussbaum and Luk Claes.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

=head1 NAME

chdist - script to easily play with several distributions

=head1 SYNOPSIS

B<chdist> [I<options>] [I<command>] [I<command parameters>]

=head1 DESCRIPTION

B<chdist> is a rewrite of what used to be known as 'MultiDistroTools'
(or mdt). Its use is to create 'APT trees' for several distributions,
making it easy to query the status of packages in other distribution
without using chroots, for instance.

=head1 OPTIONS

=over 4

=item B<-h>, B<--help>

Provide a usage message.

=item B<-d>, B<--data-dir> I<DIR>

Choose data directory (default: F<$HOME/.chdist/>).

=item B<-a>, B<--arch> I<ARCH>

Choose architecture (default: `B<dpkg --print-architecture>`).

=item B<--version>

Display version information.

=back

=head1 COMMANDS

=over 4

=item B<create> I<DIST> [I<URL> I<RELEASE> I<SECTIONS>]

Prepare a new tree named I<DIST>

=item B<apt-get> I<DIST> <B<update>|B<source>|...>

Run B<apt-get> inside I<DIST>

=item B<apt-cache> I<DIST> <B<show>|B<showsrc>|...>

Run B<apt-cache> inside I<DIST>

=item B<apt-rdepends> I<DIST> [...]

Run B<apt-rdepends> inside I<DIST>

=item B<src2bin> I<DIST SRCPKG>

List binary packages for I<SRCPKG> in I<DIST>

=item B<bin2src> I<DIST BINPKG>

List source package for I<BINPKG> in I<DIST>

=item B<compare-packages> I<DIST1 DIST2> [I<DIST3>, ...]

=item B<compare-bin-packages> I<DIST1 DIST2> [I<DIST3>, ...]

List versions of packages in several I<DIST>ributions

=item B<compare-versions> I<DIST1 DIST2>

=item B<compare-bin-versions> I<DIST1 DIST2>

Same as B<compare-packages>/B<compare-bin-packages>, but also runs
B<dpkg --compare-versions> and display where the package is newer.

=item B<compare-src-bin-packages> I<DIST>

Compare sources and binaries for I<DIST>

=item B<compare-src-bin-versions> I<DIST>

Same as B<compare-src-bin-packages>, but also run B<dpkg --compare-versions>
and display where the package is newer

=item B<grep-dctrl-packages> I<DIST> [...]

Run B<grep-dctrl> on F<*_Packages> inside I<DIST>

=item B<grep-dctrl-sources> I<DIST> [...]

Run B<grep-dctrl> on F<*_Sources> inside I<DIST>

=item B<list>

List available I<DIST>s

=back

=head1 COPYRIGHT

This program is copyright 2007 by Lucas Nussbaum and Luk Claes. This
program comes with ABSOLUTELY NO WARRANTY.

It is licensed under the terms of the GPL, either version 2 of the
License, or (at your option) any later version.

=cut

use strict;
use warnings;
use feature 'switch';
use File::Copy qw(cp);
use File::Path qw(make_path);
use File::Basename;
use Getopt::Long qw(:config gnu_compat bundling require_order);
use Cwd qw(abs_path cwd);
use Dpkg::Version;
use Pod::Usage;

# Redefine Pod::Text's cmd_i so pod2usage converts I<...> to <...> instead of
# *...*
{
    package Pod::Text;
    no warnings qw(redefine);

    sub cmd_i { '<'. $_[2] . '>' }
}

my $progname = basename($0);

sub usage {
    pod2usage(-verbose => 99,
	      -exitval => $_[0],
	      -sections => 'SYNOPSIS|OPTIONS|ARGUMENTS|COMMANDS');
}

# specify the options we accept and initialize
# the option parser
my $help     = '';

my $version = '';
my $versioninfo = <<"EOF";
This is $progname, from the Debian devscripts package, version
2.11.6ubuntu1 This code is copyright 2007 by Lucas Nussbaum and Luk
Claes. This program comes with ABSOLUTELY NO WARRANTY. You are free
to redistribute this code under the terms of the GNU General Public
License, version 2 or (at your option) any later version.
EOF

my $arch;
my $datadir = $ENV{'HOME'} . '/.chdist';

GetOptions(
  "help"       => \$help,
  "data-dir=s" => \$datadir,
  "arch=s"     => \$arch,
  "version"    => \$version,
);

# Fix-up relative paths
$datadir = cwd() . "/$datadir" if $datadir !~ m!^/!;
$datadir = abs_path($datadir);

if ($help) {
    usage(0);
}

if ($version) {
    print $versioninfo;
    exit 0;
}


########################################################
### Functions
########################################################

sub fatal
{
    my ($msg) = @_;
    print STDERR "$progname: $msg";
    exit 1;
}

sub uniq (@) {
    my %hash;
    map { $hash{$_}++ == 0 ? $_ : () } @_;
}

sub dist_check {
    # Check that dist exists in $datadir
    my ($dist) = @_;
    if ($dist) {
	my $dir = "$datadir/$dist";
	return 0 if (-d $dir);
	fatal("Could not find $dist in $datadir. Run `$progname create $dist` first.");
    }
    else {
	fatal('No dist provided.');
    }
}

sub type_check {
    my ($type) = @_;
    if (($type ne 'Sources') && ($type ne 'Packages')) {
	fatal("Unknown type $type.");
    }
}

sub aptopts
{
    # Build apt options
    my ($dist) = @_;
    my @opts = ();
    if ($arch) {
	print "W: Forcing arch $arch for this command only.\n";
	push(@opts, '-o', "Apt::Architecture=$arch");
    }
    return @opts;
}

sub aptconfig
{
    # Build APT_CONFIG override
    my ($dist) = @_;
    my $aptconf = "$datadir/$dist/etc/apt/apt.conf";
    if (! -r $aptconf) {
	fatal("Unable to read $aptconf");
    }
    $ENV{'APT_CONFIG'} = $aptconf;
}

###

sub aptcmd
{
    my ($cmd, $dist, @args) = @_;
    dist_check($dist);
    unshift(@args, aptopts($dist));
    aptconfig($dist);
    exec($cmd, @args);
}

sub bin2src
{
    my ($dist, $pkg) = @_;
    dist_check($dist);
    if (!defined($pkg)) {
	fatal("No package name provided. Exiting.");
    }
    my @args = (aptopts($dist), 'show', $pkg);
    aptconfig($dist);
    my $src = $pkg;
    my $pid = open(CACHE, '-|', 'apt-cache', @args);
    if (!defined($pid)) {
	fatal("Couldn't run apt-cache: $!");
    }
    if ($pid) {
	while (<CACHE>) {
	    if (m/^Source: (.*)/) {
		$src = $1;
		last;
	    }
	}
	close CACHE || fatal("bad apt-cache $!: $?");
	print "$src\n";
    }
}

sub src2bin {
    my ($dist, $pkg) = @_;
    dist_check($dist);
    if (!defined($pkg)) {
	fatal("no package name provided. Exiting.");
    }
    my @args = (aptopts($dist), 'showsrc', $pkg);
    my $pid = open(CACHE, '-|', 'apt-cache', @args);
    if (!defined($pid)) {
	fatal("Couldn't run apt-cache: $!");
    }
    if ($pid) {
	while (<CACHE>) {
	    if (m/^Binary: (.*)/) {
		print join("\n", split(/, /, $1)) . "\n";
		last;
	    }
	}
	close CACHE || fatal("bad apt-cache $!: $?");
    }
}

sub dist_create
{
    my ($dist, $method, $version, @sections) = @_;
    if (!defined($dist)) {
	fatal("you must provide a dist name.");
    }
    my $dir = "$datadir/$dist";
    if (-d $dir) {
	fatal("$dir already exists, exiting.");
    }
    make_path($datadir);
    foreach my $d (('/etc/apt', '/etc/apt/apt.conf.d', '/etc/apt/preferences.d',
		    '/etc/apt/trusted.gpg.d', '/var/lib/apt/lists/partial',
		    '/var/cache/apt/archives/partial', '/var/lib/dpkg')) {
	make_path("$dir/$d");
    }

    # Create sources.list
    open(FH, '>', "$dir/etc/apt/sources.list");
    if ($version) {
	# Use provided method, version and sections
	my $sections_str = join(' ', @sections);
	print FH <<EOF;
deb $method $version $sections_str
deb-src $method $version $sections_str
EOF
    }
    else {
	if ($method) {
	    warn "W: method provided without a section. Using default content for sources.list\n";
	}
	# Fill in sources.list with example contents
	print FH <<EOF;
#deb http://ftp.debian.org/debian/ unstable main contrib non-free
#deb-src http://ftp.debian.org/debian/ unstable main contrib non-free

#deb http://archive.ubuntu.com/ubuntu dapper main restricted
#deb http://archive.ubuntu.com/ubuntu dapper universe multiverse
#deb-src http://archive.ubuntu.com/ubuntu dapper main restricted
#deb-src http://archive.ubuntu.com/ubuntu dapper universe multiverse
EOF
    }
    close FH;
    # Create dpkg status
    open(FH, '>', "$dir/var/lib/dpkg/status");
    close FH; #empty file
    # Create apt.conf
    $arch ||= `dpkg --print-architecture`;
    chomp $arch;
    open(FH, ">$dir/etc/apt/apt.conf");
    print FH <<EOF;
Apt {
   Architecture "$arch";
};

Dir "$dir";
Dir::State::status "$dir/var/lib/dpkg/status";
EOF
    close FH;
    foreach my $keyring (qw(debian-archive-keyring.gpg
			    debian-archive-removed-keys.gpg
			    ubuntu-archive-keyring.gpg
			    ubuntu-archive-removed-keys.gpg)) {
	cp("/usr/share/keyrings/$keyring", "$dir/etc/apt/trusted.gpg.d/");
    }
    print "Now edit $dir/etc/apt/sources.list\n" unless $version;
    print "Run chdist apt-get $dist update\n";
    print "And enjoy.\n";
}



sub get_distfiles {
  # Retrieve files to be read
  # Takes a dist and a type
  my ($dist, $type) = @_;

  my @files;

  foreach my $file ( glob($datadir . '/' . $dist . "/var/lib/apt/lists/*_$type") ) {
     if ( -f $file ) {
        push @files, $file;
     }
  }

  return \@files;
}


sub dist_compare(\@$$) {
  # Takes a list of dists, a type of comparison and a do_compare flag
  my ($dists, $do_compare, $type) = @_;
  type_check($type);

  # Get the list of dists from the referrence
  my @dists = @$dists;
  map { dist_check($_) } @dists;

  # Get all packages
  my %packages;

  foreach my $dist (@dists) {
     my $files = get_distfiles($dist,$type);
     my @files = @$files;
     foreach my $file ( @files ) {
        my $parsed_file = parseFile($file);
        foreach my $package ( keys(%{$parsed_file}) ) {
           if ( $packages{$dist}{$package} ) {
              warn "W: Package $package is already listed for $dist. Not overriding.\n";
           } else {
              $packages{$dist}{$package} = $parsed_file->{$package};
           }
        }
     }
  }

  # Get entire list of packages
  my @all_packages = uniq sort ( map { keys(%{$packages{$_}}) } @dists );

  foreach my $package (@all_packages) {
     my $line = "$package ";
     my $status = "";
     my $details;

     foreach my $dist (@dists) {
        if ( $packages{$dist}{$package} ) {
           $line .= "$packages{$dist}{$package}{'Version'} ";
        } else {
           $line .= "UNAVAIL ";
           $status = "not_in_$dist";
        }
     }

     my @versions = map { $packages{$_}{$package}{'Version'} } @dists;
     # Escaped versions
     my @esc_vers = @versions;
     foreach my $vers (@esc_vers) {
        $vers =~ s|\+|\\\+|;
     }

     # Do compare
     if ($do_compare) {
        if (!@dists) {
           fatal('Can only compare versions if there are two distros.');
        }
        if (!$status) {
          my $cmp = version_compare($versions[0], $versions[1]);
          if (!$cmp) {
            $status = "same_version";
          } elsif ($cmp < 0) {
            $status = "newer_in_$dists[1]";
            if ( $versions[1] =~ m|^$esc_vers[0]| ) {
               $details = " local_changes_in_$dists[1]";
            }
          } else {
             $status = "newer_in_$dists[0]";
             if ( $versions[0] =~ m|^$esc_vers[1]| ) {
                $details = " local_changes_in_$dists[0]";
             }
          }
        }
        $line .= " $status $details";
     }

     print "$line\n";
  }
}


sub compare_src_bin {
    my ($dist, $do_compare) = @_;

    dist_check($dist);

    # Get all packages
    my %packages;
    my @parse_types = ('Sources', 'Packages');
    my @comp_types  = ('Sources_Bin', 'Packages');

    foreach my $type (@parse_types) {
	my $files = get_distfiles($dist, $type);
	my @files = @$files;
	foreach my $file ( @files ) {
	    my $parsed_file = parseFile($file);
	    foreach my $package ( keys(%{$parsed_file}) ) {
		if ( $packages{$dist}{$package} ) {
		    warn "W: Package $package is already listed for $dist. Not overriding.\n";
		} else {
		    $packages{$type}{$package} = $parsed_file->{$package};
		}
	    }
	}
    }

    # Build 'Sources_Bin' hash
    foreach my $package ( keys( %{$packages{Sources}} ) ) {
	my $package_h = \%{$packages{Sources}{$package}};
	if ( $package_h->{'Binary'} ) {
	    my @binaries = split(", ", $package_h->{'Binary'});
	    my $version  = $package_h->{'Version'};
	    foreach my $binary (@binaries) {
		if (defined $packages{Sources_Bin}{$binary}) {
		    my $alt_ver = $packages{Sources_Bin}{$binary}{Version};
		    # Skip this entry if it's an older version than we already
		    # have
		    if (version_compare($version, $alt_ver) < 0) {
			next;
		    }
		}
		$packages{Sources_Bin}{$binary}{Version} = $version;
	    }
	} else {
	    warn "Source $package has no binaries!\n";
	}
    }

    # Get entire list of packages
    my @all_packages = uniq sort ( map { keys(%{$packages{$_}}) } @comp_types );

    foreach my $package (@all_packages) {
	my $line = "$package ";
	my $status = "";
	my $details;

	foreach my $type (@comp_types) {
	    if ( $packages{$type}{$package} ) {
		$line .= "$packages{$type}{$package}{'Version'} ";
	    } else {
		$line .= "UNAVAIL ";
		$status = "not_in_$type";
	    }
	}

	my @versions = map { $packages{$_}{$package}{'Version'} } @comp_types;

	# Do compare
	if ($do_compare) {
	    if (!@comp_types) {
		fatal('Can only compare versions if there are two types.');
	    }
	    if (!$status) {
		my $cmp = version_compare($versions[0], $versions[1]);
		if (!$cmp) {
		    $status = "same_version";
		} elsif ($cmp < 0) {
		    $status = "newer_in_$comp_types[1]";
		    if ( $versions[1] =~ m|^\Q$versions[0]\E| ) {
			$details = " local_changes_in_$comp_types[1]";
		    }
		} else {
		    $status = "newer_in_$comp_types[0]";
		    if ( $versions[0] =~ m|^\Q$versions[1]\E| ) {
			$details = " local_changes_in_$comp_types[0]";
		    }
		}
	    }
	    $line .= " $status $details";
	}

	print "$line\n";
    }
}

sub grep_file(\@$)
{
    my ($argv, $file) = @_;
    my $dist = shift @{$argv};
    dist_check($dist);
    my @f = glob($datadir . '/' . $dist . "/var/lib/apt/lists/*_$file");
    if (@f) {
	exec('grep-dctrl', @{$argv}, @f);
    }
    else {
	fatal("Couldn't find a $file for $dist.");
    }
}

sub list {
  opendir(DIR, $datadir) or fatal("can't open dir $datadir: $!");
  while (my $file = readdir(DIR)) {
     if ( (-d "$datadir/$file") && ($file =~ m|^\w+|) ) {
        print "$file\n";
     }
  }
  closedir(DIR);
}



sub parseFile {
   my ($file) = @_;

   # Parse a source file and returns results as a hash

   open(FILE, '<', $file) || fatal("Could not open $file : $!");

   # Use %tmp hash to store tmp data
   my %tmp;
   my %result;

   while (my $line = <FILE>) {
      if ( $line =~ m|^$| ) {
         # Commit data if empty line
	 if ( $tmp{'Package'} ) {
	    #print "Committing data for $tmp{'Package'}\n";
	    while ( my ($field, $data) = each(%tmp) ) {
	       if ( $field ne "Package" ) {
                  $result{$tmp{'Package'}}{$field} = $data;
	       }
	    }
	    # Reset %tmp
	    %tmp = ();
	 } else {
            warn "W: No Package field found. Not committing data.\n";
	 }
      } elsif ( $line =~ m|^[a-zA-Z]| ) {
         # Gather data
         my ($field, $data) = $line =~ m|([a-zA-z-]+): (.*)$|;
	 if ($data) {
	    $tmp{$field} = $data;
	 }
      }
   }
   close(FILE);

   return \%result;
}




########################################################
### Command parsing
########################################################

my $command = shift @ARGV;
given ($command) {
    when ('create') {
	dist_create(@ARGV);
    }
    when ('apt-get') {
	aptcmd('apt-get', @ARGV);
    }
    when ('apt-cache') {
	aptcmd('apt-cache', @ARGV);
    }
    when ('apt-rdepends') {
	aptcmd('apt-rdepends', @ARGV);
    }
    when ('bin2src') {
	bin2src(@ARGV);
    }
    when ('src2bin') {
	src2bin(@ARGV);
    }
    when ('compare-packages') {
	dist_compare(@ARGV, 0, 'Sources');
    }
    when ('compare-bin-packages') {
	dist_compare(@ARGV, 0, 'Packages');
    }
    when ('compare-versions') {
	dist_compare(@ARGV, 1, 'Sources');
    }
    when ('compare-bin-versions') {
	dist_compare(@ARGV, 1, 'Packages');
    }
    when ('grep-dctrl-packages') {
	grep_file(@ARGV, 'Packages');
    }
    when ('grep-dctrl-sources') {
	grep_file(@ARGV, 'Sources');
    }
    when ('compare-src-bin-packages') {
	compare_src_bin(@ARGV, 0);
    }
    when ('compare-src-bin-versions') {
	compare_src_bin(@ARGV, 1);
    }
    when ('list') {
	list;
    }
    default {
	usage(1);
    }
}