]> git.decadent.org.uk Git - nfs-utils.git/blob - support/include/nfslib.h
c41f92ebcdfbb3c384776ce704725744aae1b279
[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 #include "config.h"
13
14 #include <sys/types.h>
15 #include <sys/socket.h>
16 #include <netinet/in.h>
17 #include <stdio.h>
18 #include <paths.h>
19 #include <rpcsvc/nfs_prot.h>
20 #include <nfs/nfs.h>
21 #include "xlog.h"
22
23 #ifndef _PATH_EXPORTS
24 #define _PATH_EXPORTS           "/etc/exports"
25 #endif
26 #ifndef _PATH_XTAB
27 #define _PATH_XTAB              NFS_STATEDIR "/xtab"
28 #endif
29 #ifndef _PATH_XTABTMP
30 #define _PATH_XTABTMP           NFS_STATEDIR "/xtab.tmp"
31 #endif
32 #ifndef _PATH_ETAB
33 #define _PATH_ETAB              NFS_STATEDIR "/etab"
34 #endif
35 #ifndef _PATH_ETABTMP
36 #define _PATH_ETABTMP           NFS_STATEDIR "/etab.tmp"
37 #endif
38 #ifndef _PATH_RMTAB
39 #define _PATH_RMTAB             NFS_STATEDIR "/rmtab"
40 #endif
41 #ifndef _PATH_RMTABTMP
42 #define _PATH_RMTABTMP          _PATH_RMTAB ".tmp"
43 #endif
44 #ifndef _PATH_PROC_EXPORTS
45 #define _PATH_PROC_EXPORTS      "/proc/fs/nfs/exports"
46 #endif
47
48 enum cle_maptypes {
49         CLE_MAP_IDENT = 0,
50         CLE_MAP_FILE,
51         CLE_MAP_UGIDD,
52 };
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_maptype;
69         int             e_anonuid;
70         int             e_anongid;
71         int *           e_squids;
72         int             e_nsquids;
73         int *           e_sqgids;
74         int             e_nsqgids;
75         int             e_fsid;
76         char *          e_mountpoint;
77 };
78
79 struct rmtabent {
80         char            r_client[NFSCLNT_IDMAX+1];
81         char            r_path[NFS_MAXPATHLEN+1];
82         int             r_count;
83 };
84
85 /*
86  * configuration file parsing
87  */
88 void                    setexportent(char *fname, char *type);
89 struct exportent *      getexportent(int,int);
90 void                    putexportent(struct exportent *xep);
91 void                    endexportent(void);
92 struct exportent *      mkexportent(char *hname, char *path, char *opts);
93 void                    dupexportent(struct exportent *dst,
94                                         struct exportent *src);
95 int                     updateexportent(struct exportent *eep, char *options);
96
97 int                     setrmtabent(char *type);
98 struct rmtabent *       getrmtabent(int log, long *pos);
99 void                    putrmtabent(struct rmtabent *xep, long *pos);
100 void                    endrmtabent(void);
101 void                    rewindrmtabent(void);
102 FILE *                  fsetrmtabent(char *fname, char *type);
103 struct rmtabent *       fgetrmtabent(FILE *fp, int log, long *pos);
104 void                    fputrmtabent(FILE *fp, struct rmtabent *xep, long *pos);
105 void                    fendrmtabent(FILE *fp);
106 void                    frewindrmtabent(FILE *fp);
107
108 /*
109  * wildmat borrowed from INN
110  */
111 int                     wildmat(char *text, char *pattern);
112
113 /*
114  * nfsd library functions.
115  */
116 int                     nfsctl(int, struct nfsctl_arg *, union nfsctl_res *);
117 int                     nfssvc(int port, int nrservs);
118 int                     nfsaddclient(struct nfsctl_client *clp);
119 int                     nfsdelclient(struct nfsctl_client *clp);
120 int                     nfsexport(struct nfsctl_export *exp);
121 int                     nfsunexport(struct nfsctl_export *exp);
122 struct nfs_fh_len *     getfh_old(struct sockaddr *addr, dev_t dev, ino_t ino);
123 struct nfs_fh_len *     getfh(struct sockaddr *addr, const char *);
124 struct nfs_fh_len *     getfh_size(struct sockaddr *addr, const char *, int size);
125
126 void qword_print(FILE *f, char *str);
127 void qword_printhex(FILE *f, char *str, int slen);
128 void qword_printint(FILE *f, int num);
129 void qword_eol(FILE *f);
130 int readline(int fd, char **buf, int *lenp);
131 int qword_get(char **bpp, char *dest, int bufsize);
132 int qword_get_int(char **bpp, int *anint);
133 void cache_flush(int force);
134 int check_new_cache(void);
135
136 /* lockd. */
137 int                     lockdsvc();
138
139 int                     svctcp_socket (u_long __number, int __reuse);
140 int                     svcudp_socket (u_long __number, int __reuse);
141
142 #endif /* NFSLIB_H */