zdb: fix printf format in dump_zap()
[zfs.git] / tests / zfs-tests / cmd / suid_write_to_file.c
blob1a8157aa564fff90d9bf7217ff30dea9e7526912
1 /*
2 * CDDL HEADER START
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or https://opensource.org/licenses/CDDL-1.0.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
19 * CDDL HEADER END
22 * Copyright (c) 2019 by Tomohiro Kusumi. All rights reserved.
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <sys/types.h>
29 #include <sys/stat.h>
30 #include <unistd.h>
31 #include <fcntl.h>
32 #include <stdbool.h>
34 int
35 main(int argc, char *argv[])
37 const char *name, *phase;
38 mode_t extra;
39 struct stat st;
41 if (argc < 3) {
42 fprintf(stderr, "Invalid argc\n");
43 exit(1);
46 name = argv[1];
47 if (strcmp(name, "SUID") == 0) {
48 extra = S_ISUID;
49 } else if (strcmp(name, "SGID") == 0) {
50 extra = S_ISGID;
51 } else if (strcmp(name, "SUID_SGID") == 0) {
52 extra = S_ISUID | S_ISGID;
53 } else if (strcmp(name, "NONE") == 0) {
54 extra = 0;
55 } else {
56 fprintf(stderr, "Invalid name %s\n", name);
57 exit(1);
60 const char *testdir = getenv("TESTDIR");
61 if (!testdir) {
62 fprintf(stderr, "getenv(TESTDIR)\n");
63 exit(1);
66 umask(0);
67 if (stat(testdir, &st) == -1 && mkdir(testdir, 0777) == -1) {
68 perror("mkdir");
69 exit(2);
72 char fpath[1024];
73 snprintf(fpath, sizeof (fpath), "%s/%s", testdir, name);
76 phase = argv[2];
77 if (strcmp(phase, "PRECRASH") == 0) {
79 /* clean up last run */
80 unlink(fpath);
81 if (stat(fpath, &st) == 0) {
82 fprintf(stderr, "%s exists\n", fpath);
83 exit(3);
86 int fd;
88 fd = creat(fpath, 0777 | extra);
89 if (fd == -1) {
90 perror("creat");
91 exit(4);
93 close(fd);
95 if (setuid(65534) == -1) {
96 perror("setuid");
97 exit(5);
100 fd = open(fpath, O_RDWR);
101 if (fd == -1) {
102 perror("open");
103 exit(6);
106 const char buf[] = "test";
107 if (write(fd, buf, sizeof (buf)) == -1) {
108 perror("write");
109 exit(7);
111 close(fd);
113 } else if (strcmp(phase, "REPLAY") == 0) {
114 /* created in PRECRASH run */
115 } else {
116 fprintf(stderr, "Invalid phase %s\n", phase);
117 exit(1);
120 if (stat(fpath, &st) == -1) {
121 perror("stat");
122 exit(8);
125 /* Verify SUID/SGID are dropped */
126 mode_t res = st.st_mode & (0777 | S_ISUID | S_ISGID);
127 if (res != 0777) {
128 fprintf(stderr, "stat(2) %o\n", res);
129 exit(9);
132 return (0);