b9b6c328a7594244c30ebcc754c28dffa20064b5
[xscreensaver] / driver / test-passwd.c
1 /* xscreensaver, Copyright (c) 1998-2014 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 #include <X11/Xlocale.h>
31
32 #include "xscreensaver.h"
33 #include "resources.h"
34 #include "version.h"
35 #include "visual.h"
36 #include "auth.h"
37
38 char *progname = 0;
39 char *progclass = 0;
40 XrmDatabase db = 0;
41 saver_info *global_si_kludge;
42
43 FILE *real_stderr, *real_stdout;
44
45 void monitor_power_on (saver_info *si, Bool on_p) {}
46 Bool monitor_powered_on_p (saver_info *si) { return True; }
47 void initialize_screensaver_window (saver_info *si) {}
48 void raise_window (saver_info *si, Bool i, Bool b, Bool d) {}
49 Bool blank_screen (saver_info *si) {return False;}
50 void unblank_screen (saver_info *si) {}
51 void reset_watchdog_timer(saver_info *si, Bool on_p) {}
52 Bool select_visual (saver_screen_info *ssi, const char *v) { return False; }
53 Bool window_exists_p (Display *dpy, Window window) {return True;}
54 void start_notice_events_timer (saver_info *si, Window w, Bool b) {}
55 Bool handle_clientmessage (saver_info *si, XEvent *e, Bool u) { return False; }
56 int BadWindow_ehandler (Display *dpy, XErrorEvent *error) { exit(1); }
57 const char *signal_name(int signal) { return "???"; }
58 Bool restore_real_vroot (saver_info *si) { return False; }
59 void store_saver_status (saver_info *si) {}
60 void saver_exit (saver_info *si, int status, const char *core) { exit(status);}
61 int move_mouse_grab (saver_info *si, Window to, Cursor c, int ts) { return 0; }
62 int mouse_screen (saver_info *si) { return 0; }
63 void check_for_leaks (const char *where) { }
64 void shutdown_stderr (saver_info *si) { }
65 void resize_screensaver_window (saver_info *si) { }
66 void describe_monitor_layout (saver_info *si) { }
67 Bool update_screen_layout (saver_info *si) { return 0; }
68 Bool in_signal_handler_p = 0;
69
70 const char *blurb(void) { return progname; }
71 Atom XA_SCREENSAVER, XA_DEMO, XA_PREFS;
72
73 void
74 idle_timer (XtPointer closure, XtIntervalId *id)
75 {
76   saver_info *si = (saver_info *) closure;
77   XEvent fake_event;
78   fake_event.type = 0;  /* XAnyEvent type, ignored. */
79   fake_event.xany.display = si->dpy;
80   fake_event.xany.window  = 0;
81   XPutBackEvent (si->dpy, &fake_event);
82 }
83
84 static int
85 text_auth_conv (
86   int num_msg,
87   const struct auth_message *auth_msgs,
88   struct auth_response **resp,
89   saver_info *si)
90 {
91   char *input;
92   char buf[255];
93   struct auth_response *responses;
94   int i;
95
96   responses = calloc(num_msg, sizeof(struct auth_response));
97   if (!responses)
98     return -1;
99
100   /* The unlock state won't actually be used until this function returns and
101    * the auth module processes the response, but set it anyway for consistency
102    */
103   si->unlock_state = ul_read;
104
105   for (i = 0; i < num_msg; ++i)
106     {
107       printf ("\n%s: %s", progname, auth_msgs[i].msg);
108       if (   auth_msgs[i].type == AUTH_MSGTYPE_PROMPT_NOECHO
109           || auth_msgs[i].type == AUTH_MSGTYPE_PROMPT_ECHO)
110         {
111           input = fgets (buf, sizeof(buf)-1, stdin);
112           if (!input || !*input)
113             exit (0);
114           if (input[strlen(input)-1] == '\n')
115             input[strlen(input)-1] = 0;
116
117           responses[i].response = strdup(input);
118         }
119     }
120
121   *resp = responses;
122
123   si->unlock_state = ul_finished;
124
125   return 0;
126 }
127
128
129 #ifdef __GNUC__
130  __extension__     /* shut up about "string length is greater than the length
131                       ISO C89 compilers are required to support" when including
132                       the .ad file... */
133 #endif
134
135 static char *fallback[] = {
136 #include "XScreenSaver_ad.h"
137  0
138 };
139
140 extern Bool debug_passwd_window_p;  /* lock.c kludge */
141
142 int
143 main (int argc, char **argv)
144 {
145   enum { PASS, SPLASH, TTY } which;
146   Widget toplevel_shell = 0;
147   saver_screen_info ssip;
148   saver_info sip;
149   saver_info *si = &sip;
150   saver_preferences *p = &si->prefs;
151   struct passwd *pw;
152
153   memset(&sip, 0, sizeof(sip));
154   memset(&ssip, 0, sizeof(ssip));
155
156   si->nscreens = 1;
157   si->screens = si->default_screen = &ssip;
158   ssip.global = si;
159
160   global_si_kludge = si;
161   real_stderr = stderr;
162   real_stdout = stdout;
163
164   si->version = (char *) malloc (5);
165   memcpy (si->version, screensaver_id + 17, 4);
166   si->version[4] = 0;
167   progname = argv[0];
168   {
169     char *s = strrchr(progname, '/');
170     if (*s) strcpy (progname, s+1);
171   }
172
173   if (argc != 2) goto USAGE;
174   else if (!strcmp (argv[1], "pass"))   which = PASS;
175   else if (!strcmp (argv[1], "splash")) which = SPLASH;
176   else if (!strcmp (argv[1], "tty"))    which = TTY;
177   else
178     {
179     USAGE:
180       fprintf (stderr, "usage: %s [ pass | splash | tty ]\n", progname);
181       exit (1);
182     }
183
184 #ifdef NO_LOCKING
185   if (which == PASS || which == TTY)
186     {
187       fprintf (stderr, "%s: compiled with NO_LOCKING\n", progname);
188       exit (1);
189     }
190 #endif
191
192 #ifndef NO_LOCKING
193   /* before hack_uid() for proper permissions */
194   lock_priv_init (argc, argv, True);
195
196   hack_uid (si);
197
198   if (! lock_init (argc, argv, True))
199     {
200       si->locking_disabled_p = True;
201       si->nolock_reason = "error getting password";
202     }
203 #endif
204
205   progclass = "XScreenSaver";
206
207   if (!setlocale (LC_CTYPE, ""))
208     fprintf (stderr, "%s: warning: could not set default locale\n",
209              progname);
210
211
212   if (which != TTY)
213     {
214       toplevel_shell = XtAppInitialize (&si->app, progclass, 0, 0,
215                                         &argc, argv, fallback,
216                                         0, 0);
217
218       si->dpy = XtDisplay (toplevel_shell);
219       p->db = XtDatabase (si->dpy);
220       si->default_screen->toplevel_shell = toplevel_shell;
221       si->default_screen->screen = XtScreen(toplevel_shell);
222       si->default_screen->default_visual =
223         si->default_screen->current_visual =
224         DefaultVisualOfScreen(si->default_screen->screen);
225       si->default_screen->screensaver_window =
226         RootWindowOfScreen(si->default_screen->screen);
227       si->default_screen->current_depth =
228         visual_depth(si->default_screen->screen,
229                      si->default_screen->current_visual);
230
231       ssip.width = WidthOfScreen(ssip.screen);
232       ssip.height = HeightOfScreen(ssip.screen);
233
234       db = p->db;
235       XtGetApplicationNameAndClass (si->dpy, &progname, &progclass);
236
237       load_init_file (si->dpy, &si->prefs);
238     }
239
240   p->verbose_p = True;
241
242   pw = getpwuid (getuid ());
243   si->user = strdup (pw->pw_name);
244
245 /*  si->nscreens = 0;
246   si->screens = si->default_screen = 0; */
247
248   while (1)
249     {
250 #ifndef NO_LOCKING
251       if (which == PASS)
252         {
253           si->unlock_cb = gui_auth_conv;
254           si->auth_finished_cb = auth_finished_cb;
255
256           debug_passwd_window_p = True;
257           xss_authenticate(si, True);
258
259           if (si->unlock_state == ul_success)
260             fprintf (stderr, "%s: authentication succeeded\n", progname);
261           else
262             fprintf (stderr, "%s: authentication FAILED!\n", progname);
263
264           XSync(si->dpy, False);
265           fprintf (stderr, "\n######################################\n\n");
266           sleep (3);
267         }
268       else
269 #endif
270       if (which == SPLASH)
271         {
272           XEvent event;
273           make_splash_dialog (si);
274           XtAppAddTimeOut (si->app, p->splash_duration + 1000,
275                            idle_timer, (XtPointer) si);
276           while (si->splash_dialog)
277             {
278               XtAppNextEvent (si->app, &event);
279               if (event.xany.window == si->splash_dialog)
280                 handle_splash_event (si, &event);
281               XtDispatchEvent (&event);
282             }
283           XSync (si->dpy, False);
284           sleep (1);
285         }
286 #ifndef NO_LOCKING
287       else if (which == TTY)
288         {
289           si->unlock_cb = text_auth_conv;
290
291           printf ("%s: Authenticating user %s\n", progname, si->user);
292           xss_authenticate(si, True);
293
294           if (si->unlock_state == ul_success)
295             printf ("%s: Ok!\n", progname);
296           else
297             printf ("%s: Wrong!\n", progname);
298         }
299 #endif
300       else
301         abort();
302     }
303
304   free(si->user);
305 }