http://packetstormsecurity.org/UNIX/admin/xscreensaver-4.16.tar.gz
[xscreensaver] / driver / test-passwd.c
1 /* xscreensaver, Copyright (c) 1998-2004 Jamie Zawinski <jwz@jwz.org>
2  *
3  * Permission to use, copy, modify, distribute, and sell this software and its
4  * documentation for any purpose is hereby granted without fee, provided that
5  * the above copyright notice appear in all copies and that both that
6  * copyright notice and this permission notice appear in supporting
7  * documentation.  No representations are made about the suitability of this
8  * software for any purpose.  It is provided "as is" without express or 
9  * implied warranty.
10  */
11
12 /* This is a kludgy test harness for debugging the password dialog box.
13    It's somewhat easier to debug it here than in the xscreensaver executable
14    itself.
15  */
16
17 #ifdef HAVE_CONFIG_H
18 # include "config.h"
19 #endif
20
21 #include <stdio.h>
22 #include <ctype.h>
23 #include <pwd.h>
24
25 #include <X11/Xlib.h>
26 #include <X11/Xatom.h>
27 #include <X11/Intrinsic.h>
28 #include <X11/StringDefs.h>
29 #include <X11/Shell.h>
30
31 #include "xscreensaver.h"
32 #include "resources.h"
33 #include "version.h"
34 #include "visual.h"
35
36 char *progname = 0;
37 char *progclass = 0;
38 XrmDatabase db = 0;
39 saver_info *global_si_kludge;
40
41 FILE *real_stderr, *real_stdout;
42
43 void monitor_power_on (saver_info *si) {}
44 Bool monitor_powered_on_p (saver_info *si) { return True; }
45 void initialize_screensaver_window (saver_info *si) {}
46 void raise_window (saver_info *si, Bool i, Bool b, Bool d) {}
47 Bool blank_screen (saver_info *si) {return False;}
48 void unblank_screen (saver_info *si) {}
49 Bool select_visual (saver_screen_info *ssi, const char *v) { return False; }
50 Bool window_exists_p (Display *dpy, Window window) {return True;}
51 void start_notice_events_timer (saver_info *si, Window w, Bool b) {}
52 Bool handle_clientmessage (saver_info *si, XEvent *e, Bool u) { return False; }
53 int BadWindow_ehandler (Display *dpy, XErrorEvent *error) { exit(1); }
54 const char *signal_name(int signal) { return "???"; }
55 Bool restore_real_vroot (saver_info *si) { return False; }
56 void store_saver_status (saver_info *si) {}
57 void saver_exit (saver_info *si, int status, const char *core) { exit(status);}
58 int move_mouse_grab (saver_info *si, Window to, Cursor c, int ts) { return 0; }
59 int mouse_screen (saver_info *si) { return 0; }
60 void check_for_leaks (const char *where) { }
61 void exec_command (const char *shell, const char *command, int nice) { }
62 void shutdown_stderr (saver_info *si) { }
63
64 const char *blurb(void) { return progname; }
65 Atom XA_SCREENSAVER, XA_DEMO, XA_PREFS;
66
67 void
68 get_screen_viewport (saver_screen_info *ssi,
69                      int *x_ret, int *y_ret,
70                      int *w_ret, int *h_ret,
71                      int tx, int ty,
72                      Bool verbose_p)
73 {
74   *x_ret = 0;
75   *y_ret = 0;
76   *w_ret = WidthOfScreen (ssi->screen);
77   *h_ret = HeightOfScreen (ssi->screen);
78 }
79
80
81 void
82 idle_timer (XtPointer closure, XtIntervalId *id)
83 {
84   saver_info *si = (saver_info *) closure;
85   XEvent fake_event;
86   fake_event.type = 0;  /* XAnyEvent type, ignored. */
87   fake_event.xany.display = si->dpy;
88   fake_event.xany.window  = 0;
89   XPutBackEvent (si->dpy, &fake_event);
90 }
91
92
93 #ifdef __GNUC__
94  __extension__     /* shut up about "string length is greater than the length
95                       ISO C89 compilers are required to support" when including
96                       the .ad file... */
97 #endif
98
99 static char *fallback[] = {
100 #include "XScreenSaver_ad.h"
101  0
102 };
103
104 int
105 main (int argc, char **argv)
106 {
107   enum { PASS, SPLASH, TTY } which;
108   Widget toplevel_shell = 0;
109   saver_screen_info ssip;
110   saver_info sip;
111   saver_info *si = &sip;
112   saver_preferences *p = &si->prefs;
113
114   memset(&sip, 0, sizeof(sip));
115   memset(&ssip, 0, sizeof(ssip));
116
117   si->nscreens = 1;
118   si->screens = si->default_screen = &ssip;
119   ssip.global = si;
120
121   global_si_kludge = si;
122   real_stderr = stderr;
123   real_stdout = stdout;
124
125   si->version = (char *) malloc (5);
126   memcpy (si->version, screensaver_id + 17, 4);
127   progname = argv[0];
128   {
129     char *s = strrchr(progname, '/');
130     if (*s) strcpy (progname, s+1);
131   }
132
133   if (argc != 2) goto USAGE;
134   else if (!strcmp (argv[1], "pass"))   which = PASS;
135   else if (!strcmp (argv[1], "splash")) which = SPLASH;
136   else if (!strcmp (argv[1], "tty"))    which = TTY;
137   else
138     {
139     USAGE:
140       fprintf (stderr, "usage: %s [ pass | splash | tty ]\n", progname);
141       exit (1);
142     }
143
144   /* before hack_uid() for proper permissions */
145   lock_priv_init (argc, argv, True);
146
147   hack_uid (si);
148
149   if (! lock_init (argc, argv, True))
150     {
151       si->locking_disabled_p = True;
152       si->nolock_reason = "error getting password";
153     }
154
155   progclass = "XScreenSaver";
156
157   if (which != TTY)
158     {
159       toplevel_shell = XtAppInitialize (&si->app, progclass, 0, 0,
160                                         &argc, argv, fallback,
161                                         0, 0);
162
163       si->dpy = XtDisplay (toplevel_shell);
164       p->db = XtDatabase (si->dpy);
165       si->default_screen->toplevel_shell = toplevel_shell;
166       si->default_screen->screen = XtScreen(toplevel_shell);
167       si->default_screen->default_visual =
168         si->default_screen->current_visual =
169         DefaultVisualOfScreen(si->default_screen->screen);
170       si->default_screen->screensaver_window =
171         RootWindowOfScreen(si->default_screen->screen);
172       si->default_screen->current_depth =
173         visual_depth(si->default_screen->screen,
174                      si->default_screen->current_visual);
175
176       db = p->db;
177       XtGetApplicationNameAndClass (si->dpy, &progname, &progclass);
178
179       load_init_file (&si->prefs);
180     }
181
182   p->verbose_p = True;
183
184   while (1)
185     {
186       if (which == PASS)
187         {
188           if (unlock_p (si))
189             fprintf (stderr, "%s: password correct\n", progname);
190           else
191             fprintf (stderr, "%s: password INCORRECT!\n", progname);
192
193           XSync(si->dpy, False);
194           sleep (3);
195         }
196       else if (which == SPLASH)
197         {
198           XEvent event;
199           make_splash_dialog (si);
200           XtAppAddTimeOut (si->app, p->splash_duration + 1000,
201                            idle_timer, (XtPointer) si);
202           while (si->splash_dialog)
203             {
204               XtAppNextEvent (si->app, &event);
205               if (event.xany.window == si->splash_dialog)
206                 handle_splash_event (si, &event);
207               XtDispatchEvent (&event);
208             }
209           XSync (si->dpy, False);
210           sleep (1);
211         }
212       else if (which == TTY)
213         {
214           char *pass;
215           char buf[255];
216           struct passwd *p = getpwuid (getuid ());
217           printf ("\n%s: %s's password: ", progname, p->pw_name);
218
219           pass = fgets (buf, sizeof(buf)-1, stdin);
220           if (!pass || !*pass)
221             exit (0);
222           if (pass[strlen(pass)-1] == '\n')
223             pass[strlen(pass)-1] = 0;
224
225           if (passwd_valid_p (pass, True))
226             printf ("%s: Ok!\n", progname);
227           else
228             printf ("%s: Wrong!\n", progname);
229         }
230       else
231         abort();
232     }
233 }