include errno.h etc, too
[gnulib.git] / lib / xreadlink.c
1 /* exclude.c -- exclude file names
2
3    Copyright 2001 Free Software Foundation, Inc.
4
5    This program is free software; you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 2, or (at your option)
8    any later version.
9
10    This program 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
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; see the file COPYING.
17    If not, write to the Free Software Foundation,
18    59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
19
20 /* Written by Jim Meyering <jim@meyering.net>  */
21
22 #if HAVE_CONFIG_H
23 # include <config.h>
24 #endif
25
26 #include <stdio.h>
27 #include <errno.h>
28 #ifndef errno
29 extern int errno;
30 #endif
31
32 #if HAVE_SYS_TYPES_H
33 # include <sys/types.h>
34 #endif
35 #if HAVE_STDLIB_H
36 # include <stdlib.h>
37 #endif
38 #if HAVE_UNISTD_H
39 # include <unistd.h>
40 #endif
41
42 #include "xalloc.h"
43 #include "xreadlink.h"
44
45 /* Call readlink to get the symbolic link value of FILENAME.
46    Return a pointer to that NUL-terminated string in malloc'd storage.
47    If readlink fails, return NULL (caller may use errno to diagnose).
48    If realloc fails, or if the link value is longer than SIZE_MAX :-),
49    give a diagnostic and exit.  */
50
51 char *
52 xreadlink (char const *filename, size_t *link_length_arg)
53 {
54   /* The initial buffer size for the link value.  A power of 2
55      detects arithmetic overflow earlier, but is not required.  */
56   size_t buf_size = 128;
57   char *buffer = NULL;
58
59   while (1)
60     {
61       int link_length;
62       buffer = (char *) xrealloc (buffer, buf_size);
63       link_length = readlink (filename, buffer, buf_size);
64       if (link_length < 0)
65         {
66           int saved_errno = errno;
67           free (buffer);
68           errno = saved_errno;
69           return NULL;
70         }
71       if (link_length < buf_size)
72         {
73           *link_length_arg = link_length;
74           buffer[link_length] = 0;
75           return buffer;
76         }
77       buf_size *= 2;
78       if (buf_size == 0)
79         xalloc_die ();
80     }
81 }