X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=driver%2Ftest-passwd.c;h=dfb7da25c22f55977d1b956b10477c0b2bee575e;hb=278c59e14c53fd412b734e699bd4f314f766f804;hp=019f86da1283d41055679db76bf563343659abd3;hpb=ce3185de9d9705e259f2b60dd4b5509007fa17d4;p=xscreensaver diff --git a/driver/test-passwd.c b/driver/test-passwd.c index 019f86da..dfb7da25 100644 --- a/driver/test-passwd.c +++ b/driver/test-passwd.c @@ -14,12 +14,16 @@ itself. */ +#define WHICH 0 + #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include +#include + #include #include #include @@ -29,6 +33,7 @@ #include "xscreensaver.h" #include "resources.h" #include "version.h" +#include "visual.h" char *progname = 0; char *progclass = 0; @@ -37,25 +42,36 @@ saver_info *global_si_kludge; FILE *real_stderr, *real_stdout; -void reset_stderr(saver_screen_info *ssi) {} -void clear_stderr(saver_screen_info *ssi) {} -void reset_watchdog_timer(saver_info *si, Bool on_p) {} void monitor_power_on (saver_info *si) {} -void ungrab_keyboard_and_mouse (saver_info *si) {} -Bool select_visual (saver_screen_info *ssi, const char *v) { return False; } -void raise_window (saver_info *si, Bool i, Bool b, Bool d) {} -void restore_real_vroot (saver_info *si) {} -void saver_exit (saver_info *si, int status, const char *core) { exit(status);} -const char * signal_name(int signal) { return "???"; } Bool monitor_powered_on_p (saver_info *si) { return True; } -void start_notice_events_timer (saver_info *si, Window w) {} void initialize_screensaver_window (saver_info *si) {} -void blank_screen (saver_info *si) {} +void raise_window (saver_info *si, Bool i, Bool b, Bool d) {} +Bool blank_screen (saver_info *si) {return False;} void unblank_screen (saver_info *si) {} +Bool select_visual (saver_screen_info *ssi, const char *v) { return False; } +Bool window_exists_p (Display *dpy, Window window) {return True;} +void start_notice_events_timer (saver_info *si, Window w, Bool b) {} Bool handle_clientmessage (saver_info *si, XEvent *e, Bool u) { return False; } int BadWindow_ehandler (Display *dpy, XErrorEvent *error) { exit(1); } +const char *signal_name(int signal) { return "???"; } +void restore_real_vroot (saver_info *si) {} +void saver_exit (saver_info *si, int status, const char *core) { exit(status);} const char *blurb(void) { return progname; } +Atom XA_SCREENSAVER, XA_DEMO, XA_PREFS; + +void +get_screen_viewport (saver_screen_info *ssi, + int *x_ret, int *y_ret, + int *w_ret, int *h_ret, + Bool verbose_p) +{ + *x_ret = 0; + *y_ret = 0; + *w_ret = WidthOfScreen (ssi->screen); + *h_ret = HeightOfScreen (ssi->screen); +} + void idle_timer (XtPointer closure, XtIntervalId *id) @@ -69,148 +85,15 @@ idle_timer (XtPointer closure, XtIntervalId *id) } -static char * -reformat_hack(const char *hack) -{ - int i; - const char *in = hack; - int indent = 13; - char *h2 = (char *) malloc(strlen(in) + indent + 2); - char *out = h2; - - while (isspace(*in)) in++; /* skip whitespace */ - while (*in && !isspace(*in) && *in != ':') - *out++ = *in++; /* snarf first token */ - while (isspace(*in)) in++; /* skip whitespace */ - - if (*in == ':') - *out++ = *in++; /* copy colon */ - else - { - in = hack; - out = h2; /* reset to beginning */ - } - - *out = 0; - - while (isspace(*in)) in++; /* skip whitespace */ - for (i = strlen(h2); i < indent; i++) /* indent */ - *out++ = ' '; - - while (*in) *out++ = *in++; /* copy rest of line */ - *out = 0; - - return h2; -} - - -static void -get_screenhacks (saver_info *si) -{ - saver_preferences *p = &si->prefs; - int i = 0; - int hacks_size = 60; - int size; - char *d; - - d = get_string_resource ("monoPrograms", "MonoPrograms"); - if (d && !*d) { free(d); d = 0; } - if (!d) - d = get_string_resource ("colorPrograms", "ColorPrograms"); - if (d && !*d) { free(d); d = 0; } - - if (d) - { - fprintf (stderr, - "%s: the `monoPrograms' and `colorPrograms' resources are obsolete;\n\ - see the manual for details.\n", blurb()); - free(d); - } - - d = get_string_resource ("programs", "Programs"); - - size = d ? strlen (d) : 0; - p->screenhacks = (char **) malloc (sizeof (char *) * hacks_size); - p->screenhacks_count = 0; - - while (i < size) - { - int end, start = i; - if (d[i] == ' ' || d[i] == '\t' || d[i] == '\n' || d[i] == 0) - { - i++; - continue; - } - if (hacks_size <= p->screenhacks_count) - p->screenhacks = (char **) realloc (p->screenhacks, - (hacks_size = hacks_size * 2) * - sizeof (char *)); - p->screenhacks [p->screenhacks_count++] = d + i; - while (d[i] != 0 && d[i] != '\n') - i++; - end = i; - while (i > start && (d[i-1] == ' ' || d[i-1] == '\t')) - i--; - d[i] = 0; - i = end + 1; - } - - /* shrink all whitespace to one space, for the benefit of the "demo" - mode display. We only do this when we can easily tell that the - whitespace is not significant (no shell metachars). - */ - for (i = 0; i < p->screenhacks_count; i++) - { - char *s = p->screenhacks [i]; - char *s2; - int L = strlen (s); - int j, k; - for (j = 0; j < L; j++) - { - switch (s[j]) - { - case '\'': case '"': case '`': case '\\': - goto DONE; - case '\t': - s[j] = ' '; - case ' ': - k = 0; - for (s2 = s+j+1; *s2 == ' ' || *s2 == '\t'; s2++) - k++; - if (k > 0) - { - for (s2 = s+j+1; s2[k]; s2++) - *s2 = s2[k]; - *s2 = 0; - } - break; - } - } - DONE: - p->screenhacks[i] = reformat_hack(s); /* mallocs */ - } - - if (p->screenhacks_count) - { - /* Shrink down the screenhacks array to be only as big as it needs to. - This doesn't really matter at all. */ - p->screenhacks = (char **) - realloc (p->screenhacks, ((p->screenhacks_count + 1) * - sizeof(char *))); - p->screenhacks [p->screenhacks_count] = 0; - } - else - { - free (p->screenhacks); - p->screenhacks = 0; - } -} - +static char *fallback[] = { +#include "XScreenSaver_ad.h" + 0 +}; int main (int argc, char **argv) { - Widget toplevel_shell; + Widget toplevel_shell = 0; saver_screen_info ssip; saver_info sip; saver_info *si = &sip; @@ -230,26 +113,31 @@ main (int argc, char **argv) si->version = (char *) malloc (5); memcpy (si->version, screensaver_id + 17, 4); progname = argv[0]; + { + char *s = strrchr(progname, '/'); + if (*s) strcpy (progname, s+1); + } -# ifdef SCO - set_auth_parameters(argc, argv); -# endif /* SCO */ + /* before hack_uid() for proper permissions */ + lock_priv_init (argc, argv, True); - if (! lock_init (argc, argv)) /* before hack_uid() for proper permissions */ + hack_uid (si); + + if (! lock_init (argc, argv, si->prefs.verbose_p)) { si->locking_disabled_p = True; si->nolock_reason = "error getting password"; } - hack_uid (si); - progclass = "XScreenSaver"; +#if (WHICH != 2) toplevel_shell = XtAppInitialize (&si->app, progclass, 0, 0, - &argc, argv, 0, 0, 0); + &argc, argv, fallback, + 0, 0); si->dpy = XtDisplay (toplevel_shell); - si->db = XtDatabase (si->dpy); + p->db = XtDatabase (si->dpy); si->default_screen->toplevel_shell = toplevel_shell; si->default_screen->screen = XtScreen(toplevel_shell); si->default_screen->default_visual = @@ -257,22 +145,22 @@ main (int argc, char **argv) DefaultVisualOfScreen(si->default_screen->screen); si->default_screen->screensaver_window = RootWindowOfScreen(si->default_screen->screen); + si->default_screen->current_depth = + visual_depth(si->default_screen->screen, + si->default_screen->current_visual); - db = si->db; + db = p->db; XtGetApplicationNameAndClass (si->dpy, &progname, &progclass); - p->debug_p = True; - p->verbose_p = True; - p->lock_p = True; - p->passwd_timeout = 1000 * get_seconds_resource ("passwdTimeout", "Time"); + load_init_file (&si->prefs); - get_screenhacks(si); +#endif /* (WHICH != 2) */ - hack_uid_warn (si); + p->verbose_p = True; while (1) { -#if 0 +#if WHICH == 0 if (unlock_p (si)) fprintf (stderr, "%s: password correct\n", progname); else @@ -280,10 +168,40 @@ main (int argc, char **argv) XSync(si->dpy, False); sleep (3); -#else - si->demo_mode_p = True; - make_screenhack_dialog (si); - XtAppMainLoop(si->app); +#elif WHICH == 1 + { + XEvent event; + make_splash_dialog (si); + XtAppAddTimeOut (si->app, p->splash_duration + 1000, + idle_timer, (XtPointer) si); + while (si->splash_dialog) + { + XtAppNextEvent (si->app, &event); + if (event.xany.window == si->splash_dialog) + handle_splash_event (si, &event); + XtDispatchEvent (&event); + } + XSync (si->dpy, False); + sleep (1); + } +#elif WHICH == 2 + { + char *pass; + char buf[255]; + struct passwd *p = getpwuid (getuid ()); + printf ("\n%s: %s's password: ", progname, p->pw_name); + + pass = fgets (buf, sizeof(buf)-1, stdin); + if (!pass || !*pass) + exit (0); + if (pass[strlen(pass)-1] == '\n') + pass[strlen(pass)-1] = 0; + + if (passwd_valid_p (pass, True)) + printf ("%s: Ok!\n", progname); + else + printf ("%s: Wrong!\n", progname); + } #endif } }