Check that the primary key is not expired, even if we get a GOODSIG status from
[mirror/userdir-ldap.git] / userdir_gpg.py
1 #   Copyright (c) 1999-2001  Jason Gunthorpe <jgg@debian.org>
2 #   Copyright (c) 2005       Joey Schulze <joey@infodrom.org>
3 #
4 #   This program is free software; you can redistribute it and/or modify
5 #   it under the terms of the GNU General Public License as published by
6 #   the Free Software Foundation; either version 2 of the License, or
7 #   (at your option) any later version.
8 #
9 #   This program is distributed in the hope that it will be useful,
10 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
11 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 #   GNU General Public License for more details.
13 #
14 #   You should have received a copy of the GNU General Public License
15 #   along with this program; if not, write to the Free Software
16 #   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 # GPG issues - 
19 #  - gpgm with a status FD being fed keymaterial and other interesting
20 #    things does nothing.. If it could ID the keys and stuff over the
21 #    status-fd I could decide what to do with them. I would also like it
22 #    to report which key it selected for encryption (also if there 
23 #    were multi-matches..) Being able to detect a key-revoke cert would be
24 #    good too.
25 #  - I would like to be able to fetch the comment and version fields from the 
26 #    packets so I can tell if a signature is made by pgp2 to enable the
27 #    pgp2 encrypting mode.
28
29 import mimetools, multifile, sys, StringIO, os, tempfile, re;
30 import rfc822, time, fcntl, anydbm
31
32 # General GPG options
33 GPGPath = "gpg"
34 # "--load-extension","rsa",
35 GPGBasicOptions = [
36    "--no-options",
37    "--batch",
38    "--no-default-keyring",
39    "--secret-keyring", "/dev/null",
40    "--always-trust"];
41 GPGKeyRings = [];
42 GPGSigOptions = ["--output","-"];
43 GPGSearchOptions = ["--dry-run","--with-colons","--fingerprint"];
44 GPGEncryptOptions = ["--output","-","--quiet","--always-trust",\
45                      "--armor","--encrypt"];
46 GPGEncryptPGP2Options = ["--set-filename","","--rfc1991",\
47                          "--load-extension","idea",\
48                          "--cipher-algo","idea"] + GPGEncryptOptions;
49
50 # Replay cutoff times in seconds
51 CleanCutOff = 7*24*60*60;
52 AgeCutOff = 4*24*60*60;
53 FutureCutOff = 3*24*60*60;
54
55 # Set the keyrings, the input is a list of keyrings
56 def SetKeyrings(Rings):
57    for x in Rings:
58       GPGKeyRings.append("--keyring");
59       GPGKeyRings.append(x);           
60
61 # GetClearSig takes an un-seekable email message stream (mimetools.Message) 
62 # and returns a standard PGP '---BEGIN PGP SIGNED MESSAGE---' bounded 
63 # clear signed text.
64 # If this is fed to gpg/pgp it will verify the signature and spit out the
65 # signed text component. Email headers and PGP mime (RFC 2015) is understood
66 # but no effort is made to cull any information outside the PGP boundaries
67 # Please note that in the event of a mime decode the mime headers will be
68 # present in the signature text! The return result is a tuple, the first
69 # element is the text itself the second is a mime flag indicating if the
70 # result should be mime processed after sig checking.
71 #
72 # Paranoid will check the message text to make sure that all the plaintext is 
73 # in fact signed (bounded by a PGP packet)
74 def GetClearSig(Msg,Paranoid = 0):
75    Error = 'MIME Error';
76    # See if this is a MIME encoded multipart signed message
77    if Msg.gettype() == "multipart/signed":
78       Boundary = Msg.getparam("boundary");
79       if not Boundary:
80          raise Error, "multipart/* without a boundary parameter";
81
82       # Create the multipart handler. Regrettably their implementation 
83       # Needs seeking..
84       SkMessage = StringIO.StringIO();
85       SkMessage.write(Msg.fp.read());
86       SkMessage.seek(0);
87       mf = multifile.MultiFile(SkMessage)
88       mf.push(Msg.getparam("boundary"));
89
90       # Check the first bit of the message..
91       if Paranoid != 0:
92          Pos = mf.tell();
93          while 1:
94              x = mf.readline();
95              if not x: break;
96              if len(x.strip()) != 0:
97                 raise Error,"Unsigned text in message (at start)";
98          mf.seek(Pos);
99       
100       # Get the first part of the multipart message
101       if not mf.next():
102          raise Error, "Invalid pgp/mime encoding [no section]";
103
104       # Get the part as a safe seekable stream
105       Signed = StringIO.StringIO();
106       Signed.write(mf.read());
107       InnerMsg = mimetools.Message(Signed);
108       
109       # Make sure it is the right type
110       if InnerMsg.gettype() != "text/plain":
111          raise Error, "Invalid pgp/mime encoding [wrong plaintext type]";
112    
113       # Get the next part of the multipart message
114       if not mf.next():
115          raise Error, "Invalid pgp/mime encoding [no section]";
116       InnerMsg = mimetools.Message(mf);
117       if InnerMsg.gettype() != "application/pgp-signature":
118          raise Error, "Invalid pgp/mime encoding [wrong signature type]";
119       Signature = ''.join(mf.readlines())
120
121       # Check the last bit of the message..
122       if Paranoid != 0:
123          mf.pop();
124          Pos = mf.tell();
125          while 1:
126              x = mf.readline();
127              if not x: break; 
128              if len(x.strip()) != 0:
129                 raise Error,"Unsigned text in message (at end)";
130          mf.seek(Pos);
131       
132       # Append the PGP boundary header and the signature text to re-form the
133       # original signed block [needs to convert to \r\n]
134       Output = "-----BEGIN PGP SIGNED MESSAGE-----\r\n";
135       # Semi-evil hack to get the proper hash type inserted in the message
136       if Msg.getparam('micalg') != None:
137           Output = Output + "Hash: MD5,SHA1,%s\r\n"%(Msg.getparam('micalg')[4:].upper())
138       Output = Output + "\r\n";
139       Output = Output + Signed.getvalue().replace("\n-","\n- -") + Signature
140       return (Output,1);
141    else:
142       if Paranoid == 0:
143          # Just return the message body
144          return (''.join(Msg.fp.readlines()),0);
145      
146       Body = "";
147       State = 1;
148       for x in Msg.fp.readlines():
149           Body = Body + x;
150           Tmp = x.strip()
151           if len(Tmp) == 0:
152              continue;
153          
154           # Leading up to the signature
155           if State == 1:
156              if Tmp == "-----BEGIN PGP SIGNED MESSAGE-----":
157                 State = 2;
158              else:
159                 raise Error,"Unsigned text in message (at start)";
160              continue;
161          
162           # In the signature plain text
163           if State == 2:
164              if Tmp == "-----BEGIN PGP SIGNATURE-----":
165                 State = 3;
166              continue;
167                 
168           # In the signature
169           if State == 3:
170              if Tmp == "-----END PGP SIGNATURE-----":
171                 State = 4;
172              continue;
173                 
174           # Past the end
175           if State == 4:
176              raise Error,"Unsigned text in message (at end)";
177       return (Body,0);
178
179 # This opens GPG in 'write filter' mode. It takes Message and sends it
180 # to GPGs standard input, pipes the standard output to a temp file along
181 # with the status FD. The two tempfiles are passed to GPG by fd and are
182 # accessible from the filesystem for only a short period. Message may be
183 # None in which case GPGs stdin is closed directly after forking. This
184 # is best used for sig checking and encryption.
185 # The return result is a tuple (Exit,StatusFD,OutputFD), both fds are
186 # fully rewound and readable.
187 def GPGWriteFilter(Program,Options,Message):
188    # Make sure the tmp files we open are unreadable, there is a short race
189    # between when the temp file is opened and unlinked that some one else
190    # could open it or hard link it. This is not important however as no 
191    # Secure data is fed through the temp files.
192    OldMask = os.umask(0777);
193    try:
194       Output = tempfile.TemporaryFile("w+b");
195       GPGText = tempfile.TemporaryFile("w+b");
196       InPipe = os.pipe();
197       InPipe = [InPipe[0],InPipe[1]];
198    finally:
199       os.umask(OldMask);
200       
201    try:
202       # Fork off GPG in a horrible way, we redirect most of its FDs
203       # Input comes from a pipe and its two outputs are spooled to unlinked
204       # temp files (ie private)
205       Child = os.fork();
206       if Child == 0:
207          try:
208             os.dup2(InPipe[0],0);
209             os.close(InPipe[1]);
210             os.dup2(Output.fileno(),1);
211             os.dup2(os.open("/dev/null",os.O_WRONLY),2);
212             os.dup2(GPGText.fileno(),3);
213             
214             Args = [Program,"--status-fd","3"] + GPGBasicOptions + GPGKeyRings + Options
215             os.execvp(Program,Args);
216          finally:
217             os._exit(100);
218       
219       # Get rid of the other end of the pipe
220       os.close(InPipe[0])
221       InPipe[0] = -1;
222
223       # Send the message
224       if Message != None:
225          try:
226             os.write(InPipe[1],Message);
227          except:
228            pass;
229       os.close(InPipe[1]);
230       InPipe[1] = -1;
231
232       # Wait for GPG to finish
233       Exit = os.waitpid(Child,0);
234
235       # Create the result including the new readable file descriptors
236       Result = (Exit,os.fdopen(os.dup(GPGText.fileno()),"r"), \
237                 os.fdopen(os.dup(Output.fileno()),"r"));
238       Result[1].seek(0);
239       Result[2].seek(0);
240
241       Output.close();
242       GPGText.close();
243       return Result;
244    finally:
245       if InPipe[0] != -1:
246          os.close(InPipe[0]);
247       if InPipe[1] != -1:
248          os.close(InPipe[1]);
249       Output.close();
250       GPGText.close();
251
252 # This takes a text passage, a destination and a flag indicating the 
253 # compatibility to use and returns an encrypted message to the recipient.
254 # It is best if the recipient is specified using the hex key fingerprint
255 # of the target, ie 0x64BE1319CCF6D393BF87FF9358A6D4EE
256 def GPGEncrypt(Message,To,PGP2):
257    # Encrypt using the PGP5 block encoding and with the PGP5 option set.
258    # This will handle either RSA or DSA/DH asymetric keys.
259    # In PGP2 compatible mode IDEA and rfc1991 encoding are used so that
260    # PGP2 can read the result. RSA keys do not need PGP2 to be set, as GPG
261    # can read a message encrypted with blowfish and RSA.
262    if PGP2 == 0:
263       try:
264          Res = None;
265          Res = GPGWriteFilter(GPGPath,["-r",To]+GPGEncryptOptions,Message);
266          if Res[0][1] != 0:
267             return None;
268          Text = Res[2].read();
269          return Text;
270       finally:
271          if Res != None:
272             Res[1].close();
273             Res[2].close();
274    else:
275       # We have to call gpg with a filename or it will create a packet that
276       # PGP2 cannot understand.
277       TmpName = tempfile.mktemp();
278       try:
279          Res = None;
280          MsgFile = open(TmpName,"wc");
281          MsgFile.write(Message);
282          MsgFile.close();
283          Res = GPGWriteFilter(GPGPath,["-r",To]+GPGEncryptPGP2Options+[TmpName],None);
284          if Res[0][1] != 0:
285             return None;
286          Text = Res[2].read();
287          return Text;
288       finally:
289          try:
290             os.unlink(TmpName);
291          except:
292             pass;
293          if Res != None:
294             Res[1].close();
295             Res[2].close();
296
297 # Checks the signature of a standard PGP message, like that returned by
298 # GetClearSig. It returns a large tuple of the form:
299 #   (Why,(SigId,Date,KeyFinger),(KeyID,KeyFinger,Owner,Length,PGP2),Text);
300 # Where,
301 #  Why = None if checking was OK otherwise an error string. 
302 #  SigID+Date represent something suitable for use in a replay cache. The
303 #             date is returned as the number of seconds since the UTC epoch.
304 #             The keyID is also in this tuple for easy use of the replay 
305 #             cache
306 #  KeyID, KeyFinger and Owner represent the Key used to sign this message
307 #         PGP2 indicates if the message was created using PGP 2.x 
308 #  Text is the full byte-for-byte signed text in a string
309 def GPGCheckSig(Message):
310    Res = None;
311    try:
312       Res = GPGWriteFilter(GPGPath,GPGSigOptions,Message);
313       Exit = Res[0];
314
315       # Parse the GPG answer
316       Strm = Res[1];
317       GoodSig = 0;
318       SigId = None;
319       KeyFinger = None;
320       KeyID = None;
321       Owner = None;
322       Date = None;
323       Why = None;
324       TagMap = {};
325       while(1):
326          # Grab and split up line
327          Line = Strm.readline();
328          if Line == "":
329             break;
330          Split = re.split("[ \n]",Line);
331          if Split[0] != "[GNUPG:]":
332             continue;
333
334          # We only process the first occurance of any tag.
335          if TagMap.has_key(Split[1]):
336             continue;
337          TagMap[Split[1]] = None;
338
339          # Good signature response
340          if Split[1] == "GOODSIG":
341             # Just in case GPG returned a bad signal before this (bug?)
342             if Why == None:
343                GoodSig = 1;
344             KeyID = Split[2];
345             Owner = ' '.join(Split[3:])
346             # If this message is signed with a subkey which has not yet
347             # expired, GnuPG will say GOODSIG here, even if the primary
348             # key already has expired.  This came up in discussion of
349             # bug #489225.  GPGKeySearch only returns non-expired keys.
350             Verify = GPGKeySearch(KeyID);
351             if len(Verify) == 0:
352                GoodSig = 0
353                Why = "Key has expired (no unexpired key found in keyring matching %s)"%(KeyId);
354
355          # Bad signature response
356          if Split[1] == "BADSIG":
357             GoodSig = 0;
358             KeyID = Split[2];
359             Why = "Verification of signature failed";
360
361          # Bad signature response
362          if Split[1] == "ERRSIG":
363             GoodSig = 0;
364             KeyID = Split[2];
365             if len(Split) <= 7:
366                Why = "GPG error, ERRSIG status tag is invalid";
367             elif Split[7] == '9':
368                Why = "Unable to verify signature, signing key missing.";
369             elif Split[7] == '4':
370                Why = "Unable to verify signature, unknown packet format/key type";
371             else:   
372                Why = "Unable to verify signature, unknown reason";
373
374          if Split[1] == "NO_PUBKEY":
375             GoodSig = 0;
376             Why = "Unable to verify signature, signing key missing.";
377
378          # Expired signature
379          if Split[1] == "EXPSIG":
380             GoodSig = 0;
381             Why = "Signature has expired";
382
383          # Expired signature
384          if Split[1] == "EXPKEYSIG":
385             GoodSig = 0;
386             Why = "Signing key (%s, %s) has expired"%(Split[2], Split[3]);
387
388          # Revoked key
389          if Split[1] == "KEYREVOKED" or Split[1] == "REVKEYSIG":
390             GoodSig = 0;
391             Why = "Signing key has been revoked";
392
393          # Corrupted packet
394          if Split[1] == "NODATA" or Split[1] == "BADARMOR":
395             GoodSig = 0;
396             Why = "The packet was corrupted or contained no data";
397             
398          # Signature ID
399          if Split[1] == "SIG_ID":
400             SigId = Split[2];
401             Date = long(Split[4]);
402
403          # ValidSig has the key finger print
404          if Split[1] == "VALIDSIG":
405             # Use the fingerprint of the primary key when available
406             if len(Split) >= 12:
407                KeyFinger = Split[11];
408             else:
409                KeyFinger = Split[2];
410
411       # Reopen the stream as a readable stream
412       Text = Res[2].read();
413
414       # A gpg failure is an automatic bad signature
415       if Exit[1] != 0 and Why == None:
416          GoodSig = 0;
417          Why = "GPG execution failed " + str(Exit[0]);
418
419       if GoodSig == 0 and (Why == None or len(Why) == 0):
420          Why = "Checking Failed";
421
422       # Try to decide if this message was sent using PGP2
423       PGP2Message = 0;
424       if (re.search("-----[\n\r][\n\r]?Version: 2\\.",Message) != None):
425          PGP2Message = 1;
426
427       return (Why,(SigId,Date,KeyFinger),(KeyID,KeyFinger,Owner,0,PGP2Message),Text);
428    finally:
429       if Res != None:
430          Res[1].close();
431          Res[2].close();
432
433 # Search for keys given a search pattern. The pattern is passed directly
434 # to GPG for processing. The result is a list of tuples of the form:
435 #   (KeyID,KeyFinger,Owner,Length)
436 # Which is similar to the key identification tuple output by GPGChecksig
437 #
438 # Do not return keys where the primary key has expired
439 def GPGKeySearch(SearchCriteria):
440    Args = [GPGPath] + GPGBasicOptions + GPGKeyRings + GPGSearchOptions + \
441           [SearchCriteria," 2> /dev/null"]
442    Strm = None;
443    Result = [];
444    Owner = "";
445    KeyID = "";
446    Expired = None;
447    Hits = {};
448
449    dir = os.path.expanduser("~/.gnupg")
450    if not os.path.isdir(dir):
451       os.mkdir(dir, 0700)
452                       
453    try:
454       Strm = os.popen(" ".join(Args),"r")
455       
456       while(1):
457          # Grab and split up line
458          Line = Strm.readline();
459          if Line == "":
460             break;
461          Split = Line.split(":")
462
463          # Store some of the key fields
464          if Split[0] == 'pub':
465             KeyID = Split[4];
466             Owner = Split[9];
467             Length = int(Split[2]);
468             Expired = Split[1] == 'e'
469
470          # Output the key
471          if Split[0] == 'fpr':
472             if Hits.has_key(Split[9]):
473                continue;
474             Hits[Split[9]] = None;
475             if not Expired:
476                Result.append( (KeyID,Split[9],Owner,Length) );
477    finally:
478       if Strm != None:
479          Strm.close();
480    return Result;
481
482 # Print the available key information in a format similar to GPG's output
483 # We do not know the values of all the feilds so they are just replaced
484 # with ?'s
485 def GPGPrintKeyInfo(Ident):
486    print "pub  %u?/%s ??-??-?? %s" % (Ident[3],Ident[0][-8:],Ident[2]);
487    print "     key fingerprint = 0x%s" % (Ident[1]);
488
489 # Perform a substition of template 
490 def TemplateSubst(Map,Template):
491    for x in Map.keys():
492       Template = Template.replace(x, Map[x])
493    return Template;
494
495 # The replay class uses a python DB (BSD db if avail) to implement
496 # protection against replay. Replay is an attacker capturing the
497 # plain text signed message and sending it back to the victim at some
498 # later date. Each signature has a unique signature ID (and signing 
499 # Key Fingerprint) as well as a timestamp. The first stage of replay
500 # protection is to ensure that the timestamp is reasonable, in particular
501 # not to far ahead or too far behind the current system time. The next
502 # step is to look up the signature + key fingerprint in the replay database
503 # and determine if it has been recived. The database is cleaned out 
504 # periodically and old signatures are discarded. By using a timestamp the
505 # database size is bounded to being within the range of the allowed times
506 # plus a little fuzz. The cache is serialized with a flocked lock file
507 class ReplayCache:
508    def __init__(self,Database):
509       self.Lock = open(Database + ".lock","w",0600);
510       fcntl.flock(self.Lock.fileno(),fcntl.LOCK_EX);
511       self.DB = anydbm.open(Database,"c",0600);
512       self.CleanCutOff = CleanCutOff;
513       self.AgeCutOff = AgeCutOff;
514       self.FutureCutOff = FutureCutOff;
515       
516    # Close the cache and lock
517    def __del__(self):
518       self.close();
519    def close(self):
520       self.DB.close();
521       self.Lock.close();
522       
523    # Clean out any old signatures
524    def Clean(self):
525       CutOff = time.time() - self.CleanCutOff;
526       for x in self.DB.keys():
527          if int(self.DB[x]) <= CutOff:
528             del self.DB[x];
529     
530    # Check a signature. 'sig' is a 3 tuple that has the sigId, date and
531    # key ID
532    def Check(self,Sig):
533       if Sig[0] == None or Sig[1] == None or Sig[2] == None:
534          return "Invalid signature";
535       if int(Sig[1]) > time.time() + self.FutureCutOff:
536          return "Signature has a time too far in the future";
537       if self.DB.has_key(Sig[0] + '-' + Sig[2]):
538          return "Signature has already been received";
539       if int(Sig[1]) < time.time() - self.AgeCutOff:
540          return "Signature has passed the age cut off ";
541       # + str(int(Sig[1])) + ',' + str(time.time()) + "," + str(Sig);
542       return None;
543            
544    # Add a signature, the sig is the same as is given to Check
545    def Add(self,Sig):
546       if Sig[0] == None or Sig[1] == None:
547          raise RuntimeError,"Invalid signature";
548       if Sig[1] < time.time() - self.CleanCutOff:
549          return;
550       Key = Sig[0] + '-' + Sig[2]
551       if self.DB.has_key(Key):
552          if int(self.DB[Key]) < Sig[1]:
553             self.DB[Key] = str(int(Sig[1]));
554       else:
555          self.DB[Key] = str(int(Sig[1]));
556