1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
|
#
# Copyright (c) 2016 Red Hat, Inc, Oyvind Albrigtsen
# All Rights Reserved.
#
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
import sys, os, logging, syslog
argv=sys.argv
env=os.environ
#
# Common variables for the OCF Resource Agents supplied by
# heartbeat.
#
OCF_SUCCESS=0
OCF_ERR_GENERIC=1
OCF_ERR_ARGS=2
OCF_ERR_UNIMPLEMENTED=3
OCF_ERR_PERM=4
OCF_ERR_INSTALLED=5
OCF_ERR_CONFIGURED=6
OCF_NOT_RUNNING=7
# Non-standard values.
#
# OCF does not include the concept of master/slave resources so we
# need to extend it so we can discover a resource's complete state.
#
# OCF_RUNNING_MASTER:
# The resource is in "master" mode and fully operational
# OCF_FAILED_MASTER:
# The resource is in "master" mode but in a failed state
#
# The extra two values should only be used during a probe.
#
# Probes are used to discover resources that were started outside of
# the CRM and/or left behind if the LRM fails.
#
# They can be identified in RA scripts by checking for:
# [ "${__OCF_ACTION}" = "monitor" -a "${OCF_RESKEY_CRM_meta_interval}" = "0" ]
#
# Failed "slaves" should continue to use: OCF_ERR_GENERIC
# Fully operational "slaves" should continue to use: OCF_SUCCESS
#
OCF_RUNNING_MASTER=8
OCF_FAILED_MASTER=9
## Own logger handler that uses old-style syslog handler as otherwise
## everything is sourced from /dev/syslog
class SyslogLibHandler(logging.StreamHandler):
"""
A handler class that correctly push messages into syslog
"""
def emit(self, record):
syslog_level = {
logging.CRITICAL:syslog.LOG_CRIT,
logging.ERROR:syslog.LOG_ERR,
logging.WARNING:syslog.LOG_WARNING,
logging.INFO:syslog.LOG_INFO,
logging.DEBUG:syslog.LOG_DEBUG,
logging.NOTSET:syslog.LOG_DEBUG,
}[record.levelno]
msg = self.format(record)
# syslog.syslog can not have 0x00 character inside or exception
# is thrown
syslog.syslog(syslog_level, msg.replace("\x00","\n"))
return
OCF_RESOURCE_INSTANCE = env.get("OCF_RESOURCE_INSTANCE")
OCF_ACTION = env.get("__OCF_ACTION")
if OCF_ACTION is None and len(argv) == 2:
OCF_ACTION = argv[1]
HA_DEBUG = env.get("HA_debug", 0)
HA_DATEFMT = env.get("HA_DATEFMT", "%b %d %T ")
HA_LOGFACILITY = env.get("HA_LOGFACILITY")
HA_LOGFILE = env.get("HA_LOGFILE")
HA_DEBUGLOG = env.get("HA_DEBUGLOG")
log = logging.getLogger(os.path.basename(argv[0]))
log.setLevel(logging.DEBUG)
## add logging to stderr
if sys.stdout.isatty():
seh = logging.StreamHandler(stream=sys.stderr)
if HA_DEBUG == 0:
seh.setLevel(logging.WARNING)
sehformatter = logging.Formatter('%(filename)s(%(OCF_RESOURCE_INSTANCE)s)[%(process)s]:\t%(asctime)s%(levelname)s: %(message)s', datefmt=HA_DATEFMT)
seh.setFormatter(sehformatter)
log.addHandler(seh)
## add logging to syslog
if HA_LOGFACILITY:
slh = SyslogLibHandler()
if HA_DEBUG == 0:
slh.setLevel(logging.WARNING)
slhformatter = logging.Formatter('%(levelname)s: %(message)s')
slh.setFormatter(slhformatter)
log.addHandler(slh)
## add logging to file
if HA_LOGFILE:
lfh = logging.FileHandler(HA_LOGFILE)
if HA_DEBUG == 0:
lfh.setLevel(logging.WARNING)
lfhformatter = logging.Formatter('%(filename)s(%(OCF_RESOURCE_INSTANCE)s)[%(process)s]:\t%(asctime)s%(levelname)s: %(message)s', datefmt=HA_DATEFMT)
lfh.setFormatter(lfhformatter)
log.addHandler(lfh)
## add debug logging to file
if HA_DEBUGLOG and HA_LOGFILE != HA_DEBUGLOG:
dfh = logging.FileHandler(HA_DEBUGLOG)
if HA_DEBUG == 0:
dfh.setLevel(logging.WARNING)
dfhformatter = logging.Formatter('%(filename)s(%(OCF_RESOURCE_INSTANCE)s)[%(process)s]:\t%(asctime)s%(levelname)s: %(message)s', datefmt=HA_DATEFMT)
dfh.setFormatter(dfhformatter)
log.addHandler(dfh)
logger = logging.LoggerAdapter(log, {'OCF_RESOURCE_INSTANCE': OCF_RESOURCE_INSTANCE})
_exit_reason_set = False
def ocf_exit_reason(msg):
"""
Print exit error string to stderr.
Allows the OCF agent to provide a string describing
why the exit code was returned.
"""
global _exit_reason_set
cookie = env.get("OCF_EXIT_REASON_PREFIX", "ocf-exit-reason:")
sys.stderr.write("{}{}\n".format(cookie, msg))
sys.stderr.flush()
logger.error(msg)
_exit_reason_set = True
def have_binary(name):
"""
True if binary exists, False otherwise.
"""
def _access_check(fn):
return (os.path.exists(fn) and
os.access(fn, os.F_OK | os.X_OK) and
not os.path.isdir(fn))
if _access_check(name):
return True
path = env.get("PATH", os.defpath).split(os.pathsep)
seen = set()
for dir in path:
dir = os.path.normcase(dir)
if dir not in seen:
seen.add(dir)
name2 = os.path.join(dir, name)
if _access_check(name2):
return True
return False
def is_true(val):
"""
Convert an OCF truth value to a
Python boolean.
"""
return val in ("yes", "true", "1", 1, "YES", "TRUE", "ja", "on", "ON", True)
def is_probe():
"""
A probe is defined as a monitor operation
with an interval of zero. This is called
by Pacemaker to check the status of a possibly
not running resource.
"""
return (OCF_ACTION == "monitor" and
( env.get("OCF_RESKEY_CRM_meta_interval", "") == "0" or
env.get("OCF_RESKEY_CRM_meta_interval", "") == "" ))
def get_parameter(name, default=None):
"""
Extract the parameter value from the environment
"""
return env.get("OCF_RESKEY_{}".format(name), default)
def distro():
"""
Return name of distribution/platform.
If possible, returns "name/version", else
just "name".
"""
import subprocess
import platform
try:
ret = subprocess.check_output(["lsb_release", "-si"])
if type(ret) != str:
ret = ret.decode()
distro = ret.strip()
ret = subprocess.check_output(["lsb_release", "-sr"])
if type(ret) != str:
ret = ret.decode()
version = ret.strip()
return "{}/{}".format(distro, version)
except Exception:
if os.path.exists("/etc/debian_version"):
return "Debian"
if os.path.exists("/etc/SuSE-release"):
return "SUSE"
if os.path.exists("/etc/redhat-release"):
return "Redhat"
return platform.system()
class Parameter(object):
def __init__(self, name, shortdesc, longdesc, content_type, unique, required, default):
self.name = name
self.shortdesc = shortdesc
self.longdesc = longdesc
self.content_type = content_type
self.unique = unique
self.required = required
self.default = default
def __str__(self):
return self.to_xml()
def to_xml(self):
ret = '<parameter name="' + self.name + '"'
if self.unique:
ret += ' unique="1"'
if self.required:
ret += ' required="1"'
ret += ">\n"
ret += '<longdesc lang="en">' + self.longdesc + '</longdesc>' + "\n"
ret += '<shortdesc lang="en">' + self.shortdesc + '</shortdesc>' + "\n"
ret += '<content type="' + self.content_type + '"'
if self.default is not None:
ret += ' default="{}"'.format(self.default)
ret += " />\n"
ret += "</parameter>\n"
return ret
class Action(object):
def __init__(self, name, timeout, interval, depth, role):
self.name = name
self.timeout = timeout
self.interval = interval
self.depth = depth
self.role = role
def __str__(self):
return self.to_xml()
def to_xml(self):
def opt(s, name, var):
if var is not None:
if type(var) == int and name in ("timeout", "interval"):
var = "{}s".format(var)
return s + ' {}="{}"'.format(name, var)
return s
ret = '<action name="{}"'.format(self.name)
ret = opt(ret, "timeout", self.timeout)
ret = opt(ret, "interval", self.interval)
ret = opt(ret, "depth", self.depth)
ret = opt(ret, "role", self.role)
ret += " />\n"
return ret
class Agent(object):
"""
OCF Resource Agent metadata XML generator helper.
Use add_parameter/add_action to define parameters
and actions for the agent. Then call run() to
start the agent main loop.
See doc/dev-guides/writing-python-agents.md for an example
of how to use it.
"""
def __init__(self, name, shortdesc, longdesc, version=1.0, ocf_version=1.0):
self.name = name
self.shortdesc = shortdesc
self.longdesc = longdesc
self.version = version
self.ocf_version = ocf_version
self.parameters = []
self.actions = []
self._handlers = {}
def add_parameter(self, name, shortdesc="", longdesc="", content_type="string", unique=False, required=False, default=None):
for param in self.parameters:
if param.name == name:
raise ValueError("Parameter {} defined twice in metadata".format(name))
self.parameters.append(Parameter(name=name,
shortdesc=shortdesc,
longdesc=longdesc,
content_type=content_type,
unique=unique,
required=required,
default=default))
return self
def add_action(self, name, timeout=None, interval=None, depth=None, role=None, handler=None):
self.actions.append(Action(name=name,
timeout=timeout,
interval=interval,
depth=depth,
role=role))
if handler is not None:
self._handlers[name] = handler
return self
def __str__(self):
return self.to_xml()
def to_xml(self):
return """<?xml version="1.0"?>
<!DOCTYPE resource-agent SYSTEM "ra-api-1.dtd">
<resource-agent name="{name}" version="{version}">
<version>{ocf_version}</version>
<longdesc lang="en">
{longdesc}
</longdesc>
<shortdesc lang="en">{shortdesc}</shortdesc>
<parameters>
{parameters}
</parameters>
<actions>
{actions}
</actions>
</resource-agent>
""".format(name=self.name,
version = self.version,
ocf_version = self.ocf_version,
longdesc=self.longdesc,
shortdesc=self.shortdesc,
parameters="".join(p.to_xml() for p in self.parameters),
actions="".join(a.to_xml() for a in self.actions))
def run(self):
run(self)
def run(agent, handlers=None):
"""
Main loop implementation for resource agents.
Does not return.
Arguments:
agent: Agent object.
handlers: Dict of action name to handler function.
Handler functions can take parameters as arguments,
the run loop will read parameter values from the
environment and pass to the handler.
"""
import inspect
agent._handlers.update(handlers or {})
handlers = agent._handlers
def check_required_params():
for p in agent.parameters:
if p.required and get_parameter(p.name) is None:
ocf_exit_reason("{}: Required parameter not set".format(p.name))
sys.exit(OCF_ERR_CONFIGURED)
def call_handler(func):
if hasattr(inspect, 'signature'):
params = inspect.signature(func).parameters.keys()
else:
params = inspect.getargspec(func).args
if 'self' in params: params.remove('self')
def value_for_parameter(param):
val = get_parameter(param)
if val is not None:
return val
for p in agent.parameters:
if p.name == param:
return p.default
arglist = [value_for_parameter(p) for p in params]
try:
rc = func(*arglist)
if rc is None:
rc = OCF_SUCCESS
return rc
except Exception as err:
if not _exit_reason_set:
ocf_exit_reason(str(err))
else:
logger.error(str(err))
return OCF_ERR_GENERIC
meta_data_action = False
for action in agent.actions:
if action.name == "meta-data":
meta_data_action = True
break
if not meta_data_action:
agent.add_action("meta-data", timeout=10)
if len(sys.argv) == 2 and sys.argv[1] in ("-h", "--help"):
sys.stdout.write("usage: %s {%s}\n\n" % (sys.argv[0], "|".join(sorted(handlers.keys()))) +
"Expects to have a fully populated OCF RA compliant environment set.\n")
sys.exit(OCF_SUCCESS)
if OCF_ACTION is None:
ocf_exit_reason("No action argument set")
sys.exit(OCF_ERR_UNIMPLEMENTED)
if OCF_ACTION in ('meta-data', 'usage', 'methods'):
sys.stdout.write(agent.to_xml() + "\n")
sys.exit(OCF_SUCCESS)
check_required_params()
if OCF_ACTION in handlers:
rc = call_handler(handlers[OCF_ACTION])
sys.exit(rc)
sys.exit(OCF_ERR_UNIMPLEMENTED)
if __name__ == "__main__":
import unittest
class TestMetadata(unittest.TestCase):
def test_noparams_noactions(self):
m = Agent("foo", shortdesc="shortdesc", longdesc="longdesc")
self.assertEqual("""<?xml version="1.0"?>
<!DOCTYPE resource-agent SYSTEM "ra-api-1.dtd">
<resource-agent name="foo">
<version>1.0</version>
<longdesc lang="en">
longdesc
</longdesc>
<shortdesc lang="en">shortdesc</shortdesc>
<parameters>
</parameters>
<actions>
</actions>
</resource-agent>
""", str(m))
def test_params_actions(self):
m = Agent("foo", shortdesc="shortdesc", longdesc="longdesc")
m.add_parameter("testparam")
m.add_action("start")
self.assertEqual(str(m.actions[0]), '<action name="start" />\n')
unittest.main()
|