freebsd-skq/tools/test/stress2/misc/ptrace5.sh
Peter Holm 8a272653d9 stress2: Initial import
Discussed with:	 kib
2021-03-03 15:11:40 +01:00

201 lines
4.6 KiB
Bash
Executable File

#!/bin/sh
#
# Copyright (c) 2016 EMC Corp.
# 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.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``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 OR CONTRIBUTORS 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.
#
# It seems to be possible for ptrace(PT_ATTACH) to race with the delivery
# of a signal to the same process.
# "panic: Assertion TD_IS_SLEEPING(td) failed at subr_sleepqueue.c:958".
# https://people.freebsd.org/~pho/stress/log/ptrace5.txt
# https://people.freebsd.org/~pho/stress/log/ptrace5-2.txt
# Fixed by r303426.
. ../default.cfg
dir=/tmp
odir=`pwd`
cd $dir
sed '1,/^EOF/d' < $odir/$0 > $dir/ptrace5.c
mycc -o ptrace5 -Wall -Wextra -O0 -g ptrace5.c -pthread || exit 1
rm -f ptrace5.c
cd $odir
/tmp/ptrace5
s=$?
rm -rf /tmp/ptrace5
exit $s
EOF
#include <sys/param.h>
#include <sys/ptrace.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <err.h>
#include <errno.h>
#include <fcntl.h>
#include <pthread.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <unistd.h>
static pid_t pid;
static pthread_barrier_t barr;
static int cont;
#define PARALLEL 4
#define RUNTIME (5 * 60)
static void
ahandler(int i __unused)
{
system("ps -Hl");
fprintf(stderr, "SIGALRM pid %d\n", pid);
exit(1);
}
static void
handler(int i __unused)
{
}
static void *
t1(void *data __unused)
{
int status;
while (cont == 1) {
if (ptrace(PT_ATTACH, pid, 0, 0) == -1)
err(1, "ptrace(%d)", pid);
if (waitpid(pid, &status, 0) == -1)
err(1, "waitpid");
else if (!WIFSTOPPED(status))
errx(1, "failed to stop child");
if (ptrace(PT_DETACH, pid, 0, 0) == -1)
err(1, "ptrace");
usleep(arc4random() % 200);
}
return (NULL);
}
static void *
t2(void *data __unused)
{
while (cont == 1) {
if (kill(pid, SIGHUP) == -1)
err(1, "kill");
usleep(arc4random() % 200);
}
return (NULL);
}
static void
test(void)
{
pthread_t tid[2];
struct sigaction sa;
int r, status;
r = pthread_barrier_wait(&barr);
if (r != 0 && r != PTHREAD_BARRIER_SERIAL_THREAD)
errc(1, r, "pthread_barrier_wait");
sa.sa_handler = ahandler;
sigemptyset(&sa.sa_mask);
sa.sa_flags = 0;
if (sigaction(SIGALRM, &sa, NULL) == -1)
err(1, "sigaction");
alarm(2 * RUNTIME);
sa.sa_handler = handler;
sigemptyset(&sa.sa_mask);
sa.sa_flags = 0;
if (sigaction(SIGHUP, &sa, NULL) == -1)
err(1, "sigaction");
if ((pid = fork()) == 0) {
for(;;)
usleep(20);
_exit(0);
}
cont = 1;
if ((r = pthread_create(&tid[0], NULL, t1, NULL)) == -1)
errc(1, r, "pthread_create");
if ((r = pthread_create(&tid[1], NULL, t2, NULL)) == -1)
errc(1, r, "pthread_create");
sleep(RUNTIME);
cont = 0;
if ((r = pthread_join(tid[0], NULL)) == -1)
errc(1, r, "pthread_join");
if ((r = pthread_join(tid[1], NULL)) == -1)
errc(1, r, "pthread_join");
if (kill(pid, SIGKILL) != 0)
err(1, "kill(%d)", pid);
waitpid(pid, &status, 0);
exit(0);
}
int
main(void)
{
pthread_barrierattr_t attr;
int e, i, pids[PARALLEL], r, status;
if ((r = pthread_barrierattr_init(&attr)) != 0)
errc(1, r, "pthread_barrierattr_init");
if ((r = pthread_barrierattr_setpshared(&attr,
PTHREAD_PROCESS_SHARED)) != 0)
errc(1, r, "pthread_barrierattr_setpshared");
if ((r = pthread_barrier_init(&barr, &attr, PARALLEL)) != 0)
errc(1, r, "pthread_barrier_init");
e = 0;
for (i = 0; i < PARALLEL; i++) {
if ((pids[i] = fork()) == 0)
test();
}
for (i = 0; i < PARALLEL; i++) {
waitpid(pids[i], &status, 0);
e += status == 0 ? 0 : 1;
}
if ((r = pthread_barrier_destroy(&barr)) > 0)
errc(1, r, "pthread_barrier_destroy");
return (e);
}