"Robert P. J. Day" | 63fc1a9 | 2006-07-02 19:47:05 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Mark Whitley | 8a63326 | 2001-04-30 18:17:00 +0000 | [diff] [blame] | 2 | /* |
Eric Andersen | 28355a3 | 2001-05-07 17:48:28 +0000 | [diff] [blame] | 3 | * xreadlink.c - safe implementation of readlink. |
| 4 | * Returns a NULL on failure... |
Mark Whitley | 8a63326 | 2001-04-30 18:17:00 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
Denis Vlasenko | a9b60e9 | 2007-01-04 17:59:59 +0000 | [diff] [blame] | 7 | #include "libbb.h" |
Mark Whitley | 8a63326 | 2001-04-30 18:17:00 +0000 | [diff] [blame] | 8 | |
| 9 | /* |
| 10 | * NOTE: This function returns a malloced char* that you will have to free |
| 11 | * yourself. You have been warned. |
| 12 | */ |
Denis Vlasenko | beffd43 | 2007-09-05 11:30:34 +0000 | [diff] [blame^] | 13 | char *xmalloc_readlink(const char *path) |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 14 | { |
Rob Landley | bc68cd1 | 2006-03-10 19:22:06 +0000 | [diff] [blame] | 15 | enum { GROWBY = 80 }; /* how large we will grow strings by */ |
Mark Whitley | 8a63326 | 2001-04-30 18:17:00 +0000 | [diff] [blame] | 16 | |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 17 | char *buf = NULL; |
Mark Whitley | 8a63326 | 2001-04-30 18:17:00 +0000 | [diff] [blame] | 18 | int bufsize = 0, readsize = 0; |
| 19 | |
| 20 | do { |
| 21 | buf = xrealloc(buf, bufsize += GROWBY); |
Denis Vlasenko | beffd43 | 2007-09-05 11:30:34 +0000 | [diff] [blame^] | 22 | readsize = readlink(path, buf, bufsize); |
Eric Andersen | 28355a3 | 2001-05-07 17:48:28 +0000 | [diff] [blame] | 23 | if (readsize == -1) { |
Glenn L McGrath | 18bbd9b | 2004-08-11 03:50:30 +0000 | [diff] [blame] | 24 | free(buf); |
| 25 | return NULL; |
Eric Andersen | 28355a3 | 2001-05-07 17:48:28 +0000 | [diff] [blame] | 26 | } |
Denis Vlasenko | beffd43 | 2007-09-05 11:30:34 +0000 | [diff] [blame^] | 27 | } while (bufsize < readsize + 1); |
Mark Whitley | 8a63326 | 2001-04-30 18:17:00 +0000 | [diff] [blame] | 28 | |
| 29 | buf[readsize] = '\0'; |
| 30 | |
| 31 | return buf; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 32 | } |
Denis Vlasenko | a9b60e9 | 2007-01-04 17:59:59 +0000 | [diff] [blame] | 33 | |
Denis Vlasenko | beffd43 | 2007-09-05 11:30:34 +0000 | [diff] [blame^] | 34 | char *xmalloc_readlink_or_warn(const char *path) |
| 35 | { |
| 36 | char *buf = xmalloc_readlink(path); |
| 37 | if (!buf) { |
| 38 | /* EINVAL => "file: Invalid argument" => puzzled user */ |
| 39 | bb_error_msg("%s: cannot read link (not a symlink?)", path); |
| 40 | } |
| 41 | return buf; |
| 42 | } |
| 43 | |
| 44 | /* UNUSED */ |
| 45 | #if 0 |
Denis Vlasenko | a9b60e9 | 2007-01-04 17:59:59 +0000 | [diff] [blame] | 46 | char *xmalloc_realpath(const char *path) |
| 47 | { |
Denis Vlasenko | 218f2f4 | 2007-01-24 22:02:01 +0000 | [diff] [blame] | 48 | #if defined(__GLIBC__) && !defined(__UCLIBC__) |
Denis Vlasenko | a9b60e9 | 2007-01-04 17:59:59 +0000 | [diff] [blame] | 49 | /* glibc provides a non-standard extension */ |
| 50 | return realpath(path, NULL); |
| 51 | #else |
| 52 | char buf[PATH_MAX+1]; |
| 53 | |
| 54 | /* on error returns NULL (xstrdup(NULL) ==NULL) */ |
| 55 | return xstrdup(realpath(path, buf)); |
| 56 | #endif |
| 57 | } |
Denis Vlasenko | beffd43 | 2007-09-05 11:30:34 +0000 | [diff] [blame^] | 58 | #endif |