summaryrefslogtreecommitdiff
path: root/usr.sbin
AgeCommit message (Collapse)Author
2018-02-15vmd(8): Properly return the correct byte when doing byte-aligned PCIMike Larkin
config space reads. ok kettenis@, ccardenas@
2018-02-14whitespacerob
2018-02-13Normalize handle limit timeval in microsecond (usec) case.cheloha
Makes stuff like limit 1500000 usec work correctly. ok millert@ tb@
2018-02-13give up a bit on the infamous cups update issue.Marc Espie
sort dependencies so that at least this is 100% reproducible...
2018-02-12some mode of session resumptions are not currently supported by ftp(1)Marc Espie
be fair to those servers, display a more accurate message of what we know
2018-02-11Use the new route filter ROUTE_PRIOFILTER in ospfd. Usually we onlySebastian Benoit
need to see routes with a higher priority (lower value) than ospfds own routes. ok claudio, ok henning previous version, feedback from sthen
2018-02-11sysctl.h is no longer neededTheo Buehler
ok tedu
2018-02-10Cap wait/interval at 100 million seconds.cheloha
Keeps nanosleep(2) from choking. While here, call the argument to the -w flag "wait" in the error message to match up with documentation and usage(). ok tedu@ deraadt@ tb@
2018-02-10Pledge monitoring process; ok tedu@anton
2018-02-10less macro; ok bennoJason McIntyre
2018-02-10implement the use of new ftp -S session=... for httpsMarc Espie
- add a setup_session hook that creates an anonymous tempfile in the ::HTTPS class - parse tls connection resumed messages and tell on servers that do not support this - remove the CLOEXE flag on the fd just before running ftp, so that other processes do not see it at all. This makes https somewhat more bearable, though still slower than http... :( thanks to jsing@ et al for the design of session
2018-02-10rewrite file around fh_file, temp file creation with signal protection,Marc Espie
to be used to get anon temp files for https
2018-02-10print etherip on ipv6.David Gwynne
2018-02-10Follow rfc8277 more closely and make make sure bgpd is encoding VPNv4Claudio Jeker
withdraws they way other systems are doing it. Interop problem discovered by Andrew Thrift. Tested by Andrew and job@.
2018-02-10claudio noted that this is an else case because we have either aSebastian Benoit
prefix or a prefix-set.
2018-02-10Add prefix-sets, lists of prefixes which can be used in place of aSebastian Benoit
prefix in a filter rule. Initial idea hashed out with job@ in Toronto. This is WIP, i'm commiting it now so we can work on it in the tree. ok florian@ claudio@
2018-02-09Style tweaksJeremie Courreges-Anglas
ok remi@ benno@
2018-02-09isolate calls to the rfc2822 parser and handling of "." in smtp_dataline()Eric Faurot
ok gilles@
2018-02-09use ether_tryprint, which looks inside the ether packet.David Gwynne
ether_print just prints the ether header.
2018-02-09Clear the dr and bdr fields of a neighbor when it goes down.Claudio Jeker
Same is done in ospfd for quite a while.
2018-02-09Simplify logic a bit by moving a block. nbr_stop_itimer() does not useClaudio Jeker
the dr or bdr fields so clear them first.
2018-02-09it turns out the wccp header is optionalDavid Gwynne
peek inside the payload to see if the first nibble looks like ipv4. if it isnt ipv4 assume it is the wccp header.
2018-02-08have a go at decoding cisco wccp gre packets, and let them fall into IP.David Gwynne
2018-02-08ospf6d mostly only cares about AF_INET6 routesSebastian Benoit
found while investigating routing socket desync with claudio. ok remi jca claudio
2018-02-08Kill ber.c support for direct fd read/writesJeremie Courreges-Anglas
This mechanism is already unused and annotated with lots of XXX's, no need to keep it around. ok claudio@
2018-02-08recognise gre proto 0 as a "keep alive" packetDavid Gwynne
2018-02-08Bump the read sockbuf of the routing socket to 2MB, may help reduce some ofClaudio Jeker
the desync cases. OK benno@
2018-02-08Bump the read sockbuf of the routing socket to 2MB, may help reduce some ofClaudio Jeker
the desync cases. OK benno@
2018-02-07Markup SIGHUP.anton
2018-02-07prepare for session filesMarc Espie
2018-02-07prepare for session saving by separating the pkgfetch code.Marc Espie
2018-02-07shorten the output for gre keys.David Gwynne
2018-02-07clarify a bit about configTed Unangst
2018-02-07NAME_MAX is the length of the thing between / / in a path *without*Florian Obser
the terminating NUL. Do not use it for a "small string" or a "probably short path". Replace it with new defines or PATH_MAX. It also makes the life easier for people auditing the tree for real usage of NAME_MAX. OK deraadt, benno
2018-02-07remove the magic dns port hijacking feature. it's complicated andTed Unangst
brittle, and never quite made the next step to being useful.
2018-02-07update to unbound 1.6.8, testing millert, OK sthenFlorian Obser
2018-02-07Add plumbing inside of the prefix handling to put prefixes on either theClaudio Jeker
prefixes or updates list depending on flags passed to the functions. While there also introduce a similar flag for rde_aspath and adjust path_compare so that this flag is ignored (liked the linked one). OK benno@
2018-02-06when we get SIGHUP, close conffd so it's reopened (and rewound).Ted Unangst
problem and early fix by anton
2018-02-06avoid not working if redirected to another urlschemeMarc Espie
2018-02-06syslog cdns redirect, as suggested by sthen@Marc Espie
2018-02-06refactor the "Signature" code for laterMarc Espie
- all stuff being elements end up as version elements - store them directly in the hash, so that we can properly impose behavior depending on VersionElement (adding stuff to LibObject/PackageName was slightly icky)
2018-02-06move malloc check up so that it actually works.Florian Obser
OK benno
2018-02-06kill dead codeFlorian Obser
2018-02-06output the data part of LCP Echo-Request and Echo-Reply packets.David Gwynne
2018-02-06rework ppp, pptp, and gre parsing.David Gwynne
this started cos i was looking at pptp, which came out like this: 23:52:00.197893 call 24 seq 7: gre-ppp-payload (gre encap) 23:52:00.198930 call 1 seq 7 ack 7: gre-ppp-payload (gre encap) now it looks like this: 23:52:00.197893 20.0.0.2 > 20.0.0.1: pptp callid 24 seq 7: 17.1.1.122 > 40.0.0.2: icmp: echo request 23:52:00.198930 20.0.0.1 > 20.0.0.2: pptp callid 1 seq 7 ack 7: 40.0.0.2 > 17.1.1.122: icmp: echo reply the big improvement in ppp parsing is it stops parsing based on what the ppp headers say, rather than what bytes have been captured. this also adds parsing of EAP packets. DLT_PPP_SERIAL is now recognised and printed. gre now prints the outer addresses always, not just when it's encapsulated by ipv6 or -v is passed to tcpdump. ok sthen@
2018-02-06chdir to the target directory, run make there and fchdir back after.Henning Brauer
allows Makefiles with ${.CURDIR} constructs to work with crunchgen. pointed out by Holger Mikolon, input from theo, ok theo millert
2018-02-05Switch a few lists to tailqs. Mainly the prefix list per aspath needsClaudio Jeker
to be a queue so that we can use it in the Adj-RIB-Out case. OK benno@
2018-02-05simplify macros, and avoid some arg splitting;Jason McIntyre
2018-02-05Introduce "depend on". This allows ospfd to set the metric dependentremi
on the status of another interface. in collaboration with benno@ jca@ OK benno@ jca@
2018-02-05remove unused function prototypeMike Larkin