Imported Upstream version 1.3.0
[deb_libnfs.git] / include / libnfs-raw.h
CommitLineData
dabf4152
AM
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*/
17/*
18 * This is the lowlevel interface to access NFS resources.
19 * Through this interface you have access to the full gamut of nfs and nfs related
20 * protocol as well as the XDR encoded/decoded structures.
21 */
22#include <stdint.h>
5670ec6e
AM
23#include <rpc/rpc.h>
24#include <rpc/auth.h>
dabf4152
AM
25
26struct rpc_data {
27 int size;
28 unsigned char *data;
29};
30
31struct rpc_context;
32struct rpc_context *rpc_init_context(void);
33void rpc_destroy_context(struct rpc_context *rpc);
34
5670ec6e 35void rpc_set_auth(struct rpc_context *rpc, AUTH *auth);
dabf4152
AM
36
37int rpc_get_fd(struct rpc_context *rpc);
38int rpc_which_events(struct rpc_context *rpc);
39int rpc_service(struct rpc_context *rpc, int revents);
40char *rpc_get_error(struct rpc_context *rpc);
5670ec6e 41int rpc_queue_length(struct rpc_context *rpc);
dabf4152
AM
42
43
44#define RPC_STATUS_SUCCESS 0
45#define RPC_STATUS_ERROR 1
46#define RPC_STATUS_CANCEL 2
47
48/*
49 * Async connection to the tcp port at server:port.
50 * Function returns
51 * 0 : The connection was initiated. Once the connection establish finishes, the callback will be invoked.
52 * <0 : An error occured when trying to set up the connection. The callback will not be invoked.
53 *
54 * When the callback is invoked, status indicates the result:
55 * RPC_STATUS_SUCCESS : The tcp connection was successfully established.
56 * data is NULL.
57 * RPC_STATUS_ERROR : The connection failed to establish.
58 * data is the erro string.
59 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
60 * : data is NULL.
61 */
62int rpc_connect_async(struct rpc_context *rpc, const char *server, int port, rpc_cb cb, void *private_data);
63/*
64 * When disconnecting a connection in flight. All commands in flight will be called with the callback
65 * and status RPC_STATUS_ERROR. Data will be the error string for the disconnection.
66 */
67int rpc_disconnect(struct rpc_context *rpc, char *error);
68
69
70/*
71 * PORTMAP FUNCTIONS
72 */
73
74/*
75 * Call PORTMAPPER/NULL
76 * Function returns
77 * 0 : The connection was initiated. Once the connection establish finishes, the callback will be invoked.
78 * <0 : An error occured when trying to set up the connection. The callback will not be invoked.
79 *
80 * When the callback is invoked, status indicates the result:
81 * RPC_STATUS_SUCCESS : We got a successful response from the portmapper daemon.
82 * data is NULL.
83 * RPC_STATUS_ERROR : An error occured when trying to contact the portmapper.
84 * data is the error string.
85 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
86 * data is NULL.
87 */
88int rpc_pmap_null_async(struct rpc_context *rpc, rpc_cb cb, void *private_data);
89
90
91/*
92 * Call PORTMAPPER/GETPORT.
93 * Function returns
94 * 0 : The connection was initiated. Once the connection establish finishes, the callback will be invoked.
95 * <0 : An error occured when trying to set up the connection. The callback will not be invoked.
96 *
97 * When the callback is invoked, status indicates the result:
98 * RPC_STATUS_SUCCESS : We got a successful response from the portmapper daemon.
99 * data is a (uint32_t *), containing the port returned.
100 * RPC_STATUS_ERROR : An error occured when trying to contact the portmapper.
101 * data is the error string.
102 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
103 * data is NULL.
104 */
fab61e3d 105int rpc_pmap_getport_async(struct rpc_context *rpc, int program, int version, int protocol, rpc_cb cb, void *private_data);
dabf4152 106
fab61e3d
AM
107/*
108 * Call PORTMAPPER/SET
109 * Function returns
110 * 0 : The connection was initiated. Once the connection establish finishes, the callback will be invoked.
111 * <0 : An error occured when trying to set up the connection. The callback will not be invoked.
112 *
113 * When the callback is invoked, status indicates the result:
114 * RPC_STATUS_SUCCESS : We got a successful response from the portmapper daemon.
115 * data is a (uint32_t *), containing status
116 * RPC_STATUS_ERROR : An error occured when trying to contact the portmapper.
117 * data is the error string.
118 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
119 * data is NULL.
120 */
121int rpc_pmap_set_async(struct rpc_context *rpc, int program, int version, int protocol, int port, rpc_cb cb, void *private_data);
122
123/*
124 * Call PORTMAPPER/UNSET
125 * Function returns
126 * 0 : The connection was initiated. Once the connection establish finishes, the callback will be invoked.
127 * <0 : An error occured when trying to set up the connection. The callback will not be invoked.
128 *
129 * When the callback is invoked, status indicates the result:
130 * RPC_STATUS_SUCCESS : We got a successful response from the portmapper daemon.
131 * data is a (uint32_t *), containing status
132 * RPC_STATUS_ERROR : An error occured when trying to contact the portmapper.
133 * data is the error string.
134 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
135 * data is NULL.
136 */
137int rpc_pmap_unset_async(struct rpc_context *rpc, int program, int version, int protocol, int port, rpc_cb cb, void *private_data);
dabf4152
AM
138
139/*
140 * Call PORTMAPPER/CALLIT.
141 * Function returns
142 * 0 : The connection was initiated. Once the connection establish finishes, the callback will be invoked.
143 * <0 : An error occured when trying to set up the connection. The callback will not be invoked.
144 *
145 * When the callback is invoked, status indicates the result:
146 * RPC_STATUS_SUCCESS : We got a successful response from the portmapper daemon
147 * data is a 'pmap_call_result' pointer.
148 * RPC_STATUS_ERROR : An error occured when trying to contact the portmapper.
149 * data is the error string.
150 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
151 * data is NULL.
152 */
153int 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);
154
155/*
156 * MOUNT FUNCTIONS
157 */
158char *mountstat3_to_str(int stat);
159int mountstat3_to_errno(int error);
160
161/*
162 * Call MOUNT/NULL
163 * Function returns
164 * 0 : The call was initiated. The callback will be invoked when the call completes.
165 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
166 *
167 * When the callback is invoked, status indicates the result:
168 * RPC_STATUS_SUCCESS : We got a successful response from the mount daemon.
169 * data is NULL.
170 * RPC_STATUS_ERROR : An error occured when trying to contact the mount daemon.
171 * data is the error string.
172 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
173 * data is NULL.
174 */
175int rpc_mount_null_async(struct rpc_context *rpc, rpc_cb cb, void *private_data);
176
177/*
178 * Call MOUNT/MNT
179 * Function returns
180 * 0 : The call was initiated. The callback will be invoked when the call completes.
181 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
182 *
183 * When the callback is invoked, status indicates the result:
184 * RPC_STATUS_SUCCESS : We got a successful response from the mount daemon.
185 * data is union mountres3.
186 * RPC_STATUS_ERROR : An error occured when trying to contact the mount daemon.
187 * data is the error string.
188 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
189 * data is NULL.
190 */
191int rpc_mount_mnt_async(struct rpc_context *rpc, rpc_cb cb, char *export, void *private_data);
192
193/*
194 * Call MOUNT/DUMP
195 * Function returns
196 * 0 : The call was initiated. The callback will be invoked when the call completes.
197 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
198 *
199 * When the callback is invoked, status indicates the result:
200 * RPC_STATUS_SUCCESS : We got a successful response from the mount daemon.
201 * data is a mountlist.
202 * RPC_STATUS_ERROR : An error occured when trying to contact the mount daemon.
203 * data is the error string.
204 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
205 * data is NULL.
206 */
207int rpc_mount_dump_async(struct rpc_context *rpc, rpc_cb cb, void *private_data);
208
209/*
210 * Call MOUNT/UMNT
211 * Function returns
212 * 0 : The call was initiated. The callback will be invoked when the call completes.
213 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
214 *
215 * When the callback is invoked, status indicates the result:
216 * RPC_STATUS_SUCCESS : We got a successful response from the mount daemon.
217 * data NULL.
218 * RPC_STATUS_ERROR : An error occured when trying to contact the mount daemon.
219 * data is the error string.
220 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
221 * data is NULL.
222 */
223int rpc_mount_umnt_async(struct rpc_context *rpc, rpc_cb cb, char *export, void *private_data);
224
225/*
226 * Call MOUNT/UMNTALL
227 * Function returns
228 * 0 : The call was initiated. The callback will be invoked when the call completes.
229 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
230 *
231 * When the callback is invoked, status indicates the result:
232 * RPC_STATUS_SUCCESS : We got a successful response from the mount daemon.
233 * data NULL.
234 * RPC_STATUS_ERROR : An error occured when trying to contact the mount daemon.
235 * data is the error string.
236 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
237 * data is NULL.
238 */
239int rpc_mount_umntall_async(struct rpc_context *rpc, rpc_cb cb, void *private_data);
240
241/*
242 * Call MOUNT/EXPORT
243 * NOTE: You must include 'libnfs-raw-mount.h' to get the definitions of the
244 * returned structures.
245 *
246 * Function returns
247 * 0 : The call was initiated. The callback will be invoked when the call completes.
248 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
249 *
250 * When the callback is invoked, status indicates the result:
251 * RPC_STATUS_SUCCESS : We got a successful response from the mount daemon.
252 * data is a pointer to an exports pointer:
253 * exports export = *(exports *)data;
254 * RPC_STATUS_ERROR : An error occured when trying to contact the mount daemon.
255 * data is the error string.
256 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
257 * data is NULL.
258 */
259int rpc_mount_export_async(struct rpc_context *rpc, rpc_cb cb, void *private_data);
260
261
262
263
264/*
265 * NFS FUNCTIONS
266 */
267struct nfs_fh3;
268char *nfsstat3_to_str(int error);
269int nfsstat3_to_errno(int error);
270
271/*
272 * Call NFS/NULL
273 * Function returns
274 * 0 : The call was initiated. The callback will be invoked when the call completes.
275 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
276 *
277 * When the callback is invoked, status indicates the result:
278 * RPC_STATUS_SUCCESS : We got a successful response from the nfs daemon.
279 * data is NULL.
280 * RPC_STATUS_ERROR : An error occured when trying to contact the nfs daemon.
281 * data is the error string.
282 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
283 * data is NULL.
284 */
285int rpc_nfs_null_async(struct rpc_context *rpc, rpc_cb cb, void *private_data);
286
287/*
288 * Call NFS/GETATTR
289 * Function returns
290 * 0 : The call was initiated. The callback will be invoked when the call completes.
291 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
292 *
293 * When the callback is invoked, status indicates the result:
294 * RPC_STATUS_SUCCESS : We got a successful response from the nfs daemon.
295 * data is GETATTR3res
296 * RPC_STATUS_ERROR : An error occured when trying to contact the nfs daemon.
297 * data is the error string.
298 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
299 * data is NULL.
300 */
301int rpc_nfs_getattr_async(struct rpc_context *rpc, rpc_cb cb, struct nfs_fh3 *fh, void *private_data);
302
303/*
304 * Call NFS/LOOKUP
305 * Function returns
306 * 0 : The call was initiated. The callback will be invoked when the call completes.
307 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
308 *
309 * When the callback is invoked, status indicates the result:
310 * RPC_STATUS_SUCCESS : We got a successful response from the nfs daemon.
311 * data is LOOKUP3res
312 * RPC_STATUS_ERROR : An error occured when trying to contact the nfs daemon.
313 * data is the error string.
314 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
315 * data is NULL.
316 */
317int rpc_nfs_lookup_async(struct rpc_context *rpc, rpc_cb cb, struct nfs_fh3 *fh, char *name, void *private_data);
318
319/*
320 * Call NFS/ACCESS
321 * Function returns
322 * 0 : The call was initiated. The callback will be invoked when the call completes.
323 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
324 *
325 * When the callback is invoked, status indicates the result:
326 * RPC_STATUS_SUCCESS : We got a successful response from the nfs daemon.
327 * data is ACCESS3res
328 * RPC_STATUS_ERROR : An error occured when trying to contact the nfs daemon.
329 * data is the error string.
330 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
331 * data is NULL.
332 */
333int rpc_nfs_access_async(struct rpc_context *rpc, rpc_cb cb, struct nfs_fh3 *fh, int access, void *private_data);
334
335/*
336 * Call NFS/READ
337 * Function returns
338 * 0 : The call was initiated. The callback will be invoked when the call completes.
339 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
340 *
341 * When the callback is invoked, status indicates the result:
342 * RPC_STATUS_SUCCESS : We got a successful response from the nfs daemon.
fab61e3d 343 * data is READ3res
dabf4152
AM
344 * RPC_STATUS_ERROR : An error occured when trying to contact the nfs daemon.
345 * data is the error string.
346 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
347 * data is NULL.
348 */
5670ec6e 349int rpc_nfs_read_async(struct rpc_context *rpc, rpc_cb cb, struct nfs_fh3 *fh, uint64_t offset, uint64_t count, void *private_data);
dabf4152
AM
350
351/*
352 * Call NFS/WRITE
353 * Function returns
354 * 0 : The call was initiated. The callback will be invoked when the call completes.
355 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
356 *
357 * When the callback is invoked, status indicates the result:
358 * RPC_STATUS_SUCCESS : We got a successful response from the nfs daemon.
359 * data is WRITE3res *
360 * RPC_STATUS_ERROR : An error occured when trying to contact the nfs daemon.
361 * data is the error string.
362 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
363 * data is NULL.
364 */
5670ec6e 365int rpc_nfs_write_async(struct rpc_context *rpc, rpc_cb cb, struct nfs_fh3 *fh, char *buf, uint64_t offset, uint64_t count, int stable_how, void *private_data);
dabf4152
AM
366
367/*
368 * Call NFS/COMMIT
369 * Function returns
370 * 0 : The call was initiated. The callback will be invoked when the call completes.
371 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
372 *
373 * When the callback is invoked, status indicates the result:
374 * RPC_STATUS_SUCCESS : We got a successful response from the nfs daemon.
375 * data is COMMIT3res *
376 * RPC_STATUS_ERROR : An error occured when trying to contact the nfs daemon.
377 * data is the error string.
378 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
379 * data is NULL.
380 */
381int rpc_nfs_commit_async(struct rpc_context *rpc, rpc_cb cb, struct nfs_fh3 *fh, void *private_data);
382
383
384/*
385 * Call NFS/SETATTR
386 * Function returns
387 * 0 : The call was initiated. The callback will be invoked when the call completes.
388 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
389 *
390 * When the callback is invoked, status indicates the result:
391 * RPC_STATUS_SUCCESS : We got a successful response from the nfs daemon.
392 * data is SETATTR3res *
393 * RPC_STATUS_ERROR : An error occured when trying to contact the nfs daemon.
394 * data is the error string.
395 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
396 * data is NULL.
397 */
398struct SETATTR3args;
399int rpc_nfs_setattr_async(struct rpc_context *rpc, rpc_cb cb, struct SETATTR3args *args, void *private_data);
400
401
402
403/*
404 * Call NFS/MKDIR
405 * Function returns
406 * 0 : The call was initiated. The callback will be invoked when the call completes.
407 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
408 *
409 * When the callback is invoked, status indicates the result:
410 * RPC_STATUS_SUCCESS : We got a successful response from the nfs daemon.
411 * data is MKDIR3res *
412 * RPC_STATUS_ERROR : An error occured when trying to contact the nfs daemon.
413 * data is the error string.
414 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
415 * data is NULL.
416 */
fab61e3d
AM
417struct MKDIR3args;
418int rpc_nfs_mkdir_async(struct rpc_context *rpc, rpc_cb cb, struct MKDIR3args *args, void *private_data);
dabf4152
AM
419
420
421
422
423
424/*
425 * Call NFS/RMDIR
426 * Function returns
427 * 0 : The call was initiated. The callback will be invoked when the call completes.
428 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
429 *
430 * When the callback is invoked, status indicates the result:
431 * RPC_STATUS_SUCCESS : We got a successful response from the nfs daemon.
432 * data is RMDIR3res *
433 * RPC_STATUS_ERROR : An error occured when trying to contact the nfs daemon.
434 * data is the error string.
435 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
436 * data is NULL.
437 */
438int rpc_nfs_rmdir_async(struct rpc_context *rpc, rpc_cb cb, struct nfs_fh3 *fh, char *dir, void *private_data);
439
440
441
442
443/*
444 * Call NFS/CREATE
445 * Function returns
446 * 0 : The call was initiated. The callback will be invoked when the call completes.
447 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
448 *
449 * When the callback is invoked, status indicates the result:
450 * RPC_STATUS_SUCCESS : We got a successful response from the nfs daemon.
451 * data is CREATE3res *
452 * RPC_STATUS_ERROR : An error occured when trying to contact the nfs daemon.
453 * data is the error string.
454 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
455 * data is NULL.
456 */
fab61e3d
AM
457struct CREATE3args;
458int rpc_nfs_create_async(struct rpc_context *rpc, rpc_cb cb, struct CREATE3args *args, void *private_data);
dabf4152
AM
459
460
5670ec6e
AM
461/*
462 * Call NFS/MKNOD
463 * Function returns
464 * 0 : The call was initiated. The callback will be invoked when the call completes.
465 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
466 *
467 * When the callback is invoked, status indicates the result:
468 * RPC_STATUS_SUCCESS : We got a successful response from the nfs daemon.
469 * data is MKNOD3res *
470 * RPC_STATUS_ERROR : An error occured when trying to contact the nfs daemon.
471 * data is the error string.
472 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
473 * data is NULL.
474 */
475int rpc_nfs_mknod_async(struct rpc_context *rpc, rpc_cb cb, struct nfs_fh3 *fh, char *file, int mode, int major, int minor, void *private_data);
dabf4152
AM
476
477
478/*
479 * Call NFS/REMOVE
480 * Function returns
481 * 0 : The call was initiated. The callback will be invoked when the call completes.
482 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
483 *
484 * When the callback is invoked, status indicates the result:
485 * RPC_STATUS_SUCCESS : We got a successful response from the nfs daemon.
486 * data is REMOVE3res *
487 * RPC_STATUS_ERROR : An error occured when trying to contact the nfs daemon.
488 * data is the error string.
489 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
490 * data is NULL.
491 */
492int rpc_nfs_remove_async(struct rpc_context *rpc, rpc_cb cb, struct nfs_fh3 *fh, char *name, void *private_data);
493
494
495
496/*
5670ec6e 497 * Call NFS/READDIR
dabf4152
AM
498 * Function returns
499 * 0 : The call was initiated. The callback will be invoked when the call completes.
500 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
501 *
502 * When the callback is invoked, status indicates the result:
503 * RPC_STATUS_SUCCESS : We got a successful response from the nfs daemon.
504 * data is READDIR3res *
505 * RPC_STATUS_ERROR : An error occured when trying to contact the nfs daemon.
506 * data is the error string.
507 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
508 * data is NULL.
509 */
510int rpc_nfs_readdir_async(struct rpc_context *rpc, rpc_cb cb, struct nfs_fh3 *fh, uint64_t cookie, char *cookieverf, int count, void *private_data);
511
5670ec6e
AM
512/*
513 * Call NFS/READDIRPLUS
514 * Function returns
515 * 0 : The call was initiated. The callback will be invoked when the call completes.
516 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
517 *
518 * When the callback is invoked, status indicates the result:
519 * RPC_STATUS_SUCCESS : We got a successful response from the nfs daemon.
520 * data is READDIRPLUS3res *
521 * RPC_STATUS_ERROR : An error occured when trying to contact the nfs daemon.
522 * data is the error string.
523 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
524 * data is NULL.
525 */
526int rpc_nfs_readdirplus_async(struct rpc_context *rpc, rpc_cb cb, struct nfs_fh3 *fh, uint64_t cookie, char *cookieverf, int count, void *private_data);
527
dabf4152
AM
528/*
529 * Call NFS/FSSTAT
530 * Function returns
531 * 0 : The call was initiated. The callback will be invoked when the call completes.
532 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
533 *
534 * When the callback is invoked, status indicates the result:
535 * RPC_STATUS_SUCCESS : We got a successful response from the nfs daemon.
536 * data is FSSTAT3res
537 * RPC_STATUS_ERROR : An error occured when trying to contact the nfs daemon.
538 * data is the error string.
539 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
540 * data is NULL.
541 */
542int rpc_nfs_fsstat_async(struct rpc_context *rpc, rpc_cb cb, struct nfs_fh3 *fh, void *private_data);
543
544
545
546/*
547 * Call NFS/FSINFO
548 * Function returns
549 * 0 : The call was initiated. The callback will be invoked when the call completes.
550 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
551 *
552 * When the callback is invoked, status indicates the result:
553 * RPC_STATUS_SUCCESS : We got a successful response from the nfs daemon.
554 * data is FSINFO3res
555 * RPC_STATUS_ERROR : An error occured when trying to contact the nfs daemon.
556 * data is the error string.
557 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
558 * data is NULL.
559 */
560int rpc_nfs_fsinfo_async(struct rpc_context *rpc, rpc_cb cb, struct nfs_fh3 *fh, void *private_data);
561
562
563
564/*
565 * Call NFS/READLINK
566 * Function returns
567 * 0 : The call was initiated. The callback will be invoked when the call completes.
568 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
569 *
570 * When the callback is invoked, status indicates the result:
571 * RPC_STATUS_SUCCESS : We got a successful response from the nfs daemon.
572 * data is READLINK3res *
573 * RPC_STATUS_ERROR : An error occured when trying to contact the nfs daemon.
574 * data is the error string.
575 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
576 * data is NULL.
577 */
fab61e3d
AM
578struct READLINK3args;
579int rpc_nfs_readlink_async(struct rpc_context *rpc, rpc_cb cb, struct READLINK3args *args, void *private_data);
dabf4152
AM
580
581
582
583/*
584 * Call NFS/SYMLINK
585 * Function returns
586 * 0 : The call was initiated. The callback will be invoked when the call completes.
587 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
588 *
589 * When the callback is invoked, status indicates the result:
590 * RPC_STATUS_SUCCESS : We got a successful response from the nfs daemon.
591 * data is SYMLINK3res *
592 * RPC_STATUS_ERROR : An error occured when trying to contact the nfs daemon.
593 * data is the error string.
594 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
595 * data is NULL.
596 */
fab61e3d
AM
597struct SYMLINK3args;
598int rpc_nfs_symlink_async(struct rpc_context *rpc, rpc_cb cb, struct SYMLINK3args *args, void *private_data);
dabf4152
AM
599
600
601/*
602 * Call NFS/RENAME
603 * Function returns
604 * 0 : The call was initiated. The callback will be invoked when the call completes.
605 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
606 *
607 * When the callback is invoked, status indicates the result:
608 * RPC_STATUS_SUCCESS : We got a successful response from the nfs daemon.
609 * data is RENAME3res *
610 * RPC_STATUS_ERROR : An error occured when trying to contact the nfs daemon.
611 * data is the error string.
612 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
613 * data is NULL.
614 */
615int rpc_nfs_rename_async(struct rpc_context *rpc, rpc_cb cb, struct nfs_fh3 *olddir, char *oldname, struct nfs_fh3 *newdir, char *newname, void *private_data);
616
617
618
619/*
620 * Call NFS/LINK
621 * Function returns
622 * 0 : The call was initiated. The callback will be invoked when the call completes.
623 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
624 *
625 * When the callback is invoked, status indicates the result:
626 * RPC_STATUS_SUCCESS : We got a successful response from the nfs daemon.
627 * data is LINK3res *
628 * RPC_STATUS_ERROR : An error occured when trying to contact the nfs daemon.
629 * data is the error string.
630 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
631 * data is NULL.
632 */
633int rpc_nfs_link_async(struct rpc_context *rpc, rpc_cb cb, struct nfs_fh3 *file, struct nfs_fh3 *newdir, char *newname, void *private_data);
634
635
636
637
638/*
639 * RQUOTA FUNCTIONS
640 */
641char *rquotastat_to_str(int error);
642int rquotastat_to_errno(int error);
643
644/*
645 * Call RQUOTA1/NULL
646 * Function returns
647 * 0 : The call was initiated. The callback will be invoked when the call completes.
648 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
649 *
650 * When the callback is invoked, status indicates the result:
651 * RPC_STATUS_SUCCESS : We got a successful response from the rquota daemon.
652 * data is NULL.
653 * RPC_STATUS_ERROR : An error occured when trying to contact the rquota daemon.
654 * data is the error string.
655 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
656 * data is NULL.
657 */
658int rpc_rquota1_null_async(struct rpc_context *rpc, rpc_cb cb, void *private_data);
659
660/*
661 * Call RQUOTA1/GETQUOTA
662 * Function returns
663 * 0 : The call was initiated. The callback will be invoked when the call completes.
664 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
665 *
666 * When the callback is invoked, status indicates the result:
667 * RPC_STATUS_SUCCESS : We got a successful response from the rquota daemon.
668 * data is a RQUOTA1res structure.
669 * RPC_STATUS_ERROR : An error occured when trying to contact the rquota daemon.
670 * data is the error string.
671 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
672 * data is NULL.
673 */
674int rpc_rquota1_getquota_async(struct rpc_context *rpc, rpc_cb cb, char *export, int uid, void *private_data);
675
676/*
677 * Call RQUOTA1/GETACTIVEQUOTA
678 * Function returns
679 * 0 : The call was initiated. The callback will be invoked when the call completes.
680 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
681 *
682 * When the callback is invoked, status indicates the result:
683 * RPC_STATUS_SUCCESS : We got a successful response from the rquota daemon.
684 * data is a RQUOTA1res structure.
685 * RPC_STATUS_ERROR : An error occured when trying to contact the rquota daemon.
686 * data is the error string.
687 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
688 * data is NULL.
689 */
690int rpc_rquota1_getactivequota_async(struct rpc_context *rpc, rpc_cb cb, char *export, int uid, void *private_data);
691
692
693
694
695/*
696 * Call RQUOTA2/NULL
697 * Function returns
698 * 0 : The call was initiated. The callback will be invoked when the call completes.
699 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
700 *
701 * When the callback is invoked, status indicates the result:
702 * RPC_STATUS_SUCCESS : We got a successful response from the rquota daemon.
703 * data is NULL.
704 * RPC_STATUS_ERROR : An error occured when trying to contact the rquota daemon.
705 * data is the error string.
706 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
707 * data is NULL.
708 */
709int rpc_rquota2_null_async(struct rpc_context *rpc, rpc_cb cb, void *private_data);
710
711/*
712 * Call RQUOTA2/GETQUOTA
713 * Function returns
714 * 0 : The call was initiated. The callback will be invoked when the call completes.
715 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
716 *
717 * When the callback is invoked, status indicates the result:
718 * RPC_STATUS_SUCCESS : We got a successful response from the rquota daemon.
719 * data is a RQUOTA1res structure.
720 * RPC_STATUS_ERROR : An error occured when trying to contact the rquota daemon.
721 * data is the error string.
722 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
723 * data is NULL.
724 */
725int rpc_rquota2_getquota_async(struct rpc_context *rpc, rpc_cb cb, char *export, int type, int uid, void *private_data);
726
727/*
728 * Call RQUOTA2/GETACTIVEQUOTA
729 * Function returns
730 * 0 : The call was initiated. The callback will be invoked when the call completes.
731 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
732 *
733 * When the callback is invoked, status indicates the result:
734 * RPC_STATUS_SUCCESS : We got a successful response from the rquota daemon.
735 * data is a RQUOTA1res structure.
736 * RPC_STATUS_ERROR : An error occured when trying to contact the rquota daemon.
737 * data is the error string.
738 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
739 * data is NULL.
740 */
741int rpc_rquota2_getactivequota_async(struct rpc_context *rpc, rpc_cb cb, char *export, int type, int uid, void *private_data);
742
743
744
745/*
746 * Call NFSACL/NULL
747 * Call the NULL procedure for the NFSACL
748 *
749 * Function returns
750 * 0 : The call was initiated. The callback will be invoked when the call completes.
751 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
752 *
753 * When the callback is invoked, status indicates the result:
754 * RPC_STATUS_SUCCESS : We got a successful response from the rquota daemon.
755 * data is NULL
756 * RPC_STATUS_ERROR : An error occured when trying to contact the rquota daemon.
757 * data is the error string.
758 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
759 * data is NULL.
760 */
761int rpc_nfsacl_null_async(struct rpc_context *rpc, rpc_cb cb, void *private_data);
762
763/*
764 * Call NFSACL/GETACL
765 *
766 * Function returns
767 * 0 : The call was initiated. The callback will be invoked when the call completes.
768 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
769 *
770 * When the callback is invoked, status indicates the result:
771 * RPC_STATUS_SUCCESS : We got a successful response from the rquota daemon.
772 * data is a GETACL3res pointer
773 * RPC_STATUS_ERROR : An error occured when trying to contact the rquota daemon.
774 * data is the error string.
775 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
776 * data is NULL.
777 */
778int rpc_nfsacl_getacl_async(struct rpc_context *rpc, rpc_cb cb, struct nfs_fh3 *fh, uint32_t mask, void *private_data);
779