1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
|
/* Determine current working directory. FreeBSD version.
Copyright (C) 2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Bruno Haible <bruno@clisp.org>, 2002.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, write to the Free
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA. */
#include <errno.h>
#include <limits.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sysdep.h>
/* If we compile the file for use in ld.so we don't need the feature
that getcwd() allocates the buffers itself. */
#if IS_IN (rtld)
# define NO_ALLOCATION 1
#endif
/* The system calls only makes a lookup in the VFS cache, which can easily
fail. Therefore we use the generic version as a fallback. */
extern int __syscall_getcwd (char *buf, unsigned int size);
libc_hidden_proto (__syscall_getcwd)
static char *generic_getcwd (char *buf, size_t size) internal_function;
char *
__getcwd (char *buf, size_t size)
{
char tmpbuf[PATH_MAX];
if (INLINE_SYSCALL (getcwd, 2, tmpbuf, PATH_MAX) >= 0)
{
size_t len = strlen (tmpbuf) + 1;
if (size == 0)
{
if (__builtin_expect (buf != NULL, 0))
{
__set_errno (EINVAL);
return NULL;
}
#ifdef NO_ALLOCATION
buf = NULL;
#else
buf = (char *) malloc (len);
#endif
if (__builtin_expect (buf == NULL, 0))
{
__set_errno (ENOMEM);
return NULL;
}
}
else
{
if (size < len)
{
__set_errno (ERANGE);
return NULL;
}
if (buf == NULL)
{
#ifdef NO_ALLOCATION
buf = NULL;
#else
buf = (char *) malloc (size);
#endif
if (__builtin_expect (buf == NULL, 0))
{
__set_errno (ENOMEM);
return NULL;
}
}
}
memcpy (buf, tmpbuf, len);
return buf;
}
return generic_getcwd (buf, size);
}
weak_alias (__getcwd, getcwd)
/* Get the code for the generic version. */
#define GETCWD_RETURN_TYPE static char * internal_function
#define __getcwd generic_getcwd
#include <sysdeps/posix/getcwd.c>
|