mirror of
https://github.com/samba-team/samba.git
synced 2025-01-06 13:18:07 +03:00
9755206f6d
Strictly speaking, this is not a bug because parsing loop will just skip an empty ({NULL}, 0) blob. But it's better to avoid this case because UBSan (as of clang-17 at least) may complain on such a parsing attempt: source4/ntvfs/posix/posix_eadb.c:56:62: runtime error: applying zero offset to null pointer #0 0x7f9d71ce7b2a in posix_eadb_add_list source4/ntvfs/posix/posix_eadb.c:56 #1 0x7f9d71ce7b2a in push_xattr_blob_tdb_raw source4/ntvfs/posix/posix_eadb.c:178 #2 0x7f9d71cec1f5 in py_wrap_setxattr source4/ntvfs/posix/python/pyposix_eadb.c:64 #3 0x7f9d88bd4507 in cfunction_call (/lib64/libpython3.11.so.1.0+0x1d4507) [... a lot of Python calls skipped...] Signed-off-by: Dmitry Antipov <dantipov@cloudlinux.com> Reviewed-by: Joseph Sutton <josephsutton@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
300 lines
6.8 KiB
C
300 lines
6.8 KiB
C
/*
|
|
Unix SMB/CIFS implementation.
|
|
|
|
POSIX NTVFS backend - xattr support using a tdb
|
|
|
|
Copyright (C) Andrew Tridgell 2004
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "includes.h"
|
|
#include "lib/tdb_wrap/tdb_wrap.h"
|
|
#ifdef WITH_NTVFS_FILESERVER
|
|
#include "vfs_posix.h"
|
|
#endif
|
|
#include "posix_eadb.h"
|
|
|
|
#define XATTR_LIST_ATTR ".xattr_list"
|
|
|
|
/*
|
|
we need to maintain a list of attributes on each file, so that unlink
|
|
can automatically clean them up
|
|
*/
|
|
static NTSTATUS posix_eadb_add_list(struct tdb_wrap *ea_tdb, TALLOC_CTX *ctx, const char *attr_name,
|
|
const char *fname, int fd)
|
|
{
|
|
DATA_BLOB blob;
|
|
TALLOC_CTX *mem_ctx;
|
|
NTSTATUS status;
|
|
size_t len;
|
|
|
|
if (strcmp(attr_name, XATTR_LIST_ATTR) == 0) {
|
|
return NT_STATUS_OK;
|
|
}
|
|
|
|
mem_ctx = talloc_new(ctx);
|
|
|
|
status = pull_xattr_blob_tdb_raw(ea_tdb, mem_ctx, XATTR_LIST_ATTR,
|
|
fname, fd, 100, &blob);
|
|
if (NT_STATUS_IS_OK(status)) {
|
|
const char *s;
|
|
|
|
for (s = (const char *)blob.data;
|
|
s < (const char *)(blob.data + blob.length);
|
|
s += strlen(s) + 1) {
|
|
if (strcmp(attr_name, s) == 0) {
|
|
talloc_free(mem_ctx);
|
|
return NT_STATUS_OK;
|
|
}
|
|
}
|
|
} else {
|
|
blob = data_blob(NULL, 0);
|
|
/* No need to parse an empty blob */
|
|
}
|
|
|
|
len = strlen(attr_name) + 1;
|
|
|
|
blob.data = talloc_realloc(mem_ctx, blob.data, uint8_t, blob.length + len);
|
|
if (blob.data == NULL) {
|
|
talloc_free(mem_ctx);
|
|
return NT_STATUS_NO_MEMORY;
|
|
}
|
|
memcpy(blob.data + blob.length, attr_name, len);
|
|
blob.length += len;
|
|
|
|
status = push_xattr_blob_tdb_raw(ea_tdb, XATTR_LIST_ATTR, fname, fd, &blob);
|
|
talloc_free(mem_ctx);
|
|
|
|
return status;
|
|
}
|
|
|
|
/*
|
|
form a key for using in the ea_tdb
|
|
*/
|
|
static NTSTATUS get_ea_tdb_key(TALLOC_CTX *mem_ctx,
|
|
const char *attr_name,
|
|
const char *fname, int fd,
|
|
TDB_DATA *key)
|
|
{
|
|
struct stat st;
|
|
size_t len = strlen(attr_name);
|
|
|
|
if (fd == -1) {
|
|
if (stat(fname, &st) == -1) {
|
|
return NT_STATUS_NOT_FOUND;
|
|
}
|
|
} else {
|
|
if (fstat(fd, &st) == -1) {
|
|
return NT_STATUS_NOT_FOUND;
|
|
}
|
|
}
|
|
|
|
key->dptr = talloc_array(mem_ctx, uint8_t, 16 + len);
|
|
if (key->dptr == NULL) {
|
|
return NT_STATUS_NO_MEMORY;
|
|
}
|
|
key->dsize = 16 + len;
|
|
|
|
SBVAL(key->dptr, 0, st.st_dev);
|
|
SBVAL(key->dptr, 8, st.st_ino);
|
|
memcpy(key->dptr+16, attr_name, len);
|
|
|
|
return NT_STATUS_OK;
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
pull a xattr as a blob, using the ea_tdb_context tdb
|
|
*/
|
|
NTSTATUS pull_xattr_blob_tdb_raw(struct tdb_wrap *ea_tdb,
|
|
TALLOC_CTX *mem_ctx,
|
|
const char *attr_name,
|
|
const char *fname,
|
|
int fd,
|
|
size_t estimated_size,
|
|
DATA_BLOB *blob)
|
|
{
|
|
TDB_DATA tkey, tdata;
|
|
NTSTATUS status;
|
|
|
|
status = get_ea_tdb_key(mem_ctx, attr_name, fname, fd, &tkey);
|
|
if (!NT_STATUS_IS_OK(status)) {
|
|
return status;
|
|
}
|
|
|
|
tdata = tdb_fetch(ea_tdb->tdb, tkey);
|
|
if (tdata.dptr == NULL) {
|
|
return NT_STATUS_NOT_FOUND;
|
|
}
|
|
|
|
*blob = data_blob_talloc(mem_ctx, tdata.dptr, tdata.dsize);
|
|
free(tdata.dptr);
|
|
if (blob->data == NULL) {
|
|
return NT_STATUS_NO_MEMORY;
|
|
}
|
|
|
|
return NT_STATUS_OK;
|
|
}
|
|
|
|
/*
|
|
push a xattr as a blob, using ea_tdb
|
|
*/
|
|
NTSTATUS push_xattr_blob_tdb_raw(struct tdb_wrap *ea_tdb,
|
|
const char *attr_name,
|
|
const char *fname,
|
|
int fd,
|
|
const DATA_BLOB *blob)
|
|
{
|
|
TDB_DATA tkey, tdata;
|
|
NTSTATUS status;
|
|
TALLOC_CTX *mem_ctx = talloc_new(ea_tdb);
|
|
if (!mem_ctx) {
|
|
return NT_STATUS_NO_MEMORY;
|
|
}
|
|
|
|
status = get_ea_tdb_key(mem_ctx, attr_name, fname, fd, &tkey);
|
|
if (!NT_STATUS_IS_OK(status)) {
|
|
talloc_free(mem_ctx);
|
|
return status;
|
|
}
|
|
|
|
tdata.dptr = blob->data;
|
|
tdata.dsize = blob->length;
|
|
|
|
if (tdb_chainlock(ea_tdb->tdb, tkey) != 0) {
|
|
talloc_free(mem_ctx);
|
|
return NT_STATUS_INTERNAL_DB_CORRUPTION;
|
|
}
|
|
|
|
status = posix_eadb_add_list(ea_tdb,mem_ctx, attr_name, fname, fd);
|
|
if (!NT_STATUS_IS_OK(status)) {
|
|
talloc_free(mem_ctx);
|
|
goto done;
|
|
}
|
|
|
|
if (tdb_store(ea_tdb->tdb, tkey, tdata, TDB_REPLACE) != 0) {
|
|
status = NT_STATUS_INTERNAL_DB_CORRUPTION;
|
|
}
|
|
|
|
done:
|
|
tdb_chainunlock(ea_tdb->tdb, tkey);
|
|
talloc_free(mem_ctx);
|
|
return status;
|
|
}
|
|
|
|
|
|
/*
|
|
delete a xattr
|
|
*/
|
|
NTSTATUS delete_posix_eadb_raw(struct tdb_wrap *ea_tdb, const char *attr_name,
|
|
const char *fname, int fd)
|
|
{
|
|
TDB_DATA tkey;
|
|
NTSTATUS status;
|
|
|
|
status = get_ea_tdb_key(NULL, attr_name, fname, fd, &tkey);
|
|
if (!NT_STATUS_IS_OK(status)) {
|
|
return status;
|
|
}
|
|
|
|
if (tdb_delete(ea_tdb->tdb, tkey) != 0) {
|
|
talloc_free(tkey.dptr);
|
|
return NT_STATUS_INTERNAL_DB_CORRUPTION;
|
|
}
|
|
|
|
talloc_free(tkey.dptr);
|
|
return NT_STATUS_OK;
|
|
}
|
|
|
|
|
|
/*
|
|
delete all xattrs for a file
|
|
*/
|
|
NTSTATUS unlink_posix_eadb_raw(struct tdb_wrap *ea_tdb, const char *fname, int fd)
|
|
{
|
|
TALLOC_CTX *mem_ctx = talloc_new(ea_tdb);
|
|
DATA_BLOB blob;
|
|
const char *s;
|
|
NTSTATUS status;
|
|
|
|
status = pull_xattr_blob_tdb_raw(ea_tdb, mem_ctx, XATTR_LIST_ATTR,
|
|
fname, fd, 100, &blob);
|
|
if (!NT_STATUS_IS_OK(status)) {
|
|
talloc_free(mem_ctx);
|
|
return NT_STATUS_OK;
|
|
}
|
|
|
|
for (s=(const char *)blob.data; s < (const char *)(blob.data+blob.length); s += strlen(s) + 1) {
|
|
delete_posix_eadb_raw(ea_tdb, s, fname, -1);
|
|
}
|
|
|
|
status = delete_posix_eadb_raw(ea_tdb, XATTR_LIST_ATTR, fname, fd);
|
|
talloc_free(mem_ctx);
|
|
return status;
|
|
}
|
|
|
|
/*
|
|
list all xattrs for a file
|
|
*/
|
|
NTSTATUS list_posix_eadb_raw(struct tdb_wrap *ea_tdb, TALLOC_CTX *mem_ctx,
|
|
const char *fname, int fd,
|
|
DATA_BLOB *list)
|
|
{
|
|
return pull_xattr_blob_tdb_raw(ea_tdb, mem_ctx, XATTR_LIST_ATTR,
|
|
fname, fd, 100, list);
|
|
}
|
|
|
|
#ifdef WITH_NTVFS_FILESERVER
|
|
NTSTATUS pull_xattr_blob_tdb(struct pvfs_state *pvfs_state,
|
|
TALLOC_CTX *mem_ctx,
|
|
const char *attr_name,
|
|
const char *fname,
|
|
int fd,
|
|
size_t estimated_size,
|
|
DATA_BLOB *blob)
|
|
{
|
|
return pull_xattr_blob_tdb_raw(pvfs_state->ea_db,mem_ctx,attr_name,fname,fd,estimated_size,blob);
|
|
}
|
|
|
|
NTSTATUS push_xattr_blob_tdb(struct pvfs_state *pvfs_state,
|
|
const char *attr_name,
|
|
const char *fname,
|
|
int fd,
|
|
const DATA_BLOB *blob)
|
|
{
|
|
return push_xattr_blob_tdb_raw(pvfs_state->ea_db, attr_name, fname, fd, blob);
|
|
}
|
|
|
|
/*
|
|
delete a xattr
|
|
*/
|
|
NTSTATUS delete_posix_eadb(struct pvfs_state *pvfs_state, const char *attr_name,
|
|
const char *fname, int fd)
|
|
{
|
|
return delete_posix_eadb_raw(pvfs_state->ea_db,
|
|
attr_name, fname, fd);
|
|
}
|
|
|
|
/*
|
|
delete all xattrs for a file
|
|
*/
|
|
NTSTATUS unlink_posix_eadb(struct pvfs_state *pvfs_state, const char *fname)
|
|
{
|
|
return unlink_posix_eadb_raw(pvfs_state->ea_db, fname, -1);
|
|
}
|
|
|
|
#endif
|