]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/stored_conf.h
Implement Plugin Directory and plugin events.
[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    bool monitor;                      /* Have only access to status and .status functions */
61    bool tls_authenticate;             /* Authenticate with TLS */
62    bool tls_enable;                   /* Enable TLS */
63    bool tls_require;                  /* Require TLS */
64    bool tls_verify_peer;              /* TLS Verify Client Certificate */
65    char *tls_ca_certfile;             /* TLS CA Certificate File */
66    char *tls_ca_certdir;              /* TLS CA Certificate Directory */
67    char *tls_certfile;                /* TLS Server Certificate File */
68    char *tls_keyfile;                 /* TLS Server Key File */
69    char *tls_dhfile;                  /* TLS Diffie-Hellman Parameters */
70    alist *tls_allowed_cns;            /* TLS Allowed Clients */
71
72    TLS_CONTEXT *tls_ctx;              /* Shared TLS Context */
73 };
74
75
76 /* Storage daemon "global" definitions */
77 class s_res_store {
78 public:
79    RES   hdr;
80
81    dlist *sdaddrs;
82    dlist *sddaddrs;
83    char *working_directory;           /* working directory for checkpoints */
84    char *pid_directory;
85    char *subsys_directory;
86    char *plugin_directory;            /* Plugin directory */
87    char *scripts_directory;
88    uint32_t max_concurrent_jobs;      /* maximum concurrent jobs to run */
89    MSGS *messages;                    /* Daemon message handler */
90    utime_t heartbeat_interval;        /* Interval to send hb to FD */
91    utime_t client_wait;               /* Time to wait for FD to connect */
92    bool tls_authenticate;             /* Authenticate with TLS */
93    bool tls_enable;                   /* Enable TLS */
94    bool tls_require;                  /* Require TLS */
95    bool tls_verify_peer;              /* TLS Verify Client Certificate */
96    char *tls_ca_certfile;             /* TLS CA Certificate File */
97    char *tls_ca_certdir;              /* TLS CA Certificate Directory */
98    char *tls_certfile;                /* TLS Server Certificate File */
99    char *tls_keyfile;                 /* TLS Server Key File */
100    char *tls_dhfile;                  /* TLS Diffie-Hellman Parameters */
101    alist *tls_allowed_cns;            /* TLS Allowed Clients */
102
103    TLS_CONTEXT *tls_ctx;              /* Shared TLS Context */
104 };
105 typedef class s_res_store STORES;
106
107 class AUTOCHANGER {
108 public:
109    RES hdr;
110    alist *device;                     /* List of DEVRES device pointers */
111    char *changer_name;                /* Changer device name */
112    char *changer_command;             /* Changer command  -- external program */
113    pthread_mutex_t changer_mutex;     /* One changer operation at a time */
114 };
115
116 /* Device specific definitions */
117 class DEVRES {
118 public:
119    RES   hdr;
120
121    char *media_type;                  /* User assigned media type */
122    char *device_name;                 /* Archive device name */
123    char *changer_name;                /* Changer device name */
124    char *changer_command;             /* Changer command  -- external program */
125    char *alert_command;               /* Alert command -- external program */
126    char *spool_directory;             /* Spool file directory */
127    int   dev_type;                    /* device type */
128    int   label_type;                  /* label type */
129    int   autoselect;                  /* Automatically select from AutoChanger */
130    uint32_t drive_index;              /* Autochanger drive index */
131    uint32_t cap_bits;                 /* Capabilities of this device */
132    utime_t max_changer_wait;          /* Changer timeout */
133    utime_t max_rewind_wait;           /* maximum secs to wait for rewind */
134    utime_t max_open_wait;             /* maximum secs to wait for open */
135    uint32_t max_open_vols;            /* maximum simultaneous open volumes */
136    uint32_t min_block_size;           /* min block size */
137    uint32_t max_block_size;           /* max block size */
138    uint32_t max_volume_jobs;          /* max jobs to put on one volume */
139    uint32_t max_network_buffer_size;  /* max network buf size */
140    utime_t  vol_poll_interval;        /* interval between polling volume during mount */
141    int64_t max_volume_files;          /* max files to put on one volume */
142    int64_t max_volume_size;           /* max bytes to put on one volume */
143    int64_t max_file_size;             /* max file size in bytes */
144    int64_t volume_capacity;           /* advisory capacity */
145    int64_t max_spool_size;            /* Max spool size for all jobs */
146    int64_t max_job_spool_size;        /* Max spool size for any single job */
147    
148    int64_t max_part_size;             /* Max part size */
149    char *mount_point;                 /* Mount point for require mount devices */
150    char *mount_command;               /* Mount command */
151    char *unmount_command;             /* Unmount command */
152    char *write_part_command;          /* Write part command */
153    char *free_space_command;          /* Free space command */
154    
155    /* The following are set at runtime */
156    DEVICE *dev;                       /* Pointer to phyical dev -- set at runtime */
157    AUTOCHANGER *changer_res;          /* pointer to changer res if any */
158 };
159
160
161 union URES {
162    DIRRES      res_dir;
163    STORES      res_store;
164    DEVRES      res_dev;
165    MSGS        res_msgs;
166    AUTOCHANGER res_changer;
167    RES         hdr;
168 };