-
Notifications
You must be signed in to change notification settings - Fork 240
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lib/fs/readlink/: readlinknul(): Add function
Signed-off-by: Alejandro Colomar <alx@kernel.org>
- Loading branch information
1 parent
c8c3731
commit 419ce14
Showing
3 changed files
with
61 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// SPDX-FileCopyrightText: 2024, Alejandro Colomar <alx@kernel.org> | ||
// SPDX-License-Identifier: BSD-3-Clause | ||
|
||
|
||
#include <config.h> | ||
|
||
#include "fs/readlink/readlinknul.h" | ||
|
||
#include <stddef.h> | ||
|
||
|
||
extern inline int readlinknul(const char *restrict link, char *restrict buf, | ||
size_t size); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
// SPDX-FileCopyrightText: 2024, Alejandro Colomar <alx@kernel.org> | ||
// SPDX-License-Identifier: BSD-3-Clause | ||
|
||
|
||
#ifndef SHADOW_INCLUDE_LIB_FS_READLINK_READLINKNUL_H_ | ||
#define SHADOW_INCLUDE_LIB_FS_READLINK_READLINKNUL_H_ | ||
|
||
|
||
#include <config.h> | ||
|
||
#include <errno.h> | ||
#include <stddef.h> | ||
#include <string.h> | ||
#include <sys/types.h> | ||
#include <unistd.h> | ||
|
||
#include "attr.h" | ||
|
||
|
||
ATTR_STRING(1) | ||
inline int readlinknul(const char *restrict link, char *restrict buf, | ||
size_t size); | ||
|
||
|
||
// Similar to readlink(2), but terminate the string. | ||
inline int | ||
readlinknul(const char *restrict link, char *restrict buf, size_t size) | ||
{ | ||
ssize_t len; | ||
|
||
len = readlink(link, buf, size); | ||
if (len == -1) | ||
return -1; | ||
|
||
if (len == size) { | ||
stpcpy(&buf[size-1], ""); | ||
errno = E2BIG; | ||
return -1; | ||
} | ||
|
||
stpcpy(&buf[len], ""); | ||
return len; | ||
} | ||
|
||
|
||
#endif // include guard |