new field support for ud-info, new anti-spam related mail fields
[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  Joey Schulze <joey@infodrom.org>
8 #   Copyright (c) 2001-2006  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          continue;
185
186       if x[1].has_key("uidNumber") == 0 or \
187          x[1].has_key("sshRSAAuthKey") == 0:
188          continue;
189       for I in x[1]["sshRSAAuthKey"]:
190          User = GetAttr(x,"uid");
191          Line = "%s: %s" %(User,I);
192          Line = Sanitize(Line) + "\n";
193          F.write(Line);
194   # Oops, something unspeakable happened.
195   except:
196    Die(File,F,None);
197    raise;
198   Done(File,F,None);
199
200 # Generate the group list
201 def GenGroup(l,File):
202   F = None;
203   try:
204    F = open(File + ".tdb.tmp","w");
205
206    # Generate the GroupMap
207    GroupMap = {};
208    for x in GroupIDMap.keys():
209       GroupMap[x] = [];
210       
211    # Fetch all the users
212    global PasswdAttrs;
213    if PasswdAttrs == None:
214       raise "No Users";
215
216    # Sort them into a list of groups having a set of users
217    for x in PasswdAttrs:
218       if x[1].has_key("uidNumber") == 0 or IsInGroup(x) == 0:
219          continue;
220       if x[1].has_key("supplementaryGid") == 0:
221          continue;
222          
223       for I in x[1]["supplementaryGid"]:
224          if GroupMap.has_key(I):
225             GroupMap[I].append(GetAttr(x,"uid"));
226          else:
227             print "Group does not exist ",I,"but",GetAttr(x,"uid"),"is in it";
228             
229    # Output the group file.
230    J = 0;
231    for x in GroupMap.keys():
232       if GroupIDMap.has_key(x) == 0:
233          continue;
234       Line = "%s:x:%u:" % (x,GroupIDMap[x]);
235       Comma = '';
236       for I in GroupMap[x]:
237         Line = Line + ("%s%s" % (Comma,I));
238         Comma = ',';
239       Line = Sanitize(Line) + "\n";
240       F.write("0%u %s" % (J,Line));
241       F.write(".%s %s" % (x,Line));
242       F.write("=%u %s" % (GroupIDMap[x],Line));
243       J = J + 1;
244       
245   # Oops, something unspeakable happened.
246   except:
247    Die(File,None,F);
248    raise;
249   Done(File,None,F);
250
251 # Generate the email forwarding list
252 def GenForward(l,File):
253   F = None;
254   try:
255    OldMask = os.umask(0022);
256    F = open(File + ".tmp","w",0644);
257    os.umask(OldMask);
258
259    # Fetch all the users
260    global PasswdAttrs;
261    if PasswdAttrs == None:
262       raise "No Users";
263
264    # Write out the email address for each user
265    for x in PasswdAttrs:
266       if x[1].has_key("emailForward") == 0 or IsInGroup(x) == 0:
267          continue;
268       
269       # Do not allow people to try to buffer overflow busted parsers
270       if len(GetAttr(x,"emailForward")) > 200:
271          continue;
272
273       # Check the forwarding address
274       if EmailCheck.match(GetAttr(x,"emailForward")) == None:
275          continue;
276       Line = "%s: %s" % (GetAttr(x,"uid"),GetAttr(x,"emailForward"));
277       Line = Sanitize(Line) + "\n";
278       F.write(Line);
279       
280   # Oops, something unspeakable happened.
281   except:
282    Die(File,F,None);
283    raise;
284   Done(File,F,None);
285
286 def GenAllForward(l,File):
287   Fdb = None;
288   try:
289    OldMask = os.umask(0022);
290    Fdb = os.popen("cdbmake %s %s.tmp"%(File,File),"w");
291    os.umask(OldMask);
292
293    # Fetch all the users
294    global PasswdAttrs;
295    if PasswdAttrs == None:
296       raise "No Users";
297
298    # Write out the email address for each user
299    for x in PasswdAttrs:
300       if x[1].has_key("emailForward") == 0:
301          continue;
302       
303       # Do not allow people to try to buffer overflow busted parsers
304       Forward = GetAttr(x,"emailForward");
305       if len(Forward) > 200:
306          continue;
307
308       # Check the forwarding address
309       if EmailCheck.match(Forward) == None:
310          continue;
311          
312       User = GetAttr(x,"uid");
313       Fdb.write("+%d,%d:%s->%s\n"%(len(User),len(Forward),User,Forward));
314    Fdb.write("\n");
315   # Oops, something unspeakable happened.
316   except:
317     Fdb.close();
318     raise;
319   if Fdb.close() != None:
320     raise "cdbmake gave an error";
321
322 # Generate the anon XEarth marker file 
323 def GenMarkers(l,File):
324   F = None;
325   try:
326    F = open(File + ".tmp","w");
327
328    # Fetch all the users
329    global PasswdAttrs;
330    if PasswdAttrs == None:
331       raise "No Users";
332
333    # Write out the position for each user
334    for x in PasswdAttrs:
335       if x[1].has_key("latitude") == 0 or x[1].has_key("longitude") == 0:
336          continue;       
337       try:
338          Line = "%8s %8s \"\""%(DecDegree(GetAttr(x,"latitude"),1),DecDegree(GetAttr(x,"longitude"),1));
339          Line = Sanitize(Line) + "\n";
340          F.write(Line);
341       except:
342          pass;
343       
344   # Oops, something unspeakable happened.
345   except:
346    Die(File,F,None);
347    raise;
348   Done(File,F,None);
349
350 # Generate the debian-private subscription list
351 def GenPrivate(l,File):
352   F = None;
353   try:
354    F = open(File + ".tmp","w");
355
356    # Fetch all the users
357    global PasswdAttrs;
358    if PasswdAttrs == None:
359       raise "No Users";
360
361    # Write out the position for each user
362    for x in PasswdAttrs:
363       if x[1].has_key("privateSub") == 0:
364          continue;
365
366       # If the account is locked, do not write it
367       if (string.find(GetAttr(x,"userPassword"),"*LK*")  != -1):
368          continue;
369
370       # If the account has no PGP key, do not write it
371       if x[1].has_key("keyFingerPrint") == 0:
372          continue;
373
374       # Must be in the Debian group (yuk, hard coded for now)
375       if GetAttr(x,"gidNumber") != "800":
376          continue;
377
378       try:
379          Line = "%s"%(GetAttr(x,"privateSub"));
380          Line = Sanitize(Line) + "\n";
381          F.write(Line);
382       except:
383          pass;
384       
385   # Oops, something unspeakable happened.
386   except:
387    Die(File,F,None);
388    raise;
389   Done(File,F,None);
390
391 # Generate the list of local addresses that refuse all mail
392 def GenMailDisable(l,File):
393   F = None;
394   try:
395    F = open(File + ".tmp","w");
396
397    # Fetch all the users
398    global PasswdAttrs;
399    if PasswdAttrs == None:
400       raise "No Users";
401
402    for x in PasswdAttrs:
403       Reason = None
404       
405       # If the account is locked, disable incoming mail
406       if (string.find(GetAttr(x,"userPassword"),"*LK*")  != -1) or \
407          x[1].has_key("keyFingerPrint") == 0:
408          Reason = "user account locked"
409       else:
410          if x[1].has_key("mailDisableMessage"):
411             Reason = GetAttr(x,"mailDisableMessage")
412          else:
413             continue
414
415       # Must be in the Debian group (yuk, hard coded for now)
416       if GetAttr(x,"gidNumber") != "800":
417          continue;
418
419       try:
420          Line = "%s: %s"%(GetAttr(x,"uid"),Reason);
421          Line = Sanitize(Line) + "\n";
422          F.write(Line);
423       except:
424          pass;
425       
426   # Oops, something unspeakable happened.
427   except:
428    Die(File,F,None);
429    raise;
430   Done(File,F,None);
431
432 # Generate a list of uids that should have boolean affects applied
433 def GenMailBool(l,File,Key):
434   F = None;
435   try:
436    F = open(File + ".tmp","w");
437
438    # Fetch all the users
439    global PasswdAttrs;
440    if PasswdAttrs == None:
441       raise "No Users";
442
443    for x in PasswdAttrs:
444       Reason = None
445       
446       if x[1].has_key(Key) == 0:
447          continue
448
449       # Must be in the Debian group (yuk, hard coded for now)
450       if GetAttr(x,"gidNumber") != "800":
451          continue
452
453       if GetAttr(x,Key) != "TRUE":
454          continue
455
456       try:
457          Line = "%s"%(GetAttr(x,"uid"));
458          Line = Sanitize(Line) + "\n";
459          F.write(Line);
460       except:
461          pass;
462       
463   # Oops, something unspeakable happened.
464   except:
465    Die(File,F,None);
466    raise;
467   Done(File,F,None);
468
469 # Generate a list of hosts for RBL or whitelist purposes.
470 def GenMailList(l,File,Key):
471   F = None;
472   try:
473    F = open(File + ".tmp","w");
474
475    # Fetch all the users
476    global PasswdAttrs;
477    if PasswdAttrs == None:
478       raise "No Users";
479
480    for x in PasswdAttrs:
481       Reason = None
482       
483       if x[1].has_key(Key) == 0:
484          continue
485
486       # Must be in the Debian group (yuk, hard coded for now)
487       if GetAttr(x,"gidNumber") != "800":
488          continue
489
490       try:
491          found = 0
492          Line = None
493          for z in x[1][Key]:
494              if Key == "mailWhitelist":
495                  if re.match('^[-\w.]+(/[\d]+)?$',z) == None:
496                      continue
497              else:
498                  if re.match('^[-\w.]+$',z) == None:
499                      continue
500              if found == 0:
501                  found = 1
502                  Line = GetAttr(x,"uid")
503              Line += ": " + z
504
505          if Line != None:
506              Line = Sanitize(Line) + "\n";
507              F.write(Line);
508       except:
509          pass;
510       
511   # Oops, something unspeakable happened.
512   except:
513    Die(File,F,None);
514    raise;
515   Done(File,F,None);
516
517 # Generate the DNS Zone file
518 def GenDNS(l,File,HomePrefix):
519   F = None;
520   try:
521    F = open(File + ".tmp","w");
522    
523    # Fetch all the users
524    global PasswdAttrs;
525    if PasswdAttrs == None:
526       raise "No Users";
527
528    # Write out the zone file entry for each user
529    for x in PasswdAttrs:
530       if x[1].has_key("dnsZoneEntry") == 0:
531          continue;
532
533       # If the account has no PGP key, do not write it
534       if x[1].has_key("keyFingerPrint") == 0:
535          continue;
536       try:
537          F.write("; %s\n"%(EmailAddress(x)));
538          for z in x[1]["dnsZoneEntry"]:
539             Split = string.split(string.lower(z));
540             if string.lower(Split[1]) == 'in':
541                for y in range(0,len(Split)):
542                   if Split[y] == "$":
543                      Split[y] = "\n\t";
544                Line = string.join(Split," ") + "\n";
545                F.write(Line);
546                
547                Host = Split[0] + DNSZone;
548                if BSMTPCheck.match(Line) != None:
549                    F.write("; Has BSMTP\n");
550                                
551                # Write some identification information
552                if string.lower(Split[2]) == "a":
553                   Line = "%s IN TXT \"%s\"\n"%(Split[0],EmailAddress(x));
554                   for y in x[1]["keyFingerPrint"]:
555                      Line = Line + "%s IN TXT \"PGP %s\"\n"%(Split[0],FormatPGPKey(y));
556                   F.write(Line);
557             else:
558                Line = "; Err %s"%(str(Split));
559                F.write(Line);
560
561          F.write("\n");
562       except:
563          F.write("; Errors\n");
564          pass;
565       
566   # Oops, something unspeakable happened.
567   except:
568    Die(File,F,None);
569    raise;
570   Done(File,F,None);
571
572 # Generate the DNS SSHFP records
573 def GenSSHFP(l,File,HomePrefix):
574   F = None
575   try:
576    F = open(File + ".tmp","w")
577    
578    # Fetch all the hosts
579    global HostAttrs
580    if HostAttrs == None:
581       raise "No Hosts"
582
583    for x in HostAttrs:
584       if x[1].has_key("hostname") == 0 or \
585          x[1].has_key("sshRSAHostKey") == 0:
586          continue
587       Host = GetAttr(x,"hostname");
588       Algorithm = None
589       for I in x[1]["sshRSAHostKey"]:
590          Split = string.split(I)
591          if Split[0] == 'ssh-rsa':
592             Algorithm = 1
593          if Split[0] == 'ssh-dss':
594             Algorithm = 2
595          if Algorithm == None:
596             continue
597          Fingerprint = sha.new(base64.decodestring(Split[1])).hexdigest()
598          Line = "%s. IN SSHFP %u 1 %s" % (Host,Algorithm,Fingerprint)
599          Line = Sanitize(Line) + "\n"
600          F.write(Line)
601   # Oops, something unspeakable happened.
602   except:
603    Die(File,F,None)
604    raise;
605   Done(File,F,None)
606
607 # Generate the BSMTP file
608 def GenBSMTP(l,File,HomePrefix):
609   F = None;
610   try:
611    F = open(File + ".tmp","w");
612    
613    # Fetch all the users
614    global PasswdAttrs;
615    if PasswdAttrs == None:
616       raise "No Users";
617
618    # Write out the zone file entry for each user
619    for x in PasswdAttrs:
620       if x[1].has_key("dnsZoneEntry") == 0:
621          continue;
622
623       # If the account has no PGP key, do not write it
624       if x[1].has_key("keyFingerPrint") == 0:
625          continue;
626       try:
627          for z in x[1]["dnsZoneEntry"]:
628             Split = string.split(string.lower(z));
629             if string.lower(Split[1]) == 'in':
630                for y in range(0,len(Split)):
631                   if Split[y] == "$":
632                      Split[y] = "\n\t";
633                Line = string.join(Split," ") + "\n";
634                
635                Host = Split[0] + DNSZone;
636                if BSMTPCheck.match(Line) != None:
637                    F.write("%s: user=%s group=Debian file=%s%s/bsmtp/%s\n"%(Host,
638                                GetAttr(x,"uid"),HomePrefix,GetAttr(x,"uid"),Host));
639                                
640       except:
641          F.write("; Errors\n");
642          pass;
643       
644   # Oops, something unspeakable happened.
645   except:
646    Die(File,F,None);
647    raise;
648   Done(File,F,None);
649
650 # Generate the ssh known hosts file
651 def GenSSHKnown(l,File):
652   F = None;
653   try:
654    OldMask = os.umask(0022);
655    F = open(File + ".tmp","w",0644);
656    os.umask(OldMask);
657
658    global HostAttrs
659    if HostAttrs == None:
660       raise "No Hosts";
661    
662    for x in HostAttrs:
663       if x[1].has_key("hostname") == 0 or \
664          x[1].has_key("sshRSAHostKey") == 0:
665          continue;
666       Host = GetAttr(x,"hostname");
667       SHost = string.find(Host,".");
668       for I in x[1]["sshRSAHostKey"]:
669          if SHost == None:
670             Line = "%s,%s %s" %(Host,socket.gethostbyname(Host),I);
671          else:
672             Line = "%s,%s,%s %s" %(Host,Host[0:SHost],socket.gethostbyname(Host),I);
673          Line = Sanitize(Line) + "\n";
674          F.write(Line);
675   # Oops, something unspeakable happened.
676   except:
677    Die(File,F,None);
678    raise;
679   Done(File,F,None);
680
681 # Generate the debianhosts file (list of all IP addresses)
682 def GenHosts(l,File):
683   F = None;
684   try:
685    OldMask = os.umask(0022);
686    F = open(File + ".tmp","w",0644);
687    os.umask(OldMask);
688
689    # Fetch all the hosts
690    HostNames = l.search_s(HostBaseDn,ldap.SCOPE_ONELEVEL,"hostname=*",\
691                 ["hostname"]);
692    
693    if HostNames == None:
694       raise "No Hosts";
695
696    for x in HostNames:
697       if x[1].has_key("hostname") == 0:
698          continue;
699       Host = GetAttr(x,"hostname");
700       try:
701         Addr = socket.gethostbyname(Host);
702         F.write(Addr + "\n");
703       except:
704         pass
705   # Oops, something unspeakable happened.
706   except:
707    Die(File,F,None);
708    raise;
709   Done(File,F,None);
710
711 # Connect to the ldap server
712 l = ldap.open(LDAPServer);
713 F = open(PassDir+"/pass-"+pwd.getpwuid(os.getuid())[0],"r");
714 Pass = string.split(string.strip(F.readline())," ");
715 F.close();
716 l.simple_bind_s("uid="+Pass[0]+","+BaseDn,Pass[1]);
717
718 # Fetch all the groups
719 GroupIDMap = {};
720 Attrs = l.search_s(BaseDn,ldap.SCOPE_ONELEVEL,"gid=*",\
721                   ["gid","gidNumber"]);
722
723 # Generate the GroupMap and GroupIDMap
724 for x in Attrs:
725    if x[1].has_key("gidNumber") == 0:
726       continue;
727    GroupIDMap[x[1]["gid"][0]] = int(x[1]["gidNumber"][0]);
728
729 # Fetch all the users
730 PasswdAttrs = l.search_s(BaseDn,ldap.SCOPE_ONELEVEL,"uid=*",\
731                 ["uid","uidNumber","gidNumber","supplementaryGid",\
732                  "gecos","loginShell","userPassword","shadowLastChange",\
733                  "shadowMin","shadowMax","shadowWarning","shadowinactive",
734                  "shadowexpire","emailForward","latitude","longitude",\
735                  "allowedHost","sshRSAAuthKey","dnsZoneEntry","cn","sn",\
736                  "keyFingerPrint","privateSub","mailDisableMessage",\
737                  "mailGreylisting","mailCallout","mailRBL","mailRHSBL",\
738                  "mailWhitelist"]);
739 # Fetch all the hosts
740 HostAttrs    = l.search_s(HostBaseDn,ldap.SCOPE_ONELEVEL,"sshRSAHostKey=*",\
741                 ["hostname","sshRSAHostKey"]);
742
743 # Open the control file
744 if len(sys.argv) == 1:
745    F = open(GenerateConf,"r");
746 else:
747    F = open(sys.argv[1],"r")
748
749 # Generate global things
750 GlobalDir = GenerateDir+"/";
751 GenSSHShadow(l,GlobalDir+"ssh-rsa-shadow");
752 GenAllForward(l,GlobalDir+"mail-forward.cdb");
753 GenMarkers(l,GlobalDir+"markers");
754 GenPrivate(l,GlobalDir+"debian-private");
755 GenSSHKnown(l,GlobalDir+"ssh_known_hosts");
756 GenHosts(l,GlobalDir+"debianhosts");
757 GenMailDisable(l,GlobalDir+"mail-disable");
758 GenMailBool(l,GlobalDir+"mail-greylist","mailGreylisting");
759 GenMailBool(l,GlobalDir+"mail-callout","mailCallout");
760 GenMailList(l,GlobalDir+"mail-rbl","mailRBL");
761 GenMailList(l,GlobalDir+"mail-rhsbl","mailRHSBL");
762 GenMailList(l,GlobalDir+"mail-whitelist","mailWhitelist");
763
764 # Compatibility.
765 GenForward(l,GlobalDir+"forward-alias");
766    
767 while(1):
768    Line = F.readline();
769    if Line == "":
770       break;
771    Line = string.strip(Line);
772    if Line == "":
773       continue;
774    if Line[0] == '#':
775       continue;
776
777    Split = string.split(Line," ");
778    OutDir = GenerateDir + '/' + Split[0] + '/';
779    try: os.mkdir(OutDir);
780    except: pass;
781
782    # Get the group list and convert any named groups to numerics
783    GroupList = {};
784    ExtraList = {};
785    for I in Split[2:]:
786       if I[0] == '[':
787          ExtraList[I] = None;
788          continue;
789       GroupList[I] = None;
790       if GroupIDMap.has_key(I):
791          GroupList[str(GroupIDMap[I])] = None;
792
793    Allowed = GroupList;
794    if Allowed == {}:
795      Allowed = None
796    CurrentHost = Split[0];
797
798    sys.stdout.flush();
799    GenPasswd(l,OutDir+"passwd",Split[1]);
800    sys.stdout.flush();
801    GenGroup(l,OutDir+"group");
802    if ExtraList.has_key("[UNTRUSTED]"):
803         continue;
804    GenShadow(l,OutDir+"shadow");
805         
806    # Link in global things   
807    DoLink(GlobalDir,OutDir,"ssh-rsa-shadow");
808    DoLink(GlobalDir,OutDir,"markers");
809    DoLink(GlobalDir,OutDir,"mail-forward.cdb");
810    DoLink(GlobalDir,OutDir,"debianhosts");
811    DoLink(GlobalDir,OutDir,"ssh_known_hosts");
812    DoLink(GlobalDir,OutDir,"mail-disable");
813    DoLink(GlobalDir,OutDir,"mail-greylist");
814    DoLink(GlobalDir,OutDir,"mail-callout");
815    DoLink(GlobalDir,OutDir,"mail-rbl");
816    DoLink(GlobalDir,OutDir,"mail-rhsbl");
817    DoLink(GlobalDir,OutDir,"mail-whitelist");
818
819    # Compatibility.
820    DoLink(GlobalDir,OutDir,"forward-alias");
821
822    if ExtraList.has_key("[DNS]"):
823       GenDNS(l,OutDir+"dns-zone",Split[1]);
824       GenSSHFP(l,OutDir+"dns-sshfp",Split[1])
825       
826    if ExtraList.has_key("[BSMTP]"):
827       GenBSMTP(l,OutDir+"bsmtp",Split[1])
828
829    if ExtraList.has_key("[PRIVATE]"):
830       DoLink(GlobalDir,OutDir,"debian-private")