Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | zero tmpout too. reminded by related diff from tim | 2019-11-21 | 1 | -1/+2 | |
| | |||||
* | overwrite the key in failure modes in case the caller doesn't check. | 2019-11-21 | 2 | -7/+17 | |
| | | | | ok deraadt | ||||
* | Adjust whitespace, so Ta macros are aligned vertically as already done in | 2019-10-25 | 1 | -7/+7 | |
| | | | | ober_add_string.3 and as it was before the ber -> ober rename. | ||||
* | The ber_* namespace is used by liblber since time immemorial, | 2019-10-24 | 10 | -438/+439 | |
| | | | | | | | | | | | | so move our BER API to the unused ober_* prefix to avoid some breakage in ports. Problem diagnosed by jmatthew with ber_free() in samba, but there are many others as pointed out by sthen. tests & ok rob ok sthen (who had an almost identical diff for libutil) "go head hit it" deraadt | ||||
* | uucplock(3) is incorrectly named in some places, it is actually uu_lock(3) | 2019-08-30 | 3 | -6/+6 | |
| | | | | (more unclear is if anything in ports uses this, as our base no longer does) | ||||
* | Revert previous. There were some users of the quirky behaviour that were | 2019-08-15 | 1 | -2/+2 | |
| | | | | missed during code scan. | ||||
* | Fix argument list for ber_set_writecallback | 2019-08-14 | 1 | -3/+5 | |
| | | | | OK claudio@ | ||||
* | wonky comma; | 2019-08-14 | 1 | -3/+3 | |
| | |||||
* | Document that ber_scanf_elements' 'p' and 't' attribute don't eat the | 2019-08-14 | 1 | -2/+7 | |
| | | | | | | | current ber element. OK claudio@ Seems sensible to deraadt@ | ||||
* | Make ber_scanf_elements's 'e' attribute eat the element. | 2019-08-14 | 1 | -2/+2 | |
| | | | | | | | | Right now all consumers use 'e' at the end of the list, so no regressions should be introduced. OK claudio@ Seems sensible to deraadt@ | ||||
* | Make sure that ber in ber_scanf_elements is not NULL before parsing format | 2019-08-14 | 1 | -3/+3 | |
| | | | | | | | | | where ber is utilized. This also allows us to remove the ber->be_next check, which can cause weird behaviour, because a NULL be_next would result in parsing the last element twice. OK claudio@ on previous version OK rob@ | ||||
* | Don't use a 0 element to determine the end of an OID when comparing two | 2019-08-05 | 1 | -17/+17 | |
| | | | | | | OIDS. This can result in false equality matches. OK claudio@ | ||||
* | There's no reason why the first digit of an OID can't be 0. | 2019-08-05 | 1 | -4/+1 | |
| | | | | | OK claudio@ "Good find" deraadt@ | ||||
* | snprintf/vsnprintf return < 0 on error, rather than -1. | 2019-07-03 | 1 | -7/+9 | |
| | |||||
* | Actually, the C standard only guarantees that atexit(3) returns non-zero | 2019-06-28 | 1 | -2/+2 | |
| | | | | | on error, so tweak previous to test "atexit(...) != 0" for portability. "OK ok ok sorry backwards" deraadt@ | ||||
* | When system calls indicate an error they return -1, not some arbitrary | 2019-06-28 | 8 | -24/+24 | |
| | | | | | | value < 0. errno is only updated in this case. Change all (most?) callers of syscalls to follow this better, and let's see if this strictness helps us in the future. | ||||
* | atexit() returns -1 on failure | 2019-06-28 | 1 | -2/+2 | |
| | |||||
* | Limit maximum number of length octets to platform independent sizeof(int32_t). | 2019-06-01 | 1 | -2/+5 | |
| | | | | | | Problem noticed by bluhm@. Discussed on hackers. ok claudio@ | ||||
* | whitespace | 2019-05-21 | 1 | -2/+2 | |
| | |||||
* | Cleanup some residual markup from the ber.3 days. | 2019-05-21 | 5 | -29/+17 | |
| | | | | ok jmc@, schwarze@ | ||||
* | add various missing information | 2019-05-17 | 1 | -29/+75 | |
| | | | | | and remove the lie that these functions would set errno; tweaks and OK jmc@; OK rob@ on the previous version | ||||
* | Add XXX to a comment. | 2019-05-16 | 1 | -2/+2 | |
| | |||||
* | Correct errno markup. Noticed by schwarze. | 2019-05-16 | 2 | -6/+6 | |
| | | | | Discussed with schwarze and jmc. ok schwarze | ||||
* | sort SEE ALSO; | 2019-05-15 | 2 | -8/+8 | |
| | |||||
* | add substantial amounts of missing information; | 2019-05-15 | 1 | -24/+96 | |
| | | | | OK rob@ | ||||
* | Consistently make errno a .Vt | 2019-05-15 | 2 | -6/+8 | |
| | |||||
* | delete some duplicate words | 2019-05-15 | 1 | -4/+2 | |
| | |||||
* | Split ber.3 into logical parts. Further tweaking will be done in tree. | 2019-05-15 | 7 | -456/+769 | |
| | | | | Discussed with and ok jmc@, schwarze@, claudio@ | ||||
* | Enable support for the writting of BITSTRING by treating it as an OCTETSTRING. | 2019-05-12 | 1 | -2/+1 | |
| | | | | ok claudio@ | ||||
* | Enforce smallest number of contents octets for int (and enum). | 2019-05-12 | 1 | -2/+9 | |
| | | | | ok claudio@ | ||||
* | Mention #include of <sys/types.h> in synopsis. | 2019-05-12 | 1 | -2/+3 | |
| | | | | Discussed with claudio@ and tedu@. | ||||
* | Fail early if a (universal) primitive type identifies as constructed, or if a | 2019-05-12 | 1 | -1/+17 | |
| | | | | | | boolean has a contents length other than 1. ok claudio@ | ||||
* | Enforce minimal number of octets for tag > 30. | 2019-05-12 | 1 | -1/+8 | |
| | | | | "sure" claudio@ | ||||
* | In long form encoding, explicitly prohibit an initial length octet of 0xff | 2019-05-12 | 1 | -1/+7 | |
| | | | | | | which is reserved for future use. ok claudio@ | ||||
* | The BER API is currently used by ldap, ldapd, ldapctl, ypldap, snmpd, and | 2019-05-11 | 6 | -5/+1984 | |
| | | | | | | | | | | | | snmpctl. Separate copies of ber.[ch] have existed and been maintained in sync in ldap, ldapd, ypldap and snmpd. This commit moves the BER API into /usr/lib/libutil. All current consumers already link libutil. ldapd and snmpd regress passes, and release builds. With help from tb@ and guenther@. ok deraadt@, tb@ | ||||
* | missing dots after ".%P pp"; the case of btree(3) was | 2019-04-23 | 1 | -3/+3 | |
| | | | | | reported by Fabio Scotoni <fabio at esse dot ch>; also garbage collect one .Tn while here | ||||
* | I am retiring my old email address; replace it with my OpenBSD one. | 2019-01-25 | 1 | -3/+3 | |
| | |||||
* | Change imsg header definitions to use standard types. | 2019-01-20 | 3 | -9/+11 | |
| | | | | ok deraadt@ claudio@ | ||||
* | Calling llabs(LLONG_MIN) is undefined behavior, llvm 7.0.1 does not | 2019-01-14 | 1 | -5/+9 | |
| | | | | | | work with our old code. In fmt_scaled() move the check before calling llabs(). found by regress/lib/libutil/fmt_scaled; OK deraadt@ millert@ tedu@ | ||||
* | explicitly mention local processes; from geoff hill | 2018-09-26 | 1 | -3/+3 | |
| | | | | ok nicm | ||||
* | delete volatile intended to silence whiny old compilers around vfork. | 2018-08-10 | 1 | -2/+2 | |
| | | | | | This variable is only used in the parent context so there is no issue. ok kettenis | ||||
* | constrain fractional part to [0-9] (less confusing to static analysis); ok ian@ | 2018-05-14 | 1 | -2/+5 | |
| | |||||
* | Fix function argument names, from Abel Abraham Camarillo Ojeda via jmc@. | 2018-02-16 | 1 | -9/+9 | |
| | |||||
* | Adjust references for sysctl(3) to sysctl(2) | 2018-01-12 | 2 | -6/+6 | |
| | |||||
* | Make a few internal symbols static and add a Symbols.map version script | 2017-12-14 | 5 | -13/+107 | |
| | | | | | | to control which symbols are exported from the shared library. ok guenther@, deraadt@, jca@ | ||||
* | It's the imsg_compose(3) who accepts 'fd' argument, not imsg_create(3). | 2017-12-06 | 1 | -9/+9 | |
| | |||||
* | spacing (in EXAMPLES code) | 2017-05-03 | 1 | -3/+3 | |
| | |||||
* | add previous to NAME; | 2017-04-20 | 1 | -2/+5 | |
| | |||||
* | Add getptmfd(), fdopenpty(), fdforkpty() functions. These allow programs | 2017-04-20 | 4 | -19/+96 | |
| | | | | | | | | | to separate the open(/dev/ptm) from the ioctl(PTMGET) for privilege separation or pledge(). Based on a diff from reyk@. ok deraadt millert | ||||
* | use freezero() instead of explicit_bzero+free | 2017-04-18 | 1 | -3/+2 | |
| |