svn commit: r222829 - head/sys/kern
John Baldwin
jhb at FreeBSD.org
Tue Jun 7 17:40:34 UTC 2011
Author: jhb
Date: Tue Jun 7 17:40:33 2011
New Revision: 222829
URL: http://svn.freebsd.org/changeset/base/222829
Log:
Log the socket address passed as the destination to sendto() and sendmsg()
via ktrace.
MFC after: 1 week
Modified:
head/sys/kern/uipc_syscalls.c
Modified: head/sys/kern/uipc_syscalls.c
==============================================================================
--- head/sys/kern/uipc_syscalls.c Tue Jun 7 17:33:39 2011 (r222828)
+++ head/sys/kern/uipc_syscalls.c Tue Jun 7 17:40:33 2011 (r222829)
@@ -747,6 +747,10 @@ kern_sendit(td, s, mp, flags, control, s
return (error);
so = (struct socket *)fp->f_data;
+#ifdef KTRACE
+ if (mp->msg_name != NULL && KTRPOINT(td, KTR_STRUCT))
+ ktrsockaddr(mp->msg_name);
+#endif
#ifdef MAC
if (mp->msg_name != NULL) {
error = mac_socket_check_connect(td->td_ucred, so,
More information about the svn-src-head
mailing list