XEmacs 21.4.2 "Developer-Friendly Unix APIs".
[chise/xemacs-chise.git.1] / lib-src / gnuclient.c
1 /* -*-C-*-
2  Client code to allow local and remote editing of files by XEmacs.
3  Copyright (C) 1989 Free Software Foundation, Inc.
4  Copyright (C) 1995 Sun Microsystems, Inc.
5  Copyright (C) 1997 Free Software Foundation, Inc.
6
7 This file is part of XEmacs.
8
9 XEmacs is free software; you can redistribute it and/or modify it
10 under the terms of the GNU General Public License as published by the
11 Free Software Foundation; either version 2, or (at your option) any
12 later version.
13
14 XEmacs is distributed in the hope that it will be useful, but WITHOUT
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
17 for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with XEmacs; see the file COPYING.  If not, write to
21 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA.
23
24  Author: Andy Norman (ange@hplb.hpl.hp.com), based on
25          'etc/emacsclient.c' from the GNU Emacs 18.52 distribution.
26
27  Please mail bugs and suggestions to the XEmacs maintainer.
28 */
29
30 /* #### This file should be a windows-mode, not console-mode program under
31    Windows. (i.e. its entry point should be WinMain.) gnuattach functionality,
32    to the extent it's used at all, should be retrieved using a script that
33    calls the i.exe wrapper program, to obtain stdio handles.
34
35    #### For that matter, both the functionality of gnuclient and gnuserv
36    should be merged into XEmacs itself using a -remote arg, just like
37    Netscape and other modern programs.
38
39    --ben */
40
41 /*
42  * This file incorporates new features added by Bob Weiner <weiner@mot.com>,
43  * Darrell Kindred <dkindred@cmu.edu> and Arup Mukherjee <arup@cmu.edu>.
44  * GNUATTACH support added by Ben Wing <wing@xemacs.org>.
45  * Please see the note at the end of the README file for details.
46  *
47  * (If gnuserv came bundled with your emacs, the README file is probably
48  * ../etc/gnuserv.README relative to the directory containing this file)
49  */
50
51 #ifdef  CYGWIN
52 extern void cygwin_conv_to_posix_path(const char *path, char *posix_path);
53 #endif
54
55 #include "gnuserv.h"
56
57 char gnuserv_version[] = "gnuclient version " GNUSERV_VERSION;
58
59 #include "getopt.h"
60
61 #include <stdio.h>
62 #include <stdlib.h>
63 #include <sys/types.h>
64 #include <sysfile.h>
65
66 #ifdef HAVE_STRING_H
67 #include <string.h>
68 #endif /* HAVE_STRING_H */
69
70 #ifdef HAVE_UNISTD_H
71 #include <unistd.h>
72 #endif /* HAVE_UNISTD_H */
73
74 #include <signal.h>
75
76 #if !defined(SYSV_IPC) && !defined(UNIX_DOMAIN_SOCKETS) && \
77     !defined(INTERNET_DOMAIN_SOCKETS)
78 int
79 main (int argc, char *argv[])
80 {
81   fprintf (stderr, "Sorry, the Emacs server is only "
82            "supported on systems that have\n");
83   fprintf (stderr, "Unix Domain sockets, Internet Domain "
84            "sockets or System V IPC.\n");
85   exit (1);
86 } /* main */
87 #else /* SYSV_IPC || UNIX_DOMAIN_SOCKETS || INTERNET_DOMAIN_SOCKETS */
88
89 static char cwd[MAXPATHLEN+2];  /* current working directory when calculated */
90 static char *cp = NULL;         /* ptr into valid bit of cwd above */
91
92 static pid_t emacs_pid;                 /* Process id for emacs process */
93
94 void initialize_signals (void);
95
96 static void
97 tell_emacs_to_resume (int sig)
98 {
99   char buffer[GSERV_BUFSZ+1];
100   int s;                        /* socket / msqid to server */
101   int connect_type;             /* CONN_UNIX, CONN_INTERNET, or
102                                    ONN_IPC */
103
104   /* Why is SYSV so retarded? */
105   /* We want emacs to realize that we are resuming */
106 #ifdef SIGCONT
107   signal(SIGCONT, tell_emacs_to_resume);
108 #endif
109
110   connect_type = make_connection (NULL, 0, &s);
111
112   sprintf(buffer,"(gnuserv-eval '(resume-pid-console %d))", (int)getpid());
113   send_string(s, buffer);
114
115 #ifdef SYSV_IPC
116   if (connect_type == (int) CONN_IPC)
117     disconnect_from_ipc_server (s, msgp, FALSE);
118 #else /* !SYSV_IPC */
119   if (connect_type != (int) CONN_IPC)
120     disconnect_from_server (s, FALSE);
121 #endif /* !SYSV_IPC */
122 }
123
124 static void
125 pass_signal_to_emacs (int sig)
126 {
127   if (kill (emacs_pid, sig) == -1)
128     {
129       fprintf (stderr, "gnuattach: Could not pass signal to emacs process\n");
130       exit (1);
131     }
132   initialize_signals ();
133 }
134
135 void
136 initialize_signals (void)
137 {
138   /* Set up signal handler to pass relevant signals to emacs process.
139      We used to send SIGSEGV, SIGBUS, SIGPIPE, SIGILL and others to
140      Emacs, but I think it's better not to.  I can see no reason why
141      Emacs should SIGSEGV whenever gnuclient SIGSEGV-s, etc.  */
142   signal (SIGQUIT, pass_signal_to_emacs);
143   signal (SIGINT, pass_signal_to_emacs);
144 #ifdef SIGWINCH
145   signal (SIGWINCH, pass_signal_to_emacs);
146 #endif
147
148 #ifdef SIGCONT
149   /* We want emacs to realize that we are resuming */
150   signal (SIGCONT, tell_emacs_to_resume);
151 #endif
152 }
153
154
155 /*
156   get_current_working_directory -- return the cwd.
157 */
158 static char *
159 get_current_working_directory (void)
160 {
161   if (cp == NULL)
162     {                           /* haven't calculated it yet */
163 #ifdef HAVE_GETCWD
164       if (getcwd (cwd,MAXPATHLEN) == NULL)
165 #else
166       if (getwd (cwd) == 0)
167 #endif /* HAVE_GETCWD */
168         {
169           perror (progname);
170           fprintf (stderr, "%s: unable to get current working directory\n",
171                    progname);
172           exit (1);
173         } /* if */
174
175       /* on some systems, cwd can look like '@machine/' ... */
176       /* ignore everything before the first '/' */
177       for (cp = cwd; *cp && *cp != '/'; ++cp)
178         ;
179
180     } /* if */
181
182   return cp;
183
184 } /* get_current_working_directory */
185
186
187 /*
188   filename_expand -- try to convert the given filename into a fully-qualified
189                      pathname.
190 */
191 static void
192 filename_expand (char *fullpath, char *filename)
193   /* fullpath - returned full pathname */
194   /* filename - filename to expand */
195 {
196 #ifdef  CYGWIN
197   char cygwinFilename[MAXPATHLEN+1];
198 #endif
199
200   int len;
201   fullpath[0] = '\0';
202
203 #ifdef  CYGWIN
204   /*
205     If we're in cygwin, just convert it and let the unix stuff handle it.
206   */
207   cygwin_conv_to_posix_path(filename, cygwinFilename);
208   filename = cygwinFilename;
209 #endif
210
211   if (filename[0] && filename[0] == '/')
212      {
213        /* Absolute (unix-style) pathname.  Do nothing */
214        strcat (fullpath, filename);
215      }
216   else
217     {
218       /* Assume relative Unix style path.  Get the current directory
219        and prepend it.  FIXME: need to fix the case of DOS paths like
220        "\foo", where we need to get the current drive. */
221
222       strcat (fullpath, get_current_working_directory ());
223       len = strlen (fullpath);
224
225       if (len > 0 && fullpath[len-1] == '/')    /* trailing slash already? */
226         ;                                       /* yep */
227       else
228         strcat (fullpath, "/");         /* nope, append trailing slash */
229       /* Don't forget to add the filename! */
230       strcat (fullpath,filename);
231     }
232 } /* filename_expand */
233
234 /* Encase the string in quotes, escape all the backslashes and quotes
235    in string.  */
236 static char *
237 clean_string (const char *s)
238 {
239   int i = 0;
240   char *p, *res;
241
242   {
243     const char *const_p;
244     for (const_p = s; *const_p; const_p++, i++)
245       {
246         if (*const_p == '\\' || *const_p == '\"')
247           ++i;
248         else if (*const_p == '\004')
249           i += 3;
250       }
251   }
252
253   p = res = (char *) malloc (i + 2 + 1);
254   *p++ = '\"';
255   for (; *s; p++, s++)
256     {
257       switch (*s)
258         {
259         case '\\':
260           *p++ = '\\';
261           *p = '\\';
262           break;
263         case '\"':
264           *p++ = '\\';
265           *p = '\"';
266           break;
267         case '\004':
268           *p++ = '\\';
269           *p++ = 'C';
270           *p++ = '-';
271           *p = 'd';
272           break;
273         default:
274           *p = *s;
275         }
276     }
277   *p++ = '\"';
278   *p = '\0';
279   return res;
280 }
281
282 #define GET_ARGUMENT(var, desc) do {                                       \
283  if (*(p + 1)) (var) = p + 1;                                              \
284    else                                                                    \
285      {                                                                     \
286        if (!argv[++i])                                                     \
287          {                                                                 \
288            fprintf (stderr, "%s: `%s' must be followed by an argument\n",  \
289                     progname, desc);                                       \
290            exit (1);                                                       \
291          }                                                                 \
292       (var) = argv[i];                                                     \
293     }                                                                      \
294   over = 1;                                                                \
295 } while (0)
296
297 /* A strdup imitation. */
298 static char *
299 my_strdup (const char *s)
300 {
301   char *new_s = (char *) malloc (strlen (s) + 1);
302   if (new_s)
303     strcpy (new_s, s);
304   return new_s;
305 }
306
307 int
308 main (int argc, char *argv[])
309 {
310   int starting_line = 1;        /* line to start editing at */
311   char command[MAXPATHLEN+50];  /* emacs command buffer */
312   char fullpath[MAXPATHLEN+1];  /* full pathname to file */
313   char *eval_form = NULL;       /* form to evaluate with `-eval' */
314   char *eval_function = NULL;   /* function to evaluate with `-f' */
315   char *load_library = NULL;    /* library to load */
316   int quick = 0;                /* quick edit, don't wait for user to
317                                    finish */
318   int batch = 0;                /* batch mode */
319   int view = 0;                 /* view only. */
320   int nofiles = 0;
321   int errflg = 0;               /* option error */
322   int s;                        /* socket / msqid to server */
323   int connect_type;             /* CONN_UNIX, CONN_INTERNET, or
324                                  * CONN_IPC */
325   int suppress_windows_system = 0;
326   char *display = NULL;
327 #ifdef INTERNET_DOMAIN_SOCKETS
328   char *hostarg = NULL;         /* remote hostname */
329   char *remotearg;
330   char thishost[HOSTNAMSZ];     /* this hostname */
331   char remotepath[MAXPATHLEN+1]; /* remote pathname */
332   char *path;
333   int rflg = 0;                 /* pathname given on cmdline */
334   char *portarg;
335   unsigned short port = 0;      /* port to server */
336 #endif /* INTERNET_DOMAIN_SOCKETS */
337 #ifdef SYSV_IPC
338   struct msgbuf *msgp;          /* message */
339 #endif /* SYSV_IPC */
340   char *tty = NULL;
341   char buffer[GSERV_BUFSZ + 1]; /* buffer to read pid */
342   char result[GSERV_BUFSZ + 1];
343   int i;
344
345 #ifdef INTERNET_DOMAIN_SOCKETS
346   memset (remotepath, 0, sizeof (remotepath));
347 #endif /* INTERNET_DOMAIN_SOCKETS */
348
349   progname = strrchr (argv[0], '/');
350   if (progname)
351     ++progname;
352   else
353     progname = argv[0];
354
355 #ifdef USE_TMPDIR
356   tmpdir = getenv ("TMPDIR");
357 #endif
358   if (!tmpdir)
359     tmpdir = "/tmp";
360
361   display = getenv ("DISPLAY");
362   if (display)
363     display = my_strdup (display);
364 #ifndef HAVE_MS_WINDOWS
365   else
366     suppress_windows_system = 1;
367 #endif
368
369   for (i = 1; argv[i] && !errflg; i++)
370     {
371       if (*argv[i] != '-')
372         break;
373       else if (*argv[i] == '-'
374                && (*(argv[i] + 1) == '\0'
375                    || (*(argv[i] + 1) == '-' && *(argv[i] + 2) == '\0')))
376         {
377           /* `-' or `--' */
378           ++i;
379           break;
380         }
381
382       if (!strcmp (argv[i], "-batch") || !strcmp (argv[i], "--batch"))
383         batch = 1;
384       else if (!strcmp (argv[i], "-eval") || !strcmp (argv[i], "--eval"))
385         {
386           if (!argv[++i])
387             {
388               fprintf (stderr, "%s: `-eval' must be followed by an argument\n",
389                        progname);
390               exit (1);
391             }
392           eval_form = argv[i];
393         }
394       else if (!strcmp (argv[i], "-display") || !strcmp (argv[i], "--display"))
395         {
396           suppress_windows_system = 0;
397           if (!argv[++i])
398             {
399               fprintf (stderr,
400                        "%s: `-display' must be followed by an argument\n",
401                        progname);
402               exit (1);
403             }
404           if (display)
405             free (display);
406           /* no need to strdup. */
407           display = argv[i];
408         }
409       else if (!strcmp (argv[i], "-nw"))
410         suppress_windows_system = 1;
411       else
412         {
413           /* Iterate over one-letter options. */
414           char *p;
415           int over = 0;
416           for (p = argv[i] + 1; *p && !over; p++)
417             {
418               switch (*p)
419                 {
420                 case 'q':
421                   quick = 1;
422                   break;
423                 case 'v':
424                   view = 1;
425                   break;
426                 case 'f':
427                   GET_ARGUMENT (eval_function, "-f");
428                   break;
429                 case 'l':
430                   GET_ARGUMENT (load_library, "-l");
431                   break;
432 #ifdef INTERNET_DOMAIN_SOCKETS
433                 case 'h':
434                   GET_ARGUMENT (hostarg, "-h");
435                   break;
436                 case 'p':
437                   GET_ARGUMENT (portarg, "-p");
438                   port = atoi (portarg);
439                   break;
440                 case 'r':
441                   GET_ARGUMENT (remotearg, "-r");
442                   strcpy (remotepath, remotearg);
443                   rflg = 1;
444                   break;
445 #endif /* INTERNET_DOMAIN_SOCKETS */
446                 default:
447                   errflg = 1;
448                 }
449             } /* for */
450         } /* else */
451     } /* for */
452
453   if (errflg)
454     {
455       fprintf (stderr,
456 #ifdef INTERNET_DOMAIN_SOCKETS
457                "Usage: %s [-nw] [-display display] [-q] [-v] [-l library]\n"
458                "       [-batch] [-f function] [-eval form]\n"
459                "       [-h host] [-p port] [-r remote-path] [[+line] file] ...\n",
460 #else /* !INTERNET_DOMAIN_SOCKETS */
461                "Usage: %s [-nw] [-q] [-v] [-l library] [-f function] [-eval form] "
462                "[[+line] path] ...\n",
463 #endif /* !INTERNET_DOMAIN_SOCKETS */
464                progname);
465       exit (1);
466     }
467   if (batch && argv[i])
468     {
469       fprintf (stderr, "%s: Cannot specify `-batch' with file names\n",
470                progname);
471       exit (1);
472     }
473   if (suppress_windows_system && hostarg)
474     {
475       fprintf (stderr, "%s: Remote editing is available only on X\n",
476                progname);
477       exit (1);
478     }
479
480   *result = '\0';
481   if (eval_function || eval_form || load_library)
482     {
483 #if defined(INTERNET_DOMAIN_SOCKETS)
484       connect_type = make_connection (hostarg, port, &s);
485 #else
486       connect_type = make_connection (NULL, 0, &s);
487 #endif
488       sprintf (command, "(gnuserv-eval%s '(progn ", quick ? "-quickly" : "");
489       send_string (s, command);
490       if (load_library)
491         {
492           send_string (s , "(load-library ");
493           send_string (s, clean_string(load_library));
494           send_string (s, ") ");
495         }
496       if (eval_form)
497         {
498           send_string (s, eval_form);
499         }
500       if (eval_function)
501         {
502           send_string (s, "(");
503           send_string (s, eval_function);
504           send_string (s, ")");
505         }
506       send_string (s, "))");
507       /* disconnect already sends EOT_STR */
508 #ifdef SYSV_IPC
509       if (connect_type == (int) CONN_IPC)
510         disconnect_from_ipc_server (s, msgp, batch && !quick);
511 #else /* !SYSV_IPC */
512       if (connect_type != (int) CONN_IPC)
513         disconnect_from_server (s, batch && !quick);
514 #endif /* !SYSV_IPC */
515     } /* eval_function || eval_form || load_library */
516   else if (batch)
517     {
518       /* no sexp on the command line, so read it from stdin */
519       int nb;
520
521 #if defined(INTERNET_DOMAIN_SOCKETS)
522       connect_type = make_connection (hostarg, port, &s);
523 #else
524       connect_type = make_connection (NULL, 0, &s);
525 #endif
526       sprintf (command, "(gnuserv-eval%s '(progn ", quick ? "-quickly" : "");
527       send_string (s, command);
528
529       while ((nb = read(fileno(stdin), buffer, GSERV_BUFSZ-1)) > 0)
530         {
531           buffer[nb] = '\0';
532           send_string(s, buffer);
533         }
534       send_string(s,"))");
535       /* disconnect already sends EOT_STR */
536 #ifdef SYSV_IPC
537       if (connect_type == (int) CONN_IPC)
538         disconnect_from_ipc_server (s, msgp, batch && !quick);
539 #else /* !SYSV_IPC */
540       if (connect_type != (int) CONN_IPC)
541         disconnect_from_server (s, batch && !quick);
542 #endif /* !SYSV_IPC */
543     }
544
545   if (!batch)
546     {
547       if (suppress_windows_system)
548         {
549           tty = ttyname (0);
550           if (!tty)
551             {
552               fprintf (stderr, "%s: Not connected to a tty", progname);
553               exit (1);
554             }
555 #if defined(INTERNET_DOMAIN_SOCKETS)
556           connect_type = make_connection (hostarg, port, &s);
557 #else
558           connect_type = make_connection (NULL, 0, &s);
559 #endif
560           send_string (s, "(gnuserv-eval '(emacs-pid))");
561           send_string (s, EOT_STR);
562
563           if (read_line (s, buffer) == 0)
564             {
565               fprintf (stderr, "%s: Could not establish Emacs process id\n",
566                        progname);
567               exit (1);
568             }
569       /* Don't do disconnect_from_server because we have already read
570          data, and disconnect doesn't do anything else. */
571 #ifndef INTERNET_DOMAIN_SOCKETS
572           if (connect_type == (int) CONN_IPC)
573             disconnect_from_ipc_server (s, msgp, FALSE);
574 #endif /* !SYSV_IPC */
575
576           emacs_pid = (pid_t)atol(buffer);
577           initialize_signals();
578         } /* suppress_windows_system */
579
580 #if defined(INTERNET_DOMAIN_SOCKETS)
581       connect_type = make_connection (hostarg, port, &s);
582 #else
583       connect_type = make_connection (NULL, 0, &s);
584 #endif
585
586 #ifdef INTERNET_DOMAIN_SOCKETS
587       if (connect_type == (int) CONN_INTERNET)
588         {
589           char *ptr;
590           gethostname (thishost, HOSTNAMSZ);
591           if (!rflg)
592             {                           /* attempt to generate a path
593                                          * to this machine */
594               if ((ptr = getenv ("GNU_NODE")) != NULL)
595                 /* user specified a path */
596                 strcpy (remotepath, ptr);
597             }
598 #if 0  /* This is really bogus... re-enable it if you must have it! */
599 #if defined (hp9000s300) || defined (hp9000s800)
600           else if (strcmp (thishost,hostarg))
601             {   /* try /net/thishost */
602               strcpy (remotepath, "/net/");             /* (this fails using internet
603                                                            addresses) */
604               strcat (remotepath, thishost);
605             }
606 #endif
607 #endif
608         }
609       else
610         {                       /* same machines, no need for path */
611           remotepath[0] = '\0'; /* default is the empty path */
612         }
613 #endif /* INTERNET_DOMAIN_SOCKETS */
614
615 #ifdef SYSV_IPC
616       if ((msgp = (struct msgbuf *)
617            malloc (sizeof *msgp + GSERV_BUFSZ)) == NULL)
618         {
619           fprintf (stderr, "%s: not enough memory for message buffer\n", progname);
620           exit (1);
621         } /* if */
622
623       msgp->mtext[0] = '\0';                    /* ready for later strcats */
624 #endif /* SYSV_IPC */
625
626       if (suppress_windows_system)
627         {
628           char *term = getenv ("TERM");
629           if (!term)
630             {
631               fprintf (stderr, "%s: unknown terminal type\n", progname);
632               exit (1);
633             }
634           sprintf (command, "(gnuserv-edit-files '(tty %s %s %d) '(",
635                    clean_string (tty), clean_string (term), (int)getpid ());
636         }
637       else /* !suppress_windows_system */
638         {
639           if (0)
640             ;
641 #ifdef HAVE_X_WINDOWS
642           else if (display)
643             sprintf (command, "(gnuserv-edit-files '(x %s) '(",
644                      clean_string (display));
645 #endif
646 #ifdef HAVE_GTK
647           else if (display)
648             strcpy (command, "(gnuserv-edit-files '(gtk nil) '(");
649 #endif
650 #ifdef HAVE_MS_WINDOWS
651           else
652             sprintf (command, "(gnuserv-edit-files '(mswindows nil) '(");
653 #endif
654         } /* !suppress_windows_system */
655       send_string (s, command);
656
657       if (!argv[i])
658         nofiles = 1;
659
660       for (; argv[i]; i++)
661         {
662           if (i < argc - 1 && *argv[i] == '+')
663             starting_line = atoi (argv[i++]);
664           else
665             starting_line = 1;
666           /* If the last argument is +something, treat it as a file. */
667           if (i == argc)
668             {
669               starting_line = 1;
670               --i;
671             }
672           filename_expand (fullpath, argv[i]);
673 #ifdef INTERNET_DOMAIN_SOCKETS
674           path = (char *) malloc (strlen (remotepath) + strlen (fullpath) + 1);
675           sprintf (path, "%s%s", remotepath, fullpath);
676 #else
677           path = my_strdup (fullpath);
678 #endif
679           sprintf (command, "(%d . %s)", starting_line, clean_string (path));
680           send_string (s, command);
681           free (path);
682         } /* for */
683
684       sprintf (command, ")%s%s",
685                (quick || (nofiles && !suppress_windows_system)) ? " 'quick" : "",
686                view ? " 'view" : "");
687       send_string (s, command);
688       send_string (s, ")");
689
690 #ifdef SYSV_IPC
691       if (connect_type == (int) CONN_IPC)
692         disconnect_from_ipc_server (s, msgp, FALSE);
693 #else /* !SYSV_IPC */
694       if (connect_type != (int) CONN_IPC)
695         disconnect_from_server (s, FALSE);
696 #endif /* !SYSV_IPC */
697     } /* not batch */
698
699
700   return 0;
701
702 } /* main */
703
704 #endif /* SYSV_IPC || UNIX_DOMAIN_SOCKETS || INTERNET_DOMAIN_SOCKETS */