2006-07-03 01:17:05 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2001-04-10 04:18:12 +05:30
|
|
|
/*
|
|
|
|
* xgetcwd.c -- return current directory with unlimited length
|
|
|
|
* Copyright (C) 1992, 1996 Free Software Foundation, Inc.
|
|
|
|
* Written by David MacKenzie <djm@gnu.ai.mit.edu>.
|
|
|
|
*
|
2003-05-26 19:37:50 +05:30
|
|
|
* Special function for busybox written by Vladimir Oleynik <dzo@simtreas.ru>
|
2008-12-07 06:22:58 +05:30
|
|
|
*
|
2010-08-16 23:44:46 +05:30
|
|
|
* Licensed under GPLv2, see file LICENSE in this source tree.
|
2008-12-07 06:22:58 +05:30
|
|
|
*/
|
2001-04-10 04:18:12 +05:30
|
|
|
|
|
|
|
#include "libbb.h"
|
|
|
|
|
|
|
|
/* Return the current directory, newly allocated, arbitrarily long.
|
|
|
|
Return NULL and set errno on error.
|
|
|
|
If argument is not NULL (previous usage allocate memory), call free()
|
|
|
|
*/
|
|
|
|
|
2008-06-27 08:22:20 +05:30
|
|
|
char* FAST_FUNC
|
2007-02-11 21:49:28 +05:30
|
|
|
xrealloc_getcwd_or_warn(char *cwd)
|
2001-04-10 04:18:12 +05:30
|
|
|
{
|
2007-09-30 00:49:55 +05:30
|
|
|
#define PATH_INCR 64
|
|
|
|
|
2006-09-23 21:31:09 +05:30
|
|
|
char *ret;
|
|
|
|
unsigned path_max;
|
2001-04-10 04:18:12 +05:30
|
|
|
|
2010-10-28 22:27:19 +05:30
|
|
|
path_max = 128; /* 128 + 64 should be enough for 99% of cases */
|
2001-04-10 04:18:12 +05:30
|
|
|
|
2007-09-30 00:49:55 +05:30
|
|
|
while (1) {
|
2006-09-23 21:31:09 +05:30
|
|
|
path_max += PATH_INCR;
|
|
|
|
cwd = xrealloc(cwd, path_max);
|
2007-09-30 00:49:55 +05:30
|
|
|
ret = getcwd(cwd, path_max);
|
|
|
|
if (ret == NULL) {
|
|
|
|
if (errno == ERANGE)
|
|
|
|
continue;
|
|
|
|
free(cwd);
|
|
|
|
bb_perror_msg("getcwd");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
cwd = xrealloc(cwd, strlen(cwd) + 1);
|
|
|
|
return cwd;
|
2006-09-23 21:31:09 +05:30
|
|
|
}
|
2001-04-10 04:18:12 +05:30
|
|
|
}
|