-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcwrap.py
More file actions
executable file
·861 lines (788 loc) · 33.1 KB
/
cwrap.py
File metadata and controls
executable file
·861 lines (788 loc) · 33.1 KB
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
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
#!/usr/bin/env python3
# This file is part of cron-wrap.
#
# cron-wrap is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# cron-wrap 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with cron-wrap. If not, see <http://www.gnu.org/licenses/>.
from argparse import ArgumentParser, ArgumentError
from hashlib import md5
from io import StringIO
from smtplib import SMTP, SMTP_SSL
from random import randint
import pickle as pickle
import subprocess as sp
import sys
import time
import os
import signal
import syslog
import getpass
STATEFILE = None
LOGPRI = 0
__version__ = '0.7.0'
# File creation error exit code
E_FC = 1
# Failure limit reached
E_FLR = 2
# Exceptions
class LockError(Exception):
"""
Error to be raised when a lockfile is found
"""
pass
class FileCreationError(Exception):
def __init__(self, msg, errorList=[]):
self.msg = msg
self.eList = errorList
def __str__(self):
return '{}\n{}'.format(
self.msg, '\n'.join([str(e) for e in self.eList]))
class CmdTimeout(Exception):
pass
class MailError(Exception):
pass
# Define classes
class StateFile:
def __init__(self, name, mode='rb+', buffering=-1, lockFile=None):
"""
Override the init function to create a lockfile
"""
if lockFile:
self._lockName = lockFile
else:
self._lockName = '%s.lock' % name
self._lock()
# In order to open this r+, we need to have an existing file. If it
# does not exist, we want to create it first
try:
self._create(name)
self._fh = open(name, mode, buffering)
except Exception:
self._unlock()
raise
self.read = self._fh.read
self.write = self._fh.write
self.tell = self._fh.tell
self.seek = self._fh.seek
self.truncate = self._fh.truncate
def close(self):
"""
Override close to delete the lockfile
"""
self._unlock()
self._fh.close()
def getObject(self):
"""
Returns the object stored in the state file
"""
self.seek(0)
obj = None
try:
obj = pickle.load(self._fh)
except Exception as e:
# Can't unpickle for some reason, create a new state
pass
# Handle any upgrade changes
self._upgrade(obj)
return obj
def saveObject(self, obj):
"""
This will pickle the object in the current state file
"""
# delete file contents and add new
self.seek(0)
self.truncate(0)
pickle.dump(obj, self)
def _upgrade(self, cmdState):
# Upgrading from 0.5.x to 0.6.x adds the _lastEmailNum var. If it
# doesn't exist, we need to initialize it to zero
if isinstance(cmdState, CommandState) and not \
hasattr(cmdState, '_lastEmailNum'):
cmdState._lastEmailNum = 0
def _create(self, fname):
if not os.path.exists(fname):
# Basically "touch" the file
with open(fname, 'w'):
pass
os.chmod(fname, 0o600)
def _lock(self):
"""
Create a lockfile or raise LockError if a lockfile is found
"""
fd = None
try:
fd = os.open(self._lockName, os.O_CREAT | os.O_WRONLY | os.O_EXCL)
except OSError as e:
raise LockError('Lock file exists, cannot open state file: %s' %
self._lockName)
os.fchmod(fd, 0o600)
os.write(fd, str(os.getpid()).encode('utf-8'))
os.close(fd)
def _unlock(self):
"""
Simply deletes the lockfile
"""
try:
with open(self._lockName, 'rb') as fh:
pid = int(fh.read())
if pid != os.getpid():
raise LockError('Lock file does not contain current process '
'pid! lock file: {} ; cur pid: {}'.format(pid, os.getpid())
)
os.unlink(self._lockName)
except Exception as e:
print('Failed to unlock by deleting "{}": {}'.format(
self._lockName, e), file=sys.stderr)
@staticmethod
def getStateFileName(opts, cmdList):
"""
This basically just hashes the cmdList to create a filename unique
to this cron commmand.
opts<optparse.Values>: The options list from the command line
cmdList<list>: The command line wherein each element is an item
in the list
returns -> <str>: The full path to the state file
"""
dig = md5(''.join(cmdList).encode('utf-8')).hexdigest()
# Use the item we are executing as part of the file name
baseCmd = cmdList[0]
if opts.singStr:
baseCmd = cmdList[0].split()[0]
binExec = baseCmd.replace('/', '-').strip('-.')
fname = '{}.{}'.format(binExec, dig)
return os.path.join(opts.stateDir, fname)
@staticmethod
def getStateFile(opts, cmdList):
"""
This will determine the state file name and return the StateFile object
if it is successful. If it can't get a statefile within the optionally
specified period (usually because a previously started process is still
running), it will raise an OSError.
opts<optparse.Values>: Options passed in on the command line
cmdList<list>: The command and args list
returns -> <StateFile>: A created StateFile instance
raises -> FileCreationError
"""
stFName = StateFile.getStateFileName(opts, cmdList)
lockFile = None
if opts.lockFile:
lockFile = opts.lockFile
errs = []
sf = None
for i in range(opts.numRetries + 1):
try:
sf = StateFile(stFName, lockFile=lockFile)
except Exception as e:
errs.append(e)
raise
else:
break
if opts.numRetries:
time.sleep(opts.retrySecs)
if not sf:
raise FileCreationError(
'Could not create state file "{}": {}'.format(
stFName, errs))
return sf
class Failure(object):
"""
This is a simple class to encapsulate the items pertaining to a failure
"""
mainDelim = '=' * 40
subDelim = '-' * 40
def __init__(self, command, timeStarted, runTime, exitCode,
stdout='', stderr='', pythonError=''):
"""
Pass in all the info for a command run
command<list>: A list containing all the command line items
timeStarted<float>: The timestamp for when this was started
runTime<float>: The amount of time that the process ran for
exitCode<int>: The exit code from the process
stdout<str>: The output printed to stdout
stderr<str>: The output printed to stderr
pythonError<str>: An error that occured in Python trying to
run the program (exitCode should be -1)
"""
self.command = command
self.timeStarted = timeStarted
self.runTime = runTime
self.exitCode = exitCode
self.stdout = stdout
self.stderr = stderr
self.pyError = pythonError
def __str__(self):
ret = '%s\nCommand: %s\n' % (self.mainDelim, ' '.join(self.command))
ret += 'Start Time: %s\n' % time.ctime(self.timeStarted)
ret += 'Run Time (seconds): %.02f\n' % self.runTime
ret += 'Exit Code: %d (-1 is a python error)\n' % self.exitCode
if self.stdout:
ret += '\nSTDOUT:\n%s\n%s\n%s\n' % (self.subDelim, self.stdout,
self.subDelim)
if self.stderr:
ret += '\nSTDERR:\n%s\n%s\n%s\n' % (self.subDelim, self.stderr,
self.subDelim)
if not self.stdout and not self.stderr:
ret += '\nNothing printed to STDOUT or STDERR\n'
if self.pyError:
ret += '\nPYTHON ERROR:\n%s\n%s\n%s\n' % (self.subDelim,
self.pyError, self.subDelim)
ret += '%s\n' % self.mainDelim
return ret
class CommandState(object):
"""
This is the object that will be used to maintain the state of failures
of the process that this script is wrapping. This object instance will
be serialized to disk and imported to preserve all state when run.
"""
def __init__(self, opts, cmdList):
"""
Instantiate this object with the command line options and the command
list. The command list should start with the command and essentially
be the full command line to be run.
opts<optparse.Values>: The options passed in on the command
line
cmdList<list>: A list containing each element of the
command line
"""
self.opts = opts
self.cmdList = cmdList
self._reset()
self._ph = None
# This is used for calculating backoffs
self._lastEmailNum = 0
def getNumFails(self):
return len(self.failures)
NumFails = property(getNumFails)
def cleanup(self):
try:
self._ph.terminate()
if self._ph.poll() is None:
self._ph.kill()
except:
pass
self._ph = None
def run(self):
"""
Performs this run and prints an error report if necessary.
"""
if self.opts.fuzz:
time.sleep(randint(0, self.opts.fuzz))
start = self.lastRunStartTime = time.time()
stdout = ''
stderr = ''
if self.opts.timeout:
# We set an alarm for the execution of this program since a
# timeout was set
signal.signal(signal.SIGALRM, self._timeoutHandler)
signal.alarm(self.opts.timeout)
try:
if self.opts.singStr:
self._ph = sp.Popen(self.cmdList[0], shell=True,
stdout=sp.PIPE, stderr=sp.PIPE, encoding='utf-8',
errors='ignore')
else:
self._ph = sp.Popen(self.cmdList, stdout=sp.PIPE,
stderr=sp.PIPE, encoding='utf-8', errors='ignore')
stdout, stderr = self._ph.communicate()
if self.opts.timeout:
# If we get here, disable the alarm
signal.alarm(0)
except Exception as e:
self.lastRunRunTime = time.time() - start
self.lastRunExitCode = -1
self.lastRunStdout = ''
self.lastRunStderr = ''
t = ''
if not isinstance(e, CmdTimeout):
import traceback
t = traceback.format_exc()
self.lastRunPyError = '%s\n%s' % (e, t)
self._procFail()
return False
self.lastRunRunTime = time.time() - start
self.lastRunExitCode = self._ph.returncode
self.lastRunStdout = stdout
self.lastRunStderr = stderr
self.lastRunPyError = ''
if self._ph.returncode == 0:
# We have a successful run, reset everything and then just
# print the stdout and stderr vals
self._reset()
if not self.opts.quiet:
sys.stdout.write(stdout)
sys.stderr.write(stderr)
return True
self._procFail()
return False
def _timeoutHandler(self, signum, frame):
"""
This is just an alarm signal handler to handle the timeout specified
on the command line.
"""
self._ph.terminate()
if self._ph.poll() is None:
self._ph.kill()
raise CmdTimeout('Command reached timeout of %d seconds' %
self.opts.timeout)
def _procFail(self):
"""
This processes a failure and adds it to the list of failures. It
then determines whether the specified threshold has been reached and
writes out the failures if it has.
"""
f = Failure(self.cmdList, self.lastRunStartTime, self.lastRunRunTime,
self.lastRunExitCode, self.lastRunStdout, self.lastRunStderr,
self.lastRunPyError)
self.failures.append(f)
if self.opts.syslog:
self._logFail(f)
if self.NumFails:
sendEmail = False
# Determine whether it's time to send an email. Multiple
# if statements here make this much more readable than one
# giant decision
if self.NumFails % self.opts.numFails == 0 and \
not (self.opts.backoff and self._lastEmailNum > 0):
sendEmail = True
self._lastEmailNum = self.NumFails
if self.opts.fstFail and self.NumFails == 1:
sendEmail = True
if self.opts.backoff and self.NumFails == self._lastEmailNum * 2 \
and self.NumFails % self.opts.numFails == 0:
sendEmail = True
self._lastEmailNum = self.NumFails
if sendEmail:
sioFail = self._getFailText()
if self.opts.mail:
self._sendEmail(sioFail.getvalue())
if not self.opts.suppressOutput:
print(sioFail.getvalue())
sioFail.close()
self._reset(False)
def _getFailText(self):
"""
This will return the failure text in a StringIO object
"""
sio = StringIO()
if self.NumFails == 1 and self.opts.fstFail:
# We have a first fail
sio.write('The following command has failed for the first '
'time and\n')
sio.write('the option to print a report for the first fail '
'is set.\n')
else:
sio.write('The specified number of failures, %d, ' %
self.opts.numFails)
sio.write('has been reached for the following\n')
sio.write('command which has failed %d times in a row:' %
self.NumFails)
sio.write('\n%s\n\nFAILURES:\n' % ' '.join(self.cmdList))
for f in self.failures[-self.opts.numFails:]:
sio.write(str(f))
return sio
def _getEmailHeaders(self):
"""
Generates the email headers and returns the string
"""
buf = StringIO()
buf.write('From: %s\r\n' % self.opts.mailFrom)
buf.write('Subject: %s\r\n' % self.opts.mailSubject)
buf.write('To: %s\r\n' % self.opts.mailRecips[0])
if len(self.opts.mailRecips) > 1:
buf.write('Cc: %s\r\n' % ','.join(self.opts.mailRecips[1:]))
buf.write('Content-Type: text/plain; charset="us-ascii"\r\n')
buf.write('MIME-Version: 1.0\r\n')
buf.write('\r\n')
ret = buf.getvalue()
buf.close()
return ret
def _sendEmail(self, failText):
"""
Sends an email using the command line options
"""
failText = self._getEmailHeaders() + failText
s = None
if not self.opts.smtpServer:
return self._sendSendmail(failText)
if self.opts.smtpSSL:
s = SMTP_SSL()
else:
s = SMTP()
s.connect(self.opts.smtpServer, self.opts.smtpPort)
s.ehlo()
if self.opts.smtpTLS:
s.starttls()
if self.opts.smtpUser:
s.login(self.opts.smtpUser, self.opts.smtpPass)
s.sendmail(self.opts.mailFrom, self.opts.mailRecips, failText)
s.quit()
def _sendSendmail(self, failText):
"""
Send an email using the local sendmail command
"""
cmd = [self.opts.sendmail, '-f', self.opts.mailFrom]
cmd.extend(self.opts.mailRecips)
p = sp.Popen(cmd, stdin=sp.PIPE, stdout=sp.PIPE, stderr=sp.PIPE)
stdout, stderr = p.communicate(failText)
if p.returncode != 0:
print('Mail error: \n%s\n%s' % (stdout, stderr), file=sys.stderr)
raise MailError('Error sending email with "sendmail":\n'
'STDOUT:\n%s\nSTDERR:\n%s\n' % (stdout, stderr))
def _logFail(self, fail):
"""
Logs the failure to syslog
"""
if self.opts.sNumOnly and not \
(self.NumFails % self.opts.numFails == 0 or \
(self.opts.fstFail and self.NumFails == 1)):
# Basically, if we only want to log when we've hit the number
# of failures and we haven't hit that mark, we return
return
msg = 'CMD: %s; EXIT: %d; RUNTIME: %.02f; ' % (fail.command,
fail.exitCode, fail.runTime)
if fail.pyError:
msg += 'PYERR: %s; ' % fail.pyError
if fail.stdout:
msg += 'STDOUT: %s; ' % fail.stdout.replace('\n', ' ')
if fail.stderr:
msg += 'STDERR: %s;' % fail.stderr.replace('\n', ' ')
log(msg)
def _reset(self, resetFails=True):
"""
Resets all the variables back to empty defaults
"""
if resetFails:
self.failures = []
self.lastRunExitCode = None
self.lastRunStdout = None
self.lastRunStderr = None
self.lastRunStartTime = None
self.lastRunRunTime = None
self.lastRunPyError = None
def _getEscCmd(self):
cmd = "'%s'" % self.cmdList[0].replace("'", "'\"'\"'")
return cmd
def handleEmailOpts(parser, opts):
"""
Sanity checks against the input email options
"""
if not opts.mail:
if opts.suppressOutput:
parser.error('You cannot suppress output unless you are using '
'cwrap to send email')
return
if not opts.mailRecips:
parser.error('You must specify at least one recipient if you are '
'using cwrap to send mail')
if opts.smtpCreds:
if not os.path.isfile(opts.smtpCreds):
parser.error('SMTP creds file, %s, does not exist' % opts.smtpCreds)
try:
creds = open(opts.smtpCreds).read()
except Exception as e:
parser.error('Error opening SMTP credentials file (%s): %s' %
(opts.smtpCreds, e))
try:
user, passwd = creds.strip().split(':', 1)
except:
parser.error('Invalid credentials in SMTP creds file '
'(%s). They should be in the form USERNAME:PASSWORD' %
opts.smtpCreds)
opts.smtpUser = user
opts.smtpPass = passwd
if (opts.smtpUser and not opts.smtpPass) or \
(opts.smtpPass and not opts.smtpUser):
parser.error('If you specify an SMTP user or password, you must '
'specify both a user and a password')
if opts.smtpSSL and opts.smtpTLS:
parser.error('You cannot specify both SSL and TLS for email')
if not opts.smtpServer:
# Get the sendmail binary
sendmail = findInPath(opts, 'sendmail')
if sendmail is None:
parser.error('You have specified that cwrap is to send email, '
'but I cannot find a sendmail binary in the PATH: %s' %
os.environ['PATH'])
opts.sendmail = sendmail
# Utility functions
def getOpts():
global LOGPRI
"""
Parses the command line options and returns the output of
OptionParser.parse_args()
returns -> (<OptionParser.Values>, <list>)
"""
# Callback for the state directory that checks to make sure
# the directory exists and is writable
def cb_sd(val):
if not os.path.isdir(val) or not os.access(val, os.F_OK | os.W_OK):
raise ArgumentError(
'State directory must be a writable directory')
return val
p = ArgumentParser()
gState = p.add_argument_group('State Options', 'These options pertain to '
'state and lock maintenance')
gFailure = p.add_argument_group('Failure Options', 'These are the options '
'for how to handle failures when they occur.')
gRetry = p.add_argument_group('Retry Options', 'These options relate to '
'the built in retry mechanism. The retry mechanism only relates '
'to the cwrap locking function and how many times to try if a '
'previous instance of this script is already running.')
gCommand = p.add_argument_group('Command Options',
'These options define how the command is interpreted and run.')
gSyslog = p.add_argument_group('Syslog Options',
'Options for logging errors via syslog in addition to normal output.')
gEmail = p.add_argument_group('Email Options', 'If you wish to email other '
'addresses than what is in your crontab, you can specify these here. '
'You can also use an external SMTP server to send the email '
'instead of the local mailer.')
p.add_argument('-V', '--version', dest='version', default=False,
action='store_true',
help='Print the version number and exit [default: %(default)s]')
p.add_argument('-B', '--debug', default=False, action='store_true',
help='Turn on debug output [default: %(default)s]')
gState.add_argument('-d', '--state-directory', dest='stateDir',
default='/var/tmp', metavar='PATH', type=cb_sd,
help='The directory to write the state file to. [default: %(default)s]')
gState.add_argument('-F', '--lock-file', dest='lockFile', default=None,
metavar='FILE',
help='Set a specific lock file to use. This is useful when running '
'2 different scripts, or the same script with different command-line '
'opts, that cannot run at the same time. '
'[default: <auto-gen lockfile>]')
gRetry.add_argument('-r', '--num-retries', dest='numRetries', type=int,
default=0, metavar='INT',
help='The number of times to retry this if a previous instance is '
'running. The script will retry every "-s" seconds if this is '
'greater than zero. [default: %(default)s]')
gRetry.add_argument('-s', '--retry-seconds', dest='retrySecs', type=int,
default=10, metavar='INT',
help='This is the number of seconds between retries. This only '
'matters if the "-r" option is set to greater than zero. '
'[default: %(default)s]')
gRetry.add_argument('-i', '--ignore-retry-fails', dest='ignoreRetFail',
action='store_true', default=False,
help='Ignore the failures which occur because this tried to run '
'while a previous instance was still running. Basically, an error '
'will not be printed if the number of run retries are exceeded. '
'[default: %(default)s]')
gFailure.add_argument('-n', '--num-fails', dest='numFails', type=int,
default=1, metavar='INT',
help='The number of consecutive failures that must occur '
'before a report is printed [default: %(default)s]')
gFailure.add_argument('-f', '--first-fail', dest='fstFail',
action='store_true', default=False,
help='The default is to print a failure report only when a multiple '
'of the failure threshold is reached. If this is set, an email will '
'*also* be sent on the first failure. [default: %(default)s]')
gFailure.add_argument('-b', '--backoff', dest='backoff',
action='store_true', default=False,
help='Instead of sending an email out every "-n" failures, if this is '
'set, emails will be sent out at an exponentially decaying rate. '
'If you set the num fails to 3, then an email would be sent at 3 '
'fails, 6 fails, 12 fails, 24 fails, etc. [default: %(default)s]')
gCommand.add_argument('-p', '--path', dest='PATH',
default=os.environ['PATH'], metavar='CMD_PATH',
help='Use this for command path instead of the environment $PATH. '
'[default: %(default)s]')
gCommand.add_argument('-g', '--single-string', dest='singStr',
action='store_true', default=False,
help='This says that you are passing in a command line as a single '
'string. This means that the entire command (with args) MUST be '
'encased in quotes! This is handy if you want to encapsulate '
'a pipe ("|") '
'in your command to be run: "cat /tmp/file | grep stuff". That '
'would be passed directly to a subshell for execution '
'[default: %(default)s]')
gCommand.add_argument('-t', '--timeout', dest='timeout',
metavar='INT', default=0, type=int,
help='The number of seconds to allow the command to run before '
'terminating. Set to zero to disable timeouts. [default: %(default)s]')
gCommand.add_argument('-z', '--fuzz', dest='fuzz', metavar='INT',
type=int, default=0, help='This will add a random sleep between 0 '
'and N seconds before executing the command. Note that the '
'--timeout is only valid in regards to when the command is actually '
'run. To calculate run time, you should add timeout + fuzz + '
'command run time [default: %(default)s]')
gCommand.add_argument('-q', '--quiet', dest='quiet', default=False,
action='store_true',
help='Only output error reports. If the command runs successfully, '
'nothing will be printed, even if the command had stdout or stderr '
'output. [default: %(default)s]')
gSyslog.add_argument('-S', '--syslog', dest='syslog', default=False,
action='store_true',
help='Turn on syslogging. This will log *all* failures to syslog. '
'This is useful for diagnosing intermittent issues that don\'t '
'necessarily reach the "--num-fails" limit. See "-C" and "-P" for '
'facility and priority options [default: %(default)s]')
gSyslog.add_argument('-C', '--syslog-facility', dest='sFacility',
metavar='FACILITY',
default='LOG_LOCAL7', help='The syslog facility to use. See '
'the facility section in "man syslog" for a list of choices. You '
'must use "--syslog" with this. [default: %(default)s]')
gSyslog.add_argument('-P', '--syslog-priority', dest='sPriority',
metavar='PRIORITY',
default='LOG_INFO', help='Sets the priority for the syslog messages. '
'See the level section in "man syslog" for a list of choices. You '
'must use "--syslog" with this. [default: %(default)s]')
gSyslog.add_argument('-O', '--num-fails-only', dest='sNumOnly',
action='store_true', default=False,
help='Only log an item when the number of failures is reached. '
'Normally, *all* failures are logged, but you can use this option to '
'only write to syslog only when --num-fails is reached '
'[default: %(default)s]')
gEmail.add_argument('-M', '--send-mail', action='store_true', dest='mail',
default=False, help='Send an email from within cwrap itself. This '
'option is *required* if you wish to use the email options below. '
'Any other email options will be ignored if this option is not '
'specified. Note that this can be used with -N to disable normal '
'output and just use cwrap to send an email [default: %(default)s]')
gEmail.add_argument('-N', '--suppress-normal-output', action='store_true',
default=False, dest='suppressOutput',
help='Suppress the normal output to STDOUT that would '
'normally cause crond to send an email. This can *only* be specified '
'if you are using cwrap to send an email (-M). [default: %(default)s]')
gEmail.add_argument('-E', '--email-from', dest='mailFrom',
default='%s@localhost.localdomain' % getpass.getuser(),
metavar='EMAIL_ADDR', help='The email address to use as the sending '
'address. It is advised that you set this to a non-default. '
'[default: %(default)s]')
gEmail.add_argument('-R', '--email-recipient', action='append',
default=[], dest='mailRecips', metavar='EMAIL_ADDR',
help='The recipient(s) to send '
'the email to. This option can be specified multiple times to send '
'to multiple addresses [default: %(default)s]')
gEmail.add_argument('-J', '--email-subject', dest='mailSubject',
metavar='SUBJECT', default='cwrap.py failure report',
help='The subject of the email to be sent [default: %(default)s]')
gEmail.add_argument('-X', '--smtp-server', metavar='HOSTNAME|IP',
default='', dest='smtpServer',
help='The SMTP server to use to send the email. If '
'this option is not set, the local "sendmail" command will be used '
'instead [default: %(default)s]')
gEmail.add_argument('-T', '--smtp-port', type=int, default=25,
metavar='INT', dest='smtpPort',
help='The SMTP port to use [default: %(default)s]')
gEmail.add_argument('-L', '--ssl', action='store_true', default=False,
dest='smtpSSL',
help='Use SSL for the SMTP server connection [default: %(default)s]')
gEmail.add_argument('-Z', '--starttls', action='store_true',
dest='smtpTLS', default=False,
help='Use STARTTLS on the smtp connection [default: %(default)s]')
gEmail.add_argument('-U', '--smtp-username', default='',
dest='smtpUser', metavar='USERNAME',
help='An SMTP username for auth SMTP [default: %(default)s]')
gEmail.add_argument('-W', '--smtp-password', default='',
dest='smtpPass', metavar='PASSWORD',
help='A password for auth SMTP [default: %(default)s]')
gEmail.add_argument('-D', '--smtp-creds-file', default='',
dest='smtpCreds', metavar='FILE',
help='If you don\'t want to specify your smtp '
'username and password on the command-line, you can specify a '
'credentials file instead. All you should have in the file is: '
'USERNAME:PASSWORD [default: %(default)s]')
opts, cmdList = p.parse_known_args()
if opts.version:
print('cwrap: %s' % __version__)
sys.exit(0)
# Eval the syslog priority and facility if syslogging is on
if opts.syslog:
try:
fac = eval('syslog.%s' % opts.sFacility)
except:
p.error('Invalid syslog facility, "%s", see "man syslog" for '
'facility choices')
try:
pri = eval('syslog.%s' % opts.sPriority)
except:
p.error('Invalid syslog priority, "%s", see "man syslog" for '
'priority (level) options')
try:
syslog.openlog('cwrap', syslog.LOG_PID, fac)
except Exception as e:
p.error('Error opening syslog with facility %s: %s' % (
opts.sFacility, e))
LOGPRI = pri
if opts.numFails < 1:
p.error('Number of fails must be at least 1.')
if opts.numRetries < 0:
p.error('Number of retries can not be less than 0')
if opts.retrySecs < 1:
p.error('Retry seconds cannot be less than 1')
if opts.timeout < 0:
p.error('Command timeout must be set to a positive integer or zero to'
'disable it')
if opts.fuzz < 0:
p.error('The fuzz time must be a positive integer, or zero to '
'disable it')
if not cmdList:
p.error('You must specify a command to be executed')
handleEmailOpts(p, opts)
return (opts, cmdList)
def sigHandler(frame, num):
global STATEFILE
STATEFILE.close()
sys.exit(0)
def log(msg):
syslog.syslog(LOGPRI, msg)
def findInPath(opts, binary):
"""
Searches the user's PATH for binary and returns the full path to it
"""
for d in opts.PATH.split(':'):
p = os.path.join(d, binary)
if os.path.exists(p):
return p
return None
def main():
global STATEFILE
opts, cmdList = getOpts()
oldPath = os.environ['PATH']
if oldPath != opts.PATH:
os.environ['PATH'] = opts.PATH
stFName = StateFile.getStateFileName(opts, cmdList)
stFh = None
try:
stFh = StateFile.getStateFile(opts, cmdList)
except FileCreationError as e:
if opts.debug:
import traceback; traceback.print_exc()
if opts.ignoreRetFail:
# Option is set to ignore this type of failure. Exit as if
# successful. This will keep a message from being sent by
# cron
sys.exit(0)
else:
print(e, file=sys.stderr)
sys.exit(E_FC)
STATEFILE = stFh
# Set the signal handlers
signal.signal(signal.SIGINT, sigHandler)
signal.signal(signal.SIGHUP, sigHandler)
signal.signal(signal.SIGTERM, sigHandler)
# Either get the command state from a previous run or create it
comSt = stFh.getObject()
if not comSt:
comSt = CommandState(opts, cmdList)
# Set any new command line opts
comSt.opts = opts
comSt.run()
comSt.cleanup()
stFh.saveObject(comSt)
stFh.close()
os.environ['PATH'] = oldPath
try:
syslog.closelog()
except:
pass
if __name__ == '__main__':
main()