Author: jhb
Date: Tue Jun 14 18:56:45 2011
New Revision: 223094
URL: http://svn.freebsd.org/changeset/base/223094

Log:
  MFC 222829:
  Log the socket address passed as the destination to sendto() and sendmsg()
  via ktrace.

Modified:
  stable/8/sys/kern/uipc_syscalls.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)

Modified: stable/8/sys/kern/uipc_syscalls.c
==============================================================================
--- stable/8/sys/kern/uipc_syscalls.c   Tue Jun 14 18:54:42 2011        
(r223093)
+++ stable/8/sys/kern/uipc_syscalls.c   Tue Jun 14 18:56:45 2011        
(r223094)
@@ -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,
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[email protected]"

Reply via email to