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