support one-shot run
[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):
17         self.config = config
18         self.cond = threading.Condition()
19         self.data = None
20
21     def checksum(self, path):
22         try:
23             f = open(path)
24             try: return sha.new(f.read()).digest()
25             finally: f.close()
26         except IOError: return None
27
28     def system(self, cmd):
29         if cmd:
30             logger.log('conf_files: running command %s' % cmd)
31             return os.system(cmd)
32         else: return 0
33
34     def update_conf_file(self, cf_rec):
35         if not cf_rec['enabled']: return
36         dest = cf_rec['dest']
37         logger.log('conf_files: considering file %s' % dest)
38         err_cmd = cf_rec['error_cmd']
39         mode = string.atoi(cf_rec['file_permissions'], base=8)
40         uid = pwd.getpwnam(cf_rec['file_owner'])[2]
41         gid = grp.getgrnam(cf_rec['file_group'])[2]
42         url = 'https://%s/%s' % (self.config.PLC_BOOT_HOST, cf_rec['source'])
43         contents = curlwrapper.retrieve(url, self.config.cacert)
44         logger.log('conf_files: retrieving url %s' % url)
45         if not cf_rec['always_update'] and sha.new(contents).digest() == self.checksum(dest):
46             logger.log('conf_files: skipping file %s, always_update is false and checksums are identical' % dest)
47             return
48         if self.system(cf_rec['preinstall_cmd']):
49             self.system(err_cmd)
50             if not cf_rec['ignore_cmd_errors']: return
51         logger.log('conf_files: installing file %s' % dest)
52         try: os.makedirs(os.path.dirname(dest))
53         except OSError: pass
54         tools.write_file(dest, lambda f: f.write(contents), mode=mode, uidgid=(uid,gid))
55         if self.system(cf_rec['postinstall_cmd']): self.system(err_cmd)
56
57     def run_once(self, data):
58         for d in data:
59             for f in d['conf_files']:
60                 try: self.update_conf_file(f)
61                 except: logger.log_exc()
62
63     def run(self):
64         while True:
65             self.cond.acquire()
66             while self.data == None: self.cond.wait()
67             data = self.data
68             self.data = None
69             self.cond.release()
70             self.run_once(data)
71
72     def callback(self, data):
73         if data != None:
74             self.cond.acquire()
75             self.data = data
76             self.cond.notify()
77             self.cond.release()
78
79 main = None
80
81 def GetSlivers_callback(data): main.callback(data)
82
83 def start(options, config):
84     main = conf_files(config)
85     tools.as_daemon_thread(main.run)
86
87 if __name__ == '__main__':
88     import optparse
89     parser = optparse.OptionParser()
90     parser.add_option('-f', '--config', action='store', dest='config', default='/etc/planetlab/plc_config', help='PLC configuration file')
91     parser.add_option('-k', '--session', action='store', dest='session', default='/etc/planetlab/session', help='API session key (or file)')
92     (options, args) = parser.parse_args()
93
94     # Load /etc/planetlab/plc_config
95     from config import Config
96     config = Config(options.config)
97
98     # Load /etc/planetlab/session
99     if os.path.exists(options.session):
100         session = file(options.session).read().strip()
101     else:
102         session = options.session
103
104     # Initialize XML-RPC client
105     from plcapi import PLCAPI
106     plc = PLCAPI(config.plc_api_uri, config.cacert, auth = session)
107
108     main = conf_files(config)
109     data = plc.GetSlivers()
110     main.run_once(data)