]> err.no Git - pwstore/blob - pws
Allow : in user ids
[pwstore] / pws
1 #!/usr/bin/ruby
2
3 # password store management tool
4
5 # Copyright (c) 2008, 2009 Peter Palfrader <peter@palfrader.org>
6 #
7 # Permission is hereby granted, free of charge, to any person obtaining
8 # a copy of this software and associated documentation files (the
9 # "Software"), to deal in the Software without restriction, including
10 # without limitation the rights to use, copy, modify, merge, publish,
11 # distribute, sublicense, and/or sell copies of the Software, and to
12 # permit persons to whom the Software is furnished to do so, subject to
13 # the following conditions:
14 #
15 # The above copyright notice and this permission notice shall be
16 # included in all copies or substantial portions of the Software.
17 #
18 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
22 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25
26 require 'optparse'
27 require 'thread'
28 require 'tempfile'
29
30 require 'yaml'
31 Thread.abort_on_exception = true
32
33 GNUPG = "/usr/bin/gpg"
34
35 $program_name = File.basename($0, '.*')
36
37 $editor = ENV['EDITOR']
38 if $editor == nil
39   %w{/usr/bin/sensible-editor /usr/bin/editor /usr/bin/vi}.each do |editor|
40     if FileTest.executable?(editor)
41       $editor = editor
42       break
43     end
44   end
45 end
46
47 class GnuPG
48   @@my_keys = nil
49   @@my_fprs = nil
50   @@keyid_fpr_mapping = {}
51
52   def GnuPG.readwrite3(intxt, infd, stdoutfd, stderrfd, statusfd)
53     outtxt, stderrtxt, statustxt = ''
54     thread_in = Thread.new {
55       infd.print intxt
56       infd.close
57     }
58     thread_out = Thread.new {
59       outtxt = stdoutfd.read
60       stdoutfd.close
61     }
62     thread_err = Thread.new {
63       errtxt = stderrfd.read
64       stderrfd.close
65     }
66     thread_status = Thread.new {
67       statustxt = statusfd.read
68       statusfd.close
69     } if (statusfd)
70
71     thread_in.join
72     thread_out.join
73     thread_err.join
74     thread_status.join if thread_status
75
76     return outtxt, stderrtxt, statustxt
77   end
78
79   def GnuPG.gpgcall(intxt, args, require_success = false)
80     inR, inW = IO.pipe
81     outR, outW = IO.pipe
82     errR, errW = IO.pipe
83     statR, statW = IO.pipe
84
85     pid = Kernel.fork do
86       inW.close
87       outR.close
88       errR.close
89       statR.close
90       STDIN.reopen(inR)
91       STDOUT.reopen(outW)
92       STDERR.reopen(errW)
93       begin
94         exec(GNUPG, "--status-fd=#{statW.fileno}",  *args)
95       rescue Exception => e
96         outW.puts("[PWSEXECERROR]: #{e}")
97         exit(1)
98       end
99       raise ("Calling gnupg failed")
100     end
101     inR.close
102     outW.close
103     errW.close
104     statW.close
105     (outtxt, stderrtxt, statustxt) = readwrite3(intxt, inW, outR, errR, statR);
106     wpid, status = Process.waitpid2 pid
107     throw "Unexpected pid: #{pid} vs #{wpid}" unless pid == wpid
108     throw "Process has not exited!?" unless status.exited?
109     throw "gpg call did not exit sucessfully" if (require_success and status.exitstatus != 0)
110     if m=/^\[PWSEXECERROR\]: (.*)/.match(outtxt) then
111       STDERR.puts "Could not run GnuPG: #{m[1]}"
112       exit(1)
113     end
114     return outtxt, stderrtxt, statustxt, status.exitstatus
115   end
116
117   def GnuPG.init_keys()
118     return if @@my_keys
119     (outtxt, stderrtxt, statustxt) = GnuPG.gpgcall('', %w{--fast-list-mode --with-colons --with-fingerprint --list-secret-keys}, true)
120     @@my_keys = []
121     @@my_fprs = []
122     outtxt.split("\n").each do |line|
123       parts = line.split(':')
124       if (parts[0] == "ssb" or parts[0] == "sec")
125         @@my_keys.push parts[4]
126       elsif (parts[0] == "fpr")
127         @@my_fprs.push parts[9]
128       end
129     end
130   end
131   # This is for my private keys, so we can tell if a file is encrypted to us
132   def GnuPG.get_my_keys()
133     init_keys
134     @@my_keys
135   end
136   # And this is for my private keys also, so we can tell if we are encrypting to ourselves
137   def GnuPG.get_my_fprs()
138     init_keys
139     @@my_fprs
140   end
141
142   # This maps public keyids to fingerprints, so we can figure
143   # out if a file that is encrypted to a bunch of keys is
144   # encrypted to the fingerprints it should be encrypted to
145   def GnuPG.get_fpr_from_keyid(keyid)
146     fpr = @@keyid_fpr_mapping[keyid]
147     # this can be null, if we tried to find the fpr but failed to find the key in our keyring
148     unless fpr
149       STDERR.puts "Warning: No key found for keyid #{keyid}"
150     end
151     return fpr
152   end
153   def GnuPG.get_fprs_from_keyids(keyids)
154     learn_fingerprints_from_keyids(keyids)
155     return keyids.collect{ |k| get_fpr_from_keyid(k) or "unknown" }
156   end
157
158   # this is to load the keys we will soon be asking about into
159   # our keyid-fpr-mapping hash
160   def GnuPG.learn_fingerprints_from_keyids(keyids)
161     need_to_learn = keyids.reject{ |k| @@keyid_fpr_mapping.has_key?(k) }
162     if need_to_learn.size > 0
163       # we can't use --fast-list-mode here because GnuPG is broken
164       # and does not show elmo's fingerprint in a call like
165       # gpg --with-colons --fast-list-mode --with-fingerprint --list-key D7C3F131AB2A91F5
166       args = %w{--with-colons --with-fingerprint --list-keys}
167       args.concat need_to_learn
168       (outtxt, stderrtxt, statustxt) = GnuPG.gpgcall('', args, true)
169
170       pub = nil
171       fpr = nil
172       outtxt.split("\n").each do |line|
173         parts = line.split(':')
174         if (parts[0] == "pub")
175           pub = parts[4]
176         elsif (parts[0] == "fpr")
177           fpr = parts[9]
178           @@keyid_fpr_mapping[pub] = fpr
179         elsif (parts[0] == "sub")
180           @@keyid_fpr_mapping[parts[4]] = fpr
181         end
182       end
183     end
184     need_to_learn.reject{ |k| @@keyid_fpr_mapping.has_key?(k) }.each { |k| @@keyid_fpr_mapping[k] = nil }
185   end
186 end
187
188 def read_input(query, default_yes=true)
189   if default_yes
190     append = '[Y/n]'
191   else
192     append = '[y/N]'
193   end
194
195   while true
196     print "#{query} #{append} "
197     begin
198       i = STDIN.readline.chomp.downcase
199     rescue EOFError
200       return default_yes
201     end
202     if i==""
203       return default_yes
204     elsif i=="y"
205       return true
206     elsif i=="n"
207       return false
208     end
209   end
210 end
211
212 class GroupConfig
213   def initialize
214     parse_file
215     expand_groups
216   end
217
218   def verify(content)
219     begin
220       f = File.open(ENV['HOME']+'/.pws-trusted-users')
221     rescue Exception => e
222       STDERR.puts e
223       exit(1)
224     end
225
226     trusted = []
227     f.readlines.each do |line|
228       line.chomp!
229       next if line =~ /^$/
230       next if line =~ /^#/
231
232       trusted.push line
233     end
234
235     args = []
236     args.push "--keyring=./.keyring" if FileTest.exists?(".keyring")
237     (outtxt, stderrtxt, statustxt, exitstatus) = GnuPG.gpgcall(content, args)
238     goodsig = false
239     validsig = nil
240     statustxt.split("\n").each do |line|
241       if m = /^\[GNUPG:\] GOODSIG/.match(line)
242         goodsig = true
243       elsif m = /^\[GNUPG:\] VALIDSIG \S+ \S+ \S+ \S+ \S+ \S+ \S+ \S+ \S+ ([0-9A-F]+)/.match(line)
244         validsig = m[1]
245       end
246     end
247
248     if not goodsig
249       STDERR.puts ".users file is not signed properly.  GnuPG said on stdout:"
250       STDERR.puts outtxt
251       STDERR.puts "and on stderr:"
252       STDERR.puts stderrtxt
253       STDERR.puts "and via statusfd:"
254       STDERR.puts statustxt
255       exit(1)
256     end
257
258     if not trusted.include?(validsig)
259       STDERR.puts ".users file is signed by #{validsig} which is not in ~/.pws-trusted-users"
260       exit(1)
261     end
262
263     if not exitstatus==0
264       STDERR.puts "gpg verify failed for .users file"
265       exit(1)
266     end
267
268     return outtxt
269   end
270
271   def parse_file
272     begin
273       f = File.open('.users')
274     rescue Exception => e
275       STDERR.puts e
276       exit(1)
277     end
278
279     users = f.read
280     f.close
281
282     users = verify(users)
283
284     @users = {}
285     @groups = {}
286
287     lno = 0
288     users.split("\n").each do |line|
289       lno = lno+1
290       next if line =~ /^$/
291       next if line =~ /^#/
292       if (m = /^([a-zA-Z0-9:-]+)\s*=\s*([0-9A-Fa-f]{40})\s*$/.match line)
293         user = m[1]
294         fpr = m[2]
295         if @users.has_key?(user)
296           STDERR.puts "User #{user} redefined at line #{lno}!"
297           exit(1)
298         end
299         @users[user] = fpr
300       elsif (m = /^(@[a-zA-Z0-9-]+)\s*=\s*(.*)$/.match line)
301         group = m[1]
302         members = m[2].strip
303         if @groups.has_key?(group)
304           STDERR.puts "Group #{group} redefined at line #{lno}!"
305           exit(1)
306         end
307         members = members.split(/[\t ,]+/)
308         @groups[group] = { "members" => members }
309       end
310     end
311   end
312
313   def is_group(name)
314     return (name =~ /^@/)
315   end
316   def check_exists(x, whence, fatal=true)
317     ok=true
318     if is_group(x)
319       ok=false unless (@groups.has_key?(x))
320     else
321       ok=false unless @users.has_key?(x)
322     end
323     unless ok
324       STDERR.puts( (fatal ? "Error: " : "Warning: ") + "#{whence} contains unknown member #{x}")
325       exit(1) if fatal
326     end
327     return ok
328   end
329   def expand_groups
330     @groups.each_pair do |groupname, group|
331       group['members'].each do |member|
332         check_exists(member, "Group #{groupname}")
333       end
334       group['members_to_do'] = group['members'].clone
335     end
336
337     while true
338       had_progress = false
339       all_expanded = true
340       @groups.each_pair do |groupname, group|
341         group['keys'] = [] unless group['keys'] 
342
343         still_contains_groups = false
344         group['members_to_do'].clone.each do |member|
345           if is_group(member)
346             if @groups[member]['members_to_do'].size == 0
347               group['keys'].concat @groups[member]['keys']
348               group['members_to_do'].delete(member)
349               had_progress = true
350             else
351               still_contains_groups = true
352             end
353           else
354             group['keys'].push @users[member]
355             group['members_to_do'].delete(member)
356             had_progress = true
357           end
358         end
359         all_expanded = false if still_contains_groups
360       end
361       break if all_expanded
362       unless had_progress
363         cyclic_groups = @groups.keys.reject{|name| @groups[name]['members_to_do'].size == 0}.join(", ")
364         STDERR.puts "Cyclic group memberships in #{cyclic_groups}?"
365         exit(1)
366       end
367     end
368   end
369
370   def expand_targets(targets)
371     fprs = []
372     ok = true
373     targets.each do |t|
374       unless check_exists(t, "access line", false)
375         ok = false
376         next
377       end
378       if is_group(t)
379         fprs.concat @groups[t]['keys']
380       else
381         fprs.push @users[t]
382       end
383     end
384     return ok, fprs.uniq
385   end
386
387   def get_users()
388     return @users
389   end
390 end
391
392 class EncryptedFile
393   attr_reader :accessible, :encrypted, :readable, :readers
394
395   def EncryptedFile.determine_readable(readers)
396     GnuPG.get_my_keys.each do |keyid|
397       return true if readers.include?(keyid)
398     end
399     return false
400   end
401
402   def EncryptedFile.list_readers(statustxt)
403     readers = []
404     statustxt.split("\n").each do |line|
405       m = /^\[GNUPG:\] ENC_TO ([0-9A-F]+)/.match line
406       next unless m
407       readers.push m[1]
408     end
409     return readers
410   end
411
412   def EncryptedFile.targets(text)
413     metaline = text.split("\n").first
414     m = /^access: (.*)/.match metaline
415     return [] unless m
416     return m[1].strip.split(/[\t ,]+/)
417   end
418
419
420   def initialize(filename, new=false)
421     @groupconfig = GroupConfig.new
422     @new = new
423     if @new
424       @readers = []
425     end
426
427     @filename = filename
428     unless FileTest.readable?(filename)
429       @accessible = false
430       return
431     end
432     @accessible = true
433     @encrypted_content = File.read(filename)
434     (outtxt, stderrtxt, statustxt) = GnuPG.gpgcall(@encrypted_content, %w{--with-colons --no-options --no-default-keyring --secret-keyring=/dev/null --keyring=/dev/null})
435     @encrypted = !(statustxt =~ /\[GNUPG:\] NODATA/)
436     if @encrypted
437       @readers = EncryptedFile.list_readers(statustxt)
438       @readable = EncryptedFile.determine_readable(@readers)
439     end
440   end
441
442   def decrypt
443     (outtxt, stderrtxt, statustxt, exitstatus) = GnuPG.gpgcall(@encrypted_content, %w{--decrypt})
444     if !@new and exitstatus != 0
445       proceed = read_input("Warning: gpg returned non-zero exit status #{exitstatus} when decrypting #{@filename}.  Proceed?", false)
446       exit(0) unless proceed
447     elsif !@new and outtxt.length == 0
448       proceed = read_input("Warning: #{@filename} decrypted to an empty file.  Proceed?")
449       exit(0) unless proceed
450     end
451
452     return outtxt
453   end
454
455   def encrypt(content, recipients)
456     args = recipients.collect{ |r| "--recipient=#{r}"}
457     args.push "--trust-model=always"
458     args.push "--keyring=./.keyring" if FileTest.exists?(".keyring")
459     args.push "--armor"
460     args.push "--encrypt"
461     (outtxt, stderrtxt, statustxt, exitstatus) = GnuPG.gpgcall(content, args)
462
463     invalid = []
464     statustxt.split("\n").each do |line|
465       m = /^\[GNUPG:\] INV_RECP \S+ ([0-9A-F]+)/.match line
466       next unless m
467       invalid.push m[1]
468     end
469     if invalid.size > 0
470       again = read_input("Warning: the following recipients are invalid: #{invalid.join(", ")}. Try again (or proceed)?")
471       return false if again
472     end
473     if outtxt.length == 0
474       tryagain = read_input("Error: #{@filename} encrypted to an empty file.  Edit again (or exit)?")
475       return false if tryagain
476       exit(0)
477     end
478     if exitstatus != 0
479       proceed = read_input("Warning: gpg returned non-zero exit status #{exitstatus} when encrypting #{@filename}. Said:\n#{stderrtxt}\n#{statustxt}\n\nProceed (or try again)?")
480       return false unless proceed
481     end
482
483     return true, outtxt
484   end
485
486
487   def determine_encryption_targets(content)
488     targets = EncryptedFile.targets(content)
489     if targets.size == 0
490       tryagain = read_input("Warning: Did not find targets to encrypt to in header.  Try again (or exit)?", true)
491       return false if tryagain
492       exit(0)
493     end
494
495     ok, expanded = @groupconfig.expand_targets(targets)
496     if (expanded.size == 0)
497       tryagain = read_input("Errors in access header.  Edit again (or exit)?", true)
498       return false if tryagain
499       exit(0)
500     elsif (not ok)
501       tryagain = read_input("Warnings in access header.  Edit again (or continue)?", true)
502       return false if tryagain
503     end
504
505     to_me = false
506     GnuPG.get_my_fprs.each do |fpr|
507       if expanded.include?(fpr)
508         to_me = true
509         break
510       end
511     end
512     unless to_me
513       tryagain = read_input("File is not being encrypted to you.  Edit again (or continue)?", true)
514       return false if tryagain
515     end
516
517     return true, expanded
518   end
519
520   def write_back(content, targets)
521     ok, encrypted = encrypt(content, targets)
522     return false unless ok
523
524     File.open(@filename,"w").write(encrypted)
525     return true
526   end
527 end
528
529 class Ls
530   def help(parser, code=0, io=STDOUT)
531     io.puts "Usage: #{$program_name} ls [<directory> ...]"
532     io.puts parser.summarize
533     io.puts "Lists the contents of the given directory/directories, or the current"
534     io.puts "directory if none is given.  For each file show whether it is PGP-encrypted"
535     io.puts "file, and if yes whether we can read it."
536     exit(code)
537   end
538
539   def ls_dir(dirname)
540     begin
541       dir = Dir.open(dirname)
542     rescue Exception => e
543       STDERR.puts e
544       return
545     end
546     puts "#{dirname}:"
547     Dir.chdir(dirname) do
548       unless FileTest.exists?(".users")
549         STDERR.puts "The .users file does not exists here.  This is not a password store, is it?"
550         exit(1)
551       end
552       dir.sort.each do |filename|
553         next if (filename =~ /^\./) and not (@all >= 3)
554         stat = File::Stat.new(filename)
555         if stat.symlink?
556           puts "(sym)      #{filename}" if (@all >= 2)
557         elsif stat.directory?
558           puts "(dir)      #{filename}" if (@all >= 2)
559         elsif !stat.file?
560           puts "(other)    #{filename}" if (@all >= 2)
561         else
562           f = EncryptedFile.new(filename)
563           if !f.accessible
564             puts "(!perm)    #{filename}"
565           elsif !f.encrypted
566             puts "(file)     #{filename}" if (@all >= 2)
567           elsif f.readable
568             puts "(ok)       #{filename}"
569           else
570             puts "(locked)   #{filename}" if (@all >= 1)
571           end
572         end
573       end
574     end
575   end
576
577   def initialize()
578     @all = 0
579     ARGV.options do |opts|
580       opts.on_tail("-h", "--help" , "Display this help screen") { help(opts) }
581       opts.on_tail("-a", "--all" , "Show all files (use up to 3 times to show even more than all)") { @all = @all+1 }
582       opts.parse!
583     end
584
585     dirs = ARGV
586     dirs.push('.') unless dirs.size > 0
587     dirs.each { |dir| ls_dir(dir) }
588   end
589 end
590
591 class Ed
592   def help(parser, code=0, io=STDOUT)
593     io.puts "Usage: #{$program_name} ed <filename>"
594     io.puts parser.summarize
595     io.puts "Decrypts the file, spawns an editor, and encrypts it again"
596     exit(code)
597   end
598
599   def edit(filename)
600     encrypted_file = EncryptedFile.new(filename, @new)
601     if !@new and !encrypted_file.readable && !@force
602       STDERR.puts "#{filename} is probably not readable"
603       exit(1)
604     end
605
606     encrypted_to = GnuPG.get_fprs_from_keyids(encrypted_file.readers).sort
607
608     content = encrypted_file.decrypt
609     original_content = content
610     while true
611       oldsize = content.length
612       tempfile = Tempfile.open('pws')
613       tempfile.puts content
614       tempfile.flush
615       system($editor, tempfile.path)
616       status = $?
617       throw "Process has not exited!?" unless status.exited?
618       unless status.exitstatus == 0
619         proceed = read_input("Warning: Editor did not exit successfully (exit code #{status.exitstatus}.  Proceed?")
620         exit(0) unless proceed
621       end
622
623       # some editors do not write new content in place, but instead
624       # make a new file and more it in the old file's place.
625       begin
626         reopened = File.open(tempfile.path, "r+")
627       rescue Exception => e
628         STDERR.puts e
629         exit(1)
630       end
631       content = reopened.read
632
633       # zero the file, well, both of them.
634       newsize = content.length
635       clearsize = (newsize > oldsize) ? newsize : oldsize
636
637       [tempfile, reopened].each do |f|
638         f.seek(0, IO::SEEK_SET)
639         f.print "\0"*clearsize
640         f.fsync
641       end
642       reopened.close
643       tempfile.close(true)
644
645       if content.length == 0
646         proceed = read_input("Warning: Content is now empty.  Proceed?")
647         exit(0) unless proceed
648       end
649
650       ok, targets = encrypted_file.determine_encryption_targets(content)
651       next unless ok
652
653       if (original_content == content)
654         if (targets.sort == encrypted_to)
655           proceed = read_input("Nothing changed.  Re-encrypt anyway?", false)
656           exit(0) unless proceed
657         else
658           STDERR.puts("Info: Content not changed but re-encrypting anyway because the list of keys changed")
659         end
660       end
661
662       success = encrypted_file.write_back(content, targets)
663       break if success
664     end
665   end
666
667   def initialize()
668     ARGV.options do |opts|
669       opts.on_tail("-h", "--help" , "Display this help screen") { help(opts) }
670       opts.on_tail("-n", "--new" , "Edit new file") { |new| @new=new }
671       opts.on_tail("-f", "--force" , "Spawn an editor even if the file is probably not readable") { |force| @force=force }
672       opts.parse!
673     end
674     help(ARGV.options, 1, STDERR) if ARGV.length != 1
675     filename = ARGV.shift
676
677     if @new
678       if FileTest.exists?(filename)
679         STDERR.puts "#{filename} does exist"
680         exit(1)
681       end
682     else
683       if !FileTest.exists?(filename)
684         STDERR.puts "#{filename} does not exist"
685         exit(1)
686       elsif !FileTest.file?(filename)
687         STDERR.puts "#{filename} is not a regular file"
688         exit(1)
689       elsif !FileTest.readable?(filename)
690         STDERR.puts "#{filename} is not accessible (unix perms)"
691         exit(1)
692       end
693     end
694
695     dirname = File.dirname(filename)
696     basename = File.basename(filename)
697     Dir.chdir(dirname) {
698       edit(basename)
699     }
700   end
701 end
702
703 class KeyringUpdater
704   def help(parser, code=0, io=STDOUT)
705     io.puts "Usage: #{$program_name} update-keyring [<keyserver>]"
706     io.puts parser.summarize
707     io.puts "Updates the local .keyring file"
708     exit(code)
709   end
710
711   def initialize()
712     ARGV.options do |opts|
713       opts.on_tail("-h", "--help" , "Display this help screen") { help(opts) }
714       opts.parse!
715     end
716     help(ARGV.options, 1, STDERR) if ARGV.length > 1
717     keyserver = ARGV.shift
718     keyserver = 'keys.gnupg.net' unless keyserver
719
720     groupconfig = GroupConfig.new
721     users = groupconfig.get_users()
722     args = %w{--with-colons --no-options --no-default-keyring --keyring=./.keyring}
723
724     system('touch', '.keyring')
725     users.each_pair() do |uid, keyid|
726       cmd = args.clone()
727       cmd << "--keyserver=#{keyserver}"
728       cmd << "--recv-keys"
729       cmd << keyid
730       puts "Fetching key for #{uid}"
731       (outtxt, stderrtxt, statustxt) = GnuPG.gpgcall('', cmd)
732       unless (statustxt =~ /^\[GNUPG:\] IMPORT_OK /)
733         STDERR.puts "Warning: did not find IMPORT_OK token in status output"
734         STDERR.puts "gpg exited with exit code #{ecode})"
735         STDERR.puts "Command was gpg #{cmd.join(' ')}"
736         STDERR.puts "stdout was #{outtxt}"
737         STDERR.puts "stderr was #{stderrtxt}"
738         STDERR.puts "statustxt was #{statustxt}"
739       end
740
741       cmd = args.clone()
742       cmd << '--batch' << '--edit' << keyid << 'minimize' << 'save'
743       (outtxt, stderrtxt, statustxt, ecode) = GnuPG.gpgcall('', cmd)
744     end
745
746
747   end
748 end
749
750 def help(code=0, io=STDOUT)
751   io.puts "Usage: #{$program_name} ed"
752   io.puts "       #{$program_name} ls"
753   io.puts "       #{$program_name} update-keyring"
754   io.puts "       #{$program_name} help"
755   io.puts "Call #{$program_name} <command> --help for additional options/parameters"
756   exit(code)
757 end
758
759
760 def parse_command
761   case ARGV.shift
762     when 'ls' then Ls.new
763     when 'ed' then Ed.new
764     when 'update-keyring' then KeyringUpdater.new
765     when 'help' then
766       case ARGV.length
767         when 0 then help
768         when 1 then
769           ARGV.push "--help"
770           parse_command
771         else help(1, STDERR)
772       end
773     else
774       help(1, STDERR)
775   end
776 end
777
778 parse_command
779
780 # vim:set shiftwidth=2:
781 # vim:set et:
782 # vim:set ts=2: