aboutsummaryrefslogtreecommitdiff
path: root/lib/Mail/Run/Crypt.pm
blob: e1a87556c0c2ce4a825b0ea796d0d022ebe1245e (plain) (blame)
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
package Mail::Run::Crypt;

# Force me to write this properly
use strict;
use warnings;
use utf8;

# Require this version of Perl
# 5.010 for defined-or operator
use 5.010;

# Import required modules
use Carp;
use Const::Fast;
use English '-no_match_vars';
use IPC::Run3;
use Mail::GnuPG;
use MIME::Entity;

# Specify package verson
our $VERSION = '0.01';

# Default exit value
const our $DEFAULT_EXIT => 127;

# Oldschool constructor
sub new {
    my ( $class, %opts ) = @_;

    # Blindly slurp in all the options given
    my $self = {%opts};

    # We must have a recipient
    exists $self->{mailto} and defined $self->{mailto}
      or croak 'mailto required';

    # Default the instance name to the package name if it wasn't given;
    # runcrypt(1p) will pass it in
    $self->{name} //= $class;

    # We default to encrypting but not signing
    $self->{encrypt} //= 1;
    $self->{sign}    //= 0;

    # If signing, we need a key ID and a passphrase
    if ( $self->{sign} ) {
        exists $self->{keyid} and defined $self->{keyid}
          or croak 'keyid required for signing';
        exists $self->{passphrase} and defined $self->{passphrase}
          or croak 'passphrase required for signing';
    }

    # Return objectified self
    return bless $self, $class;
}

# Run a given command
sub run {
    my ( $self, @command ) = @_;

    # Run the command and wait for it to finish; keep its exit value for later
    my ( @out, @err );
    eval { run3 \@command, undef, \@out, \@err }
      or carp "command failed: $EVAL_ERROR";
    $self->{exit} = $CHILD_ERROR >> 8;

    # If there was output, mail it
    if (@out) {
        my $command = join q{ }, @command;
        my $subject = "$self->{name} output: $command";
        $self->_mail( $subject, \@out );
    }

    # If there were errors, mail them
    if (@err) {
        my $command = join q{ }, @command;
        my $subject = "$self->{name} errors: $command";
        $self->_mail( $subject, \@err );
    }

    # Return status reflecting the command exit value
    return $self->{exit} == 0;
}

