Imported Upstream version 2.5.1
[debian/amanda] / client-src / getfsent.h
1 /*
2  * Amanda, The Advanced Maryland Automatic Network Disk Archiver
3  * Copyright (c) 1991-1998 University of Maryland at College Park
4  * All Rights Reserved.
5  *
6  * Permission to use, copy, modify, distribute, and sell this software and its
7  * documentation for any purpose is hereby granted without fee, provided that
8  * the above copyright notice appear in all copies and that both that
9  * copyright notice and this permission notice appear in supporting
10  * documentation, and that the name of U.M. not be used in advertising or
11  * publicity pertaining to distribution of the software without specific,
12  * written prior permission.  U.M. makes no representations about the
13  * suitability of this software for any purpose.  It is provided "as is"
14  * without express or implied warranty.
15  *
16  * U.M. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL U.M.
18  * BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
19  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
20  * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
21  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22  *
23  * Authors: the Amanda Development Team.  Its members are listed in a
24  * file named AUTHORS, in the root directory of this distribution.
25  */
26 /*
27  * $Id: getfsent.h,v 1.8 2006/05/25 01:47:11 johnfranks Exp $
28  *
29  * interfaces for obtaining filesystem information
30  */
31 #ifndef GETFSENT_H
32 #define GETFSENT_H
33
34 #ifndef STANDALONE_TEST
35 #include "amanda.h"
36 #endif
37
38 #define FSTAB_RW        "rw"    /* writable filesystem */
39 #define FSTAB_RQ        "rq"    /* writable, with quotas */
40 #define FSTAB_RO        "ro"    /* read-only filesystem */
41 #define FSTAB_SW        "sw"    /* swap device */
42 #define FSTAB_XX        "xx"    /* ignore this entry */
43
44 typedef struct generic_fsent_s {
45     char *fsname;
46     char *fstype;
47     char *mntdir;
48     char *mntopts;
49     int freq;
50     int passno;
51 } generic_fsent_t;
52
53 int open_fstab(void);
54 void close_fstab(void);
55
56 int get_fstab_nextentry(generic_fsent_t *fsent);
57 int search_fstab(char *name, generic_fsent_t *fsent, int check_dev);
58 int is_local_fstype(generic_fsent_t *fsent);
59
60 char *amname_to_devname(char *str);
61 char *amname_to_dirname(char *str);
62
63 char *amname_to_fstype(char *str);
64
65 #endif /* ! GETFSENT_H */