1
2              FOSS Licenses used in Bacula
3                Update 21 May 2017
4
5Note: This file corresponds to the Bacula Community (bacula.org) license.
6
7Trademark:
8The name Bacula is a registered trademark of Kern Sibbald.
9
10"Fair use" of the trademark is permitted following standard customs
11that any prominent use (e.g.  cover of a book) or the first use of
12the name Bacula will include a trademark symbol.  If you fork the
13Bacula project and make any significant changes to the functionality
14of Bacula, to avoid confusion between your fork and Bacula, you must
15give your fork another name.  You are not required to remove all
16references to Bacula in the source code or "fair uses" in the
17documentation.
18
19Forking Bacula:
20Bacula is Free Software/Open Source Software and as such you are
21permitted to fork it and/or use parts of it. However, if you fork
22Bacula or you use more than one or two lines of code from it, you
23must respect the copyright which requires you to maintain the headers
24containing the Copyright information intact on any files which you
25use. If you take more than a couple of lines of code, you are required
26to add the Bacula Copyright to your code (see the file: LICENSE or any
27header of a file for what is necessary).
28
29If you have previously forked Bacula, please be aware that the license
30on the current code has most likely changed since your fork, and you
31must respect the new license.
32
33If you are thinking that this requirement to maintain the license intact is
34unusual or not open source, I would like to point out that most open source
35licenses require this.  One simple example is the BSD 2-clause license,
36which is widely used, and which Bacula uses for most of the script files.
37
38===================================
39
40What follows is information from the authors of the code:
41
42License:
43To the best of our knowledge, all code used in Bacula, which is
44copyrighted by a third party, has licenses that are compatible.
45
46Intellectual Property rights:
47Recipient understands that although each Contributor to Bacula grants
48the licenses to its Contributions set forth herein, no assurances are
49provided by any Contributor that the Program does not infringe the
50patent or other intellectual property rights of any other entity.
51Each Contributor disclaims any liability to Recipient for claims
52brought by any other entity based on infringement of intellectual
53property rights or otherwise.  As a condition to exercising the rights
54and licenses granted hereunder, each Recipient hereby assumes sole
55responsibility to secure any other intellectual property rights
56needed, if any.  For example, if a third party patent license is
57required to allow Recipient to distribute the Program, it is
58Recipient's responsibility to acquire that license before distributing
59the Program.
60
61Copyrights:
62Each Contributor to Bacula represents that to its knowledge it has
63sufficient copyright rights in its Contribution, if any, to grant
64the copyright license set forth in the LICENSE file..
65
66Notices:
67The Bacula community version uses a certain number of files that have
68FOSS (Free or Open Software) licenses.  Many of these files come from and are
69identical to the Bacula community code.  Most 3rd party FOSS licenses require
70no notification so they are not included here.
71
72However, the Bacula Community binary releases consist of
73files, with few source files (mostly scripts), and some of the FOSS licenses
74such as the BSD (Berkeley Software Development) require publication of
75the copyright notices if the code is released in binary format.  For example
76certain copyright notifications are simplifed such as:
77
78# Copyright (C) 2000-2017 Kern Sibbald
79# License: BSD 2-Clause; see file LICENSE-FOSS
80
81This license corresponds to the following:
82
83=====
84Copyright (C) 2000-2017 Kern Sibbald
85License: BSD 2-Clause; see file LICENSE-FOSS
86
87Redistribution and use in source and binary forms, with or without
88modification, are permitted provided that the following conditions are met:
89
901.  Redistributions of source code must retain the above copyright notice,
91this list of conditions and the following disclaimer.
92
932.  Redistributions in binary form must reproduce the above copyright notice,
94this list of conditions and the following disclaimer in the documentation
95and/or other materials provided with the distribution.
96
97THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
98AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
99IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
100DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
101FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
102DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
103SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
104CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
105OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
106OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
107====
108
109The release of binaires mentioned above is covered in point 2 (above) of
110license.  This file contains a non-exhaustive list of such licenses.
111
112Database scripts (src/cats):
113# Copyright (C) 2000-2017 Kern Sibbald
114# License: BSD 2-Clause; see file LICENSE-FOSS
115
116Translations (po):
117# Copyright (C) 2000-2017 Kern Sibbald
118# License: BSD 2-Clause; see file LICENSE-FOSS
119
120# Copyright (C) 2010 Inteos Sp. z o.o.
121# Copyright (C) 2010-2017 Kern Sibbald <kern@sibbald.com>
122# License: BSD 2-Clause
123
124# Copyright (C) 2005-2006 Free Software Foundation Europe e.V.
125# License: BSD 2-Clause
126
127Manpages:
128This man page document is released under the BSD 2-Clause license.
129
130Update datbase (updatedb):
131# Copyright (C) 2000-2017 Kern Sibbald
132# License: BSD 2-Clause; see file LICENSE-FOSS
133
134Scripts (scripts):
135# Copyright (C) 2000-2017 Kern Sibbald
136# License: BSD 2-Clause; see file LICENSE-FOSS
137
138Platforms (platforms):
139# Copyright (C) 2000-2017 Kern Sibbald
140# License: BSD 2-Clause; see file LICENSE-FOSS
141
142Libraries (src/lib):
143fnmatch.c/h
144/*
145 * Copyright (c) 1989, 1993, 1994
146 *      The Regents of the University of California.  All rights reserved.
147 *
148 * This code is derived from software contributed to Berkeley by
149 * Guido van Rossum.
150 *
151 * Redistribution and use in source and binary forms, with or without
152 * modification, are permitted provided that the following conditions
153 * are met:
154 * 1. Redistributions of source code must retain the above copyright
155 *    notice, this list of conditions and the following disclaimer.
156 * 2. Redistributions in binary form must reproduce the above copyright
157 *    notice, this list of conditions and the following disclaimer in the
158 *    documentation and/or other materials provided with the distribution.
159 * 3. Neither the name of the University nor the names of its contributors
160 *    may be used to endorse or promote products derived from this software
161 *    without specific prior written permission.
162 *
163 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
164 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
165 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
166 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
167 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
168 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
169 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
170 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
171 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
172 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
173 * SUCH DAMAGE.
174 */
175
176sha2.c/h
177/*
178 * FIPS 180-2 SHA-224/256/384/512 implementation
179 * Last update: 02/02/2007
180 * Issue date:  04/30/2005
181 *
182 * Copyright (C) 2005, 2007 Olivier Gay <olivier.gay@a3.epfl.ch>
183 * All rights reserved.
184 *
185 * Redistribution and use in source and binary forms, with or without
186 * modification, are permitted provided that the following conditions
187 * are met:
188 * 1. Redistributions of source code must retain the above copyright
189 *    notice, this list of conditions and the following disclaimer.
190 * 2. Redistributions in binary form must reproduce the above copyright
191 *    notice, this list of conditions and the following disclaimer in the
192 *    documentation and/or other materials provided with the distribution.
193 * 3. Neither the name of the project nor the names of its contributors
194 *    may be used to endorse or promote products derived from this software
195 *    without specific prior written permission.
196 *
197 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
198 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
199 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
200 * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
201 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
202 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
203 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
204 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
205 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
206 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
207 * SUCH DAMAGE.
208 */
209
210bmtio.h
211/*-
212 * Copyright (c) 1982, 1986, 1993
213 *      The Regents of the University of California.  All rights reserved.
214 *
215 * Redistribution and use in source and binary forms, with or without
216 * modification, are permitted provided that the following conditions
217 * are met:
218 * 1. Redistributions of source code must retain the above copyright
219 *    notice, this list of conditions and the following disclaimer.
220 * 2. Redistributions in binary form must reproduce the above copyright
221 *    notice, this list of conditions and the following disclaimer in the
222 *    documentation and/or other materials provided with the distribution.
223 * 4. Neither the name of the University nor the names of its contributors
224 *    may be used to endorse or promote products derived from this software
225 *    without specific prior written permission.
226 *
227 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
228 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
229 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
230 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
231 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
232 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
233 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
234 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
235 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
236 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
237 * SUCH DAMAGE.
238 *
239 *      @(#)mtio.h      8.1 (Berkeley) 6/2/93
240 * $FreeBSD: stable/7/sys/sys/mtio.h 139825 2005-01-07 02:29:27Z imp $
241 */
242
243bregex.c/h
244 *
245 * Author: Tatu Ylonen <ylo@ngs.fi>
246 *
247 * Copyright (c) 1991 Tatu Ylonen, Espoo, Finland
248 *
249 * Permission to use, copy, modify, distribute, and sell this software
250 * and its documentation for any purpose is hereby granted without
251 * fee, provided that the above copyright notice appear in all copies.
252 * This software is provided "as is" without express or implied
253 * warranty.
254
255var.c/h
256**  OSSP var - Variable Expansion
257**  Copyright (c) 2001-2002 Ralf S. Engelschall <rse@engelschall.com>
258**  Copyright (c) 2001-2002 The OSSP Project (http://www.ossp.org/)
259**  Copyright (c) 2001-2002 Cable & Wireless Deutschland (http://www.cw.com/de/)
260**
261**  This file is part of OSSP var, a variable expansion
262**  library which can be found at http://www.ossp.org/pkg/lib/var/.
263**
264**  Permission to use, copy, modify, and distribute this software for
265**  any purpose with or without fee is hereby granted, provided that
266**  the above copyright notice and this permission notice appear in all
267**  copies.
268**
269
270lz4.c lz4_encoder.h lz4.h
271======
272/*
273   LZ4 - Fast LZ compression algorithm
274   Copyright (C) 2011-2013, Yann Collet.
275   BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
276
277   Redistribution and use in source and binary forms, with or without
278   modification, are permitted provided that the following conditions are
279   met:
280
281       * Redistributions of source code must retain the above copyright
282   notice, this list of conditions and the following disclaimer.
283       * Redistributions in binary form must reproduce the above
284   copyright notice, this list of conditions and the following disclaimer
285   in the documentation and/or other materials provided with the
286   distribution.
287
288   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
289   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
290   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
291   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
292   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
293   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
294   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
295   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
296   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
297   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
298   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
299
300   You can contact the author at :
301   - LZ4 homepage : http://fastcompression.blogspot.com/p/lz4.html
302   - LZ4 source repository : https://github.com/lz4/lz4
303*/
304===
305
306crc32.c
307=====
308/*
309   Bacula® - The Network Backup Solution
310
311   Copyright (c) 2010-2015, Joakim Tjernlund
312   All rights reserved.
313
314   Redistribution and use in source and binary forms, with or without
315   modification, are permitted provided that the following conditions are
316   met:
317
318   1.  Redistributions of source code must retain the above copyright
319   notice, this list of conditions and the following disclaimer.
320
321   2.  Redistributions in binary form must reproduce the above copyright
322   notice, this list of conditions and the following disclaimer in the
323   documentation and/or other materials provided with the distribution.
324
325   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
326   IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
327   TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
328   PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
329   HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
330   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
331   TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
332   PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
333   LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
334   NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
335   SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
336
337*/
338====
339