# Return the value of the most recently run command, or 1 otherwise
sub bail { return shift->{exit} // $DEFAULT_EXIT }

# Send the message to the address in $ENV{MAILTO}
sub _mail {
    my ( $self, $subject, $content ) = @_;

    # Build MIME object with plaintext message
    my $mime = MIME::Entity->build(
        To      => $self->{mailto},
        Subject => $subject,
        Data    => $content,
    );

    # Encrypt the MIME object
    my $mgpg = Mail::GnuPG->new(
        key        => $self->{keyid},
        passphrase => $self->{passphrase},
    );

    # Sign and/or encrypt as appropriate
    if ( $self->{sign} and $self->{encrypt} ) {
        $mgpg->mime_signencrypt( $mime, $self->{mailto} );
    }
    elsif ( $self->{sign} ) {
        $mgpg->mime_sign( $mime, $self->{mailto} );
    }
    elsif ( $self->{encrypt} ) {
        $mgpg->mime_encrypt( $mime, $self->{mailto} );
    }

    # Send it
    return $mime->send();
}

1;

__END__

=pod

=for stopwords
mailserver decrypt runcrypt GPG OpenPGP tradename licensable MERCHANTABILITY
mailto keyid

=encoding utf8

=head1 NAME

Mail::Run::Crypt - Encrypt and mail output from command runs

=head1 VERSION

Version 0.01

=head1 DESCRIPTION

This module runs commands with C<IPC::Run3::run3()>, and collects any standard
output and standard error it emits. If there is any standard output or standard
error content, it is signed and/or encrypted with GnuPG, and then mailed to a
specified recipient address (each stream separately).

The idea is to allow you to view the output of automated commands while having
the content encrypted as it passes through to your mailserver, and (optionally)
have some assurance that the content was actually generated by the server
concerned. C<cron(8)> scripts are the ideal use case, but this would also work
with C<at(1)> or anything else that might non-interactively run jobs for which
output is significant.

You probably want to call this with the C<runcrypt(1)> program installed by
this distribution, which provides a means to set the properties for the module
via environment variables or command-line options.

=head1 SYNOPSIS

    my $mrc = Mail::Run::Crypt->new(
        keyid      => 0x1234DEAD,
        passphrase => 'able was i ere i saw elba',
        mailto     => 'you@example.net',
    );
    $mrc->run(qw(rsync -a /mnt/a/ remote:mnt/b));
    
=head1 SUBROUTINES/METHODS

=head2 B<new(%opts)>

Constructor accepts the following named parameters:

=over 4

=item C<sign>

Whether to sign the command output. This defaults to off. A key ID and
passphrase will be required for signing.

=item C<encrypt>

Whether to encrypt the command output. This defaults to on.

=item C<keyid>

The GnuPG key ID that should be used to encrypt the messages.

=item C<passphrase>

The passphrase used to decrypt the key.

=item C<mailto>

The recipient email address for the content.

=item C<name>

(Optional) The name of the object. When called from the C<runcrypt(1)>
program, this will be the string "runcrypt".

=back

=head2 B<run(@command)>

Run the specified arguments as a command with C<IPC::Run3::run3()>, and email
any output or error content to the email recipient.

=head2 B<bail()>

Return the exit status of the most recently run command, or 127 if no command
has been successfully run.

=head1 DIAGNOSTICS

=over 4

=item mailto required

The required C<mailto> property was not passed in the constructor.

=item keyid required for signing

Signing was specified, but no C<keyid> attribute was passed in the constructor.

=item passphrase required for signing

Signing was specified, but no C<passphrase> attribute was passed in the constructor.

=item command failed: %s

The command did not merely fail, it could not even be started, with the given
error string. This is typically due to problems finding the executable.

=back

=head1 CONFIGURATION AND ENVIRONMENT

You will need to have a functioning GnuPG public key setup for this to work,
including the secret key. You should definitely not use your personal key;
generate one specifically for mail signing and encryption instead.

=head1 DEPENDENCIES

=over 4

=item *

Perl v5.10.0 or newer

=item *

C<Carp>

=item *

C<Const::Fast>

=item *

C<English>

=item *

C<IPC::Run3>

=item *

C<Mail::GnuPG>

=item *

C<MIME::Entity>

=back

=head1 INCOMPATIBILITIES

This module uses C<Mail::GnuPG> and other GPG-specific code, so it won't work
with any other OpenPGP implementations.

=head1 BUGS AND LIMITATIONS

Providing the C<passphrase> directly from an environment variable is not great.
The documentation needs to make that clear and offer a less bad alternative,
probably specifying the path to a secure file that it refuses to use unless it
has sufficiently restrictive permissions.

This is very hard to test and the author has not yet figured out how to do
that.

=head1 AUTHOR

Tom Ryder C<< <tom@sanctum.geek.nz> >>

=head1 LICENSE AND COPYRIGHT

Copyright (C) 2017 Tom Ryder

This program is free software; you can redistribute it and/or modify it under
the terms of the Artistic License (2.0). You may obtain a copy of the full
license at:

L<http://www.perlfoundation.org/artistic_license_2_0>

Any use, modification, and distribution of the Standard or Modified Versions is
governed by this Artistic License. By using, modifying or distributing the
Package, you accept this license. Do not use, modify, or distribute the
Package, if you do not accept this license.

If your Modified Version has been derived from a Modified Version made by
someone other than you, you are nevertheless required to ensure that your
Modified Version complies with the requirements of this license.

This license does not grant you the right to use any trademark, service mark,
tradename, or logo of the Copyright Holder.

This license includes the non-exclusive, worldwide, free-of-charge patent
license to make, have made, use, offer to sell, sell, import and otherwise
transfer the Package with respect to any patent claims licensable by the
Copyright Holder that are necessarily infringed by the Package. If you
institute patent litigation (including a cross-claim or counterclaim) against
any party alleging that the Package constitutes direct or contributory patent
infringement, then this Artistic License to you shall terminate on the date
that such litigation is filed.

Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND
CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL LAW.
UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY
OUT OF THE USE OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
DAMAGE.

=cut