aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-07-04Snapshot before trying something weird with the new pubd SQL.Rob Austein
svn path=/branches/tk705/; revision=5884
2014-07-03Get rid of the <config/> element of the publication-control protocol, it's a ↵Rob Austein
historical relic. Update example PDUs for publication and publication-control protocols. svn path=/branches/tk705/; revision=5883
2014-07-03RegenRob Austein
svn path=/branches/tk705/; revision=5882
2014-07-03Convert to current IETF I-D version of publication protocol. See #705.Rob Austein
svn path=/branches/tk705/; revision=5881
2014-06-30regenRob Austein
svn path=/branches/tk705/; revision=5880
2014-06-30Oops, notification can't require that there be any deltas.Rob Austein
svn path=/branches/tk705/; revision=5879
2014-06-30regenRob Austein
svn path=/branches/tk705/; revision=5878
2014-06-30Proposed RRDP simplifications after email discussion. Still subjectRob Austein
to change, checking in to simplify discussion. svn path=/branches/tk705/; revision=5877
2014-06-26Regen, tweak some svn properties.Rob Austein
svn path=/branches/tk705/; revision=5876
2014-06-26Initial schema and test cases for RRDP, based on Tim's expired -01Rob Austein
draft. Not yet simplified to remove what we now think are premature optimizations; the schema contains notes on this. See #705. svn path=/branches/tk705/; revision=5875
2014-06-25Don't regenerate EE certificates for validity expiration when theRob Austein
expiration date hasn't changed and we'd just be doing the same thing again on the next cron cycle. See #704. svn path=/trunk/; revision=5873
2014-06-23Missed testing client mode properly after last refactoring.Rob Austein
svn path=/trunk/; revision=5872
2014-06-22Unconditionally fix ownership and mode of directories whose ownershipRob Austein
and mode FreeBSD has started whacking on every upgrade. See #702. svn path=/trunk/; revision=5871
2014-06-20Timing parameters were a bit short for any sane use.Rob Austein
svn path=/trunk/; revision=5870
2014-06-20Preliminary BGPSEC test configuration generator.Rob Austein
svn path=/trunk/; revision=5869
2014-06-19Specify the python path as a string rather than passing an object reference. ↵Michael Elkins
See #701 svn path=/trunk/; revision=5868
2014-06-16qualify email recipient address with the FQDN of the local host. see #700Michael Elkins
svn path=/trunk/; revision=5867
2014-06-13Add rpki-rtr extension hooks; add script using the extension hooks asRob Austein
a quick hack to get router keys into BIRD while waiting for rtrlib. svn path=/trunk/; revision=5866
2014-06-11Handle version mis-match when forcing protocol version. Closes #699.Rob Austein
svn path=/trunk/; revision=5865
2014-06-11Race condition during server shutdown could prevent cleanup of kickme socket.Rob Austein
svn path=/trunk/; revision=5864
2014-06-11Allow client to select a particular protocol version.Rob Austein
svn path=/trunk/; revision=5863
2014-06-05fix typo. closes #698Michael Elkins
svn path=/trunk/; revision=5862
2014-06-05Update to OpenSSL 1.0.1h. Changes from 1.0.1g to 1.0.1h shouldn'tRob Austein
affect anything the RPKI code does, but it's easiest to stay current. svn path=/trunk/; revision=5861
2014-06-05First cut at fully configurable logging system. Still a bit raw, andRob Austein
not yet documented, but allows detailed logging configuration down to the class level, and flexible enough to allow runtime configuration if we decide we need that. svn path=/trunk/; revision=5860
2014-06-02Insert blank line after URI in all TALs, in case RFC 6480 bis becomes a ↵Rob Austein
standard. svn path=/trunk/; revision=5859
2014-06-02Archive current configuration of pbuilder robot prior to VM fork lift.Rob Austein
svn path=/trunk/; revision=5858
2014-05-31Logger usage cleanup: for some reason (probably the "self." prefix), Pylint ↵Rob Austein
missed these. svn path=/trunk/; revision=5857
2014-05-31Still more PyLint.Rob Austein
svn path=/trunk/; revision=5856
2014-05-31Rework to cope with new logging options.Rob Austein
svn path=/trunk/; revision=5855
2014-05-30Update our use of asyncore.dispatcher.setsockopt() toRob Austein
asyncore.dispatcher.socket.setsockopt(), per deprecation warning. svn path=/trunk/; revision=5854
2014-05-30Use --log-file in yamltest; debug the rotating log file options.Rob Austein
svn path=/trunk/; revision=5853
2014-05-30Rewritten rpki.log.init() still confuses PyLint.Rob Austein
svn path=/trunk/; revision=5852
2014-05-30Move all the complexity of configuring the ten zillion kinds ofRob Austein
logging handlers up front to the argparse stage, thereby also giving the application more control over the default logging configuration. svn path=/trunk/; revision=5851
2014-05-30Still more PyLint.Rob Austein
svn path=/trunk/; revision=5850
2014-05-30Pylint did find a couple of trivial but real bugs under all the noise.Rob Austein
svn path=/trunk/; revision=5849
2014-05-30RegenRob Austein
svn path=/trunk/; revision=5848
2014-05-30RegenRob Austein
svn path=/trunk/; revision=5847
2014-05-30Clang found an unused variable.Rob Austein
svn path=/trunk/; revision=5846
2014-05-29PyLintRob Austein
svn path=/trunk/; revision=5845
2014-05-29Python style police: instantiate exceptions before raising themRob Austein
(convert two-expression form of "raise" to one-expression form). svn path=/trunk/; revision=5844
2014-05-29Provide our own logging Formatter class rather than straining toRob Austein
subclass the stock one. Replace all uses of rpki.log.traceback() with logging package .exception() calls. Use LoggingAdapter for all the whacky per-stream logging code in rpki.http. Fix default logging priority for non-daemon programs like rpkic. svn path=/trunk/; revision=5843
2014-05-29yamlconf didn't have router certificate support, was feeling left out.Rob Austein
svn path=/trunk/; revision=5842
2014-05-29New find_roa is picker about prefix syntax than the old version. NotRob Austein
really sure whether this is a feature or a bug, but hack test cases to be prefixes on the assumption that it's a feature. svn path=/trunk/; revision=5841
2014-05-29For some reason using choices with a non-string type in argparse worksRob Austein
in Python 2.7.6 on MacOSX but not in Python 2.7.6 on FreeBSD. Not worth trying to figure out why, custom argparse.Action is easy. svn path=/trunk/; revision=5840
2014-05-28Cleanup. Whack default logging level down to warning, except when running ↵Rob Austein
directly under test harness. svn path=/trunk/; revision=5839
2014-05-28Update all uses of rpki.log.traceback() for use with logging module.Rob Austein
svn path=/trunk/; revision=5838
2014-05-28Whack all logging calls to use per-module logger objects.Rob Austein
svn path=/trunk/; revision=5837
2014-05-28Rework logging initialization code.Rob Austein
svn path=/trunk/; revision=5836
2014-05-22Initial conversion to Python logging system. Still very crude.Rob Austein
svn path=/trunk/; revision=5835
2014-05-22Clean excess baggage out of old logging code prior to replacing itRob Austein
with Python's logging system. svn path=/trunk/; revision=5834