2007-08-29 Jonathan Chambers <joncham@gmail.com>
[mono.git] / support / fstab.c
blobe81821b18c6c11a48c8253c7646d3229aab9fcac
1 /*
2 * <fstab.h> wrapper functions.
4 * Authors:
5 * Jonathan Pryor (jonpryor@vt.edu)
7 * Copyright (C) 2004-2005 Jonathan Pryor
8 */
10 #include <errno.h>
11 #include <string.h>
12 #include <stdio.h>
13 #include <stdlib.h>
14 #include <stddef.h>
16 #include "map.h"
17 #include "mph.h"
19 #if defined (HAVE_CHECKLIST_H)
20 #include <checklist.h>
21 #elif defined (HAVE_FSTAB_H)
22 #include <fstab.h>
23 #endif /* def HAVE_FSTAB_H */
25 #ifdef HAVE_SYS_VFSTAB_H
26 #include <sys/vfstab.h>
27 #endif /* def HAVE_SYS_VFSTAB_H */
29 G_BEGIN_DECLS
31 #ifdef HAVE_CHECKLIST_H
33 typedef struct checklist mph_fstab;
35 static const size_t
36 fstab_offsets[] = {
37 offsetof (struct checklist, fs_spec),
38 offsetof (struct checklist, fs_dir),
39 offsetof (struct checklist, fs_type)
42 static const size_t
43 mph_fstab_offsets[] = {
44 offsetof (struct Mono_Posix_Syscall__Fstab, fs_spec),
45 offsetof (struct Mono_Posix_Syscall__Fstab, fs_file),
46 offsetof (struct Mono_Posix_Syscall__Fstab, fs_type)
49 #elif defined (HAVE_FSTAB_H)
51 typedef struct fstab mph_fstab;
53 static const size_t
54 fstab_offsets[] = {
55 offsetof (struct fstab, fs_spec),
56 offsetof (struct fstab, fs_file),
57 offsetof (struct fstab, fs_vfstype),
58 offsetof (struct fstab, fs_mntops),
59 offsetof (struct fstab, fs_type)
62 static const size_t
63 mph_fstab_offsets[] = {
64 offsetof (struct Mono_Posix_Syscall__Fstab, fs_spec),
65 offsetof (struct Mono_Posix_Syscall__Fstab, fs_file),
66 offsetof (struct Mono_Posix_Syscall__Fstab, fs_vfstype),
67 offsetof (struct Mono_Posix_Syscall__Fstab, fs_mntops),
68 offsetof (struct Mono_Posix_Syscall__Fstab, fs_type)
71 #endif /* def HAVE_FSTAB_H */
73 #if defined (HAVE_CHECKLIST_H) || defined (HAVE_FSTAB_H)
76 * Copy the native `fstab' structure to it's managed representation.
78 * To minimize separate mallocs, all the strings are allocated within the same
79 * memory block (stored in _fs_buf_).
81 static int
82 copy_fstab (struct Mono_Posix_Syscall__Fstab *to, mph_fstab *from)
84 char *buf;
86 memset (to, 0, sizeof(*to));
88 buf = _mph_copy_structure_strings (to, mph_fstab_offsets,
89 from, fstab_offsets, sizeof(fstab_offsets)/sizeof(fstab_offsets[0]));
91 to->fs_freq = from->fs_freq;
92 to->fs_passno = from->fs_passno;
94 to->_fs_buf_ = buf;
95 if (buf == NULL) {
96 return -1;
99 return 0;
102 #endif /* def HAVE_CHECKLIST_H || def HAVE_FSTAB_H */
104 #ifdef HAVE_SYS_VFSTAB_H
107 * Solaris doesn't provide <fstab.h> but has equivalent functionality in
108 * <sys/fstab.h> via getvfsent(3C) and company.
111 typedef struct vfstab mph_fstab;
113 static const size_t
114 vfstab_offsets[] = {
115 offsetof (struct vfstab, vfs_special),
116 offsetof (struct vfstab, vfs_mountp),
117 offsetof (struct vfstab, vfs_fstype),
118 offsetof (struct vfstab, vfs_mntopts)
121 static const size_t
122 mph_fstab_offsets[] = {
123 offsetof (struct Mono_Posix_Syscall__Fstab, fs_spec),
124 offsetof (struct Mono_Posix_Syscall__Fstab, fs_file),
125 offsetof (struct Mono_Posix_Syscall__Fstab, fs_vfstype),
126 offsetof (struct Mono_Posix_Syscall__Fstab, fs_mntops)
130 * Copy the native `vfstab' structure to it's managed representation.
132 * To minimize separate mallocs, all the strings are allocated within the same
133 * memory block (stored in _fs_buf_).
135 static int
136 copy_fstab (struct Mono_Posix_Syscall__Fstab *to, struct vfstab *from)
138 char *buf;
140 memset (to, 0, sizeof(*to));
142 buf = _mph_copy_structure_strings (to, mph_fstab_offsets,
143 from, vfstab_offsets, sizeof(vfstab_offsets)/sizeof(vfstab_offsets[0]));
145 to->fs_type = NULL;
146 to->fs_freq = -1;
147 to->fs_passno = -1;
149 to->_fs_buf_ = buf;
150 if (buf == NULL) {
151 return -1;
154 return 0;
158 * Implement Linux/BSD getfsent(3) in terms of Solaris getvfsent(3C)...
160 static FILE*
161 etc_fstab;
163 static int
164 setfsent (void)
166 /* protect from bad users calling setfsent(), setfsent(), ... endfsent() */
167 if (etc_fstab != NULL)
168 fclose (etc_fstab);
169 etc_fstab = fopen ("/etc/vfstab", "r");
170 if (etc_fstab != NULL)
171 return 1;
172 return 0;
175 static void
176 endfsent (void)
178 fclose (etc_fstab);
179 etc_fstab = NULL;
182 static struct vfstab
183 cur_vfstab_entry;
185 static struct vfstab*
186 getfsent (void)
188 int r;
189 r = getvfsent (etc_fstab, &cur_vfstab_entry);
190 if (r == 0)
191 return &cur_vfstab_entry;
192 return NULL;
195 static struct vfstab*
196 getfsfile (const char *mount_point)
198 int r;
199 int close = 0;
200 if (etc_fstab == 0) {
201 close = 1;
202 if (setfsent () != 1)
203 return NULL;
205 rewind (etc_fstab);
206 r = getvfsfile (etc_fstab, &cur_vfstab_entry, (char*) mount_point);
207 if (close)
208 endfsent ();
209 if (r == 0)
210 return &cur_vfstab_entry;
211 return NULL;
214 static struct vfstab*
215 getfsspec (const char *special_file)
217 int r;
218 int close = 0;
219 if (etc_fstab == 0) {
220 close = 1;
221 if (setfsent () != 1)
222 return NULL;
224 rewind (etc_fstab);
225 r = getvfsspec (etc_fstab, &cur_vfstab_entry, (char*) special_file);
226 if (close)
227 endfsent ();
228 if (r == 0)
229 return &cur_vfstab_entry;
230 return NULL;
233 #endif /* def HAVE_SYS_VFSTAB_H */
235 #if defined (HAVE_FSTAB_H) || defined (HAVE_CHECKPOINT_H) || defined (HAVE_SYS_VFSTAB_H)
238 Mono_Posix_Syscall_endfsent (void)
240 endfsent ();
241 return 0;
244 gint32
245 Mono_Posix_Syscall_getfsent (struct Mono_Posix_Syscall__Fstab *fsbuf)
247 mph_fstab *fs;
249 if (fsbuf == NULL) {
250 errno = EFAULT;
251 return -1;
254 fs = getfsent ();
255 if (fs == NULL)
256 return -1;
258 if (copy_fstab (fsbuf, fs) == -1) {
259 errno = ENOMEM;
260 return -1;
262 return 0;
265 gint32
266 Mono_Posix_Syscall_getfsfile (const char *mount_point,
267 struct Mono_Posix_Syscall__Fstab *fsbuf)
269 mph_fstab *fs;
271 if (fsbuf == NULL) {
272 errno = EFAULT;
273 return -1;
276 fs = getfsfile (mount_point);
277 if (fs == NULL)
278 return -1;
280 if (copy_fstab (fsbuf, fs) == -1) {
281 errno = ENOMEM;
282 return -1;
284 return 0;
287 gint32
288 Mono_Posix_Syscall_getfsspec (const char *special_file,
289 struct Mono_Posix_Syscall__Fstab *fsbuf)
291 mph_fstab *fs;
293 if (fsbuf == NULL) {
294 errno = EFAULT;
295 return -1;
298 fs = getfsspec (special_file);
299 if (fs == NULL)
300 return -1;
302 if (copy_fstab (fsbuf, fs) == -1) {
303 errno = ENOMEM;
304 return -1;
306 return 0;
309 gint32
310 Mono_Posix_Syscall_setfsent (void)
312 return setfsent ();
315 #endif /* def HAVE_FSTAB_H || def HAVE_CHECKPOINT_H || def HAVE_SYS_VFSTAB_H */
317 G_END_DECLS
320 * vim: noexpandtab