screenblank.c revision 1.8 1 1.8 is /* $NetBSD: screenblank.c,v 1.8 1998/05/14 21:49:13 is Exp $ */
2 1.1 thorpej
3 1.2 thorpej /*-
4 1.2 thorpej * Copyright (c) 1996 The NetBSD Foundation, Inc.
5 1.1 thorpej * All rights reserved.
6 1.1 thorpej *
7 1.2 thorpej * This code is derived from software contributed to The NetBSD Foundation
8 1.2 thorpej * by Jason R. Thorpe.
9 1.2 thorpej *
10 1.1 thorpej * Redistribution and use in source and binary forms, with or without
11 1.1 thorpej * modification, are permitted provided that the following conditions
12 1.1 thorpej * are met:
13 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
14 1.1 thorpej * notice, this list of conditions and the following disclaimer.
15 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 thorpej * notice, this list of conditions and the following disclaimer in the
17 1.1 thorpej * documentation and/or other materials provided with the distribution.
18 1.1 thorpej * 3. All advertising materials mentioning features or use of this software
19 1.1 thorpej * must display the following acknowledgement:
20 1.2 thorpej * This product includes software developed by the NetBSD
21 1.2 thorpej * Foundation, Inc. and its contributors.
22 1.2 thorpej * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.2 thorpej * contributors may be used to endorse or promote products derived
24 1.2 thorpej * from this software without specific prior written permission.
25 1.1 thorpej *
26 1.2 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.2 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.2 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.6 jtc * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.6 jtc * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.2 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.2 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.2 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.2 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.2 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.2 thorpej * POSSIBILITY OF SUCH DAMAGE.
37 1.1 thorpej */
38 1.1 thorpej
39 1.1 thorpej /*
40 1.1 thorpej * Screensaver daemon for the Sun 3 and SPARC.
41 1.1 thorpej */
42 1.1 thorpej
43 1.5 thorpej #include <sys/cdefs.h>
44 1.5 thorpej #ifndef lint
45 1.5 thorpej __COPYRIGHT(
46 1.5 thorpej "@(#) Copyright (c) 1996 The NetBSD Foundation, Inc. All rights reserved.");
47 1.8 is __RCSID("$NetBSD: screenblank.c,v 1.8 1998/05/14 21:49:13 is Exp $");
48 1.5 thorpej #endif
49 1.5 thorpej
50 1.1 thorpej #include <sys/types.h>
51 1.1 thorpej #include <sys/time.h>
52 1.1 thorpej #include <sys/stat.h>
53 1.1 thorpej #include <sys/ioctl.h>
54 1.1 thorpej #include <sys/queue.h>
55 1.1 thorpej #include <ctype.h>
56 1.1 thorpej #include <err.h>
57 1.1 thorpej #include <errno.h>
58 1.1 thorpej #include <fcntl.h>
59 1.1 thorpej #include <limits.h>
60 1.1 thorpej #include <math.h>
61 1.1 thorpej #include <paths.h>
62 1.1 thorpej #include <stdlib.h>
63 1.1 thorpej #include <stdio.h>
64 1.1 thorpej #include <string.h>
65 1.1 thorpej #include <signal.h>
66 1.1 thorpej #include <unistd.h>
67 1.1 thorpej
68 1.1 thorpej #include <machine/fbio.h>
69 1.1 thorpej
70 1.1 thorpej #include "pathnames.h"
71 1.1 thorpej
72 1.1 thorpej struct dev_stat {
73 1.1 thorpej LIST_ENTRY(dev_stat) ds_link; /* linked list */
74 1.1 thorpej char *ds_path; /* path to device */
75 1.1 thorpej int ds_isfb; /* boolean; framebuffer? */
76 1.1 thorpej time_t ds_atime; /* time device last accessed */
77 1.1 thorpej time_t ds_mtime; /* time device last modified */
78 1.1 thorpej };
79 1.1 thorpej LIST_HEAD(ds_list, dev_stat) ds_list;
80 1.1 thorpej
81 1.1 thorpej extern char *__progname;
82 1.1 thorpej
83 1.5 thorpej int main __P((int, char *[]));
84 1.1 thorpej static void add_dev __P((char *, int));
85 1.1 thorpej static void change_state __P((int));
86 1.1 thorpej static void cvt_arg __P((char *, struct timeval *));
87 1.1 thorpej static void logpid __P((void));
88 1.4 christos static void sighandler __P((int));
89 1.1 thorpej static void usage __P((void));
90 1.1 thorpej
91 1.1 thorpej int
92 1.1 thorpej main(argc, argv)
93 1.1 thorpej int argc;
94 1.5 thorpej char *argv[];
95 1.1 thorpej {
96 1.1 thorpej struct dev_stat *dsp;
97 1.1 thorpej struct timeval timo_on, timo_off, *tvp;
98 1.1 thorpej struct sigaction sa;
99 1.1 thorpej struct stat st;
100 1.1 thorpej int ch, change, fflag = 0, kflag = 0, mflag = 0, state;
101 1.1 thorpej
102 1.1 thorpej LIST_INIT(&ds_list);
103 1.1 thorpej
104 1.1 thorpej /*
105 1.1 thorpej * Set the default timeouts: 10 minutes on, .25 seconds off.
106 1.1 thorpej */
107 1.1 thorpej timo_on.tv_sec = 600;
108 1.1 thorpej timo_on.tv_usec = 0;
109 1.1 thorpej timo_off.tv_sec = 0;
110 1.1 thorpej timo_off.tv_usec = 250000;
111 1.1 thorpej
112 1.1 thorpej while ((ch = getopt(argc, argv, "d:e:f:km")) != -1) {
113 1.1 thorpej switch (ch) {
114 1.1 thorpej case 'd':
115 1.1 thorpej cvt_arg(optarg, &timo_on);
116 1.1 thorpej break;
117 1.1 thorpej
118 1.1 thorpej case 'e':
119 1.1 thorpej cvt_arg(optarg, &timo_off);
120 1.1 thorpej break;
121 1.1 thorpej
122 1.1 thorpej case 'f':
123 1.1 thorpej fflag = 1;
124 1.1 thorpej add_dev(optarg, 1);
125 1.1 thorpej break;
126 1.1 thorpej
127 1.1 thorpej case 'k':
128 1.1 thorpej if (mflag || kflag)
129 1.1 thorpej usage();
130 1.1 thorpej kflag = 1;
131 1.1 thorpej break;
132 1.1 thorpej
133 1.1 thorpej case 'm':
134 1.1 thorpej if (kflag || mflag)
135 1.1 thorpej usage();
136 1.1 thorpej mflag = 1;
137 1.1 thorpej break;
138 1.1 thorpej
139 1.1 thorpej default:
140 1.1 thorpej usage();
141 1.1 thorpej }
142 1.1 thorpej }
143 1.1 thorpej argc -= optind;
144 1.1 thorpej if (argc)
145 1.1 thorpej usage();
146 1.1 thorpej
147 1.1 thorpej /*
148 1.1 thorpej * Add the keyboard, mouse, and default framebuffer devices
149 1.1 thorpej * as necessary. We _always_ check the console device.
150 1.1 thorpej */
151 1.1 thorpej add_dev(_PATH_CONSOLE, 0);
152 1.1 thorpej if (!kflag)
153 1.1 thorpej add_dev(_PATH_KEYBOARD, 0);
154 1.1 thorpej if (!mflag)
155 1.1 thorpej add_dev(_PATH_MOUSE, 0);
156 1.1 thorpej if (!fflag)
157 1.1 thorpej add_dev(_PATH_FB, 1);
158 1.1 thorpej
159 1.1 thorpej /* Ensure that the framebuffer is on. */
160 1.1 thorpej state = FBVIDEO_ON;
161 1.1 thorpej change_state(state);
162 1.1 thorpej tvp = &timo_on;
163 1.1 thorpej
164 1.1 thorpej /*
165 1.1 thorpej * Make sure the framebuffer gets turned back on when we're
166 1.1 thorpej * killed.
167 1.1 thorpej */
168 1.1 thorpej sa.sa_handler = sighandler;
169 1.1 thorpej sa.sa_flags = SA_NOCLDSTOP;
170 1.3 thorpej if (sigemptyset(&sa.sa_mask))
171 1.3 thorpej err(1, "sigemptyset");
172 1.1 thorpej if (sigaction(SIGINT, &sa, NULL) || sigaction(SIGTERM, &sa, NULL) ||
173 1.1 thorpej sigaction(SIGHUP, &sa, NULL))
174 1.1 thorpej err(1, "sigaction");
175 1.1 thorpej
176 1.1 thorpej /* Detach. */
177 1.1 thorpej if (daemon(0, 0))
178 1.1 thorpej err(1, "daemon");
179 1.1 thorpej logpid();
180 1.1 thorpej
181 1.1 thorpej /* Start the state machine. */
182 1.1 thorpej for (;;) {
183 1.1 thorpej change = 0;
184 1.1 thorpej for (dsp = ds_list.lh_first; dsp != NULL;
185 1.1 thorpej dsp = dsp->ds_link.le_next) {
186 1.1 thorpej /* Don't check framebuffers. */
187 1.1 thorpej if (dsp->ds_isfb)
188 1.1 thorpej continue;
189 1.1 thorpej if (stat(dsp->ds_path, &st) < 0)
190 1.1 thorpej err(1, "stat: %s", dsp->ds_path);
191 1.1 thorpej if (st.st_atime > dsp->ds_atime) {
192 1.1 thorpej change = 1;
193 1.1 thorpej dsp->ds_atime = st.st_atime;
194 1.1 thorpej }
195 1.1 thorpej if (st.st_mtime > dsp->ds_mtime) {
196 1.1 thorpej change = 1;
197 1.1 thorpej dsp->ds_mtime = st.st_mtime;
198 1.1 thorpej }
199 1.1 thorpej }
200 1.1 thorpej
201 1.1 thorpej switch (state) {
202 1.1 thorpej case FBVIDEO_ON:
203 1.1 thorpej if (!change) {
204 1.1 thorpej state = FBVIDEO_OFF;
205 1.1 thorpej change_state(state);
206 1.1 thorpej tvp = &timo_off;
207 1.1 thorpej }
208 1.1 thorpej break;
209 1.1 thorpej
210 1.1 thorpej case FBVIDEO_OFF:
211 1.1 thorpej if (change) {
212 1.1 thorpej state = FBVIDEO_ON;
213 1.1 thorpej change_state(state);
214 1.1 thorpej tvp = &timo_on;
215 1.1 thorpej }
216 1.1 thorpej break;
217 1.1 thorpej }
218 1.1 thorpej
219 1.1 thorpej if (select(0, NULL, NULL, NULL, tvp) < 0)
220 1.1 thorpej err(1, "select");
221 1.1 thorpej }
222 1.1 thorpej /* NOTREACHED */
223 1.1 thorpej }
224 1.1 thorpej
225 1.1 thorpej static void
226 1.1 thorpej add_dev(path, isfb)
227 1.1 thorpej char *path;
228 1.1 thorpej int isfb;
229 1.1 thorpej {
230 1.1 thorpej struct dev_stat *dsp1, *dsp2;
231 1.1 thorpej
232 1.1 thorpej /* Create the entry... */
233 1.1 thorpej dsp1 = malloc(sizeof(struct dev_stat));
234 1.1 thorpej if (dsp1 == NULL)
235 1.1 thorpej errx(1, "can't allocate memory for %s", path);
236 1.7 lukem memset(dsp1, 0, sizeof(struct dev_stat));
237 1.1 thorpej dsp1->ds_path = path;
238 1.1 thorpej dsp1->ds_isfb = isfb;
239 1.1 thorpej
240 1.1 thorpej /* ...and put it in the list. */
241 1.1 thorpej if (ds_list.lh_first == NULL) {
242 1.1 thorpej LIST_INSERT_HEAD(&ds_list, dsp1, ds_link);
243 1.1 thorpej } else {
244 1.1 thorpej for (dsp2 = ds_list.lh_first; dsp2->ds_link.le_next != NULL;
245 1.1 thorpej dsp2 = dsp2->ds_link.le_next)
246 1.1 thorpej /* Nothing. */ ;
247 1.1 thorpej LIST_INSERT_AFTER(dsp2, dsp1, ds_link);
248 1.1 thorpej }
249 1.1 thorpej }
250 1.1 thorpej
251 1.1 thorpej /* ARGSUSED */
252 1.1 thorpej static void
253 1.4 christos sighandler(sig)
254 1.4 christos int sig;
255 1.1 thorpej {
256 1.1 thorpej
257 1.1 thorpej /* Kill the pid file and re-enable the framebuffer before exit. */
258 1.1 thorpej (void)unlink(_PATH_SCREENBLANKPID);
259 1.1 thorpej change_state(FBVIDEO_ON);
260 1.1 thorpej exit(0);
261 1.1 thorpej }
262 1.1 thorpej
263 1.1 thorpej static void
264 1.1 thorpej change_state(state)
265 1.1 thorpej int state;
266 1.1 thorpej {
267 1.1 thorpej struct dev_stat *dsp;
268 1.1 thorpej int fd;
269 1.1 thorpej
270 1.1 thorpej for (dsp = ds_list.lh_first; dsp != NULL; dsp = dsp->ds_link.le_next) {
271 1.1 thorpej /* Don't change the state of non-framebuffers! */
272 1.1 thorpej if (dsp->ds_isfb == 0)
273 1.1 thorpej continue;
274 1.1 thorpej if ((fd = open(dsp->ds_path, O_RDWR, 0)) < 0) {
275 1.1 thorpej warn("open: %s", dsp->ds_path);
276 1.1 thorpej continue;
277 1.1 thorpej }
278 1.1 thorpej if (ioctl(fd, FBIOSVIDEO, &state) < 0)
279 1.1 thorpej warn("ioctl: %s", dsp->ds_path);
280 1.1 thorpej (void)close(fd);
281 1.1 thorpej }
282 1.1 thorpej }
283 1.1 thorpej
284 1.1 thorpej static void
285 1.1 thorpej cvt_arg(arg, tvp)
286 1.1 thorpej char *arg;
287 1.1 thorpej struct timeval *tvp;
288 1.1 thorpej {
289 1.1 thorpej char *cp;
290 1.8 is int seconds, microseconds, factor;
291 1.1 thorpej int period = 0;
292 1.8 is factor = 1000000;
293 1.8 is microseconds = 0;
294 1.8 is seconds = 0;
295 1.1 thorpej
296 1.1 thorpej for (cp = arg; *cp != '\0'; ++cp) {
297 1.1 thorpej if (*cp == '.') {
298 1.1 thorpej if (period)
299 1.1 thorpej errx(1, "invalid argument: %s", arg);
300 1.1 thorpej period = 1;
301 1.1 thorpej continue;
302 1.1 thorpej }
303 1.1 thorpej
304 1.1 thorpej if (!isdigit(*cp))
305 1.1 thorpej errx(1, "invalid argument: %s", arg);
306 1.1 thorpej
307 1.1 thorpej if (period) {
308 1.8 is if (factor > 1) {
309 1.8 is microseconds = microseconds * 10 + (*cp - '0');
310 1.8 is factor /= 10;
311 1.8 is }
312 1.1 thorpej } else
313 1.8 is seconds = (seconds * 10) + (*cp - '0');
314 1.1 thorpej }
315 1.1 thorpej
316 1.8 is tvp->tv_sec = seconds;
317 1.8 is if (factor > 1)
318 1.8 is microseconds *= factor;
319 1.8 is
320 1.8 is tvp->tv_usec = microseconds;
321 1.1 thorpej }
322 1.1 thorpej
323 1.1 thorpej static void
324 1.1 thorpej logpid()
325 1.1 thorpej {
326 1.1 thorpej FILE *fp;
327 1.1 thorpej
328 1.1 thorpej if ((fp = fopen(_PATH_SCREENBLANKPID, "w")) != NULL) {
329 1.1 thorpej fprintf(fp, "%u\n", getpid());
330 1.1 thorpej (void)fclose(fp);
331 1.1 thorpej }
332 1.1 thorpej }
333 1.1 thorpej
334 1.1 thorpej static void
335 1.1 thorpej usage()
336 1.1 thorpej {
337 1.1 thorpej
338 1.1 thorpej fprintf(stderr, "usage: %s [-k | -m] [-d timeout] [-e timeout] %s\n",
339 1.1 thorpej __progname, "[-f framebuffer]");
340 1.1 thorpej exit(1);
341 1.1 thorpej }
342