[win32] - make it compile on win32
[deb_libnfs.git] / nfs / nfsacl.c
CommitLineData
3847f8f6
RS
1/*
2 Copyright (C) 2010 by Ronnie Sahlberg <ronniesahlberg@gmail.com>
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU Lesser General Public License as published by
6 the Free Software Foundation; either version 2.1 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU Lesser General Public License for more details.
13
14 You should have received a copy of the GNU Lesser General Public License
15 along with this program; if not, see <http://www.gnu.org/licenses/>.
16*/
a8a1b858
M
17#ifdef WIN32
18#include "win32_compat.h"
19#else
20#include <sys/stat.h>
21#endif/*WIN32*/
3847f8f6 22
eecdc4f3
RS
23#if defined(WIN32)
24#include <winsock2.h>
25#endif
26
3847f8f6
RS
27#include <stdio.h>
28#include <errno.h>
3847f8f6
RS
29#include <string.h>
30#include <rpc/rpc.h>
31#include <rpc/xdr.h>
32#include "libnfs.h"
33#include "libnfs-raw.h"
34#include "libnfs-private.h"
35#include "libnfs-raw-nfs.h"
36
37
38int rpc_nfsacl_null_async(struct rpc_context *rpc, rpc_cb cb, void *private_data)
39{
40 struct rpc_pdu *pdu;
41
42 pdu = rpc_allocate_pdu(rpc, NFSACL_PROGRAM, NFSACL_V3, NFSACL3_NULL, cb, private_data, (xdrproc_t)xdr_void, 0);
43 if (pdu == NULL) {
44 rpc_set_error(rpc, "Out of memory. Failed to allocate pdu for nfsacl/null call");
45 return -1;
46 }
47
48 if (rpc_queue_pdu(rpc, pdu) != 0) {
49 rpc_set_error(rpc, "Out of memory. Failed to queue pdu for nfsacl/null call");
50 rpc_free_pdu(rpc, pdu);
51 return -2;
52 }
53
54 return 0;
55}
56
57
58int rpc_nfsacl_getacl_async(struct rpc_context *rpc, rpc_cb cb, struct nfs_fh3 *fh, uint32_t mask, void *private_data)
59{
60 struct rpc_pdu *pdu;
61 GETACL3args args;
62
63 pdu = rpc_allocate_pdu(rpc, NFSACL_PROGRAM, NFSACL_V3, NFSACL3_GETACL, cb, private_data, (xdrproc_t)xdr_GETACL3res, sizeof(GETACL3res));
64 if (pdu == NULL) {
65 rpc_set_error(rpc, "Out of memory. Failed to allocate pdu for nfsacl/getacl call");
66 return -1;
67 }
68
69 args.dir.data.data_len = fh->data.data_len;
70 args.dir.data.data_val = fh->data.data_val;
71 args.mask = mask;
72
73 if (xdr_GETACL3args(&pdu->xdr, &args) == 0) {
74 rpc_set_error(rpc, "XDR error: Failed to encode GETACL3args");
75 rpc_free_pdu(rpc, pdu);
76 return -2;
77 }
78
79 if (rpc_queue_pdu(rpc, pdu) != 0) {
80 rpc_set_error(rpc, "Out of memory. Failed to queue pdu for nfsacl/getacl call");
81 rpc_free_pdu(rpc, pdu);
82 return -2;
83 }
84
85 return 0;
86}