// inet_sock information tapset
// Copyright (C) 2006 IBM Corp.
// Copyright (C) 2006 Intel Corporation.
-// Copyright (C) 2009 Red Hat, Inc.
+// Copyright (C) 2009-2010 Red Hat, Inc.
//
// This file is part of systemtap, and is free software. You can
// redistribute it and/or modify it under the terms of the GNU General
// return.
function inet_get_local_port:long(sock:long)
{
-%(kernel_v < "2.6.11" %?
- port = @cast(sock, "inet_sock", "kernel")->inet->num;
-%:
-%(kernel_v < "2.6.33" %?
- port = @cast(sock, "inet_sock", "kernel")->num;
-%:
- port = @cast(sock, "inet_sock", "kernel")->inet_num;
-%)
-%)
- return port;
+ return (@defined(@cast(sock, "inet_sock")->inet_num)
+ ? @cast(sock, "inet_sock")->inet_num # kernel >= 2.6.33
+ : (@defined(@cast(sock, "inet_sock")->num)
+ ? @cast(sock, "inet_sock", "kernel")->num # kernel >= 2.6.11
+ : @cast(sock, "inet_sock", "kernel<net/ip.h>")->inet->num))
}
// Get IP source address string given a pointer to a kernel socket.
function inet_get_ip_source:string(sock:long)
{
-%(kernel_v < "2.6.11" %?
- daddr = @cast(sock, "inet_sock", "kernel")->inet->daddr;
-%:
-%(kernel_v < "2.6.33" %?
- daddr = @cast(sock, "inet_sock", "kernel")->daddr;
-%:
- daddr = @cast(sock, "inet_sock", "kernel")->inet_daddr;
-%)
-%)
- return daddr_to_string(daddr);
+ return daddr_to_string(__ip_sock_daddr(sock));
}
// Turns a daddr as found in an inet_sock into a dotted ip string.