2011-04-01 06:28:48 +00:00
|
|
|
/* Read symbolic links into a buffer without size limitation, relative to fd.
|
|
|
|
|
2024-01-02 01:47:10 +00:00
|
|
|
Copyright (C) 2011-2024 Free Software Foundation, Inc.
|
2011-04-01 06:28:48 +00:00
|
|
|
|
Update from Gnulib
Make the following changes by hand, and run 'admin/merge-gnulib'.
* .gitignore: Add lib/malloc/*.gl.h.
* admin/merge-gnulib: Copy lib/af_alg.h and lib/save-cwd.h
directly from Gnulib, without worrying about Gnulib modules,
as these files are special cases.
(AVOIDED_MODULES): Remove malloc-posix.
* lib/malloc.c, lib/realloc.c, m4/malloc.m4, m4/realloc.m4:
* m4/year2038.m4: New files, copied from Gnulib.
* lib/malloca.c, lib/malloca.h:
* m4/close-stream.m4, m4/glibc21.m4, m4/malloca.m4:
Remove. These are either no longer present in Gnulib, or are no
longer needed by modules that Emacs uses.
* oldXMenu/AddPane.c, oldXmenu/Addsel.c: Include XmenuInt.h first;
needed for new Gnulib.
* src/xmenu.c: Call emacs_abort, not abort.
2021-10-04 19:11:39 +00:00
|
|
|
This file 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.
|
2011-04-01 06:28:48 +00:00
|
|
|
|
Update from Gnulib
Make the following changes by hand, and run 'admin/merge-gnulib'.
* .gitignore: Add lib/malloc/*.gl.h.
* admin/merge-gnulib: Copy lib/af_alg.h and lib/save-cwd.h
directly from Gnulib, without worrying about Gnulib modules,
as these files are special cases.
(AVOIDED_MODULES): Remove malloc-posix.
* lib/malloc.c, lib/realloc.c, m4/malloc.m4, m4/realloc.m4:
* m4/year2038.m4: New files, copied from Gnulib.
* lib/malloca.c, lib/malloca.h:
* m4/close-stream.m4, m4/glibc21.m4, m4/malloca.m4:
Remove. These are either no longer present in Gnulib, or are no
longer needed by modules that Emacs uses.
* oldXMenu/AddPane.c, oldXmenu/Addsel.c: Include XmenuInt.h first;
needed for new Gnulib.
* src/xmenu.c: Call emacs_abort, not abort.
2021-10-04 19:11:39 +00:00
|
|
|
This file is distributed in the hope that it will be useful,
|
2011-04-01 06:28:48 +00:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
Update from Gnulib
Make the following changes by hand, and run 'admin/merge-gnulib'.
* .gitignore: Add lib/malloc/*.gl.h.
* admin/merge-gnulib: Copy lib/af_alg.h and lib/save-cwd.h
directly from Gnulib, without worrying about Gnulib modules,
as these files are special cases.
(AVOIDED_MODULES): Remove malloc-posix.
* lib/malloc.c, lib/realloc.c, m4/malloc.m4, m4/realloc.m4:
* m4/year2038.m4: New files, copied from Gnulib.
* lib/malloca.c, lib/malloca.h:
* m4/close-stream.m4, m4/glibc21.m4, m4/malloca.m4:
Remove. These are either no longer present in Gnulib, or are no
longer needed by modules that Emacs uses.
* oldXMenu/AddPane.c, oldXmenu/Addsel.c: Include XmenuInt.h first;
needed for new Gnulib.
* src/xmenu.c: Call emacs_abort, not abort.
2021-10-04 19:11:39 +00:00
|
|
|
GNU Lesser General Public License for more details.
|
2011-04-01 06:28:48 +00:00
|
|
|
|
Update from Gnulib
Make the following changes by hand, and run 'admin/merge-gnulib'.
* .gitignore: Add lib/malloc/*.gl.h.
* admin/merge-gnulib: Copy lib/af_alg.h and lib/save-cwd.h
directly from Gnulib, without worrying about Gnulib modules,
as these files are special cases.
(AVOIDED_MODULES): Remove malloc-posix.
* lib/malloc.c, lib/realloc.c, m4/malloc.m4, m4/realloc.m4:
* m4/year2038.m4: New files, copied from Gnulib.
* lib/malloca.c, lib/malloca.h:
* m4/close-stream.m4, m4/glibc21.m4, m4/malloca.m4:
Remove. These are either no longer present in Gnulib, or are no
longer needed by modules that Emacs uses.
* oldXMenu/AddPane.c, oldXmenu/Addsel.c: Include XmenuInt.h first;
needed for new Gnulib.
* src/xmenu.c: Call emacs_abort, not abort.
2021-10-04 19:11:39 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
2017-09-13 09:07:03 +00:00
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>. */
|
2011-04-01 06:28:48 +00:00
|
|
|
|
|
|
|
/* Written by Paul Eggert, Bruno Haible, and Jim Meyering. */
|
|
|
|
|
|
|
|
#ifndef _GL_CAREADLINKAT_H
|
2011-04-09 18:44:05 +00:00
|
|
|
#define _GL_CAREADLINKAT_H
|
2011-04-01 06:28:48 +00:00
|
|
|
|
2023-05-15 01:51:22 +00:00
|
|
|
/* This file uses HAVE_READLINKAT. */
|
|
|
|
#if !_GL_CONFIG_H_INCLUDED
|
|
|
|
#error "Please include config.h first."
|
|
|
|
#endif
|
|
|
|
|
2011-04-01 06:28:48 +00:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2024-05-11 20:16:48 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2011-04-01 06:28:48 +00:00
|
|
|
struct allocator;
|
|
|
|
|
|
|
|
/* Assuming the current directory is FD, get the symbolic link value
|
|
|
|
of FILENAME as a null-terminated string and put it into a buffer.
|
|
|
|
If FD is AT_FDCWD, FILENAME is interpreted relative to the current
|
|
|
|
working directory, as in openat.
|
|
|
|
|
|
|
|
If the link is small enough to fit into BUFFER put it there.
|
|
|
|
BUFFER's size is BUFFER_SIZE, and BUFFER can be null
|
|
|
|
if BUFFER_SIZE is zero.
|
|
|
|
|
|
|
|
If the link is not small, put it into a dynamically allocated
|
|
|
|
buffer managed by ALLOC. It is the caller's responsibility to free
|
|
|
|
the returned value if it is nonnull and is not BUFFER.
|
|
|
|
|
2011-04-09 18:44:05 +00:00
|
|
|
The PREADLINKAT function specifies how to read links. It operates
|
|
|
|
like POSIX readlinkat()
|
Update from Gnulib
This incorporates:
2019-09-22 Update some URLs
2019-09-15 fcntl-h: fix compilation error of creat.c on MSVC
2019-09-15 creat: new module
2019-09-15 access: new module
2019-09-09 Add option to assume best, not worst, when cross-compiling.
* build-aux/config.guess, build-aux/config.sub, doc/misc/texinfo.tex:
* lib/careadlinkat.c, lib/careadlinkat.h, lib/count-leading-zeros.h:
* lib/count-trailing-zeros.h, lib/diffseq.h, lib/fcntl.in.h:
* lib/ftoastr.c, lib/get-permissions.c:
* lib/ieee754.in.h, lib/inttypes.in.h, lib/mktime.c, lib/open.c:
* lib/pathmax.h, lib/pipe2.c, lib/stddef.in.h, lib/stdint.in.h:
* lib/stdlib.in.h, lib/str-two-way.h, lib/string.in.h, lib/time.in.h:
* lib/timegm.c, lib/unistd.in.h, m4/canonicalize.m4:
* m4/extern-inline.m4, m4/fcntl_h.m4, m4/fdopendir.m4:
* m4/getgroups.m4, m4/getopt.m4, m4/gettimeofday.m4:
* m4/gnulib-common.m4, m4/largefile.m4:
* m4/lstat.m4, m4/memmem.m4, m4/mktime.m4, m4/nocrash.m4, m4/open.m4:
* m4/pselect.m4, m4/putenv.m4, m4/readlink.m4, m4/regex.m4:
* m4/symlink.m4, m4/unistd_h.m4, m4/utimens.m4, m4/utimes.m4:
Copy from Gnulib.
* lib/gnulib.mk.in, m4/gnulib-comp.m4: Regenerate.
* m4/open-slash.m4: New file, copied from Gnulib.
2019-09-23 06:50:59 +00:00
|
|
|
<https://pubs.opengroup.org/onlinepubs/9699919799/functions/readlink.html>
|
2011-04-09 18:44:05 +00:00
|
|
|
but can assume that its first argument is the same as FD.
|
2011-04-01 06:28:48 +00:00
|
|
|
|
|
|
|
If successful, return the buffer address; otherwise return NULL and
|
|
|
|
set errno. */
|
|
|
|
|
|
|
|
char *careadlinkat (int fd, char const *filename,
|
2020-02-24 00:14:24 +00:00
|
|
|
char *restrict buffer, size_t buffer_size,
|
2011-04-01 06:28:48 +00:00
|
|
|
struct allocator const *alloc,
|
|
|
|
ssize_t (*preadlinkat) (int, char const *,
|
|
|
|
char *, size_t));
|
|
|
|
|
2013-02-08 23:37:17 +00:00
|
|
|
/* Suitable value for careadlinkat's FD argument. */
|
2011-04-01 06:28:48 +00:00
|
|
|
#if HAVE_READLINKAT
|
2011-06-06 19:53:44 +00:00
|
|
|
/* AT_FDCWD is declared in <fcntl.h>. */
|
2011-04-01 06:28:48 +00:00
|
|
|
#else
|
|
|
|
/* Define AT_FDCWD independently, so that the careadlinkat module does
|
2013-02-08 23:37:17 +00:00
|
|
|
not depend on the fcntl-h module. We might as well use the same value
|
2011-04-01 06:28:48 +00:00
|
|
|
as fcntl-h. */
|
|
|
|
# ifndef AT_FDCWD
|
|
|
|
# define AT_FDCWD (-3041965)
|
|
|
|
# endif
|
2011-06-06 19:53:44 +00:00
|
|
|
#endif
|
2011-04-01 06:28:48 +00:00
|
|
|
|
2024-05-11 20:16:48 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-04-01 06:28:48 +00:00
|
|
|
#endif /* _GL_CAREADLINKAT_H */
|