85 lines
1.7 KiB
C
85 lines
1.7 KiB
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Copyright (c) 2016 RT-RK Institute for Computer Based Systems
|
|
* Author: Dejan Jovicevic <dejan.jovicevic@rt-rk.com>
|
|
*/
|
|
|
|
/*
|
|
* Test Name: flistxattr03
|
|
*
|
|
* Description:
|
|
* flistxattr is identical to listxattr. an empty buffer of size zero
|
|
* can return the current size of the list of extended attribute names,
|
|
* which can be used to estimate a suitable buffer.
|
|
*/
|
|
|
|
#include "config.h"
|
|
#include <errno.h>
|
|
#include <sys/types.h>
|
|
|
|
#ifdef HAVE_SYS_XATTR_H
|
|
# include <sys/xattr.h>
|
|
#endif
|
|
|
|
#include "tst_test.h"
|
|
|
|
#ifdef HAVE_SYS_XATTR_H
|
|
|
|
#define SECURITY_KEY "security.ltptest"
|
|
#define VALUE "test"
|
|
#define VALUE_SIZE (sizeof(VALUE) - 1)
|
|
|
|
static int fd[] = {0, 0};
|
|
|
|
static int check_suitable_buf(const int file, long size)
|
|
{
|
|
int n;
|
|
char buf[size];
|
|
|
|
n = flistxattr(file, buf, sizeof(buf));
|
|
|
|
return n != -1;
|
|
}
|
|
|
|
static void verify_flistxattr(unsigned int n)
|
|
{
|
|
TEST(flistxattr(fd[n], NULL, 0));
|
|
if (TST_RET == -1) {
|
|
tst_res(TFAIL | TTERRNO, "flistxattr() failed");
|
|
return;
|
|
}
|
|
|
|
if (check_suitable_buf(fd[n], TST_RET))
|
|
tst_res(TPASS, "flistxattr() succeed with suitable buffer");
|
|
else
|
|
tst_res(TFAIL, "flistxattr() failed with small buffer");
|
|
}
|
|
|
|
static void setup(void)
|
|
{
|
|
fd[0] = SAFE_OPEN("testfile1", O_RDWR | O_CREAT, 0644);
|
|
|
|
fd[1] = SAFE_OPEN("testfile2", O_RDWR | O_CREAT, 0644);
|
|
|
|
SAFE_FSETXATTR(fd[1], SECURITY_KEY, VALUE, VALUE_SIZE, XATTR_CREATE);
|
|
}
|
|
|
|
static void cleanup(void)
|
|
{
|
|
SAFE_CLOSE(fd[1]);
|
|
SAFE_CLOSE(fd[0]);
|
|
}
|
|
|
|
static struct tst_test test = {
|
|
.needs_tmpdir = 1,
|
|
.needs_root = 1,
|
|
.test = verify_flistxattr,
|
|
.tcnt = ARRAY_SIZE(fd),
|
|
.setup = setup,
|
|
.cleanup = cleanup,
|
|
};
|
|
|
|
#else /* HAVE_SYS_XATTR_H */
|
|
TST_TEST_TCONF("<sys/xattr.h> does not exist.");
|
|
#endif
|