re_search_internal: Avoid overflow in computing re_malloc buffer size
[glibc.git] / libio / iosetvbuf.c
bloba92eaebf8556fab0ffb1f26435de3492c4ef3d09
1 /* Copyright (C) 1993, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
2 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA.
20 As a special exception, if you link the code in this file with
21 files compiled with a GNU compiler to produce an executable,
22 that does not cause the resulting executable to be covered by
23 the GNU Lesser General Public License. This exception does not
24 however invalidate any other reasons why the executable file
25 might be covered by the GNU Lesser General Public License.
26 This exception applies to code released by its copyright holders
27 in files containing the exception. */
29 #include "libioP.h"
31 #define _IOFBF 0 /* Fully buffered. */
32 #define _IOLBF 1 /* Line buffered. */
33 #define _IONBF 2 /* No buffering. */
35 int
36 _IO_setvbuf (fp, buf, mode, size)
37 _IO_FILE *fp;
38 char *buf;
39 int mode;
40 _IO_size_t size;
42 int result;
43 CHECK_FILE (fp, EOF);
44 _IO_acquire_lock (fp);
45 switch (mode)
47 case _IOFBF:
48 fp->_IO_file_flags &= ~(_IO_LINE_BUF|_IO_UNBUFFERED);
49 if (buf == NULL)
51 if (fp->_IO_buf_base == NULL)
53 /* There is no flag to distinguish between "fully buffered
54 mode has been explicitly set" as opposed to "line
55 buffering has not been explicitly set". In both
56 cases, _IO_LINE_BUF is off. If this is a tty, and
57 _IO_filedoalloc later gets called, it cannot know if
58 it should set the _IO_LINE_BUF flag (because that is
59 the default), or not (because we have explicitly asked
60 for fully buffered mode). So we make sure a buffer
61 gets allocated now, and explicitly turn off line
62 buffering.
64 A possibly cleaner alternative would be to add an
65 extra flag, but then flags are a finite resource. */
66 if (_IO_DOALLOCATE (fp) < 0)
68 result = EOF;
69 goto unlock_return;
71 fp->_IO_file_flags &= ~_IO_LINE_BUF;
73 result = 0;
74 goto unlock_return;
76 break;
77 case _IOLBF:
78 fp->_IO_file_flags &= ~_IO_UNBUFFERED;
79 fp->_IO_file_flags |= _IO_LINE_BUF;
80 if (buf == NULL)
82 result = 0;
83 goto unlock_return;
85 break;
86 case _IONBF:
87 fp->_IO_file_flags &= ~_IO_LINE_BUF;
88 fp->_IO_file_flags |= _IO_UNBUFFERED;
89 buf = NULL;
90 size = 0;
91 break;
92 default:
93 result = EOF;
94 goto unlock_return;
96 result = _IO_SETBUF (fp, buf, size) == NULL ? EOF : 0;
98 unlock_return:
99 _IO_release_lock (fp);
100 return result;
102 INTDEF(_IO_setvbuf)
104 #ifdef weak_alias
105 weak_alias (_IO_setvbuf, setvbuf)
106 #endif