Added ReCreate. Also added try catch to api eval of rpc method.
[nodemanager.git] / conf_files.py
1 """configuration files"""
2
3 import grp
4 import os
5 import pwd
6 import sha
7 import string
8 import threading
9
10 import curlwrapper
11 import logger
12 import tools
13
14
15 class conf_files:
16     def __init__(self, config, noscripts=False):
17         self.config = config
18         self.noscripts = noscripts
19         self.cond = threading.Condition()
20         self.data = None
21
22     def checksum(self, path):
23         try:
24             f = open(path)
25             try: return sha.new(f.read()).digest()
26             finally: f.close()
27         except IOError: return None
28
29     def system(self, cmd):
30         if not self.noscripts and cmd:
31             logger.log('conf_files: running command %s' % cmd)
32             return tools.fork_as(None, os.system, cmd)
33         else: return 0
34
35     def update_conf_file(self, cf_rec):
36         if not cf_rec['enabled']: return
37         dest = cf_rec['dest']
38         # XXX Remove once old Node Manager is out of service
39         if dest == '/etc/proper/propd.conf': return
40         err_cmd = cf_rec['error_cmd']
41         mode = string.atoi(cf_rec['file_permissions'], base=8)
42         uid = pwd.getpwnam(cf_rec['file_owner'])[2]
43         gid = grp.getgrnam(cf_rec['file_group'])[2]
44         url = 'https://%s/%s' % (self.config.PLC_BOOT_HOST, cf_rec['source'])
45         try:
46             contents = curlwrapper.retrieve(url, self.config.cacert)
47         except curlwrapper.CurlException:
48             logger.log('conf_files: failed to retrieve %s from %s, skipping' % (dest, url))
49             return
50         if not cf_rec['always_update'] and sha.new(contents).digest() == self.checksum(dest):
51             return
52         if self.system(cf_rec['preinstall_cmd']):
53             self.system(err_cmd)
54             if not cf_rec['ignore_cmd_errors']: return
55         logger.log('conf_files: installing file %s from %s' % (dest, url))
56         try: os.makedirs(os.path.dirname(dest))
57         except OSError: pass
58         tools.write_file(dest, lambda f: f.write(contents), mode=mode, uidgid=(uid,gid))
59         if self.system(cf_rec['postinstall_cmd']): self.system(err_cmd)
60
61     def run_once(self, data):
62         for f in data['conf_files']:
63             try: self.update_conf_file(f)
64             except: logger.log_exc()
65
66     def run(self):
67         while True:
68             self.cond.acquire()
69             while self.data == None: self.cond.wait()
70             data = self.data
71             self.data = None
72             self.cond.release()
73             self.run_once(data)
74
75     def callback(self, data):
76         if data != None:
77             self.cond.acquire()
78             self.data = data
79             self.cond.notify()
80             self.cond.release()
81
82 main = None
83
84 def start(options, config):
85     global main
86     main = conf_files(config)
87     tools.as_daemon_thread(main.run)
88
89 def GetSlivers(data):
90     global main
91     assert main is not None
92     return main.callback(data)
93
94 if __name__ == '__main__':
95     import optparse
96     parser = optparse.OptionParser()
97     parser.add_option('-f', '--config', action='store', dest='config', default='/etc/planetlab/plc_config', help='PLC configuration file')
98     parser.add_option('-k', '--session', action='store', dest='session', default='/etc/planetlab/session', help='API session key (or file)')
99     parser.add_option('--noscripts', action='store_true', dest='noscripts', default=False, help='Do not run pre- or post-install scripts')
100     (options, args) = parser.parse_args()
101
102     # Load /etc/planetlab/plc_config
103     from config import Config
104     config = Config(options.config)
105
106     # Load /etc/planetlab/session
107     if os.path.exists(options.session):
108         session = file(options.session).read().strip()
109     else:
110         session = options.session
111
112     # Initialize XML-RPC client
113     from plcapi import PLCAPI
114     plc = PLCAPI(config.plc_api_uri, config.cacert, auth = session)
115
116     main = conf_files(config, options.noscripts)
117     data = plc.GetSlivers()
118     main.run_once(data)