2017-02-26 23:42:03 +01:00
|
|
|
/*
|
|
|
|
* 9p utilities
|
|
|
|
*
|
|
|
|
* Copyright IBM, Corp. 2017
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Greg Kurz <groug@kaod.org>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "qemu/osdep.h"
|
2017-02-26 23:42:26 +01:00
|
|
|
#include "qemu/xattr.h"
|
2017-02-26 23:42:03 +01:00
|
|
|
#include "9p-util.h"
|
|
|
|
|
2017-02-26 23:42:26 +01:00
|
|
|
ssize_t fgetxattrat_nofollow(int dirfd, const char *filename, const char *name,
|
|
|
|
void *value, size_t size)
|
|
|
|
{
|
|
|
|
char *proc_path = g_strdup_printf("/proc/self/fd/%d/%s", dirfd, filename);
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = lgetxattr(proc_path, name, value, size);
|
|
|
|
g_free(proc_path);
|
|
|
|
return ret;
|
|
|
|
}
|
2018-06-07 12:17:22 +02:00
|
|
|
|
|
|
|
ssize_t flistxattrat_nofollow(int dirfd, const char *filename,
|
|
|
|
char *list, size_t size)
|
|
|
|
{
|
|
|
|
char *proc_path = g_strdup_printf("/proc/self/fd/%d/%s", dirfd, filename);
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = llistxattr(proc_path, list, size);
|
|
|
|
g_free(proc_path);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
ssize_t fremovexattrat_nofollow(int dirfd, const char *filename,
|
|
|
|
const char *name)
|
|
|
|
{
|
|
|
|
char *proc_path = g_strdup_printf("/proc/self/fd/%d/%s", dirfd, filename);
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = lremovexattr(proc_path, name);
|
|
|
|
g_free(proc_path);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
int fsetxattrat_nofollow(int dirfd, const char *filename, const char *name,
|
|
|
|
void *value, size_t size, int flags)
|
|
|
|
{
|
|
|
|
char *proc_path = g_strdup_printf("/proc/self/fd/%d/%s", dirfd, filename);
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = lsetxattr(proc_path, name, value, size, flags);
|
|
|
|
g_free(proc_path);
|
|
|
|
return ret;
|
|
|
|
}
|