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