This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perldelta 8bfeb7823012732f6bfd9c65485ae3ad9c0cce8d
[perl5.git] / perlio.c
CommitLineData
14a5cf38 1/*
5cb43542
RGS
2 * perlio.c
3 * Copyright (c) 1996-2006, Nick Ing-Simmons
2eee27d7 4 * Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011 Larry Wall and others
5cb43542
RGS
5 *
6 * You may distribute under the terms of either the GNU General Public License
7 * or the Artistic License, as specified in the README file.
760ac839
LW
8 */
9
14a5cf38 10/*
d31a8517
AT
11 * Hour after hour for nearly three weary days he had jogged up and down,
12 * over passes, and through long dales, and across many streams.
4ac71550
TC
13 *
14 * [pp.791-792 of _The Lord of the Rings_, V/iii: "The Muster of Rohan"]
d31a8517
AT
15 */
16
166f8a29
DM
17/* This file contains the functions needed to implement PerlIO, which
18 * is Perl's private replacement for the C stdio library. This is used
19 * by default unless you compile with -Uuseperlio or run with
20 * PERLIO=:stdio (but don't do this unless you know what you're doing)
21 */
22
d31a8517 23/*
71200d45 24 * If we have ActivePerl-like PERL_IMPLICIT_SYS then we need a dTHX to get
14a5cf38 25 * at the dispatch tables, even when we do not need it for other reasons.
71200d45 26 * Invent a dSYS macro to abstract this out
14a5cf38 27 */
7bcba3d4
NIS
28#ifdef PERL_IMPLICIT_SYS
29#define dSYS dTHX
30#else
31#define dSYS dNOOP
32#endif
33
6f9d8c32 34#define PERLIO_NOT_STDIO 0
760ac839 35/*
6f9d8c32 36 * This file provides those parts of PerlIO abstraction
88b61e10 37 * which are not #defined in perlio.h.
6f9d8c32 38 * Which these are depends on various Configure #ifdef's
760ac839
LW
39 */
40
41#include "EXTERN.h"
864dbfa3 42#define PERL_IN_PERLIO_C
760ac839
LW
43#include "perl.h"
44
32af7c23
CL
45#ifdef PERL_IMPLICIT_CONTEXT
46#undef dSYS
47#define dSYS dTHX
48#endif
49
0c4f7ff0
NIS
50#include "XSUB.h"
51
9cffb111
OS
52#ifdef __Lynx__
53/* Missing proto on LynxOS */
54int mkstemp(char*);
55#endif
56
25bbd826
CB
57#ifdef VMS
58#include <rms.h>
59#endif
60
abf9167d
DM
61#define PerlIO_lockcnt(f) (((PerlIOl*)(f))->head->flags)
62
1b7a0411 63/* Call the callback or PerlIOBase, and return failure. */
b32dd47e 64#define Perl_PerlIO_or_Base(f, callback, base, failure, args) \
1b7a0411 65 if (PerlIOValid(f)) { \
46c461b5 66 const PerlIO_funcs * const tab = PerlIOBase(f)->tab;\
1b7a0411
JH
67 if (tab && tab->callback) \
68 return (*tab->callback) args; \
69 else \
70 return PerlIOBase_ ## base args; \
71 } \
72 else \
73 SETERRNO(EBADF, SS_IVCHAN); \
74 return failure
75
76/* Call the callback or fail, and return failure. */
b32dd47e 77#define Perl_PerlIO_or_fail(f, callback, failure, args) \
1b7a0411 78 if (PerlIOValid(f)) { \
46c461b5 79 const PerlIO_funcs * const tab = PerlIOBase(f)->tab;\
1b7a0411
JH
80 if (tab && tab->callback) \
81 return (*tab->callback) args; \
82 SETERRNO(EINVAL, LIB_INVARG); \
83 } \
84 else \
85 SETERRNO(EBADF, SS_IVCHAN); \
86 return failure
87
88/* Call the callback or PerlIOBase, and be void. */
b32dd47e 89#define Perl_PerlIO_or_Base_void(f, callback, base, args) \
1b7a0411 90 if (PerlIOValid(f)) { \
46c461b5 91 const PerlIO_funcs * const tab = PerlIOBase(f)->tab;\
1b7a0411
JH
92 if (tab && tab->callback) \
93 (*tab->callback) args; \
94 else \
95 PerlIOBase_ ## base args; \
1b7a0411
JH
96 } \
97 else \
98 SETERRNO(EBADF, SS_IVCHAN)
99
100/* Call the callback or fail, and be void. */
b32dd47e 101#define Perl_PerlIO_or_fail_void(f, callback, args) \
1b7a0411 102 if (PerlIOValid(f)) { \
46c461b5 103 const PerlIO_funcs * const tab = PerlIOBase(f)->tab;\
1b7a0411
JH
104 if (tab && tab->callback) \
105 (*tab->callback) args; \
37725cdc
NIS
106 else \
107 SETERRNO(EINVAL, LIB_INVARG); \
1b7a0411
JH
108 } \
109 else \
110 SETERRNO(EBADF, SS_IVCHAN)
111
89a3a251
JH
112#if defined(__osf__) && _XOPEN_SOURCE < 500
113extern int fseeko(FILE *, off_t, int);
114extern off_t ftello(FILE *);
115#endif
116
76e6dc3a
KW
117#define NATIVE_0xd CR_NATIVE
118#define NATIVE_0xa LF_NATIVE
119
a0c21aa1
JH
120EXTERN_C int perlsio_binmode(FILE *fp, int iotype, int mode);
121
71ab4674
SP
122int
123perlsio_binmode(FILE *fp, int iotype, int mode)
124{
125 /*
126 * This used to be contents of do_binmode in doio.c
127 */
128#ifdef DOSISH
71ab4674 129 dTHX;
58c0efa5 130 PERL_UNUSED_ARG(iotype);
71ab4674
SP
131#ifdef NETWARE
132 if (PerlLIO_setmode(fp, mode) != -1) {
133#else
134 if (PerlLIO_setmode(fileno(fp), mode) != -1) {
135#endif
71ab4674
SP
136 return 1;
137 }
138 else
139 return 0;
71ab4674
SP
140#else
141# if defined(USEMYBINMODE)
142 dTHX;
58c0efa5
RGS
143# if defined(__CYGWIN__)
144 PERL_UNUSED_ARG(iotype);
145# endif
71ab4674
SP
146 if (my_binmode(fp, iotype, mode) != FALSE)
147 return 1;
148 else
149 return 0;
150# else
151 PERL_UNUSED_ARG(fp);
152 PERL_UNUSED_ARG(iotype);
153 PERL_UNUSED_ARG(mode);
154 return 1;
155# endif
156#endif
157}
71ab4674 158
06c7082d 159#ifndef O_ACCMODE
22569500 160#define O_ACCMODE 3 /* Assume traditional implementation */
06c7082d
NIS
161#endif
162
163int
164PerlIO_intmode2str(int rawmode, char *mode, int *writing)
165{
de009b76 166 const int result = rawmode & O_ACCMODE;
06c7082d
NIS
167 int ix = 0;
168 int ptype;
169 switch (result) {
170 case O_RDONLY:
171 ptype = IoTYPE_RDONLY;
172 break;
173 case O_WRONLY:
174 ptype = IoTYPE_WRONLY;
175 break;
176 case O_RDWR:
177 default:
178 ptype = IoTYPE_RDWR;
179 break;
180 }
181 if (writing)
182 *writing = (result != O_RDONLY);
183
184 if (result == O_RDONLY) {
185 mode[ix++] = 'r';
186 }
187#ifdef O_APPEND
188 else if (rawmode & O_APPEND) {
189 mode[ix++] = 'a';
190 if (result != O_WRONLY)
191 mode[ix++] = '+';
192 }
193#endif
194 else {
195 if (result == O_WRONLY)
196 mode[ix++] = 'w';
197 else {
198 mode[ix++] = 'r';
199 mode[ix++] = '+';
200 }
201 }
43e5477e
JH
202#if O_BINARY != 0
203 /* Unless O_BINARY is different from zero, bit-and:ing
204 * with it won't do much good. */
06c7082d
NIS
205 if (rawmode & O_BINARY)
206 mode[ix++] = 'b';
43e5477e 207# endif
06c7082d
NIS
208 mode[ix] = '\0';
209 return ptype;
210}
211
eb73beca
NIS
212#ifndef PERLIO_LAYERS
213int
214PerlIO_apply_layers(pTHX_ PerlIO *f, const char *mode, const char *names)
215{
6874a2de
NIS
216 if (!names || !*names
217 || strEQ(names, ":crlf")
218 || strEQ(names, ":raw")
219 || strEQ(names, ":bytes")
220 ) {
14a5cf38
JH
221 return 0;
222 }
223 Perl_croak(aTHX_ "Cannot apply \"%s\" in non-PerlIO perl", names);
224 /*
71200d45 225 * NOTREACHED
14a5cf38
JH
226 */
227 return -1;
eb73beca
NIS
228}
229
13621cfb
NIS
230void
231PerlIO_destruct(pTHX)
232{
233}
234
f5b9d040
NIS
235int
236PerlIO_binmode(pTHX_ PerlIO *fp, int iotype, int mode, const char *names)
237{
14a5cf38 238 return perlsio_binmode(fp, iotype, mode);
f5b9d040 239}
60382766 240
e0fa5af2 241PerlIO *
ecdeb87c 242PerlIO_fdupopen(pTHX_ PerlIO *f, CLONE_PARAMS *param, int flags)
e0fa5af2 243{
a0fd4948 244#if defined(PERL_MICRO) || defined(__SYMBIAN32__)
0553478e 245 return NULL;
faf55891 246#elif defined(PERL_IMPLICIT_SYS)
22569500 247 return PerlSIO_fdupopen(f);
0553478e 248#else
faf55891 249# ifdef WIN32
30753f56 250 return win32_fdupopen(f);
faf55891 251# else
e0fa5af2 252 if (f) {
504618e9 253 const int fd = PerlLIO_dup(PerlIO_fileno(f));
e0fa5af2 254 if (fd >= 0) {
06c7082d 255 char mode[8];
faf55891 256# ifdef DJGPP
dcda55fc 257 const int omode = djgpp_get_stream_mode(f);
faf55891 258# else
dcda55fc 259 const int omode = fcntl(fd, F_GETFL);
faf55891 260# endif
06c7082d 261 PerlIO_intmode2str(omode,mode,NULL);
e0fa5af2 262 /* the r+ is a hack */
06c7082d 263 return PerlIO_fdopen(fd, mode);
e0fa5af2
NIS
264 }
265 return NULL;
266 }
267 else {
93189314 268 SETERRNO(EBADF, SS_IVCHAN);
e0fa5af2 269 }
faf55891 270# endif
e0fa5af2 271 return NULL;
0553478e 272#endif
e0fa5af2
NIS
273}
274
275
14a5cf38 276/*
71200d45 277 * De-mux PerlIO_openn() into fdopen, freopen and fopen type entries
14a5cf38 278 */
ee518936
NIS
279
280PerlIO *
14a5cf38
JH
281PerlIO_openn(pTHX_ const char *layers, const char *mode, int fd,
282 int imode, int perm, PerlIO *old, int narg, SV **args)
283{
7cf31beb
NIS
284 if (narg) {
285 if (narg > 1) {
3b8752bb 286 Perl_croak(aTHX_ "More than one argument to open");
7cf31beb 287 }
14a5cf38
JH
288 if (*args == &PL_sv_undef)
289 return PerlIO_tmpfile();
290 else {
41188aa0 291 STRLEN len;
74622586 292 const char *name = SvPV_const(*args, len);
41188aa0 293 if (!IS_SAFE_PATHNAME(name, len, "open"))
c8028aa6
TC
294 return NULL;
295
3b6c1aba 296 if (*mode == IoTYPE_NUMERIC) {
14a5cf38
JH
297 fd = PerlLIO_open3(name, imode, perm);
298 if (fd >= 0)
de009b76 299 return PerlIO_fdopen(fd, mode + 1);
14a5cf38
JH
300 }
301 else if (old) {
302 return PerlIO_reopen(name, mode, old);
303 }
304 else {
305 return PerlIO_open(name, mode);
306 }
307 }
308 }
309 else {
310 return PerlIO_fdopen(fd, (char *) mode);
311 }
312 return NULL;
ee518936
NIS
313}
314
15eb3045 315XS(XS_PerlIO__Layer__find); /* prototype to pass -Wmissing-prototypes */
0c4f7ff0
NIS
316XS(XS_PerlIO__Layer__find)
317{
14a5cf38
JH
318 dXSARGS;
319 if (items < 2)
320 Perl_croak(aTHX_ "Usage class->find(name[,load])");
321 else {
dcda55fc 322 const char * const name = SvPV_nolen_const(ST(1));
14a5cf38
JH
323 ST(0) = (strEQ(name, "crlf")
324 || strEQ(name, "raw")) ? &PL_sv_yes : &PL_sv_undef;
325 XSRETURN(1);
326 }
0c4f7ff0
NIS
327}
328
329
330void
331Perl_boot_core_PerlIO(pTHX)
332{
14a5cf38 333 newXS("PerlIO::Layer::find", XS_PerlIO__Layer__find, __FILE__);
0c4f7ff0
NIS
334}
335
ac27b0f5
NIS
336#endif
337
32e30700 338
6f9d8c32 339/*======================================================================================*/
14a5cf38 340/*
71200d45 341 * Implement all the PerlIO interface ourselves.
9e353e3b 342 */
760ac839 343
76ced9ad
NIS
344#include "perliol.h"
345
6f9d8c32 346void
14a5cf38
JH
347PerlIO_debug(const char *fmt, ...)
348{
14a5cf38
JH
349 va_list ap;
350 dSYS;
e17bc05a
TC
351
352 if (!DEBUG_i_TEST)
353 return;
354
d732c5e5
JH
355 va_start(ap, fmt);
356
582588d2 357 if (!PL_perlio_debug_fd) {
284167a5 358 if (!TAINTING_get &&
985213f2
AB
359 PerlProc_getuid() == PerlProc_geteuid() &&
360 PerlProc_getgid() == PerlProc_getegid()) {
582588d2
NC
361 const char * const s = PerlEnv_getenv("PERLIO_DEBUG");
362 if (s && *s)
363 PL_perlio_debug_fd
364 = PerlLIO_open3(s, O_WRONLY | O_CREAT | O_APPEND, 0666);
365 else
64320867 366 PL_perlio_debug_fd = PerlLIO_dup(2); /* stderr */
582588d2 367 } else {
64320867
TC
368 /* tainting or set*id, so ignore the environment and send the
369 debug output to stderr, like other -D switches. */
370 PL_perlio_debug_fd = PerlLIO_dup(2); /* stderr */
582588d2 371 }
14a5cf38 372 }
27da23d5 373 if (PL_perlio_debug_fd > 0) {
70ace5da 374#ifdef USE_ITHREADS
dcda55fc 375 const char * const s = CopFILE(PL_curcop);
70ace5da
NIS
376 /* Use fixed buffer as sv_catpvf etc. needs SVs */
377 char buffer[1024];
1208b3dd
JH
378 const STRLEN len1 = my_snprintf(buffer, sizeof(buffer), "%.40s:%" IVdf " ", s ? s : "(none)", (IV) CopLINE(PL_curcop));
379 const STRLEN len2 = my_vsnprintf(buffer + len1, sizeof(buffer) - len1, fmt, ap);
b469f1e0 380 PERL_UNUSED_RESULT(PerlLIO_write(PL_perlio_debug_fd, buffer, len1 + len2));
70ace5da 381#else
dcda55fc
AL
382 const char *s = CopFILE(PL_curcop);
383 STRLEN len;
550e2ce0
NC
384 SV * const sv = Perl_newSVpvf(aTHX_ "%s:%" IVdf " ", s ? s : "(none)",
385 (IV) CopLINE(PL_curcop));
14a5cf38
JH
386 Perl_sv_vcatpvf(aTHX_ sv, fmt, &ap);
387
b83604b4 388 s = SvPV_const(sv, len);
b469f1e0 389 PERL_UNUSED_RESULT(PerlLIO_write(PL_perlio_debug_fd, s, len));
14a5cf38 390 SvREFCNT_dec(sv);
70ace5da 391#endif
14a5cf38
JH
392 }
393 va_end(ap);
6f9d8c32
NIS
394}
395
9e353e3b
NIS
396/*--------------------------------------------------------------------------------------*/
397
14a5cf38 398/*
71200d45 399 * Inner level routines
14a5cf38 400 */
9e353e3b 401
16865ff7
DM
402/* check that the head field of each layer points back to the head */
403
404#ifdef DEBUGGING
405# define VERIFY_HEAD(f) PerlIO_verify_head(aTHX_ f)
406static void
407PerlIO_verify_head(pTHX_ PerlIO *f)
408{
409 PerlIOl *head, *p;
410 int seen = 0;
dd791c72
JH
411#ifndef PERL_IMPLICIT_SYS
412 PERL_UNUSED_CONTEXT;
413#endif
16865ff7
DM
414 if (!PerlIOValid(f))
415 return;
416 p = head = PerlIOBase(f)->head;
417 assert(p);
418 do {
419 assert(p->head == head);
420 if (p == (PerlIOl*)f)
421 seen = 1;
422 p = p->next;
423 } while (p);
424 assert(seen);
425}
426#else
427# define VERIFY_HEAD(f)
428#endif
429
430
14a5cf38 431/*
71200d45 432 * Table of pointers to the PerlIO structs (malloc'ed)
14a5cf38 433 */
05d1247b 434#define PERLIO_TABLE_SIZE 64
6f9d8c32 435
8995e67d
DM
436static void
437PerlIO_init_table(pTHX)
438{
439 if (PL_perlio)
440 return;
441 Newxz(PL_perlio, PERLIO_TABLE_SIZE, PerlIOl);
442}
443
444
445
760ac839 446PerlIO *
5f1a76d0 447PerlIO_allocate(pTHX)
6f9d8c32 448{
14a5cf38 449 /*
71200d45 450 * Find a free slot in the table, allocating new table as necessary
14a5cf38 451 */
303f2dc3
DM
452 PerlIOl **last;
453 PerlIOl *f;
a1ea730d 454 last = &PL_perlio;
14a5cf38
JH
455 while ((f = *last)) {
456 int i;
303f2dc3 457 last = (PerlIOl **) (f);
14a5cf38 458 for (i = 1; i < PERLIO_TABLE_SIZE; i++) {
303f2dc3 459 if (!((++f)->next)) {
4e0ef342 460 goto good_exit;
14a5cf38
JH
461 }
462 }
463 }
303f2dc3 464 Newxz(f,PERLIO_TABLE_SIZE,PerlIOl);
14a5cf38
JH
465 if (!f) {
466 return NULL;
467 }
303f2dc3 468 *last = (PerlIOl*) f++;
4e0ef342
DD
469
470 good_exit:
abf9167d 471 f->flags = 0; /* lockcnt */
303f2dc3 472 f->tab = NULL;
16865ff7 473 f->head = f;
303f2dc3 474 return (PerlIO*) f;
05d1247b
NIS
475}
476
a1ea730d
NIS
477#undef PerlIO_fdupopen
478PerlIO *
ecdeb87c 479PerlIO_fdupopen(pTHX_ PerlIO *f, CLONE_PARAMS *param, int flags)
a1ea730d 480{
04892f78 481 if (PerlIOValid(f)) {
de009b76 482 const PerlIO_funcs * const tab = PerlIOBase(f)->tab;
e17bc05a 483 DEBUG_i( PerlIO_debug("fdupopen f=%p param=%p\n",(void*)f,(void*)param) );
210e727c
JH
484 if (tab && tab->Dup)
485 return (*tab->Dup)(aTHX_ PerlIO_allocate(aTHX), f, param, flags);
37725cdc
NIS
486 else {
487 return PerlIOBase_dup(aTHX_ PerlIO_allocate(aTHX), f, param, flags);
488 }
a1ea730d 489 }
210e727c
JH
490 else
491 SETERRNO(EBADF, SS_IVCHAN);
492
493 return NULL;
a1ea730d
NIS
494}
495
496void
303f2dc3 497PerlIO_cleantable(pTHX_ PerlIOl **tablep)
05d1247b 498{
303f2dc3 499 PerlIOl * const table = *tablep;
14a5cf38
JH
500 if (table) {
501 int i;
303f2dc3 502 PerlIO_cleantable(aTHX_(PerlIOl **) & (table[0]));
14a5cf38 503 for (i = PERLIO_TABLE_SIZE - 1; i > 0; i--) {
303f2dc3
DM
504 PerlIOl * const f = table + i;
505 if (f->next) {
506 PerlIO_close(&(f->next));
14a5cf38
JH
507 }
508 }
3a1ee7e8 509 Safefree(table);
14a5cf38 510 *tablep = NULL;
05d1247b 511 }
05d1247b
NIS
512}
513
fcf2db38
NIS
514
515PerlIO_list_t *
3a1ee7e8 516PerlIO_list_alloc(pTHX)
fcf2db38 517{
14a5cf38 518 PerlIO_list_t *list;
96a5add6 519 PERL_UNUSED_CONTEXT;
a02a5408 520 Newxz(list, 1, PerlIO_list_t);
14a5cf38
JH
521 list->refcnt = 1;
522 return list;
fcf2db38
NIS
523}
524
525void
3a1ee7e8 526PerlIO_list_free(pTHX_ PerlIO_list_t *list)
fcf2db38 527{
14a5cf38
JH
528 if (list) {
529 if (--list->refcnt == 0) {
530 if (list->array) {
14a5cf38 531 IV i;
ef8d46e8
VP
532 for (i = 0; i < list->cur; i++)
533 SvREFCNT_dec(list->array[i].arg);
14a5cf38
JH
534 Safefree(list->array);
535 }
536 Safefree(list);
537 }
538 }
fcf2db38
NIS
539}
540
541void
3a1ee7e8 542PerlIO_list_push(pTHX_ PerlIO_list_t *list, PerlIO_funcs *funcs, SV *arg)
14a5cf38 543{
334e202e 544 PerlIO_pair_t *p;
b37c2d43
AL
545 PERL_UNUSED_CONTEXT;
546
14a5cf38 547 if (list->cur >= list->len) {
00195859 548 const IV new_len = list->len + 8;
14a5cf38 549 if (list->array)
00195859 550 Renew(list->array, new_len, PerlIO_pair_t);
14a5cf38 551 else
00195859
HS
552 Newx(list->array, new_len, PerlIO_pair_t);
553 list->len = new_len;
14a5cf38
JH
554 }
555 p = &(list->array[list->cur++]);
556 p->funcs = funcs;
557 if ((p->arg = arg)) {
f84c484e 558 SvREFCNT_inc_simple_void_NN(arg);
14a5cf38 559 }
fcf2db38
NIS
560}
561
3a1ee7e8
NIS
562PerlIO_list_t *
563PerlIO_clone_list(pTHX_ PerlIO_list_t *proto, CLONE_PARAMS *param)
564{
b37c2d43 565 PerlIO_list_t *list = NULL;
694c95cf
JH
566 if (proto) {
567 int i;
568 list = PerlIO_list_alloc(aTHX);
569 for (i=0; i < proto->cur; i++) {
a951d81d 570 SV *arg = proto->array[i].arg;
24d147a6 571#ifdef USE_ITHREADS
a951d81d
BL
572 if (arg && param)
573 arg = sv_dup(arg, param);
574#else
575 PERL_UNUSED_ARG(param);
576#endif
694c95cf
JH
577 PerlIO_list_push(aTHX_ list, proto->array[i].funcs, arg);
578 }
3a1ee7e8
NIS
579 }
580 return list;
581}
4a4a6116 582
05d1247b 583void
3a1ee7e8 584PerlIO_clone(pTHX_ PerlInterpreter *proto, CLONE_PARAMS *param)
9a6404c5 585{
3aaf42a7 586#ifdef USE_ITHREADS
303f2dc3
DM
587 PerlIOl **table = &proto->Iperlio;
588 PerlIOl *f;
3a1ee7e8
NIS
589 PL_perlio = NULL;
590 PL_known_layers = PerlIO_clone_list(aTHX_ proto->Iknown_layers, param);
591 PL_def_layerlist = PerlIO_clone_list(aTHX_ proto->Idef_layerlist, param);
8995e67d 592 PerlIO_init_table(aTHX);
e17bc05a 593 DEBUG_i( PerlIO_debug("Clone %p from %p\n",(void*)aTHX,(void*)proto) );
3a1ee7e8
NIS
594 while ((f = *table)) {
595 int i;
303f2dc3 596 table = (PerlIOl **) (f++);
3a1ee7e8 597 for (i = 1; i < PERLIO_TABLE_SIZE; i++) {
303f2dc3
DM
598 if (f->next) {
599 (void) fp_dup(&(f->next), 0, param);
3a1ee7e8
NIS
600 }
601 f++;
602 }
603 }
1b6737cc 604#else
a25429c6 605 PERL_UNUSED_CONTEXT;
1b6737cc
AL
606 PERL_UNUSED_ARG(proto);
607 PERL_UNUSED_ARG(param);
3aaf42a7 608#endif
9a6404c5
DM
609}
610
611void
13621cfb
NIS
612PerlIO_destruct(pTHX)
613{
303f2dc3
DM
614 PerlIOl **table = &PL_perlio;
615 PerlIOl *f;
694c95cf 616#ifdef USE_ITHREADS
e17bc05a 617 DEBUG_i( PerlIO_debug("Destruct %p\n",(void*)aTHX) );
694c95cf 618#endif
14a5cf38
JH
619 while ((f = *table)) {
620 int i;
303f2dc3 621 table = (PerlIOl **) (f++);
14a5cf38 622 for (i = 1; i < PERLIO_TABLE_SIZE; i++) {
303f2dc3 623 PerlIO *x = &(f->next);
dcda55fc 624 const PerlIOl *l;
14a5cf38 625 while ((l = *x)) {
cc6623a8 626 if (l->tab && l->tab->kind & PERLIO_K_DESTRUCT) {
e17bc05a 627 DEBUG_i( PerlIO_debug("Destruct popping %s\n", l->tab->name) );
14a5cf38
JH
628 PerlIO_flush(x);
629 PerlIO_pop(aTHX_ x);
630 }
631 else {
632 x = PerlIONext(x);
633 }
634 }
635 f++;
636 }
637 }
13621cfb
NIS
638}
639
640void
a999f61b 641PerlIO_pop(pTHX_ PerlIO *f)
760ac839 642{
dcda55fc 643 const PerlIOl *l = *f;
16865ff7 644 VERIFY_HEAD(f);
14a5cf38 645 if (l) {
e17bc05a
TC
646 DEBUG_i( PerlIO_debug("PerlIO_pop f=%p %s\n", (void*)f,
647 l->tab ? l->tab->name : "(Null)") );
cc6623a8 648 if (l->tab && l->tab->Popped) {
14a5cf38
JH
649 /*
650 * If popped returns non-zero do not free its layer structure
651 * it has either done so itself, or it is shared and still in
71200d45 652 * use
14a5cf38 653 */
f62ce20a 654 if ((*l->tab->Popped) (aTHX_ f) != 0)
14a5cf38
JH
655 return;
656 }
abf9167d
DM
657 if (PerlIO_lockcnt(f)) {
658 /* we're in use; defer freeing the structure */
659 PerlIOBase(f)->flags = PERLIO_F_CLEARED;
660 PerlIOBase(f)->tab = NULL;
661 }
662 else {
663 *f = l->next;
664 Safefree(l);
665 }
666
a8c08ecd 667 }
6f9d8c32
NIS
668}
669
39f7a870
JH
670/* Return as an array the stack of layers on a filehandle. Note that
671 * the stack is returned top-first in the array, and there are three
672 * times as many array elements as there are layers in the stack: the
673 * first element of a layer triplet is the name, the second one is the
674 * arguments, and the third one is the flags. */
675
676AV *
677PerlIO_get_layers(pTHX_ PerlIO *f)
678{
dcda55fc 679 AV * const av = newAV();
39f7a870 680
dcda55fc
AL
681 if (PerlIOValid(f)) {
682 PerlIOl *l = PerlIOBase(f);
683
684 while (l) {
92e45a3e
NC
685 /* There is some collusion in the implementation of
686 XS_PerlIO_get_layers - it knows that name and flags are
687 generated as fresh SVs here, and takes advantage of that to
688 "copy" them by taking a reference. If it changes here, it needs
689 to change there too. */
dcda55fc
AL
690 SV * const name = l->tab && l->tab->name ?
691 newSVpv(l->tab->name, 0) : &PL_sv_undef;
692 SV * const arg = l->tab && l->tab->Getarg ?
693 (*l->tab->Getarg)(aTHX_ &l, 0, 0) : &PL_sv_undef;
694 av_push(av, name);
695 av_push(av, arg);
696 av_push(av, newSViv((IV)l->flags));
697 l = l->next;
698 }
699 }
39f7a870 700
dcda55fc 701 return av;
39f7a870
JH
702}
703
9e353e3b 704/*--------------------------------------------------------------------------------------*/
14a5cf38 705/*
71200d45 706 * XS Interface for perl code
14a5cf38 707 */
9e353e3b 708
fcf2db38 709PerlIO_funcs *
2edd7e44 710PerlIO_find_layer(pTHX_ const char *name, STRLEN len, int load)
f3862f8b 711{
20b7effb 712
14a5cf38
JH
713 IV i;
714 if ((SSize_t) len <= 0)
715 len = strlen(name);
3a1ee7e8 716 for (i = 0; i < PL_known_layers->cur; i++) {
46c461b5 717 PerlIO_funcs * const f = PL_known_layers->array[i].funcs;
ba90859e
NC
718 const STRLEN this_len = strlen(f->name);
719 if (this_len == len && memEQ(f->name, name, len)) {
e17bc05a 720 DEBUG_i( PerlIO_debug("%.*s => %p\n", (int) len, name, (void*)f) );
14a5cf38
JH
721 return f;
722 }
723 }
3a1ee7e8
NIS
724 if (load && PL_subname && PL_def_layerlist
725 && PL_def_layerlist->cur >= 2) {
d7a09b41
SR
726 if (PL_in_load_module) {
727 Perl_croak(aTHX_ "Recursive call to Perl_load_module in PerlIO_find_layer");
728 return NULL;
729 } else {
396482e1 730 SV * const pkgsv = newSVpvs("PerlIO");
46c461b5 731 SV * const layer = newSVpvn(name, len);
b96d8cd9 732 CV * const cv = get_cvs("PerlIO::Layer::NoWarnings", 0);
46c461b5 733 ENTER;
4fa7c2bf 734 SAVEBOOL(PL_in_load_module);
c9bca74a 735 if (cv) {
9cfa90c0 736 SAVEGENERICSV(PL_warnhook);
ad64d0ec 737 PL_warnhook = MUTABLE_SV((SvREFCNT_inc_simple_NN(cv)));
c9bca74a 738 }
4fa7c2bf 739 PL_in_load_module = TRUE;
d7a09b41
SR
740 /*
741 * The two SVs are magically freed by load_module
742 */
a0714e2c 743 Perl_load_module(aTHX_ 0, pkgsv, NULL, layer, NULL);
d7a09b41
SR
744 LEAVE;
745 return PerlIO_find_layer(aTHX_ name, len, 0);
746 }
14a5cf38 747 }
e17bc05a 748 DEBUG_i( PerlIO_debug("Cannot find %.*s\n", (int) len, name) );
14a5cf38 749 return NULL;
f3862f8b
NIS
750}
751
2a1bc955 752#ifdef USE_ATTRIBUTES_FOR_PERLIO
b13b2135
NIS
753
754static int
755perlio_mg_set(pTHX_ SV *sv, MAGIC *mg)
756{
14a5cf38 757 if (SvROK(sv)) {
159b6efe 758 IO * const io = GvIOn(MUTABLE_GV(SvRV(sv)));
dcda55fc
AL
759 PerlIO * const ifp = IoIFP(io);
760 PerlIO * const ofp = IoOFP(io);
be2597df
MHM
761 Perl_warn(aTHX_ "set %" SVf " %p %p %p",
762 SVfARG(sv), (void*)io, (void*)ifp, (void*)ofp);
14a5cf38
JH
763 }
764 return 0;
b13b2135
NIS
765}
766
767static int
768perlio_mg_get(pTHX_ SV *sv, MAGIC *mg)
769{
14a5cf38 770 if (SvROK(sv)) {
159b6efe 771 IO * const io = GvIOn(MUTABLE_GV(SvRV(sv)));
dcda55fc
AL
772 PerlIO * const ifp = IoIFP(io);
773 PerlIO * const ofp = IoOFP(io);
be2597df
MHM
774 Perl_warn(aTHX_ "get %" SVf " %p %p %p",
775 SVfARG(sv), (void*)io, (void*)ifp, (void*)ofp);
14a5cf38
JH
776 }
777 return 0;
b13b2135
NIS
778}
779
780static int
781perlio_mg_clear(pTHX_ SV *sv, MAGIC *mg)
782{
be2597df 783 Perl_warn(aTHX_ "clear %" SVf, SVfARG(sv));
14a5cf38 784 return 0;
b13b2135
NIS
785}
786
787static int
788perlio_mg_free(pTHX_ SV *sv, MAGIC *mg)
789{
be2597df 790 Perl_warn(aTHX_ "free %" SVf, SVfARG(sv));
14a5cf38 791 return 0;
b13b2135
NIS
792}
793
794MGVTBL perlio_vtab = {
14a5cf38
JH
795 perlio_mg_get,
796 perlio_mg_set,
22569500 797 NULL, /* len */
14a5cf38
JH
798 perlio_mg_clear,
799 perlio_mg_free
b13b2135
NIS
800};
801
15eb3045 802XS(XS_io_MODIFY_SCALAR_ATTRIBUTES); /* prototype to pass -Wmissing-prototypes */
b13b2135
NIS
803XS(XS_io_MODIFY_SCALAR_ATTRIBUTES)
804{
14a5cf38 805 dXSARGS;
dcda55fc
AL
806 SV * const sv = SvRV(ST(1));
807 AV * const av = newAV();
14a5cf38
JH
808 MAGIC *mg;
809 int count = 0;
810 int i;
ad64d0ec 811 sv_magic(sv, MUTABLE_SV(av), PERL_MAGIC_ext, NULL, 0);
14a5cf38
JH
812 SvRMAGICAL_off(sv);
813 mg = mg_find(sv, PERL_MAGIC_ext);
814 mg->mg_virtual = &perlio_vtab;
815 mg_magical(sv);
be2597df 816 Perl_warn(aTHX_ "attrib %" SVf, SVfARG(sv));
14a5cf38
JH
817 for (i = 2; i < items; i++) {
818 STRLEN len;
dcda55fc
AL
819 const char * const name = SvPV_const(ST(i), len);
820 SV * const layer = PerlIO_find_layer(aTHX_ name, len, 1);
14a5cf38 821 if (layer) {
b37c2d43 822 av_push(av, SvREFCNT_inc_simple_NN(layer));
14a5cf38
JH
823 }
824 else {
825 ST(count) = ST(i);
826 count++;
827 }
828 }
829 SvREFCNT_dec(av);
830 XSRETURN(count);
831}
832
b8fda935 833#endif /* USE_ATTRIBUTES_FOR_PERLIO */
2a1bc955 834
e3f3bf95
NIS
835SV *
836PerlIO_tab_sv(pTHX_ PerlIO_funcs *tab)
f3862f8b 837{
da51bb9b 838 HV * const stash = gv_stashpvs("PerlIO::Layer", GV_ADD);
46c461b5 839 SV * const sv = sv_bless(newRV_noinc(newSViv(PTR2IV(tab))), stash);
14a5cf38 840 return sv;
e3f3bf95
NIS
841}
842
15eb3045 843XS(XS_PerlIO__Layer__NoWarnings); /* prototype to pass -Wmissing-prototypes */
5ca1d77f 844XS(XS_PerlIO__Layer__NoWarnings)
c9bca74a 845{
486ec47a 846 /* This is used as a %SIG{__WARN__} handler to suppress warnings
c9bca74a
NIS
847 during loading of layers.
848 */
849 dXSARGS;
5347602a 850 PERL_UNUSED_VAR(items);
e17bc05a
TC
851 DEBUG_i(
852 if (items)
853 PerlIO_debug("warning:%s\n",SvPV_nolen_const(ST(0))) );
c9bca74a
NIS
854 XSRETURN(0);
855}
856
15eb3045 857XS(XS_PerlIO__Layer__find); /* prototype to pass -Wmissing-prototypes */
5ca1d77f 858XS(XS_PerlIO__Layer__find)
0c4f7ff0 859{
14a5cf38
JH
860 dXSARGS;
861 if (items < 2)
862 Perl_croak(aTHX_ "Usage class->find(name[,load])");
863 else {
de009b76 864 STRLEN len;
46c461b5 865 const char * const name = SvPV_const(ST(1), len);
f814d560 866 const bool load = (items > 2) ? SvTRUE_NN(ST(2)) : 0;
46c461b5 867 PerlIO_funcs * const layer = PerlIO_find_layer(aTHX_ name, len, load);
14a5cf38
JH
868 ST(0) =
869 (layer) ? sv_2mortal(PerlIO_tab_sv(aTHX_ layer)) :
870 &PL_sv_undef;
871 XSRETURN(1);
872 }
0c4f7ff0
NIS
873}
874
e3f3bf95
NIS
875void
876PerlIO_define_layer(pTHX_ PerlIO_funcs *tab)
877{
3a1ee7e8
NIS
878 if (!PL_known_layers)
879 PL_known_layers = PerlIO_list_alloc(aTHX);
a0714e2c 880 PerlIO_list_push(aTHX_ PL_known_layers, tab, NULL);
e17bc05a 881 DEBUG_i( PerlIO_debug("define %s %p\n", tab->name, (void*)tab) );
f3862f8b
NIS
882}
883
1141d9f8 884int
fcf2db38 885PerlIO_parse_layers(pTHX_ PerlIO_list_t *av, const char *names)
1141d9f8 886{
14a5cf38
JH
887 if (names) {
888 const char *s = names;
889 while (*s) {
890 while (isSPACE(*s) || *s == ':')
891 s++;
892 if (*s) {
893 STRLEN llen = 0;
894 const char *e = s;
bd61b366 895 const char *as = NULL;
14a5cf38
JH
896 STRLEN alen = 0;
897 if (!isIDFIRST(*s)) {
898 /*
899 * Message is consistent with how attribute lists are
900 * passed. Even though this means "foo : : bar" is
71200d45 901 * seen as an invalid separator character.
14a5cf38 902 */
de009b76 903 const char q = ((*s == '\'') ? '"' : '\'');
a2a5de95
NC
904 Perl_ck_warner(aTHX_ packWARN(WARN_LAYER),
905 "Invalid separator character %c%c%c in PerlIO layer specification %s",
906 q, *s, q, s);
93189314 907 SETERRNO(EINVAL, LIB_INVARG);
14a5cf38
JH
908 return -1;
909 }
910 do {
911 e++;
0eb30aeb 912 } while (isWORDCHAR(*e));
14a5cf38
JH
913 llen = e - s;
914 if (*e == '(') {
915 int nesting = 1;
916 as = ++e;
917 while (nesting) {
918 switch (*e++) {
919 case ')':
920 if (--nesting == 0)
921 alen = (e - 1) - as;
922 break;
923 case '(':
924 ++nesting;
925 break;
926 case '\\':
927 /*
928 * It's a nul terminated string, not allowed
929 * to \ the terminating null. Anything other
71200d45 930 * character is passed over.
14a5cf38
JH
931 */
932 if (*e++) {
933 break;
934 }
2165bd23 935 /* Fall through */
14a5cf38
JH
936 case '\0':
937 e--;
a2a5de95
NC
938 Perl_ck_warner(aTHX_ packWARN(WARN_LAYER),
939 "Argument list not closed for PerlIO layer \"%.*s\"",
940 (int) (e - s), s);
14a5cf38
JH
941 return -1;
942 default:
943 /*
71200d45 944 * boring.
14a5cf38
JH
945 */
946 break;
947 }
948 }
949 }
950 if (e > s) {
46c461b5 951 PerlIO_funcs * const layer =
14a5cf38
JH
952 PerlIO_find_layer(aTHX_ s, llen, 1);
953 if (layer) {
a951d81d
BL
954 SV *arg = NULL;
955 if (as)
956 arg = newSVpvn(as, alen);
3a1ee7e8 957 PerlIO_list_push(aTHX_ av, layer,
a951d81d 958 (arg) ? arg : &PL_sv_undef);
ef8d46e8 959 SvREFCNT_dec(arg);
14a5cf38
JH
960 }
961 else {
a2a5de95
NC
962 Perl_ck_warner(aTHX_ packWARN(WARN_LAYER), "Unknown PerlIO layer \"%.*s\"",
963 (int) llen, s);
14a5cf38
JH
964 return -1;
965 }
966 }
967 s = e;
968 }
969 }
970 }
971 return 0;
1141d9f8
NIS
972}
973
dfebf958 974void
fcf2db38 975PerlIO_default_buffer(pTHX_ PerlIO_list_t *av)
dfebf958 976{
27da23d5 977 PERLIO_FUNCS_DECL(*tab) = &PerlIO_perlio;
35990314 978#ifdef PERLIO_USING_CRLF
6ce75a77 979 tab = &PerlIO_crlf;
846be114 980#else
6ce75a77 981 if (PerlIO_stdio.Set_ptrcnt)
22569500 982 tab = &PerlIO_stdio;
846be114 983#endif
e17bc05a 984 DEBUG_i( PerlIO_debug("Pushing %s\n", tab->name) );
0987d6f3 985 PerlIO_list_push(aTHX_ av, (PerlIO_funcs *)tab, &PL_sv_undef);
dfebf958
NIS
986}
987
e3f3bf95 988SV *
14a5cf38 989PerlIO_arg_fetch(PerlIO_list_t *av, IV n)
e3f3bf95 990{
14a5cf38 991 return av->array[n].arg;
e3f3bf95
NIS
992}
993
f3862f8b 994PerlIO_funcs *
14a5cf38 995PerlIO_layer_fetch(pTHX_ PerlIO_list_t *av, IV n, PerlIO_funcs *def)
f3862f8b 996{
14a5cf38 997 if (n >= 0 && n < av->cur) {
e17bc05a
TC
998 DEBUG_i( PerlIO_debug("Layer %" IVdf " is %s\n", n,
999 av->array[n].funcs->name) );
14a5cf38
JH
1000 return av->array[n].funcs;
1001 }
1002 if (!def)
1003 Perl_croak(aTHX_ "panic: PerlIO layer array corrupt");
1004 return def;
e3f3bf95
NIS
1005}
1006
4ec2216f
NIS
1007IV
1008PerlIOPop_pushed(pTHX_ PerlIO *f, const char *mode, SV *arg, PerlIO_funcs *tab)
1009{
8772537c
AL
1010 PERL_UNUSED_ARG(mode);
1011 PERL_UNUSED_ARG(arg);
1012 PERL_UNUSED_ARG(tab);
4ec2216f
NIS
1013 if (PerlIOValid(f)) {
1014 PerlIO_flush(f);
1015 PerlIO_pop(aTHX_ f);
1016 return 0;
1017 }
1018 return -1;
1019}
1020
27da23d5 1021PERLIO_FUNCS_DECL(PerlIO_remove) = {
4ec2216f
NIS
1022 sizeof(PerlIO_funcs),
1023 "pop",
1024 0,
1025 PERLIO_K_DUMMY | PERLIO_K_UTF8,
1026 PerlIOPop_pushed,
1027 NULL,
c0888ace 1028 PerlIOBase_open,
4ec2216f
NIS
1029 NULL,
1030 NULL,
1031 NULL,
1032 NULL,
1033 NULL,
1034 NULL,
1035 NULL,
1036 NULL,
de009b76
AL
1037 NULL,
1038 NULL,
4ec2216f
NIS
1039 NULL, /* flush */
1040 NULL, /* fill */
1041 NULL,
1042 NULL,
1043 NULL,
1044 NULL,
1045 NULL, /* get_base */
1046 NULL, /* get_bufsiz */
1047 NULL, /* get_ptr */
1048 NULL, /* get_cnt */
1049 NULL, /* set_ptrcnt */
1050};
1051
fcf2db38 1052PerlIO_list_t *
e3f3bf95
NIS
1053PerlIO_default_layers(pTHX)
1054{
3a1ee7e8 1055 if (!PL_def_layerlist) {
284167a5 1056 const char * const s = TAINTING_get ? NULL : PerlEnv_getenv("PERLIO");
27da23d5 1057 PERLIO_FUNCS_DECL(*osLayer) = &PerlIO_unix;
3a1ee7e8 1058 PL_def_layerlist = PerlIO_list_alloc(aTHX);
27da23d5 1059 PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_unix));
979e2c82 1060#if defined(WIN32)
27da23d5 1061 PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_win32));
2f8118af 1062#if 0
14a5cf38 1063 osLayer = &PerlIO_win32;
0c4128ad 1064#endif
2f8118af 1065#endif
27da23d5
JH
1066 PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_raw));
1067 PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_perlio));
1068 PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_stdio));
1069 PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_crlf));
27da23d5
JH
1070 PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_utf8));
1071 PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_remove));
1072 PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_byte));
0987d6f3
TC
1073 PerlIO_list_push(aTHX_ PL_def_layerlist, (PerlIO_funcs *)osLayer,
1074 &PL_sv_undef);
14a5cf38 1075 if (s) {
3a1ee7e8 1076 PerlIO_parse_layers(aTHX_ PL_def_layerlist, s);
14a5cf38
JH
1077 }
1078 else {
3a1ee7e8 1079 PerlIO_default_buffer(aTHX_ PL_def_layerlist);
14a5cf38 1080 }
1141d9f8 1081 }
3a1ee7e8
NIS
1082 if (PL_def_layerlist->cur < 2) {
1083 PerlIO_default_buffer(aTHX_ PL_def_layerlist);
f3862f8b 1084 }
3a1ee7e8 1085 return PL_def_layerlist;
e3f3bf95
NIS
1086}
1087
0c4f7ff0
NIS
1088void
1089Perl_boot_core_PerlIO(pTHX)
1090{
1091#ifdef USE_ATTRIBUTES_FOR_PERLIO
14a5cf38
JH
1092 newXS("io::MODIFY_SCALAR_ATTRIBUTES", XS_io_MODIFY_SCALAR_ATTRIBUTES,
1093 __FILE__);
0c4f7ff0 1094#endif
14a5cf38 1095 newXS("PerlIO::Layer::find", XS_PerlIO__Layer__find, __FILE__);
c9bca74a 1096 newXS("PerlIO::Layer::NoWarnings", XS_PerlIO__Layer__NoWarnings, __FILE__);
0c4f7ff0 1097}
e3f3bf95
NIS
1098
1099PerlIO_funcs *
1100PerlIO_default_layer(pTHX_ I32 n)
1101{
46c461b5 1102 PerlIO_list_t * const av = PerlIO_default_layers(aTHX);
14a5cf38
JH
1103 if (n < 0)
1104 n += av->cur;
27da23d5 1105 return PerlIO_layer_fetch(aTHX_ av, n, PERLIO_FUNCS_CAST(&PerlIO_stdio));
f3862f8b
NIS
1106}
1107
a999f61b
NIS
1108#define PerlIO_default_top() PerlIO_default_layer(aTHX_ -1)
1109#define PerlIO_default_btm() PerlIO_default_layer(aTHX_ 0)
60382766
NIS
1110
1111void
1141d9f8 1112PerlIO_stdstreams(pTHX)
60382766 1113{
a1ea730d 1114 if (!PL_perlio) {
8995e67d 1115 PerlIO_init_table(aTHX);
14a5cf38
JH
1116 PerlIO_fdopen(0, "Ir" PERLIO_STDTEXT);
1117 PerlIO_fdopen(1, "Iw" PERLIO_STDTEXT);
1118 PerlIO_fdopen(2, "Iw" PERLIO_STDTEXT);
1119 }
60382766
NIS
1120}
1121
1122PerlIO *
27da23d5 1123PerlIO_push(pTHX_ PerlIO *f, PERLIO_FUNCS_DECL(*tab), const char *mode, SV *arg)
14a5cf38 1124{
16865ff7 1125 VERIFY_HEAD(f);
2dc2558e 1126 if (tab->fsize != sizeof(PerlIO_funcs)) {
0dc17498 1127 Perl_croak( aTHX_
147e3846 1128 "%s (%" UVuf ") does not match %s (%" UVuf ")",
5cf96513
RB
1129 "PerlIO layer function table size", (UV)tab->fsize,
1130 "size expected by this perl", (UV)sizeof(PerlIO_funcs) );
2dc2558e
NIS
1131 }
1132 if (tab->size) {
b464bac0 1133 PerlIOl *l;
2dc2558e 1134 if (tab->size < sizeof(PerlIOl)) {
0dc17498 1135 Perl_croak( aTHX_
147e3846 1136 "%s (%" UVuf ") smaller than %s (%" UVuf ")",
5cf96513
RB
1137 "PerlIO layer instance size", (UV)tab->size,
1138 "size expected by this perl", (UV)sizeof(PerlIOl) );
2dc2558e
NIS
1139 }
1140 /* Real layer with a data area */
002e75cf
JH
1141 if (f) {
1142 char *temp;
1143 Newxz(temp, tab->size, char);
1144 l = (PerlIOl*)temp;
1145 if (l) {
1146 l->next = *f;
1147 l->tab = (PerlIO_funcs*) tab;
16865ff7 1148 l->head = ((PerlIOl*)f)->head;
002e75cf 1149 *f = l;
e17bc05a
TC
1150 DEBUG_i( PerlIO_debug("PerlIO_push f=%p %s %s %p\n",
1151 (void*)f, tab->name,
1152 (mode) ? mode : "(Null)", (void*)arg) );
002e75cf
JH
1153 if (*l->tab->Pushed &&
1154 (*l->tab->Pushed)
1155 (aTHX_ f, mode, arg, (PerlIO_funcs*) tab) != 0) {
1156 PerlIO_pop(aTHX_ f);
1157 return NULL;
1158 }
2dc2558e 1159 }
002e75cf
JH
1160 else
1161 return NULL;
2dc2558e
NIS
1162 }
1163 }
1164 else if (f) {
1165 /* Pseudo-layer where push does its own stack adjust */
e17bc05a
TC
1166 DEBUG_i( PerlIO_debug("PerlIO_push f=%p %s %s %p\n", (void*)f, tab->name,
1167 (mode) ? mode : "(Null)", (void*)arg) );
210e727c 1168 if (tab->Pushed &&
27da23d5 1169 (*tab->Pushed) (aTHX_ f, mode, arg, (PerlIO_funcs*) tab) != 0) {
210e727c 1170 return NULL;
14a5cf38
JH
1171 }
1172 }
1173 return f;
60382766
NIS
1174}
1175
81fe74fb
LT
1176PerlIO *
1177PerlIOBase_open(pTHX_ PerlIO_funcs *self, PerlIO_list_t *layers,
1178 IV n, const char *mode, int fd, int imode, int perm,
1179 PerlIO *old, int narg, SV **args)
1180{
1181 PerlIO_funcs * const tab = PerlIO_layer_fetch(aTHX_ layers, n - 1, PerlIO_default_layer(aTHX_ 0));
1182 if (tab && tab->Open) {
1183 PerlIO* ret = (*tab->Open)(aTHX_ tab, layers, n - 1, mode, fd, imode, perm, old, narg, args);
6d5bdea2 1184 if (ret && PerlIO_push(aTHX_ ret, self, mode, PerlIOArg) == NULL) {
81fe74fb
LT
1185 PerlIO_close(ret);
1186 return NULL;
1187 }
1188 return ret;
1189 }
1190 SETERRNO(EINVAL, LIB_INVARG);
1191 return NULL;
1192}
1193
dfebf958 1194IV
86e05cf2
NIS
1195PerlIOBase_binmode(pTHX_ PerlIO *f)
1196{
1197 if (PerlIOValid(f)) {
1198 /* Is layer suitable for raw stream ? */
cc6623a8 1199 if (PerlIOBase(f)->tab && PerlIOBase(f)->tab->kind & PERLIO_K_RAW) {
86e05cf2
NIS
1200 /* Yes - turn off UTF-8-ness, to undo UTF-8 locale effects */
1201 PerlIOBase(f)->flags &= ~PERLIO_F_UTF8;
1202 }
1203 else {
1204 /* Not suitable - pop it */
1205 PerlIO_pop(aTHX_ f);
1206 }
1207 return 0;
1208 }
1209 return -1;
1210}
1211
1212IV
2dc2558e 1213PerlIORaw_pushed(pTHX_ PerlIO *f, const char *mode, SV *arg, PerlIO_funcs *tab)
dfebf958 1214{
8772537c
AL
1215 PERL_UNUSED_ARG(mode);
1216 PERL_UNUSED_ARG(arg);
1217 PERL_UNUSED_ARG(tab);
86e05cf2 1218
04892f78 1219 if (PerlIOValid(f)) {
86e05cf2 1220 PerlIO *t;
de009b76 1221 const PerlIOl *l;
14a5cf38 1222 PerlIO_flush(f);
86e05cf2
NIS
1223 /*
1224 * Strip all layers that are not suitable for a raw stream
1225 */
1226 t = f;
1227 while (t && (l = *t)) {
cc6623a8 1228 if (l->tab && l->tab->Binmode) {
86e05cf2 1229 /* Has a handler - normal case */
9d97e8b8 1230 if ((*l->tab->Binmode)(aTHX_ t) == 0) {
86e05cf2
NIS
1231 if (*t == l) {
1232 /* Layer still there - move down a layer */
1233 t = PerlIONext(t);
1234 }
1235 }
1236 else {
1237 return -1;
1238 }
14a5cf38
JH
1239 }
1240 else {
86e05cf2
NIS
1241 /* No handler - pop it */
1242 PerlIO_pop(aTHX_ t);
14a5cf38
JH
1243 }
1244 }
86e05cf2 1245 if (PerlIOValid(f)) {
e17bc05a
TC
1246 DEBUG_i( PerlIO_debug(":raw f=%p :%s\n", (void*)f,
1247 PerlIOBase(f)->tab ? PerlIOBase(f)->tab->name : "(Null)") );
86e05cf2
NIS
1248 return 0;
1249 }
14a5cf38
JH
1250 }
1251 return -1;
dfebf958
NIS
1252}
1253
ac27b0f5 1254int
14a5cf38 1255PerlIO_apply_layera(pTHX_ PerlIO *f, const char *mode,
d9dac8cd 1256 PerlIO_list_t *layers, IV n, IV max)
14a5cf38 1257{
14a5cf38
JH
1258 int code = 0;
1259 while (n < max) {
8772537c 1260 PerlIO_funcs * const tab = PerlIO_layer_fetch(aTHX_ layers, n, NULL);
14a5cf38
JH
1261 if (tab) {
1262 if (!PerlIO_push(aTHX_ f, tab, mode, PerlIOArg)) {
1263 code = -1;
1264 break;
1265 }
1266 }
1267 n++;
1268 }
1269 return code;
e3f3bf95
NIS
1270}
1271
1272int
ac27b0f5
NIS
1273PerlIO_apply_layers(pTHX_ PerlIO *f, const char *mode, const char *names)
1274{
14a5cf38 1275 int code = 0;
da0fccaa
DG
1276 ENTER;
1277 save_scalar(PL_errgv);
53f1b6d2 1278 if (f && names) {
8772537c 1279 PerlIO_list_t * const layers = PerlIO_list_alloc(aTHX);
14a5cf38
JH
1280 code = PerlIO_parse_layers(aTHX_ layers, names);
1281 if (code == 0) {
d9dac8cd 1282 code = PerlIO_apply_layera(aTHX_ f, mode, layers, 0, layers->cur);
14a5cf38 1283 }
3a1ee7e8 1284 PerlIO_list_free(aTHX_ layers);
ac27b0f5 1285 }
da0fccaa 1286 LEAVE;
14a5cf38 1287 return code;
ac27b0f5
NIS
1288}
1289
f3862f8b 1290
60382766 1291/*--------------------------------------------------------------------------------------*/
14a5cf38 1292/*
71200d45 1293 * Given the abstraction above the public API functions
14a5cf38 1294 */
60382766
NIS
1295
1296int
f5b9d040 1297PerlIO_binmode(pTHX_ PerlIO *f, int iotype, int mode, const char *names)
76ced9ad 1298{
5347602a
DM
1299 PERL_UNUSED_ARG(iotype);
1300 PERL_UNUSED_ARG(mode);
1301
e17bc05a
TC
1302 DEBUG_i(
1303 PerlIO_debug("PerlIO_binmode f=%p %s %c %x %s\n", (void*)f,
1304 (PerlIOBase(f) && PerlIOBase(f)->tab) ?
1305 PerlIOBase(f)->tab->name : "(Null)",
1306 iotype, mode, (names) ? names : "(Null)") );
68b5363f 1307
03c0554d
NIS
1308 if (names) {
1309 /* Do not flush etc. if (e.g.) switching encodings.
1310 if a pushed layer knows it needs to flush lower layers
1311 (for example :unix which is never going to call them)
1312 it can do the flush when it is pushed.
1313 */
8298454c 1314 return cBOOL(PerlIO_apply_layers(aTHX_ f, NULL, names) == 0);
03c0554d
NIS
1315 }
1316 else {
86e05cf2 1317 /* Fake 5.6 legacy of using this call to turn ON O_TEXT */
35990314 1318#ifdef PERLIO_USING_CRLF
03c0554d
NIS
1319 /* Legacy binmode only has meaning if O_TEXT has a value distinct from
1320 O_BINARY so we can look for it in mode.
1321 */
1322 if (!(mode & O_BINARY)) {
1323 /* Text mode */
86e05cf2
NIS
1324 /* FIXME?: Looking down the layer stack seems wrong,
1325 but is a way of reaching past (say) an encoding layer
1326 to flip CRLF-ness of the layer(s) below
1327 */
03c0554d
NIS
1328 while (*f) {
1329 /* Perhaps we should turn on bottom-most aware layer
1330 e.g. Ilya's idea that UNIX TTY could serve
1331 */
cc6623a8
DM
1332 if (PerlIOBase(f)->tab &&
1333 PerlIOBase(f)->tab->kind & PERLIO_K_CANCRLF)
1334 {
03c0554d
NIS
1335 if (!(PerlIOBase(f)->flags & PERLIO_F_CRLF)) {
1336 /* Not in text mode - flush any pending stuff and flip it */
1337 PerlIO_flush(f);
1338 PerlIOBase(f)->flags |= PERLIO_F_CRLF;
1339 }
1340 /* Only need to turn it on in one layer so we are done */
1341 return TRUE;
ed53a2bb 1342 }
03c0554d 1343 f = PerlIONext(f);
14a5cf38 1344 }
03c0554d
NIS
1345 /* Not finding a CRLF aware layer presumably means we are binary
1346 which is not what was requested - so we failed
1347 We _could_ push :crlf layer but so could caller
1348 */
1349 return FALSE;
14a5cf38 1350 }
6ce75a77 1351#endif
86e05cf2
NIS
1352 /* Legacy binmode is now _defined_ as being equivalent to pushing :raw
1353 So code that used to be here is now in PerlIORaw_pushed().
03c0554d 1354 */
8298454c 1355 return cBOOL(PerlIO_push(aTHX_ f, PERLIO_FUNCS_CAST(&PerlIO_raw), NULL, NULL));
14a5cf38 1356 }
f5b9d040
NIS
1357}
1358
f5b9d040 1359int
e87a358a 1360PerlIO__close(pTHX_ PerlIO *f)
f5b9d040 1361{
37725cdc 1362 if (PerlIOValid(f)) {
46c461b5 1363 PerlIO_funcs * const tab = PerlIOBase(f)->tab;
37725cdc
NIS
1364 if (tab && tab->Close)
1365 return (*tab->Close)(aTHX_ f);
1366 else
1367 return PerlIOBase_close(aTHX_ f);
1368 }
14a5cf38 1369 else {
93189314 1370 SETERRNO(EBADF, SS_IVCHAN);
14a5cf38
JH
1371 return -1;
1372 }
76ced9ad
NIS
1373}
1374
b931b1d9 1375int
e87a358a 1376Perl_PerlIO_close(pTHX_ PerlIO *f)
b931b1d9 1377{
de009b76 1378 const int code = PerlIO__close(aTHX_ f);
37725cdc
NIS
1379 while (PerlIOValid(f)) {
1380 PerlIO_pop(aTHX_ f);
abf9167d
DM
1381 if (PerlIO_lockcnt(f))
1382 /* we're in use; the 'pop' deferred freeing the structure */
1383 f = PerlIONext(f);
f6c77cf1 1384 }
14a5cf38 1385 return code;
b931b1d9
NIS
1386}
1387
b931b1d9 1388int
e87a358a 1389Perl_PerlIO_fileno(pTHX_ PerlIO *f)
b931b1d9 1390{
20b7effb 1391 Perl_PerlIO_or_Base(f, Fileno, fileno, -1, (aTHX_ f));
b931b1d9
NIS
1392}
1393
1141d9f8 1394
fcf2db38 1395static PerlIO_funcs *
2edd7e44
NIS
1396PerlIO_layer_from_ref(pTHX_ SV *sv)
1397{
14a5cf38 1398 /*
71200d45 1399 * For any scalar type load the handler which is bundled with perl
14a5cf38 1400 */
526fd1b4 1401 if (SvTYPE(sv) < SVt_PVAV && (!isGV_with_GP(sv) || SvFAKE(sv))) {
75208dda
RGS
1402 PerlIO_funcs *f = PerlIO_find_layer(aTHX_ STR_WITH_LEN("scalar"), 1);
1403 /* This isn't supposed to happen, since PerlIO::scalar is core,
1404 * but could happen anyway in smaller installs or with PAR */
a2a5de95 1405 if (!f)
dcbac5bb 1406 /* diag_listed_as: Unknown PerlIO layer "%s" */
a2a5de95 1407 Perl_ck_warner(aTHX_ packWARN(WARN_LAYER), "Unknown PerlIO layer \"scalar\"");
75208dda
RGS
1408 return f;
1409 }
14a5cf38
JH
1410
1411 /*
71200d45 1412 * For other types allow if layer is known but don't try and load it
14a5cf38
JH
1413 */
1414 switch (SvTYPE(sv)) {
1415 case SVt_PVAV:
6a245ed1 1416 return PerlIO_find_layer(aTHX_ STR_WITH_LEN("Array"), 0);
14a5cf38 1417 case SVt_PVHV:
6a245ed1 1418 return PerlIO_find_layer(aTHX_ STR_WITH_LEN("Hash"), 0);
14a5cf38 1419 case SVt_PVCV:
6a245ed1 1420 return PerlIO_find_layer(aTHX_ STR_WITH_LEN("Code"), 0);
14a5cf38 1421 case SVt_PVGV:
6a245ed1 1422 return PerlIO_find_layer(aTHX_ STR_WITH_LEN("Glob"), 0);
42d0e0b7
AL
1423 default:
1424 return NULL;
14a5cf38 1425 }
2edd7e44
NIS
1426}
1427
fcf2db38 1428PerlIO_list_t *
14a5cf38
JH
1429PerlIO_resolve_layers(pTHX_ const char *layers,
1430 const char *mode, int narg, SV **args)
1431{
1432 PerlIO_list_t *def = PerlIO_default_layers(aTHX);
1433 int incdef = 1;
a1ea730d 1434 if (!PL_perlio)
14a5cf38
JH
1435 PerlIO_stdstreams(aTHX);
1436 if (narg) {
dcda55fc 1437 SV * const arg = *args;
14a5cf38 1438 /*
71200d45
NIS
1439 * If it is a reference but not an object see if we have a handler
1440 * for it
14a5cf38 1441 */
4e0ef342 1442 if (SvROK(arg) && !SvOBJECT(SvRV(arg))) {
46c461b5 1443 PerlIO_funcs * const handler = PerlIO_layer_from_ref(aTHX_ SvRV(arg));
14a5cf38 1444 if (handler) {
3a1ee7e8
NIS
1445 def = PerlIO_list_alloc(aTHX);
1446 PerlIO_list_push(aTHX_ def, handler, &PL_sv_undef);
14a5cf38
JH
1447 incdef = 0;
1448 }
1449 /*
e934609f 1450 * Don't fail if handler cannot be found :via(...) etc. may do
14a5cf38 1451 * something sensible else we will just stringfy and open
71200d45 1452 * resulting string.
14a5cf38
JH
1453 */
1454 }
1455 }
9fe371da 1456 if (!layers || !*layers)
11bcd5da 1457 layers = Perl_PerlIO_context_layers(aTHX_ mode);
14a5cf38
JH
1458 if (layers && *layers) {
1459 PerlIO_list_t *av;
1460 if (incdef) {
a951d81d 1461 av = PerlIO_clone_list(aTHX_ def, NULL);
14a5cf38
JH
1462 }
1463 else {
1464 av = def;
1465 }
0cff2cf3
NIS
1466 if (PerlIO_parse_layers(aTHX_ av, layers) == 0) {
1467 return av;
1468 }
1469 else {
1470 PerlIO_list_free(aTHX_ av);
b37c2d43 1471 return NULL;
0cff2cf3 1472 }
14a5cf38
JH
1473 }
1474 else {
1475 if (incdef)
1476 def->refcnt++;
1477 return def;
1478 }
ee518936
NIS
1479}
1480
1481PerlIO *
14a5cf38
JH
1482PerlIO_openn(pTHX_ const char *layers, const char *mode, int fd,
1483 int imode, int perm, PerlIO *f, int narg, SV **args)
1484{
1485 if (!f && narg == 1 && *args == &PL_sv_undef) {
1486 if ((f = PerlIO_tmpfile())) {
9fe371da 1487 if (!layers || !*layers)
11bcd5da 1488 layers = Perl_PerlIO_context_layers(aTHX_ mode);
14a5cf38
JH
1489 if (layers && *layers)
1490 PerlIO_apply_layers(aTHX_ f, mode, layers);
1491 }
1492 }
1493 else {
de009b76 1494 PerlIO_list_t *layera;
14a5cf38
JH
1495 IV n;
1496 PerlIO_funcs *tab = NULL;
04892f78 1497 if (PerlIOValid(f)) {
14a5cf38 1498 /*
71200d45
NIS
1499 * This is "reopen" - it is not tested as perl does not use it
1500 * yet
14a5cf38
JH
1501 */
1502 PerlIOl *l = *f;
3a1ee7e8 1503 layera = PerlIO_list_alloc(aTHX);
14a5cf38 1504 while (l) {
a951d81d 1505 SV *arg = NULL;
cc6623a8 1506 if (l->tab && l->tab->Getarg)
a951d81d
BL
1507 arg = (*l->tab->Getarg) (aTHX_ &l, NULL, 0);
1508 PerlIO_list_push(aTHX_ layera, l->tab,
1509 (arg) ? arg : &PL_sv_undef);
ef8d46e8 1510 SvREFCNT_dec(arg);
14a5cf38
JH
1511 l = *PerlIONext(&l);
1512 }
1513 }
1514 else {
1515 layera = PerlIO_resolve_layers(aTHX_ layers, mode, narg, args);
0cff2cf3
NIS
1516 if (!layera) {
1517 return NULL;
1518 }
14a5cf38
JH
1519 }
1520 /*
71200d45 1521 * Start at "top" of layer stack
14a5cf38
JH
1522 */
1523 n = layera->cur - 1;
1524 while (n >= 0) {
46c461b5 1525 PerlIO_funcs * const t = PerlIO_layer_fetch(aTHX_ layera, n, NULL);
14a5cf38
JH
1526 if (t && t->Open) {
1527 tab = t;
1528 break;
1529 }
1530 n--;
1531 }
1532 if (tab) {
1533 /*
71200d45 1534 * Found that layer 'n' can do opens - call it
14a5cf38 1535 */
7cf31beb 1536 if (narg > 1 && !(tab->kind & PERLIO_K_MULTIARG)) {
3b8752bb 1537 Perl_croak(aTHX_ "More than one argument to open(,':%s')",tab->name);
7cf31beb 1538 }
e17bc05a
TC
1539 DEBUG_i( PerlIO_debug("openn(%s,'%s','%s',%d,%x,%o,%p,%d,%p)\n",
1540 tab->name, layers ? layers : "(Null)", mode, fd,
1541 imode, perm, (void*)f, narg, (void*)args) );
210e727c
JH
1542 if (tab->Open)
1543 f = (*tab->Open) (aTHX_ tab, layera, n, mode, fd, imode, perm,
1544 f, narg, args);
1545 else {
1546 SETERRNO(EINVAL, LIB_INVARG);
1547 f = NULL;
1548 }
14a5cf38
JH
1549 if (f) {
1550 if (n + 1 < layera->cur) {
1551 /*
1552 * More layers above the one that we used to open -
71200d45 1553 * apply them now
14a5cf38 1554 */
d9dac8cd
NIS
1555 if (PerlIO_apply_layera(aTHX_ f, mode, layera, n + 1, layera->cur) != 0) {
1556 /* If pushing layers fails close the file */
1557 PerlIO_close(f);
14a5cf38
JH
1558 f = NULL;
1559 }
1560 }
1561 }
1562 }
3a1ee7e8 1563 PerlIO_list_free(aTHX_ layera);
14a5cf38
JH
1564 }
1565 return f;
ee518936 1566}
b931b1d9
NIS
1567
1568
9e353e3b 1569SSize_t
e87a358a 1570Perl_PerlIO_read(pTHX_ PerlIO *f, void *vbuf, Size_t count)
6f9d8c32 1571{
7918f24d
NC
1572 PERL_ARGS_ASSERT_PERLIO_READ;
1573
b32dd47e 1574 Perl_PerlIO_or_Base(f, Read, read, -1, (aTHX_ f, vbuf, count));
760ac839
LW
1575}
1576
313ca112 1577SSize_t
e87a358a 1578Perl_PerlIO_unread(pTHX_ PerlIO *f, const void *vbuf, Size_t count)
760ac839 1579{
7918f24d
NC
1580 PERL_ARGS_ASSERT_PERLIO_UNREAD;
1581
b32dd47e 1582 Perl_PerlIO_or_Base(f, Unread, unread, -1, (aTHX_ f, vbuf, count));
760ac839
LW
1583}
1584
9e353e3b 1585SSize_t
e87a358a 1586Perl_PerlIO_write(pTHX_ PerlIO *f, const void *vbuf, Size_t count)
760ac839 1587{
7918f24d
NC
1588 PERL_ARGS_ASSERT_PERLIO_WRITE;
1589
b32dd47e 1590 Perl_PerlIO_or_fail(f, Write, -1, (aTHX_ f, vbuf, count));
760ac839
LW
1591}
1592
6f9d8c32 1593int
e87a358a 1594Perl_PerlIO_seek(pTHX_ PerlIO *f, Off_t offset, int whence)
760ac839 1595{
b32dd47e 1596 Perl_PerlIO_or_fail(f, Seek, -1, (aTHX_ f, offset, whence));
760ac839
LW
1597}
1598
9e353e3b 1599Off_t
e87a358a 1600Perl_PerlIO_tell(pTHX_ PerlIO *f)
760ac839 1601{
b32dd47e 1602 Perl_PerlIO_or_fail(f, Tell, -1, (aTHX_ f));
760ac839
LW
1603}
1604
6f9d8c32 1605int
e87a358a 1606Perl_PerlIO_flush(pTHX_ PerlIO *f)
760ac839 1607{
14a5cf38
JH
1608 if (f) {
1609 if (*f) {
de009b76 1610 const PerlIO_funcs *tab = PerlIOBase(f)->tab;
1b7a0411
JH
1611
1612 if (tab && tab->Flush)
f62ce20a 1613 return (*tab->Flush) (aTHX_ f);
1b7a0411
JH
1614 else
1615 return 0; /* If no Flush defined, silently succeed. */
14a5cf38
JH
1616 }
1617 else {
e17bc05a 1618 DEBUG_i( PerlIO_debug("Cannot flush f=%p\n", (void*)f) );
93189314 1619 SETERRNO(EBADF, SS_IVCHAN);
14a5cf38
JH
1620 return -1;
1621 }
1622 }
1623 else {
1624 /*
1625 * Is it good API design to do flush-all on NULL, a potentially
486ec47a 1626 * erroneous input? Maybe some magical value (PerlIO*
14a5cf38
JH
1627 * PERLIO_FLUSH_ALL = (PerlIO*)-1;)? Yes, stdio does similar
1628 * things on fflush(NULL), but should we be bound by their design
71200d45 1629 * decisions? --jhi
14a5cf38 1630 */
303f2dc3
DM
1631 PerlIOl **table = &PL_perlio;
1632 PerlIOl *ff;
14a5cf38 1633 int code = 0;
303f2dc3 1634 while ((ff = *table)) {
14a5cf38 1635 int i;
303f2dc3 1636 table = (PerlIOl **) (ff++);
14a5cf38 1637 for (i = 1; i < PERLIO_TABLE_SIZE; i++) {
303f2dc3 1638 if (ff->next && PerlIO_flush(&(ff->next)) != 0)
14a5cf38 1639 code = -1;
303f2dc3 1640 ff++;
14a5cf38
JH
1641 }
1642 }
1643 return code;
1644 }
760ac839
LW
1645}
1646
a9c883f6 1647void
f62ce20a 1648PerlIOBase_flush_linebuf(pTHX)
a9c883f6 1649{
303f2dc3
DM
1650 PerlIOl **table = &PL_perlio;
1651 PerlIOl *f;
14a5cf38
JH
1652 while ((f = *table)) {
1653 int i;
303f2dc3 1654 table = (PerlIOl **) (f++);
14a5cf38 1655 for (i = 1; i < PERLIO_TABLE_SIZE; i++) {
303f2dc3
DM
1656 if (f->next
1657 && (PerlIOBase(&(f->next))->
14a5cf38
JH
1658 flags & (PERLIO_F_LINEBUF | PERLIO_F_CANWRITE))
1659 == (PERLIO_F_LINEBUF | PERLIO_F_CANWRITE))
303f2dc3 1660 PerlIO_flush(&(f->next));
14a5cf38
JH
1661 f++;
1662 }
a9c883f6 1663 }
a9c883f6
NIS
1664}
1665
06da4f11 1666int
e87a358a 1667Perl_PerlIO_fill(pTHX_ PerlIO *f)
06da4f11 1668{
b32dd47e 1669 Perl_PerlIO_or_fail(f, Fill, -1, (aTHX_ f));
06da4f11
NIS
1670}
1671
f3862f8b
NIS
1672int
1673PerlIO_isutf8(PerlIO *f)
1674{
1b7a0411
JH
1675 if (PerlIOValid(f))
1676 return (PerlIOBase(f)->flags & PERLIO_F_UTF8) != 0;
1677 else
1678 SETERRNO(EBADF, SS_IVCHAN);
37725cdc 1679
1b7a0411 1680 return -1;
f3862f8b
NIS
1681}
1682
6f9d8c32 1683int
e87a358a 1684Perl_PerlIO_eof(pTHX_ PerlIO *f)
760ac839 1685{
b32dd47e 1686 Perl_PerlIO_or_Base(f, Eof, eof, -1, (aTHX_ f));
9e353e3b
NIS
1687}
1688
9e353e3b 1689int
e87a358a 1690Perl_PerlIO_error(pTHX_ PerlIO *f)
9e353e3b 1691{
b32dd47e 1692 Perl_PerlIO_or_Base(f, Error, error, -1, (aTHX_ f));
9e353e3b
NIS
1693}
1694
9e353e3b 1695void
e87a358a 1696Perl_PerlIO_clearerr(pTHX_ PerlIO *f)
9e353e3b 1697{
b32dd47e 1698 Perl_PerlIO_or_Base_void(f, Clearerr, clearerr, (aTHX_ f));
9e353e3b
NIS
1699}
1700
9e353e3b 1701void
e87a358a 1702Perl_PerlIO_setlinebuf(pTHX_ PerlIO *f)
9e353e3b 1703{
b32dd47e 1704 Perl_PerlIO_or_Base_void(f, Setlinebuf, setlinebuf, (aTHX_ f));
9e353e3b
NIS
1705}
1706
9e353e3b
NIS
1707int
1708PerlIO_has_base(PerlIO *f)
1709{
1b7a0411 1710 if (PerlIOValid(f)) {
46c461b5 1711 const PerlIO_funcs * const tab = PerlIOBase(f)->tab;
1b7a0411
JH
1712
1713 if (tab)
1714 return (tab->Get_base != NULL);
1b7a0411 1715 }
1b7a0411
JH
1716
1717 return 0;
760ac839
LW
1718}
1719
9e353e3b
NIS
1720int
1721PerlIO_fast_gets(PerlIO *f)
760ac839 1722{
d7dfc388
SK
1723 if (PerlIOValid(f)) {
1724 if (PerlIOBase(f)->flags & PERLIO_F_FASTGETS) {
1725 const PerlIO_funcs * const tab = PerlIOBase(f)->tab;
1b7a0411 1726
d7dfc388
SK
1727 if (tab)
1728 return (tab->Set_ptrcnt != NULL);
d7dfc388 1729 }
14a5cf38 1730 }
1b7a0411 1731
14a5cf38 1732 return 0;
9e353e3b
NIS
1733}
1734
9e353e3b
NIS
1735int
1736PerlIO_has_cntptr(PerlIO *f)
1737{
04892f78 1738 if (PerlIOValid(f)) {
46c461b5 1739 const PerlIO_funcs * const tab = PerlIOBase(f)->tab;
1b7a0411
JH
1740
1741 if (tab)
1742 return (tab->Get_ptr != NULL && tab->Get_cnt != NULL);
14a5cf38 1743 }
1b7a0411 1744
14a5cf38 1745 return 0;
9e353e3b
NIS
1746}
1747
9e353e3b
NIS
1748int
1749PerlIO_canset_cnt(PerlIO *f)
1750{
04892f78 1751 if (PerlIOValid(f)) {
46c461b5 1752 const PerlIO_funcs * const tab = PerlIOBase(f)->tab;
1b7a0411
JH
1753
1754 if (tab)
1755 return (tab->Set_ptrcnt != NULL);
14a5cf38 1756 }
1b7a0411 1757
14a5cf38 1758 return 0;
760ac839
LW
1759}
1760
888911fc 1761STDCHAR *
e87a358a 1762Perl_PerlIO_get_base(pTHX_ PerlIO *f)
760ac839 1763{
b32dd47e 1764 Perl_PerlIO_or_fail(f, Get_base, NULL, (aTHX_ f));
9e353e3b
NIS
1765}
1766
b66f3475 1767SSize_t
e87a358a 1768Perl_PerlIO_get_bufsiz(pTHX_ PerlIO *f)
9e353e3b 1769{
b66f3475 1770 /* Note that Get_bufsiz returns a Size_t */
b32dd47e 1771 Perl_PerlIO_or_fail(f, Get_bufsiz, -1, (aTHX_ f));
9e353e3b
NIS
1772}
1773
9e353e3b 1774STDCHAR *
e87a358a 1775Perl_PerlIO_get_ptr(pTHX_ PerlIO *f)
9e353e3b 1776{
b32dd47e 1777 Perl_PerlIO_or_fail(f, Get_ptr, NULL, (aTHX_ f));
9e353e3b
NIS
1778}
1779
b66f3475 1780SSize_t
e87a358a 1781Perl_PerlIO_get_cnt(pTHX_ PerlIO *f)
9e353e3b 1782{
b32dd47e 1783 Perl_PerlIO_or_fail(f, Get_cnt, -1, (aTHX_ f));
9e353e3b
NIS
1784}
1785
9e353e3b 1786void
b66f3475 1787Perl_PerlIO_set_cnt(pTHX_ PerlIO *f, SSize_t cnt)
9e353e3b 1788{
b32dd47e 1789 Perl_PerlIO_or_fail_void(f, Set_ptrcnt, (aTHX_ f, NULL, cnt));
9e353e3b
NIS
1790}
1791
9e353e3b 1792void
b66f3475 1793Perl_PerlIO_set_ptrcnt(pTHX_ PerlIO *f, STDCHAR * ptr, SSize_t cnt)
9e353e3b 1794{
b32dd47e 1795 Perl_PerlIO_or_fail_void(f, Set_ptrcnt, (aTHX_ f, ptr, cnt));
9e353e3b
NIS
1796}
1797
4ec2216f 1798
9e353e3b 1799/*--------------------------------------------------------------------------------------*/
14a5cf38 1800/*
71200d45 1801 * utf8 and raw dummy layers
14a5cf38 1802 */
dfebf958 1803
26fb694e 1804IV
2dc2558e 1805PerlIOUtf8_pushed(pTHX_ PerlIO *f, const char *mode, SV *arg, PerlIO_funcs *tab)
26fb694e 1806{
96a5add6 1807 PERL_UNUSED_CONTEXT;
8772537c
AL
1808 PERL_UNUSED_ARG(mode);
1809 PERL_UNUSED_ARG(arg);
00f51856 1810 if (PerlIOValid(f)) {
cc6623a8 1811 if (tab && tab->kind & PERLIO_K_UTF8)
14a5cf38
JH
1812 PerlIOBase(f)->flags |= PERLIO_F_UTF8;
1813 else
1814 PerlIOBase(f)->flags &= ~PERLIO_F_UTF8;
1815 return 0;
1816 }
1817 return -1;
26fb694e
NIS
1818}
1819
27da23d5 1820PERLIO_FUNCS_DECL(PerlIO_utf8) = {
2dc2558e 1821 sizeof(PerlIO_funcs),
14a5cf38 1822 "utf8",
2dc2558e 1823 0,
a778d1f5 1824 PERLIO_K_DUMMY | PERLIO_K_UTF8 | PERLIO_K_MULTIARG,
14a5cf38
JH
1825 PerlIOUtf8_pushed,
1826 NULL,
c0888ace 1827 PerlIOBase_open,
14a5cf38
JH
1828 NULL,
1829 NULL,
1830 NULL,
1831 NULL,
1832 NULL,
1833 NULL,
1834 NULL,
1835 NULL,
de009b76
AL
1836 NULL,
1837 NULL,
22569500
NIS
1838 NULL, /* flush */
1839 NULL, /* fill */
14a5cf38
JH
1840 NULL,
1841 NULL,
1842 NULL,
1843 NULL,
22569500
NIS
1844 NULL, /* get_base */
1845 NULL, /* get_bufsiz */
1846 NULL, /* get_ptr */
1847 NULL, /* get_cnt */
1848 NULL, /* set_ptrcnt */
26fb694e
NIS
1849};
1850
27da23d5 1851PERLIO_FUNCS_DECL(PerlIO_byte) = {
2dc2558e 1852 sizeof(PerlIO_funcs),
14a5cf38 1853 "bytes",
2dc2558e 1854 0,
a778d1f5 1855 PERLIO_K_DUMMY | PERLIO_K_MULTIARG,
14a5cf38
JH
1856 PerlIOUtf8_pushed,
1857 NULL,
c0888ace 1858 PerlIOBase_open,
14a5cf38
JH
1859 NULL,
1860 NULL,
1861 NULL,
1862 NULL,
1863 NULL,
1864 NULL,
1865 NULL,
1866 NULL,
de009b76
AL
1867 NULL,
1868 NULL,
22569500
NIS
1869 NULL, /* flush */
1870 NULL, /* fill */
14a5cf38
JH
1871 NULL,
1872 NULL,
1873 NULL,
1874 NULL,
22569500
NIS
1875 NULL, /* get_base */
1876 NULL, /* get_bufsiz */
1877 NULL, /* get_ptr */
1878 NULL, /* get_cnt */
1879 NULL, /* set_ptrcnt */
dfebf958
NIS
1880};
1881
27da23d5 1882PERLIO_FUNCS_DECL(PerlIO_raw) = {
2dc2558e 1883 sizeof(PerlIO_funcs),
14a5cf38 1884 "raw",
2dc2558e 1885 0,
14a5cf38
JH
1886 PERLIO_K_DUMMY,
1887 PerlIORaw_pushed,
1888 PerlIOBase_popped,
ecfd0649 1889 PerlIOBase_open,
14a5cf38
JH
1890 NULL,
1891 NULL,
1892 NULL,
1893 NULL,
1894 NULL,
1895 NULL,
1896 NULL,
1897 NULL,
de009b76
AL
1898 NULL,
1899 NULL,
22569500
NIS
1900 NULL, /* flush */
1901 NULL, /* fill */
14a5cf38
JH
1902 NULL,
1903 NULL,
1904 NULL,
1905 NULL,
22569500
NIS
1906 NULL, /* get_base */
1907 NULL, /* get_bufsiz */
1908 NULL, /* get_ptr */
1909 NULL, /* get_cnt */
1910 NULL, /* set_ptrcnt */
dfebf958
NIS
1911};
1912/*--------------------------------------------------------------------------------------*/
1913/*--------------------------------------------------------------------------------------*/
14a5cf38 1914/*
71200d45 1915 * "Methods" of the "base class"
14a5cf38 1916 */
9e353e3b
NIS
1917
1918IV
f62ce20a 1919PerlIOBase_fileno(pTHX_ PerlIO *f)
9e353e3b 1920{
04892f78 1921 return PerlIOValid(f) ? PerlIO_fileno(PerlIONext(f)) : -1;
9e353e3b
NIS
1922}
1923
f5b9d040 1924char *
81428673 1925PerlIO_modestr(PerlIO * f, char *buf)
14a5cf38
JH
1926{
1927 char *s = buf;
81428673 1928 if (PerlIOValid(f)) {
de009b76 1929 const IV flags = PerlIOBase(f)->flags;
81428673
NIS
1930 if (flags & PERLIO_F_APPEND) {
1931 *s++ = 'a';
1932 if (flags & PERLIO_F_CANREAD) {
1933 *s++ = '+';
1934 }
14a5cf38 1935 }
81428673
NIS
1936 else if (flags & PERLIO_F_CANREAD) {
1937 *s++ = 'r';
1938 if (flags & PERLIO_F_CANWRITE)
1939 *s++ = '+';
1940 }
1941 else if (flags & PERLIO_F_CANWRITE) {
1942 *s++ = 'w';
1943 if (flags & PERLIO_F_CANREAD) {
1944 *s++ = '+';
1945 }
14a5cf38 1946 }
35990314 1947#ifdef PERLIO_USING_CRLF
81428673
NIS
1948 if (!(flags & PERLIO_F_CRLF))
1949 *s++ = 'b';
5f1a76d0 1950#endif
81428673 1951 }
14a5cf38
JH
1952 *s = '\0';
1953 return buf;
f5b9d040
NIS
1954}
1955
81428673 1956
76ced9ad 1957IV
2dc2558e 1958PerlIOBase_pushed(pTHX_ PerlIO *f, const char *mode, SV *arg, PerlIO_funcs *tab)
9e353e3b 1959{
de009b76 1960 PerlIOl * const l = PerlIOBase(f);
96a5add6 1961 PERL_UNUSED_CONTEXT;
8772537c 1962 PERL_UNUSED_ARG(arg);
de009b76 1963
14a5cf38
JH
1964 l->flags &= ~(PERLIO_F_CANREAD | PERLIO_F_CANWRITE |
1965 PERLIO_F_TRUNCATE | PERLIO_F_APPEND);
cc6623a8 1966 if (tab && tab->Set_ptrcnt != NULL)
14a5cf38
JH
1967 l->flags |= PERLIO_F_FASTGETS;
1968 if (mode) {
3b6c1aba 1969 if (*mode == IoTYPE_NUMERIC || *mode == IoTYPE_IMPLICIT)
14a5cf38
JH
1970 mode++;
1971 switch (*mode++) {
1972 case 'r':
1973 l->flags |= PERLIO_F_CANREAD;
1974 break;
1975 case 'a':
1976 l->flags |= PERLIO_F_APPEND | PERLIO_F_CANWRITE;
1977 break;
1978 case 'w':
1979 l->flags |= PERLIO_F_TRUNCATE | PERLIO_F_CANWRITE;
1980 break;
1981 default:
93189314 1982 SETERRNO(EINVAL, LIB_INVARG);
14a5cf38
JH
1983 return -1;
1984 }
49fc4906
YK
1985#ifdef EBCDIC
1986 {
1987 /* The mode variable contains one positional parameter followed by
1988 * optional keyword parameters. The positional parameters must be
1989 * passed as lowercase characters. The keyword parameters can be
1990 * passed in mixed case. They must be separated by commas. Only one
1991 * instance of a keyword can be specified. */
1992 int comma = 0;
1993 while (*mode) {
1994 switch (*mode++) {
1995 case '+':
1996 if(!comma)
1997 l->flags |= PERLIO_F_CANREAD | PERLIO_F_CANWRITE;
1998 break;
1999 case 'b':
2000 if(!comma)
2001 l->flags &= ~PERLIO_F_CRLF;
2002 break;
2003 case 't':
2004 if(!comma)
2005 l->flags |= PERLIO_F_CRLF;
2006 break;
2007 case ',':
2008 comma = 1;
2009 break;
2010 default:
2011 break;
2012 }
2013 }
2014 }
2015#else
14a5cf38
JH
2016 while (*mode) {
2017 switch (*mode++) {
2018 case '+':
2019 l->flags |= PERLIO_F_CANREAD | PERLIO_F_CANWRITE;
2020 break;
2021 case 'b':
2022 l->flags &= ~PERLIO_F_CRLF;
2023 break;
2024 case 't':
2025 l->flags |= PERLIO_F_CRLF;
2026 break;
2027 default:
93189314 2028 SETERRNO(EINVAL, LIB_INVARG);
14a5cf38
JH
2029 return -1;
2030 }
2031 }
49fc4906 2032#endif
14a5cf38
JH
2033 }
2034 else {
2035 if (l->next) {
2036 l->flags |= l->next->flags &
2037 (PERLIO_F_CANREAD | PERLIO_F_CANWRITE | PERLIO_F_TRUNCATE |
2038 PERLIO_F_APPEND);
2039 }
2040 }
5e2ab84b 2041#if 0
e17bc05a 2042 DEBUG_i(
14a5cf38 2043 PerlIO_debug("PerlIOBase_pushed f=%p %s %s fl=%08" UVxf " (%s)\n",
6c9570dc 2044 (void*)f, PerlIOBase(f)->tab->name, (omode) ? omode : "(Null)",
14a5cf38 2045 l->flags, PerlIO_modestr(f, temp));
e17bc05a 2046 );
5e2ab84b 2047#endif
14a5cf38 2048 return 0;
76ced9ad
NIS
2049}
2050
2051IV
f62ce20a 2052PerlIOBase_popped(pTHX_ PerlIO *f)
76ced9ad 2053{
96a5add6 2054 PERL_UNUSED_CONTEXT;
8772537c 2055 PERL_UNUSED_ARG(f);
14a5cf38 2056 return 0;
760ac839
LW
2057}
2058
9e353e3b 2059SSize_t
f62ce20a 2060PerlIOBase_unread(pTHX_ PerlIO *f, const void *vbuf, Size_t count)
9e353e3b 2061{
14a5cf38 2062 /*
71200d45 2063 * Save the position as current head considers it
14a5cf38 2064 */
de009b76 2065 const Off_t old = PerlIO_tell(f);
a0714e2c 2066 PerlIO_push(aTHX_ f, PERLIO_FUNCS_CAST(&PerlIO_pending), "r", NULL);
14a5cf38 2067 PerlIOSelf(f, PerlIOBuf)->posn = old;
de009b76 2068 return PerlIOBuf_unread(aTHX_ f, vbuf, count);
9e353e3b
NIS
2069}
2070
f6c77cf1 2071SSize_t
f62ce20a 2072PerlIOBase_read(pTHX_ PerlIO *f, void *vbuf, Size_t count)
f6c77cf1 2073{
14a5cf38
JH
2074 STDCHAR *buf = (STDCHAR *) vbuf;
2075 if (f) {
263df5f1
JH
2076 if (!(PerlIOBase(f)->flags & PERLIO_F_CANREAD)) {
2077 PerlIOBase(f)->flags |= PERLIO_F_ERROR;
2078 SETERRNO(EBADF, SS_IVCHAN);
0ea86a10 2079 PerlIO_save_errno(f);
263df5f1
JH
2080 return 0;
2081 }
14a5cf38 2082 while (count > 0) {
93c2c2ec
IZ
2083 get_cnt:
2084 {
14a5cf38
JH
2085 SSize_t avail = PerlIO_get_cnt(f);
2086 SSize_t take = 0;
2087 if (avail > 0)
94e529cc 2088 take = (((SSize_t) count >= 0) && ((SSize_t)count < avail)) ? (SSize_t)count : avail;
14a5cf38
JH
2089 if (take > 0) {
2090 STDCHAR *ptr = PerlIO_get_ptr(f);
2091 Copy(ptr, buf, take, STDCHAR);
2092 PerlIO_set_ptrcnt(f, ptr + take, (avail -= take));
2093 count -= take;
2094 buf += take;
93c2c2ec
IZ
2095 if (avail == 0) /* set_ptrcnt could have reset avail */
2096 goto get_cnt;
14a5cf38
JH
2097 }
2098 if (count > 0 && avail <= 0) {
2099 if (PerlIO_fill(f) != 0)
2100 break;
2101 }
93c2c2ec 2102 }
14a5cf38
JH
2103 }
2104 return (buf - (STDCHAR *) vbuf);
2105 }
f6c77cf1 2106 return 0;
f6c77cf1
NIS
2107}
2108
9e353e3b 2109IV
f62ce20a 2110PerlIOBase_noop_ok(pTHX_ PerlIO *f)
9e353e3b 2111{
96a5add6 2112 PERL_UNUSED_CONTEXT;
8772537c 2113 PERL_UNUSED_ARG(f);
14a5cf38 2114 return 0;
9e353e3b
NIS
2115}
2116
2117IV
f62ce20a 2118PerlIOBase_noop_fail(pTHX_ PerlIO *f)
06da4f11 2119{
96a5add6 2120 PERL_UNUSED_CONTEXT;
8772537c 2121 PERL_UNUSED_ARG(f);
14a5cf38 2122 return -1;
06da4f11
NIS
2123}
2124
2125IV
f62ce20a 2126PerlIOBase_close(pTHX_ PerlIO *f)
9e353e3b 2127{
37725cdc
NIS
2128 IV code = -1;
2129 if (PerlIOValid(f)) {
2130 PerlIO *n = PerlIONext(f);
2131 code = PerlIO_flush(f);
2132 PerlIOBase(f)->flags &=
2133 ~(PERLIO_F_CANREAD | PERLIO_F_CANWRITE | PERLIO_F_OPEN);
2134 while (PerlIOValid(n)) {
de009b76 2135 const PerlIO_funcs * const tab = PerlIOBase(n)->tab;
37725cdc
NIS
2136 if (tab && tab->Close) {
2137 if ((*tab->Close)(aTHX_ n) != 0)
2138 code = -1;
2139 break;
2140 }
2141 else {
2142 PerlIOBase(n)->flags &=
2143 ~(PERLIO_F_CANREAD | PERLIO_F_CANWRITE | PERLIO_F_OPEN);
2144 }
2145 n = PerlIONext(n);
2146 }
2147 }
2148 else {
2149 SETERRNO(EBADF, SS_IVCHAN);
2150 }
14a5cf38 2151 return code;
9e353e3b
NIS
2152}
2153
2154IV
f62ce20a 2155PerlIOBase_eof(pTHX_ PerlIO *f)
9e353e3b 2156{
96a5add6 2157 PERL_UNUSED_CONTEXT;
04892f78 2158 if (PerlIOValid(f)) {
14a5cf38
JH
2159 return (PerlIOBase(f)->flags & PERLIO_F_EOF) != 0;
2160 }
2161 return 1;
9e353e3b
NIS
2162}
2163
2164IV
f62ce20a 2165PerlIOBase_error(pTHX_ PerlIO *f)
9e353e3b 2166{
96a5add6 2167 PERL_UNUSED_CONTEXT;
04892f78 2168 if (PerlIOValid(f)) {
14a5cf38
JH
2169 return (PerlIOBase(f)->flags & PERLIO_F_ERROR) != 0;
2170 }
2171 return 1;
9e353e3b
NIS
2172}
2173
2174void
f62ce20a 2175PerlIOBase_clearerr(pTHX_ PerlIO *f)
9e353e3b 2176{
04892f78 2177 if (PerlIOValid(f)) {
dcda55fc 2178 PerlIO * const n = PerlIONext(f);
14a5cf38 2179 PerlIOBase(f)->flags &= ~(PERLIO_F_ERROR | PERLIO_F_EOF);
04892f78 2180 if (PerlIOValid(n))
14a5cf38
JH
2181 PerlIO_clearerr(n);
2182 }
9e353e3b
NIS
2183}
2184
2185void
f62ce20a 2186PerlIOBase_setlinebuf(pTHX_ PerlIO *f)
9e353e3b 2187{
96a5add6 2188 PERL_UNUSED_CONTEXT;
04892f78 2189 if (PerlIOValid(f)) {
14a5cf38
JH
2190 PerlIOBase(f)->flags |= PERLIO_F_LINEBUF;
2191 }
9e353e3b
NIS
2192}
2193
93a8090d
NIS
2194SV *
2195PerlIO_sv_dup(pTHX_ SV *arg, CLONE_PARAMS *param)
2196{
2197 if (!arg)
a0714e2c 2198 return NULL;
24d147a6 2199#ifdef USE_ITHREADS
93a8090d 2200 if (param) {
a951d81d
BL
2201 arg = sv_dup(arg, param);
2202 SvREFCNT_inc_simple_void_NN(arg);
2203 return arg;
93a8090d
NIS
2204 }
2205 else {
2206 return newSVsv(arg);
2207 }
2208#else
1b6737cc 2209 PERL_UNUSED_ARG(param);
93a8090d
NIS
2210 return newSVsv(arg);
2211#endif
2212}
2213
2214PerlIO *
ecdeb87c 2215PerlIOBase_dup(pTHX_ PerlIO *f, PerlIO *o, CLONE_PARAMS *param, int flags)
93a8090d 2216{
1b6737cc 2217 PerlIO * const nexto = PerlIONext(o);
04892f78 2218 if (PerlIOValid(nexto)) {
de009b76 2219 const PerlIO_funcs * const tab = PerlIOBase(nexto)->tab;
37725cdc
NIS
2220 if (tab && tab->Dup)
2221 f = (*tab->Dup)(aTHX_ f, nexto, param, flags);
2222 else
2223 f = PerlIOBase_dup(aTHX_ f, nexto, param, flags);
93a8090d
NIS
2224 }
2225 if (f) {
dcda55fc 2226 PerlIO_funcs * const self = PerlIOBase(o)->tab;
a951d81d 2227 SV *arg = NULL;
93a8090d 2228 char buf[8];
316ebaf2 2229 assert(self);
e17bc05a
TC
2230 DEBUG_i(PerlIO_debug("PerlIOBase_dup %s f=%p o=%p param=%p\n",
2231 self->name,
2232 (void*)f, (void*)o, (void*)param) );
27e6dabe
JH
2233 if (self->Getarg)
2234 arg = (*self->Getarg)(aTHX_ o, param, flags);
93a8090d 2235 f = PerlIO_push(aTHX_ f, self, PerlIO_modestr(o,buf), arg);
df8c7dee 2236 if (f && PerlIOBase(o)->flags & PERLIO_F_UTF8)
f0720f70 2237 PerlIOBase(f)->flags |= PERLIO_F_UTF8;
ef8d46e8 2238 SvREFCNT_dec(arg);
93a8090d
NIS
2239 }
2240 return f;
2241}
2242
27da23d5 2243/* PL_perlio_fd_refcnt[] is in intrpvar.h */
93a8090d 2244
8b84d7dd 2245/* Must be called with PL_perlio_mutex locked. */
22c96fc1 2246static void
ff25d7bc
JH
2247S_more_refcounted_fds(pTHX_ const int new_fd)
2248 PERL_TSA_REQUIRES(PL_perlio_mutex)
2249{
7a89be66 2250 dVAR;
22c96fc1 2251 const int old_max = PL_perlio_fd_refcnt_size;
f4ae5be6 2252 const int new_max = 16 + (new_fd & ~15);
22c96fc1
NC
2253 int *new_array;
2254
dd791c72
JH
2255#ifndef PERL_IMPLICIT_SYS
2256 PERL_UNUSED_CONTEXT;
2257#endif
2258
e17bc05a
TC
2259 DEBUG_i( PerlIO_debug("More fds - old=%d, need %d, new=%d\n",
2260 old_max, new_fd, new_max) );
22c96fc1
NC
2261
2262 if (new_fd < old_max) {
2263 return;
2264 }
2265
f4ae5be6
NC
2266 assert (new_max > new_fd);
2267
eae082a0
JH
2268 /* Use plain realloc() since we need this memory to be really
2269 * global and visible to all the interpreters and/or threads. */
2270 new_array = (int*) realloc(PL_perlio_fd_refcnt, new_max * sizeof(int));
22c96fc1
NC
2271
2272 if (!new_array) {
6cb8cb21 2273 MUTEX_UNLOCK(&PL_perlio_mutex);
4cbe3a7d 2274 croak_no_mem();
22c96fc1
NC
2275 }
2276
2277 PL_perlio_fd_refcnt_size = new_max;
2278 PL_perlio_fd_refcnt = new_array;
2279
e17bc05a
TC
2280 DEBUG_i( PerlIO_debug("Zeroing %p, %d\n",
2281 (void*)(new_array + old_max),
2282 new_max - old_max) );
22c96fc1
NC
2283
2284 Zero(new_array + old_max, new_max - old_max, int);
2285}
2286
2287
93a8090d
NIS
2288void
2289PerlIO_init(pTHX)
2290{
8b84d7dd 2291 /* MUTEX_INIT(&PL_perlio_mutex) is done in PERL_SYS_INIT3(). */
96a5add6 2292 PERL_UNUSED_CONTEXT;
93a8090d
NIS
2293}
2294
168d5872
NIS
2295void
2296PerlIOUnix_refcnt_inc(int fd)
2297{
27da23d5 2298 dTHX;
22c96fc1 2299 if (fd >= 0) {
97aff369 2300 dVAR;
22c96fc1 2301
6cb8cb21 2302 MUTEX_LOCK(&PL_perlio_mutex);
22c96fc1
NC
2303 if (fd >= PL_perlio_fd_refcnt_size)
2304 S_more_refcounted_fds(aTHX_ fd);
2305
27da23d5 2306 PL_perlio_fd_refcnt[fd]++;
8b84d7dd 2307 if (PL_perlio_fd_refcnt[fd] <= 0) {
12605ff9 2308 /* diag_listed_as: refcnt_inc: fd %d%s */
8b84d7dd
RGS
2309 Perl_croak(aTHX_ "refcnt_inc: fd %d: %d <= 0\n",
2310 fd, PL_perlio_fd_refcnt[fd]);
2311 }
e17bc05a
TC
2312 DEBUG_i( PerlIO_debug("refcnt_inc: fd %d refcnt=%d\n",
2313 fd, PL_perlio_fd_refcnt[fd]) );
22c96fc1 2314
6cb8cb21 2315 MUTEX_UNLOCK(&PL_perlio_mutex);
8b84d7dd 2316 } else {
12605ff9 2317 /* diag_listed_as: refcnt_inc: fd %d%s */
8b84d7dd 2318 Perl_croak(aTHX_ "refcnt_inc: fd %d < 0\n", fd);
168d5872
NIS
2319 }
2320}
2321
168d5872
NIS
2322int
2323PerlIOUnix_refcnt_dec(int fd)
2324{
2325 int cnt = 0;
22c96fc1 2326 if (fd >= 0) {
e17bc05a
TC
2327#ifdef DEBUGGING
2328 dTHX;
2329#else
97aff369 2330 dVAR;
e17bc05a 2331#endif
6cb8cb21 2332 MUTEX_LOCK(&PL_perlio_mutex);
8b84d7dd 2333 if (fd >= PL_perlio_fd_refcnt_size) {
12605ff9 2334 /* diag_listed_as: refcnt_dec: fd %d%s */
2bcd6579 2335 Perl_croak_nocontext("refcnt_dec: fd %d >= refcnt_size %d\n",
8b84d7dd
RGS
2336 fd, PL_perlio_fd_refcnt_size);
2337 }
2338 if (PL_perlio_fd_refcnt[fd] <= 0) {
12605ff9 2339 /* diag_listed_as: refcnt_dec: fd %d%s */
2bcd6579 2340 Perl_croak_nocontext("refcnt_dec: fd %d: %d <= 0\n",
8b84d7dd
RGS
2341 fd, PL_perlio_fd_refcnt[fd]);
2342 }
27da23d5 2343 cnt = --PL_perlio_fd_refcnt[fd];
e17bc05a 2344 DEBUG_i( PerlIO_debug("refcnt_dec: fd %d refcnt=%d\n", fd, cnt) );
6cb8cb21 2345 MUTEX_UNLOCK(&PL_perlio_mutex);
8b84d7dd 2346 } else {
12605ff9 2347 /* diag_listed_as: refcnt_dec: fd %d%s */
2bcd6579 2348 Perl_croak_nocontext("refcnt_dec: fd %d < 0\n", fd);
168d5872
NIS
2349 }
2350 return cnt;
2351}
2352
2e0cfa16
FC
2353int
2354PerlIOUnix_refcnt(int fd)
2355{
2356 dTHX;
2357 int cnt = 0;
2358 if (fd >= 0) {
2359 dVAR;
2e0cfa16 2360 MUTEX_LOCK(&PL_perlio_mutex);
2e0cfa16
FC
2361 if (fd >= PL_perlio_fd_refcnt_size) {
2362 /* diag_listed_as: refcnt: fd %d%s */
2363 Perl_croak(aTHX_ "refcnt: fd %d >= refcnt_size %d\n",
2364 fd, PL_perlio_fd_refcnt_size);
2365 }
2366 if (PL_perlio_fd_refcnt[fd] <= 0) {
2367 /* diag_listed_as: refcnt: fd %d%s */
2368 Perl_croak(aTHX_ "refcnt: fd %d: %d <= 0\n",
2369 fd, PL_perlio_fd_refcnt[fd]);
2370 }
2371 cnt = PL_perlio_fd_refcnt[fd];
2e0cfa16 2372 MUTEX_UNLOCK(&PL_perlio_mutex);
2e0cfa16
FC
2373 } else {
2374 /* diag_listed_as: refcnt: fd %d%s */
2375 Perl_croak(aTHX_ "refcnt: fd %d < 0\n", fd);
2376 }
2377 return cnt;
2378}
2379
694c95cf
JH
2380void
2381PerlIO_cleanup(pTHX)
2382{
2383 int i;
2384#ifdef USE_ITHREADS
e17bc05a 2385 DEBUG_i( PerlIO_debug("Cleanup layers for %p\n",(void*)aTHX) );
9f4bd222 2386#else
e17bc05a 2387 DEBUG_i( PerlIO_debug("Cleanup layers\n") );
694c95cf 2388#endif
e47547a8 2389
694c95cf
JH
2390 /* Raise STDIN..STDERR refcount so we don't close them */
2391 for (i=0; i < 3; i++)
2392 PerlIOUnix_refcnt_inc(i);
2393 PerlIO_cleantable(aTHX_ &PL_perlio);
2394 /* Restore STDIN..STDERR refcount */
2395 for (i=0; i < 3; i++)
2396 PerlIOUnix_refcnt_dec(i);
9f4bd222
NIS
2397
2398 if (PL_known_layers) {
2399 PerlIO_list_free(aTHX_ PL_known_layers);
2400 PL_known_layers = NULL;
2401 }
27da23d5 2402 if (PL_def_layerlist) {
9f4bd222
NIS
2403 PerlIO_list_free(aTHX_ PL_def_layerlist);
2404 PL_def_layerlist = NULL;
2405 }
6cb8cb21
RGS
2406}
2407
0934c9d9 2408void PerlIO_teardown(void) /* Call only from PERL_SYS_TERM(). */
6cb8cb21 2409{
53d44271 2410 dVAR;
4f3da17a
DM
2411#if 0
2412/* XXX we can't rely on an interpreter being present at this late stage,
2413 XXX so we can't use a function like PerlLIO_write that relies on one
2414 being present (at least in win32) :-(.
2415 Disable for now.
2416*/
6cb8cb21
RGS
2417#ifdef DEBUGGING
2418 {
2419 /* By now all filehandles should have been closed, so any
2420 * stray (non-STD-)filehandles indicate *possible* (PerlIO)
2421 * errors. */
77db880c
JH
2422#define PERLIO_TEARDOWN_MESSAGE_BUF_SIZE 64
2423#define PERLIO_TEARDOWN_MESSAGE_FD 2
2424 char buf[PERLIO_TEARDOWN_MESSAGE_BUF_SIZE];
6cb8cb21
RGS
2425 int i;
2426 for (i = 3; i < PL_perlio_fd_refcnt_size; i++) {
77db880c
JH
2427 if (PL_perlio_fd_refcnt[i]) {
2428 const STRLEN len =
2429 my_snprintf(buf, sizeof(buf),
2430 "PerlIO_teardown: fd %d refcnt=%d\n",
2431 i, PL_perlio_fd_refcnt[i]);
2432 PerlLIO_write(PERLIO_TEARDOWN_MESSAGE_FD, buf, len);
2433 }
6cb8cb21
RGS
2434 }
2435 }
2436#endif
4f3da17a 2437#endif
eae082a0
JH
2438 /* Not bothering with PL_perlio_mutex since by now
2439 * all the interpreters are gone. */
1cd82952
RGS
2440 if (PL_perlio_fd_refcnt_size /* Assuming initial size of zero. */
2441 && PL_perlio_fd_refcnt) {
eae082a0 2442 free(PL_perlio_fd_refcnt); /* To match realloc() in S_more_refcounted_fds(). */
432ce874
YO
2443 PL_perlio_fd_refcnt = NULL;
2444 PL_perlio_fd_refcnt_size = 0;
1cd82952 2445 }
694c95cf
JH
2446}
2447
9e353e3b 2448/*--------------------------------------------------------------------------------------*/
14a5cf38 2449/*
71200d45 2450 * Bottom-most level for UNIX-like case
14a5cf38 2451 */
9e353e3b 2452
14a5cf38 2453typedef struct {
22569500
NIS
2454 struct _PerlIO base; /* The generic part */
2455 int fd; /* UNIX like file descriptor */
2456 int oflags; /* open/fcntl flags */
9e353e3b
NIS
2457} PerlIOUnix;
2458
abf9167d
DM
2459static void
2460S_lockcnt_dec(pTHX_ const void* f)
2461{
dd791c72
JH
2462#ifndef PERL_IMPLICIT_SYS
2463 PERL_UNUSED_CONTEXT;
2464#endif
abf9167d
DM
2465 PerlIO_lockcnt((PerlIO*)f)--;
2466}
2467
2468
2469/* call the signal handler, and if that handler happens to clear
2470 * this handle, free what we can and return true */
2471
2472static bool
2473S_perlio_async_run(pTHX_ PerlIO* f) {
2474 ENTER;
2475 SAVEDESTRUCTOR_X(S_lockcnt_dec, (void*)f);
2476 PerlIO_lockcnt(f)++;
2477 PERL_ASYNC_CHECK();
be48bbe8
CS
2478 if ( !(PerlIOBase(f)->flags & PERLIO_F_CLEARED) ) {
2479 LEAVE;
abf9167d 2480 return 0;
be48bbe8 2481 }
abf9167d
DM
2482 /* we've just run some perl-level code that could have done
2483 * anything, including closing the file or clearing this layer.
2484 * If so, free any lower layers that have already been
2485 * cleared, then return an error. */
2486 while (PerlIOValid(f) &&
2487 (PerlIOBase(f)->flags & PERLIO_F_CLEARED))
2488 {
2489 const PerlIOl *l = *f;
2490 *f = l->next;
2491 Safefree(l);
2492 }
be48bbe8 2493 LEAVE;
abf9167d
DM
2494 return 1;
2495}
2496
6f9d8c32 2497int
9e353e3b 2498PerlIOUnix_oflags(const char *mode)
760ac839 2499{
14a5cf38 2500 int oflags = -1;
3b6c1aba 2501 if (*mode == IoTYPE_IMPLICIT || *mode == IoTYPE_NUMERIC)
14a5cf38
JH
2502 mode++;
2503 switch (*mode) {
2504 case 'r':
2505 oflags = O_RDONLY;
2506 if (*++mode == '+') {
2507 oflags = O_RDWR;
2508 mode++;
2509 }
2510 break;
2511
2512 case 'w':
2513 oflags = O_CREAT | O_TRUNC;
2514 if (*++mode == '+') {
2515 oflags |= O_RDWR;
2516 mode++;
2517 }
2518 else
2519 oflags |= O_WRONLY;
2520 break;
2521
2522 case 'a':
2523 oflags = O_CREAT | O_APPEND;
2524 if (*++mode == '+') {
2525 oflags |= O_RDWR;
2526 mode++;
2527 }
2528 else
2529 oflags |= O_WRONLY;
2530 break;
2531 }
43e5477e
JH
2532
2533 /* XXX TODO: PerlIO_open() test that exercises 'rb' and 'rt'. */
2534
2535 /* Unless O_BINARY is different from O_TEXT, first bit-or:ing one
2536 * of them in, and then bit-and-masking the other them away, won't
2537 * have much of an effect. */
2538 switch (*mode) {
2539 case 'b':
2540#if O_TEXT != O_BINARY
2541 oflags |= O_BINARY;
14a5cf38 2542 oflags &= ~O_TEXT;
43e5477e
JH
2543#endif
2544 mode++;
2545 break;
2546 case 't':
2547#if O_TEXT != O_BINARY
14a5cf38
JH
2548 oflags |= O_TEXT;
2549 oflags &= ~O_BINARY;
43e5477e
JH
2550#endif
2551 mode++;
2552 break;
2553 default:
2554# if O_BINARY != 0
2555 /* bit-or:ing with zero O_BINARY would be useless. */
93f31ee9
PG
2556 /*
2557 * If neither "t" nor "b" was specified, open the file
2558 * in O_BINARY mode.
43e5477e
JH
2559 *
2560 * Note that if something else than the zero byte was seen
2561 * here (e.g. bogus mode "rx"), just few lines later we will
2562 * set the errno and invalidate the flags.
93f31ee9
PG
2563 */
2564 oflags |= O_BINARY;
43e5477e
JH
2565# endif
2566 break;
93f31ee9 2567 }
14a5cf38 2568 if (*mode || oflags == -1) {
93189314 2569 SETERRNO(EINVAL, LIB_INVARG);
14a5cf38
JH
2570 oflags = -1;
2571 }
2572 return oflags;
9e353e3b
NIS
2573}
2574
2575IV
f62ce20a 2576PerlIOUnix_fileno(pTHX_ PerlIO *f)
9e353e3b 2577{
96a5add6 2578 PERL_UNUSED_CONTEXT;
14a5cf38 2579 return PerlIOSelf(f, PerlIOUnix)->fd;
9e353e3b
NIS
2580}
2581
aa063c35
NIS
2582static void
2583PerlIOUnix_setfd(pTHX_ PerlIO *f, int fd, int imode)
4b803d04 2584{
de009b76 2585 PerlIOUnix * const s = PerlIOSelf(f, PerlIOUnix);
6caa5a9c 2586#if defined(WIN32)
aa063c35
NIS
2587 Stat_t st;
2588 if (PerlLIO_fstat(fd, &st) == 0) {
6caa5a9c 2589 if (!S_ISREG(st.st_mode)) {
e17bc05a 2590 DEBUG_i( PerlIO_debug("%d is not regular file\n",fd) );
6caa5a9c
NIS
2591 PerlIOBase(f)->flags |= PERLIO_F_NOTREG;
2592 }
aa063c35 2593 else {
e17bc05a 2594 DEBUG_i( PerlIO_debug("%d _is_ a regular file\n",fd) );
aa063c35 2595 }
6caa5a9c
NIS
2596 }
2597#endif
aa063c35
NIS
2598 s->fd = fd;
2599 s->oflags = imode;
2600 PerlIOUnix_refcnt_inc(fd);
96a5add6 2601 PERL_UNUSED_CONTEXT;
aa063c35
NIS
2602}
2603
2604IV
2605PerlIOUnix_pushed(pTHX_ PerlIO *f, const char *mode, SV *arg, PerlIO_funcs *tab)
2606{
2607 IV code = PerlIOBase_pushed(aTHX_ f, mode, arg, tab);
14a5cf38 2608 if (*PerlIONext(f)) {
4b069b44 2609 /* We never call down so do any pending stuff now */
03c0554d 2610 PerlIO_flush(PerlIONext(f));
14a5cf38 2611 /*
71200d45 2612 * XXX could (or should) we retrieve the oflags from the open file
14a5cf38 2613 * handle rather than believing the "mode" we are passed in? XXX
71200d45 2614 * Should the value on NULL mode be 0 or -1?
14a5cf38 2615 */
acbd16bf 2616 PerlIOUnix_setfd(aTHX_ f, PerlIO_fileno(PerlIONext(f)),
aa063c35 2617 mode ? PerlIOUnix_oflags(mode) : -1);
14a5cf38
JH
2618 }
2619 PerlIOBase(f)->flags |= PERLIO_F_OPEN;
6caa5a9c 2620
14a5cf38 2621 return code;
4b803d04
NIS
2622}
2623
c2fcde81
JH
2624IV
2625PerlIOUnix_seek(pTHX_ PerlIO *f, Off_t offset, int whence)
2626{
de009b76 2627 const int fd = PerlIOSelf(f, PerlIOUnix)->fd;
0723351e 2628 Off_t new_loc;
96a5add6 2629 PERL_UNUSED_CONTEXT;
c2fcde81
JH
2630 if (PerlIOBase(f)->flags & PERLIO_F_NOTREG) {
2631#ifdef ESPIPE
2632 SETERRNO(ESPIPE, LIB_INVARG);
2633#else
2634 SETERRNO(EINVAL, LIB_INVARG);
2635#endif
2636 return -1;
2637 }
0723351e
NC
2638 new_loc = PerlLIO_lseek(fd, offset, whence);
2639 if (new_loc == (Off_t) - 1)
dcda55fc 2640 return -1;
c2fcde81
JH
2641 PerlIOBase(f)->flags &= ~PERLIO_F_EOF;
2642 return 0;
2643}
2644
9e353e3b 2645PerlIO *
14a5cf38
JH
2646PerlIOUnix_open(pTHX_ PerlIO_funcs *self, PerlIO_list_t *layers,
2647 IV n, const char *mode, int fd, int imode,
2648 int perm, PerlIO *f, int narg, SV **args)
2649{
d9dac8cd 2650 if (PerlIOValid(f)) {
cc6623a8 2651 if (PerlIOBase(f)->tab && PerlIOBase(f)->flags & PERLIO_F_OPEN)
f62ce20a 2652 (*PerlIOBase(f)->tab->Close)(aTHX_ f);
14a5cf38
JH
2653 }
2654 if (narg > 0) {
3b6c1aba 2655 if (*mode == IoTYPE_NUMERIC)
14a5cf38
JH
2656 mode++;
2657 else {
2658 imode = PerlIOUnix_oflags(mode);
5e2ce0f3
CB
2659#ifdef VMS
2660 perm = 0777; /* preserve RMS defaults, ACL inheritance, etc. */
2661#else
14a5cf38 2662 perm = 0666;
5e2ce0f3 2663#endif
14a5cf38
JH
2664 }
2665 if (imode != -1) {
41188aa0
TC
2666 STRLEN len;
2667 const char *path = SvPV_const(*args, len);
2668 if (!IS_SAFE_PATHNAME(path, len, "open"))
c8028aa6 2669 return NULL;
14a5cf38
JH
2670 fd = PerlLIO_open3(path, imode, perm);
2671 }
2672 }
2673 if (fd >= 0) {
3b6c1aba 2674 if (*mode == IoTYPE_IMPLICIT)
14a5cf38
JH
2675 mode++;
2676 if (!f) {
2677 f = PerlIO_allocate(aTHX);
d9dac8cd
NIS
2678 }
2679 if (!PerlIOValid(f)) {
a33cf58c 2680 if (!(f = PerlIO_push(aTHX_ f, self, mode, PerlIOArg))) {
0a20f69b 2681 PerlLIO_close(fd);
a33cf58c
NIS
2682 return NULL;
2683 }
d9dac8cd 2684 }
aa063c35 2685 PerlIOUnix_setfd(aTHX_ f, fd, imode);
14a5cf38 2686 PerlIOBase(f)->flags |= PERLIO_F_OPEN;
c2fcde81
JH
2687 if (*mode == IoTYPE_APPEND)
2688 PerlIOUnix_seek(aTHX_ f, 0, SEEK_END);
14a5cf38
JH
2689 return f;
2690 }
2691 else {
2692 if (f) {
6f207bd3 2693 NOOP;
14a5cf38 2694 /*
71200d45 2695 * FIXME: pop layers ???
14a5cf38
JH
2696 */
2697 }
2698 return NULL;
2699 }
9e353e3b
NIS
2700}
2701
71200d45 2702PerlIO *
ecdeb87c 2703PerlIOUnix_dup(pTHX_ PerlIO *f, PerlIO *o, CLONE_PARAMS *param, int flags)
71200d45 2704{
dcda55fc 2705 const PerlIOUnix * const os = PerlIOSelf(o, PerlIOUnix);
93a8090d 2706 int fd = os->fd;
ecdeb87c
NIS
2707 if (flags & PERLIO_DUP_FD) {
2708 fd = PerlLIO_dup(fd);
2709 }
22c96fc1 2710 if (fd >= 0) {
ecdeb87c 2711 f = PerlIOBase_dup(aTHX_ f, o, param, flags);
71200d45
NIS
2712 if (f) {
2713 /* If all went well overwrite fd in dup'ed lay with the dup()'ed fd */
aa063c35 2714 PerlIOUnix_setfd(aTHX_ f, fd, os->oflags);
71200d45
NIS
2715 return f;
2716 }
0a20f69b 2717 PerlLIO_close(fd);
71200d45
NIS
2718 }
2719 return NULL;
2720}
2721
2722
9e353e3b 2723SSize_t
f62ce20a 2724PerlIOUnix_read(pTHX_ PerlIO *f, void *vbuf, Size_t count)
9e353e3b 2725{
abf9167d
DM
2726 int fd;
2727 if (PerlIO_lockcnt(f)) /* in use: abort ungracefully */
2728 return -1;
2729 fd = PerlIOSelf(f, PerlIOUnix)->fd;
27da23d5
JH
2730#ifdef PERLIO_STD_SPECIAL
2731 if (fd == 0)
2732 return PERLIO_STD_IN(fd, vbuf, count);
2733#endif
81428673 2734 if (!(PerlIOBase(f)->flags & PERLIO_F_CANREAD) ||
1fd8f4ce 2735 PerlIOBase(f)->flags & (PERLIO_F_EOF|PERLIO_F_ERROR)) {
263df5f1 2736 return 0;
1fd8f4ce 2737 }
14a5cf38 2738 while (1) {
b464bac0 2739 const SSize_t len = PerlLIO_read(fd, vbuf, count);
14a5cf38 2740 if (len >= 0 || errno != EINTR) {
ba85f2ea
NIS
2741 if (len < 0) {
2742 if (errno != EAGAIN) {
2743 PerlIOBase(f)->flags |= PERLIO_F_ERROR;
0ea86a10 2744 PerlIO_save_errno(f);
ba85f2ea
NIS
2745 }
2746 }
2747 else if (len == 0 && count != 0) {
14a5cf38 2748 PerlIOBase(f)->flags |= PERLIO_F_EOF;
ba85f2ea
NIS
2749 SETERRNO(0,0);
2750 }
14a5cf38
JH
2751 return len;
2752 }
abf9167d
DM
2753 /* EINTR */
2754 if (PL_sig_pending && S_perlio_async_run(aTHX_ f))
2755 return -1;
14a5cf38 2756 }
e5964223 2757 NOT_REACHED; /*NOTREACHED*/
9e353e3b
NIS
2758}
2759
2760SSize_t
f62ce20a 2761PerlIOUnix_write(pTHX_ PerlIO *f, const void *vbuf, Size_t count)
9e353e3b 2762{
abf9167d
DM
2763 int fd;
2764 if (PerlIO_lockcnt(f)) /* in use: abort ungracefully */
2765 return -1;
2766 fd = PerlIOSelf(f, PerlIOUnix)->fd;
27da23d5
JH
2767#ifdef PERLIO_STD_SPECIAL
2768 if (fd == 1 || fd == 2)
2769 return PERLIO_STD_OUT(fd, vbuf, count);
2770#endif
14a5cf38 2771 while (1) {
de009b76 2772 const SSize_t len = PerlLIO_write(fd, vbuf, count);
14a5cf38 2773 if (len >= 0 || errno != EINTR) {
ba85f2ea
NIS
2774 if (len < 0) {
2775 if (errno != EAGAIN) {
2776 PerlIOBase(f)->flags |= PERLIO_F_ERROR;
0ea86a10 2777 PerlIO_save_errno(f);
ba85f2ea
NIS
2778 }
2779 }
14a5cf38
JH
2780 return len;
2781 }
abf9167d
DM
2782 /* EINTR */
2783 if (PL_sig_pending && S_perlio_async_run(aTHX_ f))
2784 return -1;
06da4f11 2785 }
e5964223 2786 NOT_REACHED; /*NOTREACHED*/
9e353e3b
NIS
2787}
2788
9e353e3b 2789Off_t
f62ce20a 2790PerlIOUnix_tell(pTHX_ PerlIO *f)
9e353e3b 2791{
96a5add6
AL
2792 PERL_UNUSED_CONTEXT;
2793
14a5cf38 2794 return PerlLIO_lseek(PerlIOSelf(f, PerlIOUnix)->fd, 0, SEEK_CUR);
9e353e3b
NIS
2795}
2796
2556f95e
GF
2797
2798IV
2376d97d 2799PerlIOUnix_close(pTHX_ PerlIO *f)
2556f95e 2800{
de009b76 2801 const int fd = PerlIOSelf(f, PerlIOUnix)->fd;
14a5cf38 2802 int code = 0;
168d5872
NIS
2803 if (PerlIOBase(f)->flags & PERLIO_F_OPEN) {
2804 if (PerlIOUnix_refcnt_dec(fd) > 0) {
93a8090d
NIS
2805 PerlIOBase(f)->flags &= ~PERLIO_F_OPEN;
2806 return 0;
22569500 2807 }
93a8090d
NIS
2808 }
2809 else {
93189314 2810 SETERRNO(EBADF,SS_IVCHAN);
93a8090d
NIS
2811 return -1;
2812 }
14a5cf38
JH
2813 while (PerlLIO_close(fd) != 0) {
2814 if (errno != EINTR) {
2815 code = -1;
2816 break;
2817 }
abf9167d
DM
2818 /* EINTR */
2819 if (PL_sig_pending && S_perlio_async_run(aTHX_ f))
2820 return -1;
14a5cf38
JH
2821 }
2822 if (code == 0) {
2823 PerlIOBase(f)->flags &= ~PERLIO_F_OPEN;
2824 }
2825 return code;
9e353e3b
NIS
2826}
2827
27da23d5 2828PERLIO_FUNCS_DECL(PerlIO_unix) = {
2dc2558e 2829 sizeof(PerlIO_funcs),
14a5cf38
JH
2830 "unix",
2831 sizeof(PerlIOUnix),
2832 PERLIO_K_RAW,
2833 PerlIOUnix_pushed,
2376d97d 2834 PerlIOBase_popped,
14a5cf38 2835 PerlIOUnix_open,
86e05cf2 2836 PerlIOBase_binmode, /* binmode */
14a5cf38
JH
2837 NULL,
2838 PerlIOUnix_fileno,
71200d45 2839 PerlIOUnix_dup,
14a5cf38
JH
2840 PerlIOUnix_read,
2841 PerlIOBase_unread,
2842 PerlIOUnix_write,
2843 PerlIOUnix_seek,
2844 PerlIOUnix_tell,
2845 PerlIOUnix_close,
22569500
NIS
2846 PerlIOBase_noop_ok, /* flush */
2847 PerlIOBase_noop_fail, /* fill */
14a5cf38
JH
2848 PerlIOBase_eof,
2849 PerlIOBase_error,
2850 PerlIOBase_clearerr,
2851 PerlIOBase_setlinebuf,
22569500
NIS
2852 NULL, /* get_base */
2853 NULL, /* get_bufsiz */
2854 NULL, /* get_ptr */
2855 NULL, /* get_cnt */
2856 NULL, /* set_ptrcnt */
9e353e3b
NIS
2857};
2858
2859/*--------------------------------------------------------------------------------------*/
14a5cf38 2860/*
71200d45 2861 * stdio as a layer
14a5cf38 2862 */
9e353e3b 2863
313e59c8
NIS
2864#if defined(VMS) && !defined(STDIO_BUFFER_WRITABLE)
2865/* perl5.8 - This ensures the last minute VMS ungetc fix is not
2866 broken by the last second glibc 2.3 fix
2867 */
2868#define STDIO_BUFFER_WRITABLE
2869#endif
2870
2871
14a5cf38
JH
2872typedef struct {
2873 struct _PerlIO base;
22569500 2874 FILE *stdio; /* The stream */
9e353e3b
NIS
2875} PerlIOStdio;
2876
2877IV
f62ce20a 2878PerlIOStdio_fileno(pTHX_ PerlIO *f)
9e353e3b 2879{
96a5add6
AL
2880 PERL_UNUSED_CONTEXT;
2881
c4420975
AL
2882 if (PerlIOValid(f)) {
2883 FILE * const s = PerlIOSelf(f, PerlIOStdio)->stdio;
2884 if (s)
2885 return PerlSIO_fileno(s);
439ba545
NIS
2886 }
2887 errno = EBADF;
2888 return -1;
9e353e3b
NIS
2889}
2890
766a733e 2891char *
14a5cf38
JH
2892PerlIOStdio_mode(const char *mode, char *tmode)
2893{
de009b76 2894 char * const ret = tmode;
a0625d38
SR
2895 if (mode) {
2896 while (*mode) {
2897 *tmode++ = *mode++;
2898 }
14a5cf38 2899 }
95005ad8 2900#if defined(PERLIO_USING_CRLF) || defined(__CYGWIN__)
6ce75a77
JH
2901 *tmode++ = 'b';
2902#endif
14a5cf38
JH
2903 *tmode = '\0';
2904 return ret;
2905}
2906
4b803d04 2907IV
2dc2558e 2908PerlIOStdio_pushed(pTHX_ PerlIO *f, const char *mode, SV *arg, PerlIO_funcs *tab)
4b803d04 2909{
1fd8f4ce
NIS
2910 PerlIO *n;
2911 if (PerlIOValid(f) && PerlIOValid(n = PerlIONext(f))) {
46c461b5 2912 PerlIO_funcs * const toptab = PerlIOBase(n)->tab;
1fd8f4ce
NIS
2913 if (toptab == tab) {
2914 /* Top is already stdio - pop self (duplicate) and use original */
2915 PerlIO_pop(aTHX_ f);
2916 return 0;
2917 } else {
de009b76 2918 const int fd = PerlIO_fileno(n);
1fd8f4ce
NIS
2919 char tmode[8];
2920 FILE *stdio;
81428673 2921 if (fd >= 0 && (stdio = PerlSIO_fdopen(fd,
1fd8f4ce
NIS
2922 mode = PerlIOStdio_mode(mode, tmode)))) {
2923 PerlIOSelf(f, PerlIOStdio)->stdio = stdio;
2924 /* We never call down so do any pending stuff now */
2925 PerlIO_flush(PerlIONext(f));
2a600bb8 2926 return PerlIOBase_pushed(aTHX_ f, mode, arg, tab);
81428673 2927 }
1fd8f4ce
NIS
2928 else {
2929 return -1;
2930 }
2931 }
14a5cf38 2932 }
2dc2558e 2933 return PerlIOBase_pushed(aTHX_ f, mode, arg, tab);
4b803d04
NIS
2934}
2935
22569500 2936
9e353e3b 2937PerlIO *
4b069b44 2938PerlIO_importFILE(FILE *stdio, const char *mode)
9e353e3b 2939{
14a5cf38
JH
2940 dTHX;
2941 PerlIO *f = NULL;
ea5bc90f
YK
2942#ifdef EBCDIC
2943 int rc;
2944 char filename[FILENAME_MAX];
2945 fldata_t fileinfo;
2946#endif
14a5cf38 2947 if (stdio) {
22569500 2948 PerlIOStdio *s;
375ed12a
JH
2949 int fd0 = fileno(stdio);
2950 if (fd0 < 0) {
ea5bc90f
YK
2951#ifdef EBCDIC
2952 rc = fldata(stdio,filename,&fileinfo);
2953 if(rc != 0){
2954 return NULL;
2955 }
2956 if(fileinfo.__dsorgHFS){
2957 return NULL;
2958 }
2959 /*This MVS dataset , OK!*/
2960#else
375ed12a 2961 return NULL;
ea5bc90f 2962#endif
375ed12a 2963 }
4b069b44
NIS
2964 if (!mode || !*mode) {
2965 /* We need to probe to see how we can open the stream
2966 so start with read/write and then try write and read
2967 we dup() so that we can fclose without loosing the fd.
2968
2969 Note that the errno value set by a failing fdopen
2970 varies between stdio implementations.
2971 */
375ed12a
JH
2972 const int fd = PerlLIO_dup(fd0);
2973 FILE *f2;
2974 if (fd < 0) {
2975 return f;
2976 }
2977 f2 = PerlSIO_fdopen(fd, (mode = "r+"));
4b069b44 2978 if (!f2) {
a33cf58c 2979 f2 = PerlSIO_fdopen(fd, (mode = "w"));
4b069b44
NIS
2980 }
2981 if (!f2) {
a33cf58c 2982 f2 = PerlSIO_fdopen(fd, (mode = "r"));
4b069b44
NIS
2983 }
2984 if (!f2) {
2985 /* Don't seem to be able to open */
2986 PerlLIO_close(fd);
2987 return f;
2988 }
2989 fclose(f2);
22569500 2990 }
de092133 2991 if ((f = PerlIO_push(aTHX_(PerlIO_allocate(aTHX)), PERLIO_FUNCS_CAST(&PerlIO_stdio), mode, NULL))) {
a33cf58c
NIS
2992 s = PerlIOSelf(f, PerlIOStdio);
2993 s->stdio = stdio;
ea5bc90f
YK
2994#ifdef EBCDIC
2995 fd0 = fileno(stdio);
2996 if(fd0 != -1){
2997 PerlIOUnix_refcnt_inc(fd0);
2998 }
2999 else{
3000 rc = fldata(stdio,filename,&fileinfo);
3001 if(rc != 0){
3002 PerlIOUnix_refcnt_inc(fd0);
3003 }
3004 if(fileinfo.__dsorgHFS){
3005 PerlIOUnix_refcnt_inc(fd0);
3006 }
3007 /*This MVS dataset , OK!*/
3008 }
3009#else
c586124f 3010 PerlIOUnix_refcnt_inc(fileno(stdio));
ea5bc90f 3011#endif
a33cf58c 3012 }
14a5cf38
JH
3013 }
3014 return f;
9e353e3b
NIS
3015}
3016
3017PerlIO *
14a5cf38
JH
3018PerlIOStdio_open(pTHX_ PerlIO_funcs *self, PerlIO_list_t *layers,
3019 IV n, const char *mode, int fd, int imode,
3020 int perm, PerlIO *f, int narg, SV **args)
3021{
3022 char tmode[8];
d9dac8cd 3023 if (PerlIOValid(f)) {
41188aa0
TC
3024 STRLEN len;
3025 const char * const path = SvPV_const(*args, len);
dcda55fc 3026 PerlIOStdio * const s = PerlIOSelf(f, PerlIOStdio);
1751d015 3027 FILE *stdio;
41188aa0 3028 if (!IS_SAFE_PATHNAME(path, len, "open"))
c8028aa6 3029 return NULL;
1751d015 3030 PerlIOUnix_refcnt_dec(fileno(s->stdio));
de092133
JH
3031 stdio = PerlSIO_freopen(path, PerlIOStdio_mode(mode, tmode),
3032 s->stdio);
14a5cf38
JH
3033 if (!s->stdio)
3034 return NULL;
3035 s->stdio = stdio;
1751d015 3036 PerlIOUnix_refcnt_inc(fileno(s->stdio));
14a5cf38
JH
3037 return f;
3038 }
3039 else {
3040 if (narg > 0) {
41188aa0
TC
3041 STRLEN len;
3042 const char * const path = SvPV_const(*args, len);
3043 if (!IS_SAFE_PATHNAME(path, len, "open"))
c8028aa6 3044 return NULL;
3b6c1aba 3045 if (*mode == IoTYPE_NUMERIC) {
14a5cf38
JH
3046 mode++;
3047 fd = PerlLIO_open3(path, imode, perm);
3048 }
3049 else {
95005ad8
GH
3050 FILE *stdio;
3051 bool appended = FALSE;
3052#ifdef __CYGWIN__
3053 /* Cygwin wants its 'b' early. */
3054 appended = TRUE;
3055 mode = PerlIOStdio_mode(mode, tmode);
3056#endif
3057 stdio = PerlSIO_fopen(path, mode);
6f0313ac 3058 if (stdio) {
6f0313ac
JH
3059 if (!f) {
3060 f = PerlIO_allocate(aTHX);
3061 }
95005ad8
GH
3062 if (!appended)
3063 mode = PerlIOStdio_mode(mode, tmode);
3064 f = PerlIO_push(aTHX_ f, self, mode, PerlIOArg);
3065 if (f) {
0f0f9e2b
JH
3066 PerlIOSelf(f, PerlIOStdio)->stdio = stdio;
3067 PerlIOUnix_refcnt_inc(fileno(stdio));
3068 } else {
3069 PerlSIO_fclose(stdio);
6f0313ac
JH
3070 }
3071 return f;
3072 }
3073 else {
3074 return NULL;
3075 }
14a5cf38
JH
3076 }
3077 }
3078 if (fd >= 0) {
3079 FILE *stdio = NULL;
3080 int init = 0;
3b6c1aba 3081 if (*mode == IoTYPE_IMPLICIT) {
14a5cf38
JH
3082 init = 1;
3083 mode++;
3084 }
3085 if (init) {
3086 switch (fd) {
3087 case 0:
3088 stdio = PerlSIO_stdin;
3089 break;
3090 case 1:
3091 stdio = PerlSIO_stdout;
3092 break;
3093 case 2:
3094 stdio = PerlSIO_stderr;
3095 break;
3096 }
3097 }
3098 else {
3099 stdio = PerlSIO_fdopen(fd, mode =
3100 PerlIOStdio_mode(mode, tmode));
3101 }
3102 if (stdio) {
d9dac8cd
NIS
3103 if (!f) {
3104 f = PerlIO_allocate(aTHX);
3105 }
a33cf58c 3106 if ((f = PerlIO_push(aTHX_ f, self, mode, PerlIOArg))) {
1a159fba
JH
3107 PerlIOSelf(f, PerlIOStdio)->stdio = stdio;
3108 PerlIOUnix_refcnt_inc(fileno(stdio));
a33cf58c 3109 }
14a5cf38
JH
3110 return f;
3111 }
0a20f69b 3112 PerlLIO_close(fd);
14a5cf38
JH
3113 }
3114 }
ee518936 3115 return NULL;
9e353e3b
NIS
3116}
3117
1751d015 3118PerlIO *
ecdeb87c 3119PerlIOStdio_dup(pTHX_ PerlIO *f, PerlIO *o, CLONE_PARAMS *param, int flags)
1751d015
NIS
3120{
3121 /* This assumes no layers underneath - which is what
3122 happens, but is not how I remember it. NI-S 2001/10/16
3123 */
ecdeb87c 3124 if ((f = PerlIOBase_dup(aTHX_ f, o, param, flags))) {
694c95cf 3125 FILE *stdio = PerlIOSelf(o, PerlIOStdio)->stdio;
de009b76 3126 const int fd = fileno(stdio);
9217ff3f 3127 char mode[8];
ecdeb87c 3128 if (flags & PERLIO_DUP_FD) {
de009b76 3129 const int dfd = PerlLIO_dup(fileno(stdio));
9217ff3f
NIS
3130 if (dfd >= 0) {
3131 stdio = PerlSIO_fdopen(dfd, PerlIO_modestr(o,mode));
3132 goto set_this;
ecdeb87c
NIS
3133 }
3134 else {
6f207bd3 3135 NOOP;
ecdeb87c
NIS
3136 /* FIXME: To avoid messy error recovery if dup fails
3137 re-use the existing stdio as though flag was not set
3138 */
3139 }
3140 }
9217ff3f
NIS
3141 stdio = PerlSIO_fdopen(fd, PerlIO_modestr(o,mode));
3142 set_this:
694c95cf 3143 PerlIOSelf(f, PerlIOStdio)->stdio = stdio;
40596bc5
SP
3144 if(stdio) {
3145 PerlIOUnix_refcnt_inc(fileno(stdio));
3146 }
1751d015
NIS
3147 }
3148 return f;
3149}
3150
0d7a5398
NIS
3151static int
3152PerlIOStdio_invalidate_fileno(pTHX_ FILE *f)
3153{
96a5add6
AL
3154 PERL_UNUSED_CONTEXT;
3155
0d7a5398 3156 /* XXX this could use PerlIO_canset_fileno() and
37725cdc 3157 * PerlIO_set_fileno() support from Configure
0d7a5398 3158 */
36b1c892
AD
3159# if defined(HAS_FDCLOSE)
3160 return fdclose(f, NULL) == 0 ? 1 : 0;
3161# elif defined(__UCLIBC__)
ef8eacb8
AT
3162 /* uClibc must come before glibc because it defines __GLIBC__ as well. */
3163 f->__filedes = -1;
3164 return 1;
3165# elif defined(__GLIBC__)
0d7a5398 3166 /* There may be a better way for GLIBC:
37725cdc 3167 - libio.h defines a flag to not close() on cleanup
0d7a5398
NIS
3168 */
3169 f->_fileno = -1;
3170 return 1;
bdea967c 3171# elif defined(__sun)
f5992bc4 3172 PERL_UNUSED_ARG(f);
cfedb851 3173 return 0;
0d7a5398
NIS
3174# elif defined(__hpux)
3175 f->__fileH = 0xff;
3176 f->__fileL = 0xff;
3177 return 1;
9837d373 3178 /* Next one ->_file seems to be a reasonable fallback, i.e. if
37725cdc 3179 your platform does not have special entry try this one.
9837d373
NIS
3180 [For OSF only have confirmation for Tru64 (alpha)
3181 but assume other OSFs will be similar.]
37725cdc 3182 */
9837d373 3183# elif defined(_AIX) || defined(__osf__) || defined(__irix__)
0d7a5398
NIS
3184 f->_file = -1;
3185 return 1;
3186# elif defined(__FreeBSD__)
3187 /* There may be a better way on FreeBSD:
37725cdc
NIS
3188 - we could insert a dummy func in the _close function entry
3189 f->_close = (int (*)(void *)) dummy_close;
0d7a5398
NIS
3190 */
3191 f->_file = -1;
0c49ea6a
SU
3192 return 1;
3193# elif defined(__OpenBSD__)
3194 /* There may be a better way on OpenBSD:
3195 - we could insert a dummy func in the _close function entry
3196 f->_close = (int (*)(void *)) dummy_close;
3197 */
3198 f->_file = -1;
0d7a5398 3199 return 1;
59ad941d
IZ
3200# elif defined(__EMX__)
3201 /* f->_flags &= ~_IOOPEN; */ /* Will leak stream->_buffer */
3202 f->_handle = -1;
3203 return 1;
0d7a5398
NIS
3204# elif defined(__CYGWIN__)
3205 /* There may be a better way on CYGWIN:
37725cdc
NIS
3206 - we could insert a dummy func in the _close function entry
3207 f->_close = (int (*)(void *)) dummy_close;
0d7a5398
NIS
3208 */
3209 f->_file = -1;
3210 return 1;
3211# elif defined(WIN32)
378eeda7 3212# if defined(UNDER_CE)
b475b3e6
JH
3213 /* WIN_CE does not have access to FILE internals, it hardly has FILE
3214 structure at all
3215 */
0d7a5398 3216# else
1f664ef5 3217 PERLIO_FILE_file(f) = -1;
0d7a5398
NIS
3218# endif
3219 return 1;
3220# else
3221#if 0
37725cdc 3222 /* Sarathy's code did this - we fall back to a dup/dup2 hack
0d7a5398 3223 (which isn't thread safe) instead
37725cdc 3224 */
0d7a5398
NIS
3225# error "Don't know how to set FILE.fileno on your platform"
3226#endif
8772537c 3227 PERL_UNUSED_ARG(f);
0d7a5398
NIS
3228 return 0;
3229# endif
3230}
3231
1751d015 3232IV
f62ce20a 3233PerlIOStdio_close(pTHX_ PerlIO *f)
1751d015 3234{
c4420975 3235 FILE * const stdio = PerlIOSelf(f, PerlIOStdio)->stdio;
439ba545
NIS
3236 if (!stdio) {
3237 errno = EBADF;
3238 return -1;
3239 }
9217ff3f 3240 else {
de009b76 3241 const int fd = fileno(stdio);
0d7a5398 3242 int invalidate = 0;
bbfd922f 3243 IV result = 0;
1d791a44 3244 int dupfd = -1;
4ee39169 3245 dSAVEDERRNO;
a2e578da
MHM
3246#ifdef USE_ITHREADS
3247 dVAR;
3248#endif
0d7a5398 3249#ifdef SOCKS5_VERSION_NAME
37725cdc
NIS
3250 /* Socks lib overrides close() but stdio isn't linked to
3251 that library (though we are) - so we must call close()
3252 on sockets on stdio's behalf.
3253 */
0d7a5398
NIS
3254 int optval;
3255 Sock_size_t optlen = sizeof(int);
6b4ce6c8 3256 if (getsockopt(fd, SOL_SOCKET, SO_TYPE, (void *) &optval, &optlen) == 0)
37725cdc 3257 invalidate = 1;
0d7a5398 3258#endif
d8723f43
NC
3259 /* Test for -1, as *BSD stdio (at least) on fclose sets the FILE* such
3260 that a subsequent fileno() on it returns -1. Don't want to croak()
3261 from within PerlIOUnix_refcnt_dec() if some buggy caller code is
3262 trying to close an already closed handle which somehow it still has
3263 a reference to. (via.xs, I'm looking at you). */
3264 if (fd != -1 && PerlIOUnix_refcnt_dec(fd) > 0) {
3265 /* File descriptor still in use */
0d7a5398 3266 invalidate = 1;
d8723f43 3267 }
0d7a5398 3268 if (invalidate) {
6b4ce6c8
AL
3269 /* For STD* handles, don't close stdio, since we shared the FILE *, too. */
3270 if (stdio == stdin) /* Some stdios are buggy fflush-ing inputs */
3271 return 0;
3272 if (stdio == stdout || stdio == stderr)
3273 return PerlIO_flush(f);
d88f7f65 3274 }
d88f7f65
JH
3275 MUTEX_LOCK(&PL_perlio_mutex);
3276 /* Right. We need a mutex here because for a brief while we
3277 will have the situation that fd is actually closed. Hence if
3278 a second thread were to get into this block, its dup() would
3279 likely return our fd as its dupfd. (after all, it is closed)
3280 Then if we get to the dup2() first, we blat the fd back
3281 (messing up its temporary as a side effect) only for it to
3282 then close its dupfd (== our fd) in its close(dupfd) */
3283
3284 /* There is, of course, a race condition, that any other thread
3285 trying to input/output/whatever on this fd will be stuffed
3286 for the duration of this little manoeuvrer. Perhaps we
3287 should hold an IO mutex for the duration of every IO
3288 operation if we know that invalidate doesn't work on this
3289 platform, but that would suck, and could kill performance.
3290
3291 Except that correctness trumps speed.
3292 Advice from klortho #11912. */
d88f7f65 3293 if (invalidate) {
37725cdc
NIS
3294 /* Tricky - must fclose(stdio) to free memory but not close(fd)
3295 Use Sarathy's trick from maint-5.6 to invalidate the
3296 fileno slot of the FILE *
3297 */
bbfd922f 3298 result = PerlIO_flush(f);
4ee39169 3299 SAVE_ERRNO;
6b4ce6c8 3300 invalidate = PerlIOStdio_invalidate_fileno(aTHX_ stdio);
711e8db2 3301 if (!invalidate) {
6b4ce6c8 3302 dupfd = PerlLIO_dup(fd);
711e8db2 3303#ifdef USE_ITHREADS
9bab90c0 3304 if (dupfd < 0) {
711e8db2
NC
3305 /* Oh cXap. This isn't going to go well. Not sure if we can
3306 recover from here, or if closing this particular FILE *
3307 is a good idea now. */
3308 }
3309#endif
3310 }
94ccb807
JH
3311 } else {
3312 SAVE_ERRNO; /* This is here only to silence compiler warnings */
37725cdc 3313 }
0d7a5398 3314 result = PerlSIO_fclose(stdio);
37725cdc
NIS
3315 /* We treat error from stdio as success if we invalidated
3316 errno may NOT be expected EBADF
e8529473
NIS
3317 */
3318 if (invalidate && result != 0) {
4ee39169 3319 RESTORE_ERRNO;
0d7a5398 3320 result = 0;
37725cdc 3321 }
6b4ce6c8
AL
3322#ifdef SOCKS5_VERSION_NAME
3323 /* in SOCKS' case, let close() determine return value */
3324 result = close(fd);
3325#endif
1d791a44 3326 if (dupfd >= 0) {
0d7a5398 3327 PerlLIO_dup2(dupfd,fd);
9bab90c0 3328 PerlLIO_close(dupfd);
d88f7f65 3329 }
d88f7f65 3330 MUTEX_UNLOCK(&PL_perlio_mutex);
9217ff3f 3331 return result;
37725cdc 3332 }
1751d015
NIS
3333}
3334
9e353e3b 3335SSize_t
f62ce20a 3336PerlIOStdio_read(pTHX_ PerlIO *f, void *vbuf, Size_t count)
9e353e3b 3337{
abf9167d 3338 FILE * s;
14a5cf38 3339 SSize_t got = 0;
abf9167d
DM
3340 if (PerlIO_lockcnt(f)) /* in use: abort ungracefully */
3341 return -1;
3342 s = PerlIOSelf(f, PerlIOStdio)->stdio;
4d948241
NIS
3343 for (;;) {
3344 if (count == 1) {
3345 STDCHAR *buf = (STDCHAR *) vbuf;
3346 /*
3347 * Perl is expecting PerlIO_getc() to fill the buffer Linux's
3348 * stdio does not do that for fread()
3349 */
de009b76 3350 const int ch = PerlSIO_fgetc(s);
4d948241
NIS
3351 if (ch != EOF) {
3352 *buf = ch;
3353 got = 1;
3354 }
14a5cf38 3355 }
4d948241
NIS
3356 else
3357 got = PerlSIO_fread(vbuf, 1, count, s);
b1d8b47a
CS
3358 if (got == 0 && PerlSIO_ferror(s))
3359 got = -1;
42a7a32f 3360 if (got >= 0 || errno != EINTR)
4d948241 3361 break;
abf9167d
DM
3362 if (PL_sig_pending && S_perlio_async_run(aTHX_ f))
3363 return -1;
42a7a32f 3364 SETERRNO(0,0); /* just in case */
14a5cf38 3365 }
bdae4172
JH
3366#ifdef __sgi
3367 /* Under some circumstances IRIX stdio fgetc() and fread()
3368 * set the errno to ENOENT, which makes no sense according
3369 * to either IRIX or POSIX. [rt.perl.org #123977] */
3370 if (errno == ENOENT) SETERRNO(0,0);
3371#endif
14a5cf38 3372 return got;
9e353e3b
NIS
3373}
3374
3375SSize_t
f62ce20a 3376PerlIOStdio_unread(pTHX_ PerlIO *f, const void *vbuf, Size_t count)
9e353e3b 3377{
14a5cf38 3378 SSize_t unread = 0;
c4420975 3379 FILE * const s = PerlIOSelf(f, PerlIOStdio)->stdio;
93679785 3380
313e59c8 3381#ifdef STDIO_BUFFER_WRITABLE
9f7cd136 3382 if (PerlIO_fast_gets(f) && PerlIO_has_base(f)) {
93679785
NIS
3383 STDCHAR *buf = ((STDCHAR *) vbuf) + count;
3384 STDCHAR *base = PerlIO_get_base(f);
3385 SSize_t cnt = PerlIO_get_cnt(f);
3386 STDCHAR *ptr = PerlIO_get_ptr(f);
3387 SSize_t avail = ptr - base;
3388 if (avail > 0) {
3389 if (avail > count) {
3390 avail = count;
3391 }
3392 ptr -= avail;
3393 Move(buf-avail,ptr,avail,STDCHAR);
3394 count -= avail;
3395 unread += avail;
3396 PerlIO_set_ptrcnt(f,ptr,cnt+avail);
9f7cd136
NIS
3397 if (PerlSIO_feof(s) && unread >= 0)
3398 PerlSIO_clearerr(s);
3399 }
3400 }
313e59c8
NIS
3401 else
3402#endif
3403 if (PerlIO_has_cntptr(f)) {
9f7cd136
NIS
3404 /* We can get pointer to buffer but not its base
3405 Do ungetc() but check chars are ending up in the
3406 buffer
3407 */
3408 STDCHAR *eptr = (STDCHAR*)PerlSIO_get_ptr(s);
3409 STDCHAR *buf = ((STDCHAR *) vbuf) + count;
3410 while (count > 0) {
de009b76 3411 const int ch = *--buf & 0xFF;
9f7cd136
NIS
3412 if (ungetc(ch,s) != ch) {
3413 /* ungetc did not work */
3414 break;
3415 }
3416 if ((STDCHAR*)PerlSIO_get_ptr(s) != --eptr || ((*eptr & 0xFF) != ch)) {
3417 /* Did not change pointer as expected */
375ed12a
JH
3418 if (fgetc(s) != EOF) /* get char back again */
3419 break;
9f7cd136
NIS
3420 }
3421 /* It worked ! */
3422 count--;
3423 unread++;
93679785
NIS
3424 }
3425 }
3426
3427 if (count > 0) {
3428 unread += PerlIOBase_unread(aTHX_ f, vbuf, count);
14a5cf38
JH
3429 }
3430 return unread;
9e353e3b
NIS
3431}
3432
3433SSize_t
f62ce20a 3434PerlIOStdio_write(pTHX_ PerlIO *f, const void *vbuf, Size_t count)
9e353e3b 3435{
4d948241 3436 SSize_t got;
abf9167d
DM
3437 if (PerlIO_lockcnt(f)) /* in use: abort ungracefully */
3438 return -1;
4d948241
NIS
3439 for (;;) {
3440 got = PerlSIO_fwrite(vbuf, 1, count,
3441 PerlIOSelf(f, PerlIOStdio)->stdio);
42a7a32f 3442 if (got >= 0 || errno != EINTR)
4d948241 3443 break;
abf9167d
DM
3444 if (PL_sig_pending && S_perlio_async_run(aTHX_ f))
3445 return -1;
42a7a32f 3446 SETERRNO(0,0); /* just in case */
4d948241
NIS
3447 }
3448 return got;
9e353e3b
NIS
3449}
3450
94a175e1 3451IV
f62ce20a 3452PerlIOStdio_seek(pTHX_ PerlIO *f, Off_t offset, int whence)
9e353e3b 3453{
c4420975 3454 FILE * const stdio = PerlIOSelf(f, PerlIOStdio)->stdio;
96a5add6
AL
3455 PERL_UNUSED_CONTEXT;
3456
94a175e1 3457 return PerlSIO_fseek(stdio, offset, whence);
9e353e3b
NIS
3458}
3459
3460Off_t
f62ce20a 3461PerlIOStdio_tell(pTHX_ PerlIO *f)
9e353e3b 3462{
c4420975 3463 FILE * const stdio = PerlIOSelf(f, PerlIOStdio)->stdio;
96a5add6
AL
3464 PERL_UNUSED_CONTEXT;
3465
94a175e1 3466 return PerlSIO_ftell(stdio);
9e353e3b
NIS
3467}
3468
3469IV
f62ce20a 3470PerlIOStdio_flush(pTHX_ PerlIO *f)
9e353e3b 3471{
c4420975 3472 FILE * const stdio = PerlIOSelf(f, PerlIOStdio)->stdio;
96a5add6
AL
3473 PERL_UNUSED_CONTEXT;
3474
14a5cf38
JH
3475 if (PerlIOBase(f)->flags & PERLIO_F_CANWRITE) {
3476 return PerlSIO_fflush(stdio);
3477 }
3478 else {
6f207bd3 3479 NOOP;
88b61e10 3480#if 0
14a5cf38
JH
3481 /*
3482 * FIXME: This discards ungetc() and pre-read stuff which is not
71200d45 3483 * right if this is just a "sync" from a layer above Suspect right
14a5cf38 3484 * design is to do _this_ but not have layer above flush this
71200d45 3485 * layer read-to-read
14a5cf38
JH
3486 */
3487 /*
71200d45 3488 * Not writeable - sync by attempting a seek
14a5cf38 3489 */
4ee39169 3490 dSAVE_ERRNO;
14a5cf38 3491 if (PerlSIO_fseek(stdio, (Off_t) 0, SEEK_CUR) != 0)
4ee39169 3492 RESTORE_ERRNO;
88b61e10 3493#endif
14a5cf38
JH
3494 }
3495 return 0;
9e353e3b
NIS
3496}
3497
3498IV
f62ce20a 3499PerlIOStdio_eof(pTHX_ PerlIO *f)
9e353e3b 3500{
96a5add6
AL
3501 PERL_UNUSED_CONTEXT;
3502
14a5cf38 3503 return PerlSIO_feof(PerlIOSelf(f, PerlIOStdio)->stdio);
9e353e3b
NIS
3504}
3505
3506IV
f62ce20a 3507PerlIOStdio_error(pTHX_ PerlIO *f)
9e353e3b 3508{
96a5add6
AL
3509 PERL_UNUSED_CONTEXT;
3510
263df5f1 3511 return PerlSIO_ferror(PerlIOSelf(f, PerlIOStdio)->stdio);
9e353e3b
NIS
3512}
3513
3514void
f62ce20a 3515PerlIOStdio_clearerr(pTHX_ PerlIO *f)
9e353e3b 3516{
96a5add6
AL
3517 PERL_UNUSED_CONTEXT;
3518
14a5cf38 3519 PerlSIO_clearerr(PerlIOSelf(f, PerlIOStdio)->stdio);
9e353e3b
NIS
3520}
3521
3522void
f62ce20a 3523PerlIOStdio_setlinebuf(pTHX_ PerlIO *f)
9e353e3b 3524{
96a5add6
AL
3525 PERL_UNUSED_CONTEXT;
3526
9e353e3b 3527#ifdef HAS_SETLINEBUF
14a5cf38 3528 PerlSIO_setlinebuf(PerlIOSelf(f, PerlIOStdio)->stdio);
9e353e3b 3529#else
bd61b366 3530 PerlSIO_setvbuf(PerlIOSelf(f, PerlIOStdio)->stdio, NULL, _IOLBF, 0);
9e353e3b
NIS
3531#endif
3532}
3533
3534#ifdef FILE_base
3535STDCHAR *
f62ce20a 3536PerlIOStdio_get_base(pTHX_ PerlIO *f)
9e353e3b 3537{
c4420975 3538 FILE * const stdio = PerlIOSelf(f, PerlIOStdio)->stdio;
e9b8343f 3539 PERL_UNUSED_CONTEXT;
cc00df79 3540 return (STDCHAR*)PerlSIO_get_base(stdio);
9e353e3b
NIS
3541}
3542
3543Size_t
f62ce20a 3544PerlIOStdio_get_bufsiz(pTHX_ PerlIO *f)
9e353e3b 3545{
c4420975 3546 FILE * const stdio = PerlIOSelf(f, PerlIOStdio)->stdio;
e9b8343f 3547 PERL_UNUSED_CONTEXT;
14a5cf38 3548 return PerlSIO_get_bufsiz(stdio);
9e353e3b
NIS
3549}
3550#endif
3551
3552#ifdef USE_STDIO_PTR
3553STDCHAR *
f62ce20a 3554PerlIOStdio_get_ptr(pTHX_ PerlIO *f)
9e353e3b 3555{
c4420975 3556 FILE * const stdio = PerlIOSelf(f, PerlIOStdio)->stdio;
e9b8343f 3557 PERL_UNUSED_CONTEXT;
cc00df79 3558 return (STDCHAR*)PerlSIO_get_ptr(stdio);
9e353e3b
NIS
3559}
3560
3561SSize_t
f62ce20a 3562PerlIOStdio_get_cnt(pTHX_ PerlIO *f)
9e353e3b 3563{
c4420975 3564 FILE * const stdio = PerlIOSelf(f, PerlIOStdio)->stdio;
e9b8343f 3565 PERL_UNUSED_CONTEXT;
14a5cf38 3566 return PerlSIO_get_cnt(stdio);
9e353e3b
NIS
3567}
3568
3569void
f62ce20a 3570PerlIOStdio_set_ptrcnt(pTHX_ PerlIO *f, STDCHAR * ptr, SSize_t cnt)
9e353e3b 3571{
c4420975 3572 FILE * const stdio = PerlIOSelf(f, PerlIOStdio)->stdio;
e9b8343f 3573 PERL_UNUSED_CONTEXT;
14a5cf38 3574 if (ptr != NULL) {
9e353e3b 3575#ifdef STDIO_PTR_LVALUE
46f05249
JH
3576 /* This is a long-standing infamous mess. The root of the
3577 * problem is that one cannot know the signedness of char, and
3578 * more precisely the signedness of FILE._ptr. The following
3579 * things have been tried, and they have all failed (across
3580 * different compilers (remember that core needs to to build
3581 * also with c++) and compiler options:
3582 *
3583 * - casting the RHS to (void*) -- works in *some* places
3584 * - casting the LHS to (void*) -- totally unportable
3585 *
3586 * So let's try silencing the warning at least for gcc. */
3587 GCC_DIAG_IGNORE(-Wpointer-sign);
d06fc7d4 3588 PerlSIO_set_ptr(stdio, ptr); /* LHS STDCHAR* cast non-portable */
46f05249 3589 GCC_DIAG_RESTORE;
9e353e3b 3590#ifdef STDIO_PTR_LVAL_SETS_CNT
f8a4dbc5 3591 assert(PerlSIO_get_cnt(stdio) == (cnt));
9e353e3b
NIS
3592#endif
3593#if (!defined(STDIO_PTR_LVAL_NOCHANGE_CNT))
14a5cf38 3594 /*
71200d45 3595 * Setting ptr _does_ change cnt - we are done
14a5cf38
JH
3596 */
3597 return;
9e353e3b 3598#endif
22569500 3599#else /* STDIO_PTR_LVALUE */
14a5cf38 3600 PerlProc_abort();
22569500 3601#endif /* STDIO_PTR_LVALUE */
14a5cf38
JH
3602 }
3603 /*
71200d45 3604 * Now (or only) set cnt
14a5cf38 3605 */
9e353e3b 3606#ifdef STDIO_CNT_LVALUE
14a5cf38 3607 PerlSIO_set_cnt(stdio, cnt);
faf55891 3608#elif (defined(STDIO_PTR_LVALUE) && defined(STDIO_PTR_LVAL_SETS_CNT))
14a5cf38
JH
3609 PerlSIO_set_ptr(stdio,
3610 PerlSIO_get_ptr(stdio) + (PerlSIO_get_cnt(stdio) -
3611 cnt));
22569500 3612#else /* STDIO_PTR_LVAL_SETS_CNT */
14a5cf38 3613 PerlProc_abort();
22569500 3614#endif /* STDIO_CNT_LVALUE */
9e353e3b
NIS
3615}
3616
93679785 3617
9e353e3b
NIS
3618#endif
3619
93679785
NIS
3620IV
3621PerlIOStdio_fill(pTHX_ PerlIO *f)
3622{
abf9167d 3623 FILE * stdio;
93679785 3624 int c;
96a5add6 3625 PERL_UNUSED_CONTEXT;
abf9167d
DM
3626 if (PerlIO_lockcnt(f)) /* in use: abort ungracefully */
3627 return -1;
3628 stdio = PerlIOSelf(f, PerlIOStdio)->stdio;
96a5add6 3629
93679785
NIS
3630 /*
3631 * fflush()ing read-only streams can cause trouble on some stdio-s
3632 */
3633 if ((PerlIOBase(f)->flags & PERLIO_F_CANWRITE)) {
3634 if (PerlSIO_fflush(stdio) != 0)
3635 return EOF;
3636 }
f3be3723
BL
3637 for (;;) {
3638 c = PerlSIO_fgetc(stdio);
3639 if (c != EOF)
3640 break;
3641 if (! PerlSIO_ferror(stdio) || errno != EINTR)
3642 return EOF;
abf9167d
DM
3643 if (PL_sig_pending && S_perlio_async_run(aTHX_ f))
3644 return -1;
f3be3723
BL
3645 SETERRNO(0,0);
3646 }
93679785
NIS
3647
3648#if (defined(STDIO_PTR_LVALUE) && (defined(STDIO_CNT_LVALUE) || defined(STDIO_PTR_LVAL_SETS_CNT)))
313e59c8
NIS
3649
3650#ifdef STDIO_BUFFER_WRITABLE
9f7cd136 3651 if (PerlIO_fast_gets(f) && PerlIO_has_base(f)) {
93679785
NIS
3652 /* Fake ungetc() to the real buffer in case system's ungetc
3653 goes elsewhere
3654 */
3655 STDCHAR *base = (STDCHAR*)PerlSIO_get_base(stdio);
3656 SSize_t cnt = PerlSIO_get_cnt(stdio);
3657 STDCHAR *ptr = (STDCHAR*)PerlSIO_get_ptr(stdio);
3658 if (ptr == base+1) {
3659 *--ptr = (STDCHAR) c;
3660 PerlIOStdio_set_ptrcnt(aTHX_ f,ptr,cnt+1);
3661 if (PerlSIO_feof(stdio))
3662 PerlSIO_clearerr(stdio);
3663 return 0;
3664 }
3665 }
313e59c8
NIS
3666 else
3667#endif
3668 if (PerlIO_has_cntptr(f)) {
9f7cd136
NIS
3669 STDCHAR ch = c;
3670 if (PerlIOStdio_unread(aTHX_ f,&ch,1) == 1) {
3671 return 0;
3672 }
3673 }
93679785
NIS
3674#endif
3675
93679785 3676 /* If buffer snoop scheme above fails fall back to
9f7cd136 3677 using ungetc().
93679785
NIS
3678 */
3679 if (PerlSIO_ungetc(c, stdio) != c)
3680 return EOF;
5876737a 3681
93679785
NIS
3682 return 0;
3683}
3684
3685
3686
27da23d5 3687PERLIO_FUNCS_DECL(PerlIO_stdio) = {
2dc2558e 3688 sizeof(PerlIO_funcs),
14a5cf38
JH
3689 "stdio",
3690 sizeof(PerlIOStdio),
86e05cf2 3691 PERLIO_K_BUFFERED|PERLIO_K_RAW,
1fd8f4ce 3692 PerlIOStdio_pushed,
2376d97d 3693 PerlIOBase_popped,
14a5cf38 3694 PerlIOStdio_open,
86e05cf2 3695 PerlIOBase_binmode, /* binmode */
14a5cf38
JH
3696 NULL,
3697 PerlIOStdio_fileno,
71200d45 3698 PerlIOStdio_dup,
14a5cf38
JH
3699 PerlIOStdio_read,
3700 PerlIOStdio_unread,
3701 PerlIOStdio_write,
3702 PerlIOStdio_seek,
3703 PerlIOStdio_tell,
3704 PerlIOStdio_close,
3705 PerlIOStdio_flush,
3706 PerlIOStdio_fill,
3707 PerlIOStdio_eof,
3708 PerlIOStdio_error,
3709 PerlIOStdio_clearerr,
3710 PerlIOStdio_setlinebuf,
9e353e3b 3711#ifdef FILE_base
14a5cf38
JH
3712 PerlIOStdio_get_base,
3713 PerlIOStdio_get_bufsiz,
9e353e3b 3714#else
14a5cf38
JH
3715 NULL,
3716 NULL,
9e353e3b
NIS
3717#endif
3718#ifdef USE_STDIO_PTR
14a5cf38
JH
3719 PerlIOStdio_get_ptr,
3720 PerlIOStdio_get_cnt,
15b61c98 3721# if defined(HAS_FAST_STDIO) && defined(USE_FAST_STDIO)
79ed0f43 3722 PerlIOStdio_set_ptrcnt,
15b61c98
JH
3723# else
3724 NULL,
3725# endif /* HAS_FAST_STDIO && USE_FAST_STDIO */
3726#else
3727 NULL,
14a5cf38
JH
3728 NULL,
3729 NULL,
15b61c98 3730#endif /* USE_STDIO_PTR */
9e353e3b
NIS
3731};
3732
b9d6bf13
JH
3733/* Note that calls to PerlIO_exportFILE() are reversed using
3734 * PerlIO_releaseFILE(), not importFILE. */
9e353e3b 3735FILE *
81428673 3736PerlIO_exportFILE(PerlIO * f, const char *mode)
9e353e3b 3737{
e87a358a 3738 dTHX;
81428673
NIS
3739 FILE *stdio = NULL;
3740 if (PerlIOValid(f)) {
3741 char buf[8];
375ed12a
JH
3742 int fd = PerlIO_fileno(f);
3743 if (fd < 0) {
3744 return NULL;
3745 }
81428673
NIS
3746 PerlIO_flush(f);
3747 if (!mode || !*mode) {
3748 mode = PerlIO_modestr(f, buf);
3749 }
3750 stdio = PerlSIO_fdopen(PerlIO_fileno(f), mode);
3751 if (stdio) {
3752 PerlIOl *l = *f;
9f75cc58 3753 PerlIO *f2;
81428673
NIS
3754 /* De-link any lower layers so new :stdio sticks */
3755 *f = NULL;
a0714e2c 3756 if ((f2 = PerlIO_push(aTHX_ f, PERLIO_FUNCS_CAST(&PerlIO_stdio), buf, NULL))) {
9f75cc58 3757 PerlIOStdio *s = PerlIOSelf((f = f2), PerlIOStdio);
81428673 3758 s->stdio = stdio;
6b54a403 3759 PerlIOUnix_refcnt_inc(fileno(stdio));
81428673
NIS
3760 /* Link previous lower layers under new one */
3761 *PerlIONext(f) = l;
3762 }
3763 else {
3764 /* restore layers list */
3765 *f = l;
3766 }
a33cf58c 3767 }
14a5cf38
JH
3768 }
3769 return stdio;
9e353e3b
NIS
3770}
3771
81428673 3772
9e353e3b
NIS
3773FILE *
3774PerlIO_findFILE(PerlIO *f)
3775{
14a5cf38 3776 PerlIOl *l = *f;
bbbc33d0 3777 FILE *stdio;
14a5cf38
JH
3778 while (l) {
3779 if (l->tab == &PerlIO_stdio) {
3780 PerlIOStdio *s = PerlIOSelf(&l, PerlIOStdio);
3781 return s->stdio;
3782 }
3783 l = *PerlIONext(&l);
f7e7eb72 3784 }
4b069b44 3785 /* Uses fallback "mode" via PerlIO_modestr() in PerlIO_exportFILE */
bbbc33d0
NC
3786 /* However, we're not really exporting a FILE * to someone else (who
3787 becomes responsible for closing it, or calling PerlIO_releaseFILE())
486ec47a 3788 So we need to undo its reference count increase on the underlying file
bbbc33d0
NC
3789 descriptor. We have to do this, because if the loop above returns you
3790 the FILE *, then *it* didn't increase any reference count. So there's
3791 only one way to be consistent. */
3792 stdio = PerlIO_exportFILE(f, NULL);
3793 if (stdio) {
3794 const int fd = fileno(stdio);
3795 if (fd >= 0)
3796 PerlIOUnix_refcnt_dec(fd);
3797 }
3798 return stdio;
9e353e3b
NIS
3799}
3800
b9d6bf13 3801/* Use this to reverse PerlIO_exportFILE calls. */
9e353e3b
NIS
3802void
3803PerlIO_releaseFILE(PerlIO *p, FILE *f)
3804{
22569500
NIS
3805 PerlIOl *l;
3806 while ((l = *p)) {
3807 if (l->tab == &PerlIO_stdio) {
3808 PerlIOStdio *s = PerlIOSelf(&l, PerlIOStdio);
2bcd6579 3809 if (s->stdio == f) { /* not in a loop */
6b54a403
NC
3810 const int fd = fileno(f);
3811 if (fd >= 0)
3812 PerlIOUnix_refcnt_dec(fd);
2bcd6579
DD
3813 {
3814 dTHX;
3815 PerlIO_pop(aTHX_ p);
3816 }
22569500
NIS
3817 return;
3818 }
3819 }
3820 p = PerlIONext(p);
3821 }
3822 return;
9e353e3b
NIS
3823}
3824
3825/*--------------------------------------------------------------------------------------*/
14a5cf38 3826/*
71200d45 3827 * perlio buffer layer
14a5cf38 3828 */
9e353e3b 3829
5e2ab84b 3830IV
2dc2558e 3831PerlIOBuf_pushed(pTHX_ PerlIO *f, const char *mode, SV *arg, PerlIO_funcs *tab)
5e2ab84b 3832{
14a5cf38 3833 PerlIOBuf *b = PerlIOSelf(f, PerlIOBuf);
de009b76 3834 const int fd = PerlIO_fileno(f);
14a5cf38
JH
3835 if (fd >= 0 && PerlLIO_isatty(fd)) {
3836 PerlIOBase(f)->flags |= PERLIO_F_LINEBUF | PERLIO_F_TTY;
3837 }
4b069b44 3838 if (*PerlIONext(f)) {
de009b76 3839 const Off_t posn = PerlIO_tell(PerlIONext(f));
4b069b44
NIS
3840 if (posn != (Off_t) - 1) {
3841 b->posn = posn;
3842 }
14a5cf38 3843 }
2dc2558e 3844 return PerlIOBase_pushed(aTHX_ f, mode, arg, tab);
5e2ab84b
NIS
3845}
3846
9e353e3b 3847PerlIO *
14a5cf38
JH
3848PerlIOBuf_open(pTHX_ PerlIO_funcs *self, PerlIO_list_t *layers,
3849 IV n, const char *mode, int fd, int imode, int perm,
3850 PerlIO *f, int narg, SV **args)
3851{
04892f78 3852 if (PerlIOValid(f)) {
14a5cf38 3853 PerlIO *next = PerlIONext(f);
67363c0d
JH
3854 PerlIO_funcs *tab =
3855 PerlIO_layer_fetch(aTHX_ layers, n - 1, PerlIOBase(next)->tab);
3856 if (tab && tab->Open)
3857 next =
3858 (*tab->Open)(aTHX_ tab, layers, n - 1, mode, fd, imode, perm,
3859 next, narg, args);
2dc2558e 3860 if (!next || (*PerlIOBase(f)->tab->Pushed) (aTHX_ f, mode, PerlIOArg, self) != 0) {
14a5cf38
JH
3861 return NULL;
3862 }
3863 }
3864 else {
04892f78 3865 PerlIO_funcs *tab = PerlIO_layer_fetch(aTHX_ layers, n - 1, PerlIO_default_btm());
14a5cf38 3866 int init = 0;
3b6c1aba 3867 if (*mode == IoTYPE_IMPLICIT) {
14a5cf38
JH
3868 init = 1;
3869 /*
71200d45 3870 * mode++;
14a5cf38
JH
3871 */
3872 }
67363c0d
JH
3873 if (tab && tab->Open)
3874 f = (*tab->Open)(aTHX_ tab, layers, n - 1, mode, fd, imode, perm,
3875 f, narg, args);
3876 else
3877 SETERRNO(EINVAL, LIB_INVARG);
14a5cf38 3878 if (f) {
22569500 3879 if (PerlIO_push(aTHX_ f, self, mode, PerlIOArg) == 0) {
b26b1ab5
NC
3880 /*
3881 * if push fails during open, open fails. close will pop us.
3882 */
3883 PerlIO_close (f);
3884 return NULL;
3885 } else {
3886 fd = PerlIO_fileno(f);
b26b1ab5
NC
3887 if (init && fd == 2) {
3888 /*
3889 * Initial stderr is unbuffered
3890 */
3891 PerlIOBase(f)->flags |= PERLIO_F_UNBUF;
3892 }
23b84778
IZ
3893#ifdef PERLIO_USING_CRLF
3894# ifdef PERLIO_IS_BINMODE_FD
3895 if (PERLIO_IS_BINMODE_FD(fd))
bd61b366 3896 PerlIO_binmode(aTHX_ f, '<'/*not used*/, O_BINARY, NULL);
23b84778
IZ
3897 else
3898# endif
3899 /*
3900 * do something about failing setmode()? --jhi
3901 */
3902 PerlLIO_setmode(fd, O_BINARY);
3903#endif
8c8488cd 3904#ifdef VMS
8c8488cd
CB
3905 /* Enable line buffering with record-oriented regular files
3906 * so we don't introduce an extraneous record boundary when
3907 * the buffer fills up.
3908 */
3909 if (PerlIOBase(f)->flags & PERLIO_F_CANWRITE) {
3910 Stat_t st;
3911 if (PerlLIO_fstat(fd, &st) == 0
3912 && S_ISREG(st.st_mode)
3913 && (st.st_fab_rfm == FAB$C_VAR
3914 || st.st_fab_rfm == FAB$C_VFC)) {
3915 PerlIOBase(f)->flags |= PERLIO_F_LINEBUF;
3916 }
3917 }
3918#endif
14a5cf38
JH
3919 }
3920 }
ee518936 3921 }
14a5cf38 3922 return f;
9e353e3b
NIS
3923}
3924
14a5cf38
JH
3925/*
3926 * This "flush" is akin to sfio's sync in that it handles files in either
93c2c2ec
IZ
3927 * read or write state. For write state, we put the postponed data through
3928 * the next layers. For read state, we seek() the next layers to the
3929 * offset given by current position in the buffer, and discard the buffer
3930 * state (XXXX supposed to be for seek()able buffers only, but now it is done
3931 * in any case?). Then the pass the stick further in chain.
14a5cf38 3932 */
9e353e3b 3933IV
f62ce20a 3934PerlIOBuf_flush(pTHX_ PerlIO *f)
6f9d8c32 3935{
dcda55fc 3936 PerlIOBuf * const b = PerlIOSelf(f, PerlIOBuf);
14a5cf38 3937 int code = 0;
04892f78 3938 PerlIO *n = PerlIONext(f);
14a5cf38
JH
3939 if (PerlIOBase(f)->flags & PERLIO_F_WRBUF) {
3940 /*
71200d45 3941 * write() the buffer
14a5cf38 3942 */
de009b76
AL
3943 const STDCHAR *buf = b->buf;
3944 const STDCHAR *p = buf;
14a5cf38
JH
3945 while (p < b->ptr) {
3946 SSize_t count = PerlIO_write(n, p, b->ptr - p);
3947 if (count > 0) {
3948 p += count;
3949 }
3950 else if (count < 0 || PerlIO_error(n)) {
3951 PerlIOBase(f)->flags |= PERLIO_F_ERROR;
0ea86a10 3952 PerlIO_save_errno(f);
14a5cf38
JH
3953 code = -1;
3954 break;
3955 }
3956 }
3957 b->posn += (p - buf);
3958 }
3959 else if (PerlIOBase(f)->flags & PERLIO_F_RDBUF) {
3960 STDCHAR *buf = PerlIO_get_base(f);
3961 /*
71200d45 3962 * Note position change
14a5cf38
JH
3963 */
3964 b->posn += (b->ptr - buf);
3965 if (b->ptr < b->end) {
4b069b44
NIS
3966 /* We did not consume all of it - try and seek downstream to
3967 our logical position
14a5cf38 3968 */
4b069b44 3969 if (PerlIOValid(n) && PerlIO_seek(n, b->posn, SEEK_SET) == 0) {
04892f78
NIS
3970 /* Reload n as some layers may pop themselves on seek */
3971 b->posn = PerlIO_tell(n = PerlIONext(f));
14a5cf38 3972 }
ba5c3fe9 3973 else {
4b069b44
NIS
3974 /* Seek failed (e.g. pipe or tty). Do NOT clear buffer or pre-read
3975 data is lost for good - so return saying "ok" having undone
3976 the position adjust
3977 */
3978 b->posn -= (b->ptr - buf);
ba5c3fe9
NIS
3979 return code;
3980 }
14a5cf38
JH
3981 }
3982 }
3983 b->ptr = b->end = b->buf;
3984 PerlIOBase(f)->flags &= ~(PERLIO_F_RDBUF | PERLIO_F_WRBUF);
04892f78 3985 /* We check for Valid because of dubious decision to make PerlIO_flush(NULL) flush all */
04892f78 3986 if (PerlIOValid(n) && PerlIO_flush(n) != 0)
14a5cf38
JH
3987 code = -1;
3988 return code;
6f9d8c32
NIS
3989}
3990
93c2c2ec
IZ
3991/* This discards the content of the buffer after b->ptr, and rereads
3992 * the buffer from the position off in the layer downstream; here off
3993 * is at offset corresponding to b->ptr - b->buf.
3994 */
06da4f11 3995IV
f62ce20a 3996PerlIOBuf_fill(pTHX_ PerlIO *f)
06da4f11 3997{
dcda55fc 3998 PerlIOBuf * const b = PerlIOSelf(f, PerlIOBuf);
14a5cf38
JH
3999 PerlIO *n = PerlIONext(f);
4000 SSize_t avail;
4001 /*
4b069b44
NIS
4002 * Down-stream flush is defined not to loose read data so is harmless.
4003 * we would not normally be fill'ing if there was data left in anycase.
14a5cf38 4004 */
93c2c2ec 4005 if (PerlIO_flush(f) != 0) /* XXXX Check that its seek() succeeded?! */
14a5cf38
JH
4006 return -1;
4007 if (PerlIOBase(f)->flags & PERLIO_F_TTY)
f62ce20a 4008 PerlIOBase_flush_linebuf(aTHX);
14a5cf38
JH
4009
4010 if (!b->buf)
22569500 4011 PerlIO_get_base(f); /* allocate via vtable */
14a5cf38 4012
0f0eef27 4013 assert(b->buf); /* The b->buf does get allocated via the vtable system. */
ec6fa4f0 4014
14a5cf38 4015 b->ptr = b->end = b->buf;
4b069b44
NIS
4016
4017 if (!PerlIOValid(n)) {
4018 PerlIOBase(f)->flags |= PERLIO_F_EOF;
4019 return -1;
4020 }
4021
14a5cf38
JH
4022 if (PerlIO_fast_gets(n)) {
4023 /*
04892f78 4024 * Layer below is also buffered. We do _NOT_ want to call its
14a5cf38
JH
4025 * ->Read() because that will loop till it gets what we asked for
4026 * which may hang on a pipe etc. Instead take anything it has to
71200d45 4027 * hand, or ask it to fill _once_.
14a5cf38
JH
4028 */
4029 avail = PerlIO_get_cnt(n);
4030 if (avail <= 0) {
4031 avail = PerlIO_fill(n);
4032 if (avail == 0)
4033 avail = PerlIO_get_cnt(n);
4034 else {
4035 if (!PerlIO_error(n) && PerlIO_eof(n))
4036 avail = 0;
4037 }
4038 }
4039 if (avail > 0) {
4040 STDCHAR *ptr = PerlIO_get_ptr(n);
dcda55fc 4041 const SSize_t cnt = avail;
eb160463 4042 if (avail > (SSize_t)b->bufsiz)
14a5cf38
JH
4043 avail = b->bufsiz;
4044 Copy(ptr, b->buf, avail, STDCHAR);
4045 PerlIO_set_ptrcnt(n, ptr + avail, cnt - avail);
4046 }
4047 }
4048 else {
4049 avail = PerlIO_read(n, b->ptr, b->bufsiz);
4050 }
4051 if (avail <= 0) {
4052 if (avail == 0)
4053 PerlIOBase(f)->flags |= PERLIO_F_EOF;
4054 else
0ea86a10 4055 {
14a5cf38 4056 PerlIOBase(f)->flags |= PERLIO_F_ERROR;
0ea86a10
FC
4057 PerlIO_save_errno(f);
4058 }
14a5cf38
JH
4059 return -1;
4060 }
4061 b->end = b->buf + avail;
4062 PerlIOBase(f)->flags |= PERLIO_F_RDBUF;
4063 return 0;
06da4f11
NIS
4064}
4065
6f9d8c32 4066SSize_t
f62ce20a 4067PerlIOBuf_read(pTHX_ PerlIO *f, void *vbuf, Size_t count)
6f9d8c32 4068{
04892f78 4069 if (PerlIOValid(f)) {
dcda55fc 4070 const PerlIOBuf * const b = PerlIOSelf(f, PerlIOBuf);
14a5cf38
JH
4071 if (!b->ptr)
4072 PerlIO_get_base(f);
f62ce20a 4073 return PerlIOBase_read(aTHX_ f, vbuf, count);
14a5cf38
JH
4074 }
4075 return 0;
6f9d8c32
NIS
4076}
4077
9e353e3b 4078SSize_t
f62ce20a 4079PerlIOBuf_unread(pTHX_ PerlIO *f, const void *vbuf, Size_t count)
760ac839 4080{
14a5cf38 4081 const STDCHAR *buf = (const STDCHAR *) vbuf + count;
dcda55fc 4082 PerlIOBuf * const b = PerlIOSelf(f, PerlIOBuf);
14a5cf38
JH
4083 SSize_t unread = 0;
4084 SSize_t avail;
4085 if (PerlIOBase(f)->flags & PERLIO_F_WRBUF)
4086 PerlIO_flush(f);
4087 if (!b->buf)
4088 PerlIO_get_base(f);
4089 if (b->buf) {
4090 if (PerlIOBase(f)->flags & PERLIO_F_RDBUF) {
4091 /*
4092 * Buffer is already a read buffer, we can overwrite any chars
71200d45 4093 * which have been read back to buffer start
14a5cf38
JH
4094 */
4095 avail = (b->ptr - b->buf);
4096 }
4097 else {
4098 /*
4099 * Buffer is idle, set it up so whole buffer is available for
71200d45 4100 * unread
14a5cf38
JH
4101 */
4102 avail = b->bufsiz;
4103 b->end = b->buf + avail;
4104 b->ptr = b->end;
4105 PerlIOBase(f)->flags |= PERLIO_F_RDBUF;
4106 /*
71200d45 4107 * Buffer extends _back_ from where we are now
14a5cf38
JH
4108 */
4109 b->posn -= b->bufsiz;
4110 }
94e529cc 4111 if ((SSize_t) count >= 0 && avail > (SSize_t) count) {
14a5cf38 4112 /*
71200d45 4113 * If we have space for more than count, just move count
14a5cf38
JH
4114 */
4115 avail = count;
4116 }
4117 if (avail > 0) {
4118 b->ptr -= avail;
4119 buf -= avail;
4120 /*
4121 * In simple stdio-like ungetc() case chars will be already
71200d45 4122 * there
14a5cf38
JH
4123 */
4124 if (buf != b->ptr) {
4125 Copy(buf, b->ptr, avail, STDCHAR);
4126 }
4127 count -= avail;
4128 unread += avail;
4129 PerlIOBase(f)->flags &= ~PERLIO_F_EOF;
4130 }
4131 }
93679785
NIS
4132 if (count > 0) {
4133 unread += PerlIOBase_unread(aTHX_ f, vbuf, count);
4134 }
14a5cf38 4135 return unread;
760ac839
LW
4136}
4137
9e353e3b 4138SSize_t
f62ce20a 4139PerlIOBuf_write(pTHX_ PerlIO *f, const void *vbuf, Size_t count)
760ac839 4140{
de009b76 4141 PerlIOBuf * const b = PerlIOSelf(f, PerlIOBuf);
14a5cf38 4142 const STDCHAR *buf = (const STDCHAR *) vbuf;
ee56a6b9 4143 const STDCHAR *flushptr = buf;
14a5cf38
JH
4144 Size_t written = 0;
4145 if (!b->buf)
4146 PerlIO_get_base(f);
4147 if (!(PerlIOBase(f)->flags & PERLIO_F_CANWRITE))
4148 return 0;
0678cb22
NIS
4149 if (PerlIOBase(f)->flags & PERLIO_F_RDBUF) {
4150 if (PerlIO_flush(f) != 0) {
4151 return 0;
4152 }
4153 }
ee56a6b9
CS
4154 if (PerlIOBase(f)->flags & PERLIO_F_LINEBUF) {
4155 flushptr = buf + count;
4156 while (flushptr > buf && *(flushptr - 1) != '\n')
4157 --flushptr;
4158 }
14a5cf38
JH
4159 while (count > 0) {
4160 SSize_t avail = b->bufsiz - (b->ptr - b->buf);
94e529cc 4161 if ((SSize_t) count >= 0 && (SSize_t) count < avail)
14a5cf38 4162 avail = count;
ee56a6b9
CS
4163 if (flushptr > buf && flushptr <= buf + avail)
4164 avail = flushptr - buf;
14a5cf38 4165 PerlIOBase(f)->flags |= PERLIO_F_WRBUF;
ee56a6b9
CS
4166 if (avail) {
4167 Copy(buf, b->ptr, avail, STDCHAR);
4168 count -= avail;
4169 buf += avail;
4170 written += avail;
4171 b->ptr += avail;
4172 if (buf == flushptr)
4173 PerlIO_flush(f);
14a5cf38
JH
4174 }
4175 if (b->ptr >= (b->buf + b->bufsiz))
abf9167d
DM
4176 if (PerlIO_flush(f) == -1)
4177 return -1;
14a5cf38
JH
4178 }
4179 if (PerlIOBase(f)->flags & PERLIO_F_UNBUF)
4180 PerlIO_flush(f);
4181 return written;
9e353e3b
NIS
4182}
4183
94a175e1 4184IV
f62ce20a 4185PerlIOBuf_seek(pTHX_ PerlIO *f, Off_t offset, int whence)
9e353e3b 4186{
14a5cf38
JH
4187 IV code;
4188 if ((code = PerlIO_flush(f)) == 0) {
14a5cf38
JH
4189 PerlIOBase(f)->flags &= ~PERLIO_F_EOF;
4190 code = PerlIO_seek(PerlIONext(f), offset, whence);
4191 if (code == 0) {
de009b76 4192 PerlIOBuf *b = PerlIOSelf(f, PerlIOBuf);
14a5cf38
JH
4193 b->posn = PerlIO_tell(PerlIONext(f));
4194 }
9e353e3b 4195 }
14a5cf38 4196 return code;
9e353e3b
NIS
4197}
4198
4199Off_t
f62ce20a 4200PerlIOBuf_tell(pTHX_ PerlIO *f)
9e353e3b 4201{
dcda55fc 4202 PerlIOBuf * const b = PerlIOSelf(f, PerlIOBuf);
14a5cf38 4203 /*
71200d45 4204 * b->posn is file position where b->buf was read, or will be written
14a5cf38
JH
4205 */
4206 Off_t posn = b->posn;
37725cdc 4207 if ((PerlIOBase(f)->flags & PERLIO_F_APPEND) &&
0678cb22
NIS
4208 (PerlIOBase(f)->flags & PERLIO_F_WRBUF)) {
4209#if 1
4210 /* As O_APPEND files are normally shared in some sense it is better
4211 to flush :
4212 */
4213 PerlIO_flush(f);
4214#else
37725cdc 4215 /* when file is NOT shared then this is sufficient */
0678cb22
NIS
4216 PerlIO_seek(PerlIONext(f),0, SEEK_END);
4217#endif
4218 posn = b->posn = PerlIO_tell(PerlIONext(f));
4219 }
14a5cf38
JH
4220 if (b->buf) {
4221 /*
71200d45 4222 * If buffer is valid adjust position by amount in buffer
14a5cf38
JH
4223 */
4224 posn += (b->ptr - b->buf);
4225 }
4226 return posn;
9e353e3b
NIS
4227}
4228
4229IV
44798d05
NIS
4230PerlIOBuf_popped(pTHX_ PerlIO *f)
4231{
de009b76
AL
4232 const IV code = PerlIOBase_popped(aTHX_ f);
4233 PerlIOBuf * const b = PerlIOSelf(f, PerlIOBuf);
44798d05
NIS
4234 if (b->buf && b->buf != (STDCHAR *) & b->oneword) {
4235 Safefree(b->buf);
4236 }
dcda55fc 4237 b->ptr = b->end = b->buf = NULL;
44798d05
NIS
4238 PerlIOBase(f)->flags &= ~(PERLIO_F_RDBUF | PERLIO_F_WRBUF);
4239 return code;
4240}
4241
4242IV
f62ce20a 4243PerlIOBuf_close(pTHX_ PerlIO *f)
9e353e3b 4244{
de009b76
AL
4245 const IV code = PerlIOBase_close(aTHX_ f);
4246 PerlIOBuf * const b = PerlIOSelf(f, PerlIOBuf);
14a5cf38 4247 if (b->buf && b->buf != (STDCHAR *) & b->oneword) {
3a1ee7e8 4248 Safefree(b->buf);
14a5cf38 4249 }
dcda55fc 4250 b->ptr = b->end = b->buf = NULL;
14a5cf38
JH
4251 PerlIOBase(f)->flags &= ~(PERLIO_F_RDBUF | PERLIO_F_WRBUF);
4252 return code;
760ac839
LW
4253}
4254
9e353e3b 4255STDCHAR *
f62ce20a 4256PerlIOBuf_get_ptr(pTHX_ PerlIO *f)
9e353e3b 4257{
dcda55fc 4258 const PerlIOBuf * const b = PerlIOSelf(f, PerlIOBuf);
14a5cf38
JH
4259 if (!b->buf)
4260 PerlIO_get_base(f);
4261 return b->ptr;
9e353e3b
NIS
4262}
4263
05d1247b 4264SSize_t
f62ce20a 4265PerlIOBuf_get_cnt(pTHX_ PerlIO *f)
9e353e3b 4266{
dcda55fc 4267 const PerlIOBuf * const b = PerlIOSelf(f, PerlIOBuf);
14a5cf38
JH
4268 if (!b->buf)
4269 PerlIO_get_base(f);
4270 if (PerlIOBase(f)->flags & PERLIO_F_RDBUF)
4271 return (b->end - b->ptr);
4272 return 0;
9e353e3b
NIS
4273}
4274
4275STDCHAR *
f62ce20a 4276PerlIOBuf_get_base(pTHX_ PerlIO *f)
9e353e3b 4277{
dcda55fc 4278 PerlIOBuf * const b = PerlIOSelf(f, PerlIOBuf);
96a5add6
AL
4279 PERL_UNUSED_CONTEXT;
4280
14a5cf38
JH
4281 if (!b->buf) {
4282 if (!b->bufsiz)
1810cd7c 4283 b->bufsiz = PERLIOBUF_DEFAULT_BUFSIZ;
d09f14bf 4284 Newx(b->buf,b->bufsiz, STDCHAR);
14a5cf38
JH
4285 if (!b->buf) {
4286 b->buf = (STDCHAR *) & b->oneword;
4287 b->bufsiz = sizeof(b->oneword);
4288 }
dcda55fc 4289 b->end = b->ptr = b->buf;
06da4f11 4290 }
14a5cf38 4291 return b->buf;
9e353e3b
NIS
4292}
4293
4294Size_t
f62ce20a 4295PerlIOBuf_bufsiz(pTHX_ PerlIO *f)
9e353e3b 4296{
dcda55fc 4297 const PerlIOBuf * const b = PerlIOSelf(f, PerlIOBuf);
14a5cf38
JH
4298 if (!b->buf)
4299 PerlIO_get_base(f);
4300 return (b->end - b->buf);
9e353e3b
NIS
4301}
4302
4303void
f62ce20a 4304PerlIOBuf_set_ptrcnt(pTHX_ PerlIO *f, STDCHAR * ptr, SSize_t cnt)
9e353e3b 4305{
dcda55fc 4306 PerlIOBuf * const b = PerlIOSelf(f, PerlIOBuf);
babfacb9
JH
4307#ifndef DEBUGGING
4308 PERL_UNUSED_ARG(cnt);
4309#endif
14a5cf38
JH
4310 if (!b->buf)
4311 PerlIO_get_base(f);
4312 b->ptr = ptr;
b727803b
RGS
4313 assert(PerlIO_get_cnt(f) == cnt);
4314 assert(b->ptr >= b->buf);
14a5cf38 4315 PerlIOBase(f)->flags |= PERLIO_F_RDBUF;
760ac839
LW
4316}
4317
71200d45 4318PerlIO *
ecdeb87c 4319PerlIOBuf_dup(pTHX_ PerlIO *f, PerlIO *o, CLONE_PARAMS *param, int flags)
71200d45 4320{
ecdeb87c 4321 return PerlIOBase_dup(aTHX_ f, o, param, flags);
71200d45
NIS
4322}
4323
4324
4325
27da23d5 4326PERLIO_FUNCS_DECL(PerlIO_perlio) = {
2dc2558e 4327 sizeof(PerlIO_funcs),
14a5cf38
JH
4328 "perlio",
4329 sizeof(PerlIOBuf),
86e05cf2 4330 PERLIO_K_BUFFERED|PERLIO_K_RAW,
14a5cf38 4331 PerlIOBuf_pushed,
44798d05 4332 PerlIOBuf_popped,
14a5cf38 4333 PerlIOBuf_open,
86e05cf2 4334 PerlIOBase_binmode, /* binmode */
14a5cf38
JH
4335 NULL,
4336 PerlIOBase_fileno,
71200d45 4337 PerlIOBuf_dup,
14a5cf38
JH
4338 PerlIOBuf_read,
4339 PerlIOBuf_unread,
4340 PerlIOBuf_write,
4341 PerlIOBuf_seek,
4342 PerlIOBuf_tell,
4343 PerlIOBuf_close,
4344 PerlIOBuf_flush,
4345 PerlIOBuf_fill,
4346 PerlIOBase_eof,
4347 PerlIOBase_error,
4348 PerlIOBase_clearerr,
4349 PerlIOBase_setlinebuf,
4350 PerlIOBuf_get_base,
4351 PerlIOBuf_bufsiz,
4352 PerlIOBuf_get_ptr,
4353 PerlIOBuf_get_cnt,
4354 PerlIOBuf_set_ptrcnt,
9e353e3b
NIS
4355};
4356
66ecd56b 4357/*--------------------------------------------------------------------------------------*/
14a5cf38 4358/*
71200d45 4359 * Temp layer to hold unread chars when cannot do it any other way
14a5cf38 4360 */
5e2ab84b
NIS
4361
4362IV
f62ce20a 4363PerlIOPending_fill(pTHX_ PerlIO *f)
5e2ab84b 4364{
14a5cf38 4365 /*
71200d45 4366 * Should never happen
14a5cf38
JH
4367 */
4368 PerlIO_flush(f);
4369 return 0;
5e2ab84b
NIS
4370}
4371
4372IV
f62ce20a 4373PerlIOPending_close(pTHX_ PerlIO *f)
5e2ab84b 4374{
14a5cf38 4375 /*
71200d45 4376 * A tad tricky - flush pops us, then we close new top
14a5cf38
JH
4377 */
4378 PerlIO_flush(f);
4379 return PerlIO_close(f);
5e2ab84b
NIS
4380}
4381
94a175e1 4382IV
f62ce20a 4383PerlIOPending_seek(pTHX_ PerlIO *f, Off_t offset, int whence)
5e2ab84b 4384{
14a5cf38 4385 /*
71200d45 4386 * A tad tricky - flush pops us, then we seek new top
14a5cf38
JH
4387 */
4388 PerlIO_flush(f);
4389 return PerlIO_seek(f, offset, whence);
5e2ab84b
NIS
4390}
4391
4392
4393IV
f62ce20a 4394PerlIOPending_flush(pTHX_ PerlIO *f)
5e2ab84b 4395{
dcda55fc 4396 PerlIOBuf * const b = PerlIOSelf(f, PerlIOBuf);
14a5cf38 4397 if (b->buf && b->buf != (STDCHAR *) & b->oneword) {
3a1ee7e8 4398 Safefree(b->buf);
14a5cf38
JH
4399 b->buf = NULL;
4400 }
4401 PerlIO_pop(aTHX_ f);
4402 return 0;
5e2ab84b
NIS
4403}
4404
4405void
f62ce20a 4406PerlIOPending_set_ptrcnt(pTHX_ PerlIO *f, STDCHAR * ptr, SSize_t cnt)
5e2ab84b 4407{
14a5cf38
JH
4408 if (cnt <= 0) {
4409 PerlIO_flush(f);
4410 }
4411 else {
f62ce20a 4412 PerlIOBuf_set_ptrcnt(aTHX_ f, ptr, cnt);
14a5cf38 4413 }
5e2ab84b
NIS
4414}
4415
4416IV
2dc2558e 4417PerlIOPending_pushed(pTHX_ PerlIO *f, const char *mode, SV *arg, PerlIO_funcs *tab)
5e2ab84b 4418{
de009b76 4419 const IV code = PerlIOBase_pushed(aTHX_ f, mode, arg, tab);
dcda55fc 4420 PerlIOl * const l = PerlIOBase(f);
14a5cf38 4421 /*
71200d45
NIS
4422 * Our PerlIO_fast_gets must match what we are pushed on, or sv_gets()
4423 * etc. get muddled when it changes mid-string when we auto-pop.
14a5cf38
JH
4424 */
4425 l->flags = (l->flags & ~(PERLIO_F_FASTGETS | PERLIO_F_UTF8)) |
4426 (PerlIOBase(PerlIONext(f))->
4427 flags & (PERLIO_F_FASTGETS | PERLIO_F_UTF8));
4428 return code;
5e2ab84b
NIS
4429}
4430
4431SSize_t
f62ce20a 4432PerlIOPending_read(pTHX_ PerlIO *f, void *vbuf, Size_t count)
5e2ab84b 4433{
14a5cf38
JH
4434 SSize_t avail = PerlIO_get_cnt(f);
4435 SSize_t got = 0;
94e529cc 4436 if ((SSize_t) count >= 0 && (SSize_t)count < avail)
14a5cf38
JH
4437 avail = count;
4438 if (avail > 0)
f62ce20a 4439 got = PerlIOBuf_read(aTHX_ f, vbuf, avail);
eb160463 4440 if (got >= 0 && got < (SSize_t)count) {
de009b76 4441 const SSize_t more =
14a5cf38
JH
4442 PerlIO_read(f, ((STDCHAR *) vbuf) + got, count - got);
4443 if (more >= 0 || got == 0)
4444 got += more;
4445 }
4446 return got;
5e2ab84b
NIS
4447}
4448
27da23d5 4449PERLIO_FUNCS_DECL(PerlIO_pending) = {
2dc2558e 4450 sizeof(PerlIO_funcs),
14a5cf38
JH
4451 "pending",
4452 sizeof(PerlIOBuf),
86e05cf2 4453 PERLIO_K_BUFFERED|PERLIO_K_RAW, /* not sure about RAW here */
14a5cf38 4454 PerlIOPending_pushed,
44798d05 4455 PerlIOBuf_popped,
14a5cf38 4456 NULL,
86e05cf2 4457 PerlIOBase_binmode, /* binmode */
14a5cf38
JH
4458 NULL,
4459 PerlIOBase_fileno,
71200d45 4460 PerlIOBuf_dup,
14a5cf38
JH
4461 PerlIOPending_read,
4462 PerlIOBuf_unread,
4463 PerlIOBuf_write,
4464 PerlIOPending_seek,
4465 PerlIOBuf_tell,
4466 PerlIOPending_close,
4467 PerlIOPending_flush,
4468 PerlIOPending_fill,
4469 PerlIOBase_eof,
4470 PerlIOBase_error,
4471 PerlIOBase_clearerr,
4472 PerlIOBase_setlinebuf,
4473 PerlIOBuf_get_base,
4474 PerlIOBuf_bufsiz,
4475 PerlIOBuf_get_ptr,
4476 PerlIOBuf_get_cnt,
4477 PerlIOPending_set_ptrcnt,
5e2ab84b
NIS
4478};
4479
4480
4481
4482/*--------------------------------------------------------------------------------------*/
14a5cf38
JH
4483/*
4484 * crlf - translation On read translate CR,LF to "\n" we do this by
4485 * overriding ptr/cnt entries to hand back a line at a time and keeping a
71200d45 4486 * record of which nl we "lied" about. On write translate "\n" to CR,LF
93c2c2ec
IZ
4487 *
4488 * c->nl points on the first byte of CR LF pair when it is temporarily
4489 * replaced by LF, or to the last CR of the buffer. In the former case
4490 * the caller thinks that the buffer ends at c->nl + 1, in the latter
4491 * that it ends at c->nl; these two cases can be distinguished by
4492 * *c->nl. c->nl is set during _getcnt() call, and unset during
4493 * _unread() and _flush() calls.
4494 * It only matters for read operations.
66ecd56b
NIS
4495 */
4496
14a5cf38 4497typedef struct {
22569500
NIS
4498 PerlIOBuf base; /* PerlIOBuf stuff */
4499 STDCHAR *nl; /* Position of crlf we "lied" about in the
14a5cf38 4500 * buffer */
99efab12
NIS
4501} PerlIOCrlf;
4502
ff1e3883
JD
4503/* Inherit the PERLIO_F_UTF8 flag from previous layer.
4504 * Otherwise the :crlf layer would always revert back to
4505 * raw mode.
4506 */
4507static void
4508S_inherit_utf8_flag(PerlIO *f)
4509{
4510 PerlIO *g = PerlIONext(f);
4511 if (PerlIOValid(g)) {
4512 if (PerlIOBase(g)->flags & PERLIO_F_UTF8) {
4513 PerlIOBase(f)->flags |= PERLIO_F_UTF8;
4514 }
4515 }
4516}
4517
f5b9d040 4518IV
2dc2558e 4519PerlIOCrlf_pushed(pTHX_ PerlIO *f, const char *mode, SV *arg, PerlIO_funcs *tab)
f5b9d040 4520{
14a5cf38
JH
4521 IV code;
4522 PerlIOBase(f)->flags |= PERLIO_F_CRLF;
2dc2558e 4523 code = PerlIOBuf_pushed(aTHX_ f, mode, arg, tab);
5e2ab84b 4524#if 0
e17bc05a 4525 DEBUG_i(
14a5cf38 4526 PerlIO_debug("PerlIOCrlf_pushed f=%p %s %s fl=%08" UVxf "\n",
6c9570dc 4527 (void*)f, PerlIOBase(f)->tab->name, (mode) ? mode : "(Null)",
14a5cf38 4528 PerlIOBase(f)->flags);
e17bc05a 4529 );
5e2ab84b 4530#endif
8229d19f 4531 {
5da08ab0
LT
4532 /* If the old top layer is a CRLF layer, reactivate it (if
4533 * necessary) and remove this new layer from the stack */
8229d19f 4534 PerlIO *g = PerlIONext(f);
7826b36f 4535 if (PerlIOValid(g)) {
8229d19f
JH
4536 PerlIOl *b = PerlIOBase(g);
4537 if (b && b->tab == &PerlIO_crlf) {
4538 if (!(b->flags & PERLIO_F_CRLF))
4539 b->flags |= PERLIO_F_CRLF;
ff1e3883 4540 S_inherit_utf8_flag(g);
8229d19f
JH
4541 PerlIO_pop(aTHX_ f);
4542 return code;
7826b36f 4543 }
8229d19f
JH
4544 }
4545 }
ff1e3883 4546 S_inherit_utf8_flag(f);
14a5cf38 4547 return code;
f5b9d040
NIS
4548}
4549
4550
99efab12 4551SSize_t
f62ce20a 4552PerlIOCrlf_unread(pTHX_ PerlIO *f, const void *vbuf, Size_t count)
99efab12 4553{
dcda55fc 4554 PerlIOCrlf * const c = PerlIOSelf(f, PerlIOCrlf);
93c2c2ec 4555 if (c->nl) { /* XXXX Shouldn't it be done only if b->ptr > c->nl? */
76e6dc3a 4556 *(c->nl) = NATIVE_0xd;
14a5cf38
JH
4557 c->nl = NULL;
4558 }
4559 if (!(PerlIOBase(f)->flags & PERLIO_F_CRLF))
f62ce20a 4560 return PerlIOBuf_unread(aTHX_ f, vbuf, count);
14a5cf38
JH
4561 else {
4562 const STDCHAR *buf = (const STDCHAR *) vbuf + count;
4563 PerlIOBuf *b = PerlIOSelf(f, PerlIOBuf);
4564 SSize_t unread = 0;
4565 if (PerlIOBase(f)->flags & PERLIO_F_WRBUF)
4566 PerlIO_flush(f);
4567 if (!b->buf)
4568 PerlIO_get_base(f);
4569 if (b->buf) {
4570 if (!(PerlIOBase(f)->flags & PERLIO_F_RDBUF)) {
4571 b->end = b->ptr = b->buf + b->bufsiz;
4572 PerlIOBase(f)->flags |= PERLIO_F_RDBUF;
4573 b->posn -= b->bufsiz;
4574 }
4575 while (count > 0 && b->ptr > b->buf) {
dcda55fc 4576 const int ch = *--buf;
14a5cf38
JH
4577 if (ch == '\n') {
4578 if (b->ptr - 2 >= b->buf) {
76e6dc3a
KW
4579 *--(b->ptr) = NATIVE_0xa;
4580 *--(b->ptr) = NATIVE_0xd;
14a5cf38
JH
4581 unread++;
4582 count--;
4583 }
4584 else {
93c2c2ec 4585 /* If b->ptr - 1 == b->buf, we are undoing reading 0xa */
76e6dc3a
KW
4586 *--(b->ptr) = NATIVE_0xa; /* Works even if 0xa ==
4587 '\r' */
93c2c2ec
IZ
4588 unread++;
4589 count--;
14a5cf38
JH
4590 }
4591 }
4592 else {
4593 *--(b->ptr) = ch;
4594 unread++;
4595 count--;
4596 }
4597 }
4598 }
ec1da995
LT
4599 if (count > 0)
4600 unread += PerlIOBase_unread(aTHX_ f, (const STDCHAR *) vbuf + unread, count);
14a5cf38
JH
4601 return unread;
4602 }
99efab12
NIS
4603}
4604
93c2c2ec 4605/* XXXX This code assumes that buffer size >=2, but does not check it... */
99efab12 4606SSize_t
f62ce20a 4607PerlIOCrlf_get_cnt(pTHX_ PerlIO *f)
99efab12 4608{
dcda55fc 4609 PerlIOBuf * const b = PerlIOSelf(f, PerlIOBuf);
14a5cf38
JH
4610 if (!b->buf)
4611 PerlIO_get_base(f);
4612 if (PerlIOBase(f)->flags & PERLIO_F_RDBUF) {
dcda55fc 4613 PerlIOCrlf * const c = PerlIOSelf(f, PerlIOCrlf);
76e6dc3a 4614 if ((PerlIOBase(f)->flags & PERLIO_F_CRLF) && (!c->nl || *c->nl == NATIVE_0xd)) {
23b3c6af 4615 STDCHAR *nl = (c->nl) ? c->nl : b->ptr;
14a5cf38 4616 scan:
76e6dc3a 4617 while (nl < b->end && *nl != NATIVE_0xd)
14a5cf38 4618 nl++;
76e6dc3a 4619 if (nl < b->end && *nl == NATIVE_0xd) {
14a5cf38
JH
4620 test:
4621 if (nl + 1 < b->end) {
76e6dc3a 4622 if (nl[1] == NATIVE_0xa) {
14a5cf38
JH
4623 *nl = '\n';
4624 c->nl = nl;
4625 }
4626 else {
4627 /*
71200d45 4628 * Not CR,LF but just CR
14a5cf38
JH
4629 */
4630 nl++;
4631 goto scan;
4632 }
4633 }
4634 else {
4635 /*
71200d45 4636 * Blast - found CR as last char in buffer
14a5cf38 4637 */
e87a358a 4638
14a5cf38
JH
4639 if (b->ptr < nl) {
4640 /*
4641 * They may not care, defer work as long as
71200d45 4642 * possible
14a5cf38 4643 */
a0d1d361 4644 c->nl = nl;
14a5cf38
JH
4645 return (nl - b->ptr);
4646 }
4647 else {
4648 int code;
22569500 4649 b->ptr++; /* say we have read it as far as
14a5cf38 4650 * flush() is concerned */
22569500 4651 b->buf++; /* Leave space in front of buffer */
e949e37c
NIS
4652 /* Note as we have moved buf up flush's
4653 posn += ptr-buf
4654 will naturally make posn point at CR
4655 */
22569500
NIS
4656 b->bufsiz--; /* Buffer is thus smaller */
4657 code = PerlIO_fill(f); /* Fetch some more */
4658 b->bufsiz++; /* Restore size for next time */
4659 b->buf--; /* Point at space */
4660 b->ptr = nl = b->buf; /* Which is what we hand
14a5cf38 4661 * off */
76e6dc3a 4662 *nl = NATIVE_0xd; /* Fill in the CR */
14a5cf38 4663 if (code == 0)
22569500 4664 goto test; /* fill() call worked */
14a5cf38 4665 /*
71200d45 4666 * CR at EOF - just fall through
14a5cf38 4667 */
a0d1d361 4668 /* Should we clear EOF though ??? */
14a5cf38
JH
4669 }
4670 }
4671 }
4672 }
4673 return (((c->nl) ? (c->nl + 1) : b->end) - b->ptr);
4674 }
4675 return 0;
99efab12
NIS
4676}
4677
4678void
f62ce20a 4679PerlIOCrlf_set_ptrcnt(pTHX_ PerlIO *f, STDCHAR * ptr, SSize_t cnt)
14a5cf38 4680{
dcda55fc
AL
4681 PerlIOBuf * const b = PerlIOSelf(f, PerlIOBuf);
4682 PerlIOCrlf * const c = PerlIOSelf(f, PerlIOCrlf);
14a5cf38
JH
4683 if (!b->buf)
4684 PerlIO_get_base(f);
4685 if (!ptr) {
a0d1d361 4686 if (c->nl) {
14a5cf38 4687 ptr = c->nl + 1;
76e6dc3a 4688 if (ptr == b->end && *c->nl == NATIVE_0xd) {
486ec47a 4689 /* Deferred CR at end of buffer case - we lied about count */
22569500
NIS
4690 ptr--;
4691 }
4692 }
14a5cf38
JH
4693 else {
4694 ptr = b->end;
14a5cf38
JH
4695 }
4696 ptr -= cnt;
4697 }
4698 else {
6f207bd3 4699 NOOP;
3b4bd3fd 4700#if 0
14a5cf38 4701 /*
71200d45 4702 * Test code - delete when it works ...
14a5cf38 4703 */
3b4bd3fd 4704 IV flags = PerlIOBase(f)->flags;
ba7abf9d 4705 STDCHAR *chk = (c->nl) ? (c->nl+1) : b->end;
76e6dc3a 4706 if (ptr+cnt == c->nl && c->nl+1 == b->end && *c->nl == NATIVE_0xd) {
486ec47a 4707 /* Deferred CR at end of buffer case - we lied about count */
a0d1d361 4708 chk--;
22569500 4709 }
14a5cf38
JH
4710 chk -= cnt;
4711
a0d1d361 4712 if (ptr != chk ) {
99ef548b 4713 Perl_croak(aTHX_ "ptr wrong %p != %p fl=%08" UVxf
6c9570dc
MHM
4714 " nl=%p e=%p for %d", (void*)ptr, (void*)chk,
4715 flags, c->nl, b->end, cnt);
14a5cf38 4716 }
99ef548b 4717#endif
14a5cf38
JH
4718 }
4719 if (c->nl) {
4720 if (ptr > c->nl) {
4721 /*
71200d45 4722 * They have taken what we lied about
14a5cf38 4723 */
76e6dc3a 4724 *(c->nl) = NATIVE_0xd;
14a5cf38
JH
4725 c->nl = NULL;
4726 ptr++;
4727 }
4728 }
4729 b->ptr = ptr;
4730 PerlIOBase(f)->flags |= PERLIO_F_RDBUF;
99efab12
NIS
4731}
4732
4733SSize_t
f62ce20a 4734PerlIOCrlf_write(pTHX_ PerlIO *f, const void *vbuf, Size_t count)
99efab12 4735{
14a5cf38 4736 if (!(PerlIOBase(f)->flags & PERLIO_F_CRLF))
f62ce20a 4737 return PerlIOBuf_write(aTHX_ f, vbuf, count);
14a5cf38 4738 else {
dcda55fc 4739 PerlIOBuf * const b = PerlIOSelf(f, PerlIOBuf);
14a5cf38 4740 const STDCHAR *buf = (const STDCHAR *) vbuf;
dcda55fc 4741 const STDCHAR * const ebuf = buf + count;
14a5cf38
JH
4742 if (!b->buf)
4743 PerlIO_get_base(f);
4744 if (!(PerlIOBase(f)->flags & PERLIO_F_CANWRITE))
4745 return 0;
4746 while (buf < ebuf) {
dcda55fc 4747 const STDCHAR * const eptr = b->buf + b->bufsiz;
14a5cf38
JH
4748 PerlIOBase(f)->flags |= PERLIO_F_WRBUF;
4749 while (buf < ebuf && b->ptr < eptr) {
4750 if (*buf == '\n') {
4751 if ((b->ptr + 2) > eptr) {
4752 /*
71200d45 4753 * Not room for both
14a5cf38
JH
4754 */
4755 PerlIO_flush(f);
4756 break;
4757 }
4758 else {
76e6dc3a
KW
4759 *(b->ptr)++ = NATIVE_0xd; /* CR */
4760 *(b->ptr)++ = NATIVE_0xa; /* LF */
14a5cf38
JH
4761 buf++;
4762 if (PerlIOBase(f)->flags & PERLIO_F_LINEBUF) {
4763 PerlIO_flush(f);
4764 break;
4765 }
4766 }
4767 }
4768 else {
dcda55fc 4769 *(b->ptr)++ = *buf++;
14a5cf38
JH
4770 }
4771 if (b->ptr >= eptr) {
4772 PerlIO_flush(f);
4773 break;
4774 }
4775 }
4776 }
4777 if (PerlIOBase(f)->flags & PERLIO_F_UNBUF)
4778 PerlIO_flush(f);
4779 return (buf - (STDCHAR *) vbuf);
4780 }
99efab12
NIS
4781}
4782
4783IV
f62ce20a 4784PerlIOCrlf_flush(pTHX_ PerlIO *f)
99efab12 4785{
dcda55fc 4786 PerlIOCrlf * const c = PerlIOSelf(f, PerlIOCrlf);
14a5cf38 4787 if (c->nl) {
76e6dc3a 4788 *(c->nl) = NATIVE_0xd;
14a5cf38
JH
4789 c->nl = NULL;
4790 }
f62ce20a 4791 return PerlIOBuf_flush(aTHX_ f);
99efab12
NIS
4792}
4793
86e05cf2
NIS
4794IV
4795PerlIOCrlf_binmode(pTHX_ PerlIO *f)
4796{
4797 if ((PerlIOBase(f)->flags & PERLIO_F_CRLF)) {
4798 /* In text mode - flush any pending stuff and flip it */
4799 PerlIOBase(f)->flags &= ~PERLIO_F_CRLF;
4800#ifndef PERLIO_USING_CRLF
4801 /* CRLF is unusual case - if this is just the :crlf layer pop it */
5fae6dc1 4802 PerlIO_pop(aTHX_ f);
86e05cf2
NIS
4803#endif
4804 }
4805 return 0;
4806}
4807
27da23d5 4808PERLIO_FUNCS_DECL(PerlIO_crlf) = {
2dc2558e 4809 sizeof(PerlIO_funcs),
14a5cf38
JH
4810 "crlf",
4811 sizeof(PerlIOCrlf),
86e05cf2 4812 PERLIO_K_BUFFERED | PERLIO_K_CANCRLF | PERLIO_K_RAW,
14a5cf38 4813 PerlIOCrlf_pushed,
44798d05 4814 PerlIOBuf_popped, /* popped */
14a5cf38 4815 PerlIOBuf_open,
86e05cf2 4816 PerlIOCrlf_binmode, /* binmode */
14a5cf38
JH
4817 NULL,
4818 PerlIOBase_fileno,
71200d45 4819 PerlIOBuf_dup,
de009b76 4820 PerlIOBuf_read, /* generic read works with ptr/cnt lies */
22569500
NIS
4821 PerlIOCrlf_unread, /* Put CR,LF in buffer for each '\n' */
4822 PerlIOCrlf_write, /* Put CR,LF in buffer for each '\n' */
14a5cf38
JH
4823 PerlIOBuf_seek,
4824 PerlIOBuf_tell,
4825 PerlIOBuf_close,
4826 PerlIOCrlf_flush,
4827 PerlIOBuf_fill,
4828 PerlIOBase_eof,
4829 PerlIOBase_error,
4830 PerlIOBase_clearerr,
4831 PerlIOBase_setlinebuf,
4832 PerlIOBuf_get_base,
4833 PerlIOBuf_bufsiz,
4834 PerlIOBuf_get_ptr,
4835 PerlIOCrlf_get_cnt,
4836 PerlIOCrlf_set_ptrcnt,
66ecd56b
NIS
4837};
4838
9e353e3b 4839PerlIO *
e87a358a 4840Perl_PerlIO_stdin(pTHX)
9e353e3b 4841{
a1ea730d 4842 if (!PL_perlio) {
14a5cf38
JH
4843 PerlIO_stdstreams(aTHX);
4844 }
303f2dc3 4845 return (PerlIO*)&PL_perlio[1];
9e353e3b
NIS
4846}
4847
9e353e3b 4848PerlIO *
e87a358a 4849Perl_PerlIO_stdout(pTHX)
9e353e3b 4850{
a1ea730d 4851 if (!PL_perlio) {
14a5cf38
JH
4852 PerlIO_stdstreams(aTHX);
4853 }
303f2dc3 4854 return (PerlIO*)&PL_perlio[2];
9e353e3b
NIS
4855}
4856
9e353e3b 4857PerlIO *
e87a358a 4858Perl_PerlIO_stderr(pTHX)
9e353e3b 4859{
a1ea730d 4860 if (!PL_perlio) {
14a5cf38
JH
4861 PerlIO_stdstreams(aTHX);
4862 }
303f2dc3 4863 return (PerlIO*)&PL_perlio[3];
9e353e3b
NIS
4864}
4865
4866/*--------------------------------------------------------------------------------------*/
4867
9e353e3b
NIS
4868char *
4869PerlIO_getname(PerlIO *f, char *buf)
4870{
a15cef0c 4871#ifdef VMS
dbf7dff6 4872 dTHX;
73d840c0 4873 char *name = NULL;
7659f319 4874 bool exported = FALSE;
14a5cf38 4875 FILE *stdio = PerlIOSelf(f, PerlIOStdio)->stdio;
7659f319
CB
4876 if (!stdio) {
4877 stdio = PerlIO_exportFILE(f,0);
4878 exported = TRUE;
4879 }
4880 if (stdio) {
14a5cf38 4881 name = fgetname(stdio, buf);
7659f319
CB
4882 if (exported) PerlIO_releaseFILE(f,stdio);
4883 }
73d840c0 4884 return name;
a15cef0c 4885#else
8772537c
AL
4886 PERL_UNUSED_ARG(f);
4887 PERL_UNUSED_ARG(buf);
dbf7dff6 4888 Perl_croak_nocontext("Don't know how to get file name");
bd61b366 4889 return NULL;
a15cef0c 4890#endif
9e353e3b
NIS
4891}
4892
4893
4894/*--------------------------------------------------------------------------------------*/
14a5cf38
JH
4895/*
4896 * Functions which can be called on any kind of PerlIO implemented in
71200d45 4897 * terms of above
14a5cf38 4898 */
9e353e3b 4899
e87a358a
NIS
4900#undef PerlIO_fdopen
4901PerlIO *
4902PerlIO_fdopen(int fd, const char *mode)
4903{
4904 dTHX;
bd61b366 4905 return PerlIO_openn(aTHX_ NULL, mode, fd, 0, 0, NULL, 0, NULL);
e87a358a
NIS
4906}
4907
4908#undef PerlIO_open
4909PerlIO *
4910PerlIO_open(const char *path, const char *mode)
4911{
4912 dTHX;
42d9b98d 4913 SV *name = sv_2mortal(newSVpv(path, 0));
bd61b366 4914 return PerlIO_openn(aTHX_ NULL, mode, -1, 0, 0, NULL, 1, &name);
e87a358a
NIS
4915}
4916
4917#undef Perlio_reopen
4918PerlIO *
4919PerlIO_reopen(const char *path, const char *mode, PerlIO *f)
4920{
4921 dTHX;
42d9b98d 4922 SV *name = sv_2mortal(newSVpv(path,0));
bd61b366 4923 return PerlIO_openn(aTHX_ NULL, mode, -1, 0, 0, f, 1, &name);
e87a358a
NIS
4924}
4925
9e353e3b 4926#undef PerlIO_getc
6f9d8c32 4927int
9e353e3b 4928PerlIO_getc(PerlIO *f)
760ac839 4929{
e87a358a 4930 dTHX;
14a5cf38 4931 STDCHAR buf[1];
de009b76 4932 if ( 1 == PerlIO_read(f, buf, 1) ) {
14a5cf38
JH
4933 return (unsigned char) buf[0];
4934 }
4935 return EOF;
313ca112
NIS
4936}
4937
4938#undef PerlIO_ungetc
4939int
4940PerlIO_ungetc(PerlIO *f, int ch)
4941{
e87a358a 4942 dTHX;
14a5cf38
JH
4943 if (ch != EOF) {
4944 STDCHAR buf = ch;
4945 if (PerlIO_unread(f, &buf, 1) == 1)
4946 return ch;
4947 }
4948 return EOF;
760ac839
LW
4949}
4950
9e353e3b
NIS
4951#undef PerlIO_putc
4952int
4953PerlIO_putc(PerlIO *f, int ch)
760ac839 4954{
e87a358a 4955 dTHX;
14a5cf38
JH
4956 STDCHAR buf = ch;
4957 return PerlIO_write(f, &buf, 1);
760ac839
LW
4958}
4959
9e353e3b 4960#undef PerlIO_puts
760ac839 4961int
9e353e3b 4962PerlIO_puts(PerlIO *f, const char *s)
760ac839 4963{
e87a358a 4964 dTHX;
dcda55fc 4965 return PerlIO_write(f, s, strlen(s));
760ac839
LW
4966}
4967
4968#undef PerlIO_rewind
4969void
c78749f2 4970PerlIO_rewind(PerlIO *f)
760ac839 4971{
e87a358a 4972 dTHX;
14a5cf38
JH
4973 PerlIO_seek(f, (Off_t) 0, SEEK_SET);
4974 PerlIO_clearerr(f);
6f9d8c32
NIS
4975}
4976
4977#undef PerlIO_vprintf
4978int
4979PerlIO_vprintf(PerlIO *f, const char *fmt, va_list ap)
4980{
14a5cf38 4981 dTHX;
53ce71d3 4982 SV * sv;
b83604b4 4983 const char *s;
14a5cf38
JH
4984 STRLEN len;
4985 SSize_t wrote;
2cc61e15 4986#ifdef NEED_VA_COPY
14a5cf38
JH
4987 va_list apc;
4988 Perl_va_copy(ap, apc);
53ce71d3 4989 sv = vnewSVpvf(fmt, &apc);
d4825b27 4990 va_end(apc);
2cc61e15 4991#else
53ce71d3 4992 sv = vnewSVpvf(fmt, &ap);
2cc61e15 4993#endif
b83604b4 4994 s = SvPV_const(sv, len);
14a5cf38
JH
4995 wrote = PerlIO_write(f, s, len);
4996 SvREFCNT_dec(sv);
4997 return wrote;
760ac839
LW
4998}
4999
5000#undef PerlIO_printf
6f9d8c32 5001int
14a5cf38 5002PerlIO_printf(PerlIO *f, const char *fmt, ...)
760ac839 5003{
14a5cf38
JH
5004 va_list ap;
5005 int result;
5006 va_start(ap, fmt);
5007 result = PerlIO_vprintf(f, fmt, ap);
5008 va_end(ap);
5009 return result;
760ac839
LW
5010}
5011
5012#undef PerlIO_stdoutf
6f9d8c32 5013int
14a5cf38 5014PerlIO_stdoutf(const char *fmt, ...)
760ac839 5015{
e87a358a 5016 dTHX;
14a5cf38
JH
5017 va_list ap;
5018 int result;
5019 va_start(ap, fmt);
5020 result = PerlIO_vprintf(PerlIO_stdout(), fmt, ap);
5021 va_end(ap);
5022 return result;
760ac839
LW
5023}
5024
5025#undef PerlIO_tmpfile
5026PerlIO *
c78749f2 5027PerlIO_tmpfile(void)
760ac839 5028{
dbf7dff6 5029#ifndef WIN32
2941a2e1 5030 dTHX;
dbf7dff6 5031#endif
2941a2e1 5032 PerlIO *f = NULL;
2941a2e1 5033#ifdef WIN32
de009b76 5034 const int fd = win32_tmpfd();
2941a2e1
JH
5035 if (fd >= 0)
5036 f = PerlIO_fdopen(fd, "w+b");
faf55891 5037#elif defined(HAS_MKSTEMP) && ! defined(VMS) && ! defined(OS2)
0b99e986
RGS
5038 int fd = -1;
5039 char tempname[] = "/tmp/PerlIO_XXXXXX";
284167a5 5040 const char * const tmpdir = TAINTING_get ? NULL : PerlEnv_getenv("TMPDIR");
525f6fe9 5041 SV * sv = NULL;
e57270be 5042 int old_umask = umask(0177);
2941a2e1
JH
5043 /*
5044 * I have no idea how portable mkstemp() is ... NI-S
5045 */
7299ca58 5046 if (tmpdir && *tmpdir) {
0b99e986 5047 /* if TMPDIR is set and not empty, we try that first */
7299ca58 5048 sv = newSVpv(tmpdir, 0);
0b99e986
RGS
5049 sv_catpv(sv, tempname + 4);
5050 fd = mkstemp(SvPVX(sv));
5051 }
5052 if (fd < 0) {
e40f8e80 5053 SvREFCNT_dec(sv);
7299ca58 5054 sv = NULL;
0b99e986
RGS
5055 /* else we try /tmp */
5056 fd = mkstemp(tempname);
5057 }
b7561fc9
BF
5058 if (fd < 0) {
5059 /* Try cwd */
5060 sv = newSVpvs(".");
5061 sv_catpv(sv, tempname + 4);
5062 fd = mkstemp(SvPVX(sv));
5063 }
60f7fc1e 5064 umask(old_umask);
2941a2e1
JH
5065 if (fd >= 0) {
5066 f = PerlIO_fdopen(fd, "w+");
5067 if (f)
5068 PerlIOBase(f)->flags |= PERLIO_F_TEMP;
0b99e986 5069 PerlLIO_unlink(sv ? SvPVX_const(sv) : tempname);
2941a2e1 5070 }
ef8d46e8 5071 SvREFCNT_dec(sv);
faf55891 5072#else /* !HAS_MKSTEMP, fallback to stdio tmpfile(). */
c4420975 5073 FILE * const stdio = PerlSIO_tmpfile();
2941a2e1 5074
085e731f
CB
5075 if (stdio)
5076 f = PerlIO_fdopen(fileno(stdio), "w+");
5077
2941a2e1
JH
5078#endif /* else WIN32 */
5079 return f;
760ac839
LW
5080}
5081
0ea86a10
FC
5082void
5083Perl_PerlIO_save_errno(pTHX_ PerlIO *f)
5084{
e9b8343f 5085 PERL_UNUSED_CONTEXT;
0ea86a10
FC
5086 if (!PerlIOValid(f))
5087 return;
5088 PerlIOBase(f)->err = errno;
5089#ifdef VMS
5090 PerlIOBase(f)->os_err = vaxc$errno;
5091#elif defined(OS2)
5092 PerlIOBase(f)->os_err = Perl_rc;
5093#elif defined(WIN32)
5094 PerlIOBase(f)->os_err = GetLastError();
5095#endif
5096}
5097
5098void
5099Perl_PerlIO_restore_errno(pTHX_ PerlIO *f)
5100{
e9b8343f 5101 PERL_UNUSED_CONTEXT;
0ea86a10
FC
5102 if (!PerlIOValid(f))
5103 return;
5104 SETERRNO(PerlIOBase(f)->err, PerlIOBase(f)->os_err);
5105#ifdef OS2
5106 Perl_rc = PerlIOBase(f)->os_err);
5107#elif defined(WIN32)
5108 SetLastError(PerlIOBase(f)->os_err);
5109#endif
5110}
5111
6f9d8c32
NIS
5112#undef HAS_FSETPOS
5113#undef HAS_FGETPOS
5114
760ac839 5115
9e353e3b 5116/*======================================================================================*/
14a5cf38 5117/*
71200d45
NIS
5118 * Now some functions in terms of above which may be needed even if we are
5119 * not in true PerlIO mode
9e353e3b 5120 */
188f0c84
YO
5121const char *
5122Perl_PerlIO_context_layers(pTHX_ const char *mode)
5123{
8b850bd5
NC
5124 const char *direction = NULL;
5125 SV *layers;
188f0c84
YO
5126 /*
5127 * Need to supply default layer info from open.pm
5128 */
8b850bd5
NC
5129
5130 if (!PL_curcop)
5131 return NULL;
5132
5133 if (mode && mode[0] != 'r') {
5134 if (PL_curcop->cop_hints & HINT_LEXICAL_IO_OUT)
5135 direction = "open>";
5136 } else {
5137 if (PL_curcop->cop_hints & HINT_LEXICAL_IO_IN)
5138 direction = "open<";
188f0c84 5139 }
8b850bd5
NC
5140 if (!direction)
5141 return NULL;
5142
20439bc7 5143 layers = cop_hints_fetch_pvn(PL_curcop, direction, 5, 0, 0);
8b850bd5
NC
5144
5145 assert(layers);
5146 return SvOK(layers) ? SvPV_nolen_const(layers) : NULL;
188f0c84
YO
5147}
5148
9e353e3b 5149
760ac839
LW
5150#ifndef HAS_FSETPOS
5151#undef PerlIO_setpos
5152int
766a733e 5153PerlIO_setpos(PerlIO *f, SV *pos)
760ac839 5154{
14a5cf38 5155 if (SvOK(pos)) {
e1a83e70
DD
5156 if (f) {
5157 dTHX;
5158 STRLEN len;
5159 const Off_t * const posn = (Off_t *) SvPV(pos, len);
5160 if(len == sizeof(Off_t))
5161 return PerlIO_seek(f, *posn, SEEK_SET);
5162 }
14a5cf38 5163 }
93189314 5164 SETERRNO(EINVAL, SS_IVCHAN);
14a5cf38 5165 return -1;
760ac839 5166}
c411622e 5167#else
c411622e 5168#undef PerlIO_setpos
5169int
766a733e 5170PerlIO_setpos(PerlIO *f, SV *pos)
c411622e 5171{
14a5cf38 5172 if (SvOK(pos)) {
e1a83e70
DD
5173 if (f) {
5174 dTHX;
5175 STRLEN len;
5176 Fpos_t * const fpos = (Fpos_t *) SvPV(pos, len);
5177 if(len == sizeof(Fpos_t))
2d4389e4 5178#if defined(USE_64_BIT_STDIO) && defined(USE_FSETPOS64)
e1a83e70 5179 return fsetpos64(f, fpos);
d9b3e12d 5180#else
e1a83e70 5181 return fsetpos(f, fpos);
d9b3e12d 5182#endif
14a5cf38 5183 }
766a733e 5184 }
93189314 5185 SETERRNO(EINVAL, SS_IVCHAN);
14a5cf38 5186 return -1;
c411622e 5187}
5188#endif
760ac839
LW
5189
5190#ifndef HAS_FGETPOS
5191#undef PerlIO_getpos
5192int
766a733e 5193PerlIO_getpos(PerlIO *f, SV *pos)
760ac839 5194{
14a5cf38
JH
5195 dTHX;
5196 Off_t posn = PerlIO_tell(f);
5197 sv_setpvn(pos, (char *) &posn, sizeof(posn));
5198 return (posn == (Off_t) - 1) ? -1 : 0;
760ac839 5199}
c411622e 5200#else
c411622e 5201#undef PerlIO_getpos
5202int
766a733e 5203PerlIO_getpos(PerlIO *f, SV *pos)
c411622e 5204{
14a5cf38
JH
5205 dTHX;
5206 Fpos_t fpos;
5207 int code;
2d4389e4 5208#if defined(USE_64_BIT_STDIO) && defined(USE_FSETPOS64)
14a5cf38 5209 code = fgetpos64(f, &fpos);
d9b3e12d 5210#else
14a5cf38 5211 code = fgetpos(f, &fpos);
d9b3e12d 5212#endif
14a5cf38
JH
5213 sv_setpvn(pos, (char *) &fpos, sizeof(fpos));
5214 return code;
c411622e 5215}
5216#endif
760ac839 5217
db6e00bd
DD
5218/* print a failure format string message to stderr and fail exit the process
5219 using only libc without depending on any perl data structures being
5220 initialized.
5221*/
5222
5223void
5224Perl_noperl_die(const char* pat, ...)
5225{
5226 va_list(arglist);
5227 PERL_ARGS_ASSERT_NOPERL_DIE;
5228 va_start(arglist, pat);
5229 vfprintf(stderr, pat, arglist);
5230 va_end(arglist);
5231 exit(1);
5232}
5233
9cfa90c0 5234/*
14d04a33 5235 * ex: set ts=8 sts=4 sw=4 et:
37442d52 5236 */