ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/main.C
Revision: 1.186
Committed: Tue Jan 17 15:41:33 2006 UTC (18 years, 4 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.185: +32 -4 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 pcg 1.66 /*--------------------------------*-C-*---------------------------------*
2     * File: main.C
3 pcg 1.1 *----------------------------------------------------------------------*
4     *
5     * All portions of code are copyright by their respective author/s.
6     * Copyright (c) 1992 John Bovey, University of Kent at Canterbury <jdb@ukc.ac.uk>
7 pcg 1.3 * - original version
8 pcg 1.1 * Copyright (c) 1994 Robert Nation <nation@rocket.sanders.lockheed.com>
9 pcg 1.3 * - extensive modifications
10 pcg 1.1 * Copyright (c) 1995 Garrett D'Amore <garrett@netcom.com>
11     * Copyright (c) 1997 mj olesen <olesen@me.QueensU.CA>
12 pcg 1.3 * - extensive modifications
13 pcg 1.1 * Copyright (c) 1997,1998 Oezguer Kesim <kesim@math.fu-berlin.de>
14     * Copyright (c) 1998-2001 Geoff Wing <gcw@pobox.com>
15 pcg 1.3 * - extensive modifications
16 root 1.164 * Copyright (c) 2003-2006 Marc Lehmann <pcg@goof.com>
17 pcg 1.1 *
18     * This program is free software; you can redistribute it and/or modify
19     * it under the terms of the GNU General Public License as published by
20     * the Free Software Foundation; either version 2 of the License, or
21     * (at your option) any later version.
22     *
23     * This program is distributed in the hope that it will be useful,
24     * but WITHOUT ANY WARRANTY; without even the implied warranty of
25     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26     * GNU General Public License for more details.
27     *
28     * You should have received a copy of the GNU General Public License
29     * along with this program; if not, write to the Free Software
30     * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
31     *---------------------------------------------------------------------*/
32    
33 pcg 1.3 #include "../config.h" /* NECESSARY */
34     #include "rxvt.h" /* NECESSARY */
35 root 1.155 #include "keyboard.h"
36     #include "rxvtperl.h"
37 pcg 1.1
38 root 1.151 #include <limits>
39    
40 root 1.123 #include <csignal>
41 root 1.128 #include <cstring>
42 pcg 1.1
43     #ifdef TTY_GID_SUPPORT
44     # include <grp.h>
45     #endif
46    
47     #ifdef HAVE_TERMIOS_H
48     # include <termios.h>
49     #endif
50    
51 root 1.167 #if (defined(HAVE_SETEUID) || defined(HAVE_SETREUID)) && !defined(__CYGWIN32__)
52     static uid_t saved_euid;
53     static gid_t saved_egid;
54     #endif
55    
56 root 1.168 bool
57     rxvt_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    
66 pcg 1.65 vector<rxvt_term *> rxvt_term::termlist;
67    
68 root 1.156 static char curlocale[128], savelocale[128];
69 pcg 1.15
70 pcg 1.65 bool
71 pcg 1.15 rxvt_set_locale (const char *locale)
72     {
73 root 1.94 if (!locale || !strncmp (locale, curlocale, 128))
74 pcg 1.65 return false;
75    
76 root 1.94 strncpy (curlocale, locale, 128);
77 pcg 1.65 setlocale (LC_CTYPE, curlocale);
78     return true;
79 pcg 1.15 }
80    
81 root 1.169 void
82 root 1.156 rxvt_push_locale (const char *locale)
83     {
84     strcpy (savelocale, curlocale);
85     rxvt_set_locale (locale);
86     }
87    
88     void
89     rxvt_pop_locale ()
90     {
91     rxvt_set_locale (savelocale);
92     }
93    
94 pcg 1.53 #if ENABLE_COMBINING
95 pcg 1.51 class rxvt_composite_vec rxvt_composite;
96    
97 pcg 1.54 text_t rxvt_composite_vec::compose (unicode_t c1, unicode_t c2)
98 pcg 1.51 {
99     compose_char *cc;
100    
101     // break compose chains, as stupid readline really likes to duplicate
102     // composing characters for some reason near the end of a line.
103     cc = (*this)[c1];
104     while (cc)
105     {
106     if (cc->c2 == c2) return c1;
107     cc = (*this)[cc->c1];
108     }
109    
110     // check to see wether this combination already exists otherwise
111     for (cc = v.end (); cc-- > v.begin (); )
112     {
113     if (cc->c1 == c1 && cc->c2 == c2)
114     return COMPOSE_LO + (cc - v.begin ());
115     }
116    
117     // allocate a new combination
118     if (v.size () == COMPOSE_HI - COMPOSE_LO + 1)
119     {
120     static int seen;
121    
122     if (!seen++)
123     fprintf (stderr, "too many unrepresentable composite characters, try --enable-unicode3\n");
124    
125     return REPLACEMENT_CHAR;
126     }
127    
128     v.push_back (compose_char (c1, c2));
129    
130     return v.size () - 1 + COMPOSE_LO;
131     }
132    
133 pcg 1.54 int rxvt_composite_vec::expand (unicode_t c, wchar_t *r)
134 pcg 1.51 {
135     compose_char *cc = (*this)[c];
136    
137     if (!cc)
138     {
139     if (r) *r = c;
140     return 1;
141     }
142    
143     int len = expand (cc->c1, r);
144    
145     if (r) r += len;
146    
147     if (cc->c2 != NOCHAR)
148     {
149     len++;
150     if (r) *r++ = cc->c2;
151     }
152    
153     return len;
154    
155     }
156 pcg 1.53 #endif
157 pcg 1.51
158 pcg 1.4 rxvt_term::rxvt_term ()
159 pcg 1.26 :
160 root 1.80 #if TRANSPARENT
161 pcg 1.27 rootwin_ev (this, &rxvt_term::rootwin_cb),
162 root 1.80 #endif
163 pcg 1.27 #ifdef HAVE_SCROLLBARS
164     scrollbar_ev (this, &rxvt_term::x_cb),
165     #endif
166 pcg 1.5 #ifdef CURSOR_BLINK
167 pcg 1.26 cursor_blink_ev (this, &rxvt_term::cursor_blink_cb),
168 pcg 1.21 #endif
169     #ifdef TEXT_BLINK
170 pcg 1.26 text_blink_ev (this, &rxvt_term::text_blink_cb),
171 pcg 1.5 #endif
172 root 1.70 #ifndef NO_SCROLLBAR_BUTTON_CONTINUAL_SCROLLING
173     cont_scroll_ev (this, &rxvt_term::cont_scroll_cb),
174     #endif
175     #ifdef SELECTION_SCROLLING
176     sel_scroll_ev (this, &rxvt_term::sel_scroll_cb),
177     #endif
178     #if defined(MOUSE_WHEEL) && defined(MOUSE_SLIP_WHEELING)
179     slip_wheel_ev (this, &rxvt_term::slip_wheel_cb),
180     #endif
181 pcg 1.6 #ifdef POINTER_BLANK
182 pcg 1.26 pointer_ev (this, &rxvt_term::pointer_cb),
183 pcg 1.6 #endif
184 pcg 1.35 #ifdef USE_XIM
185     im_ev (this, &rxvt_term::im_cb),
186     #endif
187 root 1.80 termwin_ev (this, &rxvt_term::x_cb),
188     vt_ev (this, &rxvt_term::x_cb),
189 pcg 1.26 check_ev (this, &rxvt_term::check_cb),
190 root 1.76 flush_ev (this, &rxvt_term::flush_cb),
191 pcg 1.26 destroy_ev (this, &rxvt_term::destroy_cb),
192     pty_ev (this, &rxvt_term::pty_cb),
193 pcg 1.35 incr_ev (this, &rxvt_term::incr_cb)
194 pcg 1.4 {
195     cmdbuf_ptr = cmdbuf_endp = cmdbuf_base;
196 pcg 1.65
197     termlist.push_back (this);
198 root 1.128
199     #ifdef KEYSYM_RESOURCE
200     keyboard = new keyboard_manager;
201    
202     if (!keyboard)
203     rxvt_fatal ("out of memory, aborting.\n");
204     #endif
205 pcg 1.4 }
206    
207 root 1.134 // clean up the most important stuff, do *not* call x or free mem etc.
208     // for use before an emergency exit
209     void rxvt_term::emergency_cleanup ()
210 pcg 1.4 {
211 root 1.94 if (cmd_pid)
212     kill (-cmd_pid, SIGHUP);
213    
214 root 1.184 delete pty; pty = 0;
215 root 1.134 }
216    
217     rxvt_term::~rxvt_term ()
218     {
219 root 1.162 HOOK_INVOKE ((this, HOOK_DESTROY, DT_END));
220 root 1.155
221 root 1.134 termlist.erase (find (termlist.begin (), termlist.end(), this));
222    
223     emergency_cleanup ();
224 root 1.132
225 root 1.108 #if ENABLE_STYLES
226     for (int i = RS_styleCount; --i; )
227 root 1.149 if (fontset[i] != fontset[0])
228     delete fontset[i];
229 root 1.108 #endif
230 root 1.149 delete fontset[0];
231 pcg 1.34
232     if (display)
233 pcg 1.44 {
234 root 1.134 dDisp;
235    
236 pcg 1.60 selection_clear ();
237    
238 root 1.77 #ifdef USE_XIM
239     im_destroy ();
240     #endif
241 pcg 1.60 #ifdef XTERM_SCROLLBAR
242 root 1.134 if (xscrollbarGC) XFreeGC (disp, xscrollbarGC);
243     if (ShadowGC) XFreeGC (disp, ShadowGC);
244 pcg 1.60 #endif
245     #ifdef PLAIN_SCROLLBAR
246 root 1.134 if (pscrollbarGC) XFreeGC (disp, pscrollbarGC);
247 pcg 1.60 #endif
248     #ifdef NEXT_SCROLLBAR
249 root 1.134 if (blackGC) XFreeGC (disp, blackGC);
250     if (whiteGC) XFreeGC (disp, whiteGC);
251     if (grayGC) XFreeGC (disp, grayGC);
252     if (darkGC) XFreeGC (disp, darkGC);
253     if (stippleGC) XFreeGC (disp, stippleGC);
254     if (dimple) XFreePixmap (disp, dimple);
255     if (upArrow) XFreePixmap (disp, upArrow);
256     if (downArrow) XFreePixmap (disp, downArrow);
257     if (upArrowHi) XFreePixmap (disp, upArrowHi);
258     if (downArrowHi) XFreePixmap (disp, downArrowHi);
259 pcg 1.60 #endif
260 root 1.180 #ifdef RXVT_SCROLLBAR
261 root 1.134 if (topShadowGC) XFreeGC (disp, topShadowGC);
262     if (botShadowGC) XFreeGC (disp, botShadowGC);
263     if (scrollbarGC) XFreeGC (disp, scrollbarGC);
264 pcg 1.60 #endif
265 root 1.149 if (gc) XFreeGC (disp, gc);
266 pcg 1.60
267 root 1.149 delete drawable;
268 pcg 1.45 // destroy all windows
269 root 1.149 if (parent[0])
270     XDestroyWindow (disp, parent[0]);
271 pcg 1.44 }
272 pcg 1.34
273 pcg 1.27 // TODO: free pixcolours, colours should become part of rxvt_display
274 root 1.94 delete pix_colors_focused;
275 root 1.145 #if OFF_FOCUS_FADING
276 root 1.94 delete pix_colors_unfocused;
277 root 1.73 #endif
278 pcg 1.27
279 pcg 1.29 displays.put (display);
280 pcg 1.33
281 pcg 1.34 scr_release ();
282    
283 pcg 1.60 /* clear all resources */
284     for (int i = 0; i < allocated.size (); i++)
285 root 1.134 free (allocated [i]);
286 pcg 1.60
287     free (selection.text);
288     // TODO: manage env vars in child only(!)
289 pcg 1.34 free (env_windowid);
290     free (env_display);
291     free (env_term);
292     free (env_colorfgbg);
293     free (locale);
294 root 1.120 free (v_buffer);
295 root 1.119 free (incr_buf);
296 pcg 1.34
297 pcg 1.33 delete envv;
298     delete argv;
299 root 1.128
300     #ifdef KEYSYM_RESOURCE
301 root 1.134 delete keyboard;
302 root 1.128 #endif
303 pcg 1.4 }
304    
305 pcg 1.8 void
306 root 1.152 rxvt_term::child_exit ()
307     {
308     cmd_pid = 0;
309    
310 root 1.154 if (!OPTION (Opt_hold))
311 root 1.152 destroy ();
312     }
313    
314     void
315 pcg 1.8 rxvt_term::destroy ()
316     {
317 root 1.77 if (destroy_ev.active)
318     return;
319    
320 root 1.94 #if ENABLE_OVERLAY
321     scr_overlay_off ();
322     #endif
323    
324 pcg 1.27 if (display)
325     {
326 root 1.80 #if USE_XIM
327 pcg 1.29 im_ev.stop (display);
328     #endif
329 root 1.80 #if HAVE_SCROLLBARS
330 pcg 1.27 scrollbar_ev.stop (display);
331     #endif
332 root 1.80 #if TRANSPARENT
333 root 1.77 rootwin_ev.stop (display);
334 root 1.80 #endif
335     incr_ev.stop ();
336 root 1.77 termwin_ev.stop (display);
337     vt_ev.stop (display);
338 pcg 1.27 }
339    
340 pcg 1.9 check_ev.stop ();
341 pcg 1.8 pty_ev.stop ();
342     #ifdef CURSOR_BLINK
343 pcg 1.21 cursor_blink_ev.stop ();
344     #endif
345     #ifdef TEXT_BLINK
346     text_blink_ev.stop ();
347 pcg 1.8 #endif
348 root 1.70 #ifndef NO_SCROLLBAR_BUTTON_CONTINUAL_SCROLLING
349     cont_scroll_ev.stop ();
350     #endif
351     #ifdef SELECTION_SCROLLING
352     sel_scroll_ev.stop ();
353     #endif
354 pcg 1.8 #ifdef POINTER_BLANK
355     pointer_ev.stop ();
356     #endif
357    
358     destroy_ev.start (0);
359     }
360    
361     void
362     rxvt_term::destroy_cb (time_watcher &w)
363     {
364 root 1.177 make_current ();
365 pcg 1.8
366     delete this;
367     }
368    
369 pcg 1.1 /*----------------------------------------------------------------------*/
370 root 1.134 /*
371     * Exit gracefully, clearing the utmp entry and restoring tty attributes
372     * TODO: if debugging, this should free up any known resources if we can
373     */
374     static XErrorHandler old_xerror_handler;
375    
376     static void
377     rxvt_emergency_cleanup ()
378     {
379     for (rxvt_term **t = rxvt_term::termlist.begin (); t < rxvt_term::termlist.end (); t++)
380     (*t)->emergency_cleanup ();
381     }
382    
383 root 1.135 #if ENABLE_FRILLS
384     static void
385     print_x_error (Display *dpy, XErrorEvent *event)
386     {
387     char buffer[BUFSIZ];
388     char mesg[BUFSIZ];
389     char number[32];
390     char *mtype = "XlibMessage";
391     XGetErrorText(dpy, event->error_code, buffer, BUFSIZ);
392     XGetErrorDatabaseText(dpy, mtype, "XError", "X Error", mesg, BUFSIZ);
393     rxvt_warn ("An X Error occured, trying to continue after report.\n");
394     rxvt_warn ("%s: %s\n", mesg, buffer);
395     XGetErrorDatabaseText(dpy, mtype, "MajorCode", "Request Major code %d", mesg, BUFSIZ);
396     rxvt_warn (strncat (mesg, "\n", BUFSIZ), event->request_code);
397     sprintf(number, "%d", event->request_code);
398     XGetErrorDatabaseText(dpy, "XRequest", number, "", buffer, BUFSIZ);
399     rxvt_warn ("(which is %s)\n", buffer);
400     if (event->request_code >= 128) {
401     XGetErrorDatabaseText(dpy, mtype, "MinorCode", "Request Minor code %d",
402     mesg, BUFSIZ);
403     rxvt_warn (strncat (mesg, "\n", BUFSIZ), event->minor_code);
404     }
405     if ((event->error_code == BadWindow) ||
406     (event->error_code == BadPixmap) ||
407     (event->error_code == BadCursor) ||
408     (event->error_code == BadFont) ||
409     (event->error_code == BadDrawable) ||
410     (event->error_code == BadColor) ||
411     (event->error_code == BadGC) ||
412     (event->error_code == BadIDChoice) ||
413     (event->error_code == BadValue) ||
414     (event->error_code == BadAtom)) {
415     if (event->error_code == BadValue)
416     XGetErrorDatabaseText(dpy, mtype, "Value", "Value 0x%x",
417     mesg, BUFSIZ);
418     else if (event->error_code == BadAtom)
419     XGetErrorDatabaseText(dpy, mtype, "AtomID", "AtomID 0x%x",
420     mesg, BUFSIZ);
421     else
422     XGetErrorDatabaseText(dpy, mtype, "ResourceID", "ResourceID 0x%x",
423     mesg, BUFSIZ);
424     rxvt_warn (strncat (mesg, "\n", BUFSIZ), event->resourceid);
425     }
426     XGetErrorDatabaseText(dpy, mtype, "ErrorSerial", "Error Serial #%d",
427     mesg, BUFSIZ);
428     rxvt_warn (strncat (mesg, "\n", BUFSIZ), event->serial);
429     }
430     #endif
431    
432 root 1.134 int
433     rxvt_xerror_handler (Display *display, XErrorEvent *event)
434     {
435     if (GET_R->allowedxerror == -1)
436     GET_R->allowedxerror = event->error_code;
437     else
438     {
439 root 1.146 // GET_R is most likely not the terminal which caused the error,
440     // so just output the error and continue
441 root 1.135 #if ENABLE_FRILLS
442     print_x_error (display, event);
443     #else
444 root 1.134 old_xerror_handler (display, event);
445 root 1.135 #endif
446 root 1.134 }
447    
448     return 0;
449     }
450    
451     int
452     rxvt_xioerror_handler (Display *display)
453     {
454     rxvt_warn ("X connection to '%s' broken, unable to recover, exiting.\n",
455     DisplayString (display));
456     rxvt_emergency_cleanup ();
457     _exit (EXIT_FAILURE);
458     }
459    
460     /*----------------------------------------------------------------------*/
461 pcg 1.60 bool
462     rxvt_term::init (int argc, const char *const *argv)
463 pcg 1.1 {
464 pcg 1.60 SET_R (this);
465 root 1.177 set_locale ("");
466 root 1.176 set_environ (envv); // few things in X do not call setlocale :(
467 pcg 1.1
468 root 1.175 if (!init_vars ())
469     return false;
470 pcg 1.8
471 root 1.175 init_secondary ();
472 pcg 1.1
473 root 1.175 const char **cmd_argv = init_resources (argc, argv);
474 pcg 1.3
475 root 1.128 #ifdef KEYSYM_RESOURCE
476 root 1.175 keyboard->register_done ();
477 root 1.128 #endif
478 pcg 1.16
479 pcg 1.1 #ifdef HAVE_SCROLLBARS
480 root 1.175 if (OPTION (Opt_scrollBar))
481     scrollBar.setIdle (); /* set existence for size calculations */
482 pcg 1.1 #endif
483    
484 root 1.155 #if ENABLE_PERL
485 root 1.165 if (!rs[Rs_perl_ext_1])
486     rs[Rs_perl_ext_1] = "default";
487    
488 root 1.160 if ((rs[Rs_perl_ext_1] && *rs[Rs_perl_ext_1])
489     || (rs[Rs_perl_ext_2] && *rs[Rs_perl_ext_2])
490     || (rs[Rs_perl_eval] && *rs[Rs_perl_eval]))
491 root 1.157 {
492 root 1.167 #if (defined(HAVE_SETEUID) || defined(HAVE_SETREUID)) && !defined(__CYGWIN32__)
493     // ignore some perl-related arguments if some bozo installed us set[ug]id
494 root 1.168 if (rxvt_tainted ())
495 root 1.167 {
496     if ((rs[Rs_perl_lib] && *rs[Rs_perl_lib])
497     || (rs[Rs_perl_eval] && *rs[Rs_perl_eval]))
498     {
499     rxvt_warn ("running with elevated privileges: ignoring perl-lib and perl-eval.\n");
500 root 1.168 rs[Rs_perl_lib] = 0;
501     rs[Rs_perl_eval] = 0;
502 root 1.167 }
503     }
504     #endif
505 root 1.179 rxvt_perl.init (this);
506 root 1.162 HOOK_INVOKE ((this, HOOK_INIT, DT_END));
507 root 1.157 }
508 root 1.155 #endif
509    
510 root 1.184 pty = rxvt_new_ptytty ();
511    
512 root 1.175 create_windows (argc, argv);
513 pcg 1.1
514 root 1.175 dDisp;
515 root 1.134
516 root 1.175 init_xlocale ();
517 pcg 1.1
518 root 1.175 scr_reset (); // initialize screen
519 pcg 1.1
520 root 1.117 #if 0
521 root 1.175 XSynchronize (disp, True);
522 pcg 1.1 #endif
523    
524     #ifdef HAVE_SCROLLBARS
525 root 1.175 if (OPTION (Opt_scrollBar))
526     resize_scrollbar (); /* create and map scrollbar */
527 pcg 1.1 #endif
528     #ifdef TRANSPARENT
529 root 1.175 if (OPTION (Opt_transparent))
530     {
531     XSelectInput (disp, display->root, PropertyChangeMask);
532     check_our_parents ();
533     rootwin_ev.start (display, display->root);
534     }
535 pcg 1.1 #endif
536 pcg 1.28
537 root 1.175 XMapWindow (disp, vt);
538     XMapWindow (disp, parent[0]);
539 pcg 1.1
540 root 1.175 set_colorfgbg ();
541 root 1.108
542 root 1.175 init_command (cmd_argv);
543 pcg 1.1
544 root 1.175 free (cmd_argv);
545 root 1.128
546 root 1.184 if (pty->pty >= 0)
547     pty_ev.start (pty->pty, EVENT_READ);
548 pcg 1.7
549 root 1.175 check_ev.start ();
550 pcg 1.10
551 root 1.175 HOOK_INVOKE ((this, HOOK_START, DT_END));
552 root 1.155
553 pcg 1.4 return true;
554 pcg 1.1 }
555    
556 root 1.148 static struct sig_handlers
557     {
558     sig_watcher sw_chld, sw_term, sw_int;
559    
560     void sig_chld (sig_watcher &w)
561     {
562     // we are being called for every SIGCHLD, find the corresponding term
563     int pid;
564    
565     while ((pid = waitpid (-1, NULL, WNOHANG)) > 0)
566     for (rxvt_term **t = rxvt_term::termlist.begin (); t < rxvt_term::termlist.end (); t++)
567     if (pid == (*t)->cmd_pid)
568     {
569 root 1.152 (*t)->child_exit ();
570 root 1.148 break;
571     }
572     }
573    
574     /*
575     * Catch a fatal signal and tidy up before quitting
576     */
577     void
578     sig_term (sig_watcher &w)
579     {
580     #ifdef DEBUG_CMD
581     rxvt_warn ("caught signal %d, exiting.\n", w.signum);
582     #endif
583     rxvt_emergency_cleanup ();
584     signal (w.signum, SIG_DFL);
585     kill (getpid (), w.signum);
586     }
587    
588     sig_handlers ()
589     : sw_chld (this, &sig_handlers::sig_chld),
590     sw_term (this, &sig_handlers::sig_term),
591     sw_int (this, &sig_handlers::sig_term)
592     {
593     }
594     } sig_handlers;
595    
596 root 1.175 char **rxvt_environ; // startup environment
597    
598 pcg 1.60 void
599 root 1.94 rxvt_init ()
600 pcg 1.60 {
601 root 1.186 uid_t uid = getuid ();
602     gid_t gid = getgid ();
603    
604     // before doing anything else, check for setuid/setgid operation,
605     // start the helper process and drop privileges
606     if (uid != geteuid ()
607     || 1 //D
608     || gid != getegid ())
609     {
610     #if PTYTTY_HELPER
611     rxvt_ptytty_server ();
612     #else
613     rxvt_warn ("running setuid/setgid without pty helper compiled in, continuing unprivileged.\n");
614     #endif
615    
616     // drop privileges
617     #if HAVE_SETRESUID
618     setresgid (gid, gid, gid);
619     setresuid (uid, uid, uid);
620     #elif HAVE_SETREUID
621     setregid (gid, gid);
622     setreuid (uid, uid);
623     #elif HAVE_SETUID
624     setgid (gid);
625     setuid (uid);
626     #endif
627    
628     if (uid != geteuid ()
629     || gid != getegid ())
630     rxvt_fatal ("unable to drop privileges, aborting.\n");
631     }
632    
633 root 1.175 rxvt_environ = environ;
634    
635 root 1.94 /*
636     * Save and then give up any super-user privileges
637     * If we need privileges in any area then we must specifically request it.
638     * We should only need to be root in these cases:
639     * 1. write utmp entries on some systems
640     * 2. chown tty on some systems
641     */
642     rxvt_privileges (SAVE);
643     rxvt_privileges (IGNORE);
644 pcg 1.60
645 root 1.114 signal (SIGHUP, SIG_IGN);
646     signal (SIGPIPE, SIG_IGN);
647 pcg 1.60
648 root 1.148 sig_handlers.sw_chld.start (SIGCHLD);
649     sig_handlers.sw_term.start (SIGTERM);
650     sig_handlers.sw_int.start (SIGINT);
651    
652 pcg 1.60 /* need to trap SIGURG for SVR4 (Unixware) rlogin */
653     /* signal (SIGURG, SIG_DFL); */
654    
655     old_xerror_handler = XSetErrorHandler ((XErrorHandler) rxvt_xerror_handler);
656 root 1.114 // TODO: handle this with exceptions and tolerate the memory loss
657 root 1.134 XSetIOErrorHandler (rxvt_xioerror_handler);
658 root 1.166
659     XrmInitialize ();
660 pcg 1.60 }
661    
662 pcg 1.1 /* ------------------------------------------------------------------------- *
663     * MEMORY ALLOCATION WRAPPERS *
664     * ------------------------------------------------------------------------- */
665 root 1.114 void *
666 pcg 1.32 rxvt_malloc (size_t size)
667 pcg 1.1 {
668 root 1.114 void *p = malloc (size);
669 pcg 1.1
670 root 1.114 if (!p)
671     rxvt_fatal ("memory allocation failure. aborting.\n");
672 pcg 1.26
673 root 1.114 return p;
674 pcg 1.1 }
675    
676 root 1.148 void *
677 pcg 1.32 rxvt_calloc (size_t number, size_t size)
678 pcg 1.1 {
679 root 1.114 void *p = calloc (number, size);
680 pcg 1.3
681 root 1.114 if (!p)
682     rxvt_fatal ("memory allocation failure. aborting.\n");
683 pcg 1.26
684 root 1.114 return p;
685 pcg 1.1 }
686    
687     void *
688 pcg 1.32 rxvt_realloc (void *ptr, size_t size)
689 pcg 1.1 {
690 root 1.114 void *p = realloc (ptr, size);
691 pcg 1.26
692 root 1.114 if (!p)
693     rxvt_fatal ("memory allocation failure. aborting.\n");
694 pcg 1.1
695 root 1.114 return p;
696 pcg 1.1 }
697 pcg 1.3
698 pcg 1.1 /* ------------------------------------------------------------------------- *
699     * PRIVILEGED OPERATIONS *
700     * ------------------------------------------------------------------------- */
701     /* take care of suid/sgid super-user (root) privileges */
702     void
703 root 1.94 rxvt_privileges (rxvt_privaction action)
704 pcg 1.1 {
705     #if ! defined(__CYGWIN32__)
706     # if !defined(HAVE_SETEUID) && defined(HAVE_SETREUID)
707 pcg 1.32 /* setreuid () is the poor man's setuid (), seteuid () */
708 pcg 1.3 # define seteuid(a) setreuid(-1, (a))
709     # define setegid(a) setregid(-1, (a))
710 pcg 1.1 # define HAVE_SETEUID
711     # endif
712     # ifdef HAVE_SETEUID
713 root 1.94 switch (action)
714 pcg 1.26 {
715     case IGNORE:
716     /*
717     * change effective uid/gid - not real uid/gid - so we can switch
718     * back to root later, as required
719     */
720 root 1.173 setegid (getgid ());
721 pcg 1.32 seteuid (getuid ());
722 pcg 1.3 break;
723 pcg 1.26 case SAVE:
724 root 1.173 saved_egid = getegid ();
725 root 1.167 saved_euid = geteuid ();
726 pcg 1.3 break;
727 pcg 1.26 case RESTORE:
728 root 1.173 setegid (saved_egid);
729 root 1.167 seteuid (saved_euid);
730 pcg 1.3 break;
731 pcg 1.1 }
732     # else
733 root 1.94 switch (action)
734 pcg 1.26 {
735     case IGNORE:
736 root 1.173 setgid (getgid ());
737 pcg 1.32 setuid (getuid ());
738 pcg 1.26 /* FALLTHROUGH */
739     case SAVE:
740     /* FALLTHROUGH */
741     case RESTORE:
742 pcg 1.3 break;
743 pcg 1.1 }
744     # endif
745     #endif
746     }
747    
748     /*----------------------------------------------------------------------*/
749     /*
750     * window size/position calculcations for XSizeHint and other storage.
751     * if width/height are non-zero then override calculated width/height
752     */
753     void
754 root 1.149 rxvt_term::window_calc (unsigned int newwidth, unsigned int newheight)
755 pcg 1.1 {
756 root 1.134 short recalc_x, recalc_y;
757 root 1.180 int x, y, sb_w, flags;
758 root 1.134 unsigned int w, h;
759     unsigned int max_width, max_height;
760     dDisp;
761 pcg 1.26
762 pcg 1.32 D_SIZE ((stderr, "< Cols/Rows: %3d x %3d ; Width/Height: %4d x %4d",
763 root 1.149 ncol, nrow, szHint.width, szHint.height));
764    
765 pcg 1.26 szHint.flags = PMinSize | PResizeInc | PBaseSize | PWinGravity;
766     szHint.win_gravity = NorthWestGravity;
767     /* szHint.min_aspect.x = szHint.min_aspect.y = 1; */
768    
769     recalc_x = recalc_y = 0;
770     flags = 0;
771 root 1.149
772 pcg 1.26 if (!parsed_geometry)
773     {
774     parsed_geometry = 1;
775 root 1.149
776 pcg 1.26 if (rs[Rs_geometry])
777 pcg 1.32 flags = XParseGeometry (rs[Rs_geometry], &x, &y, &w, &h);
778 root 1.136
779 pcg 1.26 if (flags & WidthValue)
780     {
781 root 1.151 ncol = clamp (w, 0, std::numeric_limits<int16_t>::max ());
782 pcg 1.26 szHint.flags |= USSize;
783 pcg 1.3 }
784 root 1.136
785 pcg 1.26 if (flags & HeightValue)
786     {
787 root 1.151 nrow = clamp (h, 0, std::numeric_limits<int16_t>::max ());
788 pcg 1.26 szHint.flags |= USSize;
789 pcg 1.3 }
790 root 1.136
791 pcg 1.26 if (flags & XValue)
792     {
793     szHint.x = x;
794     szHint.flags |= USPosition;
795 root 1.149
796 pcg 1.26 if (flags & XNegative)
797     {
798     recalc_x = 1;
799     szHint.win_gravity = NorthEastGravity;
800 pcg 1.3 }
801     }
802 root 1.136
803 pcg 1.26 if (flags & YValue)
804     {
805     szHint.y = y;
806     szHint.flags |= USPosition;
807 root 1.149
808 pcg 1.26 if (flags & YNegative)
809     {
810     recalc_y = 1;
811 root 1.149
812 pcg 1.26 if (szHint.win_gravity == NorthEastGravity)
813     szHint.win_gravity = SouthEastGravity;
814     else
815     szHint.win_gravity = SouthWestGravity;
816 pcg 1.3 }
817     }
818 pcg 1.1 }
819 pcg 1.53
820 pcg 1.26 /* TODO: BOUNDS */
821 root 1.149 width = ncol * fwidth;
822     height = nrow * fheight;
823     max_width = MAX_COLS * fwidth;
824     max_height = MAX_ROWS * fheight;
825 pcg 1.26
826 root 1.149 szHint.base_width = szHint.base_height = 2 * int_bwidth;
827 pcg 1.26
828 root 1.180 sb_w = 0;
829 root 1.149 window_vt_x = window_vt_y = int_bwidth;
830 pcg 1.67
831 root 1.180 if (scrollBar.state)
832 pcg 1.26 {
833 pcg 1.32 sb_w = scrollbar_TotalWidth ();
834 pcg 1.26 szHint.base_width += sb_w;
835 root 1.154 if (!OPTION (Opt_scrollBar_right))
836 root 1.70 window_vt_x += sb_w;
837 pcg 1.26 }
838 pcg 1.67
839 root 1.149 szHint.width_inc = fwidth;
840     szHint.height_inc = fheight;
841 pcg 1.26 szHint.min_width = szHint.base_width + szHint.width_inc;
842     szHint.min_height = szHint.base_height + szHint.height_inc;
843    
844 root 1.149 if (newwidth && newwidth - szHint.base_width < max_width)
845 pcg 1.26 {
846 root 1.149 szHint.width = newwidth;
847     width = newwidth - szHint.base_width;
848 pcg 1.26 }
849     else
850     {
851 root 1.150 min_it (width, max_width);
852 root 1.149 szHint.width = szHint.base_width + width;
853 pcg 1.26 }
854 pcg 1.67
855 root 1.149 if (newheight && newheight - szHint.base_height < max_height)
856 pcg 1.26 {
857 root 1.149 szHint.height = newheight;
858     height = newheight - szHint.base_height;
859 pcg 1.26 }
860     else
861     {
862 root 1.150 min_it (height, max_height);
863 root 1.149 szHint.height = szHint.base_height + height;
864 pcg 1.26 }
865 pcg 1.67
866 root 1.180 if (scrollBar.state && OPTION (Opt_scrollBar_right))
867 pcg 1.26 window_sb_x = szHint.width - sb_w;
868    
869     if (recalc_x)
870 root 1.149 szHint.x += DisplayWidth (disp, display->screen) - szHint.width - 2 * ext_bwidth;
871 pcg 1.26 if (recalc_y)
872 root 1.149 szHint.y += DisplayHeight (disp, display->screen) - szHint.height - 2 * ext_bwidth;
873 pcg 1.26
874 root 1.149 ncol = width / fwidth;
875     nrow = height / fheight;
876 pcg 1.32 D_SIZE ((stderr, "> Cols/Rows: %3d x %3d ; Width/Height: %4d x %4d",
877 root 1.149 ncol, nrow, szHint.width,
878 pcg 1.26 szHint.height));
879     return;
880 pcg 1.1 }
881    
882     /*----------------------------------------------------------------------*/
883     /*
884     * Tell the teletype handler what size the window is.
885     * Called after a window size change.
886     */
887     void
888 pcg 1.9 rxvt_term::tt_winch ()
889 pcg 1.1 {
890 root 1.184 if (pty->pty < 0)
891 root 1.94 return;
892    
893 pcg 1.20 struct winsize ws;
894 pcg 1.9
895 root 1.149 ws.ws_col = ncol;
896     ws.ws_row = nrow;
897     ws.ws_xpixel = width;
898     ws.ws_ypixel = height;
899 root 1.184 (void)ioctl (pty->pty, TIOCSWINSZ, &ws);
900 root 1.94
901     #if 0
902     // TIOCSWINSZ⎈ is supposed to do this automatically and correctly
903     if (cmd_pid) /* force through to the command */
904 root 1.140 kill (-cmd_pid, SIGWINCH);
905 pcg 1.1 #endif
906     }
907    
908     /*----------------------------------------------------------------------*/
909 root 1.108 /* set_fonts () - load and set the various fonts
910 root 1.147 *
911 pcg 1.1 * init = 1 - initialize
912     *
913     * fontname == FONT_UP - switch to bigger font
914     * fontname == FONT_DN - switch to smaller font
915     */
916 pcg 1.41 bool
917 root 1.108 rxvt_term::set_fonts ()
918 pcg 1.41 {
919 root 1.108 rxvt_fontset *fs = new rxvt_fontset (this);
920     rxvt_fontprop prop;
921    
922     if (!fs
923 root 1.114 || !fs->populate (rs[Rs_font] ? rs[Rs_font] : "fixed")
924 root 1.108 || !fs->realize_font (1))
925 pcg 1.41 {
926 root 1.108 delete fs;
927     return false;
928 pcg 1.41 }
929 root 1.108
930     #if ENABLE_STYLES
931     for (int i = RS_styleCount; --i; )
932 root 1.149 if (fontset[i] != fontset[0])
933     delete fontset[i];
934 root 1.108 #endif
935    
936 root 1.149 delete fontset[0];
937     fontset[0] = fs;
938 root 1.108
939 root 1.114 prop = (*fs)[1]->properties ();
940 root 1.149 prop.height += lineSpace;
941 root 1.114 fs->set_prop (prop);
942 root 1.108
943 root 1.149 fwidth = prop.width;
944     fheight = prop.height;
945 root 1.158 fbase = prop.ascent;
946 root 1.108
947     for (int style = 1; style < 4; style++)
948 pcg 1.41 {
949 root 1.108 #if ENABLE_STYLES
950     const char *res = rs[Rs_font + style];
951 pcg 1.41
952 root 1.108 if (res && !*res)
953 root 1.149 fontset[style] = fontset[0];
954 root 1.108 else
955 pcg 1.41 {
956 root 1.149 fontset[style] = fs = new rxvt_fontset (this);
957 root 1.108 rxvt_fontprop prop2 = prop;
958 pcg 1.41
959 root 1.108 if (res)
960     prop2.weight = prop2.slant = rxvt_fontprop::unset;
961     else
962 pcg 1.42 {
963 root 1.149 res = fontset[0]->fontdesc;
964 pcg 1.42
965 root 1.108 if (SET_STYLE (0, style) & RS_Bold) prop2.weight = rxvt_fontprop::bold;
966     if (SET_STYLE (0, style) & RS_Italic) prop2.slant = rxvt_fontprop::italic;
967     }
968 root 1.76
969 root 1.114 fs->populate (res);
970     fs->set_prop (prop2);
971 pcg 1.41 }
972 root 1.108 #else
973 root 1.149 fontset[style] = fontset[0];
974 root 1.108 #endif
975 pcg 1.41 }
976    
977 root 1.149 if (parent[0])
978 root 1.108 {
979     resize_all_windows (0, 0, 0);
980     scr_remap_chars ();
981     scr_touch (true);
982     }
983 pcg 1.1
984 root 1.108 return true;
985 pcg 1.41 }
986 pcg 1.1
987 root 1.118 void rxvt_term::set_string_property (Atom prop, const char *str, int len)
988     {
989 root 1.149 XChangeProperty (display->display, parent[0],
990 root 1.118 prop, XA_STRING, 8, PropModeReplace,
991     (const unsigned char *)str, len >= 0 ? len : strlen (str));
992     }
993    
994     void rxvt_term::set_utf8_property (Atom prop, const char *str, int len)
995     {
996     wchar_t *ws = rxvt_mbstowcs (str, len);
997     char *s = rxvt_wcstoutf8 (ws);
998    
999 root 1.149 XChangeProperty (display->display, parent[0],
1000 root 1.118 prop, xa[XA_UTF8_STRING], 8, PropModeReplace,
1001     (const unsigned char *)s, strlen (s));
1002    
1003     free (s);
1004     free (ws);
1005     }
1006    
1007 pcg 1.1 /*----------------------------------------------------------------------*/
1008     /*----------------------------------------------------------------------*/
1009     /* xterm sequences - title, iconName, color (exptl) */
1010     void
1011 pcg 1.22 rxvt_term::set_title (const char *str)
1012 pcg 1.1 {
1013 root 1.118 set_string_property (XA_WM_NAME, str);
1014 root 1.144 #if ENABLE_EWMH
1015 root 1.121 set_utf8_property (xa[XA_NET_WM_NAME], str);
1016 pcg 1.1 #endif
1017     }
1018    
1019     void
1020 pcg 1.60 rxvt_term::set_icon_name (const char *str)
1021 pcg 1.1 {
1022 root 1.118 set_string_property (XA_WM_ICON_NAME, str);
1023 root 1.144 #if ENABLE_EWMH
1024 root 1.121 set_utf8_property (xa[XA_NET_WM_ICON_NAME], str);
1025 pcg 1.1 #endif
1026     }
1027    
1028     #ifdef XTERM_COLOR_CHANGE
1029     void
1030 pcg 1.22 rxvt_term::set_window_color (int idx, const char *color)
1031 pcg 1.1 {
1032 pcg 1.46 rxvt_color xcol;
1033     int i;
1034 pcg 1.1
1035 pcg 1.26 if (color == NULL || *color == '\0')
1036     return;
1037 pcg 1.1
1038 pcg 1.26 /* handle color aliases */
1039 pcg 1.32 if (isdigit (*color))
1040 pcg 1.26 {
1041 pcg 1.32 i = atoi (color);
1042 root 1.134
1043 pcg 1.26 if (i >= 8 && i <= 15)
1044     { /* bright colors */
1045     i -= 8;
1046 root 1.94 pix_colors_focused[idx] = pix_colors_focused[minBrightCOLOR + i];
1047 pcg 1.32 SET_PIXCOLOR (idx);
1048 root 1.145 goto done;
1049 root 1.134 }
1050 pcg 1.26
1051     if (i >= 0 && i <= 7)
1052     { /* normal colors */
1053 root 1.94 pix_colors_focused[idx] = pix_colors_focused[minCOLOR + i];
1054 pcg 1.32 SET_PIXCOLOR (idx);
1055 root 1.145 goto done;
1056 pcg 1.3 }
1057 pcg 1.1 }
1058 pcg 1.65
1059 root 1.134 if (!rXParseAllocColor (&xcol, color))
1060 pcg 1.26 return;
1061 pcg 1.65
1062 root 1.76 /* XStoreColor (display->display, display->cmap, XColor*); */
1063 pcg 1.1
1064 pcg 1.26 /*
1065     * FIXME: should free colors here, but no idea how to do it so instead,
1066     * so just keep gobbling up the colormap
1067     */
1068 pcg 1.1 # if 0
1069 pcg 1.26 for (i = Color_Black; i <= Color_White; i++)
1070 root 1.94 if (pix_colors[idx] == pix_colors[i])
1071 pcg 1.26 break;
1072     if (i > Color_White)
1073     {
1074 root 1.94 /* fprintf (stderr, "XFreeColors: pix_colors [%d] = %lu\n", idx, pix_colors [idx]); */
1075     XFreeColors (display->display, display->cmap, (pix_colors + idx), 1,
1076 pcg 1.32 DisplayPlanes (display->display, display->screen));
1077 pcg 1.1 }
1078     # endif
1079    
1080 root 1.94 pix_colors_focused[idx] = xcol;
1081 pcg 1.32 SET_PIXCOLOR (idx);
1082 pcg 1.1
1083 pcg 1.26 /* XSetWindowAttributes attr; */
1084     /* Cursor cursor; */
1085 root 1.145 done:
1086    
1087     #if OFF_FOCUS_FADING
1088 root 1.108 if (rs[Rs_fade])
1089 root 1.145 pix_colors_unfocused[idx] = pix_colors_focused[idx].fade (display, atoi (rs[Rs_fade]), pix_colors[Color_fade]);
1090 root 1.73 #endif
1091 pcg 1.26
1092 root 1.108 /*TODO: handle Color_BD, scrollbar background, etc. */
1093 pcg 1.26
1094     recolour_cursor ();
1095 root 1.108 scr_recolour ();
1096 pcg 1.1 }
1097    
1098     #else
1099 pcg 1.22 # define set_window_color (idx,color) ((void)0)
1100 pcg 1.3 #endif /* XTERM_COLOR_CHANGE */
1101 pcg 1.1
1102     void
1103 pcg 1.15 rxvt_term::recolour_cursor ()
1104 pcg 1.1 {
1105 pcg 1.65 XColor xcol[2];
1106 pcg 1.1
1107 root 1.108 xcol[0].pixel = ISSET_PIXCOLOR (Color_pointer_fg)
1108     ? pix_colors_focused[Color_pointer_fg]
1109     : pix_colors_focused[Color_fg];
1110     xcol[1].pixel = ISSET_PIXCOLOR (Color_pointer_bg)
1111     ? pix_colors_focused[Color_pointer_bg]
1112     : pix_colors_focused[Color_bg];
1113    
1114 root 1.76 XQueryColors (display->display, display->cmap, xcol, 2);
1115 pcg 1.65 XRecolorCursor (display->display, TermWin_cursor, xcol + 0, xcol + 1);
1116 pcg 1.1 }
1117    
1118     /*----------------------------------------------------------------------*/
1119     /*
1120     * find if fg/bg matches any of the normal (low-intensity) colors
1121     */
1122     void
1123 pcg 1.22 rxvt_term::set_colorfgbg ()
1124 pcg 1.1 {
1125 root 1.108 unsigned int i;
1126     const char *xpmb = "\0";
1127     char fstr[sizeof ("default") + 1], bstr[sizeof ("default") + 1];
1128 pcg 1.26
1129 root 1.108 env_colorfgbg = (char *)rxvt_malloc (sizeof ("COLORFGBG=default;default;bg") + 1);
1130 root 1.94 strcpy (fstr, "default");
1131     strcpy (bstr, "default");
1132 pcg 1.26 for (i = Color_Black; i <= Color_White; i++)
1133 root 1.94 if (pix_colors[Color_fg] == pix_colors[i])
1134 pcg 1.26 {
1135 pcg 1.32 sprintf (fstr, "%d", (i - Color_Black));
1136 pcg 1.26 break;
1137     }
1138 root 1.108
1139 pcg 1.26 for (i = Color_Black; i <= Color_White; i++)
1140 root 1.94 if (pix_colors[Color_bg] == pix_colors[i])
1141 pcg 1.26 {
1142 pcg 1.32 sprintf (bstr, "%d", (i - Color_Black));
1143 pcg 1.1 #ifdef XPM_BACKGROUND
1144 pcg 1.26 xpmb = "default;";
1145 pcg 1.1 #endif
1146 pcg 1.26 break;
1147     }
1148 pcg 1.33
1149 pcg 1.32 sprintf (env_colorfgbg, "COLORFGBG=%s;%s%s", fstr, xpmb, bstr);
1150 pcg 1.1 }
1151    
1152     /*----------------------------------------------------------------------*/
1153    
1154     int
1155 pcg 1.22 rxvt_term::rXParseAllocColor (rxvt_color *screen_in_out, const char *colour)
1156 pcg 1.1 {
1157 pcg 1.27 if (!screen_in_out->set (display, colour))
1158 pcg 1.26 {
1159 pcg 1.60 rxvt_warn ("can't get colour '%s', continuing without.\n", colour);
1160 pcg 1.26 return false;
1161 pcg 1.3 }
1162 pcg 1.1
1163 pcg 1.26 return true;
1164 pcg 1.1 }
1165    
1166     /* -------------------------------------------------------------------- *
1167     * - WINDOW RESIZING - *
1168     * -------------------------------------------------------------------- */
1169     void
1170 root 1.149 rxvt_term::resize_all_windows (unsigned int newwidth, unsigned int newheight, int ignoreparent)
1171 pcg 1.1 {
1172 pcg 1.17 int fix_screen;
1173     int old_width = szHint.width, old_height = szHint.height;
1174 root 1.134 dDisp;
1175 pcg 1.1
1176 root 1.149 window_calc (newwidth, newheight);
1177     XSetWMNormalHints (disp, parent[0], &szHint);
1178 pcg 1.67
1179 pcg 1.17 if (!ignoreparent)
1180     {
1181 pcg 1.3 #ifdef SMART_RESIZE
1182 pcg 1.17 /*
1183     * resize by Marius Gedminas <marius.gedminas@uosis.mif.vu.lt>
1184     * reposition window on resize depending on placement on screen
1185     */
1186     int x, y, x1, y1;
1187     int dx, dy;
1188     unsigned int unused_w1, unused_h1, unused_b1, unused_d1;
1189     Window unused_cr;
1190    
1191 root 1.149 XTranslateCoordinates (disp, parent[0], display->root,
1192 pcg 1.17 0, 0, &x, &y, &unused_cr);
1193 root 1.149 XGetGeometry (disp, parent[0], &unused_cr, &x1, &y1,
1194 pcg 1.17 &unused_w1, &unused_h1, &unused_b1, &unused_d1);
1195     /*
1196 pcg 1.27 * if display->root isn't the parent window, a WM will probably have offset
1197 pcg 1.17 * our position for handles and decorations. Counter it
1198     */
1199 pcg 1.26 if (x1 != x || y1 != y)
1200     {
1201 pcg 1.17 x -= x1;
1202     y -= y1;
1203 pcg 1.26 }
1204 pcg 1.17
1205 root 1.134 x1 = (DisplayWidth (disp, display->screen) - old_width) / 2;
1206     y1 = (DisplayHeight (disp, display->screen) - old_height) / 2;
1207 pcg 1.17 dx = old_width - szHint.width;
1208     dy = old_height - szHint.height;
1209    
1210 pcg 1.26 /* Check position of the center of the window */
1211 pcg 1.17 if (x < x1) /* left half */
1212 pcg 1.26 dx = 0;
1213 pcg 1.17 else if (x == x1) /* exact center */
1214 pcg 1.26 dx /= 2;
1215 pcg 1.17 if (y < y1) /* top half */
1216 pcg 1.26 dy = 0;
1217 pcg 1.17 else if (y == y1) /* exact center */
1218 pcg 1.26 dy /= 2;
1219 pcg 1.3
1220 root 1.149 XMoveResizeWindow (disp, parent[0], x + dx, y + dy,
1221 pcg 1.17 szHint.width, szHint.height);
1222 pcg 1.1 #else
1223 root 1.149 XResizeWindow (disp, parent[0], szHint.width, szHint.height);
1224 pcg 1.1 #endif
1225     }
1226    
1227 root 1.149 fix_screen = ncol != prev_ncol || nrow != prev_nrow;
1228 pcg 1.17
1229 root 1.149 if (fix_screen || newwidth != old_width || newheight != old_height)
1230 pcg 1.17 {
1231 root 1.180 if (scrollBar.state)
1232 pcg 1.17 {
1233 root 1.134 XMoveResizeWindow (disp, scrollBar.win,
1234 pcg 1.67 window_sb_x, 0,
1235     scrollbar_TotalWidth (), szHint.height);
1236 pcg 1.17 resize_scrollbar ();
1237 pcg 1.3 }
1238 pcg 1.17
1239 root 1.149 XMoveResizeWindow (disp, vt,
1240 pcg 1.67 window_vt_x, window_vt_y,
1241 root 1.159 width, height);
1242 root 1.132
1243 pcg 1.67 scr_clear ();
1244 pcg 1.1 #ifdef XPM_BACKGROUND
1245 pcg 1.22 resize_pixmap ();
1246 pcg 1.1 #endif
1247     }
1248    
1249 pcg 1.17 if (fix_screen || old_height == 0)
1250     {
1251     int curr_screen = -1;
1252 pcg 1.19 int old_ncol = prev_ncol;
1253 pcg 1.1
1254 pcg 1.17 /* scr_reset only works on the primary screen */
1255     if (old_height) /* this is not the first time through */
1256 pcg 1.19 {
1257 root 1.149 unsigned int ocol = ncol;
1258     ncol = prev_ncol; // save b/c scr_blank_screen_mem uses this
1259 pcg 1.22 curr_screen = scr_change_screen (PRIMARY);
1260 root 1.149 ncol = ocol;
1261 pcg 1.19 }
1262 pcg 1.13
1263 pcg 1.32 scr_reset ();
1264 pcg 1.13
1265 pcg 1.17 if (curr_screen >= 0) /* this is not the first time through */
1266     {
1267 pcg 1.22 scr_change_screen (curr_screen);
1268 root 1.149 selection_check (old_ncol != ncol ? 4 : 0);
1269 pcg 1.3 }
1270 pcg 1.1 }
1271    
1272 pcg 1.17 old_width = szHint.width;
1273     old_height = szHint.height;
1274 pcg 1.1
1275 root 1.132 #ifdef XPM_BACKGROUND
1276 root 1.149 if (pixmap)
1277 root 1.132 scr_touch (false);
1278     #endif
1279    
1280 pcg 1.1 #ifdef USE_XIM
1281 pcg 1.22 IMSetStatusPosition ();
1282 pcg 1.1 #endif
1283     }
1284    
1285     /*
1286     * Set the width/height of the vt window in characters. Units are pixels.
1287     * good for toggling 80/132 columns
1288     */
1289     void
1290 root 1.149 rxvt_term::set_widthheight (unsigned int newwidth, unsigned int newheight)
1291 pcg 1.1 {
1292 pcg 1.26 XWindowAttributes wattr;
1293 pcg 1.1
1294 root 1.149 if (newwidth == 0 || newheight == 0)
1295 pcg 1.26 {
1296 pcg 1.32 XGetWindowAttributes (display->display, display->root, &wattr);
1297 root 1.142
1298 root 1.149 if (newwidth == 0)
1299     newwidth = wattr.width - szHint.base_width;
1300     if (newheight == 0)
1301     newheight = wattr.height - szHint.base_height;
1302 pcg 1.26 }
1303 root 1.80
1304 root 1.149 if (newwidth != width || newheight != height)
1305 pcg 1.26 {
1306 root 1.149 newwidth += szHint.base_width;
1307     newheight += szHint.base_height;
1308     resize_all_windows (newwidth, newheight, 0);
1309 pcg 1.1 }
1310     }
1311    
1312     /* -------------------------------------------------------------------- *
1313     * - X INPUT METHOD ROUTINES - *
1314     * -------------------------------------------------------------------- */
1315     #ifdef USE_XIM
1316 pcg 1.29
1317 pcg 1.1 void
1318 root 1.94 rxvt_term::im_set_color (unsigned long &fg, unsigned long &bg)
1319 pcg 1.1 {
1320 root 1.94 fg = pix_colors[Color_fg];
1321     bg = pix_colors[Color_bg];
1322 pcg 1.1 }
1323    
1324     void
1325 root 1.94 rxvt_term::im_set_size (XRectangle &size)
1326 pcg 1.1 {
1327 root 1.94 // the int_bwidth terms make no sense to me
1328 root 1.149 size.x = int_bwidth;
1329     size.y = int_bwidth;
1330     size.width = Width2Pixel (ncol) + int_bwidth;
1331     size.height = Height2Pixel (nrow) + int_bwidth;
1332 root 1.94 }
1333    
1334     void
1335     rxvt_term::im_set_preedit_area (XRectangle &preedit_rect,
1336     XRectangle &status_rect,
1337     const XRectangle &needed_rect)
1338     {
1339     preedit_rect.x = needed_rect.width;
1340     preedit_rect.y = 0;
1341 root 1.149 preedit_rect.width = Width2Pixel (ncol) - needed_rect.width + 1;
1342     preedit_rect.height = fheight;
1343 root 1.94
1344     status_rect.x = 0;
1345     status_rect.y = 0;
1346 root 1.149 status_rect.width = needed_rect.width ? needed_rect.width : Width2Pixel (ncol) + 1;
1347     status_rect.height = fheight;
1348 pcg 1.1 }
1349    
1350     /* Checking whether input method is running. */
1351 pcg 1.22 bool
1352     rxvt_term::IMisRunning ()
1353 pcg 1.1 {
1354 root 1.94 char *p;
1355     Atom atom;
1356     Window win;
1357     char server[IMBUFSIZ];
1358 pcg 1.26
1359     /* get current locale modifier */
1360 pcg 1.32 if ((p = XSetLocaleModifiers (NULL)) != NULL)
1361 pcg 1.26 {
1362 root 1.94 strcpy (server, "@server=");
1363     strncat (server, & (p[4]), IMBUFSIZ - 9); /* skip "@im=" */
1364    
1365     if ((p = strchr (server + 1, '@')) != NULL) /* first one only */
1366 pcg 1.26 *p = '\0';
1367    
1368 pcg 1.32 atom = XInternAtom (display->display, server, False);
1369     win = XGetSelectionOwner (display->display, atom);
1370 root 1.94
1371 pcg 1.26 if (win != None)
1372     return True;
1373 pcg 1.1 }
1374 root 1.94
1375 pcg 1.26 return False;
1376 pcg 1.1 }
1377    
1378     void
1379 pcg 1.22 rxvt_term::IMSendSpot ()
1380 pcg 1.1 {
1381 root 1.114 XPoint nspot;
1382 root 1.94 XVaNestedList preedit_attr;
1383 pcg 1.1
1384 root 1.94 if (!Input_Context
1385 root 1.149 || !focus
1386 root 1.114 || !(input_style & XIMPreeditPosition))
1387     return;
1388    
1389     im_set_position (nspot);
1390    
1391     if (nspot.x == spot.x && nspot.y == spot.y)
1392 pcg 1.26 return;
1393 pcg 1.1
1394 root 1.114 spot = nspot;
1395 pcg 1.1
1396 pcg 1.32 preedit_attr = XVaCreateNestedList (0, XNSpotLocation, &spot, NULL);
1397     XSetICValues (Input_Context, XNPreeditAttributes, preedit_attr, NULL);
1398     XFree (preedit_attr);
1399 pcg 1.1 }
1400    
1401     void
1402 pcg 1.29 rxvt_term::im_destroy ()
1403     {
1404 root 1.114 if (input_method)
1405 pcg 1.29 {
1406 root 1.114 if (Input_Context && input_method->xim)
1407     XDestroyIC (Input_Context);
1408 pcg 1.29
1409     display->put_xim (input_method);
1410     input_method = 0;
1411     }
1412 root 1.114
1413     Input_Context = 0;
1414 pcg 1.1 }
1415    
1416     /*
1417     * Try to open a XIM with the current modifiers, then see if we can
1418     * open a suitable preedit type
1419     */
1420 pcg 1.22 bool
1421 pcg 1.29 rxvt_term::IM_get_IC (const char *modifiers)
1422 pcg 1.1 {
1423 root 1.94 int i, j, found;
1424     XIM xim;
1425     XPoint spot;
1426     XRectangle rect, status_rect, needed_rect;
1427     unsigned long fg, bg;
1428     const char *p;
1429     char **s;
1430     XIMStyles *xim_styles;
1431 pcg 1.29
1432 root 1.176 set_environ (envv);
1433 root 1.171
1434 pcg 1.32 if (! ((p = XSetLocaleModifiers (modifiers)) && *p))
1435 pcg 1.29 return false;
1436 pcg 1.26
1437 pcg 1.32 D_MAIN ((stderr, "rxvt_IM_get_IC ()"));
1438 pcg 1.29 input_method = display->get_xim (locale, modifiers);
1439     if (input_method == NULL)
1440     return false;
1441    
1442     xim = input_method->xim;
1443 root 1.114 spot.x = spot.y = -1;
1444 pcg 1.26
1445     xim_styles = NULL;
1446     if (XGetIMValues (xim, XNQueryInputStyle, &xim_styles, NULL)
1447     || !xim_styles || !xim_styles->count_styles)
1448     {
1449 root 1.94 im_destroy ();
1450 pcg 1.29 return false;
1451 pcg 1.26 }
1452    
1453 root 1.116 const char *pet[] = { rs[Rs_preeditType], "OverTheSpot,OffTheSpot,Root,None" };
1454 root 1.94
1455 root 1.116 for (int pi = 0; pi < 2; pi++)
1456 pcg 1.26 {
1457 root 1.116 p = pet[pi];
1458    
1459     if (!p)
1460     continue;
1461    
1462     s = rxvt_splitcommastring (p);
1463    
1464     for (i = found = 0; !found && s[i]; i++)
1465     {
1466     if (!strcmp (s[i], "OverTheSpot"))
1467     input_style = (XIMPreeditPosition | XIMStatusNothing);
1468     else if (!strcmp (s[i], "OffTheSpot"))
1469     input_style = (XIMPreeditArea | XIMStatusArea);
1470     else if (!strcmp (s[i], "Root"))
1471     input_style = (XIMPreeditNothing | XIMStatusNothing);
1472     else if (!strcmp (s[i], "None"))
1473     input_style = (XIMPreeditNone | XIMStatusNone);
1474    
1475     for (j = 0; j < xim_styles->count_styles; j++)
1476     if (input_style == xim_styles->supported_styles[j])
1477     {
1478     rxvt_freecommastring (s);
1479    
1480     found = 1;
1481     goto foundpet;
1482     }
1483    
1484     }
1485    
1486     rxvt_freecommastring (s);
1487 pcg 1.26 }
1488 pcg 1.29
1489 root 1.116 foundpet:
1490 pcg 1.29
1491     XFree (xim_styles);
1492 pcg 1.26
1493     if (!found)
1494     {
1495 root 1.94 im_destroy ();
1496 pcg 1.29 return false;
1497 pcg 1.26 }
1498    
1499 root 1.94 XFontSet fs = 0;
1500     XVaNestedList preedit_attr = 0, status_attr = 0;
1501    
1502     if (input_style & (XIMPreeditPosition | XIMPreeditArea))
1503     {
1504     // fake us a font-set, please
1505     char **missing_charset_list;
1506     int missing_charset_count;
1507     char *def_string;
1508     char pat[512];
1509    
1510     sprintf (pat,
1511     "-*-*-*-R-*-*-%d-*-*-*-*-*-*,"
1512     "-*-*-*-R-*-*-%d-*-*-*-*-*-*,"
1513     "-*-*-*-R-*-*-%d-*-*-*-*-*-*,"
1514     "-*-*-*-R-*-*-%d-*-*-*-*-*-*,"
1515     "-*-*-*-R-*-*-%d-*-*-*-*-*-*,"
1516     "*",
1517 root 1.149 fheight,
1518     fheight + 1, fheight - 1,
1519     fheight - 2, fheight + 2);
1520 root 1.94
1521 root 1.132 fs = XCreateFontSet (display->display, rs[Rs_imFont] ? rs[Rs_imFont] : pat,
1522 root 1.94 &missing_charset_list, &missing_charset_count, &def_string);
1523    
1524     if (missing_charset_list)
1525     XFreeStringList (missing_charset_list);
1526    
1527     if (!fs)
1528     {
1529     input_style &= ~(XIMPreeditPosition | XIMPreeditArea);
1530     rxvt_warn ("unable to create fontset for input method, try \"-pt Root\". Continuing.\n");
1531     }
1532     }
1533 pcg 1.26
1534     if (input_style & XIMPreeditPosition)
1535     {
1536 root 1.94 im_set_size (rect);
1537     im_set_position (spot);
1538     im_set_color (fg, bg);
1539    
1540     preedit_attr = XVaCreateNestedList (0,
1541     XNForeground, fg,
1542     XNBackground, bg,
1543     XNArea, &rect,
1544     XNSpotLocation, &spot,
1545     XNFontSet, fs,
1546     NULL);
1547 pcg 1.1 }
1548 pcg 1.26 else if (input_style & XIMPreeditArea)
1549     {
1550 root 1.94 im_set_color (fg, bg);
1551 pcg 1.26
1552     /*
1553     * The necessary width of preedit area is unknown
1554     * until create input context.
1555     */
1556     needed_rect.width = 0;
1557 root 1.94 im_set_preedit_area (rect, status_rect, needed_rect);
1558 pcg 1.26
1559 root 1.94 preedit_attr = XVaCreateNestedList (0,
1560     XNForeground, fg,
1561     XNBackground, bg,
1562     XNArea, &rect,
1563     XNFontSet, fs,
1564     NULL);
1565     status_attr = XVaCreateNestedList (0,
1566     XNForeground, fg,
1567     XNBackground, bg,
1568     XNArea, &status_rect,
1569     XNFontSet, fs,
1570 pcg 1.26 NULL);
1571     }
1572 pcg 1.29
1573 root 1.94 Input_Context = XCreateIC (xim,
1574     XNInputStyle, input_style,
1575 root 1.149 XNClientWindow, vt,
1576     XNFocusWindow, parent[0],
1577 root 1.94 preedit_attr ? XNPreeditAttributes : NULL,
1578     preedit_attr,
1579     status_attr ? XNStatusAttributes : NULL,
1580     status_attr, NULL);
1581    
1582 pcg 1.32 if (preedit_attr) XFree (preedit_attr);
1583     if (status_attr) XFree (status_attr);
1584 root 1.94 if (fs) XFreeFontSet (display->display, fs);
1585 pcg 1.29
1586 pcg 1.26 if (Input_Context == NULL)
1587     {
1588 pcg 1.60 rxvt_warn ("failed to create input context, continuing without XIM.\n");
1589 root 1.94 im_destroy ();
1590 pcg 1.29 return false;
1591 pcg 1.26 }
1592 pcg 1.29
1593 pcg 1.26 if (input_style & XIMPreeditArea)
1594     IMSetStatusPosition ();
1595 pcg 1.29
1596 pcg 1.32 D_MAIN ((stderr, "rxvt_IM_get_IC () - successful connection"));
1597 pcg 1.29 return true;
1598 pcg 1.16 }
1599    
1600     void
1601 pcg 1.29 rxvt_term::im_cb ()
1602 pcg 1.16 {
1603 root 1.147 int i;
1604 pcg 1.16 const char *p;
1605     char **s;
1606     char buf[IMBUFSIZ];
1607    
1608 root 1.177 make_current ();
1609 root 1.135
1610 pcg 1.29 im_destroy ();
1611    
1612 pcg 1.32 D_MAIN ((stderr, "rxvt_IMInstantiateCallback ()"));
1613 pcg 1.29 if (Input_Context)
1614 pcg 1.16 return;
1615    
1616     #if defined(HAVE_XSETLOCALE) || defined(HAVE_SETLOCALE)
1617 pcg 1.29 if (rs[Rs_imLocale])
1618 pcg 1.38 SET_LOCALE (rs[Rs_imLocale]);
1619 pcg 1.16 #endif
1620    
1621 pcg 1.29 p = rs[Rs_inputMethod];
1622 pcg 1.16 if (p && *p)
1623     {
1624     bool found = false;
1625    
1626     s = rxvt_splitcommastring (p);
1627 root 1.116
1628 pcg 1.16 for (i = 0; s[i]; i++)
1629     {
1630     if (*s[i])
1631     {
1632 root 1.94 strcpy (buf, "@im=");
1633     strncat (buf, s[i], IMBUFSIZ - 5);
1634 pcg 1.29 if (IM_get_IC (buf))
1635 pcg 1.16 {
1636     found = true;
1637     break;
1638     }
1639     }
1640     }
1641 root 1.116
1642     rxvt_freecommastring (s);
1643 pcg 1.16
1644     if (found)
1645     goto done;
1646     }
1647    
1648 pcg 1.26 /* try with XMODIFIERS env. var. */
1649 pcg 1.29 if (IM_get_IC (""))
1650 pcg 1.16 goto done;
1651    
1652 pcg 1.26 /* try with no modifiers base IF the user didn't specify an IM */
1653 pcg 1.29 if (IM_get_IC ("@im=none"))
1654 pcg 1.16 goto done;
1655    
1656     done:
1657     #if defined(HAVE_XSETLOCALE) || defined(HAVE_SETLOCALE)
1658 pcg 1.29 if (rs[Rs_imLocale])
1659 pcg 1.38 SET_LOCALE (locale);
1660 pcg 1.16 #endif
1661 pcg 1.1 }
1662    
1663     void
1664 pcg 1.22 rxvt_term::IMSetStatusPosition ()
1665 pcg 1.1 {
1666 root 1.94 XRectangle preedit_rect, status_rect, *needed_rect;
1667     XVaNestedList preedit_attr, status_attr;
1668 pcg 1.1
1669 root 1.94 if (!Input_Context
1670 root 1.149 || !focus
1671 root 1.94 || !(input_style & XIMPreeditArea)
1672 pcg 1.26 || !IMisRunning ())
1673     return;
1674 pcg 1.1
1675 pcg 1.26 /* Getting the necessary width of preedit area */
1676 pcg 1.32 status_attr = XVaCreateNestedList (0, XNAreaNeeded, &needed_rect, NULL);
1677     XGetICValues (Input_Context, XNStatusAttributes, status_attr, NULL);
1678     XFree (status_attr);
1679 pcg 1.26
1680 root 1.94 im_set_preedit_area (preedit_rect, status_rect, *needed_rect);
1681     XFree (needed_rect);
1682 pcg 1.26
1683 pcg 1.32 preedit_attr = XVaCreateNestedList (0, XNArea, &preedit_rect, NULL);
1684     status_attr = XVaCreateNestedList (0, XNArea, &status_rect, NULL);
1685 pcg 1.26
1686 pcg 1.32 XSetICValues (Input_Context,
1687 root 1.94 XNPreeditAttributes, preedit_attr,
1688     XNStatusAttributes, status_attr, NULL);
1689 pcg 1.1
1690 pcg 1.32 XFree (preedit_attr);
1691     XFree (status_attr);
1692 pcg 1.1 }
1693 pcg 1.3 #endif /* USE_XIM */
1694 pcg 1.1
1695     /*----------------------------------------------------------------------*/
1696 pcg 1.3 rxvt_t rxvt_current_term;
1697 pcg 1.1
1698     /*----------------------- end-of-file (C source) -----------------------*/