1#!/bin/sh
2# SMACK test for the mkdir,mknod, mkfifo commands.
3# Derived from tests/mkdir/selinux.sh.
4# Ensure that SMACK label gets set.
5
6# Copyright (C) 2014-2023 Free Software Foundation, Inc.
7
8# This program is free software: you can redistribute it and/or modify
9# it under the terms of the GNU General Public License as published by
10# the Free Software Foundation, either version 3 of the License, or
11# (at your option) any later version.
12
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16# GNU General Public License for more details.
17
18# You should have received a copy of the GNU General Public License
19# along with this program.  If not, see <https://www.gnu.org/licenses/>.
20
21. "${srcdir=.}/tests/init.sh"; path_prepend_ ./src
22print_ver_ mkdir mkfifo mknod
23
24require_smack_
25require_root_
26
27c=arbitrary-smack-label
28
29for cmd in 'mkdir dir' 'mknod b p' 'mkfifo f'; do
30  $cmd --context="$c" || { fail=1; continue; }
31  set $cmd
32  ls -dZ $2 > out || fail=1
33  test "$(cut -f1 -d' ' out)" = "$c" || { cat out; fail=1; }
34done
35
36Exit $fail
37