Blob


1 #!/usr/bin/env perl
2 #
3 # Copyright (c) 2022, 2023 Omar Polo <op@omarpolo.com>
4 #
5 # Permission to use, copy, modify, and distribute this software for any
6 # purpose with or without fee is hereby granted, provided that the above
7 # copyright notice and this permission notice appear in all copies.
8 #
9 # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 use strict;
18 use warnings;
19 use v5.32;
21 use open ":std", ":encoding(UTF-8)";
23 use Getopt::Long qw(:config bundling require_order);
24 use File::Basename;
25 use File::Find;
26 use File::Temp qw(tempfile);
28 my $store = $ENV{'PLASS_STORE'} // $ENV{'HOME'}.'/.password-store';
30 my $gpg = $ENV{'PLASS_GPG'} // 'gpg';
31 my @gpg_flags = qw(--quiet --compress-algo=none --no-encrypt-to --use-agent);
33 my %subcmd = (
34 cat => [\&cmd_cat, "entries..."],
35 edit => [\&cmd_edit, "entry"],
36 find => [\&cmd_find, "[pattern]"],
37 mv => [\&cmd_mv, "from to"],
38 rm => [\&cmd_rm, "entries..."],
39 tee => [\&cmd_tee, "[-q] entry"],
40 );
42 my $usage = "[-h] command [argument ...]";
43 my $cmd;
44 sub usage {
45 my $prog = basename $0;
46 if (defined($cmd) and defined($subcmd{$cmd})) {
47 say STDERR "Usage: $prog $cmd $usage";
48 } else {
49 say STDERR "Usage: $prog $usage";
50 say STDERR "unknown command $cmd" if defined($cmd);
51 say STDERR "commands: ", join(' ', sort(keys %subcmd));
52 }
53 exit 1;
54 }
56 GetOptions("h|?" => \&usage) or usage();
58 $cmd = shift // 'find';
59 usage() unless defined $subcmd{$cmd};
60 my $fn;
61 ($fn, $usage) = @{$subcmd{$cmd}};
62 chdir $store;
63 $fn->();
64 exit 0;
67 # utils
69 sub name2file {
70 my $f = shift;
71 $f .= ".gpg" unless $f =~ m,\.gpg$,;
72 return $f;
73 }
75 sub mkdirs {
76 my $dir = shift;
77 my $parent = dirname $dir;
78 mkdirs($parent) unless -d $parent || $parent eq '/';
79 mkdir $dir or die "mkdir $dir: $!"
80 unless -d $dir;
81 }
83 sub recipient {
84 open my $fh, '<', "$store/.gpg-id"
85 or die "can't open recipient file";
86 my $r = <$fh>;
87 chomp $r;
88 close($fh);
89 return $r;
90 }
92 sub passfind {
93 my $pattern = shift;
94 my @entries;
96 find({
97 wanted => sub {
98 if (m,/.git$, || m,/.got$,) {
99 $File::Find::prune = 1;
100 return;
102 return unless -f && m,.gpg$,;
104 s,^$store/*,,;
105 s,.gpg$,,;
107 return if defined($pattern) && ! m/$pattern/i;
108 push @entries, $_;
109 },
110 no_chdir => 1,
111 follow_fast => 1,
112 }, ($store));
113 return sort(@entries);
116 sub got {
117 # discard stdout
118 open my $fh, '-|', ('got', @_);
119 close($fh);
120 return !$?;
123 sub got_add {
124 return got 'add', '-I', shift;
127 sub got_rm {
128 got 'remove', '-f', shift
129 or exit(1);
132 sub got_ci {
133 my $pid = fork;
134 die "failed to fork: $!" unless defined $pid;
136 if ($pid != 0) {
137 wait;
138 die "failed to commit changes" if $?;
139 return;
142 open (STDOUT, ">&", \*STDERR)
143 or die "can't redirect stdout to stderr";
144 exec ('got', 'commit', '-m', shift)
145 or die "failed to exec got: $!";
149 # cmds
151 sub cmd_cat {
152 GetOptions('h|?' => \&usage) or usage;
153 usage unless @ARGV;
155 while (@ARGV) {
156 my $file = name2file(shift @ARGV);
157 system ($gpg, @gpg_flags, '-d', $file);
158 die "failed to exec $gpg: $!" if $? == -1;
162 sub cmd_edit {
163 GetOptions('h|?' => \&usage) or usage;
164 usage if @ARGV != 1;
166 my $editor = $ENV{'VISUAL'} // $ENV{'EDITOR'} // 'ed';
168 my $entry = shift @ARGV;
169 my $epath = name2file $entry;
171 my ($fh, $filename) = tempfile "/tmp/plass-XXXXXXXXXX";
173 open (my $stdout, ">&", STDOUT) or die "can't redirect stdout: $!";
175 open (STDOUT, ">&", $fh) or die "can't redirect stdout to $filename";
176 system ($gpg, @gpg_flags, '-d', $epath);
177 die "$gpg exited with $?\n" if $? != 0;
179 # restore stdout so the editor can access the TTY if needed.
180 open (STDOUT, ">&", $stdout) or die "can't restore stdout: $!";
182 my $oldtime = (stat($fh))[9];
184 system ($editor, $filename);
185 die "editor $editor failed\n" if $? != 0;
187 my $newtime = (stat($filename))[9];
189 if ($oldtime == $newtime) {
190 say STDERR "no changes made.";
191 unlink $filename or die "can't delete $filename: $!\n";
192 return
195 open(STDIN, '<', $filename) or die "can't redirect stdin: $!";
196 open(STDOUT, '>', $epath) or die "can't redirect stdout: $!";
197 system ($gpg, @gpg_flags, '-e', '-r', recipient(), '-o', '-');
198 unlink $filename or die "can't delete $filename: $!\n";
199 die "gpg failed" if $? != 0;
201 got_add $epath;
202 got_ci "update $entry";
205 sub cmd_find {
206 GetOptions('h|?' => \&usage) or usage;
207 usage if @ARGV > 1;
209 map { say $_ } passfind(shift @ARGV);
212 # TODO: handle moving directories?
213 sub cmd_mv {
214 GetOptions('h|?' => \&usage) or usage;
215 usage if @ARGV != 2;
217 my $a = shift @ARGV;
218 my $b = shift @ARGV;
220 my $pa = name2file $a;
221 my $pb = name2file $b;
223 die "source password doesn't exist" unless -f $pa;
224 die "target password exists" if -f $pb;
226 mkdirs(dirname $pb);
227 rename $pa, $pb or die "can't rename $a to $b: $!";
229 got_rm $pa;
230 got_add $pb or die "can't add $pb\n";
231 got_ci "mv $a $b";
234 sub cmd_rm {
235 GetOptions('h|?' => \&usage) or usage;
236 usage unless @ARGV;
238 while (@ARGV) {
239 my $name = shift @ARGV;
240 my $file = name2file $name;
242 got_rm $file;
243 got_ci "-$name";
247 sub cmd_tee {
248 my $q;
249 GetOptions(
250 'h|?' => \&usage,
251 'q' => \$q,
252 ) or usage;
253 usage if @ARGV != 1;
255 my $name = shift @ARGV;
256 my $file = name2file $name;
258 my $msg = -f $file ? "update $name" : "+$name";
259 mkdirs(dirname $file);
261 my @args = ($gpg, @gpg_flags, '-e', '-r', recipient(),
262 '--batch', '--yes', '-o', $file);
263 open my $fh, '|-', @args;
265 local $/ = \1024;
266 while (<STDIN>) {
267 print $fh $_;
268 print $_ unless $q;
270 close($fh);
271 exit $? if $?;
273 got_add $file;
274 got_ci $msg;