18a272653SPeter Holm#!/bin/sh 28a272653SPeter Holm 38a272653SPeter Holm# 4*4d846d26SWarner Losh# SPDX-License-Identifier: BSD-2-Clause 58a272653SPeter Holm# 68a272653SPeter Holm# Copyright (c) 2019 Dell EMC Isilon 78a272653SPeter Holm# 88a272653SPeter Holm# Redistribution and use in source and binary forms, with or without 98a272653SPeter Holm# modification, are permitted provided that the following conditions 108a272653SPeter Holm# are met: 118a272653SPeter Holm# 1. Redistributions of source code must retain the above copyright 128a272653SPeter Holm# notice, this list of conditions and the following disclaimer. 138a272653SPeter Holm# 2. Redistributions in binary form must reproduce the above copyright 148a272653SPeter Holm# notice, this list of conditions and the following disclaimer in the 158a272653SPeter Holm# documentation and/or other materials provided with the distribution. 168a272653SPeter Holm# 178a272653SPeter Holm# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 188a272653SPeter Holm# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 198a272653SPeter Holm# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 208a272653SPeter Holm# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 218a272653SPeter Holm# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 228a272653SPeter Holm# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 238a272653SPeter Holm# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 248a272653SPeter Holm# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 258a272653SPeter Holm# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 268a272653SPeter Holm# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 278a272653SPeter Holm# SUCH DAMAGE. 288a272653SPeter Holm# 298a272653SPeter Holm 308a272653SPeter Holm# vput: 0xfffff808d79c0278 is not locked but should be 318a272653SPeter Holm# KDB: enter: lock violation 328a272653SPeter Holm# Test scenario suggestions by kib@ and markj@ 338a272653SPeter Holm 348a272653SPeter Holm# Fixed by r348052. 358a272653SPeter Holm 368a272653SPeter Holm. ../default.cfg 378a272653SPeter Holm[ `id -u` -ne 0 ] && echo "Must be root!" && exit 1 388a272653SPeter Holm 398a272653SPeter Holmdir=/tmp 408a272653SPeter Holmodir=`pwd` 418a272653SPeter Holmcd $dir 428a272653SPeter Holmsed '1,/^EOF/d' < $odir/$0 > $dir/beneath3.c 438a272653SPeter Holmmycc -o beneath3 -Wall -Wextra -O0 -g beneath3.c || exit 1 448a272653SPeter Holmrm -f beneath3.c 458a272653SPeter Holmcd $odir 468a272653SPeter Holm 478a272653SPeter Holmset -e 488a272653SPeter Holmmount | grep "on $mntpoint " | grep -q /dev/md && umount -f $mntpoint 498a272653SPeter Holm[ -c /dev/md$mdstart ] && mdconfig -d -u $mdstart 508a272653SPeter Holmmdconfig -a -t swap -s 1g -u $mdstart 51608c97bfSPeter Holmnewfs $newfs_flags md$mdstart > /dev/null 52608c97bfSPeter Holmmount /dev/md$mdstart $mntpoint 538a272653SPeter Holmset +e 548a272653SPeter Holm 558a272653SPeter Holmcd $mntpoint 568a272653SPeter Holm(cd /usr; $dir/beneath3) 578a272653SPeter Holms=$? 588a272653SPeter Holm[ -f beneath3.core -a $s -eq 0 ] && 598a272653SPeter Holm { ls -l beneath3.core; mv beneath3.core $dir; s=1; } 608a272653SPeter Holmcd $odir 618a272653SPeter Holm 628a272653SPeter Holmfor i in `jot 6`; do 638a272653SPeter Holm mount | grep -q "on $mntpoint " || break 648a272653SPeter Holm umount $mntpoint && break || sleep 10 658a272653SPeter Holm [ $i -eq 6 ] && 668a272653SPeter Holm { echo FATAL; fstat -mf $mntpoint; exit 1; } 678a272653SPeter Holmdone 688a272653SPeter Holmmdconfig -d -u $mdstart 698a272653SPeter Holmrm -rf $dir/beneath3 708a272653SPeter Holmexit $s 718a272653SPeter Holm 728a272653SPeter HolmEOF 738a272653SPeter Holm#include <sys/types.h> 748a272653SPeter Holm 758a272653SPeter Holm#include <err.h> 768a272653SPeter Holm#include <errno.h> 778a272653SPeter Holm#include <fcntl.h> 788a272653SPeter Holm 798a272653SPeter Holmint 808a272653SPeter Holmmain(void) 818a272653SPeter Holm{ 828a272653SPeter Holm int fd; 838a272653SPeter Holm char file[] = "/.."; 848a272653SPeter Holm 858a272653SPeter Holm errno = 0; 86e0fd837aSPeter Holm fd = open(file, O_CREAT | O_RDONLY | O_RESOLVE_BENEATH); 878a272653SPeter Holm if (fd != -1 || errno != ENOTCAPABLE) 888a272653SPeter Holm err(1, "open(%s) returns %d", file, fd); 898a272653SPeter Holm 908a272653SPeter Holm return (0); 918a272653SPeter Holm} 92