* Copyright (C) 2011 Red Hat, Inc.
* Copyright (c) Linux Test Project, 2011-2024
*/
* In the user.* namespace, only regular files and directories can
* have extended attributes. Otherwise setxattr(2) will return -1
* and set errno to EPERM.
*
* - SUCCEED - set attribute to a regular file
* - SUCCEED - set attribute to a directory
* - EEXIST - set attribute to a symlink which points to the regular file
* - EPERM - set attribute to a FIFO
* - EPERM - set attribute to a char special file
* - EPERM - set attribute to a block special file
* - EPERM - set attribute to a UNIX domain socket
*/
#include "config.h"
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/sysmacros.h>
#include <sys/wait.h>
#include <errno.h>
#include <fcntl.h>
#include <unistd.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef HAVE_SYS_XATTR_H
# include <sys/xattr.h>
#endif
#include "tst_test.h"
#ifdef HAVE_SYS_XATTR_H
#define XATTR_TEST_KEY "user.testkey"
#define XATTR_TEST_VALUE "this is a test value"
#define XATTR_TEST_VALUE_SIZE 20
#define OFFSET 10
#define FILENAME "setxattr02testfile"
#define DIRNAME "setxattr02testdir"
#define SYMLINK "setxattr02symlink"
#define FIFO "setxattr02fifo"
#define CHR "setxattr02chr"
#define BLK "setxattr02blk"
#define SOCK "setxattr02sock"
struct test_case {
char *fname;
char *key;
char *value;
size_t size;
int flags;
int exp_err;
int needskeyset;
};
static struct test_case tc[] = {
{
.fname = FILENAME,
.key = XATTR_TEST_KEY,
.value = XATTR_TEST_VALUE,
.size = XATTR_TEST_VALUE_SIZE,
.flags = XATTR_CREATE,
.exp_err = 0,
},
{
.fname = DIRNAME,
.key = XATTR_TEST_KEY,
.value = XATTR_TEST_VALUE,
.size = XATTR_TEST_VALUE_SIZE,
.flags = XATTR_CREATE,
.exp_err = 0,
},
{
.fname = SYMLINK,
.key = XATTR_TEST_KEY,
.value = XATTR_TEST_VALUE,
.size = XATTR_TEST_VALUE_SIZE,
.flags = XATTR_CREATE,
.exp_err = EEXIST,
.needskeyset = 1,
},
{
.fname = FIFO,
.key = XATTR_TEST_KEY,
.value = XATTR_TEST_VALUE,
.size = XATTR_TEST_VALUE_SIZE,
.flags = XATTR_CREATE,
.exp_err = EPERM,
},
{
.fname = CHR,
.key = XATTR_TEST_KEY,
.value = XATTR_TEST_VALUE,
.size = XATTR_TEST_VALUE_SIZE,
.flags = XATTR_CREATE,
.exp_err = EPERM,
},
{
.fname = BLK,
.key = XATTR_TEST_KEY,
.value = XATTR_TEST_VALUE,
.size = XATTR_TEST_VALUE_SIZE,
.flags = XATTR_CREATE,
.exp_err = EPERM,
},
{
.fname = SOCK,
.key = XATTR_TEST_KEY,
.value = XATTR_TEST_VALUE,
.size = XATTR_TEST_VALUE_SIZE,
.flags = XATTR_CREATE,
.exp_err = EPERM,
},
};
static void verify_setxattr(unsigned int i)
{
if (tc[i].needskeyset) {
SAFE_SETXATTR(tc[i].fname, tc[i].key, tc[i].value, tc[i].size,
XATTR_CREATE);
}
TEST(setxattr(tc[i].fname, tc[i].key, tc[i].value, tc[i].size,
tc[i].flags));
if (TST_RET == -1 && TST_ERR == EOPNOTSUPP)
tst_brk(TCONF, "setxattr(2) not supported");
if (!tc[i].exp_err) {
if (TST_RET) {
tst_res(TFAIL | TTERRNO,
"setxattr(2) on %s failed with %li",
tc[i].fname + OFFSET, TST_RET);
return;
}
SAFE_REMOVEXATTR(tc[i].fname, tc[i].key);
tst_res(TPASS, "setxattr(2) on %s passed",
tc[i].fname + OFFSET);
return;
}
if (TST_RET == 0) {
tst_res(TFAIL, "setxattr(2) on %s passed unexpectedly",
tc[i].fname + OFFSET);
return;
}
if (tc[i].exp_err != TST_ERR) {
tst_res(TFAIL | TTERRNO,
"setxattr(2) on %s should have failed with %s",
tc[i].fname + OFFSET,
tst_strerrno(tc[i].exp_err));
return;
}
if (tc[i].needskeyset)
SAFE_REMOVEXATTR(tc[i].fname, tc[i].key);
tst_res(TPASS | TTERRNO, "setxattr(2) on %s failed",
tc[i].fname + OFFSET);
}
static void setup(void)
{
dev_t dev = makedev(1, 3);
SAFE_TOUCH(FILENAME, 0644, NULL);
SAFE_MKDIR(DIRNAME, 0644);
SAFE_SYMLINK(FILENAME, SYMLINK);
SAFE_MKNOD(FIFO, S_IFIFO | 0777, 0);
SAFE_MKNOD(CHR, S_IFCHR | 0777, dev);
SAFE_MKNOD(BLK, S_IFBLK | 0777, 0);
SAFE_MKNOD(SOCK, S_IFSOCK | 0777, 0);
}
static struct tst_test test = {
.setup = setup,
.test = verify_setxattr,
.tcnt = ARRAY_SIZE(tc),
.needs_tmpdir = 1,
.needs_root = 1,
};
#else
TST_TEST_TCONF("<sys/xattr.h> does not exist");
#endif