diff options
author | jistone <jistone> | 2007-02-07 02:54:30 +0000 |
---|---|---|
committer | jistone <jistone> | 2007-02-07 02:54:30 +0000 |
commit | b8772cce090adb3d27cdd8b49d236662b526424e (patch) | |
tree | f216b71b2bea50d0bd95c9d22956a07e0b6fa49c /tapset/tcp.stp | |
parent | 3b4136ca14c78881c50e8c36fa35fa574edaabb4 (diff) | |
download | systemtap-steved-b8772cce090adb3d27cdd8b49d236662b526424e.tar.gz systemtap-steved-b8772cce090adb3d27cdd8b49d236662b526424e.tar.xz systemtap-steved-b8772cce090adb3d27cdd8b49d236662b526424e.zip |
2007-02-06 Josh Stone <joshua.i.stone@intel.com>
* aux_syscalls.stp, inet_sock.stp, ioblock.stp, ioscheduler.stp,
nfs.stp, nfs_proc.stp, nfsd.stp, rpc.stp, scsi.stp, signal.stp,
socket.stp, task.stp, tcp.stp, vfs.stp: Protect pointer dereferences
with kread wherever possible. Some places still have hazards, as
marked with FIXMEs.
* errno.stp (returnstr): Don't use return in tapset C functions.
* aux_syscalls.stp (__uget_timex_m): Ditto.
* nfsd.stp (__get_fh): Ditto.
* nfs.stp, vfs.stp (<many functions>): Ditto.
* string.stp (substr): Ditto. Also make sure start index is valid.
* syscalls.stp (syscall.execve): Change __string to kernel_string.
LKET/
* nfs.stp, nfs_proc.stp, nfsd.stp, process.stp, tskdispatch.stp:
Protect pointer dereferences with kread wherever possible. Some
places still have hazards, as marked with FIXMEs.
* aio.stp (log_io_getevents): Don't use return in tapset C functions.
* timestamp.stp (set_timing_method): Ditto.
* utils.stp (filter_by_pid): Ditto.
Diffstat (limited to 'tapset/tcp.stp')
-rw-r--r-- | tapset/tcp.stp | 48 |
1 files changed, 25 insertions, 23 deletions
diff --git a/tapset/tcp.stp b/tapset/tcp.stp index 01adad77..b09c74cb 100644 --- a/tapset/tcp.stp +++ b/tapset/tcp.stp @@ -20,14 +20,15 @@ // timeout (TCP_RTO_MAX) function tcp_get_info_rto:long(sock:long) %{ - unsigned long ptr = (unsigned long) THIS->sock; + struct sock *sk = (struct sock *)(long) THIS->sock; #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,10) - struct tcp_opt *tp = tcp_sk((struct sock *)ptr); - THIS->__retvalue = (int64_t) jiffies_to_usecs(tp->rto); + struct tcp_opt *tp = tcp_sk(sk); + THIS->__retvalue = (int64_t) jiffies_to_usecs(kread(&(tp->rto))); #else - const struct inet_connection_sock *icsk = inet_csk((struct sock *)ptr); - THIS->__retvalue = (int64_t) jiffies_to_usecs(icsk->icsk_rto); + const struct inet_connection_sock *icsk = inet_csk(sk); + THIS->__retvalue = (int64_t) jiffies_to_usecs(kread(&(icsk->icsk_rto))); #endif + CATCH_DEREF_FAULT(); %} //Get congestion window segment size. Initial value of congestion window size @@ -36,13 +37,14 @@ function tcp_get_info_rto:long(sock:long) //is performing slow start or congestion avoidance. function tcp_get_info_snd_cwnd:long(sock:long) %{ - unsigned long ptr = (unsigned long) THIS->sock; + struct sock *sk = (struct sock *)(long) THIS->sock; #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,10) - struct tcp_opt *tp = tcp_sk((struct sock *)ptr); + struct tcp_opt *tp = tcp_sk(sk); #else - struct tcp_sock *tp = tcp_sk((struct sock *)ptr); + struct tcp_sock *tp = tcp_sk(sk); #endif - THIS->__retvalue = (int64_t) tp->snd_cwnd; + THIS->__retvalue = (int64_t) kread(&(tp->snd_cwnd)); + CATCH_DEREF_FAULT(); %} // @@ -63,10 +65,9 @@ function tcp_get_info_snd_cwnd:long(sock:long) // function tcp_ts_get_info_state:long(sock:long) %{ - unsigned long ptr = (unsigned long) THIS->sock; - struct sock * sk = (struct sock *) ptr; - - THIS->__retvalue = (int64_t) sk->sk_state; + struct sock *sk = (struct sock *)(long) THIS->sock; + THIS->__retvalue = (int64_t) kread(&(sk->sk_state)); + CATCH_DEREF_FAULT(); %} @@ -75,28 +76,29 @@ function tcp_ts_get_info_state:long(sock:long) // avoidance. function tcp_ts_get_info_snd_ssthresh:long(sock:long) %{ - unsigned long ptr = (unsigned long) THIS->sock; + struct sock *sk = (struct sock *)(long) THIS->sock; #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,10) - struct tcp_opt *tp = tcp_sk((struct sock *)ptr); + struct tcp_opt *tp = tcp_sk(sk); #else - struct tcp_sock *tp = tcp_sk((struct sock *)ptr); + struct tcp_sock *tp = tcp_sk(sk); #endif - - THIS->__retvalue = (int64_t) tp->snd_ssthresh; + THIS->__retvalue = (int64_t) kread(&(tp->snd_ssthresh)); + CATCH_DEREF_FAULT(); %} // Get receiver's advertised segment size. TCP typically never sends more // than what receiver can accept. function tcp_ts_get_info_rcv_mss:long(sock:long) %{ - unsigned long ptr = (unsigned long) THIS->sock; + struct sock *sk = (struct sock *)(long) THIS->sock; #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,10) - struct tcp_opt *tp = tcp_sk((struct sock *)ptr); - THIS->__retvalue = (int64_t) tp->ack.rcv_mss; + struct tcp_opt *tp = tcp_sk(sk); + THIS->__retvalue = (int64_t) kread(&(tp->ack.rcv_mss)); #else - const struct inet_connection_sock *icsk = inet_csk((struct sock *)ptr); - THIS->__retvalue = (int64_t) icsk->icsk_ack.rcv_mss; + const struct inet_connection_sock *icsk = inet_csk(sk); + THIS->__retvalue = (int64_t) kread(&(icsk->icsk_ack.rcv_mss)); #endif + CATCH_DEREF_FAULT(); %} // probe tcp.sendmsg |