Mercurial > vim
annotate src/pty.c @ 14904:8dd4014f9b98
Added tag v8.1.0463 for changeset c1ee9f32bec3f9d462e6e2fb54a5f3b9ef0e3a5a
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 07 Oct 2018 21:00:06 +0200 |
parents | 27b9a84395b5 |
children | d4a6d575e910 |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 2 * |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * | |
5 * Do ":help uganda" in Vim to read copying and usage conditions. | |
6 * Do ":help credits" in Vim to see a list of people who contributed. | |
7 * See README.txt for an overview of the Vim source code. | |
8 */ | |
9 /* | |
10 * The stuff in this file mostly comes from the "screen" program. | |
11 * Included with permission from Juergen Weigert. | |
12 * Copied from "pty.c". "putenv.c" was used for putenv() in misc2.c. | |
13 * | |
14 * It has been modified to work better with Vim. | |
15 * The parts that are not used in Vim have been deleted. | |
16 * See the "screen" sources for the complete stuff. | |
3282 | 17 * |
18 * This specific version is distibuted under the Vim license (attribution by | |
19 * Juergen Weigert), the GPL applies to the original version, see the | |
20 * copyright notice below. | |
7 | 21 */ |
22 | |
23 /* Copyright (c) 1993 | |
24 * Juergen Weigert (jnweiger@immd4.informatik.uni-erlangen.de) | |
25 * Michael Schroeder (mlschroe@immd4.informatik.uni-erlangen.de) | |
26 * Copyright (c) 1987 Oliver Laumann | |
27 * | |
28 * This program is free software; you can redistribute it and/or modify | |
29 * it under the terms of the GNU General Public License as published by | |
30 * the Free Software Foundation; either version 2, or (at your option) | |
31 * any later version. | |
32 * | |
33 * This program is distributed in the hope that it will be useful, | |
34 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
35 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
36 * GNU General Public License for more details. | |
37 * | |
38 * You should have received a copy of the GNU General Public License | |
39 * along with this program (see the file COPYING); if not, write to the | |
40 * Free Software Foundation, Inc., | |
41 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA | |
42 */ | |
43 | |
44 #include "vim.h" | |
45 | |
11737
7791a15353dc
patch 8.0.0751: OpenPTY missing with some combination of features
Christian Brabandt <cb@256bit.org>
parents:
11735
diff
changeset
|
46 #if defined(FEAT_GUI) || defined(FEAT_JOB_CHANNEL) |
11735
21354977aa7b
patch 8.0.0750: OpenPTY missing in non-GUI build
Christian Brabandt <cb@256bit.org>
parents:
10460
diff
changeset
|
47 |
7 | 48 #include <signal.h> |
49 | |
50 #ifdef __CYGWIN32__ | |
51 # include <sys/termios.h> | |
52 #endif | |
53 | |
1030 | 54 #ifdef HAVE_SYS_IOCTL_H |
7 | 55 # include <sys/ioctl.h> |
56 #endif | |
57 | |
58 #if HAVE_STROPTS_H | |
59 #include <sys/types.h> | |
60 #ifdef sinix | |
61 #define buf_T __system_buf_t__ | |
62 #endif | |
63 #include <stropts.h> | |
64 #ifdef sinix | |
65 #undef buf_T | |
66 #endif | |
10460
7fd589f46801
commit https://github.com/vim/vim/commit/a899e6ecc4523c7e411eaf6fbaa4197d70f6f39e
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
67 # ifdef SUN_SYSTEM |
7 | 68 # include <sys/conf.h> |
69 # endif | |
70 #endif | |
71 | |
1030 | 72 #ifdef HAVE_UNISTD_H |
7 | 73 # include <unistd.h> |
74 #endif | |
75 | |
76 #if HAVE_TERMIO_H | |
77 # include <termio.h> | |
78 #else | |
1030 | 79 # ifdef HAVE_TERMIOS_H |
7 | 80 # include <termios.h> |
81 # endif | |
82 #endif | |
83 | |
84 #if HAVE_SYS_STREAM_H | |
85 # include <sys/stream.h> | |
86 #endif | |
87 | |
88 #if HAVE_SYS_PTEM_H | |
89 # include <sys/ptem.h> | |
90 #endif | |
91 | |
12716
351cf7c67bbe
patch 8.0.1236: Mac features are confusing
Christian Brabandt <cb@256bit.org>
parents:
12576
diff
changeset
|
92 #if !defined(SUN_SYSTEM) && !defined(VMS) |
7 | 93 # include <sys/ioctl.h> |
94 #endif | |
95 | |
10460
7fd589f46801
commit https://github.com/vim/vim/commit/a899e6ecc4523c7e411eaf6fbaa4197d70f6f39e
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
96 #if defined(SUN_SYSTEM) && defined(LOCKPTY) && !defined(TIOCEXCL) |
7 | 97 # include <sys/ttold.h> |
98 #endif | |
99 | |
100 #ifdef ISC | |
101 # include <sys/tty.h> | |
102 # include <sys/sioctl.h> | |
103 # include <sys/pty.h> | |
104 #endif | |
105 | |
106 #ifdef sgi | |
107 # include <sys/sysmacros.h> | |
108 #endif | |
109 | |
110 #if defined(_INCLUDE_HPUX_SOURCE) && !defined(hpux) | |
111 # define hpux | |
112 #endif | |
113 | |
114 /* | |
115 * if no PTYRANGE[01] is in the config file, we pick a default | |
116 */ | |
117 #ifndef PTYRANGE0 | |
118 # define PTYRANGE0 "qprs" | |
119 #endif | |
120 #ifndef PTYRANGE1 | |
121 # define PTYRANGE1 "0123456789abcdef" | |
122 #endif | |
123 | |
124 /* SVR4 pseudo ttys don't seem to work with SCO-5 */ | |
125 #ifdef M_UNIX | |
126 # undef HAVE_SVR4_PTYS | |
127 #endif | |
128 | |
129 /* | |
2834 | 130 * Open all ptys with O_NOCTTY, just to be on the safe side. |
7 | 131 */ |
132 #ifndef O_NOCTTY | |
133 # define O_NOCTTY 0 | |
134 #endif | |
135 | |
136 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
137 initmaster(int f UNUSED) |
7 | 138 { |
139 #ifndef VMS | |
140 # ifdef POSIX | |
141 tcflush(f, TCIOFLUSH); | |
142 # else | |
143 # ifdef TIOCFLUSH | |
144 (void)ioctl(f, TIOCFLUSH, (char *) 0); | |
145 # endif | |
146 # endif | |
147 # ifdef LOCKPTY | |
148 (void)ioctl(f, TIOCEXCL, (char *) 0); | |
149 # endif | |
150 #endif | |
151 } | |
152 | |
153 /* | |
154 * This causes a hang on some systems, but is required for a properly working | |
155 * pty on others. Needs to be tuned... | |
156 */ | |
157 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
158 SetupSlavePTY(int fd) |
7 | 159 { |
160 if (fd < 0) | |
161 return 0; | |
162 #if defined(I_PUSH) && defined(HAVE_SVR4_PTYS) && !defined(sgi) && !defined(linux) && !defined(__osf__) && !defined(M_UNIX) | |
163 # if defined(HAVE_SYS_PTEM_H) || defined(hpux) | |
164 if (ioctl(fd, I_PUSH, "ptem") != 0) | |
165 return -1; | |
166 # endif | |
167 if (ioctl(fd, I_PUSH, "ldterm") != 0) | |
168 return -1; | |
10460
7fd589f46801
commit https://github.com/vim/vim/commit/a899e6ecc4523c7e411eaf6fbaa4197d70f6f39e
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
169 # ifdef SUN_SYSTEM |
7 | 170 if (ioctl(fd, I_PUSH, "ttcompat") != 0) |
171 return -1; | |
172 # endif | |
173 #endif | |
174 return 0; | |
175 } | |
176 | |
177 | |
178 #if defined(OSX) && !defined(PTY_DONE) | |
179 #define PTY_DONE | |
180 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
181 OpenPTY(char **ttyn) |
7 | 182 { |
183 int f; | |
184 static char TtyName[32]; | |
185 | |
186 if ((f = open_controlling_pty(TtyName)) < 0) | |
187 return -1; | |
188 initmaster(f); | |
189 *ttyn = TtyName; | |
190 return f; | |
191 } | |
192 #endif | |
193 | |
194 #if (defined(sequent) || defined(_SEQUENT_)) && defined(HAVE_GETPSEUDOTTY) \ | |
195 && !defined(PTY_DONE) | |
196 #define PTY_DONE | |
197 int | |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
198 OpenPTY(char **ttyn) |
7 | 199 { |
200 char *m, *s; | |
201 int f; | |
202 /* used for opening a new pty-pair: */ | |
203 static char PtyName[32]; | |
204 static char TtyName[32]; | |
205 | |
206 if ((f = getpseudotty(&s, &m)) < 0) | |
207 return -1; | |
208 #ifdef _SEQUENT_ | |
209 fvhangup(s); | |
210 #endif | |
2760 | 211 vim_strncpy((char_u *)PtyName, (char_u *)m, sizeof(PtyName) - 1); |
212 vim_strncpy((char_u *)TtyName, (char_u *)s, sizeof(TtyName) - 1); | |
7 | 213 initmaster(f); |
214 *ttyn = TtyName; | |
215 return f; | |
216 } | |
217 #endif | |
218 | |
219 #if defined(__sgi) && !defined(PTY_DONE) | |
220 #define PTY_DONE | |
221 int | |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
222 OpenPTY(char **ttyn) |
7 | 223 { |
224 int f; | |
225 char *name; | |
7807
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
226 RETSIGTYPE (*sigcld) SIGPROTOARG; |
7 | 227 |
228 /* | |
229 * SIGCHLD set to SIG_DFL for _getpty() because it may fork() and | |
230 * exec() /usr/adm/mkpts | |
231 */ | |
232 sigcld = signal(SIGCHLD, SIG_DFL); | |
233 name = _getpty(&f, O_RDWR | O_NONBLOCK | O_EXTRA, 0600, 0); | |
234 signal(SIGCHLD, sigcld); | |
235 | |
236 if (name == 0) | |
237 return -1; | |
238 initmaster(f); | |
239 *ttyn = name; | |
240 return f; | |
241 } | |
242 #endif | |
243 | |
244 #if defined(MIPS) && defined(HAVE_DEV_PTC) && !defined(PTY_DONE) | |
245 #define PTY_DONE | |
246 int | |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
247 OpenPTY(char **ttyn) |
7 | 248 { |
249 int f; | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
250 stat_T buf; |
7 | 251 /* used for opening a new pty-pair: */ |
252 static char TtyName[32]; | |
253 | |
254 if ((f = open("/dev/ptc", O_RDWR | O_NOCTTY | O_NONBLOCK | O_EXTRA, 0)) < 0) | |
255 return -1; | |
256 if (mch_fstat(f, &buf) < 0) | |
257 { | |
258 close(f); | |
259 return -1; | |
260 } | |
261 sprintf(TtyName, "/dev/ttyq%d", minor(buf.st_rdev)); | |
262 initmaster(f); | |
263 *ttyn = TtyName; | |
264 return f; | |
265 } | |
266 #endif | |
267 | |
12576
b74f5036a434
patch 8.0.1166: :terminal doesn't work on Mac High Sierra
Christian Brabandt <cb@256bit.org>
parents:
11737
diff
changeset
|
268 #if defined(HAVE_SVR4_PTYS) && !defined(PTY_DONE) && !defined(hpux) \ |
13353
8412df1479a3
patch 8.0.1550: various small problems in source files
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
269 && !(defined(MACOS_X) && !defined(MAC_OS_X_VERSION_10_6)) |
7 | 270 |
1703 | 271 /* NOTE: Even though HPUX can have /dev/ptmx, the code below doesn't work! |
12576
b74f5036a434
patch 8.0.1166: :terminal doesn't work on Mac High Sierra
Christian Brabandt <cb@256bit.org>
parents:
11737
diff
changeset
|
272 * Same for Mac OS X Leopard (10.5). */ |
7 | 273 #define PTY_DONE |
274 int | |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
275 OpenPTY(char **ttyn) |
7 | 276 { |
277 int f; | |
2397
d5976fe4349d
Fix for compiler warning about function prototype in pty.c.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
278 char *m; |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
3282
diff
changeset
|
279 char *(ptsname(int)); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
3282
diff
changeset
|
280 int unlockpt(int); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
3282
diff
changeset
|
281 int grantpt(int); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
3282
diff
changeset
|
282 RETSIGTYPE (*sigcld) SIGPROTOARG; |
7 | 283 /* used for opening a new pty-pair: */ |
284 static char TtyName[32]; | |
285 | |
286 if ((f = open("/dev/ptmx", O_RDWR | O_NOCTTY | O_EXTRA, 0)) == -1) | |
287 return -1; | |
288 | |
289 /* | |
290 * SIGCHLD set to SIG_DFL for grantpt() because it fork()s and | |
291 * exec()s pt_chmod | |
292 */ | |
293 sigcld = signal(SIGCHLD, SIG_DFL); | |
294 if ((m = ptsname(f)) == NULL || grantpt(f) || unlockpt(f)) | |
295 { | |
296 signal(SIGCHLD, sigcld); | |
297 close(f); | |
298 return -1; | |
299 } | |
300 signal(SIGCHLD, sigcld); | |
2760 | 301 vim_strncpy((char_u *)TtyName, (char_u *)m, sizeof(TtyName) - 1); |
7 | 302 initmaster(f); |
303 *ttyn = TtyName; | |
304 return f; | |
305 } | |
306 #endif | |
307 | |
308 #if defined(_AIX) && defined(HAVE_DEV_PTC) && !defined(PTY_DONE) | |
309 #define PTY_DONE | |
310 | |
311 #ifdef _IBMR2 | |
312 int aixhack = -1; | |
313 #endif | |
314 | |
315 int | |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
316 OpenPTY(char **ttyn) |
7 | 317 { |
318 int f; | |
319 /* used for opening a new pty-pair: */ | |
320 static char TtyName[32]; | |
321 | |
322 /* a dumb looking loop replaced by mycrofts code: */ | |
323 if ((f = open("/dev/ptc", O_RDWR | O_NOCTTY | O_EXTRA)) < 0) | |
324 return -1; | |
2760 | 325 vim_strncpy((char_u *)TtyName, (char_u *)ttyname(f), sizeof(TtyName) - 1); |
1076 | 326 if (geteuid() != ROOT_UID && mch_access(TtyName, R_OK | W_OK)) |
7 | 327 { |
328 close(f); | |
329 return -1; | |
330 } | |
331 initmaster(f); | |
332 # ifdef _IBMR2 | |
333 if (aixhack >= 0) | |
334 close(aixhack); | |
335 if ((aixhack = open(TtyName, O_RDWR | O_NOCTTY | O_EXTRA, 0)) < 0) | |
336 { | |
337 close(f); | |
338 return -1; | |
339 } | |
340 # endif | |
341 *ttyn = TtyName; | |
342 return f; | |
343 } | |
344 #endif | |
345 | |
346 #ifndef PTY_DONE | |
347 | |
348 # ifdef hpux | |
349 static char PtyProto[] = "/dev/ptym/ptyXY"; | |
350 static char TtyProto[] = "/dev/pty/ttyXY"; | |
351 # else | |
352 # ifdef __BEOS__ | |
353 static char PtyProto[] = "/dev/pt/XY"; | |
354 static char TtyProto[] = "/dev/tt/XY"; | |
355 # else | |
356 static char PtyProto[] = "/dev/ptyXY"; | |
357 static char TtyProto[] = "/dev/ttyXY"; | |
358 # endif | |
359 # endif | |
360 | |
361 int | |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
362 OpenPTY(char **ttyn) |
7 | 363 { |
364 char *p, *q, *l, *d; | |
365 int f; | |
366 /* used for opening a new pty-pair: */ | |
367 static char PtyName[32]; | |
368 static char TtyName[32]; | |
369 | |
370 strcpy(PtyName, PtyProto); | |
371 strcpy(TtyName, TtyProto); | |
372 for (p = PtyName; *p != 'X'; p++) | |
373 ; | |
374 for (q = TtyName; *q != 'X'; q++) | |
375 ; | |
376 for (l = PTYRANGE0; (*p = *l) != '\0'; l++) | |
377 { | |
378 for (d = PTYRANGE1; (p[1] = *d) != '\0'; d++) | |
379 { | |
380 if ((f = open(PtyName, O_RDWR | O_NOCTTY | O_EXTRA, 0)) == -1) | |
381 continue; | |
382 q[0] = *l; | |
383 q[1] = *d; | |
1076 | 384 if (geteuid() != ROOT_UID && mch_access(TtyName, R_OK | W_OK)) |
7 | 385 { |
386 close(f); | |
387 continue; | |
388 } | |
10460
7fd589f46801
commit https://github.com/vim/vim/commit/a899e6ecc4523c7e411eaf6fbaa4197d70f6f39e
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
389 #if defined(SUN_SYSTEM) && defined(TIOCGPGRP) && !defined(SUNOS3) |
7 | 390 /* Hack to ensure that the slave side of the pty is |
391 * unused. May not work in anything other than SunOS4.1 | |
392 */ | |
393 { | |
394 int pgrp; | |
395 | |
396 /* tcgetpgrp does not work (uses TIOCGETPGRP)! */ | |
397 if (ioctl(f, TIOCGPGRP, (char *)&pgrp) != -1 || errno != EIO) | |
398 { | |
399 close(f); | |
400 continue; | |
401 } | |
402 } | |
403 #endif | |
404 initmaster(f); | |
405 *ttyn = TtyName; | |
406 return f; | |
407 } | |
408 } | |
409 return -1; | |
410 } | |
411 #endif | |
11735
21354977aa7b
patch 8.0.0750: OpenPTY missing in non-GUI build
Christian Brabandt <cb@256bit.org>
parents:
10460
diff
changeset
|
412 |
21354977aa7b
patch 8.0.0750: OpenPTY missing in non-GUI build
Christian Brabandt <cb@256bit.org>
parents:
10460
diff
changeset
|
413 #endif /* FEAT_GUI || FEAT_TERMINAL */ |