Home | History | Annotate | Line # | Download | only in screenblank
screenblank.c revision 1.27
      1  1.27    martin /*	$NetBSD: screenblank.c,v 1.27 2008/04/28 20:24:17 martin Exp $	*/
      2   1.1   thorpej 
      3   1.2   thorpej /*-
      4  1.16     lukem  * Copyright (c) 1996-2002 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  *
     19   1.2   thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20   1.2   thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21   1.2   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22   1.6       jtc  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23   1.6       jtc  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24   1.2   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25   1.2   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26   1.2   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27   1.2   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28   1.2   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29   1.2   thorpej  * POSSIBILITY OF SUCH DAMAGE.
     30   1.1   thorpej  */
     31   1.1   thorpej 
     32   1.1   thorpej /*
     33  1.16     lukem  * Screensaver daemon for the Sun 3 and SPARC, and platforms using WSCONS.
     34   1.1   thorpej  */
     35   1.1   thorpej 
     36   1.5   thorpej #include <sys/cdefs.h>
     37   1.5   thorpej #ifndef lint
     38   1.5   thorpej __COPYRIGHT(
     39  1.16     lukem "@(#) Copyright (c) 1996-2002 \
     40   1.9   thorpej 	The NetBSD Foundation, Inc.  All rights reserved.");
     41  1.27    martin __RCSID("$NetBSD: screenblank.c,v 1.27 2008/04/28 20:24:17 martin Exp $");
     42   1.5   thorpej #endif
     43   1.5   thorpej 
     44   1.1   thorpej #include <sys/types.h>
     45   1.1   thorpej #include <sys/time.h>
     46   1.1   thorpej #include <sys/stat.h>
     47   1.1   thorpej #include <sys/ioctl.h>
     48   1.1   thorpej #include <sys/queue.h>
     49   1.1   thorpej #include <ctype.h>
     50   1.1   thorpej #include <err.h>
     51   1.1   thorpej #include <errno.h>
     52   1.1   thorpej #include <fcntl.h>
     53   1.1   thorpej #include <limits.h>
     54   1.1   thorpej #include <math.h>
     55   1.1   thorpej #include <paths.h>
     56   1.1   thorpej #include <stdlib.h>
     57   1.1   thorpej #include <stdio.h>
     58   1.1   thorpej #include <string.h>
     59   1.1   thorpej #include <signal.h>
     60  1.13  christos #include <syslog.h>
     61   1.1   thorpej #include <unistd.h>
     62  1.10   thorpej #include <util.h>
     63   1.1   thorpej 
     64   1.9   thorpej #include <dev/wscons/wsconsio.h>
     65   1.9   thorpej 
     66   1.9   thorpej #ifdef HAVE_FBIO
     67  1.12   thorpej #include <dev/sun/fbio.h>
     68   1.9   thorpej #endif
     69   1.1   thorpej 
     70   1.1   thorpej #include "pathnames.h"
     71   1.1   thorpej 
     72   1.9   thorpej u_long	setvideo = WSDISPLAYIO_SVIDEO;		/* "set video" ioctl */
     73   1.9   thorpej int	videoon  = WSDISPLAYIO_VIDEO_ON;	/* value for "on" */
     74   1.9   thorpej int	videooff = WSDISPLAYIO_VIDEO_OFF;	/* value for "off" */
     75   1.9   thorpej 
     76   1.1   thorpej struct	dev_stat {
     77   1.1   thorpej 	LIST_ENTRY(dev_stat) ds_link;	/* linked list */
     78   1.9   thorpej 	const char *ds_path;		/* path to device */
     79   1.1   thorpej 	int	ds_isfb;		/* boolean; framebuffer? */
     80   1.1   thorpej 	time_t	ds_atime;		/* time device last accessed */
     81   1.1   thorpej 	time_t	ds_mtime;		/* time device last modified */
     82   1.1   thorpej };
     83   1.1   thorpej LIST_HEAD(ds_list, dev_stat) ds_list;
     84   1.1   thorpej 
     85  1.13  christos int	main(int, char *[]);
     86  1.13  christos static	void add_dev(const char *, int);
     87  1.13  christos static	void change_state(int);
     88  1.19   mycroft static	void cvt_arg(char *, struct timespec *);
     89  1.13  christos static	void sighandler(int);
     90  1.22  christos static	int is_graphics_fb(struct dev_stat *);
     91  1.13  christos static	void usage(void);
     92   1.1   thorpej 
     93   1.1   thorpej int
     94  1.13  christos main(int argc, char *argv[])
     95   1.1   thorpej {
     96   1.1   thorpej 	struct dev_stat *dsp;
     97  1.19   mycroft 	struct timespec timo_on, timo_off, *tvp, tv;
     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.24      elad 	int bflag = 0, uflag = 0;
    102   1.9   thorpej 	const char *kbd, *mouse, *display;
    103   1.1   thorpej 
    104   1.1   thorpej 	LIST_INIT(&ds_list);
    105   1.1   thorpej 
    106   1.1   thorpej 	/*
    107   1.1   thorpej 	 * Set the default timeouts: 10 minutes on, .25 seconds off.
    108   1.1   thorpej 	 */
    109   1.1   thorpej 	timo_on.tv_sec = 600;
    110  1.19   mycroft 	timo_on.tv_nsec = 0;
    111   1.1   thorpej 	timo_off.tv_sec = 0;
    112  1.19   mycroft 	timo_off.tv_nsec = 250000000;
    113   1.1   thorpej 
    114  1.24      elad 	while ((ch = getopt(argc, argv, "bd:e:f:i:kmu")) != -1) {
    115   1.1   thorpej 		switch (ch) {
    116  1.24      elad 		case 'b':
    117  1.24      elad 			bflag = 1;
    118  1.24      elad 			uflag = 0;
    119  1.24      elad 			break;
    120  1.24      elad 
    121   1.1   thorpej 		case 'd':
    122   1.1   thorpej 			cvt_arg(optarg, &timo_on);
    123   1.1   thorpej 			break;
    124   1.1   thorpej 
    125   1.1   thorpej 		case 'e':
    126   1.1   thorpej 			cvt_arg(optarg, &timo_off);
    127   1.1   thorpej 			break;
    128   1.1   thorpej 
    129   1.1   thorpej 		case 'f':
    130   1.1   thorpej 			fflag = 1;
    131   1.1   thorpej 			add_dev(optarg, 1);
    132   1.1   thorpej 			break;
    133   1.1   thorpej 
    134  1.18     lukem 		case 'i':
    135  1.18     lukem 			add_dev(optarg, 0);
    136  1.18     lukem 			break;
    137  1.18     lukem 
    138   1.1   thorpej 		case 'k':
    139   1.1   thorpej 			if (mflag || kflag)
    140   1.1   thorpej 				usage();
    141   1.1   thorpej 			kflag = 1;
    142   1.1   thorpej 			break;
    143   1.1   thorpej 
    144   1.1   thorpej 		case 'm':
    145   1.1   thorpej 			if (kflag || mflag)
    146   1.1   thorpej 				usage();
    147   1.1   thorpej 			mflag = 1;
    148   1.1   thorpej 			break;
    149   1.1   thorpej 
    150  1.24      elad 		case 'u':
    151  1.24      elad 			uflag = 1;
    152  1.24      elad 			bflag = 0;
    153  1.24      elad 			break;
    154  1.24      elad 
    155   1.1   thorpej 		default:
    156   1.1   thorpej 			usage();
    157   1.1   thorpej 		}
    158   1.1   thorpej 	}
    159   1.1   thorpej 	argc -= optind;
    160   1.1   thorpej 	if (argc)
    161   1.1   thorpej 		usage();
    162   1.1   thorpej 
    163   1.1   thorpej 	/*
    164   1.9   thorpej 	 * Default to WSCONS support.
    165   1.9   thorpej 	 */
    166   1.9   thorpej 	kbd = _PATH_WSKBD;
    167   1.9   thorpej 	mouse = _PATH_WSMOUSE;
    168   1.9   thorpej 	display = _PATH_WSDISPLAY;
    169   1.9   thorpej 
    170   1.9   thorpej #ifdef HAVE_FBIO
    171   1.9   thorpej 	/*
    172   1.9   thorpej 	 * If a display device wasn't specified, check to see which we
    173   1.9   thorpej 	 * have.  If we can't open the WSCONS display, fall back to fbio.
    174   1.9   thorpej 	 */
    175   1.9   thorpej 	if (!fflag) {
    176   1.9   thorpej 		int fd;
    177   1.9   thorpej 
    178   1.9   thorpej 		if ((fd = open(display, O_RDONLY, 0666)) == -1)
    179   1.9   thorpej 			setvideo = FBIOSVIDEO;
    180   1.9   thorpej 		else
    181   1.9   thorpej 			(void) close(fd);
    182   1.9   thorpej 	}
    183   1.9   thorpej 
    184   1.9   thorpej 	/*
    185   1.9   thorpej 	 * Do this here so that -f ... args above can influence us.
    186   1.9   thorpej 	 */
    187   1.9   thorpej 	if (setvideo == FBIOSVIDEO) {
    188   1.9   thorpej 		videoon = FBVIDEO_ON;
    189   1.9   thorpej 		videooff = FBVIDEO_OFF;
    190   1.9   thorpej 		kbd = _PATH_KEYBOARD;
    191   1.9   thorpej 		mouse = _PATH_MOUSE;
    192   1.9   thorpej 		display = _PATH_FB;
    193   1.9   thorpej 	}
    194   1.9   thorpej #endif
    195   1.9   thorpej 
    196   1.9   thorpej 	/*
    197  1.26       uwe 	 * Add the default framebuffer device if necessary.
    198  1.26       uwe 	 * We _always_ check the console device.
    199  1.26       uwe 	 */
    200  1.26       uwe 	add_dev(_PATH_CONSOLE, 0);
    201  1.26       uwe 	if (!fflag)
    202  1.26       uwe 		add_dev(display, 1);
    203  1.26       uwe 
    204  1.26       uwe 	/*
    205  1.26       uwe 	 * If this is an one-off blank/unblank request, handle it now.
    206  1.26       uwe 	 * We don't need to open keyboard/mouse device for that.
    207  1.24      elad 	 */
    208  1.24      elad 	if (bflag || uflag) {
    209  1.24      elad 		change_state(bflag ? videooff : videoon);
    210  1.24      elad 		exit(0);
    211  1.24      elad 	}
    212  1.24      elad 
    213  1.26       uwe 
    214  1.26       uwe 	/* Add the keyboard and mouse devices as necessary. */
    215   1.1   thorpej 	if (!kflag)
    216   1.9   thorpej 		add_dev(kbd, 0);
    217   1.1   thorpej 	if (!mflag)
    218   1.9   thorpej 		add_dev(mouse, 0);
    219   1.1   thorpej 
    220   1.1   thorpej 	/* Ensure that the framebuffer is on. */
    221   1.9   thorpej 	state = videoon;
    222   1.1   thorpej 	change_state(state);
    223   1.1   thorpej 	tvp = &timo_on;
    224   1.1   thorpej 
    225   1.1   thorpej 	/*
    226   1.1   thorpej 	 * Make sure the framebuffer gets turned back on when we're
    227   1.1   thorpej 	 * killed.
    228   1.1   thorpej 	 */
    229   1.1   thorpej 	sa.sa_handler = sighandler;
    230   1.1   thorpej 	sa.sa_flags = SA_NOCLDSTOP;
    231   1.3   thorpej 	if (sigemptyset(&sa.sa_mask))
    232   1.3   thorpej 		err(1, "sigemptyset");
    233   1.1   thorpej 	if (sigaction(SIGINT, &sa, NULL) || sigaction(SIGTERM, &sa, NULL) ||
    234   1.1   thorpej 	    sigaction(SIGHUP, &sa, NULL))
    235   1.1   thorpej 		err(1, "sigaction");
    236   1.1   thorpej 
    237  1.13  christos 	openlog("screenblank", LOG_PID, LOG_DAEMON);
    238   1.1   thorpej 	/* Detach. */
    239   1.1   thorpej 	if (daemon(0, 0))
    240   1.1   thorpej 		err(1, "daemon");
    241  1.10   thorpej 	pidfile(NULL);
    242   1.1   thorpej 
    243   1.1   thorpej 	/* Start the state machine. */
    244   1.1   thorpej 	for (;;) {
    245   1.1   thorpej 		change = 0;
    246  1.23     peter 		LIST_FOREACH(dsp, &ds_list, ds_link) {
    247  1.22  christos 			/* Don't check framebuffers in graphics mode. */
    248  1.22  christos 			if (is_graphics_fb(dsp))
    249   1.1   thorpej 				continue;
    250  1.13  christos 			if (stat(dsp->ds_path, &st) == -1) {
    251  1.13  christos 				syslog(LOG_CRIT,
    252  1.13  christos 				    "Can't stat `%s' (%m)", dsp->ds_path);
    253  1.13  christos 				exit(1);
    254  1.13  christos 			}
    255   1.1   thorpej 			if (st.st_atime > dsp->ds_atime) {
    256   1.1   thorpej 				change = 1;
    257   1.1   thorpej 				dsp->ds_atime = st.st_atime;
    258   1.1   thorpej 			}
    259   1.1   thorpej 			if (st.st_mtime > dsp->ds_mtime) {
    260   1.1   thorpej 				change = 1;
    261   1.1   thorpej 				dsp->ds_mtime = st.st_mtime;
    262   1.1   thorpej 			}
    263   1.1   thorpej 		}
    264   1.1   thorpej 
    265   1.9   thorpej 		if (state == videoon) {
    266   1.1   thorpej 			if (!change) {
    267   1.9   thorpej 				state = videooff;
    268   1.1   thorpej 				change_state(state);
    269   1.1   thorpej 				tvp = &timo_off;
    270   1.1   thorpej 			}
    271   1.9   thorpej 		} else {
    272   1.1   thorpej 			if (change) {
    273   1.9   thorpej 				state = videoon;
    274   1.1   thorpej 				change_state(state);
    275   1.1   thorpej 				tvp = &timo_on;
    276   1.1   thorpej 			}
    277   1.1   thorpej 		}
    278   1.1   thorpej 
    279  1.13  christos 		tv = *tvp;
    280  1.19   mycroft 		if (nanosleep(&tv, NULL) == -1)
    281  1.19   mycroft 			err(1, "nanosleep");
    282   1.1   thorpej 	}
    283   1.1   thorpej 	/* NOTREACHED */
    284   1.1   thorpej }
    285   1.1   thorpej 
    286   1.1   thorpej static void
    287  1.13  christos add_dev(const char *path, int isfb)
    288   1.1   thorpej {
    289   1.9   thorpej 	struct dev_stat *dsp;
    290  1.14  augustss 	struct stat sb;
    291   1.9   thorpej 
    292  1.15  augustss 	/* Make sure we can stat the device. */
    293  1.14  augustss 	if (stat(path, &sb) == -1) {
    294  1.14  augustss 		warn("Can't stat `%s'", path);
    295  1.13  christos 		return;
    296  1.13  christos 	}
    297   1.9   thorpej 
    298   1.9   thorpej #ifdef HAVE_FBIO
    299   1.9   thorpej 	/*
    300   1.9   thorpej 	 * We default to WSCONS.  If this is a frame buffer
    301   1.9   thorpej 	 * device, check to see if it responds to the old
    302   1.9   thorpej 	 * Sun-style fbio ioctls.  If so, switch to fbio mode.
    303   1.9   thorpej 	 */
    304   1.9   thorpej 	if (isfb && setvideo != FBIOSVIDEO) {
    305  1.14  augustss 		int onoff, fd;
    306   1.9   thorpej 
    307  1.14  augustss 		if ((fd = open(path, O_RDWR, 0666)) == -1) {
    308  1.14  augustss 			warn("Can't open `%s'", path);
    309  1.14  augustss 			return;
    310  1.14  augustss 		}
    311   1.9   thorpej 		if ((ioctl(fd, FBIOGVIDEO, &onoff)) == 0)
    312   1.9   thorpej 			setvideo = FBIOSVIDEO;
    313  1.14  augustss 		(void)close(fd);
    314   1.9   thorpej 	}
    315   1.9   thorpej #endif
    316   1.1   thorpej 
    317   1.1   thorpej 	/* Create the entry... */
    318   1.9   thorpej 	dsp = malloc(sizeof(struct dev_stat));
    319   1.9   thorpej 	if (dsp == NULL)
    320  1.13  christos 		err(1, "Can't allocate memory for `%s'", path);
    321  1.13  christos 	(void)memset(dsp, 0, sizeof(struct dev_stat));
    322   1.9   thorpej 	dsp->ds_path = path;
    323   1.9   thorpej 	dsp->ds_isfb = isfb;
    324   1.1   thorpej 
    325   1.1   thorpej 	/* ...and put it in the list. */
    326   1.9   thorpej 	LIST_INSERT_HEAD(&ds_list, dsp, ds_link);
    327   1.1   thorpej }
    328   1.1   thorpej 
    329   1.1   thorpej /* ARGSUSED */
    330   1.1   thorpej static void
    331  1.13  christos sighandler(int sig)
    332   1.1   thorpej {
    333   1.1   thorpej 
    334   1.1   thorpej 	/* Kill the pid file and re-enable the framebuffer before exit. */
    335   1.9   thorpej 	change_state(videoon);
    336   1.1   thorpej 	exit(0);
    337   1.1   thorpej }
    338   1.1   thorpej 
    339  1.22  christos /*
    340  1.22  christos  * Return 1 if we are a framebuffer in graphics mode or a framebuffer
    341  1.22  christos  * where we cannot tell the mode. Return 0 if we are not a framebuffer
    342  1.22  christos  * device, or a wscons framebuffer in text mode.
    343  1.22  christos  */
    344  1.22  christos static int
    345  1.22  christos is_graphics_fb(struct dev_stat *dsp)
    346  1.22  christos {
    347  1.22  christos 	int fd;
    348  1.22  christos 	int state;
    349  1.22  christos 
    350  1.22  christos 	if (dsp->ds_isfb == 0)
    351  1.22  christos 		return 0;
    352  1.22  christos 
    353  1.22  christos 	/* We can't tell if we are not a wscons device */
    354  1.22  christos 	if (setvideo != WSDISPLAYIO_SVIDEO)
    355  1.22  christos 		return 1;
    356  1.22  christos 
    357  1.22  christos 	if ((fd = open(dsp->ds_path, O_RDWR, 0)) == -1) {
    358  1.22  christos 		syslog(LOG_WARNING, "Cannot open `%s' (%m)", dsp->ds_path);
    359  1.22  christos 		return 1;
    360  1.22  christos 	}
    361  1.22  christos 
    362  1.22  christos 	if (ioctl(fd, WSDISPLAYIO_GMODE, &state) == -1) {
    363  1.22  christos 		syslog(LOG_WARNING, "Cannot get mode on `%s' (%m)",
    364  1.22  christos 		    dsp->ds_path);
    365  1.22  christos 		/* We can't tell, so we say we are mapped */
    366  1.22  christos 		state = WSDISPLAYIO_MODE_MAPPED;
    367  1.22  christos 	}
    368  1.22  christos 
    369  1.22  christos 	(void)close(fd);
    370  1.22  christos 
    371  1.22  christos 	return state != WSDISPLAYIO_MODE_EMUL;
    372  1.22  christos }
    373  1.22  christos 
    374   1.1   thorpej static void
    375  1.13  christos change_state(int state)
    376   1.1   thorpej {
    377   1.1   thorpej 	struct dev_stat *dsp;
    378   1.1   thorpej 	int fd;
    379  1.13  christos 	int fail = 1;
    380   1.1   thorpej 
    381  1.23     peter 	LIST_FOREACH(dsp, &ds_list, ds_link) {
    382   1.1   thorpej 		/* Don't change the state of non-framebuffers! */
    383   1.1   thorpej 		if (dsp->ds_isfb == 0)
    384   1.1   thorpej 			continue;
    385  1.13  christos 		if ((fd = open(dsp->ds_path, O_RDWR, 0)) == -1) {
    386  1.13  christos 			syslog(LOG_WARNING, "Can't open `%s' (%m)",
    387  1.13  christos 			    dsp->ds_path);
    388   1.1   thorpej 			continue;
    389   1.1   thorpej 		}
    390  1.13  christos 		if (ioctl(fd, setvideo, &state) == -1)
    391  1.13  christos 			syslog(LOG_WARNING, "Can't set video on `%s' (%m)",
    392  1.13  christos 			    dsp->ds_path);
    393  1.13  christos 		else
    394  1.13  christos 			fail = 0;
    395   1.1   thorpej 		(void)close(fd);
    396   1.1   thorpej 	}
    397  1.13  christos 	if (fail) {
    398  1.13  christos 		syslog(LOG_CRIT, "No frame buffer devices, exiting\n");
    399  1.13  christos 		exit(1);
    400  1.13  christos 	}
    401   1.1   thorpej }
    402   1.1   thorpej 
    403   1.1   thorpej static void
    404  1.19   mycroft cvt_arg(char *arg, struct timespec *tvp)
    405   1.1   thorpej {
    406   1.1   thorpej 	char *cp;
    407  1.19   mycroft 	int seconds, nanoseconds, factor;
    408   1.1   thorpej 	int period = 0;
    409  1.19   mycroft 	factor = 1000000000;
    410  1.19   mycroft 	nanoseconds = 0;
    411   1.8        is 	seconds = 0;
    412   1.1   thorpej 
    413   1.1   thorpej 	for (cp = arg; *cp != '\0'; ++cp) {
    414   1.1   thorpej 		if (*cp == '.') {
    415   1.1   thorpej 			if (period)
    416  1.13  christos 				errx(1, "Invalid argument: %s", arg);
    417   1.1   thorpej 			period = 1;
    418   1.1   thorpej 			continue;
    419   1.1   thorpej 		}
    420   1.1   thorpej 
    421  1.21       dsl 		if (!isdigit((unsigned char)*cp))
    422  1.13  christos 			errx(1, "Invalid argument: %s", arg);
    423   1.1   thorpej 
    424   1.1   thorpej 		if (period) {
    425   1.8        is 			if (factor > 1) {
    426  1.19   mycroft 				nanoseconds = nanoseconds * 10 + (*cp - '0');
    427   1.8        is 				factor /= 10;
    428   1.8        is 			}
    429   1.1   thorpej 		} else
    430   1.8        is 			seconds = (seconds * 10) + (*cp - '0');
    431   1.1   thorpej 	}
    432   1.1   thorpej 
    433   1.8        is 	tvp->tv_sec = seconds;
    434   1.8        is 	if (factor > 1)
    435  1.19   mycroft 		nanoseconds *= factor;
    436  1.24      elad 
    437  1.19   mycroft 	tvp->tv_nsec = nanoseconds;
    438   1.1   thorpej }
    439   1.1   thorpej 
    440   1.1   thorpej static void
    441  1.13  christos usage(void)
    442   1.1   thorpej {
    443   1.1   thorpej 
    444  1.13  christos 	(void)fprintf(stderr,
    445  1.20      jmmv 	    "usage: %s [-k | -m] [-d inactivity-timeout] [-e wakeup-delay]\n"
    446  1.25       wiz 	    "\t\t[-f framebuffer] [-i input-device]\n"
    447  1.25       wiz 	    "       %s {-b | -u}\n",
    448  1.25       wiz 	    getprogname(),
    449  1.13  christos 	    getprogname());
    450   1.1   thorpej 	exit(1);
    451   1.1   thorpej }
    452