99 lines
3.2 KiB
Bash
Executable File
99 lines
3.2 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
#
|
|
# SPDX-License-Identifier: BSD-2-Clause-FreeBSD
|
|
#
|
|
# Copyright (c) 2021 Peter Holm <pho@FreeBSD.org>
|
|
#
|
|
# 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.
|
|
#
|
|
|
|
# Regression test for
|
|
# https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=217435
|
|
# by Tim Newsham <tim newsham nccgroup trust>
|
|
|
|
# panic: Assertion size > 0 failed at ../../../kern/subr_vmem.c:1082
|
|
# cpuid = 2
|
|
# time = 1501182301
|
|
# KDB: stack backtrace:
|
|
# db_trace_self_wrapper() at db_trace_self_wrapper+0x2b/frame 0xfffffe0173117650
|
|
# vpanic() at vpanic+0x19c/frame 0xfffffe01731176d0
|
|
# kassert_panic() at kassert_panic+0x126/frame 0xfffffe0173117740
|
|
# vmem_alloc() at vmem_alloc+0x11b/frame 0xfffffe0173117780
|
|
# kmem_malloc() at kmem_malloc+0x33/frame 0xfffffe01731177b0
|
|
# uma_large_malloc() at uma_large_malloc+0x48/frame 0xfffffe01731177f0
|
|
# malloc() at malloc+0xe3/frame 0xfffffe0173117840
|
|
# ktrgenio() at ktrgenio+0x60/frame 0xfffffe0173117880
|
|
# sys_kevent() at sys_kevent+0x12f/frame 0xfffffe0173117930
|
|
# amd64_syscall() at amd64_syscall+0x7d2/frame 0xfffffe0173117ab0
|
|
|
|
# Fixed by r315155.
|
|
|
|
. ../default.cfg
|
|
|
|
cat > /tmp/kevent10.c <<EOF
|
|
#include <sys/param.h>
|
|
#include <sys/event.h>
|
|
#include <sys/time.h>
|
|
#include <sys/uio.h>
|
|
#include <sys/ktrace.h>
|
|
|
|
#include <err.h>
|
|
#include <errno.h>
|
|
#include <fcntl.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
|
|
int
|
|
main(void)
|
|
{
|
|
struct kevent changes;
|
|
struct kevent events;
|
|
char *fn = "/tmp/kevent10.trace";
|
|
|
|
if (open(fn, O_RDWR | O_CREAT, 0666) == -1)
|
|
err(1, "%s", fn);
|
|
if (ktrace(fn, KTRFLAG_DESCEND | KTROP_SET, KTRFAC_GENIO, 0) == -1)
|
|
err(1, "ktrace");
|
|
memset(&changes, 0, sizeof(struct kevent));
|
|
memset(&events, 0, sizeof(struct kevent));
|
|
if (kevent(0, &changes, -1, &events, 1, 0) == -1)
|
|
if (errno != EBADF)
|
|
err(1, "kevent");
|
|
if (ktrace(fn, KTROP_CLEARFILE, KTRFAC_GENIO, 0) == -1)
|
|
err(1, "ktrace clear");
|
|
|
|
return (0);
|
|
}
|
|
EOF
|
|
|
|
mycc -o /tmp/kevent10 -Wall -Wextra -O2 /tmp/kevent10.c || exit 1
|
|
rm /tmp/kevent10.c
|
|
|
|
/tmp/kevent10
|
|
s=$?
|
|
|
|
rm /tmp/kevent10 /tmp/kevent10.trace
|
|
exit $s
|