]> git.decadent.org.uk Git - nfs-utils.git/blob - support/include/nfslib.h
Remove "maptype" support
[nfs-utils.git] / support / include / nfslib.h
1 /*
2  * support/include/nfslib.h
3  *
4  * General support functions for NFS user-space programs.
5  *
6  * Copyright (C) 1995 Olaf Kirch <okir@monad.swb.de>
7  */
8
9 #ifndef NFSLIB_H
10 #define NFSLIB_H
11
12 #ifdef HAVE_CONFIG_H
13 #include <config.h>
14 #endif
15
16 #include <sys/types.h>
17 #include <sys/socket.h>
18 #include <netinet/in.h>
19 #include <stdio.h>
20 #include <paths.h>
21 #include <rpcsvc/nfs_prot.h>
22 #include <nfs/nfs.h>
23 #include "xlog.h"
24
25 #ifndef _PATH_EXPORTS
26 #define _PATH_EXPORTS           "/etc/exports"
27 #endif
28 #ifndef _PATH_IDMAPDCONF
29 #define _PATH_IDMAPDCONF        "/etc/idmapd.conf"
30 #endif
31 #ifndef _PATH_XTAB
32 #define _PATH_XTAB              NFS_STATEDIR "/xtab"
33 #endif
34 #ifndef _PATH_XTABTMP
35 #define _PATH_XTABTMP           NFS_STATEDIR "/xtab.tmp"
36 #endif
37 #ifndef _PATH_ETAB
38 #define _PATH_ETAB              NFS_STATEDIR "/etab"
39 #endif
40 #ifndef _PATH_ETABTMP
41 #define _PATH_ETABTMP           NFS_STATEDIR "/etab.tmp"
42 #endif
43 #ifndef _PATH_RMTAB
44 #define _PATH_RMTAB             NFS_STATEDIR "/rmtab"
45 #endif
46 #ifndef _PATH_RMTABTMP
47 #define _PATH_RMTABTMP          _PATH_RMTAB ".tmp"
48 #endif
49 #ifndef _PATH_PROC_EXPORTS
50 #define _PATH_PROC_EXPORTS      "/proc/fs/nfs/exports"
51 #define _PATH_PROC_EXPORTS_ALT  "/proc/fs/nfsd/exports"
52 #endif
53
54 /*
55  * Data related to a single exports entry as returned by getexportent.
56  * FIXME: export options should probably be parsed at a later time to
57  * allow overrides when using exportfs.
58  */
59 struct exportent {
60         char            e_hostname[NFSCLNT_IDMAX+1];
61         char            e_path[NFS_MAXPATHLEN+1];
62         /* The mount path may be different from the exported path due
63            to submount. It may change for every mount. The idea is we
64            set m_path every time when we process a mount. We should not
65            use it for anything else. */
66         char            m_path[NFS_MAXPATHLEN+1];
67         int             e_flags;
68         int             e_anonuid;
69         int             e_anongid;
70         int *           e_squids;
71         int             e_nsquids;
72         int *           e_sqgids;
73         int             e_nsqgids;
74         int             e_fsid;
75         char *          e_mountpoint;
76         int             e_fslocmethod;
77         char *          e_fslocdata;
78         char *          e_uuid;
79 };
80
81 struct rmtabent {
82         char            r_client[NFSCLNT_IDMAX+1];
83         char            r_path[NFS_MAXPATHLEN+1];
84         int             r_count;
85 };
86
87 /*
88  * configuration file parsing
89  */
90 void                    setexportent(char *fname, char *type);
91 struct exportent *      getexportent(int,int);
92 void                    putexportent(struct exportent *xep);
93 void                    endexportent(void);
94 struct exportent *      mkexportent(char *hname, char *path, char *opts);
95 void                    dupexportent(struct exportent *dst,
96                                         struct exportent *src);
97 int                     updateexportent(struct exportent *eep, char *options);
98
99 int                     setrmtabent(char *type);
100 struct rmtabent *       getrmtabent(int log, long *pos);
101 void                    putrmtabent(struct rmtabent *xep, long *pos);
102 void                    endrmtabent(void);
103 void                    rewindrmtabent(void);
104 FILE *                  fsetrmtabent(char *fname, char *type);
105 struct rmtabent *       fgetrmtabent(FILE *fp, int log, long *pos);
106 void                    fputrmtabent(FILE *fp, struct rmtabent *xep, long *pos);
107 void                    fendrmtabent(FILE *fp);
108 void                    frewindrmtabent(FILE *fp);
109
110 /*
111  * wildmat borrowed from INN
112  */
113 int                     wildmat(char *text, char *pattern);
114
115 /*
116  * nfsd library functions.
117  */
118 int                     nfsctl(int, struct nfsctl_arg *, union nfsctl_res *);
119 int                     nfssvc(int port, int nrservs, unsigned int versbits, unsigned int portbits, char *haddr);
120 int                     nfsaddclient(struct nfsctl_client *clp);
121 int                     nfsdelclient(struct nfsctl_client *clp);
122 int                     nfsexport(struct nfsctl_export *exp);
123 int                     nfsunexport(struct nfsctl_export *exp);
124 struct nfs_fh_len *     getfh_old(struct sockaddr *addr, dev_t dev, ino_t ino);
125 struct nfs_fh_len *     getfh(struct sockaddr *addr, const char *);
126 struct nfs_fh_len *     getfh_size(struct sockaddr *addr, const char *, int size);
127
128 void qword_print(FILE *f, char *str);
129 void qword_printhex(FILE *f, char *str, int slen);
130 void qword_printint(FILE *f, int num);
131 int qword_eol(FILE *f);
132 int readline(int fd, char **buf, int *lenp);
133 int qword_get(char **bpp, char *dest, int bufsize);
134 int qword_get_int(char **bpp, int *anint);
135 void cache_flush(int force);
136 int check_new_cache(void);
137
138 void closeall(int min);
139
140 int                     svctcp_socket (u_long __number, int __reuse);
141 int                     svcudp_socket (u_long __number, int __reuse);
142
143 #endif /* NFSLIB_H */