summaryrefslogtreecommitdiffstats
path: root/testsuite
diff options
context:
space:
mode:
authorJosh Stone <jistone@redhat.com>2010-02-04 17:44:59 -0800
committerJosh Stone <jistone@redhat.com>2010-02-04 17:44:59 -0800
commit463d666cc53a2f9d2df0f68310d6575ccae42bfe (patch)
treee23c567c3b94aafd3eadeac8bbc8d43d309ba236 /testsuite
parent6462165c7a381c3eac8b097647122905f561e5a5 (diff)
downloadsystemtap-steved-463d666cc53a2f9d2df0f68310d6575ccae42bfe.tar.gz
systemtap-steved-463d666cc53a2f9d2df0f68310d6575ccae42bfe.tar.xz
systemtap-steved-463d666cc53a2f9d2df0f68310d6575ccae42bfe.zip
Revert "PR11234: Ensure __get_argv doesn't overflow"
This reverts commit f75409719f120a3dbee66d761cf23a64092d1414.
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/systemtap.base/overflow-get_argv.exp5
-rw-r--r--testsuite/systemtap.base/overflow-get_argv.stp62
2 files changed, 0 insertions, 67 deletions
diff --git a/testsuite/systemtap.base/overflow-get_argv.exp b/testsuite/systemtap.base/overflow-get_argv.exp
deleted file mode 100644
index ac7fddc5..00000000
--- a/testsuite/systemtap.base/overflow-get_argv.exp
+++ /dev/null
@@ -1,5 +0,0 @@
-# PR11234: __get_argv can overflow its return buffer
-
-set test "overflow-get_argv"
-
-stap_run $srcdir/$subdir/$test.stp no_load $all_pass_string -g -c "/bin/true /usr/bin/*"
diff --git a/testsuite/systemtap.base/overflow-get_argv.stp b/testsuite/systemtap.base/overflow-get_argv.stp
deleted file mode 100644
index 159ef4a8..00000000
--- a/testsuite/systemtap.base/overflow-get_argv.stp
+++ /dev/null
@@ -1,62 +0,0 @@
-// PR11234: __get_argv can overflow its return buffer
-
-// __get_argv has a signature like this:
-// struct function___get_argv_locals {
-// int64_t a;
-// int64_t first;
-// string_t __retvalue;
-// } function___get_argv;
-//
-// These functions are meant to have an overlap such that we can tell if
-// __get_argv overran its __retvalue.
-//
-// int64_t x;
-// int64_t y;
-// string_t z;
-// string_t __retvalue;
-//
-// NB: __retvalue[0] always gets cleared on call, but the rest should be
-// untouched, so we can use it as a sentinal.
-
-function clear:string(x:long, y:long, z:string) %{
- memset(THIS->__retvalue, 0, MAXSTRINGLEN);
-%}
-
-function check:string(x:long, y:long, z:string) %{
- int i, bad = 0;
- for (i=1; i<MAXSTRINGLEN; ++i)
- if (THIS->__retvalue[i])
- ++bad;
-
- if (bad)
- snprintf(THIS->__retvalue, MAXSTRINGLEN, "%d non-zero bytes", bad);
- else
- strlcpy(THIS->__retvalue, "ok", MAXSTRINGLEN);
-%}
-
-global result = "untested"
-
-probe syscall.execve {
- if (pid() != target())
- next
-
- clear(0, 0, "")
- foo = __get_argv($argv, 0)
- result = check(0, 0, "")
-
- // ensure that foo isn't optimized away
- if (foo == "foo")
- next
-}
-
-probe begin {
- println("systemtap starting probe")
-}
-
-probe end {
- println("systemtap ending probe")
- if (result == "ok")
- println("systemtap test success")
- else
- println("systemtap test failure: ", result)
-}