]> granicus.if.org Git - strace/commitdiff
tests: add test_printstrn function to libtests
authorDmitry V. Levin <ldv@altlinux.org>
Wed, 2 Aug 2017 00:44:28 +0000 (00:44 +0000)
committerDmitry V. Levin <ldv@altlinux.org>
Wed, 2 Aug 2017 00:44:28 +0000 (00:44 +0000)
* tests/test_ucopy.h (test_printstrn): New prototype.
* tests/test_printstrn.c: New file.
* tests/Makefile.am (libtests_a_SOURCES): Add it.

tests/Makefile.am
tests/test_printstrn.c [new file with mode: 0644]
tests/test_ucopy.h

index 60a6984445fc47e4e8d343bb06be70c338d5794a..77a96d057c3a5fd94d3d3b80eb13a7cb3814a3c6 100644 (file)
@@ -66,6 +66,7 @@ libtests_a_SOURCES = \
        test_netlink.h \
        test_nlattr.h \
        test_printpath.c \
+       test_printstrn.c \
        test_ucopy.c \
        test_ucopy.h \
        tests.h \
diff --git a/tests/test_printstrn.c b/tests/test_printstrn.c
new file mode 100644 (file)
index 0000000..bc9c775
--- /dev/null
@@ -0,0 +1,102 @@
+/*
+ * Test printstrn/umoven.
+ *
+ * Copyright (c) 2015-2017 Dmitry V. Levin <ldv@altlinux.org>
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ * 3. The name of the author may not be used to endorse or promote products
+ *    derived from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include "tests.h"
+
+#include <stdio.h>
+#include <string.h>
+#include <unistd.h>
+#include <asm/unistd.h>
+
+#include "scno.h"
+#include "test_ucopy.h"
+
+static const char *errstr;
+
+static void add_key(const char *addr, const unsigned int len)
+{
+       errstr = sprintrc(syscall(__NR_add_key, 0, 0, addr, len, -1));
+}
+
+static void
+test_printstrn_at(char *const p, const unsigned int test_max)
+{
+       unsigned int i;
+
+       for (i = 0; i <= test_max; ++i) {
+               add_key(p + (test_max - i), i);
+               printf("add_key(NULL, NULL, \"%.*s\", %u"
+                      ", KEY_SPEC_THREAD_KEYRING) = %s\n",
+                      (int) i, p + (test_max - i), i, errstr);
+       }
+}
+
+static void
+test_efault(const unsigned int test_max)
+{
+       char *p = tail_alloc(test_max);
+       memset(p, '/', test_max);
+       unsigned int i;
+
+       for (i = 0; i <= test_max; ++i) {
+               unsigned int j;
+               for (j = 1; j <= sizeof(long); ++j) {
+                       add_key(p + (test_max - i), i + j);
+                       printf("add_key(NULL, NULL, %p, %u"
+                              ", KEY_SPEC_THREAD_KEYRING) = %s\n",
+                              p + (test_max - i), i + j, errstr);
+               }
+       }
+}
+
+void
+test_printstrn(const unsigned int test_max)
+{
+       /*
+        * abcdefgh|
+        * abcdefg|h
+        * abcdef|gh
+        * abcde|fgh
+        * abcd|efgh
+        * abc|defgh
+        * ab|cdefgh
+        * a|bcdefgh
+        * |abcdefgh
+        */
+       const unsigned int page_size = get_page_size();
+       char *p = tail_alloc(test_max + page_size);
+       fill_memory_ex(p, test_max + page_size, 'a', 'z' - 'a' + 1);
+
+       unsigned int i;
+       for (i = 1; i <= sizeof(long); ++i)
+               test_printstrn_at(p + i, test_max);
+       for (i = 0; i < sizeof(long); ++i)
+               test_printstrn_at(p + page_size - i, test_max);
+       test_efault(test_max);
+}
index 4003bbb02b72b5a08c6f3843c44fbae1bc4ed861..30d1c11d75014beeb7eef7d9133db26e29e085dd 100644 (file)
@@ -8,3 +8,6 @@ test_ptrace_peekdata(void);
 
 extern void
 test_printpath(unsigned int test_max_size);
+
+extern void
+test_printstrn(unsigned int test_max_size);