2 Copyright (C) 2010 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/>.
23 #include "libnfs-raw.h"
24 #include "libnfs-private.h"
25 #include "libnfs-raw-mount.h"
28 int rpc_mount_null_async(struct rpc_context
*rpc
, rpc_cb cb
, void *private_data
)
32 pdu
= rpc_allocate_pdu(rpc
, MOUNT_PROGRAM
, MOUNT_V3
, MOUNT3_NULL
, cb
, private_data
, (xdrproc_t
)xdr_void
, 0);
34 rpc_set_error(rpc
, "Out of memory. Failed to allocate pdu for mount/null call");
38 if (rpc_queue_pdu(rpc
, pdu
) != 0) {
39 rpc_set_error(rpc
, "Out of memory. Failed to queue pdu for mount/null call");
40 rpc_free_pdu(rpc
, pdu
);
47 int rpc_mount_mnt_async(struct rpc_context
*rpc
, rpc_cb cb
, char *export
, void *private_data
)
51 pdu
= rpc_allocate_pdu(rpc
, MOUNT_PROGRAM
, MOUNT_V3
, MOUNT3_MNT
, cb
, private_data
, (xdrproc_t
)xdr_mountres3
, sizeof(mountres3
));
53 rpc_set_error(rpc
, "Out of memory. Failed to allocate pdu for mount/mnt call");
57 if (xdr_dirpath(&pdu
->xdr
, &export
) == 0) {
58 rpc_set_error(rpc
, "XDR error. Failed to encode mount/mnt call");
59 rpc_free_pdu(rpc
, pdu
);
63 if (rpc_queue_pdu(rpc
, pdu
) != 0) {
64 rpc_set_error(rpc
, "Out of memory. Failed to queue pdu for mount/mnt call");
65 rpc_free_pdu(rpc
, pdu
);
72 int rpc_mount_dump_async(struct rpc_context
*rpc
, rpc_cb cb
, void *private_data
)
76 pdu
= rpc_allocate_pdu(rpc
, MOUNT_PROGRAM
, MOUNT_V3
, MOUNT3_DUMP
, cb
, private_data
, (xdrproc_t
)xdr_mountlist
, sizeof(mountlist
));
78 rpc_set_error(rpc
, "Failed to allocate pdu for mount/dump");
82 if (rpc_queue_pdu(rpc
, pdu
) != 0) {
83 rpc_set_error(rpc
, "Failed to queue mount/dump pdu");
84 rpc_free_pdu(rpc
, pdu
);
91 int rpc_mount_umnt_async(struct rpc_context
*rpc
, rpc_cb cb
, char *export
, void *private_data
)
95 pdu
= rpc_allocate_pdu(rpc
, MOUNT_PROGRAM
, MOUNT_V3
, MOUNT3_UMNT
, cb
, private_data
, (xdrproc_t
)xdr_void
, 0);
97 rpc_set_error(rpc
, "Failed to allocate pdu for mount/umnt");
101 if (xdr_dirpath(&pdu
->xdr
, &export
) == 0) {
102 rpc_set_error(rpc
, "failed to encode dirpath for mount/umnt");
103 rpc_free_pdu(rpc
, pdu
);
107 if (rpc_queue_pdu(rpc
, pdu
) != 0) {
108 rpc_set_error(rpc
, "Failed to queue mount/umnt pdu");
109 rpc_free_pdu(rpc
, pdu
);
116 int rpc_mount_umntall_async(struct rpc_context
*rpc
, rpc_cb cb
, void *private_data
)
120 pdu
= rpc_allocate_pdu(rpc
, MOUNT_PROGRAM
, MOUNT_V3
, MOUNT3_UMNTALL
, cb
, private_data
, (xdrproc_t
)xdr_void
, 0);
122 rpc_set_error(rpc
, "Failed to allocate pdu for mount/umntall");
126 if (rpc_queue_pdu(rpc
, pdu
) != 0) {
127 rpc_set_error(rpc
, "Failed to queue mount/umntall pdu");
128 rpc_free_pdu(rpc
, pdu
);
135 int rpc_mount_export_async(struct rpc_context
*rpc
, rpc_cb cb
, void *private_data
)
139 pdu
= rpc_allocate_pdu(rpc
, MOUNT_PROGRAM
, MOUNT_V3
, MOUNT3_EXPORT
, cb
, private_data
, (xdrproc_t
)xdr_exports
, sizeof(exports
));
141 rpc_set_error(rpc
, "Failed to allocate pdu for mount/export");
145 if (rpc_queue_pdu(rpc
, pdu
) != 0) {
146 rpc_set_error(rpc
, "Failed to queue mount/export pdu");
147 rpc_free_pdu(rpc
, pdu
);
154 char *mountstat3_to_str(int st
)
156 enum mountstat3 stat
= st
;
158 char *str
= "unknown mount stat";
160 case MNT3_OK
: str
="MNT3_OK"; break;
161 case MNT3ERR_PERM
: str
="MNT3ERR_PERM"; break;
162 case MNT3ERR_NOENT
: str
="MNT3ERR_NOENT"; break;
163 case MNT3ERR_IO
: str
="MNT3ERR_IO"; break;
164 case MNT3ERR_ACCES
: str
="MNT3ERR_ACCES"; break;
165 case MNT3ERR_NOTDIR
: str
="MNT3ERR_NOTDIR"; break;
166 case MNT3ERR_INVAL
: str
="MNT3ERR_INVAL"; break;
167 case MNT3ERR_NAMETOOLONG
: str
="MNT3ERR_NAMETOOLONG"; break;
168 case MNT3ERR_NOTSUPP
: str
="MNT3ERR_NOTSUPP"; break;
169 case MNT3ERR_SERVERFAULT
: str
="MNT3ERR_SERVERFAULT"; break;
175 int mountstat3_to_errno(int st
)
177 enum mountstat3 stat
= st
;
180 case MNT3_OK
: return 0; break;
181 case MNT3ERR_PERM
: return -EPERM
; break;
182 case MNT3ERR_NOENT
: return -EPERM
; break;
183 case MNT3ERR_IO
: return -EIO
; break;
184 case MNT3ERR_ACCES
: return -EACCES
; break;
185 case MNT3ERR_NOTDIR
: return -ENOTDIR
; break;
186 case MNT3ERR_INVAL
: return -EINVAL
; break;
187 case MNT3ERR_NAMETOOLONG
: return -E2BIG
; break;
188 case MNT3ERR_NOTSUPP
: return -EINVAL
; break;
189 case MNT3ERR_SERVERFAULT
: return -EIO
; break;