ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/main.C
(Generate patch)

Comparing rxvt-unicode/src/main.C (file contents):
Revision 1.165 by root, Sun Jan 8 00:20:12 2006 UTC vs.
Revision 1.179 by root, Mon Jan 16 08:48:09 2006 UTC

46 46
47#ifdef HAVE_TERMIOS_H 47#ifdef HAVE_TERMIOS_H
48# include <termios.h> 48# include <termios.h>
49#endif 49#endif
50 50
51#if (defined(HAVE_SETEUID) || defined(HAVE_SETREUID)) && !defined(__CYGWIN32__)
52static uid_t saved_euid;
53static gid_t saved_egid;
54#endif
55
56bool
57rxvt_tainted ()
58{
59#if (defined(HAVE_SETEUID) || defined(HAVE_SETREUID)) && !defined(__CYGWIN32__)
60 return getuid () != saved_euid || getgid () != saved_egid;
61#else
62 return false;
63#endif
64}
65
51vector<rxvt_term *> rxvt_term::termlist; 66vector<rxvt_term *> rxvt_term::termlist;
52 67
53static char curlocale[128], savelocale[128]; 68static char curlocale[128], savelocale[128];
54 69
55bool 70bool
61 strncpy (curlocale, locale, 128); 76 strncpy (curlocale, locale, 128);
62 setlocale (LC_CTYPE, curlocale); 77 setlocale (LC_CTYPE, curlocale);
63 return true; 78 return true;
64} 79}
65 80
66bool 81void
67rxvt_push_locale (const char *locale) 82rxvt_push_locale (const char *locale)
68{ 83{
69 strcpy (savelocale, curlocale); 84 strcpy (savelocale, curlocale);
70 rxvt_set_locale (locale); 85 rxvt_set_locale (locale);
71} 86}
269 if (parent[0]) 284 if (parent[0])
270 XDestroyWindow (disp, parent[0]); 285 XDestroyWindow (disp, parent[0]);
271 } 286 }
272 287
273 // TODO: free pixcolours, colours should become part of rxvt_display 288 // TODO: free pixcolours, colours should become part of rxvt_display
274
275 delete pix_colors_focused; 289 delete pix_colors_focused;
276#if OFF_FOCUS_FADING 290#if OFF_FOCUS_FADING
277 delete pix_colors_unfocused; 291 delete pix_colors_unfocused;
278#endif 292#endif
279 293
363} 377}
364 378
365void 379void
366rxvt_term::destroy_cb (time_watcher &w) 380rxvt_term::destroy_cb (time_watcher &w)
367{ 381{
368 SET_R (this); 382 make_current ();
369 383
370 delete this; 384 delete this;
371} 385}
372 386
373/*----------------------------------------------------------------------*/ 387/*----------------------------------------------------------------------*/
464/*----------------------------------------------------------------------*/ 478/*----------------------------------------------------------------------*/
465bool 479bool
466rxvt_term::init (int argc, const char *const *argv) 480rxvt_term::init (int argc, const char *const *argv)
467{ 481{
468 SET_R (this); 482 SET_R (this);
469
470 set_locale (""); 483 set_locale ("");
484 set_environ (envv); // few things in X do not call setlocale :(
471 485
472 if (!init_vars ()) 486 if (!init_vars ())
473 return false; 487 return false;
474 488
475 init_secondary (); 489 init_secondary ();
494 508
495 if ((rs[Rs_perl_ext_1] && *rs[Rs_perl_ext_1]) 509 if ((rs[Rs_perl_ext_1] && *rs[Rs_perl_ext_1])
496 || (rs[Rs_perl_ext_2] && *rs[Rs_perl_ext_2]) 510 || (rs[Rs_perl_ext_2] && *rs[Rs_perl_ext_2])
497 || (rs[Rs_perl_eval] && *rs[Rs_perl_eval])) 511 || (rs[Rs_perl_eval] && *rs[Rs_perl_eval]))
498 { 512 {
513#if (defined(HAVE_SETEUID) || defined(HAVE_SETREUID)) && !defined(__CYGWIN32__)
514 // ignore some perl-related arguments if some bozo installed us set[ug]id
515 if (rxvt_tainted ())
516 {
517 if ((rs[Rs_perl_lib] && *rs[Rs_perl_lib])
518 || (rs[Rs_perl_eval] && *rs[Rs_perl_eval]))
519 {
520 rxvt_warn ("running with elevated privileges: ignoring perl-lib and perl-eval.\n");
521 rs[Rs_perl_lib] = 0;
522 rs[Rs_perl_eval] = 0;
523 }
524 }
525#endif
499 rxvt_perl.init (); 526 rxvt_perl.init (this);
500 HOOK_INVOKE ((this, HOOK_INIT, DT_END)); 527 HOOK_INVOKE ((this, HOOK_INIT, DT_END));
501 } 528 }
502#endif 529#endif
503 530
504 create_windows (argc, argv); 531 create_windows (argc, argv);
505 532
506 dDisp; 533 dDisp;
507 534
508 init_xlocale (); 535 init_xlocale ();
509 536
510 scr_reset (); /* initialize screen */ 537 scr_reset (); // initialize screen
511 538
512#if 0 539#if 0
513 XSynchronize (disp, True); 540 XSynchronize (disp, True);
514#endif 541#endif
515 542
587 sw_int (this, &sig_handlers::sig_term) 614 sw_int (this, &sig_handlers::sig_term)
588 { 615 {
589 } 616 }
590} sig_handlers; 617} sig_handlers;
591 618
619char **rxvt_environ; // startup environment
620
592void 621void
593rxvt_init () 622rxvt_init ()
594{ 623{
624 rxvt_environ = environ;
625
595 /* 626 /*
596 * Save and then give up any super-user privileges 627 * Save and then give up any super-user privileges
597 * If we need privileges in any area then we must specifically request it. 628 * If we need privileges in any area then we must specifically request it.
598 * We should only need to be root in these cases: 629 * We should only need to be root in these cases:
599 * 1. write utmp entries on some systems 630 * 1. write utmp entries on some systems
613 /* signal (SIGURG, SIG_DFL); */ 644 /* signal (SIGURG, SIG_DFL); */
614 645
615 old_xerror_handler = XSetErrorHandler ((XErrorHandler) rxvt_xerror_handler); 646 old_xerror_handler = XSetErrorHandler ((XErrorHandler) rxvt_xerror_handler);
616 // TODO: handle this with exceptions and tolerate the memory loss 647 // TODO: handle this with exceptions and tolerate the memory loss
617 XSetIOErrorHandler (rxvt_xioerror_handler); 648 XSetIOErrorHandler (rxvt_xioerror_handler);
649
650 XrmInitialize ();
618} 651}
619 652
620/* ------------------------------------------------------------------------- * 653/* ------------------------------------------------------------------------- *
621 * MEMORY ALLOCATION WRAPPERS * 654 * MEMORY ALLOCATION WRAPPERS *
622 * ------------------------------------------------------------------------- */ 655 * ------------------------------------------------------------------------- */
658 * ------------------------------------------------------------------------- */ 691 * ------------------------------------------------------------------------- */
659/* take care of suid/sgid super-user (root) privileges */ 692/* take care of suid/sgid super-user (root) privileges */
660void 693void
661rxvt_privileges (rxvt_privaction action) 694rxvt_privileges (rxvt_privaction action)
662{ 695{
663#if (defined(HAVE_SETEUID) || defined(HAVE_SETREUID)) && !defined(__CYGWIN32__)
664 static uid_t euid;
665 static gid_t egid;
666#endif
667
668#if ! defined(__CYGWIN32__) 696#if ! defined(__CYGWIN32__)
669# if !defined(HAVE_SETEUID) && defined(HAVE_SETREUID) 697# if !defined(HAVE_SETEUID) && defined(HAVE_SETREUID)
670 /* setreuid () is the poor man's setuid (), seteuid () */ 698 /* setreuid () is the poor man's setuid (), seteuid () */
671# define seteuid(a) setreuid(-1, (a)) 699# define seteuid(a) setreuid(-1, (a))
672# define setegid(a) setregid(-1, (a)) 700# define setegid(a) setregid(-1, (a))
678 case IGNORE: 706 case IGNORE:
679 /* 707 /*
680 * change effective uid/gid - not real uid/gid - so we can switch 708 * change effective uid/gid - not real uid/gid - so we can switch
681 * back to root later, as required 709 * back to root later, as required
682 */ 710 */
711 setegid (getgid ());
683 seteuid (getuid ()); 712 seteuid (getuid ());
684 setegid (getgid ());
685 break; 713 break;
686 case SAVE: 714 case SAVE:
687 euid = geteuid ();
688 egid = getegid (); 715 saved_egid = getegid ();
716 saved_euid = geteuid ();
689 break; 717 break;
690 case RESTORE: 718 case RESTORE:
691 seteuid (euid);
692 setegid (egid); 719 setegid (saved_egid);
720 seteuid (saved_euid);
693 break; 721 break;
694 } 722 }
695# else 723# else
696 switch (action) 724 switch (action)
697 { 725 {
698 case IGNORE: 726 case IGNORE:
727 setgid (getgid ());
699 setuid (getuid ()); 728 setuid (getuid ());
700 setgid (getgid ());
701 /* FALLTHROUGH */ 729 /* FALLTHROUGH */
702 case SAVE: 730 case SAVE:
703 /* FALLTHROUGH */ 731 /* FALLTHROUGH */
704 case RESTORE: 732 case RESTORE:
705 break; 733 break;
1421 unsigned long fg, bg; 1449 unsigned long fg, bg;
1422 const char *p; 1450 const char *p;
1423 char **s; 1451 char **s;
1424 XIMStyles *xim_styles; 1452 XIMStyles *xim_styles;
1425 1453
1454 set_environ (envv);
1455
1426 if (! ((p = XSetLocaleModifiers (modifiers)) && *p)) 1456 if (! ((p = XSetLocaleModifiers (modifiers)) && *p))
1427 return false; 1457 return false;
1428 1458
1429 D_MAIN ((stderr, "rxvt_IM_get_IC ()")); 1459 D_MAIN ((stderr, "rxvt_IM_get_IC ()"));
1430 input_method = display->get_xim (locale, modifiers); 1460 input_method = display->get_xim (locale, modifiers);
1595 int i; 1625 int i;
1596 const char *p; 1626 const char *p;
1597 char **s; 1627 char **s;
1598 char buf[IMBUFSIZ]; 1628 char buf[IMBUFSIZ];
1599 1629
1600 SET_R (this); 1630 make_current ();
1601 1631
1602 im_destroy (); 1632 im_destroy ();
1603 1633
1604 D_MAIN ((stderr, "rxvt_IMInstantiateCallback ()")); 1634 D_MAIN ((stderr, "rxvt_IMInstantiateCallback ()"));
1605 if (Input_Context) 1635 if (Input_Context)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines