xref: /freebsd/sbin/conscontrol/conscontrol.c (revision 39beb93c)
1 /*-
2  * Copyright (c) 2001 Jonathan Lemon <jlemon@FreeBSD.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  */
26 
27 #include <sys/cdefs.h>
28 __FBSDID("$FreeBSD$");
29 
30 #include <sys/types.h>
31 #include <sys/sysctl.h>
32 #include <sys/ioctl.h>
33 #include <sys/ttycom.h>
34 
35 #include <err.h>
36 #include <errno.h>
37 #include <fcntl.h>
38 #include <stdio.h>
39 #include <stdlib.h>
40 #include <string.h>
41 #include <unistd.h>
42 
43 #define DEVDIR	"/dev/"
44 
45 static void __dead2
46 usage(void)
47 {
48 
49 	(void)fprintf(stderr, "%s\n%s\n%s\n%s\n",
50 	    "usage: conscontrol [list]",
51 	    "       conscontrol mute on | off",
52 	    "       conscontrol add | delete console",
53 	    "       conscontrol set console | unset");
54 	exit(1);
55 }
56 
57 static void
58 consstatus(void)
59 {
60 	int mute;
61 	size_t len;
62 	char *buf, *p, *avail;
63 
64 	len = sizeof(mute);
65 	if (sysctlbyname("kern.consmute", &mute, &len, NULL, 0) == -1)
66 		err(1, "kern.consmute retrieval failed");
67 	if (sysctlbyname("kern.console", NULL, &len, NULL, 0) == -1)
68 		err(1, "kern.console estimate failed");
69 	if ((buf = malloc(len)) == NULL)
70 		errx(1, "kern.console malloc failed");
71 	if (sysctlbyname("kern.console", buf, &len, NULL, 0) == -1)
72 		err(1, "kern.console retrieval failed");
73 	if ((avail = strchr(buf, '/')) == NULL)
74 		errx(1, "kern.console format not understood");
75 	p = avail;
76 	*avail++ = '\0';
77 	if (p != buf)
78 		*--p = '\0';			/* remove trailing ',' */
79 	p = avail + strlen(avail);
80 	if (p != avail)
81 		*--p = '\0';			/* remove trailing ',' */
82 	printf("Configured: %s\n", buf);
83 	printf(" Available: %s\n", avail);
84 	printf("    Muting: %s\n", mute ? "on" : "off");
85 	free(buf);
86 }
87 
88 static void
89 consmute(const char *onoff)
90 {
91 	int mute;
92 	size_t len;
93 
94 	if (strcmp(onoff, "on") == 0)
95 		mute = 1;
96 	else if (strcmp(onoff, "off") == 0)
97 		mute = 0;
98 	else
99 		usage();
100 	len = sizeof(mute);
101 	if (sysctlbyname("kern.consmute", NULL, NULL, &mute, len) == -1)
102 		err(1, "could not change console muting");
103 }
104 
105 /*
106  * The name we supply to the sysctls should be an entry in /dev.  If
107  * the user has specified the full pathname in /dev, DTRT.  If he
108  * specifies a name in some other directory, it's an error.
109  */
110 
111 static char*
112 stripdev(char *devnam)
113 {
114 	if (memcmp (devnam, DEVDIR, strlen(DEVDIR)) == 0)
115 		return (&devnam[strlen(DEVDIR)]);	    /* remove /dev */
116 	else if (strchr (devnam, '/')) {
117 		fprintf(stderr, "Not a device in /dev: %s\n", devnam);
118 		return (NULL);				    /* end of string */
119 	} else
120 		return (devnam);			    /* passed */
121 }
122 
123 static void
124 consadd(char *devnam)
125 {
126 	size_t len;
127 
128 	devnam = stripdev(devnam);
129 	if (devnam == NULL)
130 		return;
131 	len = strlen(devnam);
132 	if (sysctlbyname("kern.console", NULL, NULL, devnam, len) == -1)
133 		err(1, "could not add %s as a console", devnam);
134 }
135 
136 static void
137 consdel(char *devnam)
138 {
139 	char *buf;
140 	size_t len;
141 
142 	devnam = stripdev(devnam);
143 	if (devnam == NULL)
144 		return;
145 	len = strlen(devnam) + sizeof("-");
146 	if ((buf = malloc(len)) == NULL)
147 		errx(1, "malloc failed");
148 	buf[0] = '-';
149 	strcpy(buf + 1, devnam);
150 	if (sysctlbyname("kern.console", NULL, NULL, buf, len) == -1)
151 		err(1, "could not remove %s as a console", devnam);
152 	free(buf);
153 }
154 
155 static void
156 consset(char *devnam)
157 {
158 	int ttyfd, flag = 1;
159 
160 	ttyfd = open(devnam, O_RDONLY);
161 	if (ttyfd == -1)
162 		err(1, "opening %s", devnam);
163 	if (ioctl(ttyfd, TIOCCONS, &flag) == -1)
164 		err(1, "could not set %s as virtual console", devnam);
165 	close(ttyfd);
166 }
167 
168 static void
169 consunset(void)
170 {
171 	int ttyfd, flag = 0;
172 
173 	ttyfd = open(DEVDIR "console", O_RDONLY);
174 	if (ttyfd == -1)
175 		err(1, "opening virtual console");
176 	if (ioctl(ttyfd, TIOCCONS, &flag) == -1)
177 		err(1, "could not unset virtual console");
178 	close(ttyfd);
179 }
180 
181 int
182 main(int argc, char **argv)
183 {
184 
185 	if (getopt(argc, argv, "") != -1)
186 		usage();
187 	argc -= optind;
188 	argv += optind;
189 
190 	if (argc > 0 && strcmp(argv[0], "list") != 0) {
191 		if (argc == 1 && strcmp(argv[0], "unset") == 0)
192 			consunset();
193 		else if (argc != 2)
194 			usage();
195 		else if (strcmp(argv[0], "mute") == 0)
196 			consmute(argv[1]);
197 		else if (strcmp(argv[0], "add") == 0)
198 			consadd(argv[1]);
199 		else if (strcmp(argv[0], "delete") == 0)
200 			consdel(argv[1]);
201 		else if (strcmp(argv[0], "set") == 0)
202 			consset(argv[1]);
203 		else
204 			usage();
205 	}
206 	consstatus();
207 	exit(0);
208 }
209