/lib/systemd/system-generators/systemd-crontab-generator is in systemd-cron 1.5.3-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 | #!/usr/bin/python3
import sys
import os
import pwd
import re
import string
from functools import reduce
import hashlib
envvar_re = re.compile(r'^([A-Za-z_0-9]+)\s*=\s*(.*)$')
MINUTES_SET = list(range(0, 60))
HOURS_SET = list(range(0, 24))
DAYS_SET = list(range(0, 32))
DOWS_SET = ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']
MONTHS_SET = list(range(0, 13))
TIME_UNITS_SET = ['daily', 'weekly', 'monthly', 'quarterly', 'semi-annually', 'yearly']
KSH_SHELLS = ['/bin/sh', '/bin/dash', '/bin/ksh', '/bin/bash', '/usr/bin/zsh']
REBOOT_FILE = '/run/crond.reboot'
SELF = os.path.basename(sys.argv[0])
class Persistent(object):
yes, no, auto = range(3)
@classmethod
def parse(cls, value):
value = value.strip().lower()
if value in ['yes', 'true', '1']:
return cls.yes
elif value in ['auto', '']:
return cls.auto
else:
return cls.no
def files(dirname):
try:
return list(filter(os.path.isfile, [os.path.join(dirname, f) for f in os.listdir(dirname)]))
except OSError:
return []
def expand_home_path(path, user):
try:
home = pwd.getpwnam(user).pw_dir
except KeyError:
return path
parts = path.split(':')
for i, part in enumerate(parts):
if part.startswith('~/'):
parts[i] = home + part[1:]
return ':'.join(parts)
def parse_crontab(filename, withuser=True, monotonic=False):
basename = os.path.basename(filename)
environment = { }
random_delay = 1
start_hours_range = 0
boot_delay = 0
persistent = Persistent.yes if monotonic else Persistent.auto
batch = False
with open(filename, 'r', encoding='utf8') as f:
for line in f.readlines():
line = line.strip()
if not line or line.startswith('#'):
continue
envvar = envvar_re.match(line)
if envvar:
value = envvar.group(2)
value = value.strip("'").strip('"')
if envvar.group(1) == 'RANDOM_DELAY':
try:
random_delay = int(value)
except ValueError:
log(4, 'invalid RANDOM_DELAY in %s: %s' % (filename, line))
elif envvar.group(1) == 'START_HOURS_RANGE':
try:
start_hours_range = int(value.split('-')[0])
except ValueError:
log(4, 'invalid START_HOURS_RANGE in %s: %s' % (filename, line))
elif envvar.group(1) == 'DELAY':
try:
boot_delay = int(value)
except ValueError:
log(4, 'invalid DELAY in %s: %s' % (filename, line))
elif envvar.group(1) == 'PERSISTENT':
persistent = Persistent.parse(value)
elif not withuser and envvar.group(1) == 'PATH':
environment['PATH'] = expand_home_path(value, basename)
elif envvar.group(1) == 'BATCH':
batch = (value.strip().lower() in ['yes','true','1'])
else:
environment[envvar.group(1)] = value
continue
parts = line.split()
line = ' '.join(parts)
if monotonic:
if len(parts) < 4:
yield { 'l': line }
continue
period, delay, jobid = parts[0:3]
command = ' '.join(parts[3:])
period = {
'1': 'daily',
'7': 'weekly',
'30': 'monthly',
'31': 'monthly',
'@biannually': 'semi-annually',
'@bi-annually': 'semi-annually',
'@semiannually': 'semi-annually',
'@anually': 'yearly',
'@annually': 'yearly',
}.get(period, None) or period.lstrip('@')
try:
boot_delay = int(delay)
except ValueError:
log(4, 'invalid DELAY in %s: %s' % (filename, line))
boot_delay = 0
if boot_delay < 0: boot_delay = 0
valid_chars = "-_%s%s" % (string.ascii_letters, string.digits)
jobid = ''.join(c for c in jobid if c in valid_chars)
yield {
'e': ' '.join('"%s=%s"' % kv for kv in environment.items()),
's': environment.get('SHELL','/bin/sh'),
'a': random_delay,
'l': line,
'f': filename,
'p': period.lower(),
'b': boot_delay,
'h': start_hours_range,
'P': False if persistent == Persistent.no else True,
'j': jobid,
'u': 'root',
'c': command,
'Z': batch,
}
else:
if line.startswith('@'):
if len(parts) < 2 + int(withuser):
yield { 'l': line }
continue
period = parts[0]
period = {
'@biannually': 'semi-annually',
'@bi-annually': 'semi-annually',
'@semiannually': 'semi-annually',
'@anually': 'yearly',
'@annually': 'yearly',
}.get(period, None) or period.lstrip('@')
user, command = (parts[1], ' '.join(parts[2:])) if withuser else (basename, ' '.join(parts[1:]))
yield {
'e': ' '.join('"%s=%s"' % kv for kv in environment.items()),
's': environment.get('SHELL','/bin/sh'),
'a': random_delay,
'l': line,
'f': filename,
'p': period.lower(),
'b': boot_delay,
'h': start_hours_range,
'P': False if persistent == Persistent.no else True,
'j': basename,
'u': user,
'c': command,
'Z': batch,
}
else:
if len(parts) < 6 + int(withuser):
yield { 'l': line }
continue
minutes, hours, days = parts[0:3]
months, dows = parts[3:5]
user, command = (parts[5], ' '.join(parts[6:])) if withuser else (basename, ' '.join(parts[5:]))
yield {
'e': ' '.join('"%s=%s"' % kv for kv in environment.items()),
's': environment.get('SHELL','/bin/sh'),
'a': random_delay,
'l': line,
'f': filename,
'b': boot_delay,
'm': parse_time_unit(filename, line, minutes, MINUTES_SET),
'h': parse_time_unit(filename, line, hours, HOURS_SET),
'd': parse_time_unit(filename, line, days, DAYS_SET),
'w': parse_time_unit(filename, line, dows, DOWS_SET, dow_map),
'M': parse_time_unit(filename, line, months, MONTHS_SET, month_map),
'P': True if persistent == Persistent.yes else False,
'j': basename,
'u': user,
'c': command,
'Z': batch,
}
def parse_time_unit(filename, line, value, values, mapping=int):
if value == '*':
return ['*']
try:
result = sorted(reduce(lambda a, i: a.union(set(i)), list(map(values.__getitem__,
list(map(parse_period(mapping), value.split(','))))), set()))
except ValueError:
result = []
if not len(result): log(3, 'garbled time in %s [%s]: %s' % (filename, line, value))
return result
def month_map(month):
try:
return int(month)
except ValueError:
return ['jan', 'feb', 'mar', 'apr', 'may', 'jun', 'jul', 'aug', 'sep', 'nov', 'dec'].index(month.lower()[0:3]) + 1
def dow_map(dow):
try:
return ['sun', 'mon', 'tue', 'wed', 'thu', 'fri', 'sat'].index(dow[0:3].lower())
except ValueError:
return int(dow) % 7
def parse_period(mapping=int):
def parser(value):
try:
range, step = value.split('/')
except ValueError:
range = value
step = 1
if range == '*':
return slice(None, None, int(step))
try:
start, end = range.split('-')
except ValueError:
start = end = range
return slice(mapping(start), mapping(end) + 1, int(step))
return parser
def generate_timer_unit(job, seq):
persistent = job['P']
command = job['c']
parts = command.split()
testremoved = None
standardoutput = None
delay = job['b']
daemon_reload = os.path.isfile(REBOOT_FILE)
try:
home = pwd.getpwnam(job['u']).pw_dir
except KeyError:
home = None
# perform smart substitutions for known shells
if job['s'] in KSH_SHELLS:
if home and command.startswith('~/'):
command = home + command[1:]
if (len(parts) >= 3 and
parts[-2] == '>' and
parts[-1] == '/dev/null'):
command = ' '.join(parts[0:-2])
parts = command.split()
standardoutput='null';
if (len(parts) >= 2 and
parts[-1] == '>/dev/null'):
command = ' '.join(parts[0:-1])
parts = command.split()
standardoutput='null';
if (len(parts) == 6 and
parts[0] == '[' and
parts[1] in ['-x','-f','-e'] and
parts[2] == parts[5] and
parts[3] == ']' and
parts[4] == '&&' ):
testremoved = parts[2]
command = ' '.join(parts[5:])
parts = command.split()
if (len(parts) == 5 and
parts[0] == 'test' and
parts[1] in ['-x','-f','-e'] and
parts[2] == parts[4] and
parts[3] == '&&' ):
testremoved = parts[2]
command = ' '.join(parts[4:])
parts = command.split()
if testremoved and not os.path.isfile(testremoved): return
if (len(parts) == 6 and
parts[0] == '[' and
parts[1] in ['-d','-e'] and
parts[2] == '/run/systemd/system' and
parts[3] == ']' and
parts[4] == '||'): return
if (len(parts) == 5 and
parts[0] == 'test' and
parts[1] in ['-d','-e'] and
parts[2] == '/run/systemd/system' and
parts[3] == '||'): return
# TODO: translate 'command%line1%line2%line3
# in '/bin/echo -e line1\\nline2\\nline3 | command'
# to be POSIX compliant
if 'p' in job:
hour = job['h']
if job['p'] == 'reboot':
if daemon_reload: return
if delay == 0: delay = 1
schedule = None
persistent = False
elif job['p'] == 'minutely':
schedule = job['p']
persistent = False
elif job['p'] == 'hourly' and delay == 0:
schedule = 'hourly'
elif job['p'] == 'hourly':
schedule = '*-*-* *:%s:0' % delay
delay = 0
elif job['p'] == 'midnight' and delay == 0:
schedule = 'daily'
elif job['p'] == 'midnight':
schedule = '*-*-* 0:%s:0' % delay
elif job['p'] in TIME_UNITS_SET and hour == 0 and delay == 0:
schedule = job['p']
elif job['p'] == 'daily':
schedule = '*-*-* %s:%s:0' % (hour, delay)
elif job['p'] == 'weekly':
schedule = 'Mon *-*-* %s:%s:0' % (hour, delay)
elif job['p'] == 'monthly':
schedule = '*-*-1 %s:%s:0' % (hour, delay)
elif job['p'] == 'quarterly':
schedule = '*-1,4,7,10-1 %s:%s:0' % (hour, delay)
elif job['p'] == 'semi-annually':
schedule = '*-1,7-1 %s:%s:0' % (hour, delay)
elif job['p'] == 'yearly':
schedule = '*-1-1 %s:%s:0' % (hour, delay)
else:
try:
if int(job['p']) > 31:
# workaround for anacrontab
schedule = '*-1/%s-1 %s:%s:0' % (int(round(job['p']/30)), hour, delay)
else:
schedule = '*-*-1/%s %s:%s:0' % (int(job['p']), hour, delay)
except ValueError:
log(3, 'unknown schedule in %s: %s' % (job['f'], job['l']))
schedule = job['p']
else:
dows = ','.join(job['w'])
dows = '' if dows == '*' else dows + ' '
if 0 in job['M']: job['M'].remove(0)
if 0 in job['d']: job['d'].remove(0)
if not len(job['M']) or not len(job['d']) or not len(job['h']) or not len(job['m']):
return
schedule = '%s*-%s-%s %s:%s:00' % (dows, ','.join(map(str, job['M'])),
','.join(map(str, job['d'])), ','.join(map(str, job['h'])), ','.join(map(str, job['m'])))
if not persistent:
unit_id = next(seq)
else:
unit_id = hashlib.md5()
unit_id.update(bytes('\0'.join([schedule, command]), 'utf-8'))
unit_id = unit_id.hexdigest()
unit_name = "cron-%s-%s-%s" % (job['j'], job['u'], unit_id)
if not (len(parts) == 1 and os.path.isfile(command)):
if "'" not in command:
command=job['s'] + " -c '" + command + "'"
elif '"' not in command:
command=job['s'] + ' -c "' + command + '"'
else:
with open('%s/%s.sh' % (TARGET_DIR, unit_name), 'w', encoding='utf8') as f:
f.write(command)
command=job['s'] + ' ' + TARGET_DIR + '/' + unit_name + '.sh'
with open('%s/%s.timer' % (TARGET_DIR, unit_name), 'w' , encoding='utf8') as f:
f.write('[Unit]\n')
f.write('Description=[Timer] "%s"\n' % job['l'])
f.write('Documentation=man:systemd-crontab-generator(8)\n')
f.write('PartOf=cron.target\n')
f.write('RefuseManualStart=true\n')
f.write('RefuseManualStop=true\n')
f.write('SourcePath=%s\n' % job['f'])
if testremoved: f.write('ConditionFileIsExecutable=%s\n' % testremoved)
f.write('\n[Timer]\n')
f.write('Unit=%s.service\n' % unit_name)
if schedule: f.write('OnCalendar=%s\n' % schedule)
else: f.write('OnBootSec=%sm\n' % delay)
if job['a'] != 1: f.write('AccuracySec=%sm\n' % job['a'])
if True and persistent: f.write('Persistent=true\n')
try:
os.symlink('%s/%s.timer' % (TARGET_DIR, unit_name), '%s/%s.timer' % (TIMERS_DIR, unit_name))
except OSError as e:
if e.errno != os.errno.EEXIST:
raise
with open('%s/%s.service' % (TARGET_DIR, unit_name), 'w', encoding='utf8') as f:
f.write('[Unit]\n')
f.write('Description=[Cron] "%s"\n' % job['l'])
f.write('Documentation=man:systemd-crontab-generator(8)\n')
f.write('RefuseManualStart=true\n')
f.write('RefuseManualStop=true\n')
f.write('SourcePath=%s\n' % job['f'])
if '"MAILTO="' not in job['e']: f.write('OnFailure=cron-failure@%i.service\n')
if job['u'] != 'root' or job['f'] == '/var/spool/cron/crontabs/root':
f.write('Requires=systemd-user-sessions.service\n')
if home: f.write('RequiresMountsFor=%s\n' % home)
f.write('\n[Service]\n')
f.write('Type=oneshot\n')
f.write('IgnoreSIGPIPE=false\n')
if schedule and delay: f.write('ExecStartPre=-/lib/systemd-cron/boot_delay %s\n' % delay)
f.write('ExecStart=%s\n' % command)
if job['e']: f.write('Environment=%s\n' % job['e'])
if job['u'] != 'root': f.write('User=%s\n' % job['u'])
if standardoutput: f.write('StandardOutput=%s\n' % standardoutput)
if job['Z']:
f.write('CPUSchedulingPolicy=idle\n')
f.write('IOSchedulingClass=idle\n')
return '%s.timer' % unit_name
def log(level, message):
if len(sys.argv) == 4:
with open('/dev/kmsg', 'w', encoding='utf8') as kmsg:
kmsg.write('<%s> %s[%s]: %s\n' % (level, SELF, os.getpid(), message))
else:
sys.stderr.write('%s: %s\n' % (SELF, message))
seqs = {}
def count():
n = 0
while True:
yield n
n += 1
def main():
try:
os.makedirs(TIMERS_DIR)
except OSError as e:
if e.errno != os.errno.EEXIST:
raise
if os.path.isfile('/etc/crontab'):
for job in parse_crontab('/etc/crontab', withuser=True):
if 'c' not in job:
log(3, 'truncated line in /etc/crontab: %s' % job['l'])
continue
if '/etc/cron.hourly' in job['c']: continue
if '/etc/cron.daily' in job['c']: continue
if '/etc/cron.weekly' in job['c']: continue
if '/etc/cron.monthly' in job['c']: continue
generate_timer_unit(job, seqs.setdefault(job['j']+job['u'], count()))
CRONTAB_FILES = files('/etc/cron.d')
for filename in CRONTAB_FILES:
basename = os.path.basename(filename)
if (os.path.exists('/lib/systemd/system/%s.timer' % basename)
or os.path.exists('/etc/systemd/system/%s.timer' % basename)):
log(5, 'ignoring %s because native timer is present' % filename)
continue
elif basename.startswith('.'):
continue
elif '.dpkg-' in basename:
log(5, 'ignoring %s' % filename)
continue
else:
for job in parse_crontab(filename, withuser=True):
if 'c' not in job:
log(3, 'truncated line in %s: %s' % (filename, job['l']))
continue
generate_timer_unit(job, seqs.setdefault(job['j']+job['u'], count()))
if os.path.isfile('/etc/anacrontab'):
for job in parse_crontab('/etc/anacrontab', monotonic=True):
if 'c' not in job:
log(3, 'truncated line in /etc/anacrontab: %s' % job['l'])
continue
generate_timer_unit(job, seqs.setdefault(job['j']+job['u'], count()))
if os.path.isdir('/var/spool/cron/crontabs'):
# /var is avaible
USERCRONTAB_FILES = files('/var/spool/cron/crontabs')
for filename in USERCRONTAB_FILES:
basename = os.path.basename(filename)
if '.' in basename:
continue
else:
for job in parse_crontab(filename, withuser=False):
generate_timer_unit(job, seqs.setdefault(job['j']+job['u'], count()))
try:
open(REBOOT_FILE,'a').close()
except:
pass
else:
# schedule rerun
with open('%s/cron-after-var.service' % TARGET_DIR, 'w') as f:
f.write('[Unit]\n')
f.write('Description=Rerun systemd-crontab-generator because /var is a separate mount\n')
f.write('Documentation=man:systemd.cron(7)\n')
f.write('After=cron.target\n')
f.write('ConditionDirectoryNotEmpty=/var/spool/cron/crontabs\n')
f.write('\n[Service]\n')
f.write('Type=oneshot\n')
f.write('ExecStart=/bin/sh -c "/bin/systemctl daemon-reload ; /bin/systemctl try-restart cron.target"\n')
MULTIUSER_DIR = os.path.join(TARGET_DIR, 'multi-user.target.wants')
try:
os.makedirs(MULTIUSER_DIR)
except OSError as e:
if e.errno != os.errno.EEXIST:
raise
try:
os.symlink('%s/cron-after-var.service' % TARGET_DIR, '%s/cron-after-var.service' % MULTIUSER_DIR)
except OSError as e:
if e.errno != os.errno.EEXIST:
raise
if __name__ == '__main__':
if len(sys.argv) == 1 or not os.path.isdir(sys.argv[1]):
sys.exit("Usage: %s <destination_folder>" % sys.argv[0])
TARGET_DIR = sys.argv[1]
TIMERS_DIR = os.path.join(TARGET_DIR, 'cron.target.wants')
try:
main()
except Exception as e:
if len(sys.argv) == 4:
open('/dev/kmsg', 'w').write('<2> %s[%s]: global exception: %s\n' % (SELF, os.getpid(), e))
exit(1)
else:
raise
|