[win32] - make it compile on win32
[deb_libnfs.git] / portmap / portmap.c
CommitLineData
84004dbf
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#endif/*WIN32*/
84004dbf 20
eecdc4f3
RS
21#if defined(WIN32)
22#include <winsock2.h>
23#endif
24
84004dbf 25#include <stdio.h>
98f5fee8 26#include <rpc/rpc.h>
84004dbf
RS
27#include <rpc/xdr.h>
28#include "libnfs.h"
29#include "libnfs-raw.h"
30#include "libnfs-private.h"
31#include "libnfs-raw-portmap.h"
32
33
34int rpc_pmap_null_async(struct rpc_context *rpc, rpc_cb cb, void *private_data)
35{
36 struct rpc_pdu *pdu;
37
38 pdu = rpc_allocate_pdu(rpc, PMAP_PROGRAM, PMAP_V2, PMAP_NULL, cb, private_data, (xdrproc_t)xdr_void, 0);
39 if (pdu == NULL) {
40 rpc_set_error(rpc, "Out of memory. Failed to allocate pdu for portmap/null call");
41 return -1;
42 }
43
44 if (rpc_queue_pdu(rpc, pdu) != 0) {
45 rpc_set_error(rpc, "Out of memory. Failed to queue pdu for portmap/null call");
46 rpc_free_pdu(rpc, pdu);
1896d37b 47 return -1;
84004dbf
RS
48 }
49
50 return 0;
51}
52
53int rpc_pmap_getport_async(struct rpc_context *rpc, int program, int version, rpc_cb cb, void *private_data)
54{
55 struct rpc_pdu *pdu;
870b3764 56 struct pmap_mapping m;
84004dbf
RS
57
58 pdu = rpc_allocate_pdu(rpc, PMAP_PROGRAM, PMAP_V2, PMAP_GETPORT, cb, private_data, (xdrproc_t)xdr_int, sizeof(uint32_t));
59 if (pdu == NULL) {
60 rpc_set_error(rpc, "Out of memory. Failed to allocate pdu for portmap/getport call");
61 return -1;
62 }
63
64 m.prog = program;
65 m.vers = version;
66 m.prot = IPPROTO_TCP;
67 m.port = 0;
870b3764 68 if (xdr_pmap_mapping(&pdu->xdr, &m) == 0) {
84004dbf
RS
69 rpc_set_error(rpc, "XDR error: Failed to encode data for portmap/getport call");
70 rpc_free_pdu(rpc, pdu);
1896d37b 71 return -1;
84004dbf
RS
72 }
73
74 if (rpc_queue_pdu(rpc, pdu) != 0) {
1896d37b 75 rpc_set_error(rpc, "Failed to queue portmap/getport pdu");
84004dbf 76 rpc_free_pdu(rpc, pdu);
1896d37b 77 return -1;
84004dbf
RS
78 }
79
80 return 0;
81}
fd59fd0d
RS
82
83int rpc_pmap_callit_async(struct rpc_context *rpc, int program, int version, int procedure, const char *data, int datalen, rpc_cb cb, void *private_data)
84{
85 struct rpc_pdu *pdu;
86 struct pmap_call_args ca;
87
88 pdu = rpc_allocate_pdu(rpc, PMAP_PROGRAM, PMAP_V2, PMAP_CALLIT, cb, private_data, (xdrproc_t)xdr_pmap_call_result, sizeof(pmap_call_result));
89 if (pdu == NULL) {
90 rpc_set_error(rpc, "Out of memory. Failed to allocate pdu for portmap/callit call");
91 return -1;
92 }
93
94 ca.prog = program;
95 ca.vers = version;
96 ca.proc = procedure;
97 ca.args.args_len = datalen;
98 ca.args.args_val = data;
99
100 if (xdr_pmap_call_args(&pdu->xdr, &ca) == 0) {
101 rpc_set_error(rpc, "XDR error: Failed to encode data for portmap/callit call");
102 rpc_free_pdu(rpc, pdu);
103 return -1;
104 }
105
106 if (rpc_queue_pdu(rpc, pdu) != 0) {
107 rpc_set_error(rpc, "Failed to queue portmap/callit pdu: %s", rpc_get_error(rpc));
108 return -1;
109 }
110
111 return 0;
112}