openbsd
9 years agoA bit of whitespace cleanup, to make further diffs smaller.
zhuk [Fri, 23 Oct 2015 11:43:16 +0000 (11:43 +0000)]
A bit of whitespace cleanup, to make further diffs smaller.

9 years agoFix BODUN handling after switch to UTF-8.
zhuk [Fri, 23 Oct 2015 11:01:30 +0000 (11:01 +0000)]
Fix BODUN handling after switch to UTF-8.

Still wondering if this functionality should be removed, but I'll leave
the decision to those who drink alcohol.

Input from & okay tedu@.

9 years agoNuke a bunch of leading/embedded/trailing whitespace so the code can be
krw [Fri, 23 Oct 2015 10:45:31 +0000 (10:45 +0000)]
Nuke a bunch of leading/embedded/trailing whitespace so the code can be
read without generating spurious headaches.

9 years agoforgot to commit makefile change for utf-8 calendars
tedu [Fri, 23 Oct 2015 10:33:52 +0000 (10:33 +0000)]
forgot to commit makefile change for utf-8 calendars

9 years agoIntroduce a new sysctl NET_RT_IFNAMES that returns only ifnames to ifindex
claudio [Fri, 23 Oct 2015 10:22:29 +0000 (10:22 +0000)]
Introduce a new sysctl NET_RT_IFNAMES that returns only ifnames to ifindex
mappings. This will be used by if_nameindex(3), if_nametoindex(3) and
if_indextoname(3) soon to fix the issues in pledge because of inet6 link
local addressing.
OK mpi@ benno@ deraadt@
The libc version will follow soon so better start updating your kernels

9 years agoMake use of pledge(2).
renato [Fri, 23 Oct 2015 10:11:20 +0000 (10:11 +0000)]
Make use of pledge(2).

ok deraadt@

9 years agoAdd pledge(2) to the child processes.
renato [Fri, 23 Oct 2015 10:10:17 +0000 (10:10 +0000)]
Add pledge(2) to the child processes.

This is almost identical to the eigrpd(8) pledge diff, with the exception
that the parent process can not be pledged bacause of a SIOCSETMPWCFG
ioctl used to configure pseudowires.

Looks good to deraadt@.

9 years agoZap pv allocation abstraction layer.
kettenis [Fri, 23 Oct 2015 09:36:09 +0000 (09:36 +0000)]
Zap pv allocation abstraction layer.

ok mlarkin@

9 years agoi assume this file needs a LANG like all the rest
tedu [Fri, 23 Oct 2015 09:35:52 +0000 (09:35 +0000)]
i assume this file needs a LANG like all the rest

9 years agotranslate calendar files to utf-8
tedu [Fri, 23 Oct 2015 09:32:14 +0000 (09:32 +0000)]
translate calendar files to utf-8

9 years agopush LDSTATIC line down so it's not overridden by makefile.inc. ok reyk
tedu [Fri, 23 Oct 2015 09:13:00 +0000 (09:13 +0000)]
push LDSTATIC line down so it's not overridden by makefile.inc. ok reyk

