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
|
# -*- coding: utf-8 -*-
# docs/COPYING 2a + DRY: https://github.com/getmail6/getmail6
# Please refer to the git history regarding who changed what and when in this file.
'''Base classes used elsewhere in the package.
'''
import sys
import os
import time
import signal
import types
import codecs
from collections import namedtuple
import tempfile
import errno
import multiprocessing as mp
from argparse import Namespace
import subprocess
from getmailcore.exceptions import *
import getmailcore.logging
from getmailcore.utilities import *
__all__ = [
'ConfBool',
'ConfDirectory',
'ConfFile',
'ConfigurableBase',
'ConfInstance',
'ConfInt',
'ConfMaildirPath',
'ConfMboxPath',
'ConfPassword',
'ConfString',
'ConfTupleOfStrings',
'ConfTupleOfTupleOfStrings',
'ConfTupleOfUnicode',
'ForkingBase',
'run_command',
]
#######################################
def run_command(command, args):
# Simple subprocess wrapper for running a command and fetching its exit
# status and output/stderr.
if args is None:
args = []
if isinstance(args, tuple):
args = list(args)
# Programmer sanity checks
assert isinstance(command, (bytes, str)), (
'command is %s (%s)' % (command, type(command))
)
assert isinstance(args, list), (
'args is %s (%s)' % (args, type(args))
)
for arg in args:
assert isinstance(arg, (bytes, str)), 'arg is %s (%s)' % (arg, type(arg))
with tempfile.TemporaryFile() as stdout, tempfile.TemporaryFile() as stderr:
cmd = [command] + args
try:
p = subprocess.Popen(cmd, stdout=stdout, stderr=stderr)
except OSError as o:
if o.errno == errno.ENOENT:
# no such file, command not found
raise getmailConfigurationError('Program "%s" not found' % command)
#else:
raise
rc = p.wait()
stdout.seek(0)
stderr.seek(0)
return (rc, stdout.read().decode().strip(), stderr.read().decode().strip())
#
# Base classes
#
class ConfItem:
securevalue = False
def __init__(self, name, dtype, default=None, required=True):
self.log = getmailcore.logging.Logger()
self.name = name
self.dtype = dtype
self.default = default
self.required = required
def validate(self, configuration, val=None):
if val is None:
# If not passed in by subclass
val = configuration.get(self.name, None)
if val is None:
# Not provided.
if self.required:
raise getmailConfigurationError(
'%s: missing required configuration parameter' % self.name
)
# Use default.
return self.default
if not isinstance(val,self.dtype) and val != self.default:
# Got value, but not of expected type. Try to convert.
if self.securevalue:
self.log.debug('converting %s to type %s\n'
% (self.name, self.dtype))
else:
self.log.debug('converting %s (%s) to type %s\n'
% (self.name, val, self.dtype))
try:
if self.dtype == bool:
val = eval_bool(val)
else:
val = self.dtype(eval(val))
except (ValueError, SyntaxError, TypeError) as o:
raise getmailConfigurationError(
'%s: configuration value (%s) not of required type %s (%s)'
% (self.name, val, self.dtype, o)
)
return val
class ConfInstance(ConfItem):
def __init__(self, name, default=None, required=True):
ConfItem.__init__(self, name, object, default=default,
required=required)
class ConfString(ConfItem):
def __init__(self, name, default=None, required=True):
ConfItem.__init__(self, name, str, default=default, required=required)
class ConfBool(ConfItem):
def __init__(self, name, default=None, required=True):
ConfItem.__init__(self, name, bool, default=default, required=required)
class ConfInt(ConfItem):
def __init__(self, name, default=None, required=True):
ConfItem.__init__(self, name, int, default=default, required=required)
class ConfTupleOfStrings(ConfString):
def __init__(self, name, default=None, required=True):
ConfString.__init__(self, name, default=default, required=required)
def validate(self, configuration):
val = ConfItem.validate(self, configuration)
try:
if not val:
val = '()'
tup = eval(val)
if not isinstance(tup, tuple):
raise ValueError('not a tuple')
val = tup
except (ValueError, SyntaxError) as o:
raise getmailConfigurationError(
'%s: incorrect format (%s)' % (self.name, o)
)
result = [str(item) for item in val]
return tuple(result)
class ConfTupleOfUnicode(ConfString):
def __init__(self, name, default=None, required=True, allow_specials=()):
ConfString.__init__(self, name, default=default, required=required)
self.specials = allow_specials
def validate(self, configuration):
_locals = dict([(v, v) for v in self.specials])
val = ConfItem.validate(self, configuration)
try:
if not val:
val = '()'
tup = eval(val, {}, _locals)
if tup in self.specials:
val = [tup]
else:
if not isinstance(tup, tuple):
raise ValueError('not a tuple')
vals = []
for item in tup:
try:
item = item.encode()
vals.append(codecs.decode(item,'ascii'))
except:
try:
vals.append(codecs.decode(item,'utf-8'))
except UnicodeError as o:
raise ValueError('not ascii or utf-8: %s' % item)
val = vals
except (ValueError, SyntaxError) as o:
raise getmailConfigurationError(
'%s: incorrect format (%s)' % (self.name, o)
)
return tuple(val)
class ConfTupleOfTupleOfStrings(ConfString):
def __init__(self, name, default=None, required=True):
ConfString.__init__(self, name, default=default, required=required)
def validate(self, configuration):
val = ConfItem.validate(self, configuration)
try:
if not val:
val = '()'
tup = eval(val)
if not isinstance(tup, tuple):
raise ValueError('not a tuple')
val = tup
except (ValueError, SyntaxError) as o:
raise getmailConfigurationError(
'%s: incorrect format (%s)' % (self.name, o)
)
for tup in val:
if not isinstance(tup, tuple):
raise ValueError('contained value "%s" not a tuple' % tup)
if len(tup) != 2:
raise ValueError('contained value "%s" not length 2' % tup)
for part in tup:
if not isinstance(part,str):
raise ValueError('contained value "%s" has non-string part '
'"%s"' % (tup, part))
return val
class ConfPassword(ConfString):
securevalue = True
class ConfDirectory(ConfString):
def __init__(self, name, default=None, required=True):
ConfString.__init__(self, name, default=default, required=required)
def validate(self, configuration):
val = ConfString.validate(self, configuration)
if val is None:
return None
val = expand_user_vars(val)
if not os.path.isdir(val):
raise getmailConfigurationError(
'%s: specified directory "%s" does not exist' % (self.name, val)
)
return val
class ConfFile(ConfString):
def __init__(self, name, default=None, required=True):
ConfString.__init__(self, name, default=default, required=required)
def validate(self, configuration):
val = ConfString.validate(self, configuration)
if val is None:
return None
val = expand_user_vars(val)
if not os.path.isfile(val):
raise getmailConfigurationError(
'%s: specified file "%s" does not exist' % (self.name, val)
)
return val
class ConfMaildirPath(ConfDirectory):
def validate(self, configuration):
val = ConfDirectory.validate(self, configuration)
if val is None:
return None
if not val.endswith('/'):
raise getmailConfigurationError(
'%s: maildir must end with "/"' % self.name
)
for subdir in ('cur', 'new', 'tmp'):
subdirpath = os.path.join(val, subdir)
if not os.path.isdir(subdirpath):
raise getmailConfigurationError(
'%s: maildir subdirectory "%s" does not exist'
% (self.name, subdirpath)
)
return val
class ConfMboxPath(ConfString):
def __init__(self, name, default=None, required=True):
ConfString.__init__(self, name, default=default, required=required)
def validate(self, configuration):
val = ConfString.validate(self, configuration)
if val is None:
return None
val = expand_user_vars(val)
if not os.path.isfile(val):
raise getmailConfigurationError(
'%s: specified mbox file "%s" does not exist' % (self.name, val)
)
fd = os.open(val, os.O_RDWR)
status_old = os.fstat(fd)
f = os.fdopen(fd, 'br+')
# Check if it _is_ an mbox file. mbox files must start with "From "
# in their first line, or are 0-length files.
f.seek(0, 0)
first_line = f.readline()
if first_line and first_line[:5] != b'From ':
# Not an mbox file; abort here
raise getmailConfigurationError('%s: not an mboxrd file' % val)
# Reset atime and mtime
try:
os.utime(val, (status_old.st_atime, status_old.st_mtime))
except OSError:
# Not root or owner; readers will not be able to reliably
# detect new mail. But you shouldn't be delivering to
# other peoples' mboxes unless you're root, anyways.
pass
return val
#######################################
class ConfigurableBase(object):
'''Base class for user-configurable classes.
Sub-classes must provide the following data attributes and methods:
_confitems - a tuple of dictionaries representing the parameters the class
takes. Each dictionary should contain the following key,
value pairs:
- name - parameter name
- type - a type function to compare the parameter value
against (i.e. str, int, bool)
- default - optional default value. If not present, the
parameter is required.
'''
def __init__(self, **args):
self.log = getmailcore.logging.Logger()
self.log.trace()
self.conf = {}
for (name, value) in args.items():
if name not in self:
self.log.warning('Warning: ignoring unknown parameter "%s" '
'(value: %s)\n' % (name, value))
continue
if name.lower() == 'password':
self.log.trace('setting %s to * (%s)\n' % (name, type(value)))
else:
self.log.trace('setting %s to "%s" (%s)\n'
% (name, value, type(value)))
self.conf[name] = value
self.__confchecked = False
self.checkconf()
def checkconf(self):
self.log.trace()
if self.__confchecked:
return
for item in self._confitems:
# New class-based configuration item
self.log.trace('checking %s\n' % item.name)
self.conf[item.name] = item.validate(self.conf)
unknown_params = frozenset(self.conf.keys()).difference(
frozenset([item.name for item in self._confitems])
)
for param in sorted(list(unknown_params), key=str.lower):
self.log.warning('Warning: ignoring unknown parameter "%s" '
'(value: %s)\n' % (param, self.conf[param]))
self.__confchecked = True
self.log.trace('done\n')
def _confstring(self):
self.log.trace()
confstring = ''
for name in list(sorted(self.conf.keys())):
if name.lower() == 'configparser':
continue
if confstring:
confstring += ', '
if name.lower() == 'password':
confstring += '%s="*"' % name
else:
confstring += '%s="%s"' % (name, self.conf[name])
return confstring
def __contains__(self, confitem):
return confitem in {item.name for item in self._confitems}
#######################################
class ForkingBase(object):
'''Base class for classes which fork children and wait for them to exit.
Sub-classes must provide the following data attributes and methods:
log - an object of type getmailcore.logging.Logger()
'''
def _wait_for_child(self, child):
proc = child.process
pid = proc.pid
proc.join(timeout=60)
# If child is still alive we joined due to timeout.
if (proc.is_alive()):
proc.terminate()
exitcode = proc.exitcode
if (exitcode is None):
raise getmailOperationError('child pid %d failed to exit' % pid)
if (exitcode < 0):
# Child killed by a signal
try:
sig = signal.Signals(-exitcode).name
except:
sig = str(-exitcode)
raise getmailOperationError(
'child pid %d killed by signal %s'
% (pid, sig))
return exitcode
def _pipemail(self, msg, delivered_to, received, unixfrom, stdout, stderr):
# Write out message
msgfile = tempfile.TemporaryFile('bw+')
msgfile.write(msg.flatten(delivered_to, received, include_from=unixfrom))
msgfile.flush()
os.fsync(msgfile.fileno())
# Rewind
msgfile.seek(0)
# Set stdin to read from this file
os.dup2(msgfile.fileno(), 0)
# Set stdout and stderr to write to files
os.dup2(stdout.fileno(), 1)
os.dup2(stderr.fileno(), 2)
def child_replace_me(self, msg, delivered_to, received, unixfrom,
stdout, stderr, args, nolog=False):
self._pipemail(msg, delivered_to, received, unixfrom, stdout, stderr)
nolog or self.log.debug('about to execl() with args %s\n' % str(args))
os.execl(*args)
def forkchild(self, childfun, with_out=True):
self.child = child = Namespace()
child.stdout = tempfile.TemporaryFile('bw+')
child.stderr = tempfile.TemporaryFile('bw+')
# XXX MacOS uses spawn instead of fork, which has difficulties to
# pickle/unpickle objects when multiprocessing. Set 'fork' mode by default
ctx = mp.get_context('fork')
child.process = ctx.Process(target=childfun, args=(child.stdout, child.stderr))
child.process.start()
child.childpid = child.process.pid
self.log.trace('spawned child %d\n' % child.childpid)
child.exitcode = self._wait_for_child(child)
child.stderr.seek(0)
child.err = child.stderr.read().strip().decode()
child.stdout.seek(0)
if with_out:
child.out = child.stdout.read().strip()
return child
def get_msginfo(self, msg):
msginfo = {}
msginfo['sender'] = msg.sender.strip()
if msg.recipient != None:
rcpnt = msg.recipient.strip()
msginfo['recipient'] = rcpnt
msginfo['domain'] = rcpnt.lower().split('@')[-1]
msginfo['local'] = '@'.join(rcpnt.split('@')[:-1])
self.log.debug('msginfo "%s"\n' % msginfo)
return msginfo
|