| /* |
| * utils/mountd/mountd.h |
| * |
| * Declarations for mountd. |
| * |
| * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de> |
| */ |
| |
| #ifndef MOUNTD_H |
| #define MOUNTD_H |
| |
| #include <rpc/rpc.h> |
| #include <rpc/svc.h> |
| #include "nfslib.h" |
| #include "exportfs.h" |
| #include "mount.h" |
| |
| union mountd_arguments { |
| dirpath dirpath; |
| }; |
| |
| union mountd_results { |
| fhstatus fstatus; |
| mountlist mountlist; |
| exports exports; |
| }; |
| |
| /* |
| * Global Function prototypes. |
| */ |
| bool_t mount_null_1_svc(struct svc_req *, void *, void *); |
| bool_t mount_mnt_1_svc(struct svc_req *, dirpath *, fhstatus *); |
| bool_t mount_dump_1_svc(struct svc_req *, void *, mountlist *); |
| bool_t mount_umnt_1_svc(struct svc_req *, dirpath *, void *); |
| bool_t mount_umntall_1_svc(struct svc_req *, void *, void *); |
| bool_t mount_export_1_svc(struct svc_req *, void *, exports *); |
| bool_t mount_exportall_1_svc(struct svc_req *, void *, exports *); |
| bool_t mount_pathconf_2_svc(struct svc_req *, dirpath *, ppathcnf *); |
| bool_t mount_mnt_3_svc(struct svc_req *, dirpath *, mountres3 *); |
| |
| void mount_dispatch(struct svc_req *, SVCXPRT *); |
| void auth_init(void); |
| unsigned int auth_reload(void); |
| nfs_export * auth_authenticate(const char *what, |
| const struct sockaddr *caller, |
| const char *path); |
| void auth_export(nfs_export *exp); |
| |
| void mountlist_add(char *host, const char *path); |
| void mountlist_del(char *host, const char *path); |
| void mountlist_del_all(const struct sockaddr *sap); |
| mountlist mountlist_list(void); |
| |
| void cache_open(void); |
| struct nfs_fh_len * |
| cache_get_filehandle(nfs_export *exp, int len, char *p); |
| int cache_export(nfs_export *exp, char *path); |
| |
| bool ipaddr_client_matches(nfs_export *exp, struct addrinfo *ai); |
| bool namelist_client_matches(nfs_export *exp, char *dom); |
| bool client_matches(nfs_export *exp, char *dom, struct addrinfo *ai); |
| |
| #endif /* MOUNTD_H */ |