9ab7ae6e050586f2620f9502721b1c99da7a131d
[xscreensaver] / driver / timers.c
1 /* timers.c --- detecting when the user is idle, and other timer-related tasks.
2  * xscreensaver, Copyright (c) 1991-2008 Jamie Zawinski <jwz@jwz.org>
3  *
4  * Permission to use, copy, modify, distribute, and sell this software and its
5  * documentation for any purpose is hereby granted without fee, provided that
6  * the above copyright notice appear in all copies and that both that
7  * copyright notice and this permission notice appear in supporting
8  * documentation.  No representations are made about the suitability of this
9  * software for any purpose.  It is provided "as is" without express or 
10  * implied warranty.
11  */
12
13 #ifdef HAVE_CONFIG_H
14 # include "config.h"
15 #endif
16
17 #include <stdio.h>
18 #include <X11/Xlib.h>
19 #include <X11/Intrinsic.h>
20 #include <X11/Xos.h>
21 #include <time.h>
22 #include <sys/time.h>
23 #ifdef HAVE_XMU
24 # ifndef VMS
25 #  include <X11/Xmu/Error.h>
26 # else /* VMS */
27 #  include <Xmu/Error.h>
28 # endif /* VMS */
29 # else /* !HAVE_XMU */
30 # include "xmu.h"
31 #endif /* !HAVE_XMU */
32
33 #ifdef HAVE_XIDLE_EXTENSION
34 #include <X11/extensions/xidle.h>
35 #endif /* HAVE_XIDLE_EXTENSION */
36
37 #ifdef HAVE_MIT_SAVER_EXTENSION
38 #include <X11/extensions/scrnsaver.h>
39 #endif /* HAVE_MIT_SAVER_EXTENSION */
40
41 #ifdef HAVE_SGI_SAVER_EXTENSION
42 #include <X11/extensions/XScreenSaver.h>
43 #endif /* HAVE_SGI_SAVER_EXTENSION */
44
45 #ifdef HAVE_RANDR
46 #include <X11/extensions/Xrandr.h>
47 #endif /* HAVE_RANDR */
48
49 #include "xscreensaver.h"
50
51 #undef ABS
52 #define ABS(x)((x)<0?-(x):(x))
53
54 #undef MAX
55 #define MAX(x,y)((x)>(y)?(x):(y))
56
57
58 #ifdef HAVE_PROC_INTERRUPTS
59 static Bool proc_interrupts_activity_p (saver_info *si);
60 #endif /* HAVE_PROC_INTERRUPTS */
61
62 static void check_for_clock_skew (saver_info *si);
63
64
65 void
66 idle_timer (XtPointer closure, XtIntervalId *id)
67 {
68   saver_info *si = (saver_info *) closure;
69
70   /* What an amazingly shitty design.  Not only does Xt execute timeout
71      events from XtAppNextEvent() instead of from XtDispatchEvent(), but
72      there is no way to tell Xt to block until there is an X event OR a
73      timeout happens.  Once your timeout proc is called, XtAppNextEvent()
74      still won't return until a "real" X event comes in.
75
76      So this function pushes a stupid, gratuitous, unnecessary event back
77      on the event queue to force XtAppNextEvent to return Right Fucking Now.
78      When the code in sleep_until_idle() sees an event of type XAnyEvent,
79      which the server never generates, it knows that a timeout has occurred.
80    */
81   XEvent fake_event;
82   fake_event.type = 0;  /* XAnyEvent type, ignored. */
83   fake_event.xany.display = si->dpy;
84   fake_event.xany.window  = 0;
85   XPutBackEvent (si->dpy, &fake_event);
86
87   /* If we are the timer that just went off, clear the pointer to the id. */
88   if (id)
89     {
90       if (si->timer_id && *id != si->timer_id)
91         abort();  /* oops, scheduled timer twice?? */
92       si->timer_id = 0;
93     }
94 }
95
96
97 void
98 schedule_wakeup_event (saver_info *si, Time when, Bool verbose_p)
99 {
100   if (si->timer_id)
101     {
102       if (verbose_p)
103         fprintf (stderr, "%s: idle_timer already running\n", blurb());
104       return;
105     }
106
107   /* Wake up periodically to ask the server if we are idle. */
108   si->timer_id = XtAppAddTimeOut (si->app, when, idle_timer,
109                                   (XtPointer) si);
110
111   if (verbose_p)
112     fprintf (stderr, "%s: starting idle_timer (%ld, %ld)\n",
113              blurb(), when, si->timer_id);
114 }
115
116
117 static void
118 notice_events (saver_info *si, Window window, Bool top_p)
119 {
120   saver_preferences *p = &si->prefs;
121   XWindowAttributes attrs;
122   unsigned long events;
123   Window root, parent, *kids;
124   unsigned int nkids;
125   int screen_no;
126
127   if (XtWindowToWidget (si->dpy, window))
128     /* If it's one of ours, don't mess up its event mask. */
129     return;
130
131   if (!XQueryTree (si->dpy, window, &root, &parent, &kids, &nkids))
132     return;
133   if (window == root)
134     top_p = False;
135
136   /* Figure out which screen this window is on, for the diagnostics. */
137   for (screen_no = 0; screen_no < si->nscreens; screen_no++)
138     if (root == RootWindowOfScreen (si->screens[screen_no].screen))
139       break;
140
141   XGetWindowAttributes (si->dpy, window, &attrs);
142   events = ((attrs.all_event_masks | attrs.do_not_propagate_mask)
143             & KeyPressMask);
144
145   /* Select for SubstructureNotify on all windows.
146      Select for KeyPress on all windows that already have it selected.
147
148      Note that we can't select for ButtonPress, because of X braindamage:
149      only one client at a time may select for ButtonPress on a given
150      window, though any number can select for KeyPress.  Someone explain
151      *that* to me.
152
153      So, if the user spends a while clicking the mouse without ever moving
154      the mouse or touching the keyboard, we won't know that they've been
155      active, and the screensaver will come on.  That sucks, but I don't
156      know how to get around it.
157
158      Since X presents mouse wheels as clicks, this applies to those, too:
159      scrolling through a document using only the mouse wheel doesn't
160      count as activity...  Fortunately, /proc/interrupts helps, on
161      systems that have it.  Oh, if it's a PS/2 mouse, not serial or USB.
162      This sucks!
163    */
164   XSelectInput (si->dpy, window, SubstructureNotifyMask | events);
165
166   if (top_p && p->debug_p && (events & KeyPressMask))
167     {
168       /* Only mention one window per tree (hack hack). */
169       fprintf (stderr, "%s: %d: selected KeyPress on 0x%lX\n",
170                blurb(), screen_no, (unsigned long) window);
171       top_p = False;
172     }
173
174   if (kids)
175     {
176       while (nkids)
177         notice_events (si, kids [--nkids], top_p);
178       XFree ((char *) kids);
179     }
180 }
181
182
183 int
184 BadWindow_ehandler (Display *dpy, XErrorEvent *error)
185 {
186   /* When we notice a window being created, we spawn a timer that waits
187      30 seconds or so, and then selects events on that window.  This error
188      handler is used so that we can cope with the fact that the window
189      may have been destroyed <30 seconds after it was created.
190    */
191   if (error->error_code == BadWindow ||
192       error->error_code == BadMatch ||
193       error->error_code == BadDrawable)
194     return 0;
195   else
196     return saver_ehandler (dpy, error);
197 }
198
199
200 struct notice_events_timer_arg {
201   saver_info *si;
202   Window w;
203 };
204
205 static void
206 notice_events_timer (XtPointer closure, XtIntervalId *id)
207 {
208   struct notice_events_timer_arg *arg =
209     (struct notice_events_timer_arg *) closure;
210
211   XErrorHandler old_handler = XSetErrorHandler (BadWindow_ehandler);
212
213   saver_info *si = arg->si;
214   Window window = arg->w;
215
216   free(arg);
217   notice_events (si, window, True);
218   XSync (si->dpy, False);
219   XSetErrorHandler (old_handler);
220 }
221
222 void
223 start_notice_events_timer (saver_info *si, Window w, Bool verbose_p)
224 {
225   saver_preferences *p = &si->prefs;
226   struct notice_events_timer_arg *arg =
227     (struct notice_events_timer_arg *) malloc(sizeof(*arg));
228   arg->si = si;
229   arg->w = w;
230   XtAppAddTimeOut (si->app, p->notice_events_timeout, notice_events_timer,
231                    (XtPointer) arg);
232
233   if (verbose_p)
234     fprintf (stderr, "%s: starting notice_events_timer for 0x%X (%lu)\n",
235              blurb(), (unsigned int) w, p->notice_events_timeout);
236 }
237
238
239 /* When the screensaver is active, this timer will periodically change
240    the running program.
241  */
242 void
243 cycle_timer (XtPointer closure, XtIntervalId *id)
244 {
245   saver_info *si = (saver_info *) closure;
246   saver_preferences *p = &si->prefs;
247   Time how_long = p->cycle;
248
249   if (si->selection_mode > 0 &&
250       screenhack_running_p (si))
251     /* If we're in "SELECT n" mode, the cycle timer going off will just
252        restart this same hack again.  There's not much point in doing this
253        every 5 or 10 minutes, but on the other hand, leaving one hack running
254        for days is probably not a great idea, since they tend to leak and/or
255        crash.  So, restart the thing once an hour. */
256     how_long = 1000 * 60 * 60;
257
258   if (si->dbox_up_p)
259     {
260       if (p->verbose_p)
261         fprintf (stderr, "%s: dialog box up; delaying hack change.\n",
262                  blurb());
263       how_long = 30000; /* 30 secs */
264     }
265   else
266     {
267       int i;
268       maybe_reload_init_file (si);
269       for (i = 0; i < si->nscreens; i++)
270         kill_screenhack (&si->screens[i]);
271
272       raise_window (si, True, True, False);
273
274       if (!si->throttled_p)
275         for (i = 0; i < si->nscreens; i++)
276           spawn_screenhack (&si->screens[i]);
277       else
278         {
279           if (p->verbose_p)
280             fprintf (stderr, "%s: not launching new hack (throttled.)\n",
281                      blurb());
282         }
283     }
284
285   if (how_long > 0)
286     {
287       si->cycle_id = XtAppAddTimeOut (si->app, how_long, cycle_timer,
288                                       (XtPointer) si);
289
290       if (p->debug_p)
291         fprintf (stderr, "%s: starting cycle_timer (%ld, %ld)\n",
292                  blurb(), how_long, si->cycle_id);
293     }
294   else
295     {
296       if (p->debug_p)
297         fprintf (stderr, "%s: not starting cycle_timer: how_long == %ld\n",
298                  blurb(), (unsigned long) how_long);
299     }
300 }
301
302
303 void
304 activate_lock_timer (XtPointer closure, XtIntervalId *id)
305 {
306   saver_info *si = (saver_info *) closure;
307   saver_preferences *p = &si->prefs;
308
309   if (p->verbose_p)
310     fprintf (stderr, "%s: timed out; activating lock.\n", blurb());
311   set_locked_p (si, True);
312 }
313
314
315 /* Call this when user activity (or "simulated" activity) has been noticed.
316  */
317 void
318 reset_timers (saver_info *si)
319 {
320   saver_preferences *p = &si->prefs;
321   if (si->using_mit_saver_extension || si->using_sgi_saver_extension)
322     return;
323
324   if (si->timer_id)
325     {
326       if (p->debug_p)
327         fprintf (stderr, "%s: killing idle_timer  (%ld, %ld)\n",
328                  blurb(), p->timeout, si->timer_id);
329       XtRemoveTimeOut (si->timer_id);
330       si->timer_id = 0;
331     }
332
333   schedule_wakeup_event (si, p->timeout, p->debug_p); /* sets si->timer_id */
334
335   if (si->cycle_id) abort ();   /* no cycle timer when inactive */
336
337   si->last_activity_time = time ((time_t *) 0);
338
339   /* This will (hopefully, supposedly) tell the server to re-set its
340      DPMS timer.  Without this, the -deactivate clientmessage would
341      prevent xscreensaver from blanking, but would not prevent the
342      monitor from powering down. */
343 #if 0
344   /* #### With some servers, this causes the screen to flicker every
345      time a key is pressed!  Ok, I surrender.  I give up on ever
346      having DPMS work properly.
347    */
348   XForceScreenSaver (si->dpy, ScreenSaverReset);
349
350   /* And if the monitor is already powered off, turn it on.
351      You'd think the above would do that, but apparently not? */
352   monitor_power_on (si);
353 #endif
354
355 }
356
357
358 /* Returns true if the mouse has moved since the last time we checked.
359    Small motions (of less than "hysteresis" pixels/second) are ignored.
360  */
361 static Bool
362 pointer_moved_p (saver_screen_info *ssi, Bool mods_p)
363 {
364   saver_info *si = ssi->global;
365   saver_preferences *p = &si->prefs;
366
367   Window root, child;
368   int root_x, root_y, x, y;
369   unsigned int mask;
370   time_t now = time ((time_t *) 0);
371   unsigned int distance, dps;
372   unsigned long seconds = 0;
373   Bool moved_p = False;
374
375   /* don't check xinerama pseudo-screens. */
376   if (!ssi->real_screen_p) return False;
377
378   if (!XQueryPointer (si->dpy, ssi->screensaver_window, &root, &child,
379                       &root_x, &root_y, &x, &y, &mask))
380     {
381       /* If XQueryPointer() returns false, the mouse is not on this screen.
382        */
383       x = root_x = -1;
384       y = root_y = -1;
385       root = child = 0;
386       mask = 0;
387     }
388
389   distance = MAX (ABS (ssi->poll_mouse_last_root_x - root_x),
390                   ABS (ssi->poll_mouse_last_root_y - root_y));
391   seconds = (now - ssi->poll_mouse_last_time);
392
393
394   /* When the screen is blanked, we get MotionNotify events, but when not
395      blanked, we poll only every 5 seconds, and that's not enough resolution
396      to do hysteresis based on a 1 second interval.  So, assume that any
397      motion we've seen during the 5 seconds when our eyes were closed happened
398      in the last 1 second instead.
399    */
400   if (seconds > 1) seconds = 1;
401
402   dps = (seconds <= 0 ? distance : (distance / seconds));
403
404   /* Motion only counts if the rate is more than N pixels per second.
405    */
406   if (dps >= p->pointer_hysteresis &&
407       distance > 0)
408     moved_p = True;
409
410   /* If the mouse is not on this screen but used to be, that's motion.
411      If the mouse was not on this screen, but is now, that's motion.
412    */
413   {
414     Bool on_screen_p  = (root_x != -1 && root_y != -1);
415     Bool was_on_screen_p = (ssi->poll_mouse_last_root_x != -1 &&
416                             ssi->poll_mouse_last_root_y != -1);
417
418     if (on_screen_p != was_on_screen_p)
419       moved_p = True;
420   }
421
422   if (p->debug_p && (distance != 0 || moved_p))
423     {
424       fprintf (stderr, "%s: %d: pointer %s", blurb(), ssi->number,
425                (moved_p ? "moved:  " : "ignored:"));
426       if (ssi->poll_mouse_last_root_x == -1)
427         fprintf (stderr, "off screen");
428       else
429         fprintf (stderr, "%d,%d",
430                  ssi->poll_mouse_last_root_x,
431                  ssi->poll_mouse_last_root_y);
432       fprintf (stderr, " -> ");
433       if (root_x == -1)
434         fprintf (stderr, "off screen");
435       else
436         fprintf (stderr, "%d,%d", root_x, root_y);
437       if (ssi->poll_mouse_last_root_x != -1 && root_x != -1)
438         fprintf (stderr, " (%d,%d; %d/%lu=%d)",
439                  ABS(ssi->poll_mouse_last_root_x - root_x),
440                  ABS(ssi->poll_mouse_last_root_y - root_y),
441                  distance, seconds, dps);
442
443       fprintf (stderr, ".\n");
444     }
445
446   if (!moved_p &&
447       mods_p &&
448       mask != ssi->poll_mouse_last_mask)
449     {
450       moved_p = True;
451
452       if (p->debug_p)
453         fprintf (stderr, "%s: %d: modifiers changed: 0x%04x -> 0x%04x.\n",
454                  blurb(), ssi->number, ssi->poll_mouse_last_mask, mask);
455     }
456
457   si->last_activity_screen   = ssi;
458   ssi->poll_mouse_last_child = child;
459   ssi->poll_mouse_last_mask  = mask;
460
461   if (moved_p || seconds > 0)
462     {
463       ssi->poll_mouse_last_time   = now;
464       ssi->poll_mouse_last_root_x = root_x;
465       ssi->poll_mouse_last_root_y = root_y;
466     }
467
468   return moved_p;
469 }
470
471
472 /* When we aren't using a server extension, this timer is used to periodically
473    wake up and poll the mouse position, which is possibly more reliable than
474    selecting motion events on every window.
475  */
476 static void
477 check_pointer_timer (XtPointer closure, XtIntervalId *id)
478 {
479   int i;
480   saver_info *si = (saver_info *) closure;
481   saver_preferences *p = &si->prefs;
482   Bool active_p = False;
483
484   if (!si->using_proc_interrupts &&
485       (si->using_xidle_extension ||
486        si->using_mit_saver_extension ||
487        si->using_sgi_saver_extension))
488     /* If an extension is in use, we should not be polling the mouse.
489        Unless we're also checking /proc/interrupts, in which case, we should.
490      */
491     abort ();
492
493   if (id && *id == si->check_pointer_timer_id)  /* this is us - it's expired */
494     si->check_pointer_timer_id = 0;
495
496   if (si->check_pointer_timer_id)               /* only queue one at a time */
497     XtRemoveTimeOut (si->check_pointer_timer_id);
498
499   si->check_pointer_timer_id =                  /* now re-queue */
500     XtAppAddTimeOut (si->app, p->pointer_timeout, check_pointer_timer,
501                      (XtPointer) si);
502
503   for (i = 0; i < si->nscreens; i++)
504     {
505       saver_screen_info *ssi = &si->screens[i];
506       if (pointer_moved_p (ssi, True))
507         active_p = True;
508     }
509
510 #ifdef HAVE_PROC_INTERRUPTS
511   if (!active_p &&
512       si->using_proc_interrupts &&
513       proc_interrupts_activity_p (si))
514     {
515       active_p = True;
516     }
517 #endif /* HAVE_PROC_INTERRUPTS */
518
519   if (active_p)
520     reset_timers (si);
521
522   check_for_clock_skew (si);
523 }
524
525
526 /* An unfortunate situation is this: the saver is not active, because the
527    user has been typing.  The machine is a laptop.  The user closes the lid
528    and suspends it.  The CPU halts.  Some hours later, the user opens the
529    lid.  At this point, Xt's timers will fire, and xscreensaver will blank
530    the screen.
531
532    So far so good -- well, not really, but it's the best that we can do,
533    since the OS doesn't send us a signal *before* shutdown -- but if the
534    user had delayed locking (lockTimeout > 0) then we should start off
535    in the locked state, rather than only locking N minutes from when the
536    lid was opened.  Also, eschewing fading is probably a good idea, to
537    clamp down as soon as possible.
538
539    We only do this when we'd be polling the mouse position anyway.
540    This amounts to an assumption that machines with APM support also
541    have /proc/interrupts.
542  */
543 static void
544 check_for_clock_skew (saver_info *si)
545 {
546   saver_preferences *p = &si->prefs;
547   time_t now = time ((time_t *) 0);
548   long shift = now - si->last_wall_clock_time;
549
550   if (p->debug_p)
551     {
552       int i = (si->last_wall_clock_time == 0 ? 0 : shift);
553       fprintf (stderr,
554                "%s: checking wall clock for hibernation (%d:%02d:%02d).\n",
555                blurb(),
556                (i / (60 * 60)), ((i / 60) % 60), (i % 60));
557     }
558
559   if (si->last_wall_clock_time != 0 &&
560       shift > (p->timeout / 1000))
561     {
562       if (p->verbose_p)
563         fprintf (stderr, "%s: wall clock has jumped by %ld:%02ld:%02ld!\n",
564                  blurb(),
565                  (shift / (60 * 60)), ((shift / 60) % 60), (shift % 60));
566
567       si->emergency_lock_p = True;
568       idle_timer ((XtPointer) si, 0);
569     }
570
571   si->last_wall_clock_time = now;
572 }
573
574
575
576 static void
577 dispatch_event (saver_info *si, XEvent *event)
578 {
579   /* If this is for the splash dialog, pass it along.
580      Note that the password dialog is handled with its own event loop,
581      so events for that window will never come through here.
582    */
583   if (si->splash_dialog && event->xany.window == si->splash_dialog)
584     handle_splash_event (si, event);
585
586   XtDispatchEvent (event);
587 }
588
589
590 static void
591 swallow_unlock_typeahead_events (saver_info *si, XEvent *e)
592 {
593   XEvent event;
594   char buf [100];
595   int i = 0;
596
597   memset (buf, 0, sizeof(buf));
598
599   event = *e;
600
601   do
602     {
603       if (event.xany.type == KeyPress)
604         {
605           char s[2];
606           int size = XLookupString ((XKeyEvent *) &event, s, 1, 0, 0);
607           if (size != 1) continue;
608           switch (*s)
609             {
610             case '\010': case '\177':                   /* Backspace */
611               if (i > 0) i--;
612               break;
613             case '\025': case '\030':                   /* Erase line */
614             case '\012': case '\015':                   /* Enter */
615             case '\033':                                /* ESC */
616               i = 0;
617               break;
618             case '\040':                                /* Space */
619               if (i == 0)
620                 break;  /* ignore space at beginning of line */
621               /* else, fall through */
622             default:
623               buf [i++] = *s;
624               break;
625             }
626         }
627
628     } while (i < sizeof(buf)-1 &&
629              XCheckMaskEvent (si->dpy, KeyPressMask, &event));
630
631   buf[i] = 0;
632
633   if (si->unlock_typeahead)
634     {
635       memset (si->unlock_typeahead, 0, strlen(si->unlock_typeahead));
636       free (si->unlock_typeahead);
637     }
638
639   if (i > 0)
640     si->unlock_typeahead = strdup (buf);
641   else
642     si->unlock_typeahead = 0;
643
644   memset (buf, 0, sizeof(buf));
645 }
646
647
648 /* methods of detecting idleness:
649
650       explicitly informed by SGI SCREEN_SAVER server event;
651       explicitly informed by MIT-SCREEN-SAVER server event;
652       poll server idle time with XIDLE extension;
653       select events on all windows, and note absence of recent events;
654       note that /proc/interrupts has not changed in a while;
655       activated by clientmessage.
656
657    methods of detecting non-idleness:
658
659       read events on the xscreensaver window;
660       explicitly informed by SGI SCREEN_SAVER server event;
661       explicitly informed by MIT-SCREEN-SAVER server event;
662       select events on all windows, and note events on any of them;
663       note that /proc/interrupts has changed;
664       deactivated by clientmessage.
665
666    I trust that explains why this function is a big hairy mess.
667  */
668 void
669 sleep_until_idle (saver_info *si, Bool until_idle_p)
670 {
671   saver_preferences *p = &si->prefs;
672   XEvent event;
673
674   /* We need to select events on all windows if we're not using any extensions.
675      Otherwise, we don't need to. */
676   Bool scanning_all_windows = !(si->using_xidle_extension ||
677                                 si->using_mit_saver_extension ||
678                                 si->using_sgi_saver_extension);
679
680   /* We need to periodically wake up and check for idleness if we're not using
681      any extensions, or if we're using the XIDLE extension.  The other two
682      extensions explicitly deliver events when we go idle/non-idle, so we
683      don't need to poll. */
684   Bool polling_for_idleness = !(si->using_mit_saver_extension ||
685                                 si->using_sgi_saver_extension);
686
687   /* Whether we need to periodically wake up and check to see if the mouse has
688      moved.  We only need to do this when not using any extensions.  The reason
689      this isn't the same as `polling_for_idleness' is that the "idleness" poll
690      can happen (for example) 5 minutes from now, whereas the mouse-position
691      poll should happen with low periodicity.  We don't need to poll the mouse
692      position with the XIDLE extension, but we do need to periodically wake up
693      and query the server with that extension.  For our purposes, polling
694      /proc/interrupts is just like polling the mouse position.  It has to
695      happen on the same kind of schedule. */
696   Bool polling_mouse_position = (si->using_proc_interrupts ||
697                                  !(si->using_xidle_extension ||
698                                    si->using_mit_saver_extension ||
699                                    si->using_sgi_saver_extension));
700
701   if (until_idle_p)
702     {
703       if (polling_for_idleness)
704         /* This causes a no-op event to be delivered to us in a while, so that
705            we come back around through the event loop again.  */
706         schedule_wakeup_event (si, p->timeout, p->debug_p);
707
708       if (polling_mouse_position)
709         /* Check to see if the mouse has moved, and set up a repeating timer
710            to do so periodically (typically, every 5 seconds.) */
711         check_pointer_timer ((XtPointer) si, 0);
712     }
713
714   while (1)
715     {
716       XtAppNextEvent (si->app, &event);
717
718       switch (event.xany.type) {
719       case 0:           /* our synthetic "timeout" event has been signalled */
720         if (until_idle_p)
721           {
722             Time idle;
723
724             /* We may be idle; check one last time to see if the mouse has
725                moved, just in case the idle-timer went off within the 5 second
726                window between mouse polling.  If the mouse has moved, then
727                check_pointer_timer() will reset last_activity_time.
728              */
729             if (polling_mouse_position)
730               check_pointer_timer ((XtPointer) si, 0);
731
732 #ifdef HAVE_XIDLE_EXTENSION
733             if (si->using_xidle_extension)
734               {
735                 /* The XIDLE extension uses the synthetic event to prod us into
736                    re-asking the server how long the user has been idle. */
737                 if (! XGetIdleTime (si->dpy, &idle))
738                   {
739                     fprintf (stderr, "%s: XGetIdleTime() failed.\n", blurb());
740                     saver_exit (si, 1, 0);
741                   }
742               }
743             else
744 #endif /* HAVE_XIDLE_EXTENSION */
745 #ifdef HAVE_MIT_SAVER_EXTENSION
746               if (si->using_mit_saver_extension)
747                 {
748                   /* We don't need to do anything in this case - the synthetic
749                      event isn't necessary, as we get sent specific events
750                      to wake us up.  In fact, this event generally shouldn't
751                      be being delivered when the MIT extension is in use. */
752                   idle = 0;
753                 }
754             else
755 #endif /* HAVE_MIT_SAVER_EXTENSION */
756 #ifdef HAVE_SGI_SAVER_EXTENSION
757               if (si->using_sgi_saver_extension)
758                 {
759                   /* We don't need to do anything in this case - the synthetic
760                      event isn't necessary, as we get sent specific events
761                      to wake us up.  In fact, this event generally shouldn't
762                      be being delivered when the SGI extension is in use. */
763                   idle = 0;
764                 }
765             else
766 #endif /* HAVE_SGI_SAVER_EXTENSION */
767               {
768                 /* Otherwise, no server extension is in use.  The synthetic
769                    event was to tell us to wake up and see if the user is now
770                    idle.  Compute the amount of idle time by comparing the
771                    `last_activity_time' to the wall clock.  The l_a_t was set
772                    by calling `reset_timers()', which is called only in only
773                    two situations: when polling the mouse position has revealed
774                    the the mouse has moved (user activity) or when we have read
775                    an event (again, user activity.)
776                  */
777                 idle = 1000 * (si->last_activity_time - time ((time_t *) 0));
778               }
779
780             if (idle >= p->timeout)
781               {
782                 /* Look, we've been idle long enough.  We're done. */
783                 goto DONE;
784               }
785             else if (si->emergency_lock_p)
786               {
787                 /* Oops, the wall clock has jumped far into the future, so
788                    we need to lock down in a hurry! */
789                 goto DONE;
790               }
791             else
792               {
793                 /* The event went off, but it turns out that the user has not
794                    yet been idle for long enough.  So re-signal the event.
795                    Be economical: if we should blank after 5 minutes, and the
796                    user has been idle for 2 minutes, then set this timer to
797                    go off in 3 minutes.
798                  */
799                 if (polling_for_idleness)
800                   schedule_wakeup_event (si, p->timeout - idle, p->debug_p);
801               }
802           }
803         break;
804
805       case ClientMessage:
806         if (handle_clientmessage (si, &event, until_idle_p))
807           goto DONE;
808         break;
809
810       case CreateNotify:
811         /* A window has been created on the screen somewhere.  If we're
812            supposed to scan all windows for events, prepare this window. */
813         if (scanning_all_windows)
814           {
815             Window w = event.xcreatewindow.window;
816             start_notice_events_timer (si, w, p->debug_p);
817           }
818         break;
819
820       case KeyPress:
821       case ButtonPress:
822       /* Ignore release events so that hitting ESC at the password dialog
823          doesn't result in the password dialog coming right back again when
824          the fucking release key is seen! */
825       /* case KeyRelease:*/
826       /* case ButtonRelease:*/
827       case MotionNotify:
828
829         if (p->debug_p)
830           {
831             Window root=0, window=0;
832             int x=-1, y=-1;
833             const char *type = 0;
834             if (event.xany.type == MotionNotify)
835               {
836                 /*type = "MotionNotify";*/
837                 root = event.xmotion.root;
838                 window = event.xmotion.window;
839                 x = event.xmotion.x_root;
840                 y = event.xmotion.y_root;
841               }
842             else if (event.xany.type == KeyPress)
843               {
844                 type = "KeyPress";
845                 root = event.xkey.root;
846                 window = event.xkey.window;
847                 x = y = -1;
848               }
849             else if (event.xany.type == ButtonPress)
850               {
851                 type = "ButtonPress";
852                 root = event.xkey.root;
853                 window = event.xkey.window;
854                 x = event.xmotion.x_root;
855                 y = event.xmotion.y_root;
856               }
857
858             if (type)
859               {
860                 int i;
861                 for (i = 0; i < si->nscreens; i++)
862                   if (root == RootWindowOfScreen (si->screens[i].screen))
863                     break;
864                 fprintf (stderr,"%s: %d: %s on 0x%lx",
865                          blurb(), i, type, (unsigned long) window);
866
867                 /* Be careful never to do this unless in -debug mode, as
868                    this could expose characters from the unlock password. */
869                 if (p->debug_p && event.xany.type == KeyPress)
870                   {
871                     KeySym keysym;
872                     char c = 0;
873                     XLookupString (&event.xkey, &c, 1, &keysym, 0);
874                     fprintf (stderr, " (%s%s)",
875                              (event.xkey.send_event ? "synthetic " : ""),
876                              XKeysymToString (keysym));
877                   }
878
879                 if (x == -1)
880                   fprintf (stderr, "\n");
881                 else
882                   fprintf (stderr, " at %d,%d.\n", x, y);
883               }
884           }
885
886         /* If any widgets want to handle this event, let them. */
887         dispatch_event (si, &event);
888
889         
890         /* If we got a MotionNotify event, figure out what screen it
891            was on and poll the mouse there: if the mouse hasn't moved
892            far enough to count as "real" motion, then ignore this
893            event.
894          */
895         if (event.xany.type == MotionNotify)
896           {
897             int i;
898             for (i = 0; i < si->nscreens; i++)
899               if (event.xmotion.root ==
900                   RootWindowOfScreen (si->screens[i].screen))
901                 break;
902             if (i < si->nscreens)
903               {
904                 if (!pointer_moved_p (&si->screens[i], False))
905                   continue;
906               }
907           }
908
909
910         /* We got a user event.
911            If we're waiting for the user to become active, this is it.
912            If we're waiting until the user becomes idle, reset the timers
913            (since now we have longer to wait.)
914          */
915         if (!until_idle_p)
916           {
917             if (si->demoing_p &&
918                 (event.xany.type == MotionNotify ||
919                  event.xany.type == KeyRelease))
920               /* When we're demoing a single hack, mouse motion doesn't
921                  cause deactivation.  Only clicks and keypresses do. */
922               ;
923             else
924               /* If we're not demoing, then any activity causes deactivation.
925                */
926               goto DONE;
927           }
928         else
929           reset_timers (si);
930
931         break;
932
933       default:
934
935 #ifdef HAVE_MIT_SAVER_EXTENSION
936         if (event.type == si->mit_saver_ext_event_number)
937           {
938             /* This event's number is that of the MIT-SCREEN-SAVER server
939                extension.  This extension has one event number, and the event
940                itself contains sub-codes that say what kind of event it was
941                (an "idle" or "not-idle" event.)
942              */
943             XScreenSaverNotifyEvent *sevent =
944               (XScreenSaverNotifyEvent *) &event;
945             if (sevent->state == ScreenSaverOn)
946               {
947                 int i = 0;
948                 if (p->verbose_p)
949                   fprintf (stderr, "%s: MIT ScreenSaverOn event received.\n",
950                            blurb());
951
952                 /* Get the "real" server window(s) out of the way as soon
953                    as possible. */
954                 for (i = 0; i < si->nscreens; i++)
955                   {
956                     saver_screen_info *ssi = &si->screens[i];
957                     if (ssi->server_mit_saver_window &&
958                         window_exists_p (si->dpy,
959                                          ssi->server_mit_saver_window))
960                       XUnmapWindow (si->dpy, ssi->server_mit_saver_window);
961                   }
962
963                 if (sevent->kind != ScreenSaverExternal)
964                   {
965                     fprintf (stderr,
966                          "%s: ScreenSaverOn event wasn't of type External!\n",
967                              blurb());
968                   }
969
970                 if (until_idle_p)
971                   goto DONE;
972               }
973             else if (sevent->state == ScreenSaverOff)
974               {
975                 if (p->verbose_p)
976                   fprintf (stderr, "%s: MIT ScreenSaverOff event received.\n",
977                            blurb());
978                 if (!until_idle_p)
979                   goto DONE;
980               }
981             else
982               fprintf (stderr,
983                        "%s: unknown MIT-SCREEN-SAVER event %d received!\n",
984                        blurb(), sevent->state);
985           }
986         else
987
988 #endif /* HAVE_MIT_SAVER_EXTENSION */
989
990
991 #ifdef HAVE_SGI_SAVER_EXTENSION
992         if (event.type == (si->sgi_saver_ext_event_number + ScreenSaverStart))
993           {
994             /* The SGI SCREEN_SAVER server extension has two event numbers,
995                and this event matches the "idle" event. */
996             if (p->verbose_p)
997               fprintf (stderr, "%s: SGI ScreenSaverStart event received.\n",
998                        blurb());
999
1000             if (until_idle_p)
1001               goto DONE;
1002           }
1003         else if (event.type == (si->sgi_saver_ext_event_number +
1004                                 ScreenSaverEnd))
1005           {
1006             /* The SGI SCREEN_SAVER server extension has two event numbers,
1007                and this event matches the "idle" event. */
1008             if (p->verbose_p)
1009               fprintf (stderr, "%s: SGI ScreenSaverEnd event received.\n",
1010                        blurb());
1011             if (!until_idle_p)
1012               goto DONE;
1013           }
1014         else
1015 #endif /* HAVE_SGI_SAVER_EXTENSION */
1016
1017 #ifdef HAVE_RANDR
1018         if (event.type == (si->randr_event_number + RRScreenChangeNotify))
1019           {
1020             /* The Resize and Rotate extension sends an event when the
1021                size, rotation, or refresh rate of any screen has changed.
1022              */
1023             XRRScreenChangeNotifyEvent *xrr_event =
1024               (XRRScreenChangeNotifyEvent *) &event;
1025
1026             if (p->verbose_p)
1027               {
1028                 /* XRRRootToScreen is in Xrandr.h 1.4, 2001/06/07 */
1029                 int screen = XRRRootToScreen (si->dpy, xrr_event->window);
1030                 fprintf (stderr, "%s: %d: screen change event received\n",
1031                          blurb(), screen);
1032               }
1033
1034 # ifdef RRScreenChangeNotifyMask
1035             /* Inform Xlib that it's ok to update its data structures. */
1036             XRRUpdateConfiguration (&event); /* Xrandr.h 1.9, 2002/09/29 */
1037 # endif /* RRScreenChangeNotifyMask */
1038
1039             /* Resize the existing xscreensaver windows and cached ssi data. */
1040             if (update_screen_layout (si))
1041               {
1042                 if (p->verbose_p)
1043                   {
1044                     fprintf (stderr, "%s: new layout:\n", blurb());
1045                     describe_monitor_layout (si);
1046                   }
1047                 resize_screensaver_window (si);
1048               }
1049           }
1050         else
1051 #endif /* HAVE_RANDR */
1052
1053           /* Just some random event.  Let the Widgets handle it, if desired. */
1054           dispatch_event (si, &event);
1055       }
1056     }
1057  DONE:
1058
1059
1060   /* If there's a user event on the queue, swallow it.
1061      If we're using a server extension, and the user becomes active, we
1062      get the extension event before the user event -- so the keypress or
1063      motion or whatever is still on the queue.  This makes "unfade" not
1064      work, because it sees that event, and bugs out.  (This problem
1065      doesn't exhibit itself without an extension, because in that case,
1066      there's only one event generated by user activity, not two.)
1067    */
1068   if (!until_idle_p && si->locked_p)
1069     swallow_unlock_typeahead_events (si, &event);
1070   else
1071     while (XCheckMaskEvent (si->dpy,
1072                             (KeyPressMask|ButtonPressMask|PointerMotionMask),
1073                      &event))
1074       ;
1075
1076
1077   if (si->check_pointer_timer_id)
1078     {
1079       XtRemoveTimeOut (si->check_pointer_timer_id);
1080       si->check_pointer_timer_id = 0;
1081     }
1082   if (si->timer_id)
1083     {
1084       XtRemoveTimeOut (si->timer_id);
1085       si->timer_id = 0;
1086     }
1087
1088   if (until_idle_p && si->cycle_id)     /* no cycle timer when inactive */
1089     abort ();
1090 }
1091
1092
1093 \f
1094 /* Some crap for dealing with /proc/interrupts.
1095
1096    On Linux systems, it's possible to see the hardware interrupt count
1097    associated with the keyboard.  We can therefore use that as another method
1098    of detecting idleness.
1099
1100    Why is it a good idea to do this?  Because it lets us detect keyboard
1101    activity that is not associated with X events.  For example, if the user
1102    has switched to another virtual console, it's good for xscreensaver to not
1103    be running graphics hacks on the (non-visible) X display.  The common
1104    complaint that checking /proc/interrupts addresses is that the user is
1105    playing Quake on a non-X console, and the GL hacks are perceptibly slowing
1106    the game...
1107
1108    This is tricky for a number of reasons.
1109
1110      * First, we must be sure to only do this when running on an X server that
1111        is on the local machine (because otherwise, we'd be reacting to the
1112        wrong keyboard.)  The way we do this is by noting that the $DISPLAY is
1113        pointing to display 0 on the local machine.  It *could* be that display
1114        1 is also on the local machine (e.g., two X servers, each on a different
1115        virtual-terminal) but it's also possible that screen 1 is an X terminal,
1116        using this machine as the host.  So we can't take that chance.
1117
1118      * Second, one can only access these interrupt numbers in a completely
1119        and utterly brain-damaged way.  You would think that one would use an
1120        ioctl for this.  But no.  The ONLY way to get this information is to
1121        open the pseudo-file /proc/interrupts AS A FILE, and read the numbers
1122        out of it TEXTUALLY.  Because this is Unix, and all the world's a file,
1123        and the only real data type is the short-line sequence of ASCII bytes.
1124
1125        Now it's all well and good that the /proc/interrupts pseudo-file
1126        exists; that's a clever idea, and a useful API for things that are
1127        already textually oriented, like shell scripts, and users doing
1128        interactive debugging sessions.  But to make a *C PROGRAM* open a file
1129        and parse the textual representation of integers out of it is just
1130        insane.
1131
1132      * Third, you can't just hold the file open, and fseek() back to the
1133        beginning to get updated data!  If you do that, the data never changes.
1134        And I don't want to call open() every five seconds, because I don't want
1135        to risk going to disk for any inodes.  It turns out that if you dup()
1136        it early, then each copy gets fresh data, so we can get around that in
1137        this way (but for how many releases, one might wonder?)
1138
1139      * Fourth, the format of the output of the /proc/interrupts file is
1140        undocumented, and has changed several times already!  In Linux 2.0.33,
1141        even on a multiprocessor machine, it looks like this:
1142
1143           0:  309453991   timer
1144           1:    4771729   keyboard
1145    
1146        but in Linux 2.2 and 2.4 kernels with MP machines, it looks like this:
1147
1148                    CPU0       CPU1
1149           0:    1671450    1672618    IO-APIC-edge  timer
1150           1:      13037      13495    IO-APIC-edge  keyboard
1151
1152        and in Linux 2.6, it's gotten even goofier: now there are two lines
1153        labelled "i8042".  One of them is the keyboard, and one of them is
1154        the PS/2 mouse -- and of course, you can't tell them apart, except
1155        by wiggling the mouse and noting which one changes:
1156
1157                    CPU0       CPU1
1158           1:      32051      30864    IO-APIC-edge  i8042
1159          12:     476577     479913    IO-APIC-edge  i8042
1160
1161        Joy!  So how are we expected to parse that?  Well, this code doesn't
1162        parse it: it saves the first line with the string "keyboard" (or
1163        "i8042") in it, and does a string-comparison to note when it has
1164        changed.  If there are two "i8042" lines, we assume the first is
1165        the keyboard and the second is the mouse (doesn't matter which is
1166        which, really, as long as we don't compare them against each other.)
1167
1168    Thanks to Nat Friedman <nat@nat.org> for figuring out most of this crap.
1169
1170    Note that if you have a serial or USB mouse, or a USB keyboard, it won't
1171    detect it.  That's because there's no way to tell the difference between a
1172    serial mouse and a general serial port, and all USB devices look the same
1173    from here.  It would be somewhat unfortunate to have the screensaver turn
1174    off when the modem on COM1 burped, or when a USB disk was accessed.
1175  */
1176
1177
1178 #ifdef HAVE_PROC_INTERRUPTS
1179
1180 #define PROC_INTERRUPTS "/proc/interrupts"
1181
1182 Bool
1183 query_proc_interrupts_available (saver_info *si, const char **why)
1184 {
1185   /* We can use /proc/interrupts if $DISPLAY points to :0, and if the
1186      "/proc/interrupts" file exists and is readable.
1187    */
1188   FILE *f;
1189   if (why) *why = 0;
1190
1191   if (!display_is_on_console_p (si))
1192     {
1193       if (why) *why = "not on primary console";
1194       return False;
1195     }
1196
1197   f = fopen (PROC_INTERRUPTS, "r");
1198   if (!f)
1199     {
1200       if (why) *why = "does not exist";
1201       return False;
1202     }
1203
1204   fclose (f);
1205   return True;
1206 }
1207
1208
1209 static Bool
1210 proc_interrupts_activity_p (saver_info *si)
1211 {
1212   static FILE *f0 = 0;
1213   FILE *f1 = 0;
1214   int fd;
1215   static char last_kbd_line[255] = { 0, };
1216   static char last_ptr_line[255] = { 0, };
1217   char new_line[sizeof(last_kbd_line)];
1218   Bool checked_kbd = False, kbd_changed = False;
1219   Bool checked_ptr = False, ptr_changed = False;
1220   int i8042_count = 0;
1221
1222   if (!f0)
1223     {
1224       /* First time -- open the file. */
1225       f0 = fopen (PROC_INTERRUPTS, "r");
1226       if (!f0)
1227         {
1228           char buf[255];
1229           sprintf(buf, "%s: error opening %s", blurb(), PROC_INTERRUPTS);
1230           perror (buf);
1231           goto FAIL;
1232         }
1233     }
1234
1235   if (f0 == (FILE *) -1)            /* means we got an error initializing. */
1236     return False;
1237
1238   fd = dup (fileno (f0));
1239   if (fd < 0)
1240     {
1241       char buf[255];
1242       sprintf(buf, "%s: could not dup() the %s fd", blurb(), PROC_INTERRUPTS);
1243       perror (buf);
1244       goto FAIL;
1245     }
1246
1247   f1 = fdopen (fd, "r");
1248   if (!f1)
1249     {
1250       char buf[255];
1251       sprintf(buf, "%s: could not fdopen() the %s fd", blurb(),
1252               PROC_INTERRUPTS);
1253       perror (buf);
1254       goto FAIL;
1255     }
1256
1257   /* Actually, I'm unclear on why this fseek() is necessary, given the timing
1258      of the dup() above, but it is. */
1259   if (fseek (f1, 0, SEEK_SET) != 0)
1260     {
1261       char buf[255];
1262       sprintf(buf, "%s: error rewinding %s", blurb(), PROC_INTERRUPTS);
1263       perror (buf);
1264       goto FAIL;
1265     }
1266
1267   /* Now read through the pseudo-file until we find the "keyboard",
1268      "PS/2 mouse", or "i8042" lines. */
1269
1270   while (fgets (new_line, sizeof(new_line)-1, f1))
1271     {
1272       Bool i8042_p = !!strstr (new_line, "i8042");
1273       if (i8042_p) i8042_count++;
1274
1275       if (strchr (new_line, ','))
1276         {
1277           /* Ignore any line that has a comma on it: this is because
1278              a setup like this:
1279
1280                  12:     930935          XT-PIC  usb-uhci, PS/2 Mouse
1281
1282              is really bad news.  It *looks* like we can note mouse
1283              activity from that line, but really, that interrupt gets
1284              fired any time any USB device has activity!  So we have
1285              to ignore any shared IRQs.
1286            */
1287         }
1288       else if (!checked_kbd &&
1289                (strstr (new_line, "keyboard") ||
1290                 (i8042_p && i8042_count == 1)))
1291         {
1292           /* Assume the keyboard interrupt is the line that says "keyboard",
1293              or the *first* line that says "i8042".
1294            */
1295           kbd_changed = (*last_kbd_line && !!strcmp (new_line, last_kbd_line));
1296           strcpy (last_kbd_line, new_line);
1297           checked_kbd = True;
1298         }
1299       else if (!checked_ptr &&
1300                (strstr (new_line, "PS/2 Mouse") ||
1301                 (i8042_p && i8042_count == 2)))
1302         {
1303           /* Assume the mouse interrupt is the line that says "PS/2 mouse",
1304              or the *second* line that says "i8042".
1305            */
1306           ptr_changed = (*last_ptr_line && !!strcmp (new_line, last_ptr_line));
1307           strcpy (last_ptr_line, new_line);
1308           checked_ptr = True;
1309         }
1310
1311       if (checked_kbd && checked_ptr)
1312         break;
1313     }
1314
1315   if (checked_kbd || checked_ptr)
1316     {
1317       fclose (f1);
1318
1319       if (si->prefs.debug_p && (kbd_changed || ptr_changed))
1320         fprintf (stderr, "%s: /proc/interrupts activity: %s\n",
1321                  blurb(),
1322                  ((kbd_changed && ptr_changed) ? "mouse and kbd" :
1323                   kbd_changed ? "kbd" :
1324                   ptr_changed ? "mouse" : "ERR"));
1325
1326       return (kbd_changed || ptr_changed);
1327     }
1328
1329
1330   /* If we got here, we didn't find either a "keyboard" or a "PS/2 Mouse"
1331      line in the file at all. */
1332   fprintf (stderr, "%s: no keyboard or mouse data in %s?\n",
1333            blurb(), PROC_INTERRUPTS);
1334
1335  FAIL:
1336   if (f1)
1337     fclose (f1);
1338
1339   if (f0 && f0 != (FILE *) -1)
1340     fclose (f0);
1341
1342   f0 = (FILE *) -1;
1343   return False;
1344 }
1345
1346 #endif /* HAVE_PROC_INTERRUPTS */
1347
1348 \f
1349 /* This timer goes off every few minutes, whether the user is idle or not,
1350    to try and clean up anything that has gone wrong.
1351
1352    It calls disable_builtin_screensaver() so that if xset has been used,
1353    or some other program (like xlock) has messed with the XSetScreenSaver()
1354    settings, they will be set back to sensible values (if a server extension
1355    is in use, messing with xlock can cause xscreensaver to never get a wakeup
1356    event, and could cause monitor power-saving to occur, and all manner of
1357    heinousness.)
1358
1359    If the screen is currently blanked, it raises the window, in case some
1360    other window has been mapped on top of it.
1361
1362    If the screen is currently blanked, and there is no hack running, it
1363    clears the window, in case there is an error message printed on it (we
1364    don't want the error message to burn in.)
1365  */
1366
1367 static void
1368 watchdog_timer (XtPointer closure, XtIntervalId *id)
1369 {
1370   saver_info *si = (saver_info *) closure;
1371   saver_preferences *p = &si->prefs;
1372
1373   disable_builtin_screensaver (si, False);
1374
1375   /* If the DPMS settings on the server have changed, change them back to
1376      what ~/.xscreensaver says they should be. */
1377   sync_server_dpms_settings (si->dpy,
1378                              (p->dpms_enabled_p  &&
1379                               p->mode != DONT_BLANK),
1380                              p->dpms_standby / 1000,
1381                              p->dpms_suspend / 1000,
1382                              p->dpms_off / 1000,
1383                              False);
1384
1385   if (si->screen_blanked_p)
1386     {
1387       Bool running_p = screenhack_running_p (si);
1388
1389       if (si->dbox_up_p)
1390         {
1391           if (si->prefs.debug_p)
1392             fprintf (stderr, "%s: dialog box is up: not raising screen.\n",
1393                      blurb());
1394         }
1395       else
1396         {
1397           if (si->prefs.debug_p)
1398             fprintf (stderr, "%s: watchdog timer raising %sscreen.\n",
1399                      blurb(), (running_p ? "" : "and clearing "));
1400
1401           raise_window (si, True, True, running_p);
1402         }
1403
1404       if (screenhack_running_p (si) &&
1405           !monitor_powered_on_p (si))
1406         {
1407           int i;
1408           if (si->prefs.verbose_p)
1409             fprintf (stderr,
1410                      "%s: X says monitor has powered down; "
1411                      "killing running hacks.\n", blurb());
1412           for (i = 0; i < si->nscreens; i++)
1413             kill_screenhack (&si->screens[i]);
1414         }
1415
1416       /* Re-schedule this timer.  The watchdog timer defaults to a bit less
1417          than the hack cycle period, but is never longer than one hour.
1418        */
1419       si->watchdog_id = 0;
1420       reset_watchdog_timer (si, True);
1421     }
1422 }
1423
1424
1425 void
1426 reset_watchdog_timer (saver_info *si, Bool on_p)
1427 {
1428   saver_preferences *p = &si->prefs;
1429
1430   if (si->watchdog_id)
1431     {
1432       XtRemoveTimeOut (si->watchdog_id);
1433       si->watchdog_id = 0;
1434     }
1435
1436   if (on_p && p->watchdog_timeout)
1437     {
1438       si->watchdog_id = XtAppAddTimeOut (si->app, p->watchdog_timeout,
1439                                          watchdog_timer, (XtPointer) si);
1440
1441       if (p->debug_p)
1442         fprintf (stderr, "%s: restarting watchdog_timer (%ld, %ld)\n",
1443                  blurb(), p->watchdog_timeout, si->watchdog_id);
1444     }
1445 }
1446
1447
1448 /* It's possible that a race condition could have led to the saver
1449    window being unexpectedly still mapped.  This can happen like so:
1450
1451     - screen is blanked
1452     - hack is launched
1453     - that hack tries to grab a screen image (it does this by
1454       first unmapping the saver window, then remapping it.)
1455     - hack unmaps window
1456     - hack waits
1457     - user becomes active
1458     - hack re-maps window (*)
1459     - driver kills subprocess
1460     - driver unmaps window (**)
1461
1462    The race is that (*) might have been sent to the server before
1463    the client process was killed, but, due to scheduling randomness,
1464    might not have been received by the server until after (**).
1465    In other words, (*) and (**) might happen out of order, meaning
1466    the driver will unmap the window, and then after that, the
1467    recently-dead client will re-map it.  This leaves the user
1468    locked out (it looks like a desktop, but it's not!)
1469
1470    To avoid this: after un-blanking the screen, we launch a timer
1471    that wakes up once a second for ten seconds, and makes damned
1472    sure that the window is still unmapped.
1473  */
1474
1475 void
1476 de_race_timer (XtPointer closure, XtIntervalId *id)
1477 {
1478   saver_info *si = (saver_info *) closure;
1479   saver_preferences *p = &si->prefs;
1480   int secs = 1;
1481
1482   if (id == 0)  /* if id is 0, this is the initialization call. */
1483     {
1484       si->de_race_ticks = 10;
1485       if (p->verbose_p)
1486         fprintf (stderr, "%s: starting de-race timer (%d seconds.)\n",
1487                  blurb(), si->de_race_ticks);
1488     }
1489   else
1490     {
1491       int i;
1492       XSync (si->dpy, False);
1493       for (i = 0; i < si->nscreens; i++)
1494         {
1495           saver_screen_info *ssi = &si->screens[i];
1496           Window w = ssi->screensaver_window;
1497           XWindowAttributes xgwa;
1498           XGetWindowAttributes (si->dpy, w, &xgwa);
1499           if (xgwa.map_state != IsUnmapped)
1500             {
1501               if (p->verbose_p)
1502                 fprintf (stderr,
1503                          "%s: %d: client race! emergency unmap 0x%lx.\n",
1504                          blurb(), i, (unsigned long) w);
1505               XUnmapWindow (si->dpy, w);
1506             }
1507           else if (p->debug_p)
1508             fprintf (stderr, "%s: %d: (de-race of 0x%lx is cool.)\n",
1509                      blurb(), i, (unsigned long) w);
1510         }
1511       XSync (si->dpy, False);
1512
1513       si->de_race_ticks--;
1514     }
1515
1516   if (id && *id == si->de_race_id)
1517     si->de_race_id = 0;
1518
1519   if (si->de_race_id) abort();
1520
1521   if (si->de_race_ticks <= 0)
1522     {
1523       si->de_race_id = 0;
1524       if (p->verbose_p)
1525         fprintf (stderr, "%s: de-race completed.\n", blurb());
1526     }
1527   else
1528     {
1529       si->de_race_id = XtAppAddTimeOut (si->app, secs * 1000,
1530                                         de_race_timer, closure);
1531     }
1532 }