This file is indexed.

/usr/sbin/amrmtape is in amanda-server 1:3.5.1-1build2.

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
#!/usr/bin/perl
#
# Copyright (c) 2008-2012 Zmanda, Inc.  All Rights Reserved.
# Copyright (c) 2013-2016 Carbonite, Inc.  All Rights Reserved.
#
# 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, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
#
# Contact information: Carbonite Inc., 756 N Pastoria Ave
# Sunnyvale, CA 94086, USA, or: http://www.zmanda.com
#
use lib '/usr/lib/x86_64-linux-gnu/amanda/perl';
use strict;
use warnings;

use Amanda::Config qw( :init :getconf config_print_errors
  config_dir_relative new_config_overrides add_config_override);
use Amanda::Storage;
use Amanda::Changer;
use Amanda::Device qw( :constants );
use Amanda::Debug qw( :logging );
use Amanda::Disklist;
use Amanda::Paths;
use Amanda::MainLoop;
use Amanda::Tapelist;
use Amanda::Util qw( :constants );
use Amanda::Label;
use File::Copy;
use File::Basename;
use Getopt::Long;

my $amadmin = "$sbindir/amadmin";
my $amtrmidx = "$amlibexecdir/amtrmidx";
my $amtrmlog = "$amlibexecdir/amtrmlog";

my $dry_run;
my $cleanup;
my $erase;
my $keep_label;
my $external_copy;
my $verbose = 1;
my $help;
my $list_retention;
my $list_no_retention;
my $remove_no_retention;

sub usage() {
    print <<EOF
$0 [-n] [-v] [-q] [-d] [config-overwrites] <config> [label]*
\t--changer changer-name
\t\tSpecify the name of the changer to use (for --erase).
\t--cleanup
\t\tRemove indexes and logs immediately
\t-n, --dryrun
\t\tDo nothing to original files, leave new ones in database directory.
\t--erase
\t\tErase the media, if possible
\t-h, --help
\t\tDisplay this message.
\t--keep-label
\t\tDo not remove label from the tapelist
\t--external-copy
\t\tErase the volume, keep it in tapelist and log
\t\tAssume an external copy fo the volume was done
\t--list-retention
\t\tList all labels require to satisfy the policy of each storage.
\t--list-no-retention
\t\tList all labels not require to satisfy the policy of each storage.
\t--remove-no-retention
\t\tRemove all labels not require to satisfy the policy of each storage.
\t-q, --quiet
\t\tQuiet, opposite of -v.
\t-v, --verbose
\t\tVerbose, list backups of hosts and disks that are being discarded.

This program allows you to invalidate the contents of an existing
backup tape within the Amanda current tape database.  This is meant as
a recovery mecanism for when a good backup is damaged either by faulty
hardware or user error, i.e. the tape is eaten by the tape drive, or
the tape has been overwritten.
EOF
}

sub vlog(@) {
    foreach my $msg (@_) {
        message($msg);
        print "$0: $msg\n" if $verbose;
    }
}

Amanda::Util::setup_application("amrmtape", "server", $CONTEXT_CMDLINE, "amanda", "amanda");

my $config_overrides = new_config_overrides( scalar(@ARGV) + 1 );

debug("Arguments: " . join(' ', @ARGV));
Getopt::Long::Configure(qw{ bundling });
my $opts_ok = GetOptions(
    'version' => \&Amanda::Util::version_opt,
    "changer=s" => sub { add_config_override_opt( $config_overrides, "-otpchanger=".$_[1] ); },
    "cleanup" => \$cleanup,
    "dryrun|n" => \$dry_run,
    "erase" => \$erase,
    "help|h" => \$help,
    "keep-label" => \$keep_label,
    "external-copy" => \$external_copy,
    "list-retention" => \$list_retention,
    "list-no-retention" => \$list_no_retention,
    "remove-no-retention" => \$remove_no_retention,
    'o=s' => sub { add_config_override_opt( $config_overrides, $_[1] ); },
    "quiet|q" => sub { undef $verbose; },
    "verbose|v" => \$verbose,
);

if (!$opts_ok) {
    usage();
    exit 1;
}

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

if(scalar(@ARGV) <= 0) {
    print STDERR "Specify a configuration.\n";
    usage();
    exit 1;
}

if ((!$list_retention && !$list_no_retention && !$remove_no_retention) &&
     scalar(@ARGV) == 1) {
    print STDERR "Specify a configuration and label.\n";
    usage();
    exit 1;
}

my ($config_name, @label) = @ARGV;

set_config_overrides($config_overrides);
my $cfg_ok = config_init_with_global( $CONFIG_INIT_EXPLICIT_NAME, $config_name );

my ($cfgerr_level, @cfgerr_errors) = config_errors();
if ($cfgerr_level >= $CFGERR_WARNINGS) {
    config_print_errors();
    if ($cfgerr_level >= $CFGERR_ERRORS) {
        die "Errors processing config file";
    }
}

Amanda::Util::finish_setup($RUNNING_AS_DUMPUSER);

sub user_msg {
    my $msg = shift;

    print STDOUT $msg->message() . "\n";
}

sub main {
    my ($finished_cb) = @_;

    my $steps = define_steps
	cb_ref => \$finished_cb;

    step start => sub {
	# amadmin may later try to load this and will die if it has errors
	# load it now to catch the problem sooner (before we might erase data)
	my $diskfile = config_dir_relative(getconf($CNF_DISKFILE));
	$cfgerr_level = Amanda::Disklist::read_disklist('filename' => $diskfile);
	if ($cfgerr_level >= $CFGERR_ERRORS) {
	    die "Errors processing disklist";
	}

	my $tapelist_file = config_dir_relative(getconf($CNF_TAPELIST));
	my ($tapelist, $message) = Amanda::Tapelist->new($tapelist_file, !$dry_run);
	if (defined $message) {
	    die "Could not read the tapelist: $message";
	}
	unless ($tapelist) {
	    die "Could not read the tapelist";
	}

	if ($list_retention) {
	    my @list = Amanda::Tapelist::list_retention();
	    foreach my $label (@list) {
		print "$label\n";
	    }
	} elsif ($list_no_retention) {
	    my @list = Amanda::Tapelist::list_no_retention();
	    foreach my $label (@list) {
		print "$label\n";
	    }
	} else {
	    my @list;
	    if ($remove_no_retention) {
		@list = Amanda::Tapelist::list_no_retention();
	    } else {
		@list = @label;
	    }
	    my $Label = Amanda::Label->new(tapelist => $tapelist,
					   user_msg => \&user_msg);

	    return $Label->erase(labels        => \@list,
				 cleanup       => $cleanup,
				 dry_run       => $dry_run,
				 erase         => $erase,
				 keep_label    => $keep_label,
				 external_copy => $external_copy,
				 finished_cb   => $steps->{'erase_finished'});
	}
	$finished_cb->();
    };

    step erase_finished => sub {
	my ($err) = @_;

        print STDERR "$err\n" if $err;

        $finished_cb->();
    };
}

main(\&Amanda::MainLoop::quit);
Amanda::MainLoop::run();
Amanda::Util::finish_application();
#exit $exit_status;