Imported Upstream version 2.5.1
[debian/amanda] / server-src / diskfile.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  * Author: James da Silva, Systems Design and Analysis Group
24  *                         Computer Science Department
25  *                         University of Maryland at College Park
26  */
27 /*
28  * $Id: diskfile.h,v 1.38 2006/06/22 20:41:33 martinea Exp $
29  *
30  * interface for disklist file reading code
31  */
32 #ifndef DISKFILE_H
33 #define DISKFILE_H
34
35 #include "amanda.h"
36 #include "conffile.h"
37 #include "amfeatures.h"
38
39 typedef struct amhost_s {
40     struct amhost_s *next;              /* next host */
41     char *hostname;                     /* name of host */
42     struct disk_s *disks;               /* linked list of disk records */
43     int inprogress;                     /* # dumps in progress */
44     int maxdumps;                       /* maximum dumps in parallel */
45     interface_t *netif;                 /* network interface this host is on */
46     time_t start_t;                     /* start dump after this time */
47     char *up;                           /* generic user pointer */
48     am_feature_t *features;             /* feature set */
49 } am_host_t;
50
51 typedef struct disk_s {
52     int         line;                   /* line number of last definition */
53     struct disk_s *prev, *next;         /* doubly linked disk list */
54
55     am_host_t   *host;                  /* host list */
56     struct disk_s *hostnext;
57
58     char        *name;                  /* label name for disk */
59     char        *device;                /* device name for disk, eg "sd0g" */
60     char        *dtype_name;            /* name of dump type   XXX shouldn't need this */
61     char        *program;               /* dump program, eg DUMP, STAR, GNUTAR */
62     char        *srvcompprog;           /* custom compression server filter */
63     char        *clntcompprog;          /* custom compression client filter */
64     char        *srv_encrypt;           /* custom encryption server filter */
65     char        *clnt_encrypt;          /* custom encryption client filter */
66     char        *amandad_path;          /* amandad path on the client */
67     char        *client_username;       /* username to connect on the client */
68     char        *ssh_keys;              /* ssh_key file to use */
69     sl_t        *exclude_file;          /* file exclude spec */
70     sl_t        *exclude_list;          /* exclude list */
71     sl_t        *include_file;          /* file include spec */
72     sl_t        *include_list;          /* include list */
73     int         exclude_optional;       /* exclude list are optional */
74     int         include_optional;       /* include list are optional */
75     int         priority;               /* priority of disk */
76     off_t       tape_splitsize;         /* size of dumpfile chunks on tape */
77     char        *split_diskbuffer;      /* place where we can buffer PORT-WRITE dumps other than RAM */
78     off_t       fallback_splitsize;     /* size for in-RAM PORT-WRITE buffers */
79     int         dumpcycle;              /* days between fulls */
80     long        frequency;              /* XXX - not used */
81     char        *security_driver;       /* type of authentication (per disk) */
82     int         maxdumps;               /* max number of parallel dumps (per system) */
83     int         maxpromoteday;          /* maximum of promote day */
84     int         bumppercent;
85     off_t       bumpsize;
86     int         bumpdays;
87     double      bumpmult;
88     time_t      start_t;                /* start this dump after this time */
89     int         strategy;               /* what dump strategy to use */
90     int         estimate;               /* what estimate strategy to use */
91     int         compress;               /* type of compression to use */
92     int         encrypt;                /* type of encryption to use */
93     char        *srv_decrypt_opt;       /* server-side decryption option parameter to use */
94     char        *clnt_decrypt_opt;      /* client-side decryption option parameter to use */
95     double      comprate[2];            /* default compression rates */
96     /* flag options */
97     int         record;                 /* record dump in /etc/dumpdates ? */
98     int         skip_incr;              /* incs done externally ? */
99     int         skip_full;              /* fulls done externally ? */
100     int         to_holdingdisk;         /* use holding disk ? */
101     int         kencrypt;
102     int         index;                  /* produce an index ? */
103     int         spindle;                /* spindle # - for parallel dumps */
104     int         inprogress;             /* being dumped now? */
105     int         todo;
106     void        *up;                    /* generic user pointer */
107 } disk_t;
108
109 typedef struct disklist_s {
110     disk_t *head, *tail;
111 } disklist_t;
112
113 #define empty(dlist)    ((dlist).head == NULL)
114
115
116 int read_diskfile(const char *, disklist_t *);
117
118 am_host_t *lookup_host(const char *hostname);
119 disk_t *lookup_disk(const char *hostname, const char *diskname);
120
121 disk_t *add_disk(disklist_t *list, char *hostname, char *diskname);
122
123 void enqueue_disk(disklist_t *list, disk_t *disk);
124 void headqueue_disk(disklist_t *list, disk_t *disk);
125 void insert_disk(disklist_t *list, disk_t *disk, int (*f)(disk_t *a, disk_t *b));
126 int  find_disk(disklist_t *list, disk_t *disk);
127 void sort_disk(disklist_t *in, disklist_t *out, int (*f)(disk_t *a, disk_t *b));
128 disk_t *dequeue_disk(disklist_t *list);
129 void remove_disk(disklist_t *list, disk_t *disk);
130
131 void dump_queue(char *str, disklist_t q, int npr, FILE *f);
132
133 char *optionstr(disk_t *dp, am_feature_t *their_features, FILE *fdout);
134
135 char *match_disklist(disklist_t *origqp, int sargc, char **sargv);
136 void free_disklist(disklist_t *dl);
137
138 #endif /* ! DISKFILE_H */