Establish *PK* as mechanism for locked accounts with mail forwarding intact.
[mirror/userdir-ldap.git] / ud-generate
1 #!/usr/bin/env python
2 # -*- mode: python -*-
3 # Generates passwd, shadow and group files from the ldap directory.
4
5 #   Copyright (c) 2000-2001  Jason Gunthorpe <jgg@debian.org>
6 #   Copyright (c) 2003-2004  James Troup <troup@debian.org>
7 #   Copyright (c) 2004-2005,7  Joey Schulze <joey@infodrom.org>
8 #   Copyright (c) 2001-2007  Ryan Murray <rmurray@debian.org>
9 #
10 #   This program is free software; you can redistribute it and/or modify
11 #   it under the terms of the GNU General Public License as published by
12 #   the Free Software Foundation; either version 2 of the License, or
13 #   (at your option) any later version.
14 #
15 #   This program is distributed in the hope that it will be useful,
16 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
17 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 #   GNU General Public License for more details.
19 #
20 #   You should have received a copy of the GNU General Public License
21 #   along with this program; if not, write to the Free Software
22 #   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23
24 import string, re, time, ldap, getopt, sys, os, pwd, posix, socket, base64, sha
25 from userdir_ldap import *;
26
27 global Allowed;
28 global CurrentHost;
29
30 PasswdAttrs = None;
31 GroupIDMap = {};
32 Allowed = None;
33 CurrentHost = "";
34
35 EmailCheck = re.compile("^([^ <>@]+@[^ ,<>@]+)?$");
36 BSMTPCheck = re.compile(".*mx 0 (gluck)\.debian\.org\..*",re.DOTALL);
37 DNSZone = ".debian.net"
38
39 def Sanitize(Str):
40   return string.translate(Str,string.maketrans("\n\r\t","$$$"));
41
42 def DoLink(From,To,File):
43    try: posix.remove(To+File);
44    except: pass;
45    posix.link(From+File,To+File);
46
47 # See if this user is in the group list
48 def IsInGroup(DnRecord):
49   if Allowed == None:
50      return 1;
51
52   # See if the primary group is in the list
53   if Allowed.has_key(GetAttr(DnRecord,"gidNumber")) != 0:
54      return 1;
55
56   # Check the host based ACL
57   if DnRecord[1].has_key("allowedHost") != 0:
58      for I in DnRecord[1]["allowedHost"]:
59         if CurrentHost == I:
60            return 1;
61
62   # See if there are supplementary groups
63   if DnRecord[1].has_key("supplementaryGid") == 0:
64      return 0;
65
66   # Check the supplementary groups
67   for I in DnRecord[1]["supplementaryGid"]:
68      if Allowed.has_key(I):
69         return 1;
70   return 0;
71
72 def Die(File,F,Fdb):
73    if F != None:
74       F.close();
75    if Fdb != None:
76       Fdb.close();
77    try: os.remove(File + ".tmp");
78    except: pass;
79    try: os.remove(File + ".tdb.tmp");
80    except: pass;
81
82 def Done(File,F,Fdb):
83   if F != None:
84     F.close();
85     os.rename(File + ".tmp",File);
86   if Fdb != None:
87     Fdb.close();
88     os.rename(File + ".tdb.tmp",File+".tdb");
89   
90 # Generate the password list
91 def GenPasswd(l,File,HomePrefix):
92   F = None;
93   try:
94    F = open(File + ".tdb.tmp","w");
95
96    # Fetch all the users
97    global PasswdAttrs;
98    if PasswdAttrs == None:
99       raise "No Users";
100
101    I = 0;
102    for x in PasswdAttrs:
103       if x[1].has_key("uidNumber") == 0 or IsInGroup(x) == 0:
104          continue;
105
106       # Do not let people try to buffer overflow some busted passwd parser.
107       if len(GetAttr(x,"gecos")) > 100 or len(GetAttr(x,"loginShell")) > 50:
108          continue;
109
110       Line = "%s:x:%s:%s:%s:%s%s:%s" % (GetAttr(x,"uid"),\
111               GetAttr(x,"uidNumber"),GetAttr(x,"gidNumber"),\
112               GetAttr(x,"gecos"),HomePrefix,GetAttr(x,"uid"),\
113               GetAttr(x,"loginShell"));
114
115       Line = Sanitize(Line) + "\n";
116       F.write("0%u %s" % (I,Line));
117       F.write(".%s %s" % (GetAttr(x,"uid"),Line));
118       F.write("=%s %s" % (GetAttr(x,"uidNumber"),Line));
119       I = I + 1;
120
121   # Oops, something unspeakable happened.
122   except:
123    Die(File,None,F);
124    raise;
125   Done(File,None,F);
126
127 # Generate the shadow list
128 def GenShadow(l,File):
129   F = None;
130   try:
131    OldMask = os.umask(0077);
132    F = open(File + ".tdb.tmp","w",0600);
133    os.umask(OldMask);
134
135    # Fetch all the users
136    global PasswdAttrs;
137    if PasswdAttrs == None:
138       raise "No Users";
139
140    I = 0;
141    for x in PasswdAttrs:
142       if x[1].has_key("uidNumber") == 0 or IsInGroup(x) == 0:
143          continue;
144          
145       Pass = GetAttr(x,"userPassword");
146       if Pass[0:7] != "{crypt}" or len(Pass) > 50:
147          Pass = '*';
148       else:
149          Pass = Pass[7:];
150       Line = "%s:%s:%s:%s:%s:%s:%s:%s:" % (GetAttr(x,"uid"),\
151               Pass,GetAttr(x,"shadowLastChange"),\
152               GetAttr(x,"shadowMin"),GetAttr(x,"shadowMax"),\
153               GetAttr(x,"shadowWarning"),GetAttr(x,"shadowinactive"),\
154               GetAttr(x,"shadowexpire"));
155       Line = Sanitize(Line) + "\n";
156       F.write("0%u %s" % (I,Line));
157       F.write(".%s %s" % (GetAttr(x,"uid"),Line));
158       I = I + 1;
159
160   # Oops, something unspeakable happened.
161   except:
162    Die(File,None,F);
163    raise;
164   Done(File,None,F);
165
166 # Generate the shadow list
167 def GenSSHShadow(l,File):
168   F = None;
169   try:
170    OldMask = os.umask(0077);
171    F = open(File + ".tmp","w",0600);
172    os.umask(OldMask);
173
174    # Fetch all the users
175    global PasswdAttrs;
176    if PasswdAttrs == None:
177       raise "No Users";
178
179    for x in PasswdAttrs:
180       # If the account is locked, do not write it.
181       # This is a partial stop-gap. The ssh also needs to change this
182       # to ignore ~/.ssh/authorized* files.
183       if (string.find(GetAttr(x,"userPassword"),"*LK*")  != -1) \
184              or (string.find(GetAttr(x,"userPassword"),"*PK*")  != -1):
185          continue;
186
187       if x[1].has_key("uidNumber") == 0 or \
188          x[1].has_key("sshRSAAuthKey") == 0:
189          continue;
190       for I in x[1]["sshRSAAuthKey"]:
191          User = GetAttr(x,"uid");
192          Line = "%s: %s" %(User,I);
193          Line = Sanitize(Line) + "\n";
194          F.write(Line);
195   # Oops, something unspeakable happened.
196   except:
197    Die(File,F,None);
198    raise;
199   Done(File,F,None);
200
201 # Generate the group list
202 def GenGroup(l,File):
203   F = None;
204   try:
205    F = open(File + ".tdb.tmp","w");
206
207    # Generate the GroupMap
208    GroupMap = {};
209    for x in GroupIDMap.keys():
210       GroupMap[x] = [];
211       
212    # Fetch all the users
213    global PasswdAttrs;
214    if PasswdAttrs == None:
215       raise "No Users";
216
217    # Sort them into a list of groups having a set of users
218    for x in PasswdAttrs:
219       if x[1].has_key("uidNumber") == 0 or IsInGroup(x) == 0:
220          continue;
221       if x[1].has_key("supplementaryGid") == 0:
222          continue;
223          
224       for I in x[1]["supplementaryGid"]:
225          if GroupMap.has_key(I):
226             GroupMap[I].append(GetAttr(x,"uid"));
227          else:
228             print "Group does not exist ",I,"but",GetAttr(x,"uid"),"is in it";
229             
230    # Output the group file.
231    J = 0;
232    for x in GroupMap.keys():
233       if GroupIDMap.has_key(x) == 0:
234          continue;
235       Line = "%s:x:%u:" % (x,GroupIDMap[x]);
236       Comma = '';
237       for I in GroupMap[x]:
238         Line = Line + ("%s%s" % (Comma,I));
239         Comma = ',';
240       Line = Sanitize(Line) + "\n";
241       F.write("0%u %s" % (J,Line));
242       F.write(".%s %s" % (x,Line));
243       F.write("=%u %s" % (GroupIDMap[x],Line));
244       J = J + 1;
245       
246   # Oops, something unspeakable happened.
247   except:
248    Die(File,None,F);
249    raise;
250   Done(File,None,F);
251
252 # Generate the email forwarding list
253 def GenForward(l,File):
254   F = None;
255   try:
256    OldMask = os.umask(0022);
257    F = open(File + ".tmp","w",0644);
258    os.umask(OldMask);
259
260    # Fetch all the users
261    global PasswdAttrs;
262    if PasswdAttrs == None:
263       raise "No Users";
264
265    # Write out the email address for each user
266    for x in PasswdAttrs:
267       if x[1].has_key("emailForward") == 0 or IsInGroup(x) == 0:
268          continue;
269       
270       # Do not allow people to try to buffer overflow busted parsers
271       if len(GetAttr(x,"emailForward")) > 200:
272          continue;
273
274       # Check the forwarding address
275       if EmailCheck.match(GetAttr(x,"emailForward")) == None:
276          continue;
277       Line = "%s: %s" % (GetAttr(x,"uid"),GetAttr(x,"emailForward"));
278       Line = Sanitize(Line) + "\n";
279       F.write(Line);
280       
281   # Oops, something unspeakable happened.
282   except:
283    Die(File,F,None);
284    raise;
285   Done(File,F,None);
286
287 def GenAllForward(l,File):
288   Fdb = None;
289   try:
290    OldMask = os.umask(0022);
291    Fdb = os.popen("cdbmake %s %s.tmp"%(File,File),"w");
292    os.umask(OldMask);
293
294    # Fetch all the users
295    global PasswdAttrs;
296    if PasswdAttrs == None:
297       raise "No Users";
298
299    # Write out the email address for each user
300    for x in PasswdAttrs:
301       if x[1].has_key("emailForward") == 0:
302          continue;
303       
304       # Do not allow people to try to buffer overflow busted parsers
305       Forward = GetAttr(x,"emailForward");
306       if len(Forward) > 200:
307          continue;
308
309       # Check the forwarding address
310       if EmailCheck.match(Forward) == None:
311          continue;
312          
313       User = GetAttr(x,"uid");
314       Fdb.write("+%d,%d:%s->%s\n"%(len(User),len(Forward),User,Forward));
315    Fdb.write("\n");
316   # Oops, something unspeakable happened.
317   except:
318     Fdb.close();
319     raise;
320   if Fdb.close() != None:
321     raise "cdbmake gave an error";
322
323 # Generate the anon XEarth marker file 
324 def GenMarkers(l,File):
325   F = None;
326   try:
327    F = open(File + ".tmp","w");
328
329    # Fetch all the users
330    global PasswdAttrs;
331    if PasswdAttrs == None:
332       raise "No Users";
333
334    # Write out the position for each user
335    for x in PasswdAttrs:
336       if x[1].has_key("latitude") == 0 or x[1].has_key("longitude") == 0:
337          continue;       
338       try:
339          Line = "%8s %8s \"\""%(DecDegree(GetAttr(x,"latitude"),1),DecDegree(GetAttr(x,"longitude"),1));
340          Line = Sanitize(Line) + "\n";
341          F.write(Line);
342       except:
343          pass;
344       
345   # Oops, something unspeakable happened.
346   except:
347    Die(File,F,None);
348    raise;
349   Done(File,F,None);
350
351 # Generate the debian-private subscription list
352 def GenPrivate(l,File):
353   F = None;
354   try:
355    F = open(File + ".tmp","w");
356
357    # Fetch all the users
358    global PasswdAttrs;
359    if PasswdAttrs == None:
360       raise "No Users";
361
362    # Write out the position for each user
363    for x in PasswdAttrs:
364       if x[1].has_key("privateSub") == 0:
365          continue;
366
367       # If the account is locked, do not write it
368       if (string.find(GetAttr(x,"userPassword"),"*LK*")  != -1) \
369              or (string.find(GetAttr(x,"userPassword"),"*PK*")  != -1):
370          continue;
371
372       # If the account has no PGP key, do not write it
373       if x[1].has_key("keyFingerPrint") == 0:
374          continue;
375
376       # Must be in the Debian group (yuk, hard coded for now)
377       if GetAttr(x,"gidNumber") != "800":
378          continue;
379
380       try:
381          Line = "%s"%(GetAttr(x,"privateSub"));
382          Line = Sanitize(Line) + "\n";
383          F.write(Line);
384       except:
385          pass;
386       
387   # Oops, something unspeakable happened.
388   except:
389    Die(File,F,None);
390    raise;
391   Done(File,F,None);
392
393 # Generate the list of local addresses that refuse all mail
394 def GenMailDisable(l,File):
395   F = None;
396   try:
397    F = open(File + ".tmp","w");
398
399    # Fetch all the users
400    global PasswdAttrs;
401    if PasswdAttrs == None:
402       raise "No Users";
403
404    for x in PasswdAttrs:
405       Reason = None
406       
407       # If the account is locked, disable incoming mail
408       if (string.find(GetAttr(x,"userPassword"),"*LK*")  != -1):
409          Reason = "user account locked"
410       else:
411          if x[1].has_key("mailDisableMessage"):
412             Reason = GetAttr(x,"mailDisableMessage")
413          else:
414             continue
415
416       # Must be in the Debian group (yuk, hard coded for now)
417       if GetAttr(x,"gidNumber") != "800":
418          continue;
419
420       try:
421          Line = "%s: %s"%(GetAttr(x,"uid"),Reason);
422          Line = Sanitize(Line) + "\n";
423          F.write(Line);
424       except:
425          pass;
426       
427   # Oops, something unspeakable happened.
428   except:
429    Die(File,F,None);
430    raise;
431   Done(File,F,None);
432
433 # Generate a list of uids that should have boolean affects applied
434 def GenMailBool(l,File,Key):
435   F = None;
436   try:
437    F = open(File + ".tmp","w");
438
439    # Fetch all the users
440    global PasswdAttrs;
441    if PasswdAttrs == None:
442       raise "No Users";
443
444    for x in PasswdAttrs:
445       Reason = None
446       
447       if x[1].has_key(Key) == 0:
448          continue
449
450       # Must be in the Debian group (yuk, hard coded for now)
451       if GetAttr(x,"gidNumber") != "800":
452          continue
453
454       if GetAttr(x,Key) != "TRUE":
455          continue
456
457       try:
458          Line = "%s"%(GetAttr(x,"uid"));
459          Line = Sanitize(Line) + "\n";
460          F.write(Line);
461       except:
462          pass;
463       
464   # Oops, something unspeakable happened.
465   except:
466    Die(File,F,None);
467    raise;
468   Done(File,F,None);
469
470 # Generate a list of hosts for RBL or whitelist purposes.
471 def GenMailList(l,File,Key):
472   F = None;
473   try:
474    F = open(File + ".tmp","w");
475
476    # Fetch all the users
477    global PasswdAttrs;
478    if PasswdAttrs == None:
479       raise "No Users";
480
481    for x in PasswdAttrs:
482       Reason = None
483       
484       if x[1].has_key(Key) == 0:
485          continue
486
487       # Must be in the Debian group (yuk, hard coded for now)
488       if GetAttr(x,"gidNumber") != "800":
489          continue
490
491       try:
492          found = 0
493          Line = None
494          for z in x[1][Key]:
495              if Key == "mailWhitelist":
496                  if re.match('^[-\w.]+(/[\d]+)?$',z) == None:
497                      continue
498              else:
499                  if re.match('^[-\w.]+$',z) == None:
500                      continue
501              if found == 0:
502                  found = 1
503                  Line = GetAttr(x,"uid")
504              else:
505                  Line += " "
506              Line += ": " + z
507              if Key == "mailRHSBL":
508                  Line += "/$sender_address_domain"
509
510          if Line != None:
511              Line = Sanitize(Line) + "\n";
512              F.write(Line);
513       except:
514          pass;
515       
516   # Oops, something unspeakable happened.
517   except:
518    Die(File,F,None);
519    raise;
520   Done(File,F,None);
521
522 # Generate the DNS Zone file
523 def GenDNS(l,File,HomePrefix):
524   F = None;
525   try:
526    F = open(File + ".tmp","w");
527    
528    # Fetch all the users
529    global PasswdAttrs;
530    if PasswdAttrs == None:
531       raise "No Users";
532
533    # Write out the zone file entry for each user
534    for x in PasswdAttrs:
535       if x[1].has_key("dnsZoneEntry") == 0:
536          continue;
537
538       # If the account has no PGP key, do not write it
539       if x[1].has_key("keyFingerPrint") == 0:
540          continue;
541       try:
542          F.write("; %s\n"%(EmailAddress(x)));
543          for z in x[1]["dnsZoneEntry"]:
544             Split = string.split(string.lower(z));
545             if string.lower(Split[1]) == 'in':
546                for y in range(0,len(Split)):
547                   if Split[y] == "$":
548                      Split[y] = "\n\t";
549                Line = string.join(Split," ") + "\n";
550                F.write(Line);
551                
552                Host = Split[0] + DNSZone;
553                if BSMTPCheck.match(Line) != None:
554                    F.write("; Has BSMTP\n");
555                                
556                # Write some identification information
557                if string.lower(Split[2]) == "a":
558                   Line = "%s IN TXT \"%s\"\n"%(Split[0],EmailAddress(x));
559                   for y in x[1]["keyFingerPrint"]:
560                      Line = Line + "%s IN TXT \"PGP %s\"\n"%(Split[0],FormatPGPKey(y));
561                   F.write(Line);
562             else:
563                Line = "; Err %s"%(str(Split));
564                F.write(Line);
565
566          F.write("\n");
567       except:
568          F.write("; Errors\n");
569          pass;
570       
571   # Oops, something unspeakable happened.
572   except:
573    Die(File,F,None);
574    raise;
575   Done(File,F,None);
576
577 # Generate the DNS SSHFP records
578 def GenSSHFP(l,File,HomePrefix):
579   F = None
580   try:
581    F = open(File + ".tmp","w")
582    
583    # Fetch all the hosts
584    global HostAttrs
585    if HostAttrs == None:
586       raise "No Hosts"
587
588    for x in HostAttrs:
589       if x[1].has_key("hostname") == 0 or \
590          x[1].has_key("sshRSAHostKey") == 0:
591          continue
592       Host = GetAttr(x,"hostname");
593       Algorithm = None
594       for I in x[1]["sshRSAHostKey"]:
595          Split = string.split(I)
596          if Split[0] == 'ssh-rsa':
597             Algorithm = 1
598          if Split[0] == 'ssh-dss':
599             Algorithm = 2
600          if Algorithm == None:
601             continue
602          Fingerprint = sha.new(base64.decodestring(Split[1])).hexdigest()
603          Line = "%s. IN SSHFP %u 1 %s" % (Host,Algorithm,Fingerprint)
604          Line = Sanitize(Line) + "\n"
605          F.write(Line)
606   # Oops, something unspeakable happened.
607   except:
608    Die(File,F,None)
609    raise;
610   Done(File,F,None)
611
612 # Generate the BSMTP file
613 def GenBSMTP(l,File,HomePrefix):
614   F = None;
615   try:
616    F = open(File + ".tmp","w");
617    
618    # Fetch all the users
619    global PasswdAttrs;
620    if PasswdAttrs == None:
621       raise "No Users";
622
623    # Write out the zone file entry for each user
624    for x in PasswdAttrs:
625       if x[1].has_key("dnsZoneEntry") == 0:
626          continue;
627
628       # If the account has no PGP key, do not write it
629       if x[1].has_key("keyFingerPrint") == 0:
630          continue;
631       try:
632          for z in x[1]["dnsZoneEntry"]:
633             Split = string.split(string.lower(z));
634             if string.lower(Split[1]) == 'in':
635                for y in range(0,len(Split)):
636                   if Split[y] == "$":
637                      Split[y] = "\n\t";
638                Line = string.join(Split," ") + "\n";
639                
640                Host = Split[0] + DNSZone;
641                if BSMTPCheck.match(Line) != None:
642                    F.write("%s: user=%s group=Debian file=%s%s/bsmtp/%s\n"%(Host,
643                                GetAttr(x,"uid"),HomePrefix,GetAttr(x,"uid"),Host));
644                                
645       except:
646          F.write("; Errors\n");
647          pass;
648       
649   # Oops, something unspeakable happened.
650   except:
651    Die(File,F,None);
652    raise;
653   Done(File,F,None);
654
655 # Generate the ssh known hosts file
656 def GenSSHKnown(l,File):
657   F = None;
658   try:
659    OldMask = os.umask(0022);
660    F = open(File + ".tmp","w",0644);
661    os.umask(OldMask);
662
663    global HostAttrs
664    if HostAttrs == None:
665       raise "No Hosts";
666    
667    for x in HostAttrs:
668       if x[1].has_key("hostname") == 0 or \
669          x[1].has_key("sshRSAHostKey") == 0:
670          continue;
671       Host = GetAttr(x,"hostname");
672       SHost = string.find(Host,".");
673       for I in x[1]["sshRSAHostKey"]:
674          if SHost == None:
675             Line = "%s,%s %s" %(Host,socket.gethostbyname(Host),I);
676          else:
677             Line = "%s,%s,%s %s" %(Host,Host[0:SHost],socket.gethostbyname(Host),I);
678          Line = Sanitize(Line) + "\n";
679          F.write(Line);
680   # Oops, something unspeakable happened.
681   except:
682    Die(File,F,None);
683    raise;
684   Done(File,F,None);
685
686 # Generate the debianhosts file (list of all IP addresses)
687 def GenHosts(l,File):
688   F = None;
689   try:
690    OldMask = os.umask(0022);
691    F = open(File + ".tmp","w",0644);
692    os.umask(OldMask);
693
694    # Fetch all the hosts
695    HostNames = l.search_s(HostBaseDn,ldap.SCOPE_ONELEVEL,"hostname=*",\
696                 ["hostname"]);
697    
698    if HostNames == None:
699       raise "No Hosts";
700
701    for x in HostNames:
702       if x[1].has_key("hostname") == 0:
703          continue;
704       Host = GetAttr(x,"hostname");
705       try:
706         Addr = socket.gethostbyname(Host);
707         F.write(Addr + "\n");
708       except:
709         pass
710   # Oops, something unspeakable happened.
711   except:
712    Die(File,F,None);
713    raise;
714   Done(File,F,None);
715
716 # Connect to the ldap server
717 l = ldap.open(LDAPServer);
718 F = open(PassDir+"/pass-"+pwd.getpwuid(os.getuid())[0],"r");
719 Pass = string.split(string.strip(F.readline())," ");
720 F.close();
721 l.simple_bind_s("uid="+Pass[0]+","+BaseDn,Pass[1]);
722
723 # Fetch all the groups
724 GroupIDMap = {};
725 Attrs = l.search_s(BaseDn,ldap.SCOPE_ONELEVEL,"gid=*",\
726                   ["gid","gidNumber"]);
727
728 # Generate the GroupMap and GroupIDMap
729 for x in Attrs:
730    if x[1].has_key("gidNumber") == 0:
731       continue;
732    GroupIDMap[x[1]["gid"][0]] = int(x[1]["gidNumber"][0]);
733
734 # Fetch all the users
735 PasswdAttrs = l.search_s(BaseDn,ldap.SCOPE_ONELEVEL,"uid=*",\
736                 ["uid","uidNumber","gidNumber","supplementaryGid",\
737                  "gecos","loginShell","userPassword","shadowLastChange",\
738                  "shadowMin","shadowMax","shadowWarning","shadowinactive",
739                  "shadowexpire","emailForward","latitude","longitude",\
740                  "allowedHost","sshRSAAuthKey","dnsZoneEntry","cn","sn",\
741                  "keyFingerPrint","privateSub","mailDisableMessage",\
742                  "mailGreylisting","mailCallout","mailRBL","mailRHSBL",\
743                  "mailWhitelist"]);
744 # Fetch all the hosts
745 HostAttrs    = l.search_s(HostBaseDn,ldap.SCOPE_ONELEVEL,"sshRSAHostKey=*",\
746                 ["hostname","sshRSAHostKey"]);
747
748 # Open the control file
749 if len(sys.argv) == 1:
750    F = open(GenerateConf,"r");
751 else:
752    F = open(sys.argv[1],"r")
753
754 # Generate global things
755 GlobalDir = GenerateDir+"/";
756 GenSSHShadow(l,GlobalDir+"ssh-rsa-shadow");
757 GenAllForward(l,GlobalDir+"mail-forward.cdb");
758 GenMarkers(l,GlobalDir+"markers");
759 GenPrivate(l,GlobalDir+"debian-private");
760 GenSSHKnown(l,GlobalDir+"ssh_known_hosts");
761 GenHosts(l,GlobalDir+"debianhosts");
762 GenMailDisable(l,GlobalDir+"mail-disable");
763 GenMailBool(l,GlobalDir+"mail-greylist","mailGreylisting");
764 GenMailBool(l,GlobalDir+"mail-callout","mailCallout");
765 GenMailList(l,GlobalDir+"mail-rbl","mailRBL");
766 GenMailList(l,GlobalDir+"mail-rhsbl","mailRHSBL");
767 GenMailList(l,GlobalDir+"mail-whitelist","mailWhitelist");
768
769 # Compatibility.
770 GenForward(l,GlobalDir+"forward-alias");
771    
772 while(1):
773    Line = F.readline();
774    if Line == "":
775       break;
776    Line = string.strip(Line);
777    if Line == "":
778       continue;
779    if Line[0] == '#':
780       continue;
781
782    Split = string.split(Line," ");
783    OutDir = GenerateDir + '/' + Split[0] + '/';
784    try: os.mkdir(OutDir);
785    except: pass;
786
787    # Get the group list and convert any named groups to numerics
788    GroupList = {};
789    ExtraList = {};
790    for I in Split[2:]:
791       if I[0] == '[':
792          ExtraList[I] = None;
793          continue;
794       GroupList[I] = None;
795       if GroupIDMap.has_key(I):
796          GroupList[str(GroupIDMap[I])] = None;
797
798    Allowed = GroupList;
799    if Allowed == {}:
800      Allowed = None
801    CurrentHost = Split[0];
802
803    sys.stdout.flush();
804    GenPasswd(l,OutDir+"passwd",Split[1]);
805    sys.stdout.flush();
806    GenGroup(l,OutDir+"group");
807    if ExtraList.has_key("[UNTRUSTED]"):
808         continue;
809    GenShadow(l,OutDir+"shadow");
810         
811    # Link in global things   
812    DoLink(GlobalDir,OutDir,"ssh-rsa-shadow");
813    DoLink(GlobalDir,OutDir,"markers");
814    DoLink(GlobalDir,OutDir,"mail-forward.cdb");
815    DoLink(GlobalDir,OutDir,"debianhosts");
816    DoLink(GlobalDir,OutDir,"ssh_known_hosts");
817    DoLink(GlobalDir,OutDir,"mail-disable");
818    DoLink(GlobalDir,OutDir,"mail-greylist");
819    DoLink(GlobalDir,OutDir,"mail-callout");
820    DoLink(GlobalDir,OutDir,"mail-rbl");
821    DoLink(GlobalDir,OutDir,"mail-rhsbl");
822    DoLink(GlobalDir,OutDir,"mail-whitelist");
823
824    # Compatibility.
825    DoLink(GlobalDir,OutDir,"forward-alias");
826
827    if ExtraList.has_key("[DNS]"):
828       GenDNS(l,OutDir+"dns-zone",Split[1]);
829       GenSSHFP(l,OutDir+"dns-sshfp",Split[1])
830       
831    if ExtraList.has_key("[BSMTP]"):
832       GenBSMTP(l,OutDir+"bsmtp",Split[1])
833
834    if ExtraList.has_key("[PRIVATE]"):
835       DoLink(GlobalDir,OutDir,"debian-private")