Home | History | Annotate | Download | only in stdio
      1 /*	$OpenBSD: findfp.c,v 1.9 2005/08/08 08:05:36 espie Exp $ */
      2 /*-
      3  * Copyright (c) 1990, 1993
      4  *	The Regents of the University of California.  All rights reserved.
      5  *
      6  * This code is derived from software contributed to Berkeley by
      7  * Chris Torek.
      8  *
      9  * Redistribution and use in source and binary forms, with or without
     10  * modification, are permitted provided that the following conditions
     11  * are met:
     12  * 1. Redistributions of source code must retain the above copyright
     13  *    notice, this list of conditions and the following disclaimer.
     14  * 2. Redistributions in binary form must reproduce the above copyright
     15  *    notice, this list of conditions and the following disclaimer in the
     16  *    documentation and/or other materials provided with the distribution.
     17  * 3. Neither the name of the University nor the names of its contributors
     18  *    may be used to endorse or promote products derived from this software
     19  *    without specific prior written permission.
     20  *
     21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     31  * SUCH DAMAGE.
     32  */
     33 
     34 #include <sys/param.h>
     35 #include <unistd.h>
     36 #include <stdio.h>
     37 #include <errno.h>
     38 #include <stdlib.h>
     39 #include <string.h>
     40 #include "local.h"
     41 #include "glue.h"
     42 #include "thread_private.h"
     43 
     44 int	__sdidinit;
     45 
     46 #define	NDYNAMIC 10		/* add ten more whenever necessary */
     47 
     48 #define	std(flags, file) \
     49 	{0,0,0,flags,file,{0,0},0,__sF+file,__sclose,__sread,__sseek,__swrite, \
     50 	 {(unsigned char *)(__sFext+file), 0},NULL,0,{0,0,0},{0},{0,0},0,0}
     51 /*	 p r w flags file _bf z  cookie      close    read    seek    write
     52 	 ext */
     53 
     54 /* the usual - (stdin + stdout + stderr) */
     55 static FILE usual[FOPEN_MAX - 3];
     56 static struct __sfileext usualext[FOPEN_MAX - 3];
     57 static struct glue uglue = { 0, FOPEN_MAX - 3, usual };
     58 static struct glue *lastglue = &uglue;
     59 _THREAD_PRIVATE_MUTEX(__sfp_mutex);
     60 
     61 static struct __sfileext __sFext[3];
     62 FILE __sF[3] = {
     63 	std(__SRD, STDIN_FILENO),		/* stdin */
     64 	std(__SWR, STDOUT_FILENO),		/* stdout */
     65 	std(__SWR|__SNBF, STDERR_FILENO)	/* stderr */
     66 };
     67 struct glue __sglue = { &uglue, 3, __sF };
     68 
     69 static struct glue *
     70 moreglue(int n)
     71 {
     72 	struct glue *g;
     73 	FILE *p;
     74 	struct __sfileext *pext;
     75 	static FILE empty;
     76 	char *data;
     77 
     78 	data = malloc(sizeof(*g) + ALIGNBYTES + n * sizeof(FILE)
     79 	    + n * sizeof(struct __sfileext));
     80 	if (data == NULL)
     81 		return (NULL);
     82 	g = (struct glue *)data;
     83 	p = (FILE *)ALIGN(data + sizeof(*g));
     84 	pext = (struct __sfileext *)
     85 	    (ALIGN(data + sizeof(*g)) + n * sizeof(FILE));
     86 	g->next = NULL;
     87 	g->niobs = n;
     88 	g->iobs = p;
     89 	while (--n >= 0) {
     90 		*p = empty;
     91 		_FILEEXT_SETUP(p, pext);
     92 		p++;
     93 		pext++;
     94 	}
     95 	return (g);
     96 }
     97 
     98 /*
     99  * Find a free FILE for fopen et al.
    100  */
    101 FILE *
    102 __sfp(void)
    103 {
    104 	FILE *fp;
    105 	int n;
    106 	struct glue *g;
    107 
    108 	if (!__sdidinit)
    109 		__sinit();
    110 
    111 	_THREAD_PRIVATE_MUTEX_LOCK(__sfp_mutex);
    112 	for (g = &__sglue; g != NULL; g = g->next) {
    113 		for (fp = g->iobs, n = g->niobs; --n >= 0; fp++)
    114 			if (fp->_flags == 0)
    115 				goto found;
    116 	}
    117 
    118 	/* release lock while mallocing */
    119 	_THREAD_PRIVATE_MUTEX_UNLOCK(__sfp_mutex);
    120 	if ((g = moreglue(NDYNAMIC)) == NULL)
    121 		return (NULL);
    122 	_THREAD_PRIVATE_MUTEX_LOCK(__sfp_mutex);
    123 	lastglue->next = g;
    124 	lastglue = g;
    125 	fp = g->iobs;
    126 found:
    127 	fp->_flags = 1;		/* reserve this slot; caller sets real flags */
    128 	_THREAD_PRIVATE_MUTEX_UNLOCK(__sfp_mutex);
    129 	fp->_p = NULL;		/* no current pointer */
    130 	fp->_w = 0;		/* nothing to read or write */
    131 	fp->_r = 0;
    132 	fp->_bf._base = NULL;	/* no buffer */
    133 	fp->_bf._size = 0;
    134 	fp->_lbfsize = 0;	/* not line buffered */
    135 	fp->_file = -1;		/* no file */
    136 /*	fp->_cookie = <any>; */	/* caller sets cookie, _read/_write etc */
    137 	fp->_lb._base = NULL;	/* no line buffer */
    138 	fp->_lb._size = 0;
    139 	_FILEEXT_INIT(fp);
    140 	return (fp);
    141 }
    142 
    143 #if 0
    144 #define getdtablesize()	sysconf(_SC_OPEN_MAX)
    145 
    146 /*
    147  * XXX.  Force immediate allocation of internal memory.  Not used by stdio,
    148  * but documented historically for certain applications.  Bad applications.
    149  */
    150 void
    151 f_prealloc(void)
    152 {
    153 	struct glue *g;
    154 	int n;
    155 
    156 	n = getdtablesize() - FOPEN_MAX + 20;		/* 20 for slop. */
    157 	for (g = &__sglue; (n -= g->niobs) > 0 && g->next; g = g->next)
    158 		/* void */;
    159 	if (n > 0 && ((g = moreglue(n)) != NULL)) {
    160 		_THREAD_PRIVATE_MUTEX_LOCK(__sfp_mutex);
    161 		lastglue->next = g;
    162 		lastglue = g;
    163 		_THREAD_PRIVATE_MUTEX_UNLOCK(__sfp_mutex);
    164 	}
    165 }
    166 #endif
    167 
    168 /*
    169  * exit() and abort() call _cleanup() through the callback registered
    170  * with __atexit_register_cleanup(), set whenever we open or buffer a
    171  * file. This chicanery is done so that programs that do not use stdio
    172  * need not link it all in.
    173  *
    174  * The name `_cleanup' is, alas, fairly well known outside stdio.
    175  */
    176 void
    177 _cleanup(void)
    178 {
    179 	/* (void) _fwalk(fclose); */
    180 	(void) _fwalk(__sflush);		/* `cheating' */
    181 }
    182 
    183 /*
    184  * __sinit() is called whenever stdio's internal variables must be set up.
    185  */
    186 void
    187 __sinit(void)
    188 {
    189 	_THREAD_PRIVATE_MUTEX(__sinit_mutex);
    190 	int i;
    191 
    192 	_THREAD_PRIVATE_MUTEX_LOCK(__sinit_mutex);
    193 	if (__sdidinit)
    194 		goto out;	/* bail out if caller lost the race */
    195 	for (i = 0; i < FOPEN_MAX - 3; i++) {
    196 		_FILEEXT_SETUP(usual+i, usualext+i);
    197 	}
    198 	/* make sure we clean up on exit */
    199 	__atexit_register_cleanup(_cleanup); /* conservative */
    200 	__sdidinit = 1;
    201 out:
    202 	_THREAD_PRIVATE_MUTEX_UNLOCK(__sinit_mutex);
    203 }
    204