0350bbb02291552be301d115cd15b4812db8cd2e
[sfa.git] / sfa / plc / sfa-import-plc.py
1 #!/usr/bin/python
2 #
3 ### $Id$
4 ### $URL$
5 #
6 ##
7 # Import PLC records into the SFA database. It is indended that this tool be
8 # run once to create SFA records that reflect the current state of the
9 # planetlab database.
10 #
11 # The import tool assumes that the existing PLC hierarchy should all be part
12 # of "planetlab.us" (see the root_auth and level1_auth variables below).
13 #
14 # Public keys are extracted from the users' SSH keys automatically and used to
15 # create GIDs. This is relatively experimental as a custom tool had to be
16 # written to perform conversion from SSH to OpenSSL format. It only supports
17 # RSA keys at this time, not DSA keys.
18 ##
19
20 import getopt
21 import sys
22 import tempfile
23 import logging.handlers
24 import logging
25 from sfa.util.record import *
26 from sfa.util.table import SfaTable
27 from sfa.util.namespace import *
28 from sfa.util.config import Config
29 from sfa.trust.certificate import convert_public_key, Keypair
30 from sfa.trust.trustedroot import *
31 from sfa.trust.hierarchy import *
32 from sfa.plc.api import *
33 from sfa.trust.gid import create_uuid
34 from sfa.plc.sfaImport import *
35 from sfa.util.report import trace, error
36
37 def process_options():
38    global hrn
39
40    (options, args) = getopt.getopt(sys.argv[1:], '', [])
41    for opt in options:
42        name = opt[0]
43        val = opt[1]
44
45
46 def load_keys(filename):
47     keys = {}
48     tmp_dict = {}
49     try:
50         execfile(filename, tmp_dict)
51         if 'keys' in tmp_dict:
52             keys = tmp_dict['keys']
53         return keys
54     except:
55         return keys
56
57 def save_keys(filename, keys):
58     f = open(filename, 'w')
59     f.write("keys = %s" % str(keys))
60     f.close()
61
62 def main():
63     # setup the logger
64     LOGFILE='/var/log/sfa_import_plc.log'
65     logging.basicConfig(level=logging.INFO,
66                         format='%(asctime)s - %(message)s',
67                         filename=LOGFILE)
68     rotate_handler = logging.handlers.RotatingFileHandler(LOGFILE, maxBytes=1000000, backupCount=5) 
69     logger = logging.getLogger()
70     logger.addHandler(rotate_handler)
71     
72     process_options()
73     config = Config()
74     if not config.SFA_REGISTRY_ENABLED:
75         sys.exit(0)
76     root_auth = config.SFA_REGISTRY_ROOT_AUTH
77     interface_hrn = config.SFA_INTERFACE_HRN
78     keys_filename = config.config_path + os.sep + 'person_keys.py' 
79     sfaImporter = sfaImport(logger)
80     shell = sfaImporter.shell
81     plc_auth = sfaImporter.plc_auth 
82     AuthHierarchy = sfaImporter.AuthHierarchy
83     TrustedRoots = sfaImporter.TrustedRoots
84     table = SfaTable()
85     if not table.exists():
86         table.create()
87
88     # create root authority 
89     sfaImporter.create_top_level_auth_records(root_auth)
90     if not root_auth == interface_hrn:
91         sfaImporter.create_top_level_auth_records(interface_hrn)
92
93     trace("Import: adding " + interface_hrn + " to trusted list", logger)
94     authority = AuthHierarchy.get_auth_info(interface_hrn)
95     TrustedRoots.add_gid(authority.get_gid_object())
96
97     if ".vini" in interface_hrn and interface_hrn.endswith('vini'):
98         # create a fake internet2 site first
99         i2site = {'name': 'Internet2', 'abbreviated_name': 'I2',
100                     'login_base': 'internet2', 'site_id': -1}
101         sfaImporter.import_site(interface_hrn, i2site)
102    
103     # create dict of all existing sfa records
104     existing_records = {}
105     existing_hrns = []
106     key_ids = []
107     person_keys = {} 
108     results = table.find()
109     for result in results:
110         existing_records[(result['hrn'], result['type'])] = result
111         existing_hrns.append(result['hrn']) 
112             
113     # Get all plc sites
114     sites = shell.GetSites(plc_auth, {'peer_id': None})
115     sites_dict = {}
116     for site in sites:
117         sites_dict[site['login_base']] = site 
118     
119     # Get all plc users
120     persons = shell.GetPersons(plc_auth, {'peer_id': None}, ['person_id', 'email', 'key_ids', 'site_ids'])
121     persons_dict = {}
122     for person in persons:
123         persons_dict[person['person_id']] = person
124         key_ids.extend(person['key_ids'])
125
126     # Get all public keys
127     keys = shell.GetKeys(plc_auth, {'peer_id': None, 'key_id': key_ids})
128     keys_dict = {}
129     for key in keys:
130         keys_dict[key['key_id']] = key['key']
131
132     # create a dict of person keys keyed on key_id 
133     old_person_keys = load_keys(keys_filename)
134     for person in persons:
135         pubkeys = []
136         for key_id in person['key_ids']:
137             pubkeys.append(keys_dict[key_id])
138         person_keys[person['person_id']] = pubkeys
139
140     # Get all plc nodes  
141     nodes = shell.GetNodes(plc_auth, {'peer_id': None}, ['node_id', 'hostname', 'site_id'])
142     nodes_dict = {}
143     for node in nodes:
144         nodes_dict[node['node_id']] = node
145
146     # Get all plc slices
147     slices = shell.GetSlices(plc_auth, {'peer_id': None}, ['slice_id', 'name'])
148     slices_dict = {}
149     for slice in slices:
150         slices_dict[slice['slice_id']] = slice
151
152     # start importing 
153     for site in sites:
154         site_hrn = interface_hrn + "." + site['login_base']
155         # import if hrn is not in list of existing hrns or if the hrn exists
156         # but its not a site record
157         if site_hrn not in existing_hrns or \
158            (site_hrn, 'authority') not in existing_records:
159             site_hrn = sfaImporter.import_site(interface_hrn, site)
160              
161         # import node records
162         for node_id in site['node_ids']:
163             if node_id not in nodes_dict:
164                 continue 
165             node = nodes_dict[node_id]
166             hrn =  hostname_to_hrn(interface_hrn, site['login_base'], node['hostname'])
167             if hrn not in existing_hrns or \
168                (hrn, 'node') not in existing_records:
169                 sfaImporter.import_node(site_hrn, node)
170
171         # import slices
172         for slice_id in site['slice_ids']:
173             if slice_id not in slices_dict:
174                 continue 
175             slice = slices_dict[slice_id]
176             hrn = slicename_to_hrn(interface_hrn, slice['name'])
177             if hrn not in existing_hrns or \
178                (hrn, 'slice') not in existing_records:
179                 sfaImporter.import_slice(site_hrn, slice)      
180
181         # import persons
182         for person_id in site['person_ids']:
183             if person_id not in persons_dict:
184                 continue 
185             person = persons_dict[person_id]
186             hrn = email_to_hrn(site_hrn, person['email'])
187             old_keys = []
188             new_keys = []
189             if person_id in old_person_keys:
190                 old_keys = old_person_keys[person_id]
191             if person_id in person_keys:
192                 new_keys = person_keys[person_id]
193             update_record = False
194             for key in new_keys:
195                 if key not in old_keys:
196                     update_record = True 
197
198             if hrn not in existing_hrns or \
199                (hrn, 'user') not in existing_records or update_record:
200                 sfaImporter.import_person(site_hrn, person)
201
202     # remove stale records    
203     for (record_hrn, type) in existing_records.keys():
204         record = existing_records[(record_hrn, type)]
205         # if this is the interface name dont do anything
206         if record_hrn == interface_hrn or \
207            record_hrn == root_auth or \
208            record['peer_authority']:
209             continue
210         # dont delete vini's internet2 placeholdder record
211         # normally this would be deleted becuase it does not have a plc record 
212         if ".vini" in interface_hrn and interface_hrn.endswith('vini') and \
213            record_hrn.endswith("internet2"):     
214             continue
215
216         found = False
217         
218         if type == 'authority':    
219             for site in sites:
220                 site_hrn = interface_hrn + "." + site['login_base']
221                 if site_hrn == record_hrn and site['site_id'] == record['pointer']:
222                     found = True
223                     break
224
225         elif type == 'user':
226             login_base = get_leaf(get_authority(record_hrn))
227             username = get_leaf(record_hrn)
228             if login_base in sites_dict:
229                 site = sites_dict[login_base]
230                 for person in persons:
231                     tmp_username = person['email'].split("@")[0]
232                     alt_username = person['email'].split("@")[0].replace(".", "_")
233                     if username in [tmp_username, alt_username] and \
234                        site['site_id'] in person['site_ids'] and \
235                        person['person_id'] == record['pointer']:
236                         found = True
237                         break
238         
239         elif type == 'slice':
240             slicename = hrn_to_pl_slicename(record_hrn)
241             for slice in slices:
242                 if slicename == slice['name'] and \
243                    slice['slice_id'] == record['pointer']:
244                     found = True
245                     break    
246  
247         elif type == 'node':
248             login_base = get_leaf(get_authority(record_hrn))
249             nodename = get_leaf(record_hrn)
250             if login_base in sites_dict:
251                 site = sites_dict[login_base]
252                 for node in nodes:
253                     tmp_nodename = node['hostname'].split(".")[0]
254                     if tmp_nodename == nodename and \
255                        node['site_id'] == site['site_id'] and \
256                        node['node_id'] == record['pointer']:
257                         found = True
258                         break  
259         else:
260             continue 
261         
262         if not found:
263             record_object = existing_records[(record_hrn, type)]
264             sfaImporter.delete_record(record_hrn, type) 
265                                    
266     # save pub keys
267     trace('Import: saving current pub keys', logger)
268     save_keys(keys_filename, person_keys)                
269         
270 if __name__ == "__main__":
271     main()