2 Copyright (C) 2012 by Ronnie Sahlberg <ronniesahlberg@gmail.com>
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.
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.
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/>.
19 #include "win32_compat.h"
24 #include "libnfs-zdr.h"
26 #include "libnfs-raw.h"
27 #include "libnfs-private.h"
28 #include "libnfs-raw-nlm.h"
30 int rpc_nlm4_null_async(struct rpc_context
*rpc
, rpc_cb cb
, void *private_data
)
34 pdu
= rpc_allocate_pdu(rpc
, NLM_PROGRAM
, NLM_V4
, NLM4_NULL
, cb
, private_data
, (zdrproc_t
)zdr_void
, 0);
36 rpc_set_error(rpc
, "Out of memory. Failed to allocate pdu for nlm/null call");
40 if (rpc_queue_pdu(rpc
, pdu
) != 0) {
41 rpc_set_error(rpc
, "Out of memory. Failed to queue pdu for nlm/null call");
42 rpc_free_pdu(rpc
, pdu
);
49 int rpc_nlm4_test_async(struct rpc_context
*rpc
, rpc_cb cb
, struct NLM4_TESTargs
*args
, void *private_data
)
53 pdu
= rpc_allocate_pdu(rpc
, NLM_PROGRAM
, NLM_V4
, NLM4_TEST
, cb
, private_data
, (zdrproc_t
)zdr_NLM4_TESTres
, sizeof(NLM4_TESTres
));
55 rpc_set_error(rpc
, "Out of memory. Failed to allocate pdu for nlm/test call");
59 if (zdr_NLM4_TESTargs(&pdu
->zdr
, args
) == 0) {
60 rpc_set_error(rpc
, "ZDR error: Failed to encode NLM4_TESTargs");
61 rpc_free_pdu(rpc
, pdu
);
65 if (rpc_queue_pdu(rpc
, pdu
) != 0) {
66 rpc_set_error(rpc
, "Out of memory. Failed to queue pdu for nlm/test call");
67 rpc_free_pdu(rpc
, pdu
);
74 int rpc_nlm4_lock_async(struct rpc_context
*rpc
, rpc_cb cb
, struct NLM4_LOCKargs
*args
, void *private_data
)
78 pdu
= rpc_allocate_pdu(rpc
, NLM_PROGRAM
, NLM_V4
, NLM4_LOCK
, cb
, private_data
, (zdrproc_t
)zdr_NLM4_LOCKres
, sizeof(NLM4_LOCKres
));
80 rpc_set_error(rpc
, "Out of memory. Failed to allocate pdu for nlm/lock call");
84 if (zdr_NLM4_LOCKargs(&pdu
->zdr
, args
) == 0) {
85 rpc_set_error(rpc
, "ZDR error: Failed to encode NLM4_LOCKargs");
86 rpc_free_pdu(rpc
, pdu
);
90 if (rpc_queue_pdu(rpc
, pdu
) != 0) {
91 rpc_set_error(rpc
, "Out of memory. Failed to queue pdu for nlm/lock call");
92 rpc_free_pdu(rpc
, pdu
);
99 int rpc_nlm4_cancel_async(struct rpc_context
*rpc
, rpc_cb cb
, struct NLM4_CANCargs
*args
, void *private_data
)
103 pdu
= rpc_allocate_pdu(rpc
, NLM_PROGRAM
, NLM_V4
, NLM4_CANCEL
, cb
, private_data
, (zdrproc_t
)zdr_NLM4_CANCres
, sizeof(NLM4_CANCres
));
105 rpc_set_error(rpc
, "Out of memory. Failed to allocate pdu for nlm/cancel call");
109 if (zdr_NLM4_CANCargs(&pdu
->zdr
, args
) == 0) {
110 rpc_set_error(rpc
, "ZDR error: Failed to encode NLM4_CANCargs");
111 rpc_free_pdu(rpc
, pdu
);
115 if (rpc_queue_pdu(rpc
, pdu
) != 0) {
116 rpc_set_error(rpc
, "Out of memory. Failed to queue pdu for nlm/cancel call");
117 rpc_free_pdu(rpc
, pdu
);
124 int rpc_nlm4_unlock_async(struct rpc_context
*rpc
, rpc_cb cb
, struct NLM4_UNLOCKargs
*args
, void *private_data
)
128 pdu
= rpc_allocate_pdu(rpc
, NLM_PROGRAM
, NLM_V4
, NLM4_UNLOCK
, cb
, private_data
, (zdrproc_t
)zdr_NLM4_UNLOCKres
, sizeof(NLM4_UNLOCKres
));
130 rpc_set_error(rpc
, "Out of memory. Failed to allocate pdu for nlm/unlock call");
134 if (zdr_NLM4_UNLOCKargs(&pdu
->zdr
, args
) == 0) {
135 rpc_set_error(rpc
, "ZDR error: Failed to encode NLM4_UNLOCKargs");
136 rpc_free_pdu(rpc
, pdu
);
140 if (rpc_queue_pdu(rpc
, pdu
) != 0) {
141 rpc_set_error(rpc
, "Out of memory. Failed to queue pdu for nlm/unlock call");
142 rpc_free_pdu(rpc
, pdu
);
149 char *nlmstat4_to_str(int st
)
151 enum nlmstat4 stat
= st
;
153 char *str
= "unknown nlm stat";
155 case NLM4_GRANTED
: str
="NLM4_GRANTED";break;
156 case NLM4_DENIED
: str
="NLM4_DENIED";break;
157 case NLM4_DENIED_NOLOCKS
: str
="NLM4_DENIED_NOLOCKS";break;
158 case NLM4_BLOCKED
: str
="NLM4_BLOCKED";break;
159 case NLM4_DENIED_GRACE_PERIOD
: str
="NLM4_DENIED_GRACE_PERIOD";break;
160 case NLM4_DEADLCK
: str
="NLM4_DEADLCK";break;
161 case NLM4_ROFS
: str
="NLM4_ROFS";break;
162 case NLM4_STALE_FH
: str
="NLM4_STALE_FH";break;
163 case NLM4_FBIG
: str
="NLM4_FBIG";break;
164 case NLM4_FAILED
: str
="NLM4_FAILED";break;