io.c revision 1.12 1 1.12 kamil /* $NetBSD: io.c,v 1.12 2017/06/22 14:20:46 kamil Exp $ */
2 1.2 tls
3 1.1 jtc /*
4 1.1 jtc * shell buffered IO and formatted output
5 1.1 jtc */
6 1.7 agc #include <sys/cdefs.h>
7 1.7 agc
8 1.7 agc #ifndef lint
9 1.12 kamil __RCSID("$NetBSD: io.c,v 1.12 2017/06/22 14:20:46 kamil Exp $");
10 1.7 agc #endif
11 1.7 agc
12 1.1 jtc
13 1.1 jtc #include <ctype.h>
14 1.1 jtc #include "sh.h"
15 1.1 jtc #include "ksh_stat.h"
16 1.1 jtc
17 1.5 hubertf static int initio_done;
18 1.5 hubertf
19 1.1 jtc /*
20 1.1 jtc * formatted output functions
21 1.1 jtc */
22 1.1 jtc
23 1.1 jtc
24 1.6 wiz /* A shell error occurred (eg, syntax error, etc.) */
25 1.1 jtc void
26 1.1 jtc #ifdef HAVE_PROTOTYPES
27 1.1 jtc errorf(const char *fmt, ...)
28 1.1 jtc #else
29 1.1 jtc errorf(fmt, va_alist)
30 1.1 jtc const char *fmt;
31 1.1 jtc va_dcl
32 1.1 jtc #endif
33 1.1 jtc {
34 1.1 jtc va_list va;
35 1.1 jtc
36 1.1 jtc shl_stdout_ok = 0; /* debugging: note that stdout not valid */
37 1.1 jtc exstat = 1;
38 1.1 jtc if (*fmt) {
39 1.1 jtc error_prefix(TRUE);
40 1.1 jtc SH_VA_START(va, fmt);
41 1.1 jtc shf_vfprintf(shl_out, fmt, va);
42 1.1 jtc va_end(va);
43 1.1 jtc shf_putchar('\n', shl_out);
44 1.1 jtc }
45 1.1 jtc shf_flush(shl_out);
46 1.1 jtc unwind(LERROR);
47 1.1 jtc }
48 1.1 jtc
49 1.1 jtc /* like errorf(), but no unwind is done */
50 1.1 jtc void
51 1.1 jtc #ifdef HAVE_PROTOTYPES
52 1.1 jtc warningf(int fileline, const char *fmt, ...)
53 1.1 jtc #else
54 1.1 jtc warningf(fileline, fmt, va_alist)
55 1.1 jtc int fileline;
56 1.1 jtc const char *fmt;
57 1.1 jtc va_dcl
58 1.1 jtc #endif
59 1.1 jtc {
60 1.1 jtc va_list va;
61 1.1 jtc
62 1.1 jtc error_prefix(fileline);
63 1.1 jtc SH_VA_START(va, fmt);
64 1.1 jtc shf_vfprintf(shl_out, fmt, va);
65 1.1 jtc va_end(va);
66 1.1 jtc shf_putchar('\n', shl_out);
67 1.1 jtc shf_flush(shl_out);
68 1.1 jtc }
69 1.1 jtc
70 1.1 jtc /* Used by built-in utilities to prefix shell and utility name to message
71 1.1 jtc * (also unwinds environments for special builtins).
72 1.1 jtc */
73 1.1 jtc void
74 1.1 jtc #ifdef HAVE_PROTOTYPES
75 1.1 jtc bi_errorf(const char *fmt, ...)
76 1.1 jtc #else
77 1.1 jtc bi_errorf(fmt, va_alist)
78 1.1 jtc const char *fmt;
79 1.1 jtc va_dcl
80 1.1 jtc #endif
81 1.1 jtc {
82 1.1 jtc va_list va;
83 1.1 jtc
84 1.1 jtc shl_stdout_ok = 0; /* debugging: note that stdout not valid */
85 1.1 jtc exstat = 1;
86 1.1 jtc if (*fmt) {
87 1.1 jtc error_prefix(TRUE);
88 1.1 jtc /* not set when main() calls parse_args() */
89 1.1 jtc if (builtin_argv0)
90 1.1 jtc shf_fprintf(shl_out, "%s: ", builtin_argv0);
91 1.1 jtc SH_VA_START(va, fmt);
92 1.1 jtc shf_vfprintf(shl_out, fmt, va);
93 1.1 jtc va_end(va);
94 1.1 jtc shf_putchar('\n', shl_out);
95 1.1 jtc }
96 1.1 jtc shf_flush(shl_out);
97 1.1 jtc /* POSIX special builtins and ksh special builtins cause
98 1.1 jtc * non-interactive shells to exit.
99 1.1 jtc * XXX odd use of KEEPASN; also may not want LERROR here
100 1.1 jtc */
101 1.1 jtc if ((builtin_flag & SPEC_BI)
102 1.1 jtc || (Flag(FPOSIX) && (builtin_flag & KEEPASN)))
103 1.1 jtc {
104 1.1 jtc builtin_argv0 = (char *) 0;
105 1.1 jtc unwind(LERROR);
106 1.1 jtc }
107 1.1 jtc }
108 1.1 jtc
109 1.1 jtc /* Called when something that shouldn't happen does */
110 1.1 jtc void
111 1.1 jtc #ifdef HAVE_PROTOTYPES
112 1.1 jtc internal_errorf(int jump, const char *fmt, ...)
113 1.1 jtc #else
114 1.1 jtc internal_errorf(jump, fmt, va_alist)
115 1.1 jtc int jump;
116 1.1 jtc const char *fmt;
117 1.1 jtc va_dcl
118 1.1 jtc #endif
119 1.1 jtc {
120 1.1 jtc va_list va;
121 1.1 jtc
122 1.1 jtc error_prefix(TRUE);
123 1.1 jtc shf_fprintf(shl_out, "internal error: ");
124 1.1 jtc SH_VA_START(va, fmt);
125 1.1 jtc shf_vfprintf(shl_out, fmt, va);
126 1.1 jtc va_end(va);
127 1.1 jtc shf_putchar('\n', shl_out);
128 1.1 jtc shf_flush(shl_out);
129 1.1 jtc if (jump)
130 1.1 jtc unwind(LERROR);
131 1.1 jtc }
132 1.1 jtc
133 1.1 jtc /* used by error reporting functions to print "ksh: .kshrc[25]: " */
134 1.1 jtc void
135 1.1 jtc error_prefix(fileline)
136 1.1 jtc int fileline;
137 1.1 jtc {
138 1.5 hubertf /* Avoid foo: foo[2]: ... */
139 1.5 hubertf if (!fileline || !source || !source->file
140 1.5 hubertf || strcmp(source->file, kshname) != 0)
141 1.5 hubertf shf_fprintf(shl_out, "%s: ", kshname + (*kshname == '-'));
142 1.1 jtc if (fileline && source && source->file != NULL) {
143 1.1 jtc shf_fprintf(shl_out, "%s[%d]: ", source->file,
144 1.1 jtc source->errline > 0 ? source->errline : source->line);
145 1.1 jtc source->errline = 0;
146 1.1 jtc }
147 1.1 jtc }
148 1.1 jtc
149 1.1 jtc /* printf to shl_out (stderr) with flush */
150 1.1 jtc void
151 1.1 jtc #ifdef HAVE_PROTOTYPES
152 1.1 jtc shellf(const char *fmt, ...)
153 1.1 jtc #else
154 1.1 jtc shellf(fmt, va_alist)
155 1.1 jtc const char *fmt;
156 1.1 jtc va_dcl
157 1.1 jtc #endif
158 1.1 jtc {
159 1.1 jtc va_list va;
160 1.1 jtc
161 1.5 hubertf if (!initio_done) /* shl_out may not be set up yet... */
162 1.5 hubertf return;
163 1.1 jtc SH_VA_START(va, fmt);
164 1.1 jtc shf_vfprintf(shl_out, fmt, va);
165 1.1 jtc va_end(va);
166 1.1 jtc shf_flush(shl_out);
167 1.1 jtc }
168 1.1 jtc
169 1.1 jtc /* printf to shl_stdout (stdout) */
170 1.1 jtc void
171 1.1 jtc #ifdef HAVE_PROTOTYPES
172 1.1 jtc shprintf(const char *fmt, ...)
173 1.1 jtc #else
174 1.1 jtc shprintf(fmt, va_alist)
175 1.1 jtc const char *fmt;
176 1.1 jtc va_dcl
177 1.1 jtc #endif
178 1.1 jtc {
179 1.1 jtc va_list va;
180 1.1 jtc
181 1.1 jtc if (!shl_stdout_ok)
182 1.1 jtc internal_errorf(1, "shl_stdout not valid");
183 1.1 jtc SH_VA_START(va, fmt);
184 1.1 jtc shf_vfprintf(shl_stdout, fmt, va);
185 1.1 jtc va_end(va);
186 1.1 jtc }
187 1.1 jtc
188 1.5 hubertf #ifdef KSH_DEBUG
189 1.5 hubertf static struct shf *kshdebug_shf;
190 1.5 hubertf
191 1.5 hubertf void
192 1.5 hubertf kshdebug_init_()
193 1.5 hubertf {
194 1.5 hubertf if (kshdebug_shf)
195 1.5 hubertf shf_close(kshdebug_shf);
196 1.5 hubertf kshdebug_shf = shf_open("/tmp/ksh-debug.log",
197 1.5 hubertf O_WRONLY|O_APPEND|O_CREAT, 0600,
198 1.5 hubertf SHF_WR|SHF_MAPHI);
199 1.5 hubertf if (kshdebug_shf) {
200 1.5 hubertf shf_fprintf(kshdebug_shf, "\nNew shell[pid %d]\n", getpid());
201 1.5 hubertf shf_flush(kshdebug_shf);
202 1.5 hubertf }
203 1.5 hubertf }
204 1.5 hubertf
205 1.5 hubertf /* print to debugging log */
206 1.5 hubertf void
207 1.5 hubertf # ifdef HAVE_PROTOTYPES
208 1.5 hubertf kshdebug_printf_(const char *fmt, ...)
209 1.5 hubertf # else
210 1.5 hubertf kshdebug_printf_(fmt, va_alist)
211 1.5 hubertf const char *fmt;
212 1.5 hubertf va_dcl
213 1.5 hubertf # endif
214 1.5 hubertf {
215 1.5 hubertf va_list va;
216 1.5 hubertf
217 1.5 hubertf if (!kshdebug_shf)
218 1.5 hubertf return;
219 1.5 hubertf SH_VA_START(va, fmt);
220 1.5 hubertf shf_fprintf(kshdebug_shf, "[%d] ", getpid());
221 1.5 hubertf shf_vfprintf(kshdebug_shf, fmt, va);
222 1.5 hubertf va_end(va);
223 1.5 hubertf shf_flush(kshdebug_shf);
224 1.5 hubertf }
225 1.5 hubertf
226 1.5 hubertf void
227 1.5 hubertf kshdebug_dump_(str, mem, nbytes)
228 1.5 hubertf const char *str;
229 1.5 hubertf const void *mem;
230 1.5 hubertf int nbytes;
231 1.5 hubertf {
232 1.5 hubertf int i, j;
233 1.5 hubertf int nprow = 16;
234 1.5 hubertf
235 1.5 hubertf if (!kshdebug_shf)
236 1.5 hubertf return;
237 1.5 hubertf shf_fprintf(kshdebug_shf, "[%d] %s:\n", getpid(), str);
238 1.5 hubertf for (i = 0; i < nbytes; i += nprow) {
239 1.5 hubertf char c = '\t';
240 1.5 hubertf for (j = 0; j < nprow && i + j < nbytes; j++) {
241 1.5 hubertf shf_fprintf(kshdebug_shf, "%c%02x",
242 1.5 hubertf c, ((const unsigned char *) mem)[i + j]);
243 1.5 hubertf c = ' ';
244 1.5 hubertf }
245 1.5 hubertf shf_fprintf(kshdebug_shf, "\n");
246 1.5 hubertf }
247 1.5 hubertf shf_flush(kshdebug_shf);
248 1.5 hubertf }
249 1.5 hubertf #endif /* KSH_DEBUG */
250 1.5 hubertf
251 1.1 jtc /* test if we can seek backwards fd (returns 0 or SHF_UNBUF) */
252 1.1 jtc int
253 1.1 jtc can_seek(fd)
254 1.1 jtc int fd;
255 1.1 jtc {
256 1.1 jtc struct stat statb;
257 1.1 jtc
258 1.1 jtc return fstat(fd, &statb) == 0 && !S_ISREG(statb.st_mode) ?
259 1.1 jtc SHF_UNBUF : 0;
260 1.1 jtc }
261 1.1 jtc
262 1.1 jtc struct shf shf_iob[3];
263 1.1 jtc
264 1.1 jtc void
265 1.1 jtc initio()
266 1.1 jtc {
267 1.1 jtc shf_fdopen(1, SHF_WR, shl_stdout); /* force buffer allocation */
268 1.1 jtc shf_fdopen(2, SHF_WR, shl_out);
269 1.1 jtc shf_fdopen(2, SHF_WR, shl_spare); /* force buffer allocation */
270 1.5 hubertf initio_done = 1;
271 1.5 hubertf kshdebug_init();
272 1.1 jtc }
273 1.1 jtc
274 1.1 jtc /* A dup2() with error checking */
275 1.1 jtc int
276 1.1 jtc ksh_dup2(ofd, nfd, errok)
277 1.1 jtc int ofd;
278 1.1 jtc int nfd;
279 1.1 jtc int errok;
280 1.1 jtc {
281 1.1 jtc int ret = dup2(ofd, nfd);
282 1.1 jtc
283 1.1 jtc if (ret < 0 && errno != EBADF && !errok)
284 1.1 jtc errorf("too many files open in shell");
285 1.1 jtc
286 1.1 jtc #ifdef DUP2_BROKEN
287 1.1 jtc /* Ultrix systems like to preserve the close-on-exec flag */
288 1.1 jtc if (ret >= 0)
289 1.1 jtc (void) fcntl(nfd, F_SETFD, 0);
290 1.1 jtc #endif /* DUP2_BROKEN */
291 1.1 jtc
292 1.1 jtc return ret;
293 1.1 jtc }
294 1.1 jtc
295 1.1 jtc /*
296 1.1 jtc * move fd from user space (0<=fd<10) to shell space (fd>=10),
297 1.1 jtc * set close-on-exec flag.
298 1.1 jtc */
299 1.1 jtc int
300 1.1 jtc savefd(fd, noclose)
301 1.1 jtc int fd;
302 1.1 jtc int noclose;
303 1.1 jtc {
304 1.1 jtc int nfd;
305 1.1 jtc
306 1.1 jtc if (fd < FDBASE) {
307 1.1 jtc nfd = ksh_dupbase(fd, FDBASE);
308 1.3 thorpej if (nfd < 0) {
309 1.1 jtc if (errno == EBADF)
310 1.1 jtc return -1;
311 1.1 jtc else
312 1.1 jtc errorf("too many files open in shell");
313 1.3 thorpej }
314 1.1 jtc if (!noclose)
315 1.1 jtc close(fd);
316 1.1 jtc } else
317 1.1 jtc nfd = fd;
318 1.1 jtc fd_clexec(nfd);
319 1.1 jtc return nfd;
320 1.1 jtc }
321 1.1 jtc
322 1.1 jtc void
323 1.1 jtc restfd(fd, ofd)
324 1.1 jtc int fd, ofd;
325 1.1 jtc {
326 1.1 jtc if (fd == 2)
327 1.1 jtc shf_flush(&shf_iob[fd]);
328 1.1 jtc if (ofd < 0) /* original fd closed */
329 1.1 jtc close(fd);
330 1.8 mycroft else if (fd != ofd) {
331 1.1 jtc ksh_dup2(ofd, fd, TRUE); /* XXX: what to do if this fails? */
332 1.1 jtc close(ofd);
333 1.1 jtc }
334 1.1 jtc }
335 1.1 jtc
336 1.1 jtc void
337 1.1 jtc openpipe(pv)
338 1.1 jtc register int *pv;
339 1.1 jtc {
340 1.1 jtc if (pipe(pv) < 0)
341 1.1 jtc errorf("can't create pipe - try again");
342 1.1 jtc pv[0] = savefd(pv[0], 0);
343 1.1 jtc pv[1] = savefd(pv[1], 0);
344 1.1 jtc }
345 1.1 jtc
346 1.1 jtc void
347 1.1 jtc closepipe(pv)
348 1.1 jtc register int *pv;
349 1.1 jtc {
350 1.1 jtc close(pv[0]);
351 1.1 jtc close(pv[1]);
352 1.1 jtc }
353 1.1 jtc
354 1.1 jtc /* Called by iosetup() (deals with 2>&4, etc.), c_read, c_print to turn
355 1.1 jtc * a string (the X in 2>&X, read -uX, print -uX) into a file descriptor.
356 1.1 jtc */
357 1.1 jtc int
358 1.1 jtc check_fd(name, mode, emsgp)
359 1.1 jtc char *name;
360 1.1 jtc int mode;
361 1.1 jtc const char **emsgp;
362 1.1 jtc {
363 1.1 jtc int fd, fl;
364 1.1 jtc
365 1.4 christos if (isdigit((unsigned char)name[0]) && !name[1]) {
366 1.1 jtc fd = name[0] - '0';
367 1.1 jtc if ((fl = fcntl(fd = name[0] - '0', F_GETFL, 0)) < 0) {
368 1.1 jtc if (emsgp)
369 1.1 jtc *emsgp = "bad file descriptor";
370 1.1 jtc return -1;
371 1.1 jtc }
372 1.1 jtc fl &= O_ACCMODE;
373 1.12 kamil
374 1.1 jtc /* X_OK is a kludge to disable this check for dups (x<&1):
375 1.1 jtc * historical shells never did this check (XXX don't know what
376 1.1 jtc * posix has to say).
377 1.1 jtc */
378 1.1 jtc if (!(mode & X_OK) && fl != O_RDWR
379 1.1 jtc && (((mode & R_OK) && fl != O_RDONLY)
380 1.1 jtc || ((mode & W_OK) && fl != O_WRONLY)))
381 1.1 jtc {
382 1.1 jtc if (emsgp)
383 1.1 jtc *emsgp = (fl == O_WRONLY) ?
384 1.1 jtc "fd not open for reading"
385 1.1 jtc : "fd not open for writing";
386 1.1 jtc return -1;
387 1.1 jtc }
388 1.1 jtc return fd;
389 1.1 jtc }
390 1.1 jtc #ifdef KSH
391 1.1 jtc else if (name[0] == 'p' && !name[1])
392 1.1 jtc return coproc_getfd(mode, emsgp);
393 1.1 jtc #endif /* KSH */
394 1.1 jtc if (emsgp)
395 1.1 jtc *emsgp = "illegal file descriptor name";
396 1.1 jtc return -1;
397 1.1 jtc }
398 1.1 jtc
399 1.1 jtc #ifdef KSH
400 1.1 jtc /* Called once from main */
401 1.1 jtc void
402 1.1 jtc coproc_init()
403 1.1 jtc {
404 1.1 jtc coproc.read = coproc.readw = coproc.write = -1;
405 1.1 jtc coproc.njobs = 0;
406 1.1 jtc coproc.id = 0;
407 1.1 jtc }
408 1.1 jtc
409 1.1 jtc /* Called by c_read() when eof is read - close fd if it is the co-process fd */
410 1.1 jtc void
411 1.1 jtc coproc_read_close(fd)
412 1.1 jtc int fd;
413 1.1 jtc {
414 1.1 jtc if (coproc.read >= 0 && fd == coproc.read) {
415 1.1 jtc coproc_readw_close(fd);
416 1.1 jtc close(coproc.read);
417 1.1 jtc coproc.read = -1;
418 1.1 jtc }
419 1.1 jtc }
420 1.1 jtc
421 1.1 jtc /* Called by c_read() and by iosetup() to close the other side of the
422 1.1 jtc * read pipe, so reads will actually terminate.
423 1.1 jtc */
424 1.1 jtc void
425 1.1 jtc coproc_readw_close(fd)
426 1.1 jtc int fd;
427 1.1 jtc {
428 1.1 jtc if (coproc.readw >= 0 && coproc.read >= 0 && fd == coproc.read) {
429 1.1 jtc close(coproc.readw);
430 1.1 jtc coproc.readw = -1;
431 1.1 jtc }
432 1.1 jtc }
433 1.1 jtc
434 1.1 jtc /* Called by c_print when a write to a fd fails with EPIPE and by iosetup
435 1.1 jtc * when co-process input is dup'd
436 1.1 jtc */
437 1.1 jtc void
438 1.1 jtc coproc_write_close(fd)
439 1.1 jtc int fd;
440 1.1 jtc {
441 1.1 jtc if (coproc.write >= 0 && fd == coproc.write) {
442 1.1 jtc close(coproc.write);
443 1.1 jtc coproc.write = -1;
444 1.1 jtc }
445 1.1 jtc }
446 1.1 jtc
447 1.8 mycroft /* Called to check for existence of/value of the co-process file descriptor.
448 1.1 jtc * (Used by check_fd() and by c_read/c_print to deal with -p option).
449 1.1 jtc */
450 1.1 jtc int
451 1.1 jtc coproc_getfd(mode, emsgp)
452 1.1 jtc int mode;
453 1.1 jtc const char **emsgp;
454 1.1 jtc {
455 1.1 jtc int fd = (mode & R_OK) ? coproc.read : coproc.write;
456 1.1 jtc
457 1.1 jtc if (fd >= 0)
458 1.1 jtc return fd;
459 1.1 jtc if (emsgp)
460 1.1 jtc *emsgp = "no coprocess";
461 1.1 jtc return -1;
462 1.1 jtc }
463 1.1 jtc
464 1.1 jtc /* called to close file descriptors related to the coprocess (if any)
465 1.1 jtc * Should be called with SIGCHLD blocked.
466 1.1 jtc */
467 1.1 jtc void
468 1.1 jtc coproc_cleanup(reuse)
469 1.1 jtc int reuse;
470 1.1 jtc {
471 1.1 jtc /* This to allow co-processes to share output pipe */
472 1.1 jtc if (!reuse || coproc.readw < 0 || coproc.read < 0) {
473 1.1 jtc if (coproc.read >= 0) {
474 1.1 jtc close(coproc.read);
475 1.1 jtc coproc.read = -1;
476 1.1 jtc }
477 1.1 jtc if (coproc.readw >= 0) {
478 1.1 jtc close(coproc.readw);
479 1.1 jtc coproc.readw = -1;
480 1.1 jtc }
481 1.1 jtc }
482 1.1 jtc if (coproc.write >= 0) {
483 1.1 jtc close(coproc.write);
484 1.1 jtc coproc.write = -1;
485 1.1 jtc }
486 1.1 jtc }
487 1.1 jtc #endif /* KSH */
488 1.1 jtc
489 1.5 hubertf
490 1.1 jtc /*
491 1.1 jtc * temporary files
492 1.1 jtc */
493 1.1 jtc
494 1.1 jtc struct temp *
495 1.5 hubertf maketemp(ap, type, tlist)
496 1.1 jtc Area *ap;
497 1.5 hubertf Temp_type type;
498 1.5 hubertf struct temp **tlist;
499 1.1 jtc {
500 1.8 mycroft #ifndef __NetBSD__
501 1.1 jtc static unsigned int inc;
502 1.8 mycroft #endif
503 1.1 jtc struct temp *tp;
504 1.1 jtc int len;
505 1.1 jtc int fd;
506 1.9 christos char *pathx;
507 1.5 hubertf const char *dir;
508 1.1 jtc
509 1.5 hubertf dir = tmpdir ? tmpdir : "/tmp";
510 1.1 jtc /* The 20 + 20 is a paranoid worst case for pid/inc */
511 1.5 hubertf len = strlen(dir) + 3 + 20 + 20 + 1;
512 1.1 jtc tp = (struct temp *) alloc(sizeof(struct temp) + len, ap);
513 1.9 christos tp->name = pathx = (char *) &tp[1];
514 1.1 jtc tp->shf = (struct shf *) 0;
515 1.5 hubertf tp->type = type;
516 1.8 mycroft #ifdef __NetBSD__
517 1.9 christos shf_snprintf(pathx, len, "%s/shXXXXXXXX", dir);
518 1.9 christos fd = mkstemp(pathx);
519 1.8 mycroft if (fd >= 0)
520 1.8 mycroft tp->shf = shf_fdopen(fd, SHF_WR, (struct shf *) 0);
521 1.8 mycroft #else
522 1.1 jtc while (1) {
523 1.1 jtc /* Note that temp files need to fit 8.3 DOS limits */
524 1.9 christos shf_snprintf(pathx, len, "%s/sh%05u.%03x",
525 1.5 hubertf dir, (unsigned) procpid, inc++);
526 1.1 jtc /* Mode 0600 to be paranoid, O_TRUNC in case O_EXCL isn't
527 1.1 jtc * really there.
528 1.1 jtc */
529 1.9 christos fd = open(pathx, O_RDWR|O_CREAT|O_EXCL|O_TRUNC, 0600);
530 1.1 jtc if (fd >= 0) {
531 1.1 jtc tp->shf = shf_fdopen(fd, SHF_WR, (struct shf *) 0);
532 1.1 jtc break;
533 1.1 jtc }
534 1.1 jtc if (errno != EINTR
535 1.1 jtc #ifdef EEXIST
536 1.1 jtc && errno != EEXIST
537 1.1 jtc #endif /* EEXIST */
538 1.1 jtc #ifdef EISDIR
539 1.1 jtc && errno != EISDIR
540 1.1 jtc #endif /* EISDIR */
541 1.1 jtc )
542 1.5 hubertf /* Error must be printed by caller: don't know here if
543 1.1 jtc * errorf() or bi_errorf() should be used.
544 1.1 jtc */
545 1.1 jtc break;
546 1.1 jtc }
547 1.8 mycroft #endif /* __NetBSD__ */
548 1.1 jtc tp->pid = procpid;
549 1.5 hubertf
550 1.5 hubertf tp->next = *tlist;
551 1.5 hubertf *tlist = tp;
552 1.5 hubertf
553 1.1 jtc return tp;
554 1.1 jtc }
555