Avoid dup3 PLT usage.
[platform/upstream/glibc.git] / libio / fmemopen.c
1 /* Fmemopen implementation.
2    Copyright (C) 2000, 2002, 2005, 2006, 2008, 2009, 2011
3    Free Software Foundation, Inc.
4    This file is part of the GNU C Library.
5    Contributed by Hanno Mueller, kontakt@hanno.de, 2000.
6
7    The GNU C Library is free software; you can redistribute it and/or
8    modify it under the terms of the GNU Lesser General Public
9    License as published by the Free Software Foundation; either
10    version 2.1 of the License, or (at your option) any later version.
11
12    The GNU C Library is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15    Lesser General Public License for more details.
16
17    You should have received a copy of the GNU Lesser General Public
18    License along with the GNU C Library; if not, see
19    <http://www.gnu.org/licenses/>.  */
20
21 /*
22  * fmemopen() - "my" version of a string stream
23  * Hanno Mueller, kontakt@hanno.de
24  *
25  *
26  * I needed fmemopen() for an application that I currently work on,
27  * but couldn't find it in libio. The following snippet of code is an
28  * attempt to implement what glibc's documentation describes.
29  *
30  *
31  *
32  * I already see some potential problems:
33  *
34  * - I never used the "original" fmemopen(). I am sure that "my"
35  *   fmemopen() behaves differently than the original version.
36  *
37  * - The documentation doesn't say wether a string stream allows
38  *   seeks. I checked the old fmemopen implementation in glibc's stdio
39  *   directory, wasn't quite able to see what is going on in that
40  *   source, but as far as I understand there was no seek there. For
41  *   my application, I needed fseek() and ftell(), so it's here.
42  *
43  * - "append" mode and fseek(p, SEEK_END) have two different ideas
44  *   about the "end" of the stream.
45  *
46  *   As described in the documentation, when opening the file in
47  *   "append" mode, the position pointer will be set to the first null
48  *   character of the string buffer (yet the buffer may already
49  *   contain more data). For fseek(), the last byte of the buffer is
50  *   used as the end of the stream.
51  *
52  * - It is unclear to me what the documentation tries to say when it
53  *   explains what happens when you use fmemopen with a NULL
54  *   buffer.
55  *
56  *   Quote: "fmemopen [then] allocates an array SIZE bytes long. This
57  *   is really only useful if you are going to write things to the
58  *   buffer and then read them back in again."
59  *
60  *   What does that mean if the original fmemopen() did not allow
61  *   seeking? How do you read what you just wrote without seeking back
62  *   to the beginning of the stream?
63  *
64  * - I think there should be a second version of fmemopen() that does
65  *   not add null characters for each write. (At least in my
66  *   application, I am not actually using strings but binary data and
67  *   so I don't need the stream to add null characters on its own.)
68  */
69
70 #include <errno.h>
71 #include <libio.h>
72 #include <stdio.h>
73 #include <stdlib.h>
74 #include <stdint.h>
75 #include <string.h>
76 #include <sys/types.h>
77 #include "libioP.h"
78
79
80 typedef struct fmemopen_cookie_struct fmemopen_cookie_t;
81 struct fmemopen_cookie_struct
82 {
83   char *buffer;
84   int mybuffer;
85   int binmode;
86   size_t size;
87   _IO_off64_t pos;
88   size_t maxpos;
89 };
90
91
92 static ssize_t
93 fmemopen_read (void *cookie, char *b, size_t s)
94 {
95   fmemopen_cookie_t *c;
96
97   c = (fmemopen_cookie_t *) cookie;
98
99   if (c->pos + s > c->size)
100     {
101       if ((size_t) c->pos == c->size)
102         return 0;
103       s = c->size - c->pos;
104     }
105
106   memcpy (b, &(c->buffer[c->pos]), s);
107
108   c->pos += s;
109   if ((size_t) c->pos > c->maxpos)
110     c->maxpos = c->pos;
111
112   return s;
113 }
114
115
116 static ssize_t
117 fmemopen_write (void *cookie, const char *b, size_t s)
118 {
119   fmemopen_cookie_t *c;
120   int addnullc;
121
122   c = (fmemopen_cookie_t *) cookie;
123
124   addnullc = c->binmode == 0 && (s == 0 || b[s - 1] != '\0');
125
126   if (c->pos + s + addnullc > c->size)
127     {
128       if ((size_t) (c->pos + addnullc) == c->size)
129         {
130           __set_errno (ENOSPC);
131           return 0;
132         }
133       s = c->size - c->pos - addnullc;
134     }
135
136   memcpy (&(c->buffer[c->pos]), b, s);
137
138   c->pos += s;
139   if ((size_t) c->pos > c->maxpos)
140     {
141       c->maxpos = c->pos;
142       if (addnullc)
143         c->buffer[c->maxpos] = '\0';
144     }
145
146   return s;
147 }
148
149
150 static int
151 fmemopen_seek (void *cookie, _IO_off64_t *p, int w)
152 {
153   _IO_off64_t np;
154   fmemopen_cookie_t *c;
155
156   c = (fmemopen_cookie_t *) cookie;
157
158   switch (w)
159     {
160     case SEEK_SET:
161       np = *p;
162       break;
163
164     case SEEK_CUR:
165       np = c->pos + *p;
166       break;
167
168     case SEEK_END:
169       np = (c->binmode ? c->size : c->maxpos) - *p;
170       break;
171
172     default:
173       return -1;
174     }
175
176   if (np < 0 || (size_t) np > c->size)
177     return -1;
178
179   *p = c->pos = np;
180
181   return 0;
182 }
183
184
185 static int
186 fmemopen_close (void *cookie)
187 {
188   fmemopen_cookie_t *c;
189
190   c = (fmemopen_cookie_t *) cookie;
191
192   if (c->mybuffer)
193     free (c->buffer);
194   free (c);
195
196   return 0;
197 }
198
199
200 FILE *
201 fmemopen (void *buf, size_t len, const char *mode)
202 {
203   cookie_io_functions_t iof;
204   fmemopen_cookie_t *c;
205
206   if (__builtin_expect (len == 0, 0))
207     {
208     einval:
209       __set_errno (EINVAL);
210       return NULL;
211     }
212
213   c = (fmemopen_cookie_t *) malloc (sizeof (fmemopen_cookie_t));
214   if (c == NULL)
215     return NULL;
216
217   c->mybuffer = (buf == NULL);
218
219   if (c->mybuffer)
220     {
221       c->buffer = (char *) malloc (len);
222       if (c->buffer == NULL)
223         {
224           free (c);
225           return NULL;
226         }
227       c->buffer[0] = '\0';
228       c->maxpos = 0;
229     }
230   else
231     {
232       if (__builtin_expect ((uintptr_t) len > -(uintptr_t) buf, 0))
233         {
234           free (c);
235           goto einval;
236         }
237
238       c->buffer = buf;
239
240       if (mode[0] == 'w')
241         c->buffer[0] = '\0';
242
243       c->maxpos = strnlen (c->buffer, len);
244     }
245
246   c->size = len;
247
248   if (mode[0] == 'a')
249     c->pos = c->maxpos;
250   else
251     c->pos = 0;
252
253   c->binmode = mode[0] != '\0' && mode[1] == 'b';
254
255   iof.read = fmemopen_read;
256   iof.write = fmemopen_write;
257   iof.seek = fmemopen_seek;
258   iof.close = fmemopen_close;
259
260   return _IO_fopencookie (c, mode, iof);
261 }
262 libc_hidden_def (fmemopen)