From 8c0d2d2bc557ced86650ab48ab92cf58840efce8 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Wed, 1 Jul 2015 14:56:07 -0500 Subject: Improve -Z error reporting. The most likely reason for setfscreatecon to fail is that you don't have permission, and that's reported by the write return EACCES. There isn't really a "bad" context; they're just strings. Before: $ adb shell mkdir -Z x y mkdir: bad -Z 'x' After: $ adb shell mkdir -Z x y mkdir: -Z 'x' failed: Permission denied Other than this, the ToT mkdir works fine with SELinux. --- toys/posix/mkfifo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'toys/posix/mkfifo.c') diff --git a/toys/posix/mkfifo.c b/toys/posix/mkfifo.c index 7bc43cce..9aa3a3ae 100644 --- a/toys/posix/mkfifo.c +++ b/toys/posix/mkfifo.c @@ -43,7 +43,7 @@ void mkfifo_main(void) if (CFG_MKFIFO_Z && (toys.optflags&FLAG_Z)) if (0>lsm_set_create(TT.Z)) - error_exit("bad -Z '%s'", TT.Z); + perror_exit("-Z '%s' failed", TT.Z); for (s = toys.optargs; *s; s++) if (mknod(*s, S_IFIFO | TT.mode, 0) < 0) perror_msg("%s", *s); -- cgit v1.2.3