parent
81bc813128
commit
2f078e757b
@ -1,122 +0,0 @@
|
||||
Index: strace-5.1/evdev.c
|
||||
===================================================================
|
||||
--- strace-5.1.orig/evdev.c 2018-12-30 16:35:21.000000000 +0100
|
||||
+++ strace-5.1/evdev.c 2019-06-13 23:40:59.136316390 +0200
|
||||
@@ -151,25 +151,36 @@
|
||||
tprints(", ");
|
||||
|
||||
unsigned int size;
|
||||
- if ((kernel_ulong_t) tcp->u_rval > max_nr / 8)
|
||||
- size = max_nr;
|
||||
+ unsigned int size_bits;
|
||||
+
|
||||
+ if ((kernel_ulong_t) tcp->u_rval > max_nr / CHAR_BIT)
|
||||
+ size_bits = max_nr;
|
||||
else
|
||||
- size = tcp->u_rval * 8;
|
||||
+ size_bits = tcp->u_rval * CHAR_BIT;
|
||||
+
|
||||
+ size = ROUNDUP(ROUNDUP_DIV(size_bits, CHAR_BIT), current_wordsize);
|
||||
+
|
||||
+ if (syserror(tcp) || !size) {
|
||||
+ printaddr(arg);
|
||||
+
|
||||
+ return RVAL_IOCTL_DECODED;
|
||||
+ }
|
||||
+
|
||||
char decoded_arg[size];
|
||||
|
||||
- if (umove_or_printaddr(tcp, arg, &decoded_arg))
|
||||
+ if (umoven_or_printaddr(tcp, arg, size, decoded_arg))
|
||||
return RVAL_IOCTL_DECODED;
|
||||
|
||||
tprints("[");
|
||||
|
||||
int bit_displayed = 0;
|
||||
- int i = next_set_bit(decoded_arg, 0, size);
|
||||
+ int i = next_set_bit(decoded_arg, 0, size_bits);
|
||||
if (i < 0) {
|
||||
tprints(" 0 ");
|
||||
} else {
|
||||
printxval_dispatch(decode_nr, decode_nr_size, i, dflt, xt);
|
||||
|
||||
- while ((i = next_set_bit(decoded_arg, i + 1, size)) > 0) {
|
||||
+ while ((i = next_set_bit(decoded_arg, i + 1, size_bits)) > 0) {
|
||||
if (abbrev(tcp) && bit_displayed >= 3) {
|
||||
tprints(", ...");
|
||||
break;
|
||||
Index: strace-5.1/tests-m32/ioctl_evdev-success.c
|
||||
===================================================================
|
||||
--- strace-5.1.orig/tests-m32/ioctl_evdev-success.c 2018-12-25 00:46:43.000000000 +0100
|
||||
+++ strace-5.1/tests-m32/ioctl_evdev-success.c 2019-06-13 22:24:38.738650209 +0200
|
||||
@@ -191,17 +191,17 @@
|
||||
# endif
|
||||
|
||||
/* set more than 4 bits */
|
||||
- unsigned long ev_more[] = { 1 << EV_ABS | 1 << EV_MSC | 1 << EV_LED | 1 << EV_SND | 1 << EV_PWR };
|
||||
+ unsigned long ev_more[] = { 1 << EV_ABS | 1 << EV_MSC | 1 << EV_LED | 1 << EV_SND | 1 << EV_PWR, 0 };
|
||||
/* we use the first element to indicate the number of set bits */
|
||||
/* ev_more_str[0] is "5" so the number of set bits is 5 */
|
||||
const char *ev_more_str[] = { "5", "EV_ABS", "EV_MSC", "EV_LED", "EV_SND", "EV_PWR" };
|
||||
|
||||
/* set less than 4 bits */
|
||||
- unsigned long ev_less[] = { 1 << EV_ABS | 1 << EV_MSC | 1 << EV_LED };
|
||||
+ unsigned long ev_less[] = { 1 << EV_ABS | 1 << EV_MSC | 1 << EV_LED, 0 };
|
||||
const char *ev_less_str[] = { "3", "EV_ABS", "EV_MSC", "EV_LED" };
|
||||
|
||||
/* set zero bit */
|
||||
- unsigned long ev_zero[] = { 0x0 };
|
||||
+ unsigned long ev_zero[] = { 0x0, 0 };
|
||||
const char *ev_zero_str[] = { "0", " 0 " };
|
||||
|
||||
/* KEY_MAX is 0x2ff which is greater than retval * 8 */
|
||||
Index: strace-5.1/tests-mx32/ioctl_evdev-success.c
|
||||
===================================================================
|
||||
--- strace-5.1.orig/tests-mx32/ioctl_evdev-success.c 2018-12-25 00:46:43.000000000 +0100
|
||||
+++ strace-5.1/tests-mx32/ioctl_evdev-success.c 2019-06-13 22:24:58.239273608 +0200
|
||||
@@ -191,17 +191,17 @@
|
||||
# endif
|
||||
|
||||
/* set more than 4 bits */
|
||||
- unsigned long ev_more[] = { 1 << EV_ABS | 1 << EV_MSC | 1 << EV_LED | 1 << EV_SND | 1 << EV_PWR };
|
||||
+ unsigned long ev_more[] = { 1 << EV_ABS | 1 << EV_MSC | 1 << EV_LED | 1 << EV_SND | 1 << EV_PWR, 0 };
|
||||
/* we use the first element to indicate the number of set bits */
|
||||
/* ev_more_str[0] is "5" so the number of set bits is 5 */
|
||||
const char *ev_more_str[] = { "5", "EV_ABS", "EV_MSC", "EV_LED", "EV_SND", "EV_PWR" };
|
||||
|
||||
/* set less than 4 bits */
|
||||
- unsigned long ev_less[] = { 1 << EV_ABS | 1 << EV_MSC | 1 << EV_LED };
|
||||
+ unsigned long ev_less[] = { 1 << EV_ABS | 1 << EV_MSC | 1 << EV_LED, 0 };
|
||||
const char *ev_less_str[] = { "3", "EV_ABS", "EV_MSC", "EV_LED" };
|
||||
|
||||
/* set zero bit */
|
||||
- unsigned long ev_zero[] = { 0x0 };
|
||||
+ unsigned long ev_zero[] = { 0x0, 0 };
|
||||
const char *ev_zero_str[] = { "0", " 0 " };
|
||||
|
||||
/* KEY_MAX is 0x2ff which is greater than retval * 8 */
|
||||
Index: strace-5.1/tests/ioctl_evdev-success.c
|
||||
===================================================================
|
||||
--- strace-5.1.orig/tests/ioctl_evdev-success.c 2019-06-13 22:23:53.864516831 +0200
|
||||
+++ strace-5.1/tests/ioctl_evdev-success.c 2019-06-13 22:24:19.210027351 +0200
|
||||
@@ -191,17 +191,17 @@
|
||||
# endif
|
||||
|
||||
/* set more than 4 bits */
|
||||
- unsigned long ev_more[] = { 1 << EV_ABS | 1 << EV_MSC | 1 << EV_LED | 1 << EV_SND | 1 << EV_PWR };
|
||||
+ unsigned long ev_more[] = { 1 << EV_ABS | 1 << EV_MSC | 1 << EV_LED | 1 << EV_SND | 1 << EV_PWR, 0 };
|
||||
/* we use the first element to indicate the number of set bits */
|
||||
/* ev_more_str[0] is "5" so the number of set bits is 5 */
|
||||
const char *ev_more_str[] = { "5", "EV_ABS", "EV_MSC", "EV_LED", "EV_SND", "EV_PWR" };
|
||||
|
||||
/* set less than 4 bits */
|
||||
- unsigned long ev_less[] = { 1 << EV_ABS | 1 << EV_MSC | 1 << EV_LED };
|
||||
+ unsigned long ev_less[] = { 1 << EV_ABS | 1 << EV_MSC | 1 << EV_LED, 0 };
|
||||
const char *ev_less_str[] = { "3", "EV_ABS", "EV_MSC", "EV_LED" };
|
||||
|
||||
/* set zero bit */
|
||||
- unsigned long ev_zero[] = { 0x0 };
|
||||
+ unsigned long ev_zero[] = { 0x0, 0 };
|
||||
const char *ev_zero_str[] = { "0", " 0 " };
|
||||
|
||||
/* KEY_MAX is 0x2ff which is greater than retval * 8 */
|
@ -0,0 +1,42 @@
|
||||
From 7ada13f3a40e2f58aea335cf910666378e7dd99a Mon Sep 17 00:00:00 2001
|
||||
From: Eugene Syromyatnikov <evgsyr@gmail.com>
|
||||
Date: Fri, 12 Jul 2019 14:38:33 +0200
|
||||
Subject: [PATCH 1/3] evdev: avoid bit vector decoding on non-successful and 0
|
||||
return codes
|
||||
|
||||
Reported by Clang.
|
||||
|
||||
strace/evdev.c:157:3: note: The value 0 is assigned to 'size'
|
||||
# size = tcp->u_rval * 8;
|
||||
# ^~~~~~~~~~~~~~~~~~~~~~
|
||||
strace/evdev.c:158:2: warning: Declared variable-length array (VLA)
|
||||
has zero size
|
||||
# char decoded_arg[size];
|
||||
# ^
|
||||
|
||||
* evdev.c (decode_bitset_): Bail out before decoded_arg VLA definition.
|
||||
---
|
||||
evdev.c | 7 +++++++
|
||||
1 file changed, 7 insertions(+)
|
||||
|
||||
diff --git a/evdev.c b/evdev.c
|
||||
index e402d26e..4b811cf8 100644
|
||||
--- a/evdev.c
|
||||
+++ b/evdev.c
|
||||
@@ -155,6 +155,13 @@ decode_bitset_(struct tcb *const tcp, const kernel_ulong_t arg,
|
||||
size = max_nr;
|
||||
else
|
||||
size = tcp->u_rval * 8;
|
||||
+
|
||||
+ if (syserror(tcp) || !size) {
|
||||
+ printaddr(arg);
|
||||
+
|
||||
+ return RVAL_IOCTL_DECODED;
|
||||
+ }
|
||||
+
|
||||
char decoded_arg[size];
|
||||
|
||||
if (umove_or_printaddr(tcp, arg, &decoded_arg))
|
||||
--
|
||||
2.13.6
|
||||
|
@ -0,0 +1,57 @@
|
||||
From 96194ed74158f0b9976fae43a910ad14eaea141e Mon Sep 17 00:00:00 2001
|
||||
From: Eugene Syromyatnikov <evgsyr@gmail.com>
|
||||
Date: Fri, 12 Jul 2019 14:57:28 +0200
|
||||
Subject: [PATCH 2/3] evdev: fix array size calculation in decode_bitset_
|
||||
|
||||
max_nr is in bits (as it is a number of flags), result is in bytes, and
|
||||
the array allocation has to be in personality words.
|
||||
|
||||
There's still an open question, however, what to do on big-endian
|
||||
architectures when a non-divisible-by-4 value is returned.
|
||||
|
||||
* evdev.c (decode_bitset_): Declare size_bits, initialise it and use it
|
||||
later instead of size; round up size by personality's word boundary.
|
||||
---
|
||||
evdev.c | 12 ++++++++----
|
||||
1 file changed, 8 insertions(+), 4 deletions(-)
|
||||
|
||||
diff --git a/evdev.c b/evdev.c
|
||||
index 4b811cf8..a3d9cb55 100644
|
||||
--- a/evdev.c
|
||||
+++ b/evdev.c
|
||||
@@ -151,10 +151,14 @@ decode_bitset_(struct tcb *const tcp, const kernel_ulong_t arg,
|
||||
tprints(", ");
|
||||
|
||||
unsigned int size;
|
||||
+ unsigned int size_bits;
|
||||
+
|
||||
if ((kernel_ulong_t) tcp->u_rval > max_nr / 8)
|
||||
- size = max_nr;
|
||||
+ size_bits = max_nr;
|
||||
else
|
||||
- size = tcp->u_rval * 8;
|
||||
+ size_bits = tcp->u_rval * 8;
|
||||
+
|
||||
+ size = ROUNDUP(ROUNDUP_DIV(size_bits, 8), current_wordsize);
|
||||
|
||||
if (syserror(tcp) || !size) {
|
||||
printaddr(arg);
|
||||
@@ -170,13 +174,13 @@ decode_bitset_(struct tcb *const tcp, const kernel_ulong_t arg,
|
||||
tprints("[");
|
||||
|
||||
int bit_displayed = 0;
|
||||
- int i = next_set_bit(decoded_arg, 0, size);
|
||||
+ int i = next_set_bit(decoded_arg, 0, size_bits);
|
||||
if (i < 0) {
|
||||
tprints(" 0 ");
|
||||
} else {
|
||||
printxval_dispatch(decode_nr, decode_nr_size, i, dflt, xt);
|
||||
|
||||
- while ((i = next_set_bit(decoded_arg, i + 1, size)) > 0) {
|
||||
+ while ((i = next_set_bit(decoded_arg, i + 1, size_bits)) > 0) {
|
||||
if (abbrev(tcp) && bit_displayed >= 3) {
|
||||
tprints(", ...");
|
||||
break;
|
||||
--
|
||||
2.13.6
|
||||
|
@ -0,0 +1,795 @@
|
||||
From cdd8206af74fcb961f0179e21eacf5d55d23f0ac Mon Sep 17 00:00:00 2001
|
||||
From: Eugene Syromyatnikov <evgsyr@gmail.com>
|
||||
Date: Fri, 12 Jul 2019 14:31:44 +0200
|
||||
Subject: [PATCH 3/3] tests: test evdev bitset decoding more thoroughly
|
||||
|
||||
* tests/ioctl_evdev-success-v.test: Inject various values.
|
||||
* tests/ioctl_evdev-success.test: Likewise.
|
||||
* tests/ioctl_evdev-success.c (NUM_WORDS): New macro.
|
||||
(struct evdev_check): Constify arg_ptr and print_arg args.
|
||||
(invoke_test_syscall, test_evdev, print_input_absinfo, print_input_id,
|
||||
print_mtslots): Add const qualifiers.
|
||||
(print_getbit): Add const qualifiers, rewrite to expect trailing NULL
|
||||
in the string array instead of leading string count.
|
||||
(main): Set size for ev_more, ev_less, ev_zero arrays; replace leading
|
||||
count element in ev_more_str, ev_less_str, ev_zero_str with trailing
|
||||
NULL; replace ev_more_str and ev_less_str with ev_more_str_2/ev_less_str_2
|
||||
and ev_more_str_3/ev_less_str_3 that differ by presence of flags that reside
|
||||
beyond first two bytes; add static and const qualifiers where possible;
|
||||
add key/key_sts_8/key_str_16 values; update a to provide either ev_more_str_2
|
||||
or ev_more_str_3 and either key_str_8 or key_str_16 depending on inject_retval
|
||||
value.
|
||||
---
|
||||
tests/ioctl_evdev-success-v.test | 15 +++---
|
||||
tests/ioctl_evdev-success.c | 100 ++++++++++++++++++++++++++-------------
|
||||
tests/ioctl_evdev-success.test | 15 +++---
|
||||
3 files changed, 84 insertions(+), 46 deletions(-)
|
||||
|
||||
Index: strace-4.24/tests/ioctl_evdev-success-v.test
|
||||
===================================================================
|
||||
--- strace-4.24.orig/tests/ioctl_evdev-success-v.test 2019-08-01 18:40:58.009521546 +0200
|
||||
+++ strace-4.24/tests/ioctl_evdev-success-v.test 2019-08-01 19:21:32.297062218 +0200
|
||||
@@ -3,11 +3,14 @@
|
||||
. "${srcdir=.}/scno_tampering.sh"
|
||||
|
||||
: ${IOCTL_INJECT_START=256}
|
||||
-: ${IOCTL_INJECT_RETVAL=8}
|
||||
|
||||
run_prog
|
||||
-run_strace -a16 -v -e trace=ioctl \
|
||||
- -e inject=ioctl:retval="${IOCTL_INJECT_RETVAL}":when="${IOCTL_INJECT_START}+" \
|
||||
- ../ioctl_evdev-success-v "${IOCTL_INJECT_START}" "${IOCTL_INJECT_RETVAL}"> "$EXP"
|
||||
-grep -v '^ioctl([012][,<]' < "$LOG" > "$OUT"
|
||||
-match_diff "$OUT" "$EXP"
|
||||
+
|
||||
+for ret in 0 2 8 15 16; do
|
||||
+ run_strace -a16 -v -e trace=ioctl \
|
||||
+ -e inject=ioctl:retval="${ret}":when="${IOCTL_INJECT_START}+" \
|
||||
+ ../ioctl_evdev-success-v \
|
||||
+ "${IOCTL_INJECT_START}" "${ret}"> "$EXP.$ret"
|
||||
+ grep -v '^ioctl([012][,<]' < "$LOG" > "$OUT.$ret"
|
||||
+ match_diff "$OUT.$ret" "$EXP.$ret"
|
||||
+done
|
||||
Index: strace-4.24/tests/ioctl_evdev-success.c
|
||||
===================================================================
|
||||
--- strace-4.24.orig/tests/ioctl_evdev-success.c 2019-08-01 18:40:58.009521546 +0200
|
||||
+++ strace-4.24/tests/ioctl_evdev-success.c 2019-08-01 19:21:32.297062218 +0200
|
||||
@@ -2,6 +2,7 @@
|
||||
|
||||
#ifdef HAVE_LINUX_INPUT_H
|
||||
|
||||
+# include <assert.h>
|
||||
# include <inttypes.h>
|
||||
# include <stdio.h>
|
||||
# include <stdlib.h>
|
||||
@@ -9,17 +10,19 @@
|
||||
# include <linux/input.h>
|
||||
# include "print_fields.h"
|
||||
|
||||
+# define NUM_WORDS 4
|
||||
+
|
||||
static const char *errstr;
|
||||
|
||||
struct evdev_check {
|
||||
unsigned long cmd;
|
||||
const char *cmd_str;
|
||||
- void *arg_ptr;
|
||||
- void (*print_arg)(long rc, void *ptr, void *arg);
|
||||
+ const void *arg_ptr;
|
||||
+ void (*print_arg)(long rc, const void *ptr, const void *arg);
|
||||
};
|
||||
|
||||
static long
|
||||
-invoke_test_syscall(unsigned long cmd, void *p)
|
||||
+invoke_test_syscall(unsigned long cmd, const void *p)
|
||||
{
|
||||
long rc = ioctl(-1, cmd, p);
|
||||
errstr = sprintrc(rc);
|
||||
@@ -31,7 +34,7 @@
|
||||
}
|
||||
|
||||
static void
|
||||
-test_evdev(struct evdev_check *check, void *arg)
|
||||
+test_evdev(struct evdev_check *check, const void *arg)
|
||||
{
|
||||
long rc = invoke_test_syscall(check->cmd, check->arg_ptr);
|
||||
printf("ioctl(-1, %s, ", check->cmd_str);
|
||||
@@ -43,9 +46,9 @@
|
||||
}
|
||||
|
||||
static void
|
||||
-print_input_absinfo(long rc, void *ptr, void *arg)
|
||||
+print_input_absinfo(long rc, const void *ptr, const void *arg)
|
||||
{
|
||||
- struct input_absinfo *absinfo = ptr;
|
||||
+ const struct input_absinfo *absinfo = ptr;
|
||||
|
||||
if (rc < 0) {
|
||||
printf("%p", absinfo);
|
||||
@@ -67,9 +70,9 @@
|
||||
}
|
||||
|
||||
static void
|
||||
-print_input_id(long rc, void *ptr, void *arg)
|
||||
+print_input_id(long rc, const void *ptr, const void *arg)
|
||||
{
|
||||
- struct input_id *id = ptr;
|
||||
+ const struct input_id *id = ptr;
|
||||
|
||||
if (rc < 0) {
|
||||
printf("%p", id);
|
||||
@@ -84,10 +87,10 @@
|
||||
|
||||
# ifdef EVIOCGMTSLOTS
|
||||
static void
|
||||
-print_mtslots(long rc, void *ptr, void *arg)
|
||||
+print_mtslots(long rc, const void *ptr, const void *arg)
|
||||
{
|
||||
- int *buffer = ptr;
|
||||
- const char **str = arg;
|
||||
+ const int *buffer = ptr;
|
||||
+ const char * const * str = arg;
|
||||
int num = atoi(*(str + 1));
|
||||
|
||||
if (rc < 0) {
|
||||
@@ -104,27 +107,26 @@
|
||||
# endif
|
||||
|
||||
static void
|
||||
-print_getbit(long rc, void *ptr, void *arg)
|
||||
+print_getbit(long rc, const void *ptr, const void *arg)
|
||||
{
|
||||
- const char **str = arg;
|
||||
- int num = atoi(*str);
|
||||
+ const char * const *str = arg;
|
||||
|
||||
- if (rc < 0) {
|
||||
+ if (rc <= 0) {
|
||||
printf("%p", ptr);
|
||||
return;
|
||||
}
|
||||
|
||||
printf("[");
|
||||
- printf("%s", *(str + 1));
|
||||
- for (unsigned int i = 2; i <= (unsigned) num; i++) {
|
||||
+ for (unsigned long i = 0; str[i]; i++) {
|
||||
# if ! VERBOSE
|
||||
- if (i > 4) {
|
||||
+ if (i >= 4) {
|
||||
printf(", ...");
|
||||
break;
|
||||
}
|
||||
# endif
|
||||
- printf(", ");
|
||||
- printf("%s", *(str + i));
|
||||
+ if (i)
|
||||
+ printf(", ");
|
||||
+ printf("%s", str[i]);
|
||||
}
|
||||
printf("]");
|
||||
}
|
||||
@@ -170,6 +172,7 @@
|
||||
TAIL_ALLOC_OBJECT_CONST_PTR(struct input_id, id);
|
||||
TAIL_ALLOC_OBJECT_CONST_PTR(struct input_absinfo, absinfo);
|
||||
TAIL_ALLOC_OBJECT_CONST_PTR(int, bad_addr_slot);
|
||||
+
|
||||
# ifdef EVIOCGMTSLOTS
|
||||
int mtslots[] = { ABS_MT_SLOT, 1, 3 };
|
||||
/* we use the second element to indicate the number of values */
|
||||
@@ -183,36 +186,65 @@
|
||||
const char *invalid_mtslot_str[] = { invalid_str, "1", "1" };
|
||||
# endif
|
||||
|
||||
+ enum { ULONG_BIT = sizeof(unsigned long) * 8 };
|
||||
+
|
||||
/* set more than 4 bits */
|
||||
- unsigned long ev_more[] = { 1 << EV_ABS | 1 << EV_MSC | 1 << EV_LED | 1 << EV_SND | 1 << EV_PWR };
|
||||
- /* we use the first element to indicate the number of set bits */
|
||||
- /* ev_more_str[0] is "5" so the number of set bits is 5 */
|
||||
- const char *ev_more_str[] = { "5", "EV_ABS", "EV_MSC", "EV_LED", "EV_SND", "EV_PWR" };
|
||||
+ static const unsigned long ev_more[NUM_WORDS] = {
|
||||
+ 1 << EV_ABS | 1 << EV_MSC | 1 << EV_LED | 1 << EV_SND
|
||||
+ | 1 << EV_PWR };
|
||||
+ static const char * const ev_more_str_2[] = {
|
||||
+ "EV_ABS", "EV_MSC", NULL };
|
||||
+ static const char * const ev_more_str_3[] = {
|
||||
+ "EV_ABS", "EV_MSC", "EV_LED", "EV_SND", "EV_PWR", NULL };
|
||||
|
||||
/* set less than 4 bits */
|
||||
- unsigned long ev_less[] = { 1 << EV_ABS | 1 << EV_MSC | 1 << EV_LED };
|
||||
- const char *ev_less_str[] = { "3", "EV_ABS", "EV_MSC", "EV_LED" };
|
||||
+ static const unsigned long ev_less[NUM_WORDS] = {
|
||||
+ 1 << EV_ABS | 1 << EV_MSC | 1 << EV_LED };
|
||||
+ static const char * const ev_less_str_2[] = {
|
||||
+ "EV_ABS", "EV_MSC", NULL };
|
||||
+ static const char * const ev_less_str_3[] = {
|
||||
+ "EV_ABS", "EV_MSC", "EV_LED", NULL };
|
||||
|
||||
/* set zero bit */
|
||||
- unsigned long ev_zero[] = { 0x0 };
|
||||
- const char *ev_zero_str[] = { "0", " 0 " };
|
||||
+ static const unsigned long ev_zero[NUM_WORDS] = { 0x0 };
|
||||
+ static const char * const ev_zero_str[] = { " 0 ", NULL };
|
||||
|
||||
/* KEY_MAX is 0x2ff which is greater than retval * 8 */
|
||||
- unsigned long key[] = { 1 << KEY_1 | 1 << KEY_2, 0 };
|
||||
- const char *key_str[] = { "2", "KEY_1", "KEY_2" };
|
||||
+ static const unsigned long key[NUM_WORDS] = {
|
||||
+ 1 << KEY_1 | 1 << KEY_2,
|
||||
+ [ KEY_F12 / ULONG_BIT ] = 1 << (KEY_F12 % ULONG_BIT) };
|
||||
+
|
||||
+ static const char * const key_str_8[] = {
|
||||
+ "KEY_1", "KEY_2", NULL };
|
||||
+ static const char * const key_str_16[] = {
|
||||
+ "KEY_1", "KEY_2", "KEY_F12", NULL };
|
||||
+
|
||||
+ assert(sizeof(ev_more) >= (unsigned long) inject_retval);
|
||||
+ assert(sizeof(ev_less) >= (unsigned long) inject_retval);
|
||||
+ assert(sizeof(ev_zero) >= (unsigned long) inject_retval);
|
||||
+ assert(sizeof(key) >= (unsigned long) inject_retval);
|
||||
|
||||
struct {
|
||||
struct evdev_check check;
|
||||
- void *ptr;
|
||||
+ const void *ptr;
|
||||
} a[] = {
|
||||
{ { ARG_STR(EVIOCGID), id, print_input_id }, NULL },
|
||||
{ { ARG_STR(EVIOCGABS(ABS_X)), absinfo, print_input_absinfo }, NULL },
|
||||
{ { ARG_STR(EVIOCGABS(ABS_Y)), absinfo, print_input_absinfo }, NULL },
|
||||
{ { ARG_STR(EVIOCGABS(ABS_Y)), absinfo, print_input_absinfo }, NULL },
|
||||
- { { ARG_STR(EVIOCGBIT(0, 0)), ev_more, print_getbit }, &ev_more_str },
|
||||
- { { ARG_STR(EVIOCGBIT(0, 0)), ev_less, print_getbit }, &ev_less_str },
|
||||
+ { { ARG_STR(EVIOCGBIT(0, 0)), ev_more, print_getbit },
|
||||
+ inject_retval * 8 <= EV_LED
|
||||
+ ? (const void *) &ev_more_str_2
|
||||
+ : (const void *) &ev_more_str_3 },
|
||||
+ { { ARG_STR(EVIOCGBIT(0, 0)), ev_less, print_getbit },
|
||||
+ inject_retval * 8 <= EV_LED
|
||||
+ ? (const void *) &ev_less_str_2
|
||||
+ : (const void *) &ev_less_str_3 },
|
||||
{ { ARG_STR(EVIOCGBIT(0, 0)), ev_zero, print_getbit }, &ev_zero_str },
|
||||
- { { ARG_STR(EVIOCGBIT(EV_KEY, 0)), key, print_getbit }, &key_str},
|
||||
+ { { ARG_STR(EVIOCGBIT(EV_KEY, 0)), key, print_getbit },
|
||||
+ inject_retval * 8 <= KEY_F12
|
||||
+ ? (const void *) &key_str_8
|
||||
+ : (const void *) &key_str_16 },
|
||||
# ifdef EVIOCGMTSLOTS
|
||||
{ { ARG_STR(EVIOCGMTSLOTS(12)), mtslots, print_mtslots }, &mtslots_str },
|
||||
{ { ARG_STR(EVIOCGMTSLOTS(8)), invalid_mtslot, print_mtslots }, &invalid_mtslot_str }
|
||||
Index: strace-4.24/tests/ioctl_evdev-success.test
|
||||
===================================================================
|
||||
--- strace-4.24.orig/tests/ioctl_evdev-success.test 2019-08-01 18:40:58.009521546 +0200
|
||||
+++ strace-4.24/tests/ioctl_evdev-success.test 2019-08-01 19:21:32.298062205 +0200
|
||||
@@ -3,11 +3,14 @@
|
||||
. "${srcdir=.}/scno_tampering.sh"
|
||||
|
||||
: ${IOCTL_INJECT_START=256}
|
||||
-: ${IOCTL_INJECT_RETVAL=8}
|
||||
|
||||
run_prog
|
||||
-run_strace -a16 -e trace=ioctl \
|
||||
- -e inject=ioctl:retval="${IOCTL_INJECT_RETVAL}":when="${IOCTL_INJECT_START}+" \
|
||||
- ../ioctl_evdev-success "${IOCTL_INJECT_START}" "${IOCTL_INJECT_RETVAL}"> "$EXP"
|
||||
-grep -v '^ioctl([012][,<]' < "$LOG" > "$OUT"
|
||||
-match_diff "$OUT" "$EXP"
|
||||
+
|
||||
+for ret in 0 2 8 15 16; do
|
||||
+ run_strace -a16 -e trace=ioctl \
|
||||
+ -e inject=ioctl:retval="${ret}":when="${IOCTL_INJECT_START}+" \
|
||||
+ ../ioctl_evdev-success \
|
||||
+ "${IOCTL_INJECT_START}" "${ret}"> "$EXP.${ret}"
|
||||
+ grep -v '^ioctl([012][,<]' < "$LOG" > "$OUT.$ret"
|
||||
+ match_diff "$OUT.$ret" "$EXP.$ret"
|
||||
+done
|
||||
Index: strace-4.24/tests-m32/ioctl_evdev-success-v.test
|
||||
===================================================================
|
||||
--- strace-4.24.orig/tests-m32/ioctl_evdev-success-v.test 2019-08-01 18:40:58.009521546 +0200
|
||||
+++ strace-4.24/tests-m32/ioctl_evdev-success-v.test 2019-08-01 19:21:32.298062205 +0200
|
||||
@@ -3,11 +3,14 @@
|
||||
. "${srcdir=.}/scno_tampering.sh"
|
||||
|
||||
: ${IOCTL_INJECT_START=256}
|
||||
-: ${IOCTL_INJECT_RETVAL=8}
|
||||
|
||||
run_prog
|
||||
-run_strace -a16 -v -e trace=ioctl \
|
||||
- -e inject=ioctl:retval="${IOCTL_INJECT_RETVAL}":when="${IOCTL_INJECT_START}+" \
|
||||
- ../ioctl_evdev-success-v "${IOCTL_INJECT_START}" "${IOCTL_INJECT_RETVAL}"> "$EXP"
|
||||
-grep -v '^ioctl([012][,<]' < "$LOG" > "$OUT"
|
||||
-match_diff "$OUT" "$EXP"
|
||||
+
|
||||
+for ret in 0 2 8 15 16; do
|
||||
+ run_strace -a16 -v -e trace=ioctl \
|
||||
+ -e inject=ioctl:retval="${ret}":when="${IOCTL_INJECT_START}+" \
|
||||
+ ../ioctl_evdev-success-v \
|
||||
+ "${IOCTL_INJECT_START}" "${ret}"> "$EXP.$ret"
|
||||
+ grep -v '^ioctl([012][,<]' < "$LOG" > "$OUT.$ret"
|
||||
+ match_diff "$OUT.$ret" "$EXP.$ret"
|
||||
+done
|
||||
Index: strace-4.24/tests-m32/ioctl_evdev-success.test
|
||||
===================================================================
|
||||
--- strace-4.24.orig/tests-m32/ioctl_evdev-success.test 2019-08-01 18:40:58.009521546 +0200
|
||||
+++ strace-4.24/tests-m32/ioctl_evdev-success.test 2019-08-01 19:21:32.298062205 +0200
|
||||
@@ -3,11 +3,14 @@
|
||||
. "${srcdir=.}/scno_tampering.sh"
|
||||
|
||||
: ${IOCTL_INJECT_START=256}
|
||||
-: ${IOCTL_INJECT_RETVAL=8}
|
||||
|
||||
run_prog
|
||||
-run_strace -a16 -e trace=ioctl \
|
||||
- -e inject=ioctl:retval="${IOCTL_INJECT_RETVAL}":when="${IOCTL_INJECT_START}+" \
|
||||
- ../ioctl_evdev-success "${IOCTL_INJECT_START}" "${IOCTL_INJECT_RETVAL}"> "$EXP"
|
||||
-grep -v '^ioctl([012][,<]' < "$LOG" > "$OUT"
|
||||
-match_diff "$OUT" "$EXP"
|
||||
+
|
||||
+for ret in 0 2 8 15 16; do
|
||||
+ run_strace -a16 -e trace=ioctl \
|
||||
+ -e inject=ioctl:retval="${ret}":when="${IOCTL_INJECT_START}+" \
|
||||
+ ../ioctl_evdev-success \
|
||||
+ "${IOCTL_INJECT_START}" "${ret}"> "$EXP.${ret}"
|
||||
+ grep -v '^ioctl([012][,<]' < "$LOG" > "$OUT.$ret"
|
||||
+ match_diff "$OUT.$ret" "$EXP.$ret"
|
||||
+done
|
||||
Index: strace-4.24/tests-mx32/ioctl_evdev-success-v.test
|
||||
===================================================================
|
||||
--- strace-4.24.orig/tests-mx32/ioctl_evdev-success-v.test 2019-08-01 18:40:58.009521546 +0200
|
||||
+++ strace-4.24/tests-mx32/ioctl_evdev-success-v.test 2019-08-01 19:21:32.298062205 +0200
|
||||
@@ -3,11 +3,14 @@
|
||||
. "${srcdir=.}/scno_tampering.sh"
|
||||
|
||||
: ${IOCTL_INJECT_START=256}
|
||||
-: ${IOCTL_INJECT_RETVAL=8}
|
||||
|
||||
run_prog
|
||||
-run_strace -a16 -v -e trace=ioctl \
|
||||
- -e inject=ioctl:retval="${IOCTL_INJECT_RETVAL}":when="${IOCTL_INJECT_START}+" \
|
||||
- ../ioctl_evdev-success-v "${IOCTL_INJECT_START}" "${IOCTL_INJECT_RETVAL}"> "$EXP"
|
||||
-grep -v '^ioctl([012][,<]' < "$LOG" > "$OUT"
|
||||
-match_diff "$OUT" "$EXP"
|
||||
+
|
||||
+for ret in 0 2 8 15 16; do
|
||||
+ run_strace -a16 -v -e trace=ioctl \
|
||||
+ -e inject=ioctl:retval="${ret}":when="${IOCTL_INJECT_START}+" \
|
||||
+ ../ioctl_evdev-success-v \
|
||||
+ "${IOCTL_INJECT_START}" "${ret}"> "$EXP.$ret"
|
||||
+ grep -v '^ioctl([012][,<]' < "$LOG" > "$OUT.$ret"
|
||||
+ match_diff "$OUT.$ret" "$EXP.$ret"
|
||||
+done
|
||||
Index: strace-4.24/tests-mx32/ioctl_evdev-success.test
|
||||
===================================================================
|
||||
--- strace-4.24.orig/tests-mx32/ioctl_evdev-success.test 2019-08-01 18:40:58.009521546 +0200
|
||||
+++ strace-4.24/tests-mx32/ioctl_evdev-success.test 2019-08-01 19:21:32.299062192 +0200
|
||||
@@ -3,11 +3,14 @@
|
||||
. "${srcdir=.}/scno_tampering.sh"
|
||||
|
||||
: ${IOCTL_INJECT_START=256}
|
||||
-: ${IOCTL_INJECT_RETVAL=8}
|
||||
|
||||
run_prog
|
||||
-run_strace -a16 -e trace=ioctl \
|
||||
- -e inject=ioctl:retval="${IOCTL_INJECT_RETVAL}":when="${IOCTL_INJECT_START}+" \
|
||||
- ../ioctl_evdev-success "${IOCTL_INJECT_START}" "${IOCTL_INJECT_RETVAL}"> "$EXP"
|
||||
-grep -v '^ioctl([012][,<]' < "$LOG" > "$OUT"
|
||||
-match_diff "$OUT" "$EXP"
|
||||
+
|
||||
+for ret in 0 2 8 15 16; do
|
||||
+ run_strace -a16 -e trace=ioctl \
|
||||
+ -e inject=ioctl:retval="${ret}":when="${IOCTL_INJECT_START}+" \
|
||||
+ ../ioctl_evdev-success \
|
||||
+ "${IOCTL_INJECT_START}" "${ret}"> "$EXP.${ret}"
|
||||
+ grep -v '^ioctl([012][,<]' < "$LOG" > "$OUT.$ret"
|
||||
+ match_diff "$OUT.$ret" "$EXP.$ret"
|
||||
+done
|
||||
Index: strace-4.24/tests-m32/ioctl_evdev-success.c
|
||||
===================================================================
|
||||
--- strace-4.24.orig/tests-m32/ioctl_evdev-success.c 2019-08-01 18:40:58.009521546 +0200
|
||||
+++ strace-4.24/tests-m32/ioctl_evdev-success.c 2019-08-29 12:09:27.898700830 +0200
|
||||
@@ -2,6 +2,7 @@
|
||||
|
||||
#ifdef HAVE_LINUX_INPUT_H
|
||||
|
||||
+# include <assert.h>
|
||||
# include <inttypes.h>
|
||||
# include <stdio.h>
|
||||
# include <stdlib.h>
|
||||
@@ -9,17 +10,19 @@
|
||||
# include <linux/input.h>
|
||||
# include "print_fields.h"
|
||||
|
||||
+# define NUM_WORDS 4
|
||||
+
|
||||
static const char *errstr;
|
||||
|
||||
struct evdev_check {
|
||||
unsigned long cmd;
|
||||
const char *cmd_str;
|
||||
- void *arg_ptr;
|
||||
- void (*print_arg)(long rc, void *ptr, void *arg);
|
||||
+ const void *arg_ptr;
|
||||
+ void (*print_arg)(long rc, const void *ptr, const void *arg);
|
||||
};
|
||||
|
||||
static long
|
||||
-invoke_test_syscall(unsigned long cmd, void *p)
|
||||
+invoke_test_syscall(unsigned long cmd, const void *p)
|
||||
{
|
||||
long rc = ioctl(-1, cmd, p);
|
||||
errstr = sprintrc(rc);
|
||||
@@ -31,7 +34,7 @@
|
||||
}
|
||||
|
||||
static void
|
||||
-test_evdev(struct evdev_check *check, void *arg)
|
||||
+test_evdev(struct evdev_check *check, const void *arg)
|
||||
{
|
||||
long rc = invoke_test_syscall(check->cmd, check->arg_ptr);
|
||||
printf("ioctl(-1, %s, ", check->cmd_str);
|
||||
@@ -43,9 +46,9 @@
|
||||
}
|
||||
|
||||
static void
|
||||
-print_input_absinfo(long rc, void *ptr, void *arg)
|
||||
+print_input_absinfo(long rc, const void *ptr, const void *arg)
|
||||
{
|
||||
- struct input_absinfo *absinfo = ptr;
|
||||
+ const struct input_absinfo *absinfo = ptr;
|
||||
|
||||
if (rc < 0) {
|
||||
printf("%p", absinfo);
|
||||
@@ -67,9 +70,9 @@
|
||||
}
|
||||
|
||||
static void
|
||||
-print_input_id(long rc, void *ptr, void *arg)
|
||||
+print_input_id(long rc, const void *ptr, const void *arg)
|
||||
{
|
||||
- struct input_id *id = ptr;
|
||||
+ const struct input_id *id = ptr;
|
||||
|
||||
if (rc < 0) {
|
||||
printf("%p", id);
|
||||
@@ -84,10 +87,10 @@
|
||||
|
||||
# ifdef EVIOCGMTSLOTS
|
||||
static void
|
||||
-print_mtslots(long rc, void *ptr, void *arg)
|
||||
+print_mtslots(long rc, const void *ptr, const void *arg)
|
||||
{
|
||||
- int *buffer = ptr;
|
||||
- const char **str = arg;
|
||||
+ const int *buffer = ptr;
|
||||
+ const char * const * str = arg;
|
||||
int num = atoi(*(str + 1));
|
||||
|
||||
if (rc < 0) {
|
||||
@@ -104,27 +107,26 @@
|
||||
# endif
|
||||
|
||||
static void
|
||||
-print_getbit(long rc, void *ptr, void *arg)
|
||||
+print_getbit(long rc, const void *ptr, const void *arg)
|
||||
{
|
||||
- const char **str = arg;
|
||||
- int num = atoi(*str);
|
||||
+ const char * const *str = arg;
|
||||
|
||||
- if (rc < 0) {
|
||||
+ if (rc <= 0) {
|
||||
printf("%p", ptr);
|
||||
return;
|
||||
}
|
||||
|
||||
printf("[");
|
||||
- printf("%s", *(str + 1));
|
||||
- for (unsigned int i = 2; i <= (unsigned) num; i++) {
|
||||
+ for (unsigned long i = 0; str[i]; i++) {
|
||||
# if ! VERBOSE
|
||||
- if (i > 4) {
|
||||
+ if (i >= 4) {
|
||||
printf(", ...");
|
||||
break;
|
||||
}
|
||||
# endif
|
||||
- printf(", ");
|
||||
- printf("%s", *(str + i));
|
||||
+ if (i)
|
||||
+ printf(", ");
|
||||
+ printf("%s", str[i]);
|
||||
}
|
||||
printf("]");
|
||||
}
|
||||
@@ -170,6 +172,7 @@
|
||||
TAIL_ALLOC_OBJECT_CONST_PTR(struct input_id, id);
|
||||
TAIL_ALLOC_OBJECT_CONST_PTR(struct input_absinfo, absinfo);
|
||||
TAIL_ALLOC_OBJECT_CONST_PTR(int, bad_addr_slot);
|
||||
+
|
||||
# ifdef EVIOCGMTSLOTS
|
||||
int mtslots[] = { ABS_MT_SLOT, 1, 3 };
|
||||
/* we use the second element to indicate the number of values */
|
||||
@@ -183,36 +186,65 @@
|
||||
const char *invalid_mtslot_str[] = { invalid_str, "1", "1" };
|
||||
# endif
|
||||
|
||||
+ enum { ULONG_BIT = sizeof(unsigned long) * 8 };
|
||||
+
|
||||
/* set more than 4 bits */
|
||||
- unsigned long ev_more[] = { 1 << EV_ABS | 1 << EV_MSC | 1 << EV_LED | 1 << EV_SND | 1 << EV_PWR };
|
||||
- /* we use the first element to indicate the number of set bits */
|
||||
- /* ev_more_str[0] is "5" so the number of set bits is 5 */
|
||||
- const char *ev_more_str[] = { "5", "EV_ABS", "EV_MSC", "EV_LED", "EV_SND", "EV_PWR" };
|
||||
+ static const unsigned long ev_more[NUM_WORDS] = {
|
||||
+ 1 << EV_ABS | 1 << EV_MSC | 1 << EV_LED | 1 << EV_SND
|
||||
+ | 1 << EV_PWR };
|
||||
+ static const char * const ev_more_str_2[] = {
|
||||
+ "EV_ABS", "EV_MSC", NULL };
|
||||
+ static const char * const ev_more_str_3[] = {
|
||||
+ "EV_ABS", "EV_MSC", "EV_LED", "EV_SND", "EV_PWR", NULL };
|
||||
|
||||
/* set less than 4 bits */
|
||||
- unsigned long ev_less[] = { 1 << EV_ABS | 1 << EV_MSC | 1 << EV_LED };
|
||||
- const char *ev_less_str[] = { "3", "EV_ABS", "EV_MSC", "EV_LED" };
|
||||
+ static const unsigned long ev_less[NUM_WORDS] = {
|
||||
+ 1 << EV_ABS | 1 << EV_MSC | 1 << EV_LED };
|
||||
+ static const char * const ev_less_str_2[] = {
|
||||
+ "EV_ABS", "EV_MSC", NULL };
|
||||
+ static const char * const ev_less_str_3[] = {
|
||||
+ "EV_ABS", "EV_MSC", "EV_LED", NULL };
|
||||
|
||||
/* set zero bit */
|
||||
- unsigned long ev_zero[] = { 0x0 };
|
||||
- const char *ev_zero_str[] = { "0", " 0 " };
|
||||
+ static const unsigned long ev_zero[NUM_WORDS] = { 0x0 };
|
||||
+ static const char * const ev_zero_str[] = { " 0 ", NULL };
|
||||
|
||||
/* KEY_MAX is 0x2ff which is greater than retval * 8 */
|
||||
- unsigned long key[] = { 1 << KEY_1 | 1 << KEY_2, 0 };
|
||||
- const char *key_str[] = { "2", "KEY_1", "KEY_2" };
|
||||
+ static const unsigned long key[NUM_WORDS] = {
|
||||
+ 1 << KEY_1 | 1 << KEY_2,
|
||||
+ [ KEY_F12 / ULONG_BIT ] = 1 << (KEY_F12 % ULONG_BIT) };
|
||||
+
|
||||
+ static const char * const key_str_8[] = {
|
||||
+ "KEY_1", "KEY_2", NULL };
|
||||
+ static const char * const key_str_16[] = {
|
||||
+ "KEY_1", "KEY_2", "KEY_F12", NULL };
|
||||
+
|
||||
+ assert(sizeof(ev_more) >= (unsigned long) inject_retval);
|
||||
+ assert(sizeof(ev_less) >= (unsigned long) inject_retval);
|
||||
+ assert(sizeof(ev_zero) >= (unsigned long) inject_retval);
|
||||
+ assert(sizeof(key) >= (unsigned long) inject_retval);
|
||||
|
||||
struct {
|
||||
struct evdev_check check;
|
||||
- void *ptr;
|
||||
+ const void *ptr;
|
||||
} a[] = {
|
||||
{ { ARG_STR(EVIOCGID), id, print_input_id }, NULL },
|
||||
{ { ARG_STR(EVIOCGABS(ABS_X)), absinfo, print_input_absinfo }, NULL },
|
||||
{ { ARG_STR(EVIOCGABS(ABS_Y)), absinfo, print_input_absinfo }, NULL },
|
||||
{ { ARG_STR(EVIOCGABS(ABS_Y)), absinfo, print_input_absinfo }, NULL },
|
||||
- { { ARG_STR(EVIOCGBIT(0, 0)), ev_more, print_getbit }, &ev_more_str },
|
||||
- { { ARG_STR(EVIOCGBIT(0, 0)), ev_less, print_getbit }, &ev_less_str },
|
||||
+ { { ARG_STR(EVIOCGBIT(0, 0)), ev_more, print_getbit },
|
||||
+ inject_retval * 8 <= EV_LED
|
||||
+ ? (const void *) &ev_more_str_2
|
||||
+ : (const void *) &ev_more_str_3 },
|
||||
+ { { ARG_STR(EVIOCGBIT(0, 0)), ev_less, print_getbit },
|
||||
+ inject_retval * 8 <= EV_LED
|
||||
+ ? (const void *) &ev_less_str_2
|
||||
+ : (const void *) &ev_less_str_3 },
|
||||
{ { ARG_STR(EVIOCGBIT(0, 0)), ev_zero, print_getbit }, &ev_zero_str },
|
||||
- { { ARG_STR(EVIOCGBIT(EV_KEY, 0)), key, print_getbit }, &key_str},
|
||||
+ { { ARG_STR(EVIOCGBIT(EV_KEY, 0)), key, print_getbit },
|
||||
+ inject_retval * 8 <= KEY_F12
|
||||
+ ? (const void *) &key_str_8
|
||||
+ : (const void *) &key_str_16 },
|
||||
# ifdef EVIOCGMTSLOTS
|
||||
{ { ARG_STR(EVIOCGMTSLOTS(12)), mtslots, print_mtslots }, &mtslots_str },
|
||||
{ { ARG_STR(EVIOCGMTSLOTS(8)), invalid_mtslot, print_mtslots }, &invalid_mtslot_str }
|
||||
Index: strace-4.24/tests-mx32/ioctl_evdev-success.c
|
||||
===================================================================
|
||||
--- strace-4.24.orig/tests-mx32/ioctl_evdev-success.c 2019-08-01 18:40:58.009521546 +0200
|
||||
+++ strace-4.24/tests-mx32/ioctl_evdev-success.c 2019-08-29 12:09:30.350669261 +0200
|
||||
@@ -2,6 +2,7 @@
|
||||
|
||||
#ifdef HAVE_LINUX_INPUT_H
|
||||
|
||||
+# include <assert.h>
|
||||
# include <inttypes.h>
|
||||
# include <stdio.h>
|
||||
# include <stdlib.h>
|
||||
@@ -9,17 +10,19 @@
|
||||
# include <linux/input.h>
|
||||
# include "print_fields.h"
|
||||
|
||||
+# define NUM_WORDS 4
|
||||
+
|
||||
static const char *errstr;
|
||||
|
||||
struct evdev_check {
|
||||
unsigned long cmd;
|
||||
const char *cmd_str;
|
||||
- void *arg_ptr;
|
||||
- void (*print_arg)(long rc, void *ptr, void *arg);
|
||||
+ const void *arg_ptr;
|
||||
+ void (*print_arg)(long rc, const void *ptr, const void *arg);
|
||||
};
|
||||
|
||||
static long
|
||||
-invoke_test_syscall(unsigned long cmd, void *p)
|
||||
+invoke_test_syscall(unsigned long cmd, const void *p)
|
||||
{
|
||||
long rc = ioctl(-1, cmd, p);
|
||||
errstr = sprintrc(rc);
|
||||
@@ -31,7 +34,7 @@
|
||||
}
|
||||
|
||||
static void
|
||||
-test_evdev(struct evdev_check *check, void *arg)
|
||||
+test_evdev(struct evdev_check *check, const void *arg)
|
||||
{
|
||||
long rc = invoke_test_syscall(check->cmd, check->arg_ptr);
|
||||
printf("ioctl(-1, %s, ", check->cmd_str);
|
||||
@@ -43,9 +46,9 @@
|
||||
}
|
||||
|
||||
static void
|
||||
-print_input_absinfo(long rc, void *ptr, void *arg)
|
||||
+print_input_absinfo(long rc, const void *ptr, const void *arg)
|
||||
{
|
||||
- struct input_absinfo *absinfo = ptr;
|
||||
+ const struct input_absinfo *absinfo = ptr;
|
||||
|
||||
if (rc < 0) {
|
||||
printf("%p", absinfo);
|
||||
@@ -67,9 +70,9 @@
|
||||
}
|
||||
|
||||
static void
|
||||
-print_input_id(long rc, void *ptr, void *arg)
|
||||
+print_input_id(long rc, const void *ptr, const void *arg)
|
||||
{
|
||||
- struct input_id *id = ptr;
|
||||
+ const struct input_id *id = ptr;
|
||||
|
||||
if (rc < 0) {
|
||||
printf("%p", id);
|
||||
@@ -84,10 +87,10 @@
|
||||
|
||||
# ifdef EVIOCGMTSLOTS
|
||||
static void
|
||||
-print_mtslots(long rc, void *ptr, void *arg)
|
||||
+print_mtslots(long rc, const void *ptr, const void *arg)
|
||||
{
|
||||
- int *buffer = ptr;
|
||||
- const char **str = arg;
|
||||
+ const int *buffer = ptr;
|
||||
+ const char * const * str = arg;
|
||||
int num = atoi(*(str + 1));
|
||||
|
||||
if (rc < 0) {
|
||||
@@ -104,27 +107,26 @@
|
||||
# endif
|
||||
|
||||
static void
|
||||
-print_getbit(long rc, void *ptr, void *arg)
|
||||
+print_getbit(long rc, const void *ptr, const void *arg)
|
||||
{
|
||||
- const char **str = arg;
|
||||
- int num = atoi(*str);
|
||||
+ const char * const *str = arg;
|
||||
|
||||
- if (rc < 0) {
|
||||
+ if (rc <= 0) {
|
||||
printf("%p", ptr);
|
||||
return;
|
||||
}
|
||||
|
||||
printf("[");
|
||||
- printf("%s", *(str + 1));
|
||||
- for (unsigned int i = 2; i <= (unsigned) num; i++) {
|
||||
+ for (unsigned long i = 0; str[i]; i++) {
|
||||
# if ! VERBOSE
|
||||
- if (i > 4) {
|
||||
+ if (i >= 4) {
|
||||
printf(", ...");
|
||||
break;
|
||||
}
|
||||
# endif
|
||||
- printf(", ");
|
||||
- printf("%s", *(str + i));
|
||||
+ if (i)
|
||||
+ printf(", ");
|
||||
+ printf("%s", str[i]);
|
||||
}
|
||||
printf("]");
|
||||
}
|
||||
@@ -170,6 +172,7 @@
|
||||
TAIL_ALLOC_OBJECT_CONST_PTR(struct input_id, id);
|
||||
TAIL_ALLOC_OBJECT_CONST_PTR(struct input_absinfo, absinfo);
|
||||
TAIL_ALLOC_OBJECT_CONST_PTR(int, bad_addr_slot);
|
||||
+
|
||||
# ifdef EVIOCGMTSLOTS
|
||||
int mtslots[] = { ABS_MT_SLOT, 1, 3 };
|
||||
/* we use the second element to indicate the number of values */
|
||||
@@ -183,36 +186,65 @@
|
||||
const char *invalid_mtslot_str[] = { invalid_str, "1", "1" };
|
||||
# endif
|
||||
|
||||
+ enum { ULONG_BIT = sizeof(unsigned long) * 8 };
|
||||
+
|
||||
/* set more than 4 bits */
|
||||
- unsigned long ev_more[] = { 1 << EV_ABS | 1 << EV_MSC | 1 << EV_LED | 1 << EV_SND | 1 << EV_PWR };
|
||||
- /* we use the first element to indicate the number of set bits */
|
||||
- /* ev_more_str[0] is "5" so the number of set bits is 5 */
|
||||
- const char *ev_more_str[] = { "5", "EV_ABS", "EV_MSC", "EV_LED", "EV_SND", "EV_PWR" };
|
||||
+ static const unsigned long ev_more[NUM_WORDS] = {
|
||||
+ 1 << EV_ABS | 1 << EV_MSC | 1 << EV_LED | 1 << EV_SND
|
||||
+ | 1 << EV_PWR };
|
||||
+ static const char * const ev_more_str_2[] = {
|
||||
+ "EV_ABS", "EV_MSC", NULL };
|
||||
+ static const char * const ev_more_str_3[] = {
|
||||
+ "EV_ABS", "EV_MSC", "EV_LED", "EV_SND", "EV_PWR", NULL };
|
||||
|
||||
/* set less than 4 bits */
|
||||
- unsigned long ev_less[] = { 1 << EV_ABS | 1 << EV_MSC | 1 << EV_LED };
|
||||
- const char *ev_less_str[] = { "3", "EV_ABS", "EV_MSC", "EV_LED" };
|
||||
+ static const unsigned long ev_less[NUM_WORDS] = {
|
||||
+ 1 << EV_ABS | 1 << EV_MSC | 1 << EV_LED };
|
||||
+ static const char * const ev_less_str_2[] = {
|
||||
+ "EV_ABS", "EV_MSC", NULL };
|
||||
+ static const char * const ev_less_str_3[] = {
|
||||
+ "EV_ABS", "EV_MSC", "EV_LED", NULL };
|
||||
|
||||
/* set zero bit */
|
||||
- unsigned long ev_zero[] = { 0x0 };
|
||||
- const char *ev_zero_str[] = { "0", " 0 " };
|
||||
+ static const unsigned long ev_zero[NUM_WORDS] = { 0x0 };
|
||||
+ static const char * const ev_zero_str[] = { " 0 ", NULL };
|
||||
|
||||
/* KEY_MAX is 0x2ff which is greater than retval * 8 */
|
||||
- unsigned long key[] = { 1 << KEY_1 | 1 << KEY_2, 0 };
|
||||
- const char *key_str[] = { "2", "KEY_1", "KEY_2" };
|
||||
+ static const unsigned long key[NUM_WORDS] = {
|
||||
+ 1 << KEY_1 | 1 << KEY_2,
|
||||
+ [ KEY_F12 / ULONG_BIT ] = 1 << (KEY_F12 % ULONG_BIT) };
|
||||
+
|
||||
+ static const char * const key_str_8[] = {
|
||||
+ "KEY_1", "KEY_2", NULL };
|
||||
+ static const char * const key_str_16[] = {
|
||||
+ "KEY_1", "KEY_2", "KEY_F12", NULL };
|
||||
+
|
||||
+ assert(sizeof(ev_more) >= (unsigned long) inject_retval);
|
||||
+ assert(sizeof(ev_less) >= (unsigned long) inject_retval);
|
||||
+ assert(sizeof(ev_zero) >= (unsigned long) inject_retval);
|
||||
+ assert(sizeof(key) >= (unsigned long) inject_retval);
|
||||
|
||||
struct {
|
||||
struct evdev_check check;
|
||||
- void *ptr;
|
||||
+ const void *ptr;
|
||||
} a[] = {
|
||||
{ { ARG_STR(EVIOCGID), id, print_input_id }, NULL },
|
||||
{ { ARG_STR(EVIOCGABS(ABS_X)), absinfo, print_input_absinfo }, NULL },
|
||||
{ { ARG_STR(EVIOCGABS(ABS_Y)), absinfo, print_input_absinfo }, NULL },
|
||||
{ { ARG_STR(EVIOCGABS(ABS_Y)), absinfo, print_input_absinfo }, NULL },
|
||||
- { { ARG_STR(EVIOCGBIT(0, 0)), ev_more, print_getbit }, &ev_more_str },
|
||||
- { { ARG_STR(EVIOCGBIT(0, 0)), ev_less, print_getbit }, &ev_less_str },
|
||||
+ { { ARG_STR(EVIOCGBIT(0, 0)), ev_more, print_getbit },
|
||||
+ inject_retval * 8 <= EV_LED
|
||||
+ ? (const void *) &ev_more_str_2
|
||||
+ : (const void *) &ev_more_str_3 },
|
||||
+ { { ARG_STR(EVIOCGBIT(0, 0)), ev_less, print_getbit },
|
||||
+ inject_retval * 8 <= EV_LED
|
||||
+ ? (const void *) &ev_less_str_2
|
||||
+ : (const void *) &ev_less_str_3 },
|
||||
{ { ARG_STR(EVIOCGBIT(0, 0)), ev_zero, print_getbit }, &ev_zero_str },
|
||||
- { { ARG_STR(EVIOCGBIT(EV_KEY, 0)), key, print_getbit }, &key_str},
|
||||
+ { { ARG_STR(EVIOCGBIT(EV_KEY, 0)), key, print_getbit },
|
||||
+ inject_retval * 8 <= KEY_F12
|
||||
+ ? (const void *) &key_str_8
|
||||
+ : (const void *) &key_str_16 },
|
||||
# ifdef EVIOCGMTSLOTS
|
||||
{ { ARG_STR(EVIOCGMTSLOTS(12)), mtslots, print_mtslots }, &mtslots_str },
|
||||
{ { ARG_STR(EVIOCGMTSLOTS(8)), invalid_mtslot, print_mtslots }, &invalid_mtslot_str }
|
@ -0,0 +1,32 @@
|
||||
From 91281fec7823f1cd3df3374fbcbd14af52a3fa1b Mon Sep 17 00:00:00 2001
|
||||
From: Eugene Syromyatnikov <evgsyr@gmail.com>
|
||||
Date: Wed, 14 Aug 2019 17:15:47 +0200
|
||||
Subject: [PATCH] v4l2: avoid shifting left a signed number by 31 bit
|
||||
|
||||
cppcheck warns about it with the following diagnostics:
|
||||
|
||||
error[shiftTooManyBitsSigned]: Shifting signed 32-bit value by 31 bits is
|
||||
undefined behaviour
|
||||
|
||||
* v4l2.c [!v4l2_fourcc_be] (v4l2_fourcc_be): Shift left 1U and not 1 in
|
||||
order to get 0x80000000.
|
||||
---
|
||||
v4l2.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/v4l2.c b/v4l2.c
|
||||
index 5da457c..505e7b8 100644
|
||||
--- a/v4l2.c
|
||||
+++ b/v4l2.c
|
||||
@@ -47,7 +47,7 @@ typedef struct v4l2_standard struct_v4l2_standard;
|
||||
|
||||
/* v4l2_fourcc_be was added by Linux commit v3.18-rc1~101^2^2~127 */
|
||||
#ifndef v4l2_fourcc_be
|
||||
-# define v4l2_fourcc_be(a, b, c, d) (v4l2_fourcc(a, b, c, d) | (1 << 31))
|
||||
+# define v4l2_fourcc_be(a, b, c, d) (v4l2_fourcc(a, b, c, d) | (1U << 31))
|
||||
#endif
|
||||
|
||||
#define FMT_FRACT "%u/%u"
|
||||
--
|
||||
2.1.4
|
||||
|
@ -0,0 +1,55 @@
|
||||
From 522ad3a0e73148dadd2480cd9cec84d9112b2e57 Mon Sep 17 00:00:00 2001
|
||||
From: Eugene Syromyatnikov <evgsyr@gmail.com>
|
||||
Date: Tue, 4 Sep 2018 14:48:13 +0200
|
||||
Subject: [PATCH] syscall.c: avoid infinite loop in subcalls parsing
|
||||
|
||||
clang complains about it, so it might be a good reason to refactor it
|
||||
into something more linear.
|
||||
|
||||
* syscall.c (syscall_entering_decode): Put syscall subcall decoding
|
||||
before ipc/socket subcall decoding, remove the loop.
|
||||
---
|
||||
syscall.c | 19 ++++++-------------
|
||||
1 file changed, 6 insertions(+), 13 deletions(-)
|
||||
|
||||
diff --git a/syscall.c b/syscall.c
|
||||
index bae7343..a67d744 100644
|
||||
--- a/syscall.c
|
||||
+++ b/syscall.c
|
||||
@@ -579,11 +579,13 @@ syscall_entering_decode(struct tcb *tcp)
|
||||
return res;
|
||||
}
|
||||
|
||||
+# ifdef SYS_syscall_subcall
|
||||
+ if (tcp_sysent(tcp)->sen == SEN_syscall)
|
||||
+ decode_syscall_subcall(tcp);
|
||||
+# endif
|
||||
#if defined SYS_ipc_subcall \
|
||||
- || defined SYS_socket_subcall \
|
||||
- || defined SYS_syscall_subcall
|
||||
- for (;;) {
|
||||
- switch (tcp_sysent(tcp)->sen) {
|
||||
+ || defined SYS_socket_subcall
|
||||
+ switch (tcp_sysent(tcp)->sen) {
|
||||
# ifdef SYS_ipc_subcall
|
||||
case SEN_ipc:
|
||||
decode_ipc_subcall(tcp);
|
||||
@@ -594,15 +596,6 @@ syscall_entering_decode(struct tcb *tcp)
|
||||
decode_socket_subcall(tcp);
|
||||
break;
|
||||
# endif
|
||||
-# ifdef SYS_syscall_subcall
|
||||
- case SEN_syscall:
|
||||
- decode_syscall_subcall(tcp);
|
||||
- if (tcp_sysent(tcp)->sen != SEN_syscall)
|
||||
- continue;
|
||||
- break;
|
||||
-# endif
|
||||
- }
|
||||
- break;
|
||||
}
|
||||
#endif
|
||||
|
||||
--
|
||||
2.1.4
|
||||
|
@ -0,0 +1,36 @@
|
||||
From 9446038e9face3313373ca5f7539476789fd4660 Mon Sep 17 00:00:00 2001
|
||||
From: Eugene Syromyatnikov <evgsyr@gmail.com>
|
||||
Date: Tue, 18 Dec 2018 05:37:30 +0100
|
||||
Subject: [PATCH] kvm: avoid bogus vcpu_info assignment in vcpu_register
|
||||
|
||||
Also reformat code a bit to make nesting a bit clearer.
|
||||
|
||||
Reported by Clang.
|
||||
|
||||
* kvm.c (vcpu_register): Do not assign vcpu_alloc result to vcpu_info
|
||||
as this value is not used afterwards in the function.
|
||||
---
|
||||
kvm.c | 7 +++----
|
||||
1 file changed, 3 insertions(+), 4 deletions(-)
|
||||
|
||||
diff --git a/kvm.c b/kvm.c
|
||||
index 984a75e..8bdf1cc 100644
|
||||
--- a/kvm.c
|
||||
+++ b/kvm.c
|
||||
@@ -76,10 +76,9 @@ vcpu_register(struct tcb *const tcp, int fd, int cpuid)
|
||||
|
||||
struct vcpu_info *vcpu_info = vcpu_find(tcp, fd);
|
||||
|
||||
- if (!vcpu_info)
|
||||
- vcpu_info = vcpu_alloc(tcp, fd, cpuid);
|
||||
- else if (vcpu_info->cpuid != cpuid)
|
||||
- {
|
||||
+ if (!vcpu_info) {
|
||||
+ vcpu_alloc(tcp, fd, cpuid);
|
||||
+ } else if (vcpu_info->cpuid != cpuid) {
|
||||
vcpu_info->cpuid = cpuid;
|
||||
vcpu_info->resolved = false;
|
||||
}
|
||||
--
|
||||
2.1.4
|
||||
|
@ -0,0 +1,365 @@
|
||||
From c26541c73c3b4be2977e719d77287255eb346cdf Mon Sep 17 00:00:00 2001
|
||||
From: Eugene Syromyatnikov <evgsyr@gmail.com>
|
||||
Date: Thu, 17 Oct 2019 13:13:45 +0200
|
||||
Subject: [PATCH] xlat: use unsgined type for mount_flags fallback values
|
||||
|
||||
Reported by cppcheck:
|
||||
|
||||
strace/xlat/mount_flags.h:256: error[shiftTooManyBitsSigned]:
|
||||
Shifting signed 32-bit value by 31 bits is undefined behaviour
|
||||
# 254| XLAT(MS_BORN),
|
||||
# 255| XLAT(MS_ACTIVE),
|
||||
# 256|-> XLAT(MS_NOUSER),
|
||||
# 257| XLAT_END
|
||||
# 258| };
|
||||
|
||||
* xlat/mount_flags.in: Use 1U instead of 1 as a bit shifting operand.
|
||||
|
||||
References: https://bugzilla.redhat.com/show_bug.cgi?id=1747524
|
||||
---
|
||||
xlat/mount_flags.in | 60 ++++++++++++++++++++++++++---------------------------
|
||||
1 file changed, 30 insertions(+), 30 deletions(-)
|
||||
|
||||
Index: strace-4.24/xlat/mount_flags.in
|
||||
===================================================================
|
||||
--- strace-4.24.orig/xlat/mount_flags.in 2018-04-24 02:35:27.000000000 +0200
|
||||
+++ strace-4.24/xlat/mount_flags.in 2019-12-02 18:37:39.403710911 +0100
|
||||
@@ -1,30 +1,30 @@
|
||||
-MS_RDONLY 1
|
||||
-MS_NOSUID 2
|
||||
-MS_NODEV 4
|
||||
-MS_NOEXEC 8
|
||||
-MS_SYNCHRONOUS 16
|
||||
-MS_REMOUNT 32
|
||||
-MS_MANDLOCK 64
|
||||
-MS_DIRSYNC 128
|
||||
-MS_NOATIME 1024
|
||||
-MS_NODIRATIME 2048
|
||||
-MS_BIND 4096
|
||||
-MS_MOVE 8192
|
||||
-MS_REC 16384
|
||||
-MS_SILENT 32768
|
||||
-MS_POSIXACL (1<<16)
|
||||
-MS_UNBINDABLE (1<<17)
|
||||
-MS_PRIVATE (1<<18)
|
||||
-MS_SLAVE (1<<19)
|
||||
-MS_SHARED (1<<20)
|
||||
-MS_RELATIME (1<<21)
|
||||
-MS_KERNMOUNT (1<<22)
|
||||
-MS_I_VERSION (1<<23)
|
||||
-MS_STRICTATIME (1<<24)
|
||||
-MS_LAZYTIME (1<<25)
|
||||
-MS_SUBMOUNT (1<<26)
|
||||
-MS_NOREMOTELOCK (1<<27)
|
||||
-MS_NOSEC (1<<28)
|
||||
-MS_BORN (1<<29)
|
||||
-MS_ACTIVE (1<<30)
|
||||
-MS_NOUSER (1<<31)
|
||||
+MS_RDONLY (1U<<0)
|
||||
+MS_NOSUID (1U<<1)
|
||||
+MS_NODEV (1U<<2)
|
||||
+MS_NOEXEC (1U<<3)
|
||||
+MS_SYNCHRONOUS (1U<<4)
|
||||
+MS_REMOUNT (1U<<5)
|
||||
+MS_MANDLOCK (1U<<6)
|
||||
+MS_DIRSYNC (1U<<7)
|
||||
+MS_NOATIME (1U<<10)
|
||||
+MS_NODIRATIME (1U<<11)
|
||||
+MS_BIND (1U<<12)
|
||||
+MS_MOVE (1U<<13)
|
||||
+MS_REC (1U<<14)
|
||||
+MS_SILENT (1U<<15)
|
||||
+MS_POSIXACL (1U<<16)
|
||||
+MS_UNBINDABLE (1U<<17)
|
||||
+MS_PRIVATE (1U<<18)
|
||||
+MS_SLAVE (1U<<19)
|
||||
+MS_SHARED (1U<<20)
|
||||
+MS_RELATIME (1U<<21)
|
||||
+MS_KERNMOUNT (1U<<22)
|
||||
+MS_I_VERSION (1U<<23)
|
||||
+MS_STRICTATIME (1U<<24)
|
||||
+MS_LAZYTIME (1U<<25)
|
||||
+MS_SUBMOUNT (1U<<26)
|
||||
+MS_NOREMOTELOCK (1U<<27)
|
||||
+MS_NOSEC (1U<<28)
|
||||
+MS_BORN (1U<<29)
|
||||
+MS_ACTIVE (1U<<30)
|
||||
+MS_NOUSER (1U<<31)
|
||||
Index: strace-4.24/xlat/mount_flags.h
|
||||
===================================================================
|
||||
--- strace-4.24.orig/xlat/mount_flags.h 2018-08-14 02:44:19.000000000 +0200
|
||||
+++ strace-4.24/xlat/mount_flags.h 2019-12-02 18:38:36.102900164 +0100
|
||||
@@ -5,213 +5,213 @@
|
||||
|
||||
#if defined(MS_RDONLY) || (defined(HAVE_DECL_MS_RDONLY) && HAVE_DECL_MS_RDONLY)
|
||||
DIAG_PUSH_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
-static_assert((MS_RDONLY) == (1), "MS_RDONLY != 1");
|
||||
+static_assert((MS_RDONLY) == ((1U<<0)), "MS_RDONLY != (1U<<0)");
|
||||
DIAG_POP_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
#else
|
||||
-# define MS_RDONLY 1
|
||||
+# define MS_RDONLY (1U<<0)
|
||||
#endif
|
||||
#if defined(MS_NOSUID) || (defined(HAVE_DECL_MS_NOSUID) && HAVE_DECL_MS_NOSUID)
|
||||
DIAG_PUSH_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
-static_assert((MS_NOSUID) == (2), "MS_NOSUID != 2");
|
||||
+static_assert((MS_NOSUID) == ((1U<<1)), "MS_NOSUID != (1U<<1)");
|
||||
DIAG_POP_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
#else
|
||||
-# define MS_NOSUID 2
|
||||
+# define MS_NOSUID (1U<<1)
|
||||
#endif
|
||||
#if defined(MS_NODEV) || (defined(HAVE_DECL_MS_NODEV) && HAVE_DECL_MS_NODEV)
|
||||
DIAG_PUSH_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
-static_assert((MS_NODEV) == (4), "MS_NODEV != 4");
|
||||
+static_assert((MS_NODEV) == ((1U<<2)), "MS_NODEV != (1U<<2)");
|
||||
DIAG_POP_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
#else
|
||||
-# define MS_NODEV 4
|
||||
+# define MS_NODEV (1U<<2)
|
||||
#endif
|
||||
#if defined(MS_NOEXEC) || (defined(HAVE_DECL_MS_NOEXEC) && HAVE_DECL_MS_NOEXEC)
|
||||
DIAG_PUSH_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
-static_assert((MS_NOEXEC) == (8), "MS_NOEXEC != 8");
|
||||
+static_assert((MS_NOEXEC) == ((1U<<3)), "MS_NOEXEC != (1U<<3)");
|
||||
DIAG_POP_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
#else
|
||||
-# define MS_NOEXEC 8
|
||||
+# define MS_NOEXEC (1U<<3)
|
||||
#endif
|
||||
#if defined(MS_SYNCHRONOUS) || (defined(HAVE_DECL_MS_SYNCHRONOUS) && HAVE_DECL_MS_SYNCHRONOUS)
|
||||
DIAG_PUSH_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
-static_assert((MS_SYNCHRONOUS) == (16), "MS_SYNCHRONOUS != 16");
|
||||
+static_assert((MS_SYNCHRONOUS) == ((1U<<4)), "MS_SYNCHRONOUS != (1U<<4)");
|
||||
DIAG_POP_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
#else
|
||||
-# define MS_SYNCHRONOUS 16
|
||||
+# define MS_SYNCHRONOUS (1U<<4)
|
||||
#endif
|
||||
#if defined(MS_REMOUNT) || (defined(HAVE_DECL_MS_REMOUNT) && HAVE_DECL_MS_REMOUNT)
|
||||
DIAG_PUSH_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
-static_assert((MS_REMOUNT) == (32), "MS_REMOUNT != 32");
|
||||
+static_assert((MS_REMOUNT) == ((1U<<5)), "MS_REMOUNT != (1U<<5)");
|
||||
DIAG_POP_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
#else
|
||||
-# define MS_REMOUNT 32
|
||||
+# define MS_REMOUNT (1U<<5)
|
||||
#endif
|
||||
#if defined(MS_MANDLOCK) || (defined(HAVE_DECL_MS_MANDLOCK) && HAVE_DECL_MS_MANDLOCK)
|
||||
DIAG_PUSH_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
-static_assert((MS_MANDLOCK) == (64), "MS_MANDLOCK != 64");
|
||||
+static_assert((MS_MANDLOCK) == ((1U<<6)), "MS_MANDLOCK != (1U<<6)");
|
||||
DIAG_POP_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
#else
|
||||
-# define MS_MANDLOCK 64
|
||||
+# define MS_MANDLOCK (1U<<6)
|
||||
#endif
|
||||
#if defined(MS_DIRSYNC) || (defined(HAVE_DECL_MS_DIRSYNC) && HAVE_DECL_MS_DIRSYNC)
|
||||
DIAG_PUSH_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
-static_assert((MS_DIRSYNC) == (128), "MS_DIRSYNC != 128");
|
||||
+static_assert((MS_DIRSYNC) == ((1U<<7)), "MS_DIRSYNC != (1U<<7)");
|
||||
DIAG_POP_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
#else
|
||||
-# define MS_DIRSYNC 128
|
||||
+# define MS_DIRSYNC (1U<<7)
|
||||
#endif
|
||||
#if defined(MS_NOATIME) || (defined(HAVE_DECL_MS_NOATIME) && HAVE_DECL_MS_NOATIME)
|
||||
DIAG_PUSH_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
-static_assert((MS_NOATIME) == (1024), "MS_NOATIME != 1024");
|
||||
+static_assert((MS_NOATIME) == ((1U<<10)), "MS_NOATIME != (1U<<10)");
|
||||
DIAG_POP_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
#else
|
||||
-# define MS_NOATIME 1024
|
||||
+# define MS_NOATIME (1U<<10)
|
||||
#endif
|
||||
#if defined(MS_NODIRATIME) || (defined(HAVE_DECL_MS_NODIRATIME) && HAVE_DECL_MS_NODIRATIME)
|
||||
DIAG_PUSH_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
-static_assert((MS_NODIRATIME) == (2048), "MS_NODIRATIME != 2048");
|
||||
+static_assert((MS_NODIRATIME) == ((1U<<11)), "MS_NODIRATIME != (1U<<11)");
|
||||
DIAG_POP_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
#else
|
||||
-# define MS_NODIRATIME 2048
|
||||
+# define MS_NODIRATIME (1U<<11)
|
||||
#endif
|
||||
#if defined(MS_BIND) || (defined(HAVE_DECL_MS_BIND) && HAVE_DECL_MS_BIND)
|
||||
DIAG_PUSH_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
-static_assert((MS_BIND) == (4096), "MS_BIND != 4096");
|
||||
+static_assert((MS_BIND) == ((1U<<12)), "MS_BIND != (1U<<12)");
|
||||
DIAG_POP_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
#else
|
||||
-# define MS_BIND 4096
|
||||
+# define MS_BIND (1U<<12)
|
||||
#endif
|
||||
#if defined(MS_MOVE) || (defined(HAVE_DECL_MS_MOVE) && HAVE_DECL_MS_MOVE)
|
||||
DIAG_PUSH_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
-static_assert((MS_MOVE) == (8192), "MS_MOVE != 8192");
|
||||
+static_assert((MS_MOVE) == ((1U<<13)), "MS_MOVE != (1U<<13)");
|
||||
DIAG_POP_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
#else
|
||||
-# define MS_MOVE 8192
|
||||
+# define MS_MOVE (1U<<13)
|
||||
#endif
|
||||
#if defined(MS_REC) || (defined(HAVE_DECL_MS_REC) && HAVE_DECL_MS_REC)
|
||||
DIAG_PUSH_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
-static_assert((MS_REC) == (16384), "MS_REC != 16384");
|
||||
+static_assert((MS_REC) == ((1U<<14)), "MS_REC != (1U<<14)");
|
||||
DIAG_POP_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
#else
|
||||
-# define MS_REC 16384
|
||||
+# define MS_REC (1U<<14)
|
||||
#endif
|
||||
#if defined(MS_SILENT) || (defined(HAVE_DECL_MS_SILENT) && HAVE_DECL_MS_SILENT)
|
||||
DIAG_PUSH_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
-static_assert((MS_SILENT) == (32768), "MS_SILENT != 32768");
|
||||
+static_assert((MS_SILENT) == ((1U<<15)), "MS_SILENT != (1U<<15)");
|
||||
DIAG_POP_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
#else
|
||||
-# define MS_SILENT 32768
|
||||
+# define MS_SILENT (1U<<15)
|
||||
#endif
|
||||
#if defined(MS_POSIXACL) || (defined(HAVE_DECL_MS_POSIXACL) && HAVE_DECL_MS_POSIXACL)
|
||||
DIAG_PUSH_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
-static_assert((MS_POSIXACL) == ((1<<16)), "MS_POSIXACL != (1<<16)");
|
||||
+static_assert((MS_POSIXACL) == ((1U<<16)), "MS_POSIXACL != (1U<<16)");
|
||||
DIAG_POP_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
#else
|
||||
-# define MS_POSIXACL (1<<16)
|
||||
+# define MS_POSIXACL (1U<<16)
|
||||
#endif
|
||||
#if defined(MS_UNBINDABLE) || (defined(HAVE_DECL_MS_UNBINDABLE) && HAVE_DECL_MS_UNBINDABLE)
|
||||
DIAG_PUSH_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
-static_assert((MS_UNBINDABLE) == ((1<<17)), "MS_UNBINDABLE != (1<<17)");
|
||||
+static_assert((MS_UNBINDABLE) == ((1U<<17)), "MS_UNBINDABLE != (1U<<17)");
|
||||
DIAG_POP_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
#else
|
||||
-# define MS_UNBINDABLE (1<<17)
|
||||
+# define MS_UNBINDABLE (1U<<17)
|
||||
#endif
|
||||
#if defined(MS_PRIVATE) || (defined(HAVE_DECL_MS_PRIVATE) && HAVE_DECL_MS_PRIVATE)
|
||||
DIAG_PUSH_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
-static_assert((MS_PRIVATE) == ((1<<18)), "MS_PRIVATE != (1<<18)");
|
||||
+static_assert((MS_PRIVATE) == ((1U<<18)), "MS_PRIVATE != (1U<<18)");
|
||||
DIAG_POP_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
#else
|
||||
-# define MS_PRIVATE (1<<18)
|
||||
+# define MS_PRIVATE (1U<<18)
|
||||
#endif
|
||||
#if defined(MS_SLAVE) || (defined(HAVE_DECL_MS_SLAVE) && HAVE_DECL_MS_SLAVE)
|
||||
DIAG_PUSH_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
-static_assert((MS_SLAVE) == ((1<<19)), "MS_SLAVE != (1<<19)");
|
||||
+static_assert((MS_SLAVE) == ((1U<<19)), "MS_SLAVE != (1U<<19)");
|
||||
DIAG_POP_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
#else
|
||||
-# define MS_SLAVE (1<<19)
|
||||
+# define MS_SLAVE (1U<<19)
|
||||
#endif
|
||||
#if defined(MS_SHARED) || (defined(HAVE_DECL_MS_SHARED) && HAVE_DECL_MS_SHARED)
|
||||
DIAG_PUSH_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
-static_assert((MS_SHARED) == ((1<<20)), "MS_SHARED != (1<<20)");
|
||||
+static_assert((MS_SHARED) == ((1U<<20)), "MS_SHARED != (1U<<20)");
|
||||
DIAG_POP_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
#else
|
||||
-# define MS_SHARED (1<<20)
|
||||
+# define MS_SHARED (1U<<20)
|
||||
#endif
|
||||
#if defined(MS_RELATIME) || (defined(HAVE_DECL_MS_RELATIME) && HAVE_DECL_MS_RELATIME)
|
||||
DIAG_PUSH_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
-static_assert((MS_RELATIME) == ((1<<21)), "MS_RELATIME != (1<<21)");
|
||||
+static_assert((MS_RELATIME) == ((1U<<21)), "MS_RELATIME != (1U<<21)");
|
||||
DIAG_POP_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
#else
|
||||
-# define MS_RELATIME (1<<21)
|
||||
+# define MS_RELATIME (1U<<21)
|
||||
#endif
|
||||
#if defined(MS_KERNMOUNT) || (defined(HAVE_DECL_MS_KERNMOUNT) && HAVE_DECL_MS_KERNMOUNT)
|
||||
DIAG_PUSH_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
-static_assert((MS_KERNMOUNT) == ((1<<22)), "MS_KERNMOUNT != (1<<22)");
|
||||
+static_assert((MS_KERNMOUNT) == ((1U<<22)), "MS_KERNMOUNT != (1U<<22)");
|
||||
DIAG_POP_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
#else
|
||||
-# define MS_KERNMOUNT (1<<22)
|
||||
+# define MS_KERNMOUNT (1U<<22)
|
||||
#endif
|
||||
#if defined(MS_I_VERSION) || (defined(HAVE_DECL_MS_I_VERSION) && HAVE_DECL_MS_I_VERSION)
|
||||
DIAG_PUSH_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
-static_assert((MS_I_VERSION) == ((1<<23)), "MS_I_VERSION != (1<<23)");
|
||||
+static_assert((MS_I_VERSION) == ((1U<<23)), "MS_I_VERSION != (1U<<23)");
|
||||
DIAG_POP_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
#else
|
||||
-# define MS_I_VERSION (1<<23)
|
||||
+# define MS_I_VERSION (1U<<23)
|
||||
#endif
|
||||
#if defined(MS_STRICTATIME) || (defined(HAVE_DECL_MS_STRICTATIME) && HAVE_DECL_MS_STRICTATIME)
|
||||
DIAG_PUSH_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
-static_assert((MS_STRICTATIME) == ((1<<24)), "MS_STRICTATIME != (1<<24)");
|
||||
+static_assert((MS_STRICTATIME) == ((1U<<24)), "MS_STRICTATIME != (1U<<24)");
|
||||
DIAG_POP_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
#else
|
||||
-# define MS_STRICTATIME (1<<24)
|
||||
+# define MS_STRICTATIME (1U<<24)
|
||||
#endif
|
||||
#if defined(MS_LAZYTIME) || (defined(HAVE_DECL_MS_LAZYTIME) && HAVE_DECL_MS_LAZYTIME)
|
||||
DIAG_PUSH_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
-static_assert((MS_LAZYTIME) == ((1<<25)), "MS_LAZYTIME != (1<<25)");
|
||||
+static_assert((MS_LAZYTIME) == ((1U<<25)), "MS_LAZYTIME != (1U<<25)");
|
||||
DIAG_POP_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
#else
|
||||
-# define MS_LAZYTIME (1<<25)
|
||||
+# define MS_LAZYTIME (1U<<25)
|
||||
#endif
|
||||
#if defined(MS_SUBMOUNT) || (defined(HAVE_DECL_MS_SUBMOUNT) && HAVE_DECL_MS_SUBMOUNT)
|
||||
DIAG_PUSH_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
-static_assert((MS_SUBMOUNT) == ((1<<26)), "MS_SUBMOUNT != (1<<26)");
|
||||
+static_assert((MS_SUBMOUNT) == ((1U<<26)), "MS_SUBMOUNT != (1U<<26)");
|
||||
DIAG_POP_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
#else
|
||||
-# define MS_SUBMOUNT (1<<26)
|
||||
+# define MS_SUBMOUNT (1U<<26)
|
||||
#endif
|
||||
#if defined(MS_NOREMOTELOCK) || (defined(HAVE_DECL_MS_NOREMOTELOCK) && HAVE_DECL_MS_NOREMOTELOCK)
|
||||
DIAG_PUSH_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
-static_assert((MS_NOREMOTELOCK) == ((1<<27)), "MS_NOREMOTELOCK != (1<<27)");
|
||||
+static_assert((MS_NOREMOTELOCK) == ((1U<<27)), "MS_NOREMOTELOCK != (1U<<27)");
|
||||
DIAG_POP_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
#else
|
||||
-# define MS_NOREMOTELOCK (1<<27)
|
||||
+# define MS_NOREMOTELOCK (1U<<27)
|
||||
#endif
|
||||
#if defined(MS_NOSEC) || (defined(HAVE_DECL_MS_NOSEC) && HAVE_DECL_MS_NOSEC)
|
||||
DIAG_PUSH_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
-static_assert((MS_NOSEC) == ((1<<28)), "MS_NOSEC != (1<<28)");
|
||||
+static_assert((MS_NOSEC) == ((1U<<28)), "MS_NOSEC != (1U<<28)");
|
||||
DIAG_POP_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
#else
|
||||
-# define MS_NOSEC (1<<28)
|
||||
+# define MS_NOSEC (1U<<28)
|
||||
#endif
|
||||
#if defined(MS_BORN) || (defined(HAVE_DECL_MS_BORN) && HAVE_DECL_MS_BORN)
|
||||
DIAG_PUSH_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
-static_assert((MS_BORN) == ((1<<29)), "MS_BORN != (1<<29)");
|
||||
+static_assert((MS_BORN) == ((1U<<29)), "MS_BORN != (1U<<29)");
|
||||
DIAG_POP_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
#else
|
||||
-# define MS_BORN (1<<29)
|
||||
+# define MS_BORN (1U<<29)
|
||||
#endif
|
||||
#if defined(MS_ACTIVE) || (defined(HAVE_DECL_MS_ACTIVE) && HAVE_DECL_MS_ACTIVE)
|
||||
DIAG_PUSH_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
-static_assert((MS_ACTIVE) == ((1<<30)), "MS_ACTIVE != (1<<30)");
|
||||
+static_assert((MS_ACTIVE) == ((1U<<30)), "MS_ACTIVE != (1U<<30)");
|
||||
DIAG_POP_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
#else
|
||||
-# define MS_ACTIVE (1<<30)
|
||||
+# define MS_ACTIVE (1U<<30)
|
||||
#endif
|
||||
#if defined(MS_NOUSER) || (defined(HAVE_DECL_MS_NOUSER) && HAVE_DECL_MS_NOUSER)
|
||||
DIAG_PUSH_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
-static_assert((MS_NOUSER) == ((1<<31)), "MS_NOUSER != (1<<31)");
|
||||
+static_assert((MS_NOUSER) == ((1U<<31)), "MS_NOUSER != (1U<<31)");
|
||||
DIAG_POP_IGNORE_TAUTOLOGICAL_COMPARE
|
||||
#else
|
||||
-# define MS_NOUSER (1<<31)
|
||||
+# define MS_NOUSER (1U<<31)
|
||||
#endif
|
||||
|
||||
#ifndef XLAT_MACROS_ONLY
|
@ -0,0 +1,36 @@
|
||||
From 69b2c33a77fa687feb41fafdbe187013aa812384 Mon Sep 17 00:00:00 2001
|
||||
From: "Dmitry V. Levin" <ldv@altlinux.org>
|
||||
Date: Tue, 7 Jan 2020 18:54:55 +0000
|
||||
Subject: [PATCH] unwind-libdw: fix initialization of libdwfl cache
|
||||
|
||||
This fixes stack trace printing for early syscalls that precede
|
||||
the first syscall from memory mapping or execve families.
|
||||
|
||||
* unwind-libdw.c (tcb_init): Set struct ctx.last_proc_updating
|
||||
to a value different from mapping_generation so that libdwfl cache
|
||||
is properly initialized before the first use.
|
||||
* NEWS: Mention this fix.
|
||||
|
||||
Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1788636
|
||||
---
|
||||
Backport changes:
|
||||
- NEWS hunk has been dropped.
|
||||
|
||||
---
|
||||
NEWS | 2 ++
|
||||
unwind-libdw.c | 2 +-
|
||||
2 files changed, 3 insertions(+), 1 deletion(-)
|
||||
|
||||
Index: strace-4.24/unwind-libdw.c
|
||||
===================================================================
|
||||
--- strace-4.24.orig/unwind-libdw.c 2020-01-23 12:55:01.922338273 +0100
|
||||
+++ strace-4.24/unwind-libdw.c 2020-01-23 12:55:06.131299136 +0100
|
||||
@@ -69,7 +69,7 @@
|
||||
|
||||
struct ctx *ctx = xmalloc(sizeof(*ctx));
|
||||
ctx->dwfl = dwfl;
|
||||
- ctx->last_proc_updating = 0;
|
||||
+ ctx->last_proc_updating = mapping_generation - 1;
|
||||
return ctx;
|
||||
}
|
||||
|
@ -0,0 +1,42 @@
|
||||
From 35e080ae319d25c1df82855cda3a1bb014e90ba6 Mon Sep 17 00:00:00 2001
|
||||
From: "Dmitry V. Levin" <ldv@altlinux.org>
|
||||
Date: Wed, 8 Jan 2020 00:41:58 +0000
|
||||
Subject: [PATCH] syscall: do not capture stack trace while the tracee executes
|
||||
strace code
|
||||
|
||||
* syscall.c (syscall_entering_trace) [ENABLE_STACKTRACE]: Do not capture
|
||||
stack trace when TCB_CHECK_EXEC_SYSCALL flag is set.
|
||||
---
|
||||
syscall.c | 9 +++++----
|
||||
1 file changed, 5 insertions(+), 4 deletions(-)
|
||||
|
||||
diff --git a/syscall.c b/syscall.c
|
||||
index fadd3b5..a8fb4f1 100644
|
||||
--- a/syscall.c
|
||||
+++ b/syscall.c
|
||||
@@ -620,7 +620,7 @@ syscall_entering_trace(struct tcb *tcp, unsigned int *sig)
|
||||
if (hide_log(tcp)) {
|
||||
/*
|
||||
* Restrain from fault injection
|
||||
- * while the trace executes strace code.
|
||||
+ * while the tracee executes strace code.
|
||||
*/
|
||||
tcp->qual_flg &= ~QUAL_INJECT;
|
||||
|
||||
@@ -655,9 +655,10 @@ syscall_entering_trace(struct tcb *tcp, unsigned int *sig)
|
||||
}
|
||||
|
||||
#ifdef ENABLE_STACKTRACE
|
||||
- if (stack_trace_enabled) {
|
||||
- if (tcp_sysent(tcp)->sys_flags & STACKTRACE_CAPTURE_ON_ENTER)
|
||||
- unwind_tcb_capture(tcp);
|
||||
+ if (stack_trace_enabled &&
|
||||
+ !check_exec_syscall(tcp) &&
|
||||
+ tcp_sysent(tcp)->sys_flags & STACKTRACE_CAPTURE_ON_ENTER) {
|
||||
+ unwind_tcb_capture(tcp);
|
||||
}
|
||||
#endif
|
||||
|
||||
--
|
||||
2.1.4
|
||||
|
@ -0,0 +1,761 @@
|
||||
From 8e515c744935fe67e6a1b941f4c5414472c163b7 Mon Sep 17 00:00:00 2001
|
||||
From: Eugene Syromyatnikov <evgsyr@gmail.com>
|
||||
Date: Mon, 20 Jan 2020 16:19:40 +0100
|
||||
Subject: [PATCH] tests: add strace-k-p test
|
||||
|
||||
Add a check of the stack unwinding for attached processes.
|
||||
|
||||
* tests/stack-fcall-attach.c: New file.
|
||||
* tests/strace-k-p.expected: Likewise.
|
||||
* tests/strace-k-p.test: New test.
|
||||
* tests/Makefile.am (EXTRA_DIST): Add strace-k-p.expected and strace-k-p.test.
|
||||
(STACKTRACE_TESTS): Add strace-k-p.test
|
||||
(check_PROGRAMS): Add stack-fcall-attach.
|
||||
(stack_fcall_attach_SOURCES): New variable.
|
||||
* tests/stack-fcall.c: Include "tests.h" and <unistd.h>.
|
||||
[!ATTACH_MODE] (ATTACH_MODE): Define to 0.
|
||||
(main) [ATTACH_MODE]: Wait a bit.
|
||||
* tests/strace-k.test: Add attach mode.
|
||||
|
||||
Complements: v5.4-18-g69b2c33 "unwind-libdw: fix initialization of libdwfl cache"
|
||||
---
|
||||
Backport changes:
|
||||
* "SIGURG" line has been removed from tests/strace-k-p.expected, as it requires
|
||||
v4.25~22 "Print stack traces on signals" and v4.25~21 "tests: check stack
|
||||
unwinding for signals".
|
||||
* "chdir" usage in tests/strace-k-p.expected has been replaced with "getpid",
|
||||
as it is the syscall that was used in the stack-fcall.c at the time.
|
||||
* Added the respective changes to tests/Makefile.in file.
|
||||
* The changes to tests/stack-fcall-attach.c, tests/strace-k-p.expected,
|
||||
tests/strace-k-p.test, tests/Makefile.am, tests/stack-fcall.c,
|
||||
and tests/strace-k.test have been copied over to tests-m32 and tests-mx32
|
||||
directories.
|
||||
|
||||
---
|
||||
tests/Makefile.am | 8 +++++++-
|
||||
tests/stack-fcall-attach.c | 2 ++
|
||||
tests/stack-fcall.c | 11 +++++++++++
|
||||
tests/strace-k-p.expected | 2 ++
|
||||
tests/strace-k-p.test | 13 +++++++++++++
|
||||
tests/strace-k.test | 17 ++++++++++++++++-
|
||||
6 files changed, 51 insertions(+), 2 deletions(-)
|
||||
create mode 100644 tests/stack-fcall-attach.c
|
||||
create mode 100644 tests/strace-k-p.expected
|
||||
create mode 100755 tests/strace-k-p.test
|
||||
|
||||
Index: strace-5.1/tests/Makefile.am
|
||||
===================================================================
|
||||
--- strace-5.1.orig/tests/Makefile.am 2020-01-23 16:56:22.081268798 +0100
|
||||
+++ strace-5.1/tests/Makefile.am 2020-01-23 17:03:50.786051167 +0100
|
||||
@@ -156,6 +156,7 @@
|
||||
signal_receive \
|
||||
sleep \
|
||||
stack-fcall \
|
||||
+ stack-fcall-attach \
|
||||
stack-fcall-mangled \
|
||||
threads-execve \
|
||||
unblock_reset_raise \
|
||||
@@ -198,6 +199,9 @@
|
||||
stack_fcall_SOURCES = stack-fcall.c \
|
||||
stack-fcall-0.c stack-fcall-1.c stack-fcall-2.c stack-fcall-3.c
|
||||
|
||||
+stack_fcall_attach_SOURCES = stack-fcall-attach.c \
|
||||
+ stack-fcall-0.c stack-fcall-1.c stack-fcall-2.c stack-fcall-3.c
|
||||
+
|
||||
stack_fcall_mangled_SOURCES = stack-fcall-mangled.c \
|
||||
stack-fcall-mangled-0.c stack-fcall-mangled-1.c \
|
||||
stack-fcall-mangled-2.c stack-fcall-mangled-3.c
|
||||
@@ -205,7 +209,7 @@
|
||||
include gen_tests.am
|
||||
|
||||
if ENABLE_STACKTRACE
|
||||
-STACKTRACE_TESTS = strace-k.test
|
||||
+STACKTRACE_TESTS = strace-k.test strace-k-p.test
|
||||
if USE_DEMANGLE
|
||||
STACKTRACE_TESTS += strace-k-demangle.test
|
||||
endif
|
||||
@@ -428,6 +432,8 @@
|
||||
strace-ff.expected \
|
||||
strace-k-demangle.expected \
|
||||
strace-k-demangle.test \
|
||||
+ strace-k-p.expected \
|
||||
+ strace-k-p.test \
|
||||
strace-k.expected \
|
||||
strace-k.test \
|
||||
strace-r.expected \
|
||||
Index: strace-5.1/tests/stack-fcall-attach.c
|
||||
===================================================================
|
||||
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
|
||||
+++ strace-5.1/tests/stack-fcall-attach.c 2020-01-23 17:03:50.786051167 +0100
|
||||
@@ -0,0 +1,2 @@
|
||||
+#define ATTACH_MODE 1
|
||||
+#include "stack-fcall.c"
|
||||
Index: strace-5.1/tests/stack-fcall.c
|
||||
===================================================================
|
||||
--- strace-5.1.orig/tests/stack-fcall.c 2020-01-23 17:03:50.787051163 +0100
|
||||
+++ strace-5.1/tests/stack-fcall.c 2020-01-23 17:04:34.525868669 +0100
|
||||
@@ -5,10 +5,21 @@
|
||||
* SPDX-License-Identifier: GPL-2.0-or-later
|
||||
*/
|
||||
|
||||
+#include "tests.h"
|
||||
+#include <unistd.h>
|
||||
#include "stack-fcall.h"
|
||||
|
||||
+#ifndef ATTACH_MODE
|
||||
+# define ATTACH_MODE 0
|
||||
+#endif
|
||||
+
|
||||
int main(void)
|
||||
{
|
||||
+#if ATTACH_MODE
|
||||
+ /* sleep a bit to let the tracer time to catch up */
|
||||
+ sleep(1);
|
||||
+#endif
|
||||
+
|
||||
f0(0);
|
||||
f0(1);
|
||||
return 0;
|
||||
Index: strace-5.1/tests/strace-k-p.expected
|
||||
===================================================================
|
||||
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
|
||||
+++ strace-5.1/tests/strace-k-p.expected 2020-01-23 17:14:13.570831178 +0100
|
||||
@@ -0,0 +1,2 @@
|
||||
+^chdir .*(__kernel_vsyscaln )?(__)?chdir f3 f2 f1 f0 main
|
||||
+^SIGURG .*(__kernel_vsyscaln )?(__)?kill f3 f2 f1 f0 main
|
||||
Index: strace-5.1/tests/strace-k-p.test
|
||||
===================================================================
|
||||
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
|
||||
+++ strace-5.1/tests/strace-k-p.test 2020-01-23 17:03:50.787051163 +0100
|
||||
@@ -0,0 +1,13 @@
|
||||
+#!/bin/sh
|
||||
+#
|
||||
+# Check strace -k for attached tracees.
|
||||
+#
|
||||
+# Copyright (c) 2020 The strace developers.
|
||||
+# All rights reserved.
|
||||
+#
|
||||
+# SPDX-License-Identifier: GPL-2.0-or-later
|
||||
+
|
||||
+ATTACH_MODE=1
|
||||
+test_prog=../stack-fcall-attach
|
||||
+
|
||||
+. "${srcdir=.}"/strace-k.test
|
||||
Index: strace-5.1/tests/strace-k.test
|
||||
===================================================================
|
||||
--- strace-5.1.orig/tests/strace-k.test 2020-01-23 16:56:22.081268798 +0100
|
||||
+++ strace-5.1/tests/strace-k.test 2020-01-23 17:05:26.569651525 +0100
|
||||
@@ -11,6 +11,8 @@
|
||||
|
||||
. "${srcdir=.}/init.sh"
|
||||
|
||||
+: "${ATTACH_MODE=0}"
|
||||
+
|
||||
# strace -k is implemented using /proc/$pid/maps
|
||||
[ -f /proc/self/maps ] ||
|
||||
framework_skip_ '/proc/self/maps is not available'
|
||||
@@ -20,7 +22,19 @@
|
||||
check_prog tr
|
||||
|
||||
run_prog "${test_prog=../stack-fcall}"
|
||||
-run_strace -e chdir -k $args
|
||||
+if [ "x${ATTACH_MODE}" = "x1" ]; then
|
||||
+ ../set_ptracer_any "${test_prog}" >> "$EXP" &
|
||||
+ tracee_pid=$!
|
||||
+
|
||||
+ while ! [ -s "$EXP" ]; do
|
||||
+ kill -0 "$tracee_pid" 2> /dev/null ||
|
||||
+ fail_ 'set_ptracer_any failed'
|
||||
+ done
|
||||
+
|
||||
+ run_strace -e chdir -k -p "$tracee_pid"
|
||||
+else
|
||||
+ run_strace -e chdir -k $args
|
||||
+fi
|
||||
|
||||
expected="$srcdir/$NAME.expected"
|
||||
awk '
|
||||
Index: strace-5.1/tests/Makefile.in
|
||||
===================================================================
|
||||
--- strace-5.1.orig/tests/Makefile.in 2020-01-23 16:56:22.086268802 +0100
|
||||
+++ strace-5.1/tests/Makefile.in 2020-01-23 17:07:45.456135366 +0100
|
||||
@@ -144,9 +144,9 @@
|
||||
seccomp-strict$(EXEEXT) select-P$(EXEEXT) \
|
||||
set_ptracer_any$(EXEEXT) set_sigblock$(EXEEXT) \
|
||||
set_sigign$(EXEEXT) signal_receive$(EXEEXT) sleep$(EXEEXT) \
|
||||
- stack-fcall$(EXEEXT) stack-fcall-mangled$(EXEEXT) \
|
||||
- threads-execve$(EXEEXT) unblock_reset_raise$(EXEEXT) \
|
||||
- unix-pair-send-recv$(EXEEXT) \
|
||||
+ stack-fcall$(EXEEXT) stack-fcall-attach$(EXEEXT) \
|
||||
+ stack-fcall-mangled$(EXEEXT) threads-execve$(EXEEXT) \
|
||||
+ unblock_reset_raise$(EXEEXT) unix-pair-send-recv$(EXEEXT) \
|
||||
unix-pair-sendto-recvfrom$(EXEEXT) vfork-f$(EXEEXT) \
|
||||
wait4-v$(EXEEXT) waitid-v$(EXEEXT) zeroargc$(EXEEXT)
|
||||
@ENABLE_STACKTRACE_TRUE@@USE_DEMANGLE_TRUE@am__append_1 = strace-k-demangle.test
|
||||
@@ -2604,6 +2604,12 @@
|
||||
stack_fcall_OBJECTS = $(am_stack_fcall_OBJECTS)
|
||||
stack_fcall_LDADD = $(LDADD)
|
||||
stack_fcall_DEPENDENCIES = libtests.a
|
||||
+am_stack_fcall_attach_OBJECTS = stack-fcall-attach.$(OBJEXT) \
|
||||
+ stack-fcall-0.$(OBJEXT) stack-fcall-1.$(OBJEXT) \
|
||||
+ stack-fcall-2.$(OBJEXT) stack-fcall-3.$(OBJEXT)
|
||||
< |