2 Unix SMB/CIFS implementation. Xattr manipulation bindings.
3 Copyright (C) Matthieu Patou <mat@matws.net> 2009-2010
4 Base on work of pyglue.c by Jelmer Vernooij <jelmer@samba.org> 2007 and
5 Matthias Dieter Wallnöfer 2009
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #include "tdb_compat.h"
24 #include "lib/util/tdb_wrap.h"
25 #include "librpc/ndr/libndr.h"
26 #include "lib/util/wrap_xattr.h"
27 #include "ntvfs/posix/vfs_posix.h"
28 #include "libcli/util/pyerrors.h"
30 void initxattr_tdb(void);
32 static PyObject
*py_is_xattr_supported(PyObject
*self
)
37 static PyObject
*py_wrap_setxattr(PyObject
*self
, PyObject
*args
)
39 char *filename
, *attribute
, *tdbname
;
44 struct tdb_wrap
*eadb
;
46 if (!PyArg_ParseTuple(args
, "ssss#", &tdbname
, &filename
, &attribute
,
47 &blob
.data
, &blobsize
))
50 blob
.length
= blobsize
;
51 mem_ctx
= talloc_new(NULL
);
52 eadb
= tdb_wrap_open(mem_ctx
, tdbname
, 50000,
53 TDB_DEFAULT
, O_RDWR
|O_CREAT
, 0600);
56 PyErr_SetFromErrno(PyExc_IOError
);
60 status
= push_xattr_blob_tdb_raw(eadb
, mem_ctx
, attribute
, filename
, -1,
62 if (!NT_STATUS_IS_OK(status
)) {
63 PyErr_SetNTSTATUS(status
);
71 static PyObject
*py_wrap_getxattr(PyObject
*self
, PyObject
*args
)
73 char *filename
, *attribute
, *tdbname
;
78 struct tdb_wrap
*eadb
= NULL
;
80 if (!PyArg_ParseTuple(args
, "sss", &tdbname
, &filename
, &attribute
))
83 mem_ctx
= talloc_new(NULL
);
84 eadb
= tdb_wrap_open(mem_ctx
, tdbname
, 50000,
85 TDB_DEFAULT
, O_RDWR
|O_CREAT
, 0600);
87 PyErr_SetFromErrno(PyExc_IOError
);
91 status
= pull_xattr_blob_tdb_raw(eadb
, mem_ctx
, attribute
, filename
,
93 if (!NT_STATUS_IS_OK(status
) || blob
.length
< 0) {
94 PyErr_SetNTSTATUS(status
);
98 ret
= PyString_FromStringAndSize((char *)blob
.data
, blob
.length
);
103 static PyMethodDef py_xattr_methods
[] = {
104 { "wrap_getxattr", (PyCFunction
)py_wrap_getxattr
, METH_VARARGS
,
105 "wrap_getxattr(filename,attribute) -> blob\n"
106 "Retreive given attribute on the given file." },
107 { "wrap_setxattr", (PyCFunction
)py_wrap_setxattr
, METH_VARARGS
,
108 "wrap_setxattr(filename,attribute,value)\n"
109 "Set the given attribute to the given value on the given file." },
110 { "is_xattr_supported", (PyCFunction
)py_is_xattr_supported
, METH_NOARGS
,
111 "Return true if xattr are supported on this system\n"},
115 void initxattr_tdb(void)
119 m
= Py_InitModule3("xattr_tdb", py_xattr_methods
,
120 "Python bindings for xattr manipulation.");