summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-01-26an EXT2FS_ITIMES macro so the tree builds. it may even work.Ted Unangst
2014-01-25ufs_setattr() was assuming that the flag bits that indicatePhilip Guenther
atime/mtime/ctime need to be updated weren't already set. When they are, the code will end up treating the VNOVAL value from the VFS layer as a time_t. Port the fix from FreeBSD: the critical bit is to process the existing flag values before possibly setting them again in ufs_setattr(). This diff pulls in a larger change from FreeBSD to replace the macro ITIMES() with a function ufs_itimes() and to remove the atime and mtime arguments from ffs_update(): only ufs_setattr() used them so it makes more sense to just do the those bits directly there. tweaks and ok tedu@ matthew@
2014-01-25provide a mnemonic for -s;Jason McIntyre
2014-01-25let EXIT STATUS breathe;Jason McIntyre
2014-01-25dh_need needs to be set to max(seclen, blocksize, ivlen, mac_len)Markus Friedl
ok dtucker@, noted by mancha
2014-01-25delete junk fileTheo de Raadt
2014-01-25PPP not PppTheo de Raadt
2014-01-25typoMiod Vallat
2014-01-25sticky bit is marked xsi;Jason McIntyre
2014-01-25note that posix marks this utility xsi;Jason McIntyre
millert, guenther, sobrado, and schwarze have all contributed to how to word this...
2014-01-25cal appeared in v1; found by millertJason McIntyre
ok sobrado
2014-01-25more ArcCheck nits: don't allow a file to be u-r/g-r without an explicitMarc Espie
@mode annotation. This mostly fixes packaging bugs (like documentation only readable by root and such nonsense), and also force *actual* mode settings for security reasons to be apparent in the packing-list.
2014-01-25Change the default PF policy to "block return", including x11 asDarren Tucker
suggested by naddy@. This solves the problem that occurs when a server crashes or is hard booted and comes back up without tearing down any connections to it, and packets from these connections don't match any existing state or rule and are silenty dropped. ok phessler@ henning@ claudio@ dlg@
2014-01-25somehow, bytes got garbled. Be less cute and seek twice, that works.Marc Espie
sorry about that.
2014-01-25revert counter size changes. this breaks netstat. digging further, thereTheo de Raadt
are so many inconsistancies, that moving one deck chair is pointless. more thought required. ok claudio
2014-01-25Add a special case for the DH group size for 3des-cbc, which has anDarren Tucker
effective strength much lower than the key size. This causes problems with some cryptlib implementations, which don't support group sizes larger than 4k but also don't use the largest group size it does support as specified in the RFC. Based on a patch from Petr Lautrbach at Redhat, reduced by me with input from Markus. ok djm@ markus@
2014-01-25Fix printing of icps_toofreq unlike IPv6 the IPv4 value is just a u_long.Claudio Jeker
Found by csszep (at) gmail.
2014-01-25some processors were not listed in the PIE blockTheo de Raadt
2014-01-25Correct parsing of dhclient.conf statements 'fixed-address' andKenneth R Westerback
'next-server'. Modify new lease being cloned with their values rather than overwriting original lease being cloned.
2014-01-25Add a test for DH GEX sizesDarren Tucker
2014-01-25get rid of the kernel high and low water marks for pages and replace withBob Beck
a single target of used pages in the cache - so we don't to a ton of work throwing away pages sporadically while holding the biglock - noticed by dlg. ok dlg@ deraadt@
2014-01-25Simplify and shorten the way ICMP checksums are verified inLawrence Teo
pf_check_proto_cksum() by letting it use the same in4_cksum() call that is used for TCP and UDP checksums. ok henning@ naddy@
2014-01-24OK, loadrandom should not care about EPERM I supposeTheo de Raadt
2014-01-24bump the year for ISO/IEC 8802:3 from 1989 to 1996;Jason McIntyre
ingo recommends not defining a new St macro for every revision here ok sobrado schwarze
2014-01-24Supplement the documentation of the .St macro by minimal commentaryIngo Schwarze
regarding the content and relationships of the various standards, and sort and group them. tweaks and ok guenther@, ok millert@ sobrado@ jmc@
2014-01-24Remove _KERNEL guard around <sys/lock.h>, for userland to be able toMiod Vallat
process the definition of struct vm_page_md.
2014-01-24Don't include <machine/vmparam.h> directly. Instead, get it with its necessaryMiod Vallat
dependencies via <sys/sysctl.h>. Unbreaks ppc userland build.
2014-01-24Disable lapic when halting CPUs. Allegedly this is necessary to makeMark Kettenis
suspend work on some machines. ok deraadt@, mlarkin@
2014-01-24clearing the _CSUM_IN_OK flags is now utterly pointless, was only done forHenning Brauer
statistics sideeffects before. ok lteo naddy
2014-01-24From Areca, this also fully supports ARC-1264, ARC-1284 and the upcomingChris Cappuccio
ARC-1883
2014-01-24Implement -S; from traceroute; reduces diff to traceroute.Florian Obser
OK benno@
2014-01-24Implement -D; from traceroute; reduces diff to traceroute.Florian Obser
While here add dump() prototype in traceroute OK benno@
2014-01-24Sort getopt cases, reduces diff to traceroute6Florian Obser
OK benno@
2014-01-24Implement -c flag; from traceroute; reduces diff to tracerouteFlorian Obser
OK benno@
2014-01-24It's an error to have more than 2 arguments; reduces diff to traceroute6Florian Obser
OK benno@
2014-01-24Sync "port" type to traceroute6; reduces diff to traceroute6Florian Obser
OK benno@
2014-01-24Sync "port" handling to traceroute; reduces diff to tracerouteFlorian Obser
OK benno@
2014-01-24Sync "nprobes" handling to traceroute; reduces diff to tracerouteFlorian Obser
OK benno@
2014-01-24Sync max_hops and first_hop to same type as the corospondingFlorian Obser
variables max_ttl / first_ttl in traceroute have. Also parse -f/-m the same as traceroute. Does not technically reduce the diff to traceroute, but if/when we merge we can decide which variable naming wins and search/replace the other. OK benno@
2014-01-24rename s to rcvsockFlorian Obser
Reduces diff to traceroute6 and is easier to search for. OK benno@
2014-01-24Instead of calculating the ICMPv6 checksum here, just set the flag thatChristian Weisgerber
is needed and the lower parts of the stack will take care of it. ok henning@, lteo@
2014-01-24in pf_check_proto_cksum, updtae the swcksum counters if we cksummed inHenning Brauer
software. ok naddy (this is pbly the ultimate commit'n'run)
2014-01-24Improve formatting of broken blocks in -Tman,Ingo Schwarze
somewhat similar to what mdoc_term.c already does for -Tascii.
2014-01-24subject -z hints (fuzzy update) to quirks' tweak_search.Marc Espie
Reminded by sthen@ This solves the 5.4 -> 5.5 delete/reinstall gap for changed pkgnames.
2014-01-24When a disklabel is read from a MBR partitioned disk, don'tKenneth R Westerback
replace the OpenBSD bounds with the A6 MBR partition limits. Thus preserving any changes the user makes with the 'b' command in disklabel. Reported, tested & ok blambert@, ok deraadt@
2014-01-24If hv_ldc_copy() fails copying data set report status as EIO and acknowledgeMark Kettenis
the descriptor. This seems to be what Solaris does in such a case.
2014-01-24computing the ip csum just before the bpf mtap and only if there is aHenning Brauer
consumer just to please tcpdump is stupid and not done anywhere else. kill with fire. ok benno
2014-01-24Update C standard reference to C99 and document HISTORY and AUTHORS;Ingo Schwarze
using input from millert@, reminded by and ok jmc@
2014-01-24Add support for BUS_INTR_ESTABLISH_MPSAFE.Mark Kettenis
2014-01-24re-lookup the policy as soon as we have the ID of the peer (destid)Markus Friedl
ok mikeb@