df940c5f131505b2796229be28431dee7766e9ab
[deb_libnfs.git] / include / libnfs-raw.h
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>
23 #include <rpc/rpc.h>
24 #include <rpc/auth.h>
25
26 struct rpc_data {
27 int size;
28 unsigned char *data;
29 };
30
31 struct rpc_context;
32 struct rpc_context *rpc_init_context(void);
33 void rpc_destroy_context(struct rpc_context *rpc);
34
35 void rpc_set_auth(struct rpc_context *rpc, AUTH *auth);
36
37 int rpc_get_fd(struct rpc_context *rpc);
38 int rpc_which_events(struct rpc_context *rpc);
39 int rpc_service(struct rpc_context *rpc, int revents);
40 char *rpc_get_error(struct rpc_context *rpc);
41 int rpc_queue_length(struct rpc_context *rpc);
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 */
62 int 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 */
67 int 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 */
88 int 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 */
105 int rpc_pmap_getport_async(struct rpc_context *rpc, int program, int version, int protocol, rpc_cb cb, void *private_data);
106
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 */
121 int 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 */
137 int rpc_pmap_unset_async(struct rpc_context *rpc, int program, int version, int protocol, int port, rpc_cb cb, void *private_data);
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 */
153 int 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 */
158 char *mountstat3_to_str(int stat);
159 int 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 */
175 int 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 */
191 int 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 */
207 int 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 */
223 int 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 */
239 int 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 */
259 int rpc_mount_export_async(struct rpc_context *rpc, rpc_cb cb, void *private_data);
260
261
262
263
264 /*
265 * NFS FUNCTIONS
266 */
267 struct nfs_fh3;
268 char *nfsstat3_to_str(int error);
269 int 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 */
285 int 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 */
301 int 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 */
317 int 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 */
333 int 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.
343 * data is READ3res
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 */
349 int rpc_nfs_read_async(struct rpc_context *rpc, rpc_cb cb, struct nfs_fh3 *fh, uint64_t offset, uint64_t count, void *private_data);
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 */
365 int 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);
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 */
381 int 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 */
398 struct SETATTR3args;
399 int 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 */
417 int rpc_nfs_mkdir_async(struct rpc_context *rpc, rpc_cb cb, struct nfs_fh3 *fh, char *dir, void *private_data);
418
419
420
421
422
423 /*
424 * Call NFS/RMDIR
425 * Function returns
426 * 0 : The call was initiated. The callback will be invoked when the call completes.
427 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
428 *
429 * When the callback is invoked, status indicates the result:
430 * RPC_STATUS_SUCCESS : We got a successful response from the nfs daemon.
431 * data is RMDIR3res *
432 * RPC_STATUS_ERROR : An error occured when trying to contact the nfs daemon.
433 * data is the error string.
434 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
435 * data is NULL.
436 */
437 int rpc_nfs_rmdir_async(struct rpc_context *rpc, rpc_cb cb, struct nfs_fh3 *fh, char *dir, void *private_data);
438
439
440
441
442 /*
443 * Call NFS/CREATE
444 * Function returns
445 * 0 : The call was initiated. The callback will be invoked when the call completes.
446 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
447 *
448 * When the callback is invoked, status indicates the result:
449 * RPC_STATUS_SUCCESS : We got a successful response from the nfs daemon.
450 * data is CREATE3res *
451 * RPC_STATUS_ERROR : An error occured when trying to contact the nfs daemon.
452 * data is the error string.
453 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
454 * data is NULL.
455 */
456 struct CREATE3args;
457 int rpc_nfs_create_async(struct rpc_context *rpc, rpc_cb cb, struct CREATE3args *args, void *private_data);
458
459
460 /*
461 * Call NFS/MKNOD
462 * Function returns
463 * 0 : The call was initiated. The callback will be invoked when the call completes.
464 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
465 *
466 * When the callback is invoked, status indicates the result:
467 * RPC_STATUS_SUCCESS : We got a successful response from the nfs daemon.
468 * data is MKNOD3res *
469 * RPC_STATUS_ERROR : An error occured when trying to contact the nfs daemon.
470 * data is the error string.
471 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
472 * data is NULL.
473 */
474 int 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);
475
476
477 /*
478 * Call NFS/REMOVE
479 * Function returns
480 * 0 : The call was initiated. The callback will be invoked when the call completes.
481 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
482 *
483 * When the callback is invoked, status indicates the result:
484 * RPC_STATUS_SUCCESS : We got a successful response from the nfs daemon.
485 * data is REMOVE3res *
486 * RPC_STATUS_ERROR : An error occured when trying to contact the nfs daemon.
487 * data is the error string.
488 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
489 * data is NULL.
490 */
491 int rpc_nfs_remove_async(struct rpc_context *rpc, rpc_cb cb, struct nfs_fh3 *fh, char *name, void *private_data);
492
493
494
495 /*
496 * Call NFS/READDIR
497 * Function returns
498 * 0 : The call was initiated. The callback will be invoked when the call completes.
499 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
500 *
501 * When the callback is invoked, status indicates the result:
502 * RPC_STATUS_SUCCESS : We got a successful response from the nfs daemon.
503 * data is READDIR3res *
504 * RPC_STATUS_ERROR : An error occured when trying to contact the nfs daemon.
505 * data is the error string.
506 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
507 * data is NULL.
508 */
509 int 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);
510
511 /*
512 * Call NFS/READDIRPLUS
513 * Function returns
514 * 0 : The call was initiated. The callback will be invoked when the call completes.
515 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
516 *
517 * When the callback is invoked, status indicates the result:
518 * RPC_STATUS_SUCCESS : We got a successful response from the nfs daemon.
519 * data is READDIRPLUS3res *
520 * RPC_STATUS_ERROR : An error occured when trying to contact the nfs daemon.
521 * data is the error string.
522 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
523 * data is NULL.
524 */
525 int 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);
526
527 /*
528 * Call NFS/FSSTAT
529 * Function returns
530 * 0 : The call was initiated. The callback will be invoked when the call completes.
531 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
532 *
533 * When the callback is invoked, status indicates the result:
534 * RPC_STATUS_SUCCESS : We got a successful response from the nfs daemon.
535 * data is FSSTAT3res
536 * RPC_STATUS_ERROR : An error occured when trying to contact the nfs daemon.
537 * data is the error string.
538 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
539 * data is NULL.
540 */
541 int rpc_nfs_fsstat_async(struct rpc_context *rpc, rpc_cb cb, struct nfs_fh3 *fh, void *private_data);
542
543
544
545 /*
546 * Call NFS/FSINFO
547 * Function returns
548 * 0 : The call was initiated. The callback will be invoked when the call completes.
549 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
550 *
551 * When the callback is invoked, status indicates the result:
552 * RPC_STATUS_SUCCESS : We got a successful response from the nfs daemon.
553 * data is FSINFO3res
554 * RPC_STATUS_ERROR : An error occured when trying to contact the nfs daemon.
555 * data is the error string.
556 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
557 * data is NULL.
558 */
559 int rpc_nfs_fsinfo_async(struct rpc_context *rpc, rpc_cb cb, struct nfs_fh3 *fh, void *private_data);
560
561
562
563 /*
564 * Call NFS/READLINK
565 * Function returns
566 * 0 : The call was initiated. The callback will be invoked when the call completes.
567 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
568 *
569 * When the callback is invoked, status indicates the result:
570 * RPC_STATUS_SUCCESS : We got a successful response from the nfs daemon.
571 * data is READLINK3res *
572 * RPC_STATUS_ERROR : An error occured when trying to contact the nfs daemon.
573 * data is the error string.
574 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
575 * data is NULL.
576 */
577 int rpc_nfs_readlink_async(struct rpc_context *rpc, rpc_cb cb, struct nfs_fh3 *fh, void *private_data);
578
579
580
581 /*
582 * Call NFS/SYMLINK
583 * Function returns
584 * 0 : The call was initiated. The callback will be invoked when the call completes.
585 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
586 *
587 * When the callback is invoked, status indicates the result:
588 * RPC_STATUS_SUCCESS : We got a successful response from the nfs daemon.
589 * data is SYMLINK3res *
590 * RPC_STATUS_ERROR : An error occured when trying to contact the nfs daemon.
591 * data is the error string.
592 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
593 * data is NULL.
594 */
595 int rpc_nfs_symlink_async(struct rpc_context *rpc, rpc_cb cb, struct nfs_fh3 *fh, char *newname, char *oldpath, void *private_data);
596
597
598 /*
599 * Call NFS/RENAME
600 * Function returns
601 * 0 : The call was initiated. The callback will be invoked when the call completes.
602 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
603 *
604 * When the callback is invoked, status indicates the result:
605 * RPC_STATUS_SUCCESS : We got a successful response from the nfs daemon.
606 * data is RENAME3res *
607 * RPC_STATUS_ERROR : An error occured when trying to contact the nfs daemon.
608 * data is the error string.
609 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
610 * data is NULL.
611 */
612 int 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);
613
614
615
616 /*
617 * Call NFS/LINK
618 * Function returns
619 * 0 : The call was initiated. The callback will be invoked when the call completes.
620 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
621 *
622 * When the callback is invoked, status indicates the result:
623 * RPC_STATUS_SUCCESS : We got a successful response from the nfs daemon.
624 * data is LINK3res *
625 * RPC_STATUS_ERROR : An error occured when trying to contact the nfs daemon.
626 * data is the error string.
627 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
628 * data is NULL.
629 */
630 int rpc_nfs_link_async(struct rpc_context *rpc, rpc_cb cb, struct nfs_fh3 *file, struct nfs_fh3 *newdir, char *newname, void *private_data);
631
632
633
634
635 /*
636 * RQUOTA FUNCTIONS
637 */
638 char *rquotastat_to_str(int error);
639 int rquotastat_to_errno(int error);
640
641 /*
642 * Call RQUOTA1/NULL
643 * Function returns
644 * 0 : The call was initiated. The callback will be invoked when the call completes.
645 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
646 *
647 * When the callback is invoked, status indicates the result:
648 * RPC_STATUS_SUCCESS : We got a successful response from the rquota daemon.
649 * data is NULL.
650 * RPC_STATUS_ERROR : An error occured when trying to contact the rquota daemon.
651 * data is the error string.
652 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
653 * data is NULL.
654 */
655 int rpc_rquota1_null_async(struct rpc_context *rpc, rpc_cb cb, void *private_data);
656
657 /*
658 * Call RQUOTA1/GETQUOTA
659 * Function returns
660 * 0 : The call was initiated. The callback will be invoked when the call completes.
661 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
662 *
663 * When the callback is invoked, status indicates the result:
664 * RPC_STATUS_SUCCESS : We got a successful response from the rquota daemon.
665 * data is a RQUOTA1res structure.
666 * RPC_STATUS_ERROR : An error occured when trying to contact the rquota daemon.
667 * data is the error string.
668 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
669 * data is NULL.
670 */
671 int rpc_rquota1_getquota_async(struct rpc_context *rpc, rpc_cb cb, char *export, int uid, void *private_data);
672
673 /*
674 * Call RQUOTA1/GETACTIVEQUOTA
675 * Function returns
676 * 0 : The call was initiated. The callback will be invoked when the call completes.
677 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
678 *
679 * When the callback is invoked, status indicates the result:
680 * RPC_STATUS_SUCCESS : We got a successful response from the rquota daemon.
681 * data is a RQUOTA1res structure.
682 * RPC_STATUS_ERROR : An error occured when trying to contact the rquota daemon.
683 * data is the error string.
684 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
685 * data is NULL.
686 */
687 int rpc_rquota1_getactivequota_async(struct rpc_context *rpc, rpc_cb cb, char *export, int uid, void *private_data);
688
689
690
691
692 /*
693 * Call RQUOTA2/NULL
694 * Function returns
695 * 0 : The call was initiated. The callback will be invoked when the call completes.
696 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
697 *
698 * When the callback is invoked, status indicates the result:
699 * RPC_STATUS_SUCCESS : We got a successful response from the rquota daemon.
700 * data is NULL.
701 * RPC_STATUS_ERROR : An error occured when trying to contact the rquota daemon.
702 * data is the error string.
703 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
704 * data is NULL.
705 */
706 int rpc_rquota2_null_async(struct rpc_context *rpc, rpc_cb cb, void *private_data);
707
708 /*
709 * Call RQUOTA2/GETQUOTA
710 * Function returns
711 * 0 : The call was initiated. The callback will be invoked when the call completes.
712 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
713 *
714 * When the callback is invoked, status indicates the result:
715 * RPC_STATUS_SUCCESS : We got a successful response from the rquota daemon.
716 * data is a RQUOTA1res structure.
717 * RPC_STATUS_ERROR : An error occured when trying to contact the rquota daemon.
718 * data is the error string.
719 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
720 * data is NULL.
721 */
722 int rpc_rquota2_getquota_async(struct rpc_context *rpc, rpc_cb cb, char *export, int type, int uid, void *private_data);
723
724 /*
725 * Call RQUOTA2/GETACTIVEQUOTA
726 * Function returns
727 * 0 : The call was initiated. The callback will be invoked when the call completes.
728 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
729 *
730 * When the callback is invoked, status indicates the result:
731 * RPC_STATUS_SUCCESS : We got a successful response from the rquota daemon.
732 * data is a RQUOTA1res structure.
733 * RPC_STATUS_ERROR : An error occured when trying to contact the rquota daemon.
734 * data is the error string.
735 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
736 * data is NULL.
737 */
738 int rpc_rquota2_getactivequota_async(struct rpc_context *rpc, rpc_cb cb, char *export, int type, int uid, void *private_data);
739
740
741
742 /*
743 * Call NFSACL/NULL
744 * Call the NULL procedure for the NFSACL
745 *
746 * Function returns
747 * 0 : The call was initiated. The callback will be invoked when the call completes.
748 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
749 *
750 * When the callback is invoked, status indicates the result:
751 * RPC_STATUS_SUCCESS : We got a successful response from the rquota daemon.
752 * data is NULL
753 * RPC_STATUS_ERROR : An error occured when trying to contact the rquota daemon.
754 * data is the error string.
755 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
756 * data is NULL.
757 */
758 int rpc_nfsacl_null_async(struct rpc_context *rpc, rpc_cb cb, void *private_data);
759
760 /*
761 * Call NFSACL/GETACL
762 *
763 * Function returns
764 * 0 : The call was initiated. The callback will be invoked when the call completes.
765 * <0 : An error occured when trying to set up the call. The callback will not be invoked.
766 *
767 * When the callback is invoked, status indicates the result:
768 * RPC_STATUS_SUCCESS : We got a successful response from the rquota daemon.
769 * data is a GETACL3res pointer
770 * RPC_STATUS_ERROR : An error occured when trying to contact the rquota daemon.
771 * data is the error string.
772 * RPC_STATUS_CANCEL : The connection attempt was aborted before it could complete.
773 * data is NULL.
774 */
775 int rpc_nfsacl_getacl_async(struct rpc_context *rpc, rpc_cb cb, struct nfs_fh3 *fh, uint32_t mask, void *private_data);
776