| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
from libc.
|
|
|
|
|
| |
PR: 25110
Tested by: knu
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
arguments where the format string is obtained from user data, or
otherwise difficult to verify statically.
Example usage:
printf(fmtcheck(user_format, standard_format), arg1, arg2);
checks the format string user_format for consistency (same number/order/
type of format operators) with standard_format. If they differ,
standard_format is used instead to avoid potential crashes or security
violations.
Obtained from: NetBSD
Reviewed by: -arch
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Reviewed by: ru
|
|
|
|
|
|
| |
ID's to be stored in the ACL.
Obtained from: TrustedBSD Project
|
|
|
|
|
|
| |
fail. Also fix a minor grammar nit (it's -> its).
PR: 26520
|
|
|
|
|
|
|
|
| |
permission is in a permission set, required for third-party
applications such as Samba.
Reviewed by: rwatson
Obtained from: TrustedBSD Project
|
|
|
|
|
|
|
| |
ACL_UNDEFINED_TAG, ACL_UNDEFINED_ID, ACL_FIRST_ENTRY, ACL_NEXT_ENTRY
Reviewed by: rwatson
Obtained from: TrustedBSD Project
|
| |
|
|
|
|
| |
(history.3)
|
|
|
|
| |
Obtained from: TrustedBSD Project
|
|
|
|
|
|
|
|
| |
ACL_PERM_EXEC -> ACL_EXECUTE
ACL_PERM_READ -> ACL_READ
ACL_PERM_WRITE -> ACL_WRITE
Obtained from: TrustedBSD
|
|
|
|
|
| |
lists to free thread resources after a fork (in the child). Also
remember to free the dead thread list.
|
|
|
|
| |
one statement.
|
|
|
|
|
|
| |
instead of #pragma weak to create weak definitions.
Suggested by: bde
|
|
|
|
|
|
|
|
| |
instead of #pragma weak to create weak definitions. This macro is
improperly named, though, since a weak definition is not the same
thing as a weak reference.
Suggested by: bde
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
than the default buffer size in the old RPC code (8800 bytes), and
it could not be overriden by the application. This caused problems
with CFS (/usr/port/security/cfs).
Change this default back to UDPMSGSIZE (8800 bytes), but more
importantly, allow applications to use larger message sizes for
all protocols if desired. Choose an arbitrary maximum message size
of 256k instead of using the default as the maximum (which is
silly).
Reported by: ache
Reviewed by: alfred, Martin Blapp <mb@imp.ch>
|
|
|
|
|
| |
PR: 24802
Submitted by: Kenneth Ingham <ingham@i-pi.com>
|
| |
|
|
|
|
|
|
| |
cdboot on alphas (which has been broken since just after 4.0-RELEASE)
submitted by: jlemon
|
|
|
|
| |
to -1 so the caller will know it's invalid. This is an MFC candidate.
|
|
|
|
|
|
| |
using `internet' keyword into /etc/skey.access.
Not Objected to by: -audit and -net
|
| |
|
|
|
|
| |
Submitted by: jhay
|
| |
|
|
|
|
| |
for the ACL editing library functions to the plain tagged list.
|
|
|
|
|
|
|
|
|
|
| |
functions.
- Place the acl_dup() description in alphabetical order.
- Move the POSIX.1e descriptions under the ENVIRONMENT section to the
STANDARDS section.
Reviewed by: rwatson
Obtained from: TrustedBSD Project
|
| |
|
|
|
|
|
|
| |
people that these calls are likely to change in the future.
Reviewed by: rwatson
|
|
|
|
|
|
|
| |
integrated into libc.
Approved by: rwatson
Obtained from: TrustedBSD Project
|
|
|
|
|
|
|
|
| |
moved in from libposix1e, and deactivate build of the soon-to-be-removed
libposix1e.
Approved by: rwatson
Obtained from: TrustedBSD Project
|
|
|
|
|
|
|
| |
descriptors.
Approved by: rwatson
Obtained from: TrustedBSD Project
|
|
|
|
|
| |
Approved by: rwatson
Obtained from: TrustedBSD Project
|
|
|
|
|
|
|
|
|
|
| |
Makefile, add Makefile.inc needed for libc build; add
#include "namespace.h"/#include "un-namespace.h" pairs around the
includes of sys/acl.h and sys/capability.h, and an additional underscore
in front of the functions that will be overridden in libc_r.
Approved by: rwatson
Obtained from: TrustedBSD Project
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
`nc_error' variables. Move the nc_lock mutex from mt_misc.c to a
static variable within this function, since it is only used here.
Add a new getnetconfigent() error code `NC_NOTFOUND' to report the
case where the specified netid was not found. Set nc_error in all
error cases in getnetconfigent() so that the error messages returned
by nc_(s)perror are always meaningful.
Add a terminating \n to the output of nc_perror() to match both
our manpage and other implementations of this function.
Reviewed by: deischen, alfred, Martin Blapp <mb@imp.ch>
|