source: trunk/libs/newlib/src/newlib/libc/stdio/gets.c @ 577

Last change on this file since 577 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 2.7 KB
Line 
1/*
2 * Copyright (c) 1990 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms are permitted
6 * provided that the above copyright notice and this paragraph are
7 * duplicated in all such forms and that any documentation,
8 * advertising materials, and other materials related to such
9 * distribution and use acknowledge that the software was developed
10 * by the University of California, Berkeley.  The name of the
11 * University may not be used to endorse or promote products derived
12 * from this software without specific prior written permission.
13 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
14 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
15 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
16 */
17
18/*
19FUNCTION
20<<gets>>---get character string (obsolete, use <<fgets>> instead)
21
22INDEX
23        gets
24INDEX
25        _gets_r
26
27SYNOPSIS
28        #include <stdio.h>
29
30        char *gets(char *<[buf]>);
31
32        char *_gets_r(struct _reent *<[reent]>, char *<[buf]>);
33
34DESCRIPTION
35        Reads characters from standard input until a newline is found.
36        The characters up to the newline are stored in <[buf]>. The
37        newline is discarded, and the buffer is terminated with a 0.
38
39        This is a @emph{dangerous} function, as it has no way of checking
40        the amount of space available in <[buf]>. One of the attacks
41        used by the Internet Worm of 1988 used this to overrun a
42        buffer allocated on the stack of the finger daemon and
43        overwrite the return address, causing the daemon to execute
44        code downloaded into it over the connection.
45
46        The alternate function <<_gets_r>> is a reentrant version.  The extra
47        argument <[reent]> is a pointer to a reentrancy structure.
48
49
50RETURNS
51        <<gets>> returns the buffer passed to it, with the data filled
52        in. If end of file occurs with some data already accumulated,
53        the data is returned with no other indication. If end of file
54        occurs with no data in the buffer, NULL is returned.
55
56Supporting OS subroutines required: <<close>>, <<fstat>>, <<isatty>>,
57<<lseek>>, <<read>>, <<sbrk>>, <<write>>.
58*/
59
60#include <_ansi.h>
61#include <reent.h>
62#include <stdio.h>
63#include "local.h"
64
65char *
66_gets_r (struct _reent *ptr,
67       char *buf)
68{
69  register int c;
70  register char *s = buf;
71  FILE *fp;
72
73  _REENT_SMALL_CHECK_INIT (ptr);
74  fp = _stdin_r (ptr);
75  CHECK_INIT (ptr, fp);
76  _newlib_flockfile_start (fp);
77  while ((c = __sgetc_r (ptr, fp)) != '\n')
78    if (c == EOF)
79      if (s == buf)
80        {
81          _newlib_flockfile_exit (fp);
82          return NULL;
83        }
84      else
85        break;
86    else
87      *s++ = c;
88  *s = 0;
89  _newlib_flockfile_end (fp);
90  return buf;
91}
92
93#ifndef _REENT_ONLY
94
95char *
96gets (char *buf)
97{
98  return _gets_r (_REENT, buf);
99}
100
101#endif
Note: See TracBrowser for help on using the repository browser.