0
|
1 .TH GNUSERV 1 "" "XEmacs Server"
|
|
2 .UC 4
|
|
3 .SH NAME
|
163
|
4 gnuserv, gnuclient \- Server and Clients for XEmacs
|
0
|
5 .SH SYNOPSIS
|
|
6 .B gnuclient
|
163
|
7 [-q] [-nw] [-l library] [-f function] [-eval form] [[-h hostname]
|
|
8 [-p port] [-r pathname]] [[+line] path] ...
|
0
|
9 .br
|
|
10 .B gnuserv
|
|
11 .SH DESCRIPTION
|
|
12
|
|
13 .PP
|
163
|
14 \fIgnuclient\fP allows the user to request a running XEmacs process to
|
|
15 edit the named files or directories in a new frame. Depending on your
|
|
16 environment, it can be an X frame or a TTY frame. One typical use for
|
|
17 this is with a dialup connection to a machine on which an XEmacs
|
0
|
18 process is currently running.
|
|
19 .PP
|
163
|
20 \fIgnuserv\fP is the server program that is set running by XEmacs to
|
|
21 handle all incoming and outgoing requests. It is not usually invoked
|
|
22 directly, but is started from XEmacs by loading the \fIgnuserv\fP
|
|
23 package and evaluating the Lisp form (gnuserv-start).
|
0
|
24 .SH OPTIONS
|
|
25 .TP 8
|
|
26 .BI \-q
|
163
|
27 This option informs \fIgnuclient\fP to exit once connection has been
|
|
28 made with the XEmacs process. Normally \fIgnuclient\fP waits until
|
|
29 all of the files on the command line have been finished with (their
|
|
30 buffers killed) by the XEmacs process, and all the forms have been
|
|
31 evaluated.
|
0
|
32 .TP 8
|
|
33 .BI \-h " hostname"
|
|
34 Used only with Internet-domain sockets, this option specifies the host
|
|
35 machine which should be running \fIgnuserv\fP. If this option is not
|
|
36 specified then the value of the environment variable GNU_HOST is used
|
|
37 if set. If no hostname is specified, and the GNU_HOST variable is not
|
163
|
38 set, an internet connection will not be attempted. N\.B.:
|
|
39 \fIgnuserv\fP does NOT allow internet connections unless the
|
|
40 GNU_SECURE variable has been specified and points at a file listing
|
|
41 all trusted hosts. (See SECURITY below.)
|
0
|
42
|
|
43 .br
|
163
|
44 Note that an internet address may be specified instead of a hostname
|
|
45 which can speed up connections to the server by quite a bit,
|
|
46 especially if the client machine is running YP.
|
0
|
47
|
|
48 .br
|
|
49 Note also that a hostname of \fBunix\fP can be used to specify that
|
|
50 the connection to the server should use a Unix-domain socket (if
|
|
51 supported) rather than an Internet-domain socket.
|
|
52 .TP 8
|
|
53 .BI \-p " port"
|
|
54 Used only with Internet-domain sockets, this option specifies the
|
|
55 service port used to communicate between server and clients. If this
|
|
56 option is not specified, then the value of the environment variable
|
|
57 GNU_PORT is used, if set, otherwise a service called ``gnuserv'' is
|
|
58 looked up in the services database. Finally, if no other value can be
|
|
59 found for the port, then a default port is used which is usually 21490
|
|
60 + uid.
|
|
61 .br
|
|
62 Note that since \fIgnuserv\fP doesn't allow command-line options, the port for
|
|
63 it will have to be specified via one of the alternative methods.
|
|
64 .TP 8
|
|
65 .BI \-r " pathname"
|
|
66 Used only with Internet-domain sockets, the pathname argument may be
|
|
67 needed to inform XEmacs how to reach the root directory of a remote
|
163
|
68 machine. \fIgnuclient\fP prepends this string to each path argument
|
|
69 given. For example, if you were trying to edit a file on a client
|
|
70 machine called otter, whose root directory was accessible from the
|
|
71 server machine via the path /net/otter, then this argument should be
|
|
72 set to '/net/otter'. If this option is omitted, then the value is
|
|
73 taken from the environment variable GNU_NODE, if set, or the empty
|
|
74 string otherwise.
|
0
|
75 .TP 8
|
|
76 .BI "path"
|
|
77 This is the path of the file to be edited. If the file is a directory, then
|
|
78 the directory browsers dired or monkey are usually invoked instead.
|
|
79 .TP 8
|
|
80 .BI "sexpr"
|
163
|
81 This is part of an XEmacs LISP expression to evaluate. All the sexprs
|
|
82 are concatenated together and wrapped in a progn form before sending
|
|
83 to XEmacs.
|
0
|
84
|
|
85 .PP
|
|
86 .SH SETUP
|
|
87 \fIgnuserv\fP is packaged standardly with recent versions of XEmacs.
|
|
88 Therefore, you should be able to start the server simply by evaluating
|
|
89 the XEmacs Lisp form (gnuserv-start), or equivalently by typing
|
|
90 `M-x gnuserv-start'.
|
|
91 .SH EXAMPLE
|
|
92 .RS 4
|
163
|
93 gnuclient -q -f mh-smail
|
0
|
94 .br
|
|
95 gnuclient -h cuckoo -r /ange@otter: /tmp/*
|
|
96 .br
|
163
|
97 gnuclient -nw ../src/listproc.c
|
0
|
98 .RE
|
|
99
|
163
|
100 .SH SYSV IPC
|
|
101 SysV IPC is used to communicate between \fIgnuclient\fP and
|
|
102 \fIgnuserv\fP if the symbol SYSV_IPC is defined at the top of
|
|
103 gnuserv.h. This is incompatible with both Unix-domain and
|
|
104 Internet-domain socket communication as described below. A file called
|
|
105 /tmp/gsrv??? is created as a key for the message queue, and if removed
|
|
106 will cause the communication between server and client to fail until
|
|
107 the server is restarted.
|
0
|
108 .SH UNIX-DOMAIN SOCKETS
|
163
|
109 A Unix-domain socket is used to communicate between \fIgnuclient\fP
|
|
110 and \fIgnuserv\fP if the symbol UNIX_DOMAIN_SOCKETS is defined at the
|
|
111 top of gnuserv.h. A file called /tmp/gsrvdir????/gsrv is created for
|
|
112 communication and if deleted will cause communication between server
|
|
113 and client to fail. Only the user running gnuserv will be able to
|
|
114 connect to the socket.
|
0
|
115 .SH INTERNET-DOMAIN SOCKETS
|
|
116 Internet-domain sockets are used to communicate between
|
163
|
117 \fIgnuclient\fP and \fIgnuserv\fP if the symbol
|
|
118 INTERNET_DOMAIN_SOCKETS is defined at the top of gnuserv.h. Both
|
|
119 Internet-domain and Unix-domain sockets can be used at the same
|
|
120 time. If a hostname is specified via -h or via the GNU_HOST
|
|
121 environment variable, \fIgnuclient\fP establish connections using an
|
|
122 internet domain socket. If not, a local connection is attempted via
|
|
123 either a unix-domain socket or SYSV IPC.
|
0
|
124 .SH SECURITY
|
|
125 Using Internet-domain sockets, a more robust form of security is
|
|
126 needed that wasn't necessary with either Unix-domain sockets or SysV
|
|
127 IPC. Currently, two authentication protocols are supported to provide
|
|
128 this: MIT-MAGIC-COOKIE-1 (based on the X11 xauth(1) program) and a
|
|
129 simple host-based access control mechanism, hereafter called
|
|
130 GNUSERV-1. The GNUSERV-1 protocol is always available, whereas support
|
|
131 for MIT-MAGIC-COOKIE-1 may or may not have been enabled (via a #define
|
|
132 at the top of gnuserv.h) at compile-time.
|
|
133 .PP
|
|
134 \fIgnuserv\fP, using GNUSERV-1, performs a limited form of access
|
|
135 control at the machine level. By default no internet-domain socket is
|
|
136 opened. If the variable GNU_SECURE can be found in \fIgnuserv\fP's
|
|
137 environment, and it names a readable filename, then this file is
|
|
138 opened and assumed to be a list of hosts, one per line, from which the
|
|
139 server will allow requests. Connections from any other host will be
|
|
140 rejected. Even the machine on which \fIgnuserv\fP is running is not
|
|
141 permitted to make connections via the internet socket unless its
|
|
142 hostname is explicitly specified in this file. Note that a host may
|
|
143 be either a numeric IP address or a hostname, and that
|
|
144 .I any
|
|
145 user on an approved host may connect to your gnuserv and execute arbitrary
|
|
146 elisp (e.g., delete all your files).
|
|
147 If this file contains a lot of
|
|
148 hostnames then the server may take quite a time to start up.
|
|
149 .PP
|
|
150 When the MIT-MAGIC-COOKIE-1 protocol is enabled, an internet socket
|
|
151 \fIis\fP opened by default. \fIgnuserv\fP will accept a connection from
|
|
152 any host, and will wait for a "magic cookie" (essentially, a password)
|
|
153 to be presented by the client. If the client doesn't present the
|
|
154 cookie, or if the cookie is wrong, the authentication of the client is
|
|
155 considered to have failed. At this point. \fIgnuserv\fP falls back to
|
|
156 the GNUSERV-1 protocol; If the client is calling from a host listed in
|
|
157 the GNU_SECURE file, the connection will be accepted, otherwise it
|
|
158 will be rejected.
|
|
159 .TP 4
|
|
160 .I Using MIT-MAGIC-COOKIE-1 authentication
|
|
161 When the \fIgnuserv\fP server is started, it looks for a cookie
|
|
162 defined for display 999 on the machine where it is running. If the
|
|
163 cookie is found, it will be stored for use as the authentication
|
|
164 cookie. These cookies are defined in an authorization file (usually
|
|
165 ~/.Xauthority) that is manipulated by the X11 xauth(1) program. For
|
|
166 example, a machine "kali" which runs an emacs that invokes
|
|
167 \fIgnuserv\fP should respond as follows (at the shell prompt) when set
|
|
168 up correctly.
|
|
169 .PP
|
|
170 .RS 8
|
|
171 kali% xauth list
|
|
172 .br
|
|
173 GS65.SP.CS.CMU.EDU:0 MIT-MAGIC-COOKIE-1 11223344
|
|
174 .br
|
|
175 KALI.FTM.CS.CMU.EDU:999 MIT-MAGIC-COOKIE-1 1234
|
|
176 .RE
|
|
177 .PP
|
|
178 .RS 4
|
|
179 In the above case, the authorization file defines two cookies. The
|
|
180 second one, defined for screen 999 on the server machine, is used for
|
|
181 gnuserv authentication.
|
|
182 .PP
|
|
183 On the client machine's side, the authorization file must contain an
|
|
184 identical line, specifying the
|
|
185 .I server's
|
|
186 cookie. In other words, on a machine "foobar" which wishes to connect
|
|
187 to "kali," the `xauth list' output should contain the line:
|
|
188 .PP
|
|
189 .RS 4
|
|
190 KALI.FTM.CS.CMU.EDU:999 MIT-MAGIC-COOKIE-1 1234
|
|
191 .RE
|
|
192 .PP
|
|
193 For more information on authorization files, take a look at the
|
|
194 xauth(1X11) man page, or invoke xauth interactively (without any
|
|
195 arguments) and type "help" at the prompt. Remember that case in the
|
|
196 name of the authorization protocol (i.e.`MIT-MAGIC-COOKIE-1')
|
|
197 .I is
|
|
198 significant!
|
|
199 .RE
|
|
200
|
|
201 .SH FILES
|
|
202 .PP
|
|
203 .TP 8
|
|
204 .B /tmp/gsrv???
|
|
205 (SYSV_IPC only)
|
|
206 .TP 8
|
|
207 .B /tmp/gsrvdir???/gsrv
|
|
208 (unix domain sockets only)
|
|
209 .TP 8
|
|
210 .B ~/.emacs
|
|
211 XEmacs customization file, see xemacs(1).
|
|
212 .SH SEE ALSO
|
|
213 .PP
|
|
214 .TP 8
|
|
215 xauth(1X11), Xsecurity(1X11)
|
|
216 .SH BUGS
|
|
217 .PP
|
|
218 NULs occurring in result strings don't get passed back to gnudoit properly.
|
|
219
|
|
220 .SH AUTHOR.
|
|
221 Andy Norman (ange@hplb.hpl.hp.com), based heavily upon
|
|
222 etc/emacsclient.c, etc/server.c and lisp/server.el from the GNU Emacs
|
|
223 18.52 distribution. Various modifications from Bob Weiner (weiner@mot.com),
|
163
|
224 Darrell Kindred (dkindred@cmu.edu), Arup Mukherjee (arup@cmu.edu), Ben
|
|
225 Wing (wing@666.com) and Hrvoje Niksic (hniksic@srce.hr).
|