aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rpkid/portal-gui/scripts/rpkigui-rcynic.py137
1 files changed, 59 insertions, 78 deletions
diff --git a/rpkid/portal-gui/scripts/rpkigui-rcynic.py b/rpkid/portal-gui/scripts/rpkigui-rcynic.py
index 6882987a..da75aa8f 100644
--- a/rpkid/portal-gui/scripts/rpkigui-rcynic.py
+++ b/rpkid/portal-gui/scripts/rpkigui-rcynic.py
@@ -1,4 +1,3 @@
-# $Id$
# Copyright (C) 2011 SPARTA, Inc. dba Cobham Analytic Solutions
#
# Permission to use, copy, modify, and distribute this software for any
@@ -12,12 +11,15 @@
# LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
# PERFORMANCE OF THIS SOFTWARE.
-#
+
+__version__ = '$Id$'
default_logfile = '/var/rcynic/data/summary.xml'
default_root = '/var/rcynic/data'
-import time, vobject
+import time
+import vobject
+import logging
from django.db import transaction
import django.db.models
@@ -28,28 +30,20 @@ from rpki.gui.cacheview import models
from rpki.rcynic import rcynic_xml_iterator, label_iterator
from rpki.sundial import datetime
-debug = False
+logger = logging.getLogger(__name__)
-class rcynic_object(object):
+class rcynic_object(object):
def __call__(self, vs):
- """
- do initial processing on a rcynic_object instance.
-
- return value is a tuple: first element is a boolean value indicating whether
- the object is changed/new since the last time we processed it. second
- element is the db instance.
- """
- if debug:
- print 'processing %s at %s' % (vs.file_class.__name__, vs.uri)
+ """Do initial processing on a rcynic_object instance."""
+ logger.debug('processing %s at %s' % (vs.file_class.__name__, vs.uri))
# rcynic will generation <validation_status/> elements for objects
# listed in the manifest but not found on disk
if os.path.exists(vs.filename):
q = self.model_class.objects.filter(uri=vs.uri)
if not q:
- if debug:
- print 'creating new db instance'
+ logger.debug('creating new db instance')
inst = self.model_class(uri=vs.uri)
else:
inst = q[0]
@@ -59,15 +53,14 @@ class rcynic_object(object):
if mtime != inst.mtime:
inst.mtime = mtime
try:
- obj = vs.obj # causes object to be lazily loaded
+ obj = vs.obj # causes object to be lazily loaded
except rpki.POW._der.DerError, e:
- print >>sys.stderr, '[error] Caught %s while processing %s: %s' % (type(e), vs.filename, e)
+ logger.warning('Caught %s while processing %s: %s' % (type(e), vs.filename, e))
return True
inst.not_before = obj.notBefore.to_sql()
inst.not_after = obj.notAfter.to_sql()
- if debug:
- sys.stderr.write('name=%s ski=%s\n' % (obj.subject, obj.ski))
+ logger.debug('name=%s ski=%s' % (obj.subject, obj.ski))
inst.name = obj.subject
inst.keyid = obj.ski
@@ -80,15 +73,15 @@ class rcynic_object(object):
if q:
inst.issuer = q[0]
else:
- sys.stderr.write('warning: unable to find signing cert with ski=%s (%s)\n' % (obj.aki, obj.issuer))
+ logger.warning('unable to find signing cert with ski=%s (%s)' % (obj.aki, obj.issuer))
return None
self.callback(obj, inst)
else:
- if debug:
- print 'object is unchanged'
+ logger.debug('object is unchanged')
- # save required to create new ValidationStatus object refering to it
+ # save required to create new ValidationStatus object refering to
+ # it
inst.save()
inst.statuses.create(generation=models.generations_dict[vs.generation] if vs.generation else None,
timestamp=datetime.fromXMLtime(vs.timestamp).to_sql(),
@@ -96,11 +89,11 @@ class rcynic_object(object):
return inst
else:
- if debug:
- print 'ERROR - file is missing: %s' % vs.filename
+ logger.warning('file is missing: %s' % vs.filename)
return True
+
class rcynic_cert(rcynic_object):
model_class = models.Cert
@@ -117,10 +110,9 @@ class rcynic_cert(rcynic_object):
obj.addresses.clear()
for asr in cert.resources.asn:
- if debug:
- sys.stderr.write('processing %s\n' % asr)
+ logger.debug('processing %s' % asr)
- attrs = { 'min': asr.min, 'max': asr.max }
+ attrs = {'min': asr.min, 'max': asr.max}
q = models.ASRange.objects.filter(**attrs)
if not q:
obj.asns.create(**attrs)
@@ -129,18 +121,17 @@ class rcynic_cert(rcynic_object):
for cls, addr_obj, addrset in (models.AddressRange, obj.addresses, cert.resources.v4), (models.AddressRangeV6, obj.addresses_v6, cert.resources.v6):
for rng in addrset:
- if debug:
- sys.stderr.write('processing %s\n' % rng)
+ logger.debug('processing %s' % rng)
- attrs = { 'prefix_min': rng.min, 'prefix_max': rng.max }
+ attrs = {'prefix_min': rng.min, 'prefix_max': rng.max}
q = cls.objects.filter(**attrs)
if not q:
addr_obj.create(**attrs)
else:
addr_obj.add(q[0])
- if debug:
- print 'finished processing rescert at %s' % cert.uri
+ logger.debug('finished processing rescert at %s' % cert.uri)
+
class rcynic_roa(rcynic_object):
model_class = models.ROA
@@ -159,86 +150,72 @@ class rcynic_roa(rcynic_object):
prefix_obj = obj.prefixes
for pfx in pfxset:
- attrs = { 'prefix_min': pfx.min(),
- 'prefix_max': pfx.max(),
- 'max_length': pfx.max_prefixlen }
+ attrs = {'prefix_min': pfx.min(),
+ 'prefix_max': pfx.max(),
+ 'max_length': pfx.max_prefixlen}
q = roa_cls.objects.filter(**attrs)
if not q:
prefix_obj.create(**attrs)
else:
prefix_obj.add(q[0])
+
class rcynic_gbr(rcynic_object):
model_class = models.Ghostbuster
def callback(self, gbr, obj):
vcard = vobject.readOne(gbr.vcard)
- if debug:
- vcard.prettyPrint()
+ logger.debug(vcard.prettyPrint())
obj.full_name = vcard.fn.value if hasattr(vcard, 'fn') else None
obj.email_address = vcard.email.value if hasattr(vcard, 'email') else None
obj.telephone = vcard.tel.value if hasattr(vcard, 'tel') else None
obj.organization = vcard.org.value[0] if hasattr(vcard, 'org') else None
+
def process_cache(root, xml_file):
start = time.time()
dispatch = {
'rcynic_certificate': rcynic_cert(),
- 'rcynic_roa' : rcynic_roa(),
+ 'rcynic_roa': rcynic_roa(),
'rcynic_ghostbuster': rcynic_gbr()
}
# remove all existing ValidationStatus_* entries
+ logger.info('removing existing validation status')
models.ValidationStatus_Cert.objects.all().delete()
models.ValidationStatus_ROA.objects.all().delete()
models.ValidationStatus_Ghostbuster.objects.all().delete()
- # loop over all rcynic objects and dispatch based on the returned
- # rcynic_object subclass
- n = 1
- defer = rcynic_xml_iterator(root, xml_file)
- while defer:
- if debug:
- print 'starting iteration %d for deferred objects' % n
- n = n + 1
-
- elts = defer
- defer = []
- for vs in elts:
- # need to defer processing this object, most likely because
- # the <validation_status/> element for the signing cert hasn't
- # been seen yet
- with transaction.commit_on_success():
- dispatch[vs.file_class.__name__](vs)
- #if not dispatch[vs.file_class.__name__](vs):
- # defer.append(vs)
+ logger.info('updating validation status')
+ elts = rcynic_xml_iterator(root, xml_file)
+ for vs in elts:
+ with transaction.commit_on_success():
+ dispatch[vs.file_class.__name__](vs)
# garbage collection
# remove all objects which have no ValidationStatus references, which
# means they did not appear in the last XML output
- if debug:
- print 'performing garbage collection'
+ logger.info('performing garbage collection')
- # trying to .delete() the querysets directly results in a "too many sql variables" exception
+ # trying to .delete() the querysets directly results in a "too many sql
+ # variables" exception
for qs in (models.Cert.objects.annotate(num_statuses=django.db.models.Count('statuses')).filter(num_statuses=0),
models.Ghostbuster.objects.annotate(num_statuses=django.db.models.Count('statuses')).filter(num_statuses=0),
models.ROA.objects.annotate(num_statuses=django.db.models.Count('statuses')).filter(num_statuses=0)):
for e in qs:
e.delete()
- if debug:
- stop = time.time()
- sys.stdout.write('elapsed time %d seconds.\n' % (stop - start))
+ stop = time.time()
+ logger.info('elapsed time %d seconds.' % (stop - start))
+
@transaction.commit_on_success
def process_labels(xml_file):
- if debug:
- sys.stderr.write('updating labels...\n')
+ logger.info('updating labels...')
for label, kind, desc in label_iterator(xml_file):
- if debug:
- sys.stderr.write('label=%s kind=%s desc=%s\n' % (label, kind, desc))
+ logger.debug('label=%s kind=%s desc=%s' % (label, kind, desc))
if kind:
q = models.ValidationLabel.objects.filter(label=label)
if not q:
@@ -250,25 +227,29 @@ def process_labels(xml_file):
obj.status = desc
obj.save()
+
if __name__ == '__main__':
import optparse
parser = optparse.OptionParser()
- parser.add_option("-d", "--debug", action="store_true",
- help="enable debugging message")
+ parser.add_option("-l", "--level", dest="log_level", default='INFO',
+ help="specify the logging level [default: %default]")
parser.add_option("-f", "--file", dest="logfile",
- help="specify the rcynic XML file to parse [default: %default]",
- default=default_logfile)
+ help="specify the rcynic XML file to parse [default: %default]",
+ default=default_logfile)
parser.add_option("-r", "--root",
- help="specify the chroot directory for the rcynic jail [default: %default]",
- metavar="DIR", default=default_root)
+ help="specify the chroot directory for the rcynic jail [default: %default]",
+ metavar="DIR", default=default_root)
options, args = parser.parse_args(sys.argv)
- if options.debug:
- debug = True
+
+ v = getattr(logging, options.log_level.upper())
+ logger.setLevel(v)
+ logging.basicConfig()
+ logger.info('log level set to %s' % logging.getLevelName(v))
process_labels(options.logfile)
process_cache(options.root, options.logfile)
rpki.gui.app.timestamp.update('rcynic_import')
-# vim:sw=4 ts=8
+ logging.shutdown()