]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/stored_conf.h
Convert to pure GPL v2 license.
[bacula/bacula] / bacula / src / stored / stored_conf.h
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2000-2007 Free Software Foundation Europe e.V.
5
6    The main author of Bacula is Kern Sibbald, with contributions from
7    many others, a complete list can be found in the file AUTHORS.
8    This program is Free Software; you can redistribute it and/or
9    modify it under the terms of version two of the GNU General Public
10    License as published by the Free Software Foundation and included
11    in the file LICENSE.
12
13    This program is distributed in the hope that it will be useful, but
14    WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16    General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21    02110-1301, USA.
22
23    Bacula® is a registered trademark of John Walker.
24    The licensor of Bacula is the Free Software Foundation Europe
25    (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
26    Switzerland, email:ftf@fsfeurope.org.
27 */
28 /*
29  * Resource codes -- they must be sequential for indexing
30  *
31  *   Version $Id$
32  */
33
34 enum {
35    R_DIRECTOR = 3001,
36    R_STORAGE,
37    R_DEVICE,
38    R_MSGS,
39    R_AUTOCHANGER,
40    R_FIRST = R_DIRECTOR,
41    R_LAST  = R_AUTOCHANGER            /* keep this updated */
42 };
43
44 enum {
45    R_NAME = 3020,
46    R_ADDRESS,
47    R_PASSWORD,
48    R_TYPE,
49    R_BACKUP
50 };
51
52
53 /* Definition of the contents of each Resource */
54 class DIRRES {
55 public:
56    RES   hdr;
57
58    char *password;                    /* Director password */
59    char *address;                     /* Director IP address or zero */
60    int monitor;                       /* Have only access to status and .status functions */
61    int tls_enable;                    /* Enable TLS */
62    int tls_require;                   /* Require TLS */
63    int tls_verify_peer;              /* TLS Verify Client Certificate */
64    char *tls_ca_certfile;             /* TLS CA Certificate File */
65    char *tls_ca_certdir;              /* TLS CA Certificate Directory */
66    char *tls_certfile;                /* TLS Server Certificate File */
67    char *tls_keyfile;                 /* TLS Server Key File */
68    char *tls_dhfile;                  /* TLS Diffie-Hellman Parameters */
69    alist *tls_allowed_cns;            /* TLS Allowed Clients */
70
71    TLS_CONTEXT *tls_ctx;              /* Shared TLS Context */
72 };
73
74
75 /* Storage daemon "global" definitions */
76 class s_res_store {
77 public:
78    RES   hdr;
79
80    dlist *sdaddrs;
81    dlist *sddaddrs;
82    char *working_directory;           /* working directory for checkpoints */
83    char *pid_directory;
84    char *subsys_directory;
85    char *scripts_directory;
86    uint32_t max_concurrent_jobs;      /* maximum concurrent jobs to run */
87    MSGS *messages;                    /* Daemon message handler */
88    utime_t heartbeat_interval;        /* Interval to send hb to FD */
89    utime_t client_wait;               /* Time to wait for FD to connect */
90    int tls_enable;                    /* Enable TLS */
91    int tls_require;                   /* Require TLS */
92    int tls_verify_peer;               /* TLS Verify Client Certificate */
93    char *tls_ca_certfile;             /* TLS CA Certificate File */
94    char *tls_ca_certdir;              /* TLS CA Certificate Directory */
95    char *tls_certfile;                /* TLS Server Certificate File */
96    char *tls_keyfile;                 /* TLS Server Key File */
97    char *tls_dhfile;                  /* TLS Diffie-Hellman Parameters */
98    alist *tls_allowed_cns;            /* TLS Allowed Clients */
99
100    TLS_CONTEXT *tls_ctx;              /* Shared TLS Context */
101 };
102 typedef class s_res_store STORES;
103
104 class AUTOCHANGER {
105 public:
106    RES hdr;
107    alist *device;                     /* List of DEVRES device pointers */
108    char *changer_name;                /* Changer device name */
109    char *changer_command;             /* Changer command  -- external program */
110    pthread_mutex_t changer_mutex;     /* One changer operation at a time */
111 };
112
113 /* Device specific definitions */
114 class DEVRES {
115 public:
116    RES   hdr;
117
118    char *media_type;                  /* User assigned media type */
119    char *device_name;                 /* Archive device name */
120    char *changer_name;                /* Changer device name */
121    char *changer_command;             /* Changer command  -- external program */
122    char *alert_command;               /* Alert command -- external program */
123    char *spool_directory;             /* Spool file directory */
124    int   dev_type;                    /* device type */
125    int   label_type;                  /* label type */
126    int   autoselect;                  /* Automatically select from AutoChanger */
127    uint32_t drive_index;              /* Autochanger drive index */
128    uint32_t cap_bits;                 /* Capabilities of this device */
129    utime_t max_changer_wait;          /* Changer timeout */
130    utime_t max_rewind_wait;           /* maximum secs to wait for rewind */
131    utime_t max_open_wait;             /* maximum secs to wait for open */
132    uint32_t max_open_vols;            /* maximum simultaneous open volumes */
133    uint32_t min_block_size;           /* min block size */
134    uint32_t max_block_size;           /* max block size */
135    uint32_t max_volume_jobs;          /* max jobs to put on one volume */
136    uint32_t max_network_buffer_size;  /* max network buf size */
137    utime_t  vol_poll_interval;        /* interval between polling volume during mount */
138    int64_t max_volume_files;          /* max files to put on one volume */
139    int64_t max_volume_size;           /* max bytes to put on one volume */
140    int64_t max_file_size;             /* max file size in bytes */
141    int64_t volume_capacity;           /* advisory capacity */
142    int64_t max_spool_size;            /* Max spool size for all jobs */
143    int64_t max_job_spool_size;        /* Max spool size for any single job */
144    
145    int64_t max_part_size;             /* Max part size */
146    char *mount_point;                 /* Mount point for require mount devices */
147    char *mount_command;               /* Mount command */
148    char *unmount_command;             /* Unmount command */
149    char *write_part_command;          /* Write part command */
150    char *free_space_command;          /* Free space command */
151    
152    /* The following are set at runtime */
153    DEVICE *dev;                       /* Pointer to phyical dev -- set at runtime */
154    AUTOCHANGER *changer_res;          /* pointer to changer res if any */
155 };
156
157
158 union URES {
159    DIRRES      res_dir;
160    STORES      res_store;
161    DEVRES      res_dev;
162    MSGS        res_msgs;
163    AUTOCHANGER res_changer;
164    RES         hdr;
165 };