Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2015-10-26 | set listening sockets to nonblocking, then handle as many incoming requests | 1 | -9/+7 | ||
as we can in the loop instead of keventing per request. | |||||
2015-10-26 | dns check needs to be done on the kernel address after copyin | 1 | -6/+7 | ||
2015-10-26 | Allow NET_RT_IFLIST in pledge "dns" as well | 1 | -2/+2 | ||
2015-10-26 | Kernel got fixed we no longer need to check if rtm_pid is 0 to filter out | 1 | -3/+2 | ||
route messages that are not from us. | |||||
2015-10-26 | If the system call is entirely unpermitted, code will be 0, and there is | 2 | -7/+12 | ||
no pledge to recommend. | |||||
2015-10-26 | add setreuid/setregid to "id" | 1 | -1/+3 | ||
2015-10-26 | stop saving a pidfile; ok jung zhuk | 1 | -40/+1 | ||
2015-10-26 | fix PATH_INFO for / requests | 1 | -2/+2 | ||
diff from Denis Fondras ok reyk | |||||
2015-10-26 | Nothing in base uses native language support anymore. Remove NLS | 7 | -90/+9 | ||
support from the makefiles. OK naddy@ | |||||
2015-10-26 | remove libutil from dpadd too | 3 | -6/+3 | ||
2015-10-26 | remove libutil from dpadd too | 1 | -2/+2 | ||
2015-10-26 | last consumer in base of pidfile()... | 2 | -5/+4 | ||
2015-10-26 | remove util.h include and -lutil after pidfile removal | 8 | -15/+8 | ||
ok deraadt | |||||
2015-10-26 | Stop writing a pidfile | 3 | -31/+6 | ||
ok benno jung | |||||
2015-10-26 | stop using pidfile() | 4 | -10/+3 | ||
ok benno jung jca | |||||
2015-10-26 | remove unneeded pidfile() from smtpd | 1 | -5/+1 | ||
ok gilles | |||||
2015-10-26 | Sync "ifconfig create" interface list with ifconfig -C output. | 1 | -3/+7 | ||
Adds pair, svlan, tap and vxlan. | |||||
2015-10-26 | avoid a potential double free | 1 | -1/+2 | ||
ok gilles@ | |||||
2015-10-26 | Add autoport to netinet6 regress tests | 1 | -2/+2 | ||
2015-10-26 | Add regress test on local route insertions | 3 | -2/+130 | ||
2015-10-26 | change some pledge_fail() error/code | 1 | -4/+4 | ||
- for PLEDGE_FATTR: the code is more accurate to be PLEDGE_FATTR, has p->p_pledgenote could have multiple bits inside, and it is the lake of PLEDGE_FATTR that make the check fail. - for PLEDGE_RECVFD and PLEDGE_SENDFD, change the error to be EINVAL: we fail, not because of lake of PLEDGE_RECVFD / PLEDGE_SENDFD permission, but because the value passed is invalid in pledged program (for example trying to send a VDIR). "go ahead" deraadt@ | |||||
2015-10-26 | make pledge_check(), used for syscall check with pledge, returns an error and | 3 | -10/+17 | ||
provide the required pledge request for pledge_fail(). ok deraadt@ | |||||
2015-10-26 | Using realm for bsdauth is misleading. It is currently unusable. | 1 | -5/+5 | ||
2015-10-26 | temporary unhook regress/sys/kern/pledge from regress | 1 | -2/+4 | ||
2015-10-26 | Fix typo certopt->certopts in shell variable. This would cause the test to | 1 | -2/+2 | ||
hang at a host key prompt if you have an A or CNAME for "proxy" in your local domain. | |||||
2015-10-26 | Cast isdigit()'s argument to unsigned char. | 1 | -2/+2 | ||
ok guenther@ | |||||
2015-10-26 | adjust macro usage to the usual conventions | 1 | -481/+483 | ||
2015-10-26 | Partial revert of r1.79, "np" handling is a bit trickier than expected. | 1 | -4/+3 | ||
2015-10-26 | Set low-delay traffic class for IPv6 connections as well | 1 | -11/+14 | ||
While here, there is no option to pass a different tos, and no other use of the "tos" variable out of tn(), so move the "tos" variable in tn() and assign it the right value from the start. ok millert@ | |||||
2015-10-26 | Rename the struct pollfd array, "set" -> "pfd" | 1 | -10/+10 | ||
"set" reminds of select(2) fd_set, and is never used elsewhere in the tree as a name for a pollfd array. No functional change. | |||||
2015-10-26 | Those variables should be local to the functions where they are used. | 1 | -12/+11 | ||
Gets rid of a lot of warnings with -Wshadow. No functional change. | |||||
2015-10-26 | space before punctuation; | 1 | -3/+3 | ||
2015-10-26 | Kill unused variable and function. | 1 | -16/+1 | ||
No functional change. | |||||
2015-10-25 | hms() returns a pointer to static storage, annotate the return type with "const" | 1 | -3/+3 | ||
No functional change. | |||||
2015-10-25 | Correctly print size_t/time_t. | 1 | -7/+7 | ||
No functional change. | |||||
2015-10-25 | Expand tildes in filenames passed to -i before checking whether or not the | 1 | -6/+7 | ||
identity file exists. This means that if the shell doesn't do the expansion (eg because the option and filename were given as a single argument) then we'll still add the key. bz#2481, ok markus@ | |||||
2015-10-25 | Plug memory leak introduced in r1.15. | 1 | -11/+1 | ||
No functional change. | |||||
2015-10-25 | Do not prepend "exec" to the shell command run by "Match exec" in a config | 1 | -10/+3 | ||
file. It's an unnecessary optimization from repurposed ProxyCommand code and prevents some things working with some shells. bz#2471, pointed out by res at qoxp.net. ok markus@ | |||||
2015-10-25 | No longer create /var/run/ftpd.pid in daemon mode; OK jung@ jca@ | 2 | -10/+4 | ||
2015-10-25 | Those two functions take no parameters, thus /* ARGSUSED */ is meaningless. | 1 | -3/+1 | ||
No functional change. | |||||
2015-10-25 | Sync surrounding code after reallocarray introduction. | 1 | -3/+3 | ||
No functional change. | |||||
2015-10-25 | Rename allocopy() to xstrdup(), and make use of strdup(3). | 1 | -11/+9 | ||
No functional change. | |||||
2015-10-25 | Kill unused ROUTE6D_CONF define. | 1 | -5/+1 | ||
Since 1999 no one has found the need to write support for a config file. | |||||
2015-10-25 | Another pidfile(3) removal; ok benno@ | 2 | -6/+2 | ||
2015-10-25 | In case of error, also log the file name we failed to open. | 1 | -2/+2 | ||
2015-10-25 | Extend the modifiers allowed before formats: as well as the existing | 5 | -113/+175 | ||
#{=10:...} length limit, add #{t:...} to convert a time_t format to a string, #{b:...} for basename and #{d:...} for dirname. Remove all the foo_string time formats as they can now be replaced by "t:", for example #{window_activity_string} becomes #{t:window_activity}. | |||||
2015-10-25 | unifdef some oldness. (BSD not defined since removal of param.h) | 1 | -10/+1 | ||
ok jca sthen | |||||
2015-10-25 | ansify | 6 | -45/+27 | ||
2015-10-25 | unbreak tree for ramdisks without INET6 | 1 | -1/+3 | ||
2015-10-25 | Unify & improve paragraphs talking about "==> file <==" headers in | 2 | -12/+12 | ||
head(1) and tail(1). Input & okay from jmc@ |