2006-07-03 01:17:05 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2001-04-30 23:47:00 +05:30
|
|
|
/*
|
2001-05-07 23:18:28 +05:30
|
|
|
* xreadlink.c - safe implementation of readlink.
|
|
|
|
* Returns a NULL on failure...
|
2001-04-30 23:47:00 +05:30
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* NOTE: This function returns a malloced char* that you will have to free
|
|
|
|
* yourself. You have been warned.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include "libbb.h"
|
|
|
|
|
2006-03-07 02:17:33 +05:30
|
|
|
char *xreadlink(const char *path)
|
2006-01-25 05:38:53 +05:30
|
|
|
{
|
2006-03-11 00:52:06 +05:30
|
|
|
enum { GROWBY = 80 }; /* how large we will grow strings by */
|
2001-04-30 23:47:00 +05:30
|
|
|
|
2004-03-15 13:59:22 +05:30
|
|
|
char *buf = NULL;
|
2001-04-30 23:47:00 +05:30
|
|
|
int bufsize = 0, readsize = 0;
|
|
|
|
|
|
|
|
do {
|
|
|
|
buf = xrealloc(buf, bufsize += GROWBY);
|
|
|
|
readsize = readlink(path, buf, bufsize); /* 1st try */
|
2001-05-07 23:18:28 +05:30
|
|
|
if (readsize == -1) {
|
2004-08-11 09:20:30 +05:30
|
|
|
bb_perror_msg("%s", path);
|
|
|
|
free(buf);
|
|
|
|
return NULL;
|
2001-05-07 23:18:28 +05:30
|
|
|
}
|
2004-03-15 13:59:22 +05:30
|
|
|
}
|
2001-04-30 23:47:00 +05:30
|
|
|
while (bufsize < readsize + 1);
|
|
|
|
|
|
|
|
buf[readsize] = '\0';
|
|
|
|
|
|
|
|
return buf;
|
2004-03-15 13:59:22 +05:30
|
|
|
}
|