9 years agoFix uvm_object reference counting. While these reference counts aren't reaaly
kettenis [Fri, 23 Oct 2015 08:21:58 +0000 (08:21 +0000)]
Fix uvm_object reference counting.  While these reference counts aren't reaaly
used (ttm bo's have their own reference counts), we can't let the reference
count go negative as this will freak out the upper uvm layers.  Since the
uvm_object reference count is still a useful debugging tool (ddb will display
it for example), adjust it such that the uvm_object reference count represents
the number of references held by the uvm layer.

tested by matthieu@
ok jsg@

9 years agosimplify argv back compat
tedu [Fri, 23 Oct 2015 08:21:27 +0000 (08:21 +0000)]
simplify argv back compat

9 years agofurther simplify argv
tedu [Fri, 23 Oct 2015 08:18:57 +0000 (08:18 +0000)]
further simplify argv

9 years agocleanup argv handling a bit
tedu [Fri, 23 Oct 2015 08:18:30 +0000 (08:18 +0000)]
cleanup argv handling a bit

9 years agosimplify backcompat. no more support for kernel or kmem on argv
tedu [Fri, 23 Oct 2015 08:03:48 +0000 (08:03 +0000)]
simplify backcompat. no more support for kernel or kmem on argv

9 years agoundent includes, from michael reed
tedu [Fri, 23 Oct 2015 08:02:13 +0000 (08:02 +0000)]
undent includes, from michael reed

9 years agommap is the default. it's effectively the only tested codepath. so burn down
tedu [Fri, 23 Oct 2015 07:57:03 +0000 (07:57 +0000)]
mmap is the default. it's effectively the only tested codepath. so burn down
the stdio code path.
pros: everything is simpler. how can anyone read code this heavily spliced
with ifdef?
cons: you can't pipe a database into locate. who does this???
ok deraadt

9 years agoadd BUILDINFO file. currently contains a timestamp. ok deraadt
tedu [Fri, 23 Oct 2015 06:42:53 +0000 (06:42 +0000)]
add BUILDINFO file. currently contains a timestamp. ok deraadt

9 years agosync
deraadt [Fri, 23 Oct 2015 06:22:28 +0000 (06:22 +0000)]
sync

9 years agoenable viornd on RAMDISK_CD
mlarkin [Fri, 23 Oct 2015 05:35:49 +0000 (05:35 +0000)]
enable viornd on RAMDISK_CD

ok kettenis@, deraadt@

9 years agoInitial pledge of netcat - unfortunately flawed because fiddling the rtableid
beck [Fri, 23 Oct 2015 05:27:17 +0000 (05:27 +0000)]
Initial pledge of netcat - unfortunately flawed because fiddling the rtableid
in a socket option can be pretty scary and there is no better interface for this.
so if the -V option is used you get no pledge at all.. Otherwise, do what
works for the various options.  Still needs refinement for tls to drop rpath,
and a better solution for the routing table stuff

9 years agoFix waitpid() loop again: do the errno check only if waitpid() returns -1
guenther [Fri, 23 Oct 2015 04:52:21 +0000 (04:52 +0000)]
Fix waitpid() loop again: do the errno check only if waitpid() returns -1
and check WIFEXITED() only if it returns != -1.  Delete the logging of
errors other than ECHILD: EFAULT and EINVAL are impossible here.

ok deraadt@ millert@

9 years agoUse waitpid() instead of wait() to avoid returning early from another child
guenther [Fri, 23 Oct 2015 04:45:32 +0000 (04:45 +0000)]
Use waitpid() instead of wait() to avoid returning early from another child
exiting, and loop the waitpid() on EINTR

ok deraadt@ millert@

9 years agoLoop the waitpid() on EINTR, and save and restore the disposition of
guenther [Fri, 23 Oct 2015 04:44:41 +0000 (04:44 +0000)]
Loop the waitpid() on EINTR, and save and restore the disposition of
SIGINT and SIGQUIT with sigaction() instead of signal() so that all bits
are preserved.

ok deraadt@ millert@

9 years agoMerge the sigaction() and sigprocmask() overloads/wrappers from libpthread
guenther [Fri, 23 Oct 2015 04:39:24 +0000 (04:39 +0000)]
Merge the sigaction() and sigprocmask() overloads/wrappers from libpthread
into libc, and move pthread_sigmask() as well (just a trivial wrapper).
This provides consistent handling of SIGTHR between single- and multi-threaded
programs and is a step in the merge of all the libpthread overloads, providing
some ASM and Makefile bits that the other wrappers will need.

ok deraadt@ millert@

9 years agopledge "stdio rpath getpw proc exec id" at start, much like doas.
deraadt [Fri, 23 Oct 2015 03:44:59 +0000 (03:44 +0000)]
pledge "stdio rpath getpw proc exec id" at start, much like doas.
2 further pledges are possible, not as many as doas can do, because the
order of some su operations is a bit different.  also it is trying
harder to please non-root nfs mounts?

9 years agoWith new pledge "ps" and "vminfo" requests, ps/top/w become possible.
deraadt [Fri, 23 Oct 2015 03:26:24 +0000 (03:26 +0000)]
With new pledge "ps" and "vminfo" requests, ps/top/w become possible.

9 years agothere's an extra argument to soreceive now.
dlg [Fri, 23 Oct 2015 03:16:19 +0000 (03:16 +0000)]
there's an extra argument to soreceive now.

found by teary students.

9 years agopass the right sizes to free.
dlg [Fri, 23 Oct 2015 02:29:24 +0000 (02:29 +0000)]
pass the right sizes to free.

9 years agoUpdate expected group sizes to match recent code changes.
dtucker [Fri, 23 Oct 2015 02:22:01 +0000 (02:22 +0000)]
Update expected group sizes to match recent code changes.

9 years agoinline the hfsc_active TAILQ.
dlg [Fri, 23 Oct 2015 02:08:37 +0000 (02:08 +0000)]
inline the hfsc_active TAILQ.

make cl_actc in hfsc_class a TAILQ rather than a pointer to a TAILQ
that gets allocated seaprately.

9 years agoinclude err.h for err() calls added with recent pledge commits.
jsg [Fri, 23 Oct 2015 02:01:15 +0000 (02:01 +0000)]
include err.h for err() calls added with recent pledge commits.

9 years agoinline the hif_eligible TAILQ.
dlg [Fri, 23 Oct 2015 01:53:02 +0000 (01:53 +0000)]
inline the hif_eligible TAILQ.

make hif_eligible in hfsc_if a TAILQ rather than a pointer to a
TAILQ that gets allocated separately.

"look ma, i saved 4 or 8 bytes"

9 years agoRemove two comments listing functionless files. Trivial, no functional
mmcc [Fri, 23 Oct 2015 01:33:36 +0000 (01:33 +0000)]
Remove two comments listing functionless files. Trivial, no functional
change.

9 years agocounting packets in hif_packets in hfsc_if is redundant.
dlg [Fri, 23 Oct 2015 01:32:10 +0000 (01:32 +0000)]
counting packets in hif_packets in hfsc_if is redundant.

the ifqueue struct has the same information, and hif_packets is never
read separately. trim it.

9 years agotweak the vnetid so it can be optional and therefore cleared/deleted.
dlg [Fri, 23 Oct 2015 01:19:04 +0000 (01:19 +0000)]
tweak the vnetid so it can be optional and therefore cleared/deleted.

the abstract vnetid is promoted to a uin32_t, and adds a SIOCDVNETID
ioctl so it can be cleared.

this is all because i set an assignment on implementing a virtual
network interface and the students got confused when vnetid 0 didnt
show up in ifconfig output.

the vnetid in the vxlan(4) protocol is optional, but the current
code confuses 0 with no vnetid being set. this makes it clear.

ok reyk@ who also simplified my diff

9 years agoproto.h contains many function prototypes. It's apparently separate from
mmcc [Fri, 23 Oct 2015 01:14:07 +0000 (01:14 +0000)]
proto.h contains many function prototypes. It's apparently separate from
sh.h because the pdksh devs used a prototype generator (last run in
1992). Merging it into sh.h makes things clearer.

ok nicm@

9 years agoAdd 3 new pledge requests. "ps" exposes enough sysctl information for
deraadt [Fri, 23 Oct 2015 01:10:01 +0000 (01:10 +0000)]
Add 3 new pledge requests.  "ps" exposes enough sysctl information for
ps-style programs (there are quite a few in the tree, including tmux).
"vminfo" exposes a bit more system operation information, which many
observation programs want (such as top).  settime allows setting the system
time, and will be used to pledge-protect the last ntpd process.

9 years agoremove the pointer from hfsc_class structs back to hfsc_if.
dlg [Fri, 23 Oct 2015 01:02:46 +0000 (01:02 +0000)]
remove the pointer from hfsc_class structs back to hfsc_if.

you get to hfsc_class via a hfsc_if, so just pass the hfsc_if around
on the stack when we need it rather than following the pointer back.

most of this change is passing the hif on the stack.

ok mpi@ henning@

9 years agocorrect precedence; from Ilya Kaliman
deraadt [Fri, 23 Oct 2015 01:00:16 +0000 (01:00 +0000)]
correct precedence; from Ilya Kaliman

9 years agoAllow hw.ncpu sysctl (a few reasons showed up in my mailbox rapidly..)
deraadt [Fri, 23 Oct 2015 00:56:52 +0000 (00:56 +0000)]
Allow hw.ncpu sysctl (a few reasons showed up in my mailbox rapidly..)

9 years agocrank libc major
deraadt [Fri, 23 Oct 2015 00:53:13 +0000 (00:53 +0000)]
crank libc major

9 years agoRemove dnssocket() and dnsconnect(), since we decided to use a SOCK_DNS
deraadt [Fri, 23 Oct 2015 00:52:49 +0000 (00:52 +0000)]
Remove dnssocket() and dnsconnect(), since we decided to use a SOCK_DNS
flag instead.
ok guenther tedu semarie

9 years agoSwitch to using SOCK_DNS flag, rather than the dnssocket() and
deraadt [Fri, 23 Oct 2015 00:52:09 +0000 (00:52 +0000)]
Switch to using SOCK_DNS flag, rather than the dnssocket() and
dnssonnect() calls.  Be a bit careful crossing over this, need a kernel
no older than Monday.
ok guenther tedu semarie

9 years agoreplace pointer arithmetic and casts with offsetof
jsg [Fri, 23 Oct 2015 00:15:07 +0000 (00:15 +0000)]
replace pointer arithmetic and casts with offsetof
ok mpi@ bluhm@

9 years agoreplace pointer arithmetic and casts with offsetof
jsg [Fri, 23 Oct 2015 00:08:57 +0000 (00:08 +0000)]
replace pointer arithmetic and casts with offsetof
ok dlg@ krw@

9 years agoAdd pledge support to login_yubikey. Much feedback and OK millert@
bmercer [Thu, 22 Oct 2015 23:56:30 +0000 (23:56 +0000)]
Add pledge support to login_yubikey. Much feedback and OK millert@

9 years agoCast ctype function arguments to unsigned char.
mmcc [Thu, 22 Oct 2015 23:55:51 +0000 (23:55 +0000)]
Cast ctype function arguments to unsigned char.

ok guenther@

9 years agoFix some bugs in the handling of the RTM_GET and RTM_CHANGE messages
renato [Thu, 22 Oct 2015 23:17:45 +0000 (23:17 +0000)]
Fix some bugs in the handling of the RTM_GET and RTM_CHANGE messages
found when running eigrpd(8) and ldpd(8) together.

9 years agodocument tid keyword.
benno [Thu, 22 Oct 2015 22:21:41 +0000 (22:21 +0000)]
document tid keyword.
found with and ok bluhm@

9 years agouse the new function man_validate() here, too
schwarze [Thu, 22 Oct 2015 22:05:42 +0000 (22:05 +0000)]
use the new function man_validate() here, too

9 years agomove man(7) validation into the dedicated validation phase, too
schwarze [Thu, 22 Oct 2015 21:53:49 +0000 (21:53 +0000)]
move man(7) validation into the dedicated validation phase, too

9 years agoIf no output device was allocated because no file wanted to produce output,
schwarze [Thu, 22 Oct 2015 21:02:55 +0000 (21:02 +0000)]
If no output device was allocated because no file wanted to produce output,
refrain from dereferencing a NULL pointer during final deallocation.
Fixing a recent regression reported by czarkoff@

9 years agoBuild boot blocks with -msmall-data -msmall-text.
miod [Thu, 22 Oct 2015 18:54:41 +0000 (18:54 +0000)]
Build boot blocks with -msmall-data -msmall-text.

9 years agoDrop historical comment and an old '#if notyet'.
mpi [Thu, 22 Oct 2015 18:14:53 +0000 (18:14 +0000)]
Drop historical comment and an old '#if notyet'.

9 years agoKill link_rtrequest(), introduce in 1990 to "fix" the result
mpi [Thu, 22 Oct 2015 17:48:34 +0000 (17:48 +0000)]
Kill link_rtrequest(), introduce in 1990 to "fix" the result
of rt_getifa() when adding link level route from outside the
kernel.

ok claudio@

9 years agoUse only one refcounting mechanism for route entries.
mpi [Thu, 22 Oct 2015 17:19:38 +0000 (17:19 +0000)]
Use only one refcounting mechanism for route entries.

ok bluhm@, dlg@, claudio@

9 years agoOnly check for rt_ifp now that it is alays the same as rt_ifa->ifa_ifp.
mpi [Thu, 22 Oct 2015 16:49:26 +0000 (16:49 +0000)]
Only check for rt_ifp now that it is alays the same as rt_ifa->ifa_ifp.

ok millert@, bluhm@

9 years agoMake sure that the address matching the key (destination) of a route
mpi [Thu, 22 Oct 2015 16:44:54 +0000 (16:44 +0000)]
Make sure that the address matching the key (destination) of a route
entry is attached to this entry.

ok phessler@, bluhm@

9 years agoUse rt_ifp instead of rt_ifa->ifa_ifp.
mpi [Thu, 22 Oct 2015 16:33:32 +0000 (16:33 +0000)]
Use rt_ifp instead of rt_ifa->ifa_ifp.

ok bluhm@

9 years agoKill dead code, ifa is specified and won't change.
mpi [Thu, 22 Oct 2015 16:32:41 +0000 (16:32 +0000)]
Kill dead code, ifa is specified and won't change.

ok bluhm@

9 years agoiked hereby pledges that it will run with restricted system
reyk [Thu, 22 Oct 2015 15:55:18 +0000 (15:55 +0000)]
iked hereby pledges that it will run with restricted system
operations.  This adds pledge(2) too all processes, including the iked
parent process; the existing privsep design has been improved for
better pledgeability.  There haven't been any serious problems as it
was already sane (eg. by receiving the PFKEYv2 and UDP sockets via fd
passing).  The control socket moved to an independent process to
remove some abilities from the cert process.

Committed in agreement with many but nobody was brave enough to OK it.

Better testing will happen with having it in the tree.
"It's the truth" deraadt@
"Let's see what happens" benno@

9 years agoAdd a regress test for if_indextoname() and if_nametoindex()
claudio [Thu, 22 Oct 2015 15:47:00 +0000 (15:47 +0000)]
Add a regress test for if_indextoname() and if_nametoindex()

9 years agoAnother change that is needed to restore the previous behaviour of
jsing [Thu, 22 Oct 2015 15:38:05 +0000 (15:38 +0000)]
Another change that is needed to restore the previous behaviour of
ASN1_{GENERALIZED,UTC}TIME_set_string(), which allows it to be called
with a NULL pointer.

ok beck@

9 years agoInspired by satosin(), use inline functions to convert sockaddr dl.
bluhm [Thu, 22 Oct 2015 15:37:47 +0000 (15:37 +0000)]
Inspired by satosin(), use inline functions to convert sockaddr dl.
Instead of casts they check wether the incoming object has the
expected type.  So introduce satosdl() and sdltosa() in the kernel.
OK mpi@

9 years agoFinal removal of EXTERN.
mmcc [Thu, 22 Oct 2015 15:37:04 +0000 (15:37 +0000)]
Final removal of EXTERN.

ok nicm@

9 years agoStop linking iked -static: It was inherited from isakmpd that is
reyk [Thu, 22 Oct 2015 15:14:27 +0000 (15:14 +0000)]
Stop linking iked -static: It was inherited from isakmpd that is
-static for NFS-over-IPsec that might mount the libraries after /usr.
The benefit of linking iked dynamic outweighs the historic reason, eg.
to get full address space randomization and to benefit from libcrypto
updates, so we turn it into a dynamic binary.

OK deraadt@ naddy@

9 years agoRestore previous behaviour and allow
jsing [Thu, 22 Oct 2015 15:03:19 +0000 (15:03 +0000)]
Restore previous behaviour and allow
ASN1_{GENERALIZED,UTC,}TIME_set_string() to be called with a NULL pointer.

Found the hard way by @kinichiro on github.

ok beck@

9 years agoAdd pledge(2) to some binutils that handle untrusted data. Most can do with
pascal [Thu, 22 Oct 2015 14:53:00 +0000 (14:53 +0000)]
Add pledge(2) to some binutils that handle untrusted data.  Most can do with
"stdio rpath", while objdump(1) also needs "tmppath" for objdump -i.

ok deraadt@, comments sthen@ kettenis@

9 years agoExtend tests to call ASN1_{GENERALIZED,UTC,}TIME_set_string() with a NULL
jsing [Thu, 22 Oct 2015 14:10:55 +0000 (14:10 +0000)]
Extend tests to call ASN1_{GENERALIZED,UTC,}TIME_set_string() with a NULL
pointer - because, you know, you might want to set a string on a NULL
object. The previous implementation apparently allowed this as a way of
testing if the string was valid... probably because the *_check() functions
are only useable after the string has already been set.

9 years agoFix case where we wanted to test ASN1_TIME_set_string() but were testing
jsing [Thu, 22 Oct 2015 14:01:19 +0000 (14:01 +0000)]
Fix case where we wanted to test ASN1_TIME_set_string() but were testing
ASN1_UTCTIME_set_string() twice instead.

9 years agoFix case where we wanted to test ASN1_TIME_set_string() but were testing
jsing [Thu, 22 Oct 2015 13:58:47 +0000 (13:58 +0000)]
Fix case where we wanted to test ASN1_TIME_set_string() but were testing
ASN1_UTCTIME_set_string() twice instead.

9 years agoDo not pass an ``ia'' just to dereference ``ia_ifp''.
mpi [Thu, 22 Oct 2015 13:30:29 +0000 (13:30 +0000)]
Do not pass an ``ia'' just to dereference ``ia_ifp''.

ok claudio@, bluhm@, jsg@

9 years agoRevert revision 1.282:
reyk [Thu, 22 Oct 2015 13:30:07 +0000 (13:30 +0000)]
Revert revision 1.282:
"Allow for empty blocks for peers.  While this is bad style for permant
use, this is very nice to temporarily disable a peer option."

This broke the grammar by introducing shift/reduce errors.

OK phessler@

9 years agouse crypt_checkpass("password", NULL) to fake a login instead of bcrypt
tedu [Thu, 22 Oct 2015 12:55:23 +0000 (12:55 +0000)]
use crypt_checkpass("password", NULL) to fake a login instead of bcrypt

9 years agouse crypt_checkpass to check password
tedu [Thu, 22 Oct 2015 12:52:15 +0000 (12:52 +0000)]
use crypt_checkpass to check password

9 years agocopying of the environment can be done later, as the user running
tedu [Thu, 22 Oct 2015 12:43:26 +0000 (12:43 +0000)]
copying of the environment can be done later, as the user running

9 years agopledge "abort" left behind accidentally
deraadt [Thu, 22 Oct 2015 12:34:25 +0000 (12:34 +0000)]
pledge "abort" left behind accidentally

9 years agouse crypt_checkpass instead of doing things the hard way with crypt.
tedu [Thu, 22 Oct 2015 12:32:33 +0000 (12:32 +0000)]
use crypt_checkpass instead of doing things the hard way with crypt.

9 years agosetlocale() before pledge()... until we learn more
deraadt [Thu, 22 Oct 2015 12:09:03 +0000 (12:09 +0000)]
setlocale() before pledge()... until we learn more

9 years agoremove some horrible iwm typedefs
jsg [Thu, 22 Oct 2015 11:51:28 +0000 (11:51 +0000)]
remove some horrible iwm typedefs
ok stsp@

9 years agoIf the pane is still on all_window_panes but not actually connected to
nicm [Thu, 22 Oct 2015 11:23:00 +0000 (11:23 +0000)]
If the pane is still on all_window_panes but not actually connected to
window or session (which can happen if it is killed during a command
sequence and something else has a reference), fall back to the best
effort. Fixes "tmux killw\; detach" for Rudis Muiznieks.

9 years agoUnzoom before -LRUD, reported by Andy Weidenbaum.
nicm [Thu, 22 Oct 2015 11:19:31 +0000 (11:19 +0000)]
Unzoom before -LRUD, reported by Andy Weidenbaum.

9 years agoIf we receive an empty route message, log it and ignore it. Happens
phessler [Thu, 22 Oct 2015 11:13:16 +0000 (11:13 +0000)]
If we receive an empty route message, log it and ignore it.  Happens
occasionally on FreeBSD.

from Melissa Jenkins

OK claudio@, florian@, benno@

9 years agofix company name.
sobrado [Thu, 22 Oct 2015 11:03:43 +0000 (11:03 +0000)]
fix company name.

ok jmc@

9 years agofix spelling mess.
sobrado [Thu, 22 Oct 2015 11:03:15 +0000 (11:03 +0000)]
fix spelling mess.

ok jmc@

9 years agoimprove indentation in list block.
sobrado [Thu, 22 Oct 2015 11:02:48 +0000 (11:02 +0000)]
improve indentation in list block.

ok jmc@

9 years agofix typo in unit of time.
sobrado [Thu, 22 Oct 2015 11:01:49 +0000 (11:01 +0000)]
fix typo in unit of time.

ok jmc@

9 years agoFurther study shows "route" should allow all address families in NET_RT_DUMP
deraadt [Thu, 22 Oct 2015 11:01:43 +0000 (11:01 +0000)]
Further study shows "route" should allow all address families in NET_RT_DUMP
With benno

9 years agotypo.
sobrado [Thu, 22 Oct 2015 11:01:14 +0000 (11:01 +0000)]
typo.

ok jmc@

9 years agoLog identify messages.
nicm [Thu, 22 Oct 2015 11:00:51 +0000 (11:00 +0000)]
Log identify messages.

9 years agoThis should not be changed.
nicm [Thu, 22 Oct 2015 10:48:30 +0000 (10:48 +0000)]
This should not be changed.

9 years agoDo not dereference ``ifa_ifp'' when we already have an ``ifp'' pointer.
mpi [Thu, 22 Oct 2015 10:46:26 +0000 (10:46 +0000)]
Do not dereference ``ifa_ifp'' when we already have an ``ifp'' pointer.

9 years agoRename shutdown to exit.
nicm [Thu, 22 Oct 2015 10:46:24 +0000 (10:46 +0000)]
Rename shutdown to exit.

9 years agoThe eigrpe process also needs to pledge "cpath" for unlinking the
renato [Thu, 22 Oct 2015 10:42:14 +0000 (10:42 +0000)]
The eigrpe process also needs to pledge "cpath" for unlinking the
control socket.

9 years agoAfter some consideration, simply allow TIOCSCTTY in the "tty" pledge.
deraadt [Thu, 22 Oct 2015 10:35:23 +0000 (10:35 +0000)]
After some consideration, simply allow TIOCSCTTY in the "tty" pledge.
Discussion with nicm.

9 years agoDo not dereference ``ia_ifp'' when we already have an ``ifp'' pointer.
mpi [Thu, 22 Oct 2015 10:31:02 +0000 (10:31 +0000)]
Do not dereference ``ia_ifp'' when we already have an ``ifp'' pointer.

9 years agoUse rt_ifp as intended.
mpi [Thu, 22 Oct 2015 10:27:22 +0000 (10:27 +0000)]
Use rt_ifp as intended.

During s2k15 we fixed this ugly 20+ years loopback hack of having a
rt_ifp different than rt_ifa->ifa_ifp.

ok millert@, bluhm@

9 years agoKill dead code missed in per-ifp counter removal.
mpi [Thu, 22 Oct 2015 10:22:53 +0000 (10:22 +0000)]
Kill dead code missed in per-ifp counter removal.

ok millert@, bluhm@