2014-10-01 16:42:40 +00:00
|
|
|
import os
|
2014-07-25 15:17:50 +00:00
|
|
|
import textwrap
|
|
|
|
|
2014-05-08 16:59:35 +00:00
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
2014-10-01 16:42:40 +00:00
|
|
|
from orchestra.apps.orchestration import ServiceController
|
|
|
|
from orchestra.apps.resources import ServiceMonitor
|
2014-05-08 16:59:35 +00:00
|
|
|
|
2014-10-01 16:42:40 +00:00
|
|
|
from . import settings
|
2014-05-08 16:59:35 +00:00
|
|
|
|
2014-10-01 16:42:40 +00:00
|
|
|
|
|
|
|
class SystemUserBackend(ServiceController):
|
2014-09-30 16:06:42 +00:00
|
|
|
verbose_name = _("System user")
|
|
|
|
model = 'systemusers.SystemUser'
|
2014-11-14 16:52:54 +00:00
|
|
|
actions = ('save', 'delete', 'grant_permission')
|
2014-10-01 16:42:40 +00:00
|
|
|
|
|
|
|
def save(self, user):
|
|
|
|
context = self.get_context(user)
|
|
|
|
groups = ','.join(self.get_groups(user))
|
|
|
|
context['groups_arg'] = '--groups %s' % groups if groups else ''
|
|
|
|
self.append(textwrap.dedent("""
|
2015-03-10 21:51:10 +00:00
|
|
|
if [[ $( id %(user)s ) ]]; then
|
|
|
|
usermod %(user)s --password '%(password)s' --shell %(shell)s %(groups_arg)s
|
2014-10-01 16:42:40 +00:00
|
|
|
else
|
2015-03-10 21:51:10 +00:00
|
|
|
useradd %(user)s --home %(home)s --password '%(password)s' --shell %(shell)s %(groups_arg)s
|
2014-10-01 16:42:40 +00:00
|
|
|
fi
|
|
|
|
mkdir -p %(home)s
|
2015-02-27 16:57:39 +00:00
|
|
|
chmod 750 %(home)s
|
2015-03-10 21:51:10 +00:00
|
|
|
chown %(user)s:%(user)s %(home)s""") % context
|
2015-03-10 16:57:23 +00:00
|
|
|
)
|
2014-10-28 09:51:27 +00:00
|
|
|
for member in settings.SYSTEMUSERS_DEFAULT_GROUP_MEMBERS:
|
|
|
|
context['member'] = member
|
2015-03-10 21:51:10 +00:00
|
|
|
self.append('usermod -a -G %(user)s %(member)s' % context)
|
2014-10-28 09:51:27 +00:00
|
|
|
if not user.is_main:
|
2015-03-10 21:51:10 +00:00
|
|
|
self.append('usermod -a -G %(user)s %(mainuser)s' % context)
|
2014-10-01 16:42:40 +00:00
|
|
|
|
|
|
|
def delete(self, user):
|
|
|
|
context = self.get_context(user)
|
2015-03-02 12:07:27 +00:00
|
|
|
self.append(textwrap.dedent("""\
|
2015-03-10 21:51:10 +00:00
|
|
|
{ sleep 2 && killall -u %(user)s -s KILL; } &
|
|
|
|
killall -u %(user)s || true
|
|
|
|
userdel %(user)s || true
|
|
|
|
groupdel %(group)s || true""") % context
|
2015-03-10 16:57:23 +00:00
|
|
|
)
|
2014-10-17 10:04:47 +00:00
|
|
|
self.delete_home(context, user)
|
|
|
|
|
2014-11-14 16:52:54 +00:00
|
|
|
def grant_permission(self, user):
|
|
|
|
context = self.get_context(user)
|
|
|
|
# TODO setacl
|
|
|
|
|
2014-10-17 10:04:47 +00:00
|
|
|
def delete_home(self, context, user):
|
2015-02-27 16:57:39 +00:00
|
|
|
if user.home.rstrip('/') == user.get_base_home().rstrip('/'):
|
2014-10-02 15:58:27 +00:00
|
|
|
# TODO delete instead of this shit
|
2015-03-10 21:51:10 +00:00
|
|
|
self.append("mv %(home)s %(home)s.deleted" % context)
|
2014-10-01 16:42:40 +00:00
|
|
|
|
|
|
|
def get_groups(self, user):
|
|
|
|
if user.is_main:
|
2014-10-02 15:58:27 +00:00
|
|
|
return user.account.systemusers.exclude(username=user.username).values_list('username', flat=True)
|
2014-10-28 09:51:27 +00:00
|
|
|
return list(user.groups.values_list('username', flat=True))
|
2014-10-01 16:42:40 +00:00
|
|
|
|
|
|
|
def get_context(self, user):
|
|
|
|
context = {
|
2014-11-18 17:47:26 +00:00
|
|
|
'object_id': user.pk,
|
2015-03-10 21:51:10 +00:00
|
|
|
'user': user.username,
|
|
|
|
'group': user.username,
|
2014-10-01 16:42:40 +00:00
|
|
|
'password': user.password if user.active else '*%s' % user.password,
|
|
|
|
'shell': user.shell,
|
2015-03-10 21:51:10 +00:00
|
|
|
'mainuser': user.username if user.is_main else user.account.username,
|
2014-10-02 15:58:27 +00:00
|
|
|
'home': user.get_home()
|
2014-10-01 16:42:40 +00:00
|
|
|
}
|
|
|
|
return context
|
|
|
|
|
|
|
|
|
|
|
|
class SystemUserDisk(ServiceMonitor):
|
|
|
|
model = 'systemusers.SystemUser'
|
|
|
|
resource = ServiceMonitor.DISK
|
2014-11-18 17:47:26 +00:00
|
|
|
verbose_name = _('Systemuser disk')
|
|
|
|
|
|
|
|
def prepare(self):
|
2014-11-21 13:53:39 +00:00
|
|
|
super(SystemUserDisk, self).prepare()
|
2014-11-18 17:47:26 +00:00
|
|
|
self.append(textwrap.dedent("""\
|
|
|
|
function monitor () {
|
|
|
|
{ du -bs "$1" || echo 0; } | awk {'print $1'}
|
|
|
|
}"""
|
|
|
|
))
|
2014-10-01 16:42:40 +00:00
|
|
|
|
|
|
|
def monitor(self, user):
|
|
|
|
context = self.get_context(user)
|
2014-11-18 17:47:26 +00:00
|
|
|
if user.is_main or os.path.normpath(user.home) == user.get_base_home():
|
|
|
|
self.append("echo %(object_id)s $(monitor %(home)s)" % context)
|
|
|
|
else:
|
2015-03-02 10:37:25 +00:00
|
|
|
# Home is already included in other user home
|
2014-11-18 17:47:26 +00:00
|
|
|
self.append("echo %(object_id)s 0" % context)
|
2014-10-01 16:42:40 +00:00
|
|
|
|
|
|
|
def get_context(self, user):
|
2014-11-18 17:47:26 +00:00
|
|
|
return {
|
|
|
|
'object_id': user.pk,
|
|
|
|
'home': user.home,
|
|
|
|
}
|
2014-05-08 16:59:35 +00:00
|
|
|
|
2014-07-09 16:17:43 +00:00
|
|
|
|
2015-03-20 15:13:08 +00:00
|
|
|
class FTPTrafficBash(ServiceMonitor):
|
2014-09-30 16:06:42 +00:00
|
|
|
model = 'systemusers.SystemUser'
|
2014-10-01 16:42:40 +00:00
|
|
|
resource = ServiceMonitor.TRAFFIC
|
2015-03-20 15:13:08 +00:00
|
|
|
verbose_name = _('Systemuser FTP traffic (Bash)')
|
2014-10-01 16:42:40 +00:00
|
|
|
|
|
|
|
def prepare(self):
|
2015-03-20 15:13:08 +00:00
|
|
|
super(FTPTrafficBash, self).prepare()
|
|
|
|
context = {
|
|
|
|
'log_file': '%s{,.1}' % settings.SYSTEMUSERS_FTP_LOG_PATH,
|
|
|
|
'current_date': self.current_date.strftime("%Y-%m-%d %H:%M:%S %Z"),
|
|
|
|
}
|
2014-10-27 17:34:14 +00:00
|
|
|
self.append(textwrap.dedent("""\
|
2014-10-01 16:42:40 +00:00
|
|
|
function monitor () {
|
|
|
|
OBJECT_ID=$1
|
2014-11-20 15:34:59 +00:00
|
|
|
INI_DATE=$(date "+%%Y%%m%%d%%H%%M%%S" -d "$2")
|
2015-03-20 15:13:08 +00:00
|
|
|
END_DATE=$(date '+%%Y%%m%%d%%H%%M%%S' -d '%(current_date)s')
|
2014-10-01 16:42:40 +00:00
|
|
|
USERNAME="$3"
|
2015-03-20 15:13:08 +00:00
|
|
|
LOG_FILE=%(log_file)s
|
2014-11-20 15:34:59 +00:00
|
|
|
{
|
2015-03-04 21:06:16 +00:00
|
|
|
grep " bytes, " ${LOG_FILE} \\
|
2014-11-20 15:34:59 +00:00
|
|
|
| grep " \\[${USERNAME}\\] " \\
|
|
|
|
| awk -v ini="${INI_DATE}" -v end="${END_DATE}" '
|
|
|
|
BEGIN {
|
|
|
|
sum = 0
|
|
|
|
months["Jan"] = "01"
|
|
|
|
months["Feb"] = "02"
|
|
|
|
months["Mar"] = "03"
|
|
|
|
months["Apr"] = "04"
|
|
|
|
months["May"] = "05"
|
|
|
|
months["Jun"] = "06"
|
|
|
|
months["Jul"] = "07"
|
|
|
|
months["Aug"] = "08"
|
|
|
|
months["Sep"] = "09"
|
|
|
|
months["Oct"] = "10"
|
|
|
|
months["Nov"] = "11"
|
|
|
|
months["Dec"] = "12"
|
|
|
|
} {
|
2015-03-02 12:07:27 +00:00
|
|
|
# Fri Jul 1 13:23:17 2014
|
2015-03-02 10:37:25 +00:00
|
|
|
split($4, time, ":")
|
2015-03-04 21:06:16 +00:00
|
|
|
day = sprintf("%%02d", $3)
|
2014-11-20 15:34:59 +00:00
|
|
|
# line_date = year month day hour minute second
|
2015-03-02 12:07:27 +00:00
|
|
|
line_date = $5 months[$2] day time[1] time[2] time[3]
|
2014-11-20 15:34:59 +00:00
|
|
|
if ( line_date > ini && line_date < end) {
|
2015-03-02 10:37:25 +00:00
|
|
|
sum += $(NF-2)
|
2014-11-20 15:34:59 +00:00
|
|
|
}
|
|
|
|
} END {
|
|
|
|
print sum
|
|
|
|
}' || [[ $? == 1 ]] && true
|
|
|
|
} | xargs echo ${OBJECT_ID}
|
2015-03-20 15:13:08 +00:00
|
|
|
}""") % context)
|
2014-10-01 16:42:40 +00:00
|
|
|
|
|
|
|
def monitor(self, user):
|
|
|
|
context = self.get_context(user)
|
|
|
|
self.append(
|
2015-03-20 15:13:08 +00:00
|
|
|
'monitor {object_id} "{last_date}" "{username}"'.format(**context)
|
2014-10-27 17:34:14 +00:00
|
|
|
)
|
2014-10-01 16:42:40 +00:00
|
|
|
|
|
|
|
def get_context(self, user):
|
|
|
|
return {
|
2014-10-27 17:52:42 +00:00
|
|
|
'last_date': self.get_last_date(user.pk).strftime("%Y-%m-%d %H:%M:%S %Z"),
|
2014-10-01 16:42:40 +00:00
|
|
|
'object_id': user.pk,
|
|
|
|
'username': user.username,
|
|
|
|
}
|
2015-03-20 15:13:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Exim4Traffic(ServiceMonitor):
|
|
|
|
model = 'systemusers.SystemUser'
|
|
|
|
resource = ServiceMonitor.TRAFFIC
|
|
|
|
verbose_name = _("Exim4 traffic usage")
|
|
|
|
script_executable = '/usr/bin/python'
|
|
|
|
|
|
|
|
def prepare(self):
|
|
|
|
mainlog = '/var/log/exim4/mainlog'
|
|
|
|
context = {
|
|
|
|
'current_date': self.current_date.strftime("%Y-%m-%d %H:%M:%S %Z"),
|
|
|
|
'mainlogs': str((mainlog, mainlog+'.1')),
|
|
|
|
}
|
|
|
|
self.append(textwrap.dedent("""\
|
|
|
|
import re
|
|
|
|
import sys
|
|
|
|
from datetime import datetime
|
|
|
|
from dateutil import tz
|
|
|
|
|
|
|
|
def to_local_timezone(date, tzlocal=tz.tzlocal()):
|
|
|
|
date = datetime.strptime(date, '%Y-%m-%d %H:%M:%S %Z')
|
|
|
|
date = date.replace(tzinfo=tz.tzutc())
|
|
|
|
date = date.astimezone(tzlocal)
|
|
|
|
return date
|
|
|
|
|
|
|
|
mainlogs = {mainlogs}
|
|
|
|
# Use local timezone
|
|
|
|
end_date = to_local_timezone('{current_date}')
|
|
|
|
end_date = int(end_date.strftime('%Y%m%d%H%M%S'))
|
|
|
|
users = {{}}
|
|
|
|
|
|
|
|
def prepare(object_id, username, ini_date):
|
|
|
|
global users
|
|
|
|
ini_date = to_local_timezone(ini_date)
|
|
|
|
ini_date = int(ini_date.strftime('%Y%m%d%H%M%S'))
|
|
|
|
users[username] = [ini_date, object_id, 0]
|
|
|
|
|
|
|
|
def monitor(users, end_date, mainlogs):
|
|
|
|
user_regex = re.compile(r' U=([^ ]+) ')
|
|
|
|
for mainlog in mainlogs:
|
|
|
|
try:
|
|
|
|
with open(mainlog, 'r') as mainlog:
|
|
|
|
for line in mainlog.readlines():
|
|
|
|
if ' <= ' in line and 'P=local' in line:
|
|
|
|
username = user_regex.search(line).groups()[0]
|
|
|
|
try:
|
|
|
|
sender = users[username]
|
|
|
|
except KeyError:
|
|
|
|
continue
|
|
|
|
else:
|
|
|
|
date, time, id, __, __, user, protocol, size = line.split()[:8]
|
|
|
|
date = date.replace('-', '')
|
|
|
|
date += time.replace(':', '')
|
|
|
|
if sender[0] < int(date) < end_date:
|
|
|
|
sender[2] += int(size[2:])
|
|
|
|
except IOError as e:
|
|
|
|
sys.stderr.write(e)
|
|
|
|
|
|
|
|
for username, opts in users.iteritems():
|
|
|
|
__, object_id, size = opts
|
|
|
|
print object_id, size
|
|
|
|
""").format(**context)
|
|
|
|
)
|
|
|
|
|
|
|
|
def commit(self):
|
|
|
|
self.append('monitor(users, end_date, mainlogs)')
|
|
|
|
|
|
|
|
def monitor(self, user):
|
|
|
|
context = self.get_context(user)
|
|
|
|
self.append("prepare(%(object_id)s, '%(username)s', '%(last_date)s')" % context)
|
|
|
|
|
|
|
|
def get_context(self, user):
|
|
|
|
return {
|
|
|
|
# 'mainlog': settings.LISTS_MAILMAN_POST_LOG_PATH,
|
|
|
|
'username': user.username,
|
|
|
|
'object_id': user.pk,
|
|
|
|
'last_date': self.get_last_date(user.pk).strftime("%Y-%m-%d %H:%M:%S %Z"),
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class FTPTraffic(ServiceMonitor):
|
|
|
|
model = 'systemusers.SystemUser'
|
|
|
|
resource = ServiceMonitor.TRAFFIC
|
|
|
|
verbose_name = _('Systemuser FTP traffic')
|
|
|
|
script_executable = '/usr/bin/python'
|
|
|
|
|
|
|
|
def prepare(self):
|
|
|
|
vsftplog = settings.SYSTEMUSERS_FTP_LOG_PATH
|
|
|
|
context = {
|
|
|
|
'current_date': self.current_date.strftime("%Y-%m-%d %H:%M:%S %Z"),
|
|
|
|
'vsftplogs': str((vsftplog, vsftplog+'.1')),
|
|
|
|
}
|
|
|
|
self.append(textwrap.dedent("""\
|
|
|
|
import re
|
|
|
|
import sys
|
|
|
|
from datetime import datetime
|
|
|
|
from dateutil import tz
|
|
|
|
|
|
|
|
def to_local_timezone(date, tzlocal=tz.tzlocal()):
|
|
|
|
date = datetime.strptime(date, '%Y-%m-%d %H:%M:%S %Z')
|
|
|
|
date = date.replace(tzinfo=tz.tzutc())
|
|
|
|
date = date.astimezone(tzlocal)
|
|
|
|
return date
|
|
|
|
|
|
|
|
vsftplogs = {vsftplogs}
|
|
|
|
# Use local timezone
|
|
|
|
end_date = to_local_timezone('{current_date}')
|
|
|
|
end_date = int(end_date.strftime('%Y%m%d%H%M%S'))
|
|
|
|
users = {{}}
|
|
|
|
months = {{
|
|
|
|
'Jan': '01',
|
|
|
|
'Feb': '02',
|
|
|
|
'Mar': '03',
|
|
|
|
'Apr': '04',
|
|
|
|
'May': '05',
|
|
|
|
'Jun': '06',
|
|
|
|
'Jul': '07',
|
|
|
|
'Aug': '08',
|
|
|
|
'Sep': '09',
|
|
|
|
'Oct': '10',
|
|
|
|
'Nov': '11',
|
|
|
|
'Dec': '12',
|
|
|
|
}}
|
|
|
|
|
|
|
|
def prepare(object_id, username, ini_date):
|
|
|
|
global users
|
|
|
|
ini_date = to_local_timezone(ini_date)
|
|
|
|
ini_date = int(ini_date.strftime('%Y%m%d%H%M%S'))
|
|
|
|
users[username] = [ini_date, object_id, 0]
|
|
|
|
|
|
|
|
def monitor(users, end_date, months, vsftplogs):
|
|
|
|
user_regex = re.compile(r'\] \[([^ ]+)\] OK ')
|
|
|
|
bytes_regex = re.compile(r', ([0-9]+) bytes, ')
|
|
|
|
for vsftplog in vsftplogs:
|
|
|
|
try:
|
|
|
|
with open(vsftplog, 'r') as vsftplog:
|
|
|
|
for line in vsftplog.readlines():
|
|
|
|
if ' bytes, ' in line:
|
|
|
|
username = user_regex.search(line).groups()[0]
|
|
|
|
try:
|
|
|
|
user = users[username]
|
|
|
|
except KeyError:
|
|
|
|
continue
|
|
|
|
else:
|
|
|
|
__, month, day, time, year = line.split()[:5]
|
|
|
|
date = year + months[month] + day + time.replace(':', '')
|
|
|
|
if user[0] < int(date) < end_date:
|
|
|
|
bytes = bytes_regex.search(line).groups()[0]
|
|
|
|
user[2] += int(bytes)
|
|
|
|
except IOError as e:
|
|
|
|
sys.stderr.write(e)
|
|
|
|
|
|
|
|
for username, opts in users.iteritems():
|
|
|
|
__, object_id, size = opts
|
|
|
|
print object_id, size
|
|
|
|
""").format(**context)
|
|
|
|
)
|
|
|
|
|
|
|
|
def monitor(self, user):
|
|
|
|
context = self.get_context(user)
|
|
|
|
self.append("prepare(%(object_id)s, '%(username)s', '%(last_date)s')" % context)
|
|
|
|
|
|
|
|
def commit(self):
|
|
|
|
self.append('monitor(users, end_date, months, vsftplogs)')
|
|
|
|
|
|
|
|
def get_context(self, user):
|
|
|
|
return {
|
|
|
|
'last_date': self.get_last_date(user.pk).strftime("%Y-%m-%d %H:%M:%S %Z"),
|
|
|
|
'object_id': user.pk,
|
|
|
|
'username': user.username,
|
|
|
|
}
|
|
|
|
|