a7dd0e2417e0dd4cbc07b7e9741d4fcb0f5c7e18
[BackupPC.git] / doc-src / BackupPC.pod
1 =head1 BackupPC Introduction
2
3 This documentation describes BackupPC version __VERSION__,
4 released on __RELEASEDATE__.
5
6 =head2 Overview
7
8 BackupPC is a high-performance, enterprise-grade system for backing up
9 Linux and WinXX PCs, desktops and laptops to a server's disk.  BackupPC
10 is highly configurable and easy to install and maintain.
11
12 Given the ever decreasing cost of disks and raid systems, it is now
13 practical and cost effective to backup a large number of machines onto a
14 server's local disk or network storage.  For some sites this might be
15 the complete backup solution.  For other sites additional permanent
16 archives could be created by periodically backing up the server to tape.
17
18 Features include:
19
20 =over 4
21
22 =item *
23
24 A clever pooling scheme minimizes disk storage and disk I/O.
25 Identical files across multiple backups of the same or different PC
26 are stored only once (using hard links), resulting in substantial
27 savings in disk storage and disk writes.
28
29 =item *
30
31 Optional compression provides additional reductions in storage
32 (around 40%).  The CPU impact of compression is low since only
33 new files (those not already in the pool) need to be compressed.
34
35 =item *
36
37 A powerful http/cgi user interface allows administrators to view log
38 files, configuration, current status and allows users to initiate and
39 cancel backups and browse and restore files from backups.
40
41 =item *
42
43 No client-side software is needed. On WinXX the standard smb
44 protocol is used to extract backup data. On linux or unix clients,
45 rsync or tar (over ssh/rsh/nfs) is used to extract backup data.
46 Alternatively, rsync can also be used on WinXX (using cygwin),
47 and Samba could be installed on the linux or unix client to
48 provide smb shares).
49
50 =item *
51
52 Flexible restore options.  Single files can be downloaded from
53 any backup directly from the CGI interface.  Zip or Tar archives
54 for selected files or directories from any backup can also be
55 downloaded from the CGI interface.  Finally, direct restore to
56 the client machine (using smb or tar) for selected files or
57 directories is also supported from the CGI interface.
58
59 =item *
60
61 BackupPC supports mobile environments where laptops are only
62 intermittently connected to the network and have dynamic IP addresses
63 (DHCP).  Configuration settings allow machines connected via slower WAN
64 connections (eg: dial up, DSL, cable) to not be backed up, even if they
65 use the same fixed or dynamic IP address as when they are connected
66 directly to the LAN.
67
68 =item *
69
70 Flexible configuration parameters allow multiple backups to be performed
71 in parallel, specification of which shares to backup, which directories
72 to backup or not backup, various schedules for full and incremental
73 backups, schedules for email reminders to users and so on.  Configuration
74 parameters can be set system-wide or also on a per-PC basis.
75
76 =item *
77
78 Users are sent periodic email reminders if their PC has not
79 recently been backed up.  Email content, timing and policies
80 are configurable.
81
82 =item *
83
84 BackupPC is Open Source software hosted by SourceForge.
85
86 =back
87
88 =head2 Backup basics
89
90 =over 4
91
92 =item Full Backup
93
94 A full backup is a complete backup of a share. BackupPC can be configured to
95 do a full backup at a regular interval (often weekly). BackupPC can also
96 be configured to keep a certain number of full backups, and to keep
97 a smaller number of very old full backups.
98
99 =item Incremental Backup
100
101 An incremental backup is a backup of files that have changed (based on their
102 modification time) since the last successful full backup.  For SMB and
103 tar, BackupPC backups all files that have changed since one hour prior to the
104 start of the last successful full backup.  Rsync is more clever: any files
105 who attributes have changed (ie: uid, gid, mtime, modes, size) since the
106 last full are backed up.  Deleted and new files are also detected by
107 Rsync incrementals (SMB and tar are not able to detect deleted files or
108 new files whose modification time is prior to the last full dump.
109
110 BackupPC can also be configured to keep a certain number of incremental
111 backups, and to keep a smaller number of very old incremental backups.
112 (BackupPC does not support multi-level incremental backups, although it
113 would be easy to do so.)
114
115 BackupPC's CGI interface "fills-in" incremental backups based on the 
116 last full backup, giving every backup a "full" appearance.  This makes
117 browsing and restoring backups easier.
118
119 =item Identical Files
120
121 BackupPC pools identical files using hardlinks.  By "identical
122 files" we mean files with identical contents, not necessary the
123 same permissions, ownership or modification time.  Two files might
124 have different permissions, ownership, or modification time but
125 will still be pooled whenever the contents are identical.  This
126 is possible since BackupPC stores the file meta-data (permissions,
127 ownership, and modification time) separately from the file contents.
128
129 =item Backup Policy
130
131 Based on your site's requirements you need to decide what your backup
132 policy is.  BackupPC is not designed to provide exact re-imaging of
133 failed disks.  See L<Limitations|limitations> for more information.
134 However, the addition of tar transport for linux/unix clients, plus
135 full support for special file types and unix attributes in v1.4.0
136 likely means an exact image of a linux/unix file system can be made.
137
138 BackupPC saves backups onto disk. Because of pooling you can relatively
139 economically keep several weeks of old backups. But BackupPC does not
140 provide permanent storage to tape. Other Open Source applications can do
141 this by backing up BackupPC's pool directories to tape.
142
143 At some sites the disk-based backup will be adequate, without a
144 secondary tape backup. This system is robust to any single failure: if a
145 client disk fails or loses files, the BackupPC server can be used to
146 restore files. If the server disk fails, BackupPC can be restarted on a
147 fresh file system, and create new backups from the clients. The chance
148 of the server disk failing can be made very small by spending more money
149 on increasingly better RAID systems.
150
151 At other sites a secondary tape backup will be required. This tape
152 backup can be done perhaps weekly from the BackupPC pool file system.
153
154 One comment: in the US in particular, permanent backups of things like
155 email are becoming strongly discouraged by lawyers because of discovery
156 prior to possible litigation.  Using BackupPC without tape backup allows
157 recent file changes or losses to be restored, but without keeping a
158 history more than a month or two old (although this doesn't avoid the
159 problem of old emails languishing in user's email folders forever).
160
161 =back
162
163 =head2 Resources
164
165 =over 4
166
167 =item BackupPC home page
168
169 The BackupPC Open Source project is hosted on SourceForge.  The
170 home page can be found at:
171
172     http://backuppc.sourceforge.net
173
174 This page has links to the current documentation, the SourceForge
175 project page and general information.
176
177 =item SourceForge project
178
179 The SourceForge project page is at:
180
181     http://sourceforge.net/projects/backuppc
182
183 This page has links to the current releases of BackupPC.
184
185 =item Mail lists
186
187 Two BackupPC mailing lists exist for announcements (backuppc-announce)
188 and reporting information, asking questions, discussing development or
189 any other topic relevant to BackupPC (backuppc-users).
190
191 You are encouraged to subscribe to either the backuppc-announce
192 or backuppc-users mail list on sourceforge.net at either:
193
194     http://lists.sourceforge.net/lists/listinfo/backuppc-announce
195     http://lists.sourceforge.net/lists/listinfo/backuppc-users
196
197 The backuppc-announce list is moderated and is used only for
198 important announcements (eg: new versions).  It is low traffic.
199 You only need to subscribe to one list: backuppc-users also
200 receives any messages on backuppc-announce.
201
202 To post a message to the backuppc-users list, send an email to
203
204     backuppc-users@lists.sourceforge.net
205
206 Do not send subscription requests to this address!
207
208 =item Other Programs of Interest
209
210 If you want to mirror linux or unix files or directories to a remote server
211 you should consider rsync, L<http://rsync.samba.org>.  BackupPC uses
212 rsync as a transport mechanism; if you are already an rsync user you
213 can think of BackupPC as adding efficient storage (compression and
214 pooling) and a convenient user interface to rsync.
215
216 Unison is a utility that can do two-way, interactive, synchronization.
217 See L<http://www.cis.upenn.edu/~bcpierce/unison>.
218
219 Two popular open source packages that do tape backup are
220 Amanda (L<http://www.amanda.org>) and
221 afbackup (L<http://sourceforge.net/projects/afbackup>).
222 Amanda can also backup WinXX machines to tape using samba.
223 These packages can be used as back ends to BackupPC to backup the
224 BackupPC server data to tape.
225
226 =back
227
228 =head2 Road map
229
230 Here are some ideas for new features that might appear in future
231 releases of BackupPC:
232
233 =over 4
234
235 =item *
236
237 Adding support for rsync as a transport method, in addition to
238 smb and tar.  This will give big savings in network traffic for
239 linux/unix clients.  I haven't decided whether to save the pool file
240 rsync checksums (that would double the number of files in the pool, but
241 eliminate most server disk reads), or recompute them every time.  I expect
242 to use native rsync on the client side.  On the server, rsync would
243 need to understand the compressed file format, the file name mangling
244 and the attribute files, so I will either have to add features to rsync
245 or emulate rsync on the server side in perl.
246
247 =item *
248
249 Adding a trip wire feature for notification when files below certain
250 directories change.  For example, if you are backing up a DMZ machine,
251 you could request that you get sent email if any files below /bin,
252 /sbin or /usr change.
253
254 =item *
255
256 Resuming incomplete completed full backups.  Useful if a machine
257 (eg: laptop) is disconnected from the network during a backup,
258 or if the user manually stops a backup.  This would work by
259 excluding directories that were already complete.
260
261 =item *
262
263 More speculative: Storing binary file deltas (in fact, reverse deltas)
264 for files that have the same name as a previous backup, but that aren't
265 already in the pool. This will save storage for things like mailbox
266 files or documents that change slightly between backups.  Running some
267 benchmarks on a large pool suggests that the potential savings are
268 around 15-20%, which isn't spectacular, and likely not worth the
269 implementation effort. The program xdelta (v1) on SourceForge (see
270 L<http://sourceforge.net/projects/xdelta>) uses an rsync algorithm for
271 doing efficient binary file deltas.
272
273 =back
274
275 Comments and suggestions are welcome.
276
277 =head2 You can help
278
279 BackupPC is free. I work on BackupPC because I enjoy doing it and I like
280 to contribute to the open source community.
281
282 BackupPC already has more than enough features for my own needs.  The
283 main compensation for continuing to work on BackupPC is knowing that
284 more and more people find it useful.  So feedback is certainly
285 appreciated.  Even negative feedback is helpful, for example "We
286 evaluated BackupPC but didn't use it because it doesn't ...".
287
288 Beyond being a satisfied user and telling other people about it, everyone
289 is encouraged to add links to L<http://backuppc.sourceforge.net> (I'll
290 see then via Google) or otherwise publicize BackupPC.  Unlike the
291 commercial products in this space, I have a zero budget (in both
292 time and money) for marketing, PR and advertising, so it's up to
293 all of you!
294
295 Also, everyone is encouraged to contribute patches, bug reports, feature
296 and design suggestions, code, and documentation corrections or
297 improvements.
298
299 =head1 Installing BackupPC
300
301 =head2 Requirements
302
303 BackupPC requires:
304
305 =over 4
306
307 =item *
308
309 A linux, solaris, or unix based server with a substantial amount of free
310 disk space (see the next section for what that means). The CPU and disk
311 performance on this server will determine how many simultaneous backups
312 you can run. You should be able to run 4-8 simultaneous backups on a
313 moderately configured server.
314
315 When BackupPC starts with an empty pool, all the backup data will be
316 written to the pool on disk. After more backups are done, a higher
317 percentage of incoming files will already be in the pool. BackupPC is
318 able to avoid writing to disk new files that are already in the pool.
319 So over time disk writes will reduce significantly (by perhaps a factor
320 of 20 or more), since eventually 95% or more of incoming backup files
321 are typically in the pool. Disk reads from the pool are still needed to
322 do file compares to verify files are an exact match. So, with a mature
323 pool, if a relatively fast client generates data at say 1MB/sec, and you
324 run 4 simultaneous backups, there will be an average server disk load of
325 about 4MB/sec reads and 0.2MB/sec writes (assuming 95% of the incoming
326 files are in the pool). These rates will be perhaps 40% lower if
327 compression is on.
328
329 =item *
330
331 Perl version 5.6.0 or later. BackupPC has been tested with
332 version 5.6.0 and 5.6.1. If you don't have perl, please see
333 L<http://www.cpan.org>.
334
335 =item *
336
337 Perl modules Compress::Zlib, Archive::Zip and Rsync.  Try "perldoc
338 Compress::Zlib" and "perldoc Archive::Zip" to see if you have these
339 modules.  If not, fetch them from L<http://www.cpan.org> and see the
340 instructions below for how to build and install them.
341
342 The Rsync module is available from L<http://backuppc.sourceforge.net>.
343 You'll need to install the Rsync module if you want to use Rsync as
344 a transport method.
345
346 =item *
347
348 If you are using smb to backup WinXX machines you need smbclient and
349 nmblookup from the samba package.  You will also need nmblookup if
350 you are backing up linux/unix DHCP machines.  See L<http://www.samba.org>.
351 Version >= 2.2.0 of Samba is required (smbclient's tar feature in
352 2.0.8 and prior has bugs for file path lengths around 100 characters
353 and generates bad output when file lengths change during the backup).
354
355 See L<http://www.samba.org> for source and binaries.  It's pretty easy to
356 fetch and compile samba, and just grab smbclient and nmblookup, without
357 doing the installation. Alternatively, L<http://www.samba.org> has binary
358 distributions for most platforms.
359
360 =item *
361
362 If you are using tar to backup linux/unix machines you should have version
363 1.13.7 at a minimum, with version 1.13.20 or higher recommended.  Use
364 "tar --version" to check your version.  Various GNU mirrors have the newest
365 versions of tar, see for example L<http://www.funet.fi/pub/gnu/alpha/gnu/tar>.
366 As of July 2002 the latest versons is 1.13.25.
367
368 =item *
369
370 If you are using rsync to backup linux/unix machines you should have
371 version 2.5.5 on each client machine.  See L<http://rsync.samba.org>.
372 Use "rsync --version" to check your version.
373
374 For BackupPC to use Rsync you will also need to install the perl Rsync
375 module, which is available from L<http://backuppc.sourceforge.net>.
376
377 =item *
378
379 The Apache web server, see L<http://www.apache.org>, preferably built
380 with mod_perl support.
381
382 =back
383
384 =head2 How much disk space do I need?
385
386 Here's one real example for an environment that is backing up 65 laptops
387 with compression off. Each full backup averages 3.2GB. Each incremental
388 backup averages about 0.2GB. Storing one full backup and two incremental
389 backups per laptop is around 240GB of raw data. But because of the
390 pooling of identical files, only 87GB is used.  This is without
391 compression.
392
393 Another example, with compression on: backing up 95 laptops, where
394 each backup averages 3.6GB and each incremental averages about 0.3GB.
395 Keeping three weekly full backups, and six incrementals is around
396 1200GB of raw data.  Because of pooling and compression, only 150GB
397 is needed.
398
399 Here's a rule of thumb. Add up the C drive usage of all the machines you
400 want to backup (210GB in the first example above). This is a rough
401 minimum space estimate that should allow a couple of full backups and at
402 least half a dozen incremental backups per machine. If compression is on
403 you can reduce the storage requirements by maybe 30-40%.  Add some margin
404 in case you add more machines or decide to keep more old backups.
405
406 Your actual mileage will depend upon the types of clients, operating
407 systems and applications you have. The more uniform the clients and
408 applications the bigger the benefit from pooling common files.
409
410 For example, the Eudora email tool stores each mail folder in a separate
411 file, and attachments are extracted as separate files. So in the sadly
412 common case of a large attachment emailed to many recipients, Eudora
413 will extract the attachment into a new file. When these machines are
414 backed up, only one copy of the file will be stored on the server, even
415 though the file appears in many different full or incremental backups. In
416 this sense Eudora is a "friendly" application from the point of view of
417 backup storage requirements.
418
419 An example at the other end of the spectrum is Outlook. Everything
420 (email bodies, attachments, calendar, contact lists) is stored in a
421 single file, which often becomes huge. Any change to this file requires
422 a separate copy of the file to be saved during backup. Outlook is even
423 more troublesome, since it keeps this file locked all the time, so it
424 cannot be read by smbclient whenever Outlook is running.  See the
425 L<Limitations|limitations> section for more discussion of this problem.
426
427 =head2 Step 1: Getting BackupPC
428
429 Download the latest version from L<http://backuppc.sourceforge.net>.
430
431 =head2 Step 2: Installing the distribution
432
433 First off, to enable compression, you will need to install Compress::Zlib
434 from L<http://www.cpan.org>.  It is optional, but strongly recommended.
435 To support restore via Zip archives you will need to install
436 Archive::Zip, also from L<http://www.cpan.org>.  You can run
437 "perldoc Compress::Zlib" to see if this module is installed.
438 Finally, you will need the Rsync module.  To build and install these
439 packages you should run these commands:
440
441     tar zxvf Archive-Zip-1.01.tar.gz
442     cd Archive-Zip-1.01
443     perl Makefile.PL
444     make
445     make test
446     make install
447
448 Now let's move onto BackupPC itself.  After fetching
449 BackupPC-__VERSION__.tar.gz, run these commands as root:
450
451     tar zxf BackupPC-__VERSION__.tar.gz
452     cd BackupPC-__VERSION__
453     perl configure.pl
454
455 You will be prompted for the full paths of various executables, and
456 you will be prompted for the following information:
457
458 =over 4
459
460 =item BackupPC User
461
462 It is best if BackupPC runs as a special user, eg backuppc, that has
463 limited privileges. It is preferred that backuppc belongs to a system
464 administrator group so that sys admin members can browse backuppc files,
465 edit the configuration files and so on. Although configurable, the
466 default settings leave group read permission on pool files, so make
467 sure the BackupPC user's group is chosen restrictively.
468
469 On this installation, this is __BACKUPPCUSER__.
470
471 =item Data Directory
472
473 You need to decide where to put the data directory, below which
474 all the BackupPC data is stored.  This needs to be a big file system.
475
476 On this installation, this is __TOPDIR__.
477
478 =item Install Directory
479
480 You should decide where the BackupPC scripts, libraries and documentation
481 should be installed, eg: /opt/local/BackupPC.
482
483 On this installation, this is __INSTALLDIR__.
484
485 =item CGI bin Directory
486
487 You should decide where the BackupPC CGI script resides.  This will
488 usually below Apache's cgi-bin directory.
489
490 On this installation, this is __CGIDIR__.
491
492 =item Apache image directory
493
494 A directory where BackupPC's images are stored so that Apache can
495 serve them.  This should be somewhere under Apache's DocumentRoot
496 directory.
497
498 =back
499
500 =head2 Step 3: Setting up config.pl
501
502 After running configure.pl, browse through the config file,
503 __INSTALLDIR__/conf/config.pl, and make sure all the default settings
504 are correct. In particular, you will need to decide whether to use
505 smb or tar transport (or whether to set it on a per-PC basis),
506 set the smb share password (if using smb), set the backup policies
507 and modify the email message headers and bodies.
508
509 BackupPC needs to know the smb share user name and password for each PC
510 that uses smb (ie: all the WinXX clients).  The user name is specified
511 in $Conf{SmbShareUserName}. There are four ways to tell BackupPC the smb
512 share password:
513
514 =over 4
515
516 =item *
517
518 As an environment variable BPC_SMB_PASSWD set before BackupPC starts.
519 If you start BackupPC manually the BPC_SMB_PASSWD variable must be set
520 manually first.  For backward compatability for v1.5.0 and prior, the
521 environment variable PASSWD can be used if BPC_SMB_PASSWD is not set.
522 Warning: on some systems it is possible to see environment variables of
523 running processes.
524
525 =item *
526
527 Alternatively the BPC_SMB_PASSWD setting can be included in
528 /etc/init.d/backuppc, in which case you must make sure this file
529 is not world (other) readable.
530
531 =item *
532
533 As a configuration variable $Conf{SmbSharePasswd} in
534 __TOPDIR__/conf/config.pl.  If you put the password
535 here you must make sure this file is not world (other) readable.
536
537 =item *
538
539 As a configuration variable $Conf{SmbSharePasswd} in the per-PC
540 configuration file, __TOPDIR__/pc/$host/config.pl. You will have to
541 use this option if the smb share password is different for each host.
542 If you put the password here you must make sure this file is not
543 world (other) readable.
544
545 =back
546
547 Placement and protection of the smb share password is a possible
548 security risk, so please double-check the file and directory
549 permissions.  In a future version there might be support for
550 encryption of this password, but a private key will still have to
551 be stored in a protected place.  Suggestions are welcome.
552
553 =head2 Step 4: Setting up the hosts file
554
555 The file __TOPDIR__/conf/hosts contains the list of clients to backup.
556 BackupPC reads this file in three cases:
557
558 =over 4
559
560 =item *
561
562 Upon startup.
563
564 =item *
565
566 When BackupPC is sent a HUP (-1) signal.  Assuming you installed the
567 init.d script, you can also do this with "/etc/init.d/backuppc reload".
568
569 =item *
570
571 When the modification time of the hosts file changes.  BackupPC
572 checks the modification time once during each regular wakeup.
573
574 =back
575
576 Whenever you change the hosts file (to add or remove a host) you can
577 either do a kill -HUP BackupPC_pid or simply wait until the next regular
578 wakeup period.
579
580 Each line in the hosts file contains three fields, separated
581 by white space:
582
583 =over 4
584
585 =item Host name
586
587 If this host is a static IP address this must the machine's IP host name
588 (ie: something that can be looked up using nslookup or DNS). If this is
589 a host with a dynamic IP address (ie: DHCP flag is 1) then the host
590 name must be the netbios name of the machine.  The host name should
591 be in lower case.
592
593 =item DHCP flag
594
595 Set to 0 if this host has a static IP address (meaning it can be looked
596 up by name in the DNS).  If the host's IP address is dynamic (eg, it is
597 assigned by DHCP) then set this flag to 1.
598
599 The hosts with dhcp = 1 are backed up as follows.  If you have
600 configured a DHCP address pool ($Conf{DHCPAddressRanges}) then
601 BackupPC will check the NetBIOS name of each machine in the
602 range.  Any hosts that have a valid NetBIOS name (ie: matching
603 an entry in the hosts file) will be backed up.
604
605 =item User name
606
607 This should be the unix login/email name of the user who "owns" or uses
608 this machine. This is the user who will be sent email about this
609 machine, and this user will have permission to stop/start/browse/restore
610 backups for this host.  Leave this blank if no specific person should
611 receive email or be allowed to stop/start/browse/restore backups
612 for this host.  Administrators will still have full permissions.
613
614 =back
615
616 The first non-comment line of the hosts file is special: it contains
617 the names of the columns and should not be edited.
618
619 Here's a simple example of a hosts file:
620
621     host        dhcp    user
622     farside     0       craig
623     larson      1       gary
624
625 The range of DHCP addresses to search is specified in
626 $Conf{DHCPAddressRanges}.
627
628 =head2 Step 5: Client Setup
629
630 Two methods for getting backup data from a client are
631 supported: smb and tar. Smb is the preferred method for WinXX clients
632 and tar is preferred method for linux/unix clients.
633
634 The transfer method is set using the $Conf{XferMethod} configuration
635 setting. If you have a mixed environment (ie: you will use smb for some
636 clients and tar for others), you will need to pick the most common
637 choice for $Conf{XferMethod} for the main config.pl file, and then
638 override it in the per-PC config file for those hosts that will use
639 the other method.  (Or you could run two completely separate instances
640 of BackupPC, with different data directories, one for WinXX and the
641 other for linux/unix, but then common files between the different
642 machine types will duplicated.)
643
644 Here are some brief client setup notes:
645
646 =over 4
647
648 =item WinXX
649
650 The preferred setup for WinXX clients is to set $Conf{XferMethod} to "smb".
651
652 You need to create shares for the data you want to backup.
653 Open "My Computer", right click on the drive (eg: C), and
654 select "Sharing..." (or select "Properties" and select the
655 "Sharing" tab).  In this dialog box you can enable sharing,
656 select the share name and permissions.
657
658 If this machine uses DHCP you will also need to make sure the
659 NetBios name is set.  Go to Control Panel|System|Network Identification
660 (on Win2K) or Control Panel|System|Computer Name (on WinXP).
661 Also, you should go to Control Panel|Network Connections|Local Area
662 Connection|Properties|Internet Protocol (TCP/IP)|Properties|Advanced|WINS
663 and verify that NetBios is not disabled.
664
665 As an alternative to setting $Conf{XferMethod} to "smb" (using
666 smbclient) for WinXX clients, you can use an smb network filesystem (eg:
667 ksmbfs or similar) on your linux/unix server to mount the share,
668 and then set $Conf{XferMethod} to "tar" (use tar on the network
669 mounted file system).
670
671 Also, to make sure that file names with 8-bit characters are correctly
672 transferred by smbclient you should add this to samba's smb.conf file:
673
674     [global]
675         # Accept the windows charset
676         client code page = 850
677         character set = ISO8859-1
678
679 This setting should work for western europe.  
680 See L<http://www.oreilly.com/catalog/samba/chapter/book/ch08_03.html>
681 for more information about settings for other languages.
682
683 =item Linux/Unix
684
685 The preferred setup for linux/unix clients is to set $Conf{XferMethod}
686 to "tar".
687
688 You can use either smb or tar for linux/unix machines. Smb requires that
689 the Samba server (smbd) be run to provide the shares. Since the smb
690 protocol can't represent special files like symbolic links and fifos,
691 tar is the recommended transport method for linux/unix machines.
692 (In fact, by default samba makes symbolic links look like the file or
693 directory that they point to, so you could get an infinite loop if a
694 symbolic link points to the current or parent directory. If you really
695 need to use Samba shares for linux/unix backups you should turn off the
696 "follow symlinks" samba config setting. See the smb.conf manual page.)
697
698 The rest of this section describes the tar setup.
699
700 You must have GNU tar on the client machine.  Use "tar --version"
701 or "gtar --version" to verify.  The version should be at least
702 1.13.7, and 1.13.20 or greater is recommended.
703
704 For linux/unix machines you should no backup "/proc".  This directory
705 contains a variety of files that look like regular files but they are
706 special files that don't need to be backed up (eg: /proc/kcore is a
707 regular file that contains physical memory).  See $Conf{BackupFilesExclude}.
708 It is safe to back up /dev since it contains mostly character-special
709 and block-special files, which are correctly handed by BackupPC
710 (eg: backing up /dev/hda5 just saves the block-special file information,
711 not the contents of the disk).
712
713 Next you should decide whether to run tar over ssh, rsh or nfs. Ssh is
714 the preferred method. Rsh is not secure and therefore not recommended.
715 Nfs will work, but you need to make sure that the BackupPC user (running
716 on the server) has sufficient permissions to read all the files below
717 the nfs mount.
718
719 Ssh allows BackupPC to run as a privileged user on the client (eg:
720 root), since it needs sufficient permissions to read all the backup
721 files. Ssh is setup so that BackupPC on the server (an otherwise low
722 privileged user) can ssh as root on the client, without being prompted
723 for a password. There are two common versions of ssh: v1 and v2. Here
724 are some instructions for one way to setup ssh v2:
725
726 =over 4
727
728 =item Key generation
729
730 As root on the client machine, use ssh2-keygen to generate a
731 public/private key pair, without a pass-phrase:
732
733     ssh-keygen2 -t rsa -P
734
735 This will save the public key in /.ssh2/id_rsa_1024_a.pub and the private
736 key in /.ssh2/id_rsa_1024_a.
737
738 =item Identification
739
740 Create the identification file /.ssh2/identification:
741
742     echo "IdKey id_rsa_1024_a" > /.ssh2/identification
743
744 =item BackupPC setup
745
746 Repeat the above steps for the BackupPC user (__BACKUPPCUSER__) on the server.
747 Rename the key files to recognizable names, eg:
748
749     ssh-keygen2 -t rsa -P
750     mv ~/.ssh2/id_rsa_1024_a.pub ~/.ssh2/BackupPC_id_rsa_1024_a.pub
751     mv ~/.ssh2/id_rsa_1024_a     ~/.ssh2/BackupPC_id_rsa_1024_a
752     echo "IdKey BackupPC_id_rsa_1024_a" > ~/.ssh2/identification
753
754 Based on your ssh2 configuration, you might also need to turn off
755 StrictHostKeyChecking and PasswordAuthentication:
756
757     touch ~/.ssh2/ssh2_config
758     echo "StrictHostKeyChecking ask" >> ~/.ssh2/ssh2_config
759     echo "PasswordAuthentication no" >> ~/.ssh2/ssh2_config
760
761 =item Key exchange
762
763 To allow BackupPC to ssh to the client as root, you need to place
764 BackupPC's public key into root's authorized list on the client.
765 Copy BackupPC's public key (BackupPC_id_rsa_1024_a.pub) to the
766 /.ssh2 directory on the client.  Add the following line to the
767 /.ssh2/authorization file on the client (as root):
768
769     touch /.ssh2/authorization
770     echo "Key BackupPC_id_rsa_1024_a.pub" >> /.ssh2/authorization
771
772 =item Fix permissions
773
774 You will probably need to make sure that all the files
775 in /.ssh2 have no group or other read/write permission:
776
777     chmod -R go-rwx /.ssh2
778
779 You should do the same thing for the BackupPC user on the server.
780
781 =item Testing
782
783 As the BackupPC user on the server, verify that this command:
784
785     ssh2 -l root clientHostName whoami
786
787 prints
788
789     root
790
791 You might be prompted the first time to accept the client's host key and
792 you might be prompted for root's password on the client.  Make sure that
793 this command runs cleanly with no prompts after the first time.  You
794 might need to check /etc/hosts.equiv on the client.  Look at the
795 man pages for more information.  The "-v" option to ssh2 is a good way
796 to get detailed information about what fails.
797
798 =item ssh version 1 instructions
799
800 The concept is identical and the steps are similar, but the specific
801 commands and file names are slightly different.
802
803 First, run ssh-keygen on the client (as root) and server (as the BackupPC
804 user) and simply hit enter when prompted for the pass-phrase:
805
806     ssh-keygen
807
808 This will save the public key in /.ssh/identity.pub and the private
809 key in /.ssh/identity.
810
811 Next, append BackupPC's ~/.ssh/identity.pub (from the server) to root's
812 /.ssh/authorized_keys file on the client.  It's a single long line that
813 you can cut-and-paste with an editor (make sure it remains a single line).
814
815 Next, force protocol version 1 by adding:
816
817     Protocol 1
818
819 to BackupPC's ~/.ssh/config on the server.
820
821 Next, run "chmod -R go-rwx ~/.ssh" on the server and "chmod -R go-rwx /.ssh"
822 on the client.
823
824 Finally, test using:
825
826     ssh -l root clientHostName whoami
827
828 =back
829
830 Finally, if this machine uses DHCP you will need to run nmbd (the
831 NetBios name server) from the Samba distribution so that the machine
832 responds to a NetBios name request. See the manual page and Samba
833 documentation for more information.
834
835 =back
836
837 =head2 Step 6: Running BackupPC
838
839 The installation contains an init.d backuppc script that can be copied
840 to /etc/init.d so that BackupPC can auto-start on boot.
841 See init.d/README for further instructions.
842
843 BackupPC should be ready to start.  If you installed the init.d script,
844 then you should be able to run BackupPC with:
845
846     /etc/init.d/backuppc start
847
848 (This script can also be invoked with "stop" to stop BackupPC and "reload"
849 to tell BackupPC to reload config.pl and the hosts file.)
850
851 Otherwise, just run
852
853      __INSTALLDIR__/bin/BackupPC -d
854
855 as user __BACKUPPCUSER__.  The -d option tells BackupPC to run as a daemon
856 (ie: it does an additional fork).
857
858 Any immediate errors will be printed to stderr and BackupPC will quit.
859 Otherwise, look in __TOPDIR__/log/LOG and verify that BackupPC reports
860 it has started and all is ok.
861
862 =head2 Step 7: Talking to BackupPC
863
864 Note: as of version 1.5.0, BackupPC no longer supports telnet
865 to its TCP port.  First off, a unix domain socket is used
866 instead of a TCP port.  (The TCP port can still be re-enabled
867 if your installation has apache and BackupPC running on different
868 machines.)  Secondly, even if you still use the TCP port, the
869 messages exchanged over this interface are now protected by
870 an MD5 digest based on a shared secret (see $Conf{ServerMesgSecret})
871 as well as sequence numbers and per-session unique keys, preventing
872 forgery and replay attacks.
873
874 You should verify that BackupPC is running by using BackupPC_serverMesg.
875 This sends a message to BackupPC via the unix (or TCP) socket and prints
876 the response.
877
878 You can request status information and start and stop backups using this
879 interface. This socket interface is mainly provided for the CGI interface
880 (and some of the BackupPC sub-programs use it too).  But right now we just
881 want to make sure BackupPC is happy.  Each of these commands should
882 produce some status output:
883
884     __INSTALLDIR__/bin/BackupPC_serverMesg status info
885     __INSTALLDIR__/bin/BackupPC_serverMesg status jobs
886     __INSTALLDIR__/bin/BackupPC_serverMesg status hosts
887
888 The output should be some hashes printed with Data::Dumper.  If it
889 looks cryptic and confusing, and doesn't look like an error message,
890 then all is ok.
891
892 The jobs status should initially show just BackupPC_trashClean.
893 The hosts status should produce a list of every host you have listed
894 in __TOPDIR__/conf/hosts as part of a big cryptic output line.
895
896 You can also request that all hosts be queued:
897
898     __INSTALLDIR__/bin/BackupPC_serverMesg backup all
899
900 At this point you should make sure the CGI interface works since
901 it will be much easier to see what is going on.  That's our
902 next subject.
903
904 =head2 Step 8: CGI interface
905
906 The CGI interface script, BackupPC_Admin, is a powerful and flexible
907 way to see and control what BackupPC is doing.  It is written for an
908 Apache server.  If you don't have Apache, see L<http://www.apache.org>.
909
910 There are two options for setting up the CGI interface: standard
911 mode and using mod_perl.  Mod_perl provides much higher performance
912 (around 15x) and is the best choice if your Apache was built with
913 mod_perl support.  To see if your apache was built with mod_perl
914 run this command:
915
916     httpd -l | egrep mod_perl
917
918 If this prints mod_perl.c then your Apache supports mod_perl.
919
920 Using mod_perl with BackupPC_Admin requires a dedicated Apache
921 to be run as the BackupPC user (__BACKUPPCUSER__).  This is
922 because BackupPC_Admin needs permission to access various files
923 in BackupPC's data directories.  In contrast, the standard
924 installation (without mod_perl) solves this problem by having
925 BackupPC_Admin installed as setuid to the BackupPC user, so that
926 BackupPC_Admin runs as the BackuPC user.
927
928 Here are some specifics for each setup:
929
930 =over 4
931
932 =item Standard Setup
933
934 The CGI interface should have been installed by the configure.pl script
935 in __CGIDIR__/BackupPC_Admin.  BackupPC_Admin should have been installed
936 as setuid to the BackupPC user (__BACKUPPCUSER__), in addition to user
937 and group execute permission.
938
939 You should be very careful about permissions on BackupPC_Admin and
940 the directory __CGIDIR__: it is important that normal users cannot
941 directly execute or change BackupPC_Admin, otherwise they can access
942 backup files for any PC. You might need to change the group ownership
943 of BackupPC_Admin to a group that Apache belongs to so that Apache
944 can execute it (don't add "other" execute permission!).
945 The permissions should look like this:
946
947     ls -l __CGIDIR__/BackupPC_Admin
948     -swxr-x---    1 __BACKUPPCUSER__   web      82406 Jun 17 22:58 __CGIDIR__/BackupPC_Admin
949
950 The setuid script won't work unless perl on your machine was installed
951 with setuid emulation.  This is likely the problem if you get an error
952 saying such as "Wrong user: my userid is 25, instead of 150", meaning
953 the script is running as the httpd user, not the BackupPC user.
954 This is because setuid scripts are disabled by the kernel in most
955 flavors of unix and linux.
956
957 To see if your perl has setuid emulation, see if there is a program
958 called sperl5.6.0 or sperl5.6.1 in the place where perl is installed.
959 If you can't find this program, then you have two options: rebuild
960 and reinstall perl with the setuid emulation turned on (answer "y" to
961 the question "Do you want to do setuid/setgid emulation?" when you
962 run perl's configure script), or switch to the mod_perl alternative
963 for the CGI script (which doesn't need setuid to work).
964
965 =item Mod_perl Setup
966
967 The advantage of the mod_perl setup is that no setuid script is needed,
968 and there is a huge performance advantage.  Not only does all the perl
969 code need to be parsed just once, the config.pl and hosts files, plus
970 the connection to the BackupPC server are cached between requests.  The
971 typical speedup is around 15 times.
972
973 To use mod_perl you need to run Apache as user __BACKUPPCUSER__.
974 If you need to run multiple Apache's for different services then
975 you need to create multiple top-level Apache directories, each
976 with their own config file.  You can make copies of /etc/init.d/httpd
977 and use the -d option to httpd to point each http to a different
978 top-level directory.  Or you can use the -f option to explicitly
979 point to the config file.  Multiple Apache's will run on different
980 Ports (eg: 80 is standard, 8080 is a typical alternative port accessed
981 via http://yourhost.com:8080).
982
983 Inside BackupPC's Apache http.conf file you should check the
984 settings for ServerRoot, DocumentRoot, User, Group, and Port.  See 
985 L<http://httpd.apache.org/docs/server-wide.html> for more details.
986
987 For mod_perl, BackupPC_Admin should not have setuid permission, so
988 you should turn it off:
989
990     chmod u-s __CGIDIR__/BackupPC_Admin
991
992 To tell Apache to use mod_perl to execute BackupPC_Admin, add this
993 to Apache's httpd.conf file:
994
995     <IfModule mod_perl.c>
996         PerlModule Apache::Registry
997         PerlTaintCheck On
998         <Location /cgi-bin/BackupPC/BackupPC_Admin>   # <--- change path as needed
999            SetHandler perl-script
1000            PerlHandler Apache::Registry
1001            Options ExecCGI
1002         </Location>
1003     </IfModule>
1004
1005 There are other optimizations and options with mod_perl.  For
1006 example, you can tell mod_perl to preload various perl modules,
1007 which saves memory compared to loading separate copies in every
1008 Apache process after they are forked. See Stas's definitive
1009 mod_perl guide at L<http://perl.apache.org/guide>.
1010
1011 =back
1012
1013 BackupPC_Admin requires that users are authenticated by Apache.
1014 Specifically, it expects that Apache sets the REMOTE_USER environment
1015 variable when it runs.  There are several ways to do this.  One way
1016 is to create a .htaccess file in the cgi-bin directory that looks like:
1017
1018     AuthGroupFile /etc/httpd/conf/group    # <--- change path as needed
1019     AuthUserFile /etc/http/conf/passwd     # <--- change path as needed
1020     AuthType basic
1021     AuthName "access"
1022     require valid-user
1023
1024 You will also need "AllowOverride Indexes AuthConfig" in the Apache
1025 httpd.conf file to enable the .htaccess file. Alternatively, everything
1026 can go in the Apache httpd.conf file inside a Location directive. The
1027 list of users and password file above can be extracted from the NIS
1028 passwd file.
1029
1030 One alternative is to use LDAP.  In Apache's http.conf add these lines:
1031
1032     LoadModule auth_ldap_module   modules/auth_ldap.so
1033     AddModule auth_ldap.c
1034
1035     # cgi-bin - auth via LDAP (for BackupPC)
1036     <Location /cgi-binBackupPC/BackupPC_Admin>    # <--- change path as needed
1037       AuthType Basic
1038       AuthName "BackupPC login"
1039       # replace MYDOMAIN, PORT, ORG and CO as needed
1040       AuthLDAPURL ldap://ldap.MYDOMAIN.com:PORT/o=ORG,c=CO?uid?sub?(objectClass=*)
1041       require valid-user
1042     </Location>
1043
1044 If you want to defeat the user authentication you can force a
1045 particular user name by getting Apache to set REMOTE_USER, eg,
1046 to hardcode the user to www you could add this to httpd.conf:
1047
1048     <Location /cgi-bin/BackupPC/BackupPC_Admin>   # <--- change path as needed
1049         Setenv REMOTE_USER www
1050     </Location>
1051
1052 Finally, you should also edit the config.pl file and adjust, as necessary,
1053 the CGI-specific settings.  They're near the end of the config file. In
1054 particular, you should specify which users or groups have administrator
1055 (privileged) access.  Also, the configure.pl script placed various
1056 images into $Conf{CgiImageDir} that BackupPC_Admin needs to serve
1057 up.  You should make sure that $Conf{CgiImageDirURL} is the correct
1058 URL for the image directory.
1059
1060 =head2 Other installation topics
1061
1062 =over 4
1063
1064 =item Copying the pool
1065
1066 If the pool disk requirements grow you might need to copy the entire
1067 data directory to a new (bigger) file system.  Hopefully you are lucky
1068 enough to avoid this by having the data directory on a RAID file system
1069 or LVM that allows the capacity to be grown in place by adding disks.
1070
1071 The backup data directories contain large numbers of hardlinks.  If
1072 you try to copy the pool the target directory will occupy a lot more
1073 space if the hardlinks aren't re-established.
1074
1075 The GNU cp program with the -a option is aware of hardlinks and knows
1076 to re-establish them.  So GNU cp -a is the recommended way to copy
1077 the data directory and pool.  Don't forget to stop BackupPC while
1078 the copy runs.
1079
1080 =item Compressing an existing pool
1081
1082 If you are upgrading BackupPC and want to turn compression on you have
1083 two choices:
1084
1085 =over 4
1086
1087 =item *
1088
1089 Simply turn on compression.  All new backups will be compressed. Both old
1090 (uncompressed) and new (compressed) backups can be browsed and viewed.
1091 Eventually, the old backups will expire and all the pool data will be
1092 compressed. However, until the old backups expire, this approach could
1093 require 60% or more additional pool storage space to store both
1094 uncompressed and compressed versions of the backup files.
1095
1096 =item *
1097
1098 Convert all the uncompressed pool files and backups to compressed.
1099 The script __INSTALLDIR__/bin/BackupPC_compressPool does this.
1100 BackupPC must not be running when you run BackupPC_compressPool.
1101 Also, there must be no existing compressed backups when you
1102 run BackupPC_compressPool.
1103
1104 BackupPC_compressPool compresses all the files in the uncompressed pool
1105 (__TOPDIR__/pool) and moves them to the compressed pool
1106 (__TOPDIR__/cpool). It rewrites the files in place, so that the
1107 existing hardlinks are not disturbed.
1108
1109 =back
1110
1111 The rest of this section discusses how to run BackupPC_compressPool.
1112
1113 BackupPC_compressPool takes three command line options:
1114
1115 =over 4
1116
1117 =item -t
1118
1119 Test mode: do everything except actually replace the pool files.
1120 Useful for estimating total run time without making any real
1121 changes.
1122
1123 =item -r
1124
1125 Read check: re-read the compressed file and compare it against
1126 the original uncompressed file.  Can only be used in test mode.
1127
1128 =item -c #
1129
1130 Number of children to fork. BackupPC_compressPool can take a long time
1131 to run, so to speed things up it spawns four children, each working on a
1132 different part of the pool. You can change the number of children with
1133 the -c option.
1134
1135 =back
1136
1137 Here are the recommended steps for running BackupPC_compressPool:
1138
1139 =over 4
1140
1141 =item *
1142
1143 Stop BackupPC (eg: "/etc/init.d/backuppc stop").
1144
1145 =item *
1146
1147 Set $Conf{CompressLevel} to a non-zero number (eg: 3).
1148
1149 =item *
1150
1151 Do a dry run of BackupPC_compressPool.  Make sure you run this as
1152 the BackupPC user (__BACKUPPCUSER__):
1153
1154     BackupPC_compressPool -t -r
1155
1156 The -t option (test mode) makes BackupPC_compressPool do all the steps,
1157 but not actually change anything. The -r option re-reads the compressed
1158 file and compares it against the original.
1159
1160 BackupPC_compressPool gives a status as it completes each 1% of the job.
1161 It also shows the cumulative compression ratio and estimated completion
1162 time.  Once you are comfortable that things look ok, you can kill
1163 BackupPC_compressPool or wait for it to finish.
1164
1165 =item *
1166
1167 Now you are ready to run BackupPC_compressPool for real.  Once again,
1168 as the BackupPC user (__BACKUPPCUSER__), run:
1169
1170     BackupPC_compressPool
1171
1172 You should put the output into a file and tail this file.  (The running
1173 time could be twice as long as the test mode since the test mode file
1174 writes are immediately followed by an unlink, so in test mode it is
1175 likely the file writes never make it to disk.)
1176
1177 It is B<critical> that BackupPC_compressPool runs to completion before
1178 re-starting BackupPC.  Before BackupPC_compressPool completes, none of
1179 the existing backups will be in a consistent state.  If you must stop
1180 BackupPC_compressPool for some reason, send it an INT or TERM signal
1181 and give it several seconds (or more) to clean up gracefully.
1182 After that, you can re-run BackupPC_compressPool and it will start
1183 again where it left off.  Once again, it is critical that it runs
1184 to 100% completion.
1185
1186 =back
1187
1188 After BackupPC_compressPool completes you should have a complete set
1189 of compressed backups (and your disk usage should be lower).  You
1190 can now re-start BackupPC.
1191
1192 =back
1193
1194 =head2 Debugging installation problems
1195
1196 This section will probably grow based on the types of questions on
1197 the BackupPC mail list.
1198
1199 Assuming BackupPC can start correctly you should inspect __TOPDIR__/log/LOG
1200 for any errors.  Assuming backups for a particular host start, you
1201 should be able to look in __TOPDIR__/pc/$host/LOG for error messages
1202 specific to that host.
1203
1204 The most likely problems will relate to connecting to the smb shares on
1205 each host.  On each failed backup, a file __TOPDIR__/pc/$host/XferERR will
1206 be created. This is the stderr output from smbclient. The first line
1207 will show the full smbclient command that was run. Based on the error
1208 messages you should figure out what is wrong.  Possible errors on the
1209 server side are invalid host, invalid share name, bad username or password.
1210 Possible errors on the client side are misconfiguration of the share,
1211 username or password.
1212
1213 You should run smbclient manually and verify that you can connect to
1214 the host in interactive mode, eg:
1215
1216     smbclient '\\hostName\shareName' -U userName
1217
1218 shareName should match the $Conf{SmbShareName} setting and userName
1219 should match the the $Conf{SmbShareUserName} setting.
1220
1221 You will be prompted for the password. You should then see this prompt:
1222
1223     smb: \>
1224
1225 Verify that "ls" works and then type "quit" to exit.
1226
1227 Secondly, you should also verify that nmblookup correctly returns
1228 the netbios name.  This is essential for DHCP hosts, and depending
1229 upon the setting of $Conf{FixedIPNetBiosNameCheck} might also be
1230 required for fixed IP address hosts too.  Run this command:
1231
1232     nmblookup -A hostName
1233
1234 Verify that the host name is printed.  The output might look like:
1235
1236     received 7 names
1237             DELLLS13        <00> -         P <ACTIVE> 
1238             DOMAINNAME      <00> - <GROUP> P <ACTIVE> 
1239             DELLLS13        <20> -         P <ACTIVE> 
1240             DOMAINNAME      <1e> - <GROUP> P <ACTIVE> 
1241             DELLLS13        <03> -         P <ACTIVE> 
1242             DELLLS13$       <03> -         P <ACTIVE> 
1243             CRAIG           <03> -         P <ACTIVE> 
1244
1245 The first name, converted to lower case, is used for the host name.
1246
1247 =head1 Restore functions
1248
1249 BackupPC supports several different methods for restoring files. The
1250 most convenient restore options are provided via the CGI interface.
1251 Alternatively, backup files can be restored using manual commands.
1252
1253 =head2 CGI restore options
1254
1255 By selecting a host in the CGI interface, a list of all the backups
1256 for that machine will be displayed.  By selecting the backup number
1257 you can navigate the shares and directory tree for that backup.
1258
1259 BackupPC's CGI interface automatically fills incremental backups
1260 with the corresponding full backup, which means each backup has
1261 a filled appearance.  Therefore, there is no need to do multiple
1262 restores from the incremental and full backups: BackupPC does all
1263 the hard work for you.  You simply select the files and directories
1264 you want from the correct backup vintage in one step.
1265
1266 You can download a single backup file at any time simply by selecting
1267 it.  Your browser should prompt you with the file name and ask you
1268 whether to open the file or save it to disk.
1269
1270 Alternatively, you can select one or more files or directories in
1271 the currently selected directory and select "Restore selected files".
1272 (If you need to restore selected files and directories from several
1273 different parent directories you will need to do that in multiple
1274 steps.)
1275
1276 If you select all the files in a directory, BackupPC will replace
1277 the list of files with the parent directory.  You will be presented
1278 with a screen that has three options:
1279
1280 =over 4
1281
1282 =item Option 1: Direct Restore
1283
1284 With this option the selected files and directories are restored
1285 directly back onto the host, by default in their original location.
1286 Any old files with the same name will be overwritten, so use caution.
1287 You can optionally change the target host name, target share name,
1288 and target path prefix for the restore, allowing you to restore the
1289 files to a different location.
1290
1291 Once you select "Start Restore" you will be prompted one last time
1292 with a summary of the exact source and target files and directories
1293 before you commit.  When you give the final go ahead the restore
1294 operation will be queued like a normal backup job, meaning that it
1295 will be deferred if there is a backup currently running for that host.
1296 When the restore job is run, smbclient or tar is used (depending upon
1297 $Conf{XferMethod}) to actually restore the files.  Sorry, there is
1298 currently no option to cancel a restore that has been started.
1299
1300 A record of the restore request, including the result and list of
1301 files and directories, is kept.  It can be browsed from the host's
1302 home page.  $Conf{RestoreInfoKeepCnt} specifies how many old restore
1303 status files to keep.
1304
1305 =item Option 2: Download Zip archive
1306
1307 With this option a zip file containing the selected files and directories
1308 is downloaded.  The zip file can then be unpacked or individual files
1309 extracted as necessary on the host machine. The compression level can be
1310 specified.  A value of 0 turns off compression.
1311
1312 When you select "Download Zip File" you should be prompted where to
1313 save the restore.zip file.
1314
1315 BackupPC does not consider downloading a zip file as an actual
1316 restore operation, so the details are not saved for later browsing
1317 as in the first case.  However, a mention that a zip file was
1318 downloaded by a particular user, and a list of the files, does
1319 appear in BackupPC's log file.
1320
1321 =item Option 3: Download Tar archive
1322
1323 This is identical to the previous option, except a tar file is downloaded
1324 rather than a zip file (and there is currently no compression option).
1325
1326 =back
1327
1328 =head2 Command-line restore options
1329
1330 Apart from the CGI interface, BackupPC allows you to restore files
1331 and directories from the command line.  The following programs can
1332 be used:
1333
1334 =over 4
1335
1336 =item BackupPC_zcat
1337
1338 For each file name argument it inflates (uncompresses) the file and
1339 writes it to stdout.  To use BackupPC_zcat you could give it the
1340 full file name, eg:
1341
1342     __INSTALLDIR__/bin/BackupPC_zcat __TOPDIR__/pc/host/5/fc/fcraig/fexample.txt > example.txt
1343
1344 It's your responsibility to make sure the file is really compressed:
1345 BackupPC_zcat doesn't check which backup the requested file is from.
1346
1347 =item BackupPC_tarCreate
1348
1349 BackupPC_tarCreate creates a tar file for any files or directories in
1350 a particular backup.  Merging of incrementals is done automatically,
1351 so you don't need to worry about whether certain files appear in the
1352 incremental or full backup.
1353
1354 The usage is:
1355
1356    BackupPC_tarCreate [-t] [-h host] [-n dumpNum] [-s shareName]
1357                     [-r pathRemove] [-p pathAdd]
1358                     files/directories...
1359
1360 The command-line files and directories are relative to the specified
1361 shareName.  The tar file is written to stdout.
1362
1363 The required options are:
1364
1365 =over 4
1366
1367 =item -h host
1368
1369 host from which the tar archive is created
1370
1371 =item -n dumpNum
1372
1373 dump number from which the tar archive is created
1374
1375 =item -s shareName
1376
1377 share name from which the tar archive is created
1378
1379 =back
1380
1381 Other options are:
1382
1383 =over 4
1384
1385 =item -t
1386
1387 print summary totals
1388
1389 =item -r pathRemove
1390
1391 path prefix that will be replaced with pathAdd
1392
1393 =item -p pathAdd
1394
1395 new path prefix
1396
1397 =back
1398
1399 The -h, -n and -s options specify which dump is used to generate
1400 the tar archive.  The -r and -p options can be used to relocate
1401 the paths in the tar archive so extracted files can be placed
1402 in a location different from their original location.
1403
1404 =item BackupPC_zipCreate
1405
1406 BackupPC_zipCreate creates a zip file for any files or directories in
1407 a particular backup.  Merging of incrementals is done automatically,
1408 so you don't need to worry about whether certain files appear in the
1409 incremental or full backup.
1410
1411 The usage is:
1412
1413    BackupPC_zipCreate [-t] [-h host] [-n dumpNum] [-s shareName]
1414                     [-r pathRemove] [-p pathAdd] [-c compressionLevel]
1415                    files/directories...
1416
1417 The command-line files and directories are relative to the specified
1418 shareName.  The zip file is written to stdout.
1419
1420 The required options are:
1421
1422 =over 4
1423
1424 =item -h host
1425
1426 host from which the zip archive is created
1427
1428 =item -n dumpNum
1429
1430 dump number from which the zip archive is created
1431
1432 =item -s shareName
1433
1434 share name from which the zip archive is created
1435
1436 =back
1437
1438 Other options are:
1439
1440 =over 4
1441
1442 =item -t
1443
1444 print summary totals
1445
1446 =item -r pathRemove
1447
1448 path prefix that will be replaced with pathAdd
1449
1450 =item -p pathAdd
1451
1452 new path prefix
1453
1454 =item -c level
1455
1456 compression level (default is 0, no compression)
1457
1458 =back
1459
1460 The -h, -n and -s options specify which dump is used to generate
1461 the zip archive.  The -r and -p options can be used to relocate
1462 the paths in the zip archive so extracted files can be placed
1463 in a location different from their original location.
1464
1465 =back
1466
1467 Each of these programs reside in __INSTALLDIR__/bin.
1468
1469 =head1 BackupPC Design
1470
1471 =head2 Some design issues
1472
1473 =over 4
1474
1475 =item Pooling common files
1476
1477 To quickly see if a file is already in the pool, an MD5 digest of the
1478 file length and contents is used as the file name in the pool. This
1479 can't guarantee a file is identical: it just reduces the search to
1480 often a single file or handful of files. A complete file comparison
1481 is always done to verify if two files are really the same.
1482
1483 Identical files on multiples backups are represented by hard links.
1484 Hardlinks are used so that identical files all refer to the same
1485 physical file on the server's disk. Also, hard links maintain
1486 reference counts so that BackupPC knows when to deleted unused files
1487 from the pool.
1488
1489 For the computer-science majors among you, you can think of the pooling
1490 system used by BackupPC as just a chained hash table stored on a (big)
1491 file system.
1492
1493 =item The hashing function
1494
1495 There is a tradeoff between how much of file is used for the MD5 digest
1496 and the time taken comparing all the files that have the same hash.
1497
1498 Using the file length and just the first 4096 bytes of the file for the
1499 MD5 digest produces some repetitions.  One example: with 900,000 unique
1500 files in the pool, this hash gives about 7,000 repeated files, and in
1501 the worst case 500 files have the same hash.  That's not bad: we only
1502 have to do a single file compare 99.2% of the time.  But in the worst
1503 case we have to compare as many as 500 files checking for a match.
1504
1505 With a modest increase in CPU time, if we use the file length and the
1506 first 256K of the file we now only have 500 repeated files and in the
1507 worst case around 20 files have the same hash. Furthermore, if we
1508 instead use the first and last 128K of the file (more specifically, the
1509 first and eighth 128K chunks for files larger than 1MB) we get only 300
1510 repeated files and in the worst case around 20 files have the same hash.
1511
1512 Based on this experimentation, this is the hash function used by BackupPC.
1513 It is important that you don't change the hash function after files
1514 are already in the pool.  Otherwise your pool will grow to twice the
1515 size until all the old backups (and all the old files with old hashes)
1516 eventually expire.
1517
1518 =item Compression
1519
1520 BackupPC supports compression. It uses the deflate and inflate methods
1521 in the Compress::Zlib module, which is based on the zlib compression
1522 library (see L<http://www.gzip.org/zlib/>).
1523
1524 The $Conf{CompressLevel} setting specifies the compression level to use.
1525 Zero (0) means no compression. Compression levels can be from 1 (least
1526 cpu time, slightly worse compression) to 9 (most cpu time, slightly
1527 better compression). The recommended value is 3. Changing it to 5, for
1528 example, will take maybe 20% more cpu time and will get another 2-3%
1529 additional compression. Diminishing returns set in above 5.  See the zlib
1530 documentation for more information about compression levels.
1531
1532 BackupPC implements compression with minimal CPU load. Rather than
1533 compressing every incoming backup file and then trying to match it
1534 against the pool, BackupPC computes the MD5 digest based on the
1535 uncompressed file, and matches against the candidate pool files by
1536 comparing each uncompressed pool file against the incoming backup file.
1537 Since inflating a file takes roughly a factor of 10 less CPU time than
1538 deflating there is a big saving in CPU time.
1539
1540 The combination of pooling common files and compression can yield
1541 a factor of 8 or more overall saving in backup storage.
1542
1543 =back
1544
1545 =head2 BackupPC operation
1546
1547 BackupPC reads the configuration information from
1548 __TOPDIR__/conf/config.pl. It then runs and manages all the backup
1549 activity. It maintains queues of pending backup requests, user backup
1550 requests and administrative commands. Based on the configuration various
1551 requests will be executed simultaneously.
1552
1553 As specified by $Conf{WakeupSchedule}, BackupPC wakes up periodically
1554 to queue backups on all the PCs.  This is a four step process:
1555
1556 =over 4
1557
1558 =item 1
1559
1560 For each host and DHCP address backup requests are queued on the
1561 background command queue.
1562
1563 =item 2
1564
1565 For each PC, BackupPC_dump is forked. Several of these may be run in
1566 parallel, based on the configuration. First a ping is done to see if the
1567 machine is alive. If this is a DHCP address, nmblookup is run to get
1568 the netbios name, which is used as the host name. The file
1569 __TOPDIR__/pc/$host/backups is read to decide whether a full or
1570 incremental backup needs to be run. If no backup is scheduled, or the ping
1571 to $host fails, then BackupPC_dump exits.
1572
1573 The backup is done using samba's smbclient or tar over ssh/rsh/nfs piped
1574 into BackupPC_tarExtract, extracting the backup into __TOPDIR__/pc/$host/new.
1575 The smbclient or tar output is put into __TOPDIR__/pc/$host/XferLOG.
1576
1577 As BackupPC_tarExtract extracts the files from smbclient, it checks each
1578 file in the backup to see if it is identical to an existing file from
1579 any previous backup of any PC. It does this without needed to write the
1580 file to disk. If the file matches an existing file, a hardlink is
1581 created to the existing file in the pool. If the file does not match any
1582 existing files, the file is written to disk and the file name is saved
1583 in __TOPDIR__/pc/$host/NewFileList for later processing by
1584 BackupPC_link.  BackupPC_tarExtract can handle arbitrarily large
1585 files and multiple candidate matching files without needing to
1586 write the file to disk in the case of a match.  This significantly
1587 reduces disk writes (and also reads, since the pool file comparison
1588 is done disk to memory, rather than disk to disk).
1589
1590 Based on the configuration settings, BackupPC_dump checks each
1591 old backup to see if any should be removed.  Any expired backups
1592 are moved to __TOPDIR__/trash for later removal by BackupPC_trashClean.
1593
1594 =item 3
1595
1596 For each complete, good, backup, BackupPC_link is run.
1597 To avoid race conditions as new files are linked into the
1598 pool area, only a single BackupPC_link program runs
1599 at a time and the rest are queued.
1600
1601 BackupPC_link reads the NewFileList written by BackupPC_dump and
1602 inspects each new file in the backup. It re-checks if there is a
1603 matching file in the pool (another BackupPC_link
1604 could have added the file since BackupPC_dump checked). If so, the file
1605 is removed and replaced by a hard link to the existing file. If the file
1606 is new, a hard link to the file is made in the pool area, so that this
1607 file is available for checking against each new file and new backup.
1608
1609 Then, assuming $Conf{IncrFill} is set, for each incremental backup,
1610 hard links are made in the new backup to all files that were not extracted
1611 during the incremental backups.  The means the incremental backup looks
1612 like a complete image of the PC (with the exception that files
1613 that were removed on the PC since the last full backup will still
1614 appear in the backup directory tree).
1615
1616 As of v1.03, the CGI interface knows how to merge unfilled
1617 incremental backups will the most recent prior filled (full)
1618 backup, giving the incremental backups a filled appearance.  The
1619 default for $Conf{IncrFill} is off, since there is now no need to
1620 fill incremental backups.  This saves some level of disk activity,
1621 since lots of extra hardlinks are no longer needed (and don't have
1622 to be deleted when the backup expires).
1623
1624 =item 4
1625
1626 BackupPC_trashClean is always run in the background to remove any
1627 expired backups. Every 5 minutes it wakes up and removes all the files
1628 in __TOPDIR__/trash.
1629
1630 Also, once each night, BackupPC_nightly is run to complete some additional
1631 administrative tasks, such as cleaning the pool.  This involves removing
1632 any files in the pool that only have a single hard link (meaning no backups
1633 are using that file).  Again, to avoid race conditions, BackupPC_nightly
1634 is only run when there are no BackupPC_dump or BackupPC_link processes
1635 running.
1636
1637 =back
1638
1639 BackupPC also listens for TCP connections on $Conf{ServerPort}, which
1640 is used by the CGI script BackupPC_Admin for status reporting and
1641 user-initiated backup or backup cancel requests.
1642
1643 =head2 Storage layout
1644
1645 BackupPC resides in three directories:
1646
1647 =over 4
1648
1649 =item __INSTALLDIR__
1650
1651 Perl scripts comprising BackupPC reside in __INSTALLDIR__/bin,
1652 libraries are in __INSTALLDIR__/lib and documentation
1653 is in __INSTALLDIR__/doc.
1654
1655 =item __CGIDIR__
1656
1657 The CGI script BackupPC_Admin resides in this cgi binary directory.
1658
1659 =item __TOPDIR__
1660
1661 All of BackupPC's data (PC backup images, logs, configuration information)
1662 is stored below this directory.
1663
1664 =back
1665
1666 Below __TOPDIR__ are several directories:
1667
1668 =over 4
1669
1670 =item __TOPDIR__/conf
1671
1672 The directory __TOPDIR__/conf contains:
1673
1674 =over 4
1675
1676 =item config.pl
1677
1678 Configuration file. See L<Configuration file|configuration file>
1679 below for more details.
1680
1681 =item hosts
1682
1683 Hosts file, which lists all the PCs to backup.
1684
1685 =back
1686
1687 =item __TOPDIR__/log
1688
1689 The directory __TOPDIR__/log contains:
1690
1691 =over 4
1692
1693 =item LOG
1694
1695 Current (today's) log file output from BackupPC.
1696
1697 =item LOG.0 or LOG.0.z
1698
1699 Yesterday's log file output.  Log files are aged daily and compressed
1700 (if compression is enabled), and old LOG files are deleted.
1701
1702 =item BackupPC.pid
1703
1704 Contains BackupPC's process id.
1705
1706 =item status.pl
1707
1708 A summary of BackupPC's status written periodically by BackupPC so
1709 that certain state information can be maintained if BackupPC is
1710 restarted.  Should not be edited.
1711
1712 =item UserEmailInfo.pl
1713
1714 A summary of what email was last sent to each user, and when the
1715 last email was sent.  Should not be edited.
1716
1717 =back
1718
1719 =item __TOPDIR__/trash
1720
1721 Any directories and files below this directory are periodically deleted
1722 whenever BackupPC_trashClean checks. When a backup is aborted or when an
1723 old backup expires, BackupPC_dump simply moves the directory to
1724 __TOPDIR__/trash for later removal by BackupPC_trashClean.
1725
1726 =item __TOPDIR__/pool
1727
1728 All uncompressed files from PC backups are stored below __TOPDIR__/pool.
1729 Each file's name is based on the MD5 hex digest of the file contents.
1730 Specifically, for files less than 256K, the file length and the entire
1731 file is used. For files up to 1MB, the file length and the first and
1732 last 128K are used. Finally, for files longer than 1MB, the file length,
1733 and the first and eighth 128K chunks for the file are used.
1734
1735 Each file is stored in a subdirectory X/Y/Z, where X, Y, Z are the
1736 first 3 hex digits of the MD5 digest.
1737
1738 For example, if a file has an MD5 digest of 123456789abcdef0,
1739 the file is stored in __TOPDIR__/pool/1/2/3/123456789abcdef0.
1740
1741 The MD5 digest might not be unique (especially since not all the file's
1742 contents are used for files bigger than 256K). Different files that have
1743 the same MD5 digest are stored with a trailing suffix "_n" where n is
1744 an incrementing number starting at 0. So, for example, if two additional
1745 files were identical to the first, except the last byte was different,
1746 and assuming the file was larger than 1MB (so the MD5 digests are the
1747 same but the files are actually different), the three files would be
1748 stored as:
1749
1750         __TOPDIR__/pool/1/2/3/123456789abcdef0
1751         __TOPDIR__/pool/1/2/3/123456789abcdef0_0
1752         __TOPDIR__/pool/1/2/3/123456789abcdef0_1
1753
1754 Both BackupPC_dump (actually, BackupPC_tarExtract) and BackupPC_link are
1755 responsible for checking newly backed up files against the pool. For
1756 each file, the MD5 digest is used to generate a file name in the pool
1757 directory. If the file exists in the pool, the contents are compared.
1758 If there is no match, additional files ending in "_n" are checked.
1759 (Actually, BackupPC_tarExtract compares multiple candidate files in
1760 parallel.)  If the file contents exactly match, the file is created by
1761 simply making a hard link to the pool file (this is done by
1762 BackupPC_tarExtract as the backup proceeds). Otherwise,
1763 BackupPC_tarExtract writes the new file to disk and a new hard link is
1764 made in the pool to the file (this is done later by BackupPC_link).
1765
1766 Therefore, every file in the pool will have at least 2 hard links
1767 (one for the pool file and one for the backup file below __TOPDIR__/pc).
1768 Identical files from different backups or PCs will all be linked to
1769 the same file.  When old backups are deleted, some files in the pool
1770 might only have one link.  BackupPC_nightly checks the entire pool
1771 and removes all files that have only a single link, thereby recovering
1772 the storage for that file.
1773
1774 One other issue: zero length files are not pooled, since there are a lot
1775 of these files and on most file systems it doesn't save any disk space
1776 to turn these files into hard links.
1777
1778 =item __TOPDIR__/cpool
1779
1780 All compressed files from PC backups are stored below __TOPDIR__/cpool.
1781 Its layout is the same as __TOPDIR__/pool, and the hashing function
1782 is the same (and, importantly, based on the uncompressed file, not
1783 the compressed file).
1784
1785 =item __TOPDIR__/pc/$host
1786
1787 For each PC $host, all the backups for that PC are stored below
1788 the directory __TOPDIR__/pc/$host.  This directory contains the
1789 following files:
1790
1791 =over 4
1792
1793 =item LOG
1794
1795 Current log file for this PC from BackupPC_dump.
1796
1797 =item LOG.0 or LOG.0.z
1798
1799 Last month's log file.  Log files are aged monthly and compressed
1800 (if compression is enabled), and old LOG files are deleted.
1801
1802 =item XferERR or XferERR.z
1803
1804 Output from the transport program (ie: smbclient or tar)
1805 for the most recent failed backup.
1806
1807 =item new
1808
1809 Subdirectory in which the current backup is stored.  This
1810 directory is renamed if the backup succeeds.
1811
1812 =item XferLOG or XferLOG.z
1813
1814 Output from the transport program (ie: smbclient or tar)
1815 for the current backup.
1816
1817 =item nnn (an integer)
1818
1819 Successful backups are in directories numbered sequentially starting at 0.
1820
1821 =item XferLOG.nnn or XferLOG.nnn.z
1822
1823 Output from the transport program (ie: smbclient or tar)
1824 corresponding to backup number nnn.
1825
1826 =item RestoreInfo.nnn
1827
1828 Information about restore request #nnn including who, what, when, and
1829 why. This file is in Data::Dumper format.  (Note that the restore
1830 numbers are not related to the backup number.)
1831
1832 =item RestoreLOG.nnn.z
1833
1834 Output from smbclient or tar during restore #nnn.  (Note that the restore
1835 numbers are not related to the backup number.)
1836
1837 =item config.pl
1838
1839 Optional configuration settings specific to this host.  Settings in this
1840 file override the main configuration file.
1841
1842 =item backups
1843
1844 A tab-delimited ascii table listing information about each successful
1845 backup, one per row.  The columns are:
1846
1847 =over 4
1848
1849 =item num
1850
1851 The backup number, an integer that starts at 0 and increments
1852 for each successive backup.  The corresponding backup is stored
1853 in the directory num (eg: if this field is 5, then the backup is
1854 stored in __TOPDIR__/pc/$host/5).
1855
1856 =item type
1857
1858 Set to "full" or "incr" for full or incremental backup.
1859
1860 =item startTime
1861
1862 Start time of the backup in unix seconds.
1863
1864 =item endTime
1865
1866 Stop time of the backup in unix seconds.
1867
1868 =item nFiles
1869
1870 Number of files backed up (as reported by smbclient or tar).
1871
1872 =item size
1873
1874 Total file size backed up (as reported by smbclient or tar).
1875
1876 =item nFilesExist
1877
1878 Number of files that were already in the pool
1879 (as determined by BackupPC_dump and BackupPC_link).
1880
1881 =item sizeExist
1882
1883 Total size of files that were already in the pool
1884 (as determined by BackupPC_dump and BackupPC_link).
1885
1886 =item nFilesNew
1887
1888 Number of files that were not in the pool
1889 (as determined by BackupPC_link).
1890
1891 =item sizeNew
1892
1893 Total size of files that were not in the pool
1894 (as determined by BackupPC_link).
1895
1896 =item xferErrs
1897
1898 Number of errors or warnings from smbclient (zero for tar).
1899
1900 =item xferBadFile
1901
1902 Number of errors from smbclient that were bad file errors (zero for tar).
1903
1904 =item xferBadShare
1905
1906 Number of errors from smbclient that were bad share errors (zero for tar).
1907
1908 =item tarErrs
1909
1910 Number of errors from BackupPC_tarExtract.
1911
1912 =item compress
1913
1914 The compression level used on this backup.  Zero or empty means no
1915 compression.
1916
1917 =item sizeExistComp
1918
1919 Total compressed size of files that were already in the pool
1920 (as determined by BackupPC_dump and BackupPC_link).
1921
1922 =item sizeNewComp
1923
1924 Total compressed size of files that were not in the pool
1925 (as determined by BackupPC_link).
1926
1927 =item noFill
1928
1929 Set if this backup has not been filled in with the most recent
1930 previous filled or full backup.  See $Conf{IncrFill}.
1931
1932 =item fillFromNum
1933
1934 If this backup was filled (ie: noFill is 0) then this is the
1935 number of the backup that it was filled from
1936
1937 =item mangle
1938
1939 Set if this backup has mangled file names and attributes.  Always
1940 true for backups in v1.4.0 and above.  False for all backups prior
1941 to v1.4.0.
1942
1943 =back
1944
1945 =item restores
1946
1947 A tab-delimited ascii table listing information about each requested
1948 restore, one per row.  The columns are:
1949
1950 =over 4
1951
1952 =item num
1953
1954 Restore number (matches the suffix of the RestoreInfo.nnn and
1955 RestoreLOG.nnn.z file), unrelated to the backup number.
1956
1957 =item startTime
1958
1959 Start time of the restore in unix seconds.
1960
1961 =item endTime
1962
1963 End time of the restore in unix seconds.
1964
1965 =item result
1966
1967 Result (ok or failed).
1968
1969 =item errorMsg
1970
1971 Error message if restore failed.
1972
1973 =item nFiles
1974
1975 Number of files restored.
1976
1977 =item size
1978
1979 Size in bytes of the restored files.
1980
1981 =item tarCreateErrs
1982
1983 Number of errors from BackupPC_tarCreate during restore.
1984
1985 =item xferErrs
1986
1987 Number of errors from smbclient or tar during restore.
1988
1989 =back
1990
1991 =back
1992
1993 =back
1994
1995 =head2 Compressed file format
1996
1997 The compressed file format is as generated by Compress::Zlib::deflate
1998 with one minor, but important, tweak. Since Compress::Zlib::inflate
1999 fully inflates its argument in memory, it could take large amounts of
2000 memory if it was inflating a highly compressed file. For example, a
2001 200MB file of 0x0 bytes compresses to around 200K bytes. If
2002 Compress::Zlib::inflate was called with this single 200K buffer, it
2003 would need to allocate 200MB of memory to return the result.
2004
2005 BackupPC watches how efficiently a file is compressing. If a big file
2006 has very high compression (meaning it will use too much memory when it
2007 is inflated), BackupPC calls the flush() method, which gracefully
2008 completes the current compression.  BackupPC then starts another
2009 deflate and simply appends the output file.  So the BackupPC compressed
2010 file format is one or more concatenated deflations/flushes.  The specific
2011 ratios that BackupPC uses is that if a 6MB chunk compresses to less
2012 than 64K then a flush will be done.
2013
2014 Back to the example of the 200MB file of 0x0 bytes.  Adding flushes
2015 every 6MB adds only 200 or so bytes to the 200K output.  So the
2016 storage cost of flushing is negligible.
2017
2018 To easily decompress a BackupPC compressed file, the script
2019 BackupPC_zcat can be found in __INSTALLDIR__/bin.  For each
2020 file name argument it inflates the file and writes it to stdout.
2021
2022 =head2 File name mangling
2023
2024 Backup file names are stored in "mangled" form. Each node of
2025 a path is preceded by "f" (mnemonic: file), and special characters
2026 (\n, \r, % and /) are URI-encoded as "%xx", where xx is the ascii
2027 character's hex value.  So c:/craig/example.txt is now stored as
2028 fc/fcraig/fexample.txt.
2029
2030 This was done mainly so meta-data could be stored alongside the backup
2031 files without name collisions. In particular, the attributes for the
2032 files in a directory are stored in a file called "attrib", and mangling
2033 avoids file name collisions (I discarded the idea of having a duplicate
2034 directory tree for every backup just to store the attributes). Other
2035 meta-data (eg: rsync checksums) could be stored in file names preceded
2036 by, eg, "c". There are two other benefits to mangling: the share name
2037 might contain "/" (eg: "/home/craig" for tar transport), and I wanted
2038 that represented as a single level in the storage tree. Secondly, as
2039 files are written to NewFileList for later processing by BackupPC_link,
2040 embedded newlines in the file's path will cause problems which are
2041 avoided by mangling.
2042
2043 The CGI script undoes the mangling, so it is invisible to the user.
2044 Old (unmangled) backups are still supported by the CGI
2045 interface.
2046
2047 =head2 Special files
2048
2049 Linux/unix file systems support several special file types: symbolic
2050 links, character and block device files, fifos (pipes) and unix-domain
2051 sockets. All except unix-domain sockets are supported by BackupPC
2052 (there's no point in backing up or restoring unix-domain sockets since
2053 they only have meaning after a process creates them). Symbolic links are
2054 stored as a plain file whose contents are the contents of the link (not
2055 the file it points to). This file is compressed and pooled like any
2056 normal file. Character and block device files are also stored as plain
2057 files, whose contents are two integers separated by a comma; the numbers
2058 are the major and minor device number. These files are compressed and
2059 pooled like any normal file. Fifo files are stored as empty plain files
2060 (which are not pooled since they have zero size). In all cases, the
2061 original file type is stored in the attrib file so it can be correctly
2062 restored.
2063
2064 Hardlinks are also supported.  When GNU tar first encounters a file with
2065 more than one link (ie: hardlinks) it dumps it as a regular file.  When
2066 it sees the second and subsequent hardlinks to the same file, it dumps
2067 just the hardlink information.  BackupPC correctly recognizes these
2068 hardlinks and stores them just like symlinks: a regular text file
2069 whose contents is the path of the file linked to.  The CGI script
2070 will download the original file when you click on a hardlink.
2071
2072 Also, BackupPC_tarCreate has enough magic to re-create the hardlinks
2073 dynamically based on whether or not the original file and hardlinks
2074 are both included in the tar file.  For example, imagine a/b/x is a
2075 hardlink to a/c/y.  If you use BackupPC_tarCreate to restore directory
2076 a, then the tar file will include a/b/x as the original file and a/c/y
2077 will be a hardlink to a/b/x.  If, instead you restore a/c, then the
2078 tar file will include a/c/y as the original file, not a hardlink.
2079
2080 =head2 Attribute file format
2081
2082 The unix attributes for the contents of a directory (all the files and
2083 directories in that directory) are stored in a file called attrib.
2084 There is a single attrib file for each directory in a backup.
2085 For example, if c:/craig contains a single file c:/craig/example.txt,
2086 that file would be stored as fc/fcraig/fexample.txt and there would be an
2087 attribute file in fc/fcraig/attrib (and also fc/attrib and ./attrib).
2088 The file fc/fcraig/attrib would contain a single entry containing the
2089 attributes for fc/fcraig/fexample.txt.
2090
2091 The attrib file starts with a magic number, followed by the
2092 concatenation of the following information for each file:
2093
2094 =over 4
2095
2096 =item *
2097
2098 File name length in perl's pack "w" format (variable length base 128).
2099
2100 =item *
2101
2102 File name.
2103
2104 =item *
2105
2106 The unix file type, mode, uid, gid and file size divided by 4GB and
2107 file size modulo 4GB (type mode uid gid sizeDiv4GB sizeMod4GB),
2108 in perl's pack "w" format (variable length base 128).
2109
2110 =item *
2111
2112 The unix mtime (unix seconds) in perl's pack "N" format (32 bit integer).
2113
2114 =back
2115
2116 The attrib file is also compressed if compression is enabled.
2117 See the lib/BackupPC/Attrib.pm module for full details.
2118
2119 Attribute files are pooled just like normal backup files.  This saves
2120 space if all the files in a directory have the same attributes across
2121 multiple backups, which is common.
2122
2123 =head2 Limitations
2124
2125 BackupPC isn't perfect (but it is getting better).  Here are some
2126 limitations of BackupPC:
2127
2128 =over 4
2129
2130 =item Non-unix file attributes not backed up
2131
2132 smbclient doesn't extract the WinXX ACLs, so file attributes other than
2133 the equivalent (as provided by smbclient) unix attributes are not
2134 backed up.
2135
2136 =item Locked files are not backed up
2137
2138 Under WinXX a locked file cannot be read by smbclient.  Such files will
2139 not be backed up.  This includes the WinXX system registry files.
2140
2141 This is especially troublesome for Outlook, which stores all its data
2142 in a single large file and keeps it locked whenever it is running.
2143 Since many users keep Outlook running all the time their machine
2144 is up their Outlook file will not be backed up.  Sadly, this file
2145 is the most important file to backup.  As one workaround, Microsoft has
2146 a user-level application that periodically asks the user if they want to
2147 make a copy of their outlook.pst file.  This copy can then be backed up
2148 by BackupPC.  See L<http://office.microsoft.com/downloads/2002/pfbackup.aspx>.
2149
2150 Similarly, all of the data for WinXX services like SQL databases,
2151 Exchange etc won't be backed up.  If these applications support
2152 some kind of export or utility to save their data to disk then this
2153 can =used to create files that BackupPC can backup.
2154
2155 So far, the best that BackupPC can do is send warning emails to
2156 the user saying that their outlook files haven't been backed up in
2157 X days.  (X is configurable.)  The message invites the user to
2158 exit Outlook and gives a URL to manually start a backup.
2159
2160 I suspect there is a way of mirroring the outlook.pst file so
2161 that at least the mirror copy can be backed up.  Or perhaps a
2162 manual copy can be started at login.   Does some WinXX expert
2163 know how to do this?
2164
2165 Comment: two users have noted that there are commercial OFM (open file
2166 manager) products that are designed to solve this problem, for example
2167 from St. Bernard or Columbia Data Products. Apparently Veritas and
2168 Legato bundle this product with their commercial products.  See for
2169 example L<http://www.stbernard.com/products/docs/ofm_whitepaperV8.pdf>.
2170 If anyone tries these programs with BackupPC please tell us whether or
2171 not they work.
2172
2173 =item Don't expect to reconstruct a complete WinXX drive
2174
2175 The conclusion from the last few items is that BackupPC is not intended
2176 to allow a complete WinXX disk to be re-imaged from the backup. Our
2177 approach to system restore in the event of catastrophic failure is to
2178 re-image a new disk from a generic master, and then use the BackupPC
2179 archive to restore user files.
2180
2181 It is likely that linux/unix backups done using tar (rather than
2182 smb) can be used to reconstruct a complete file system, although
2183 I haven't tried it.
2184
2185 =item Maximum Backup File Sizes
2186
2187 BackupPC can backup and manage very large file sizes, probably as large
2188 as 2^51 bytes (when a double-precision number's mantissa can no longer
2189 represent an integer exactly).  In practice, several things outside
2190 BackupPC limit the maximum individual file size.  Any one of the
2191 following items will limit the maximum individual file size:
2192
2193 =over 4
2194
2195 =item Perl
2196
2197 Perl needs to be compiled with uselargefiles defined. Check your
2198 installation with:
2199
2200     perl -V | egrep largefiles
2201
2202 Without this, the maximum file size will be 2GB.
2203
2204 =item File system
2205
2206 The BackupPC pool and data directories must be on a file system that
2207 supports large files.
2208
2209 Without this, the maximum file size will be 2GB.
2210
2211 =item Transport
2212
2213 The transport mechanism also limits the maximum individual file size.
2214
2215 GNU tar maximum file size is limited by the tar header format. The tar
2216 header uses 11 octal digits to represent the file size, which is 33 bits
2217 or 8GB.  I vaguely recall (but I haven't recently checked) that GNU tar
2218 uses an extra octal digit (replacing a trailing delimiter) if necessary,
2219 allowing 64GB files.  So tar transport limits the maximum file size to
2220 8GB or perhaps 64GB.  It is possible that files >= 8GB don't work; this
2221 needs to be looked into.
2222
2223 Smbclient is limited to 4GB file sizes.  Moreover, a bug in smbclient
2224 (mixing signed and unsigned 32 bit values) causes it to incorrectly
2225 do the tar octal conversion for file sizes from 2GB-4GB.  BackupPC_tarExtract
2226 knows about this bug and can recover the correct file size.  So smbclient
2227 transport works up to 4GB file sizes.
2228
2229 =back
2230
2231 =item Some tape backup systems aren't smart about hard links
2232
2233 If you backup the BackupPC pool to tape you need to make sure that the
2234 tape backup system is smart about hard links. For example, if you
2235 simply try to tar the BackupPC pool to tape you will backup a lot more
2236 data than is necessary.
2237
2238 Using the example at the start of the installation section, 65 hosts are
2239 backed up with each full backup averaging 3.2GB. Storing one full backup
2240 and two incremental backups per laptop is around 240GB of raw data. But
2241 because of the pooling of identical files, only 87GB is used (with
2242 compression the total is lower). If you run du or tar on the data
2243 directory, there will appear to be 240GB of data, plus the size of the
2244 pool (around 87GB), or 327GB total.
2245
2246 If your tape backup system is not smart about hard links an alternative
2247 is to periodically backup just the last successful backup for each host
2248 to tape.  Another alternative is to do a low-level dump of the pool
2249 file system (ie: /dev/hda1 or similar) using dump(1).
2250
2251 Supporting more efficient tape backup is an area for further
2252 development.
2253
2254 =item Incremental backups might included deleted files
2255
2256 To make browsing and restoring backups easier, incremental backups
2257 are "filled-in" from the last complete backup when the backup is
2258 browsed or restored.
2259
2260 However, if a file was deleted by a user after the last full backup, that
2261 file will still appear in the "filled-in" incremental backup. This is not
2262 really a specific problem with BackupPC, rather it is a general issue
2263 with the full/incremental backup paradigm.  This minor problem could be
2264 solved by having smbclient list all files when it does the incremental
2265 backup.  Volunteers anyone?
2266
2267 =back
2268
2269 Comments or suggestions on these issues are welcome.
2270
2271 =head2 Security issues
2272
2273 Please read this section and consider each of the issues carefully.
2274
2275 =over 4
2276
2277 =item Smb share password
2278
2279 An important security risk is the manner in which the smb share
2280 passwords are stored. They are in plain text. As described in
2281 L<Step 3: Setting up config.pl|step 3: setting up config.pl> there are four
2282 ways to tell BackupPC the smb share password (manually setting an environment
2283 variable, setting the environment variable in /etc/init.d/backuppc,
2284 putting the password in __TOPDIR__/conf/config.pl, or putting the
2285 password in __TOPDIR__/pc/$host/config.pl). In the latter 3 cases the
2286 smb share password appears in plain text in a file.
2287
2288 If you use any of the latter three methods please make sure that the file's
2289 permission is appropriately restricted.  If you also use RCS or CVS, double
2290 check the file permissions of the config.pl,v file.
2291
2292 In future versions there will probably be support for encryption of the
2293 smb share password, but a private key will still have to be stored in a
2294 protected place.  Comments and suggestions are welcome.
2295
2296 =item BackupPC socket server
2297
2298 In v1.5.0 the primary method for communication between the CGI program
2299 (BackupPC_Admin) and the server (BackupPC) is via a unix-domain socket.
2300 Since this socket has restricted permissions, no local user should be
2301 able to connect to this port.  No backup or restore data passes through
2302 this interface, but an attacker can start or stop backups and get status
2303 through this port.
2304
2305 If the Apache server and BackupPC_Admin run on a different host to
2306 BackupPC then a TCP port must be enabled by setting $Conf{ServerPort}.
2307 Anyone can connect to this port.  To avoid possible attacks via the TCP
2308 socket interface, every client message is protected by an MD5 digest.
2309 The MD5 digest includes four items:
2310
2311 =over 4
2312
2313 =item *
2314
2315 a seed that is sent to the client when the connection opens
2316
2317 =item *
2318
2319 a sequence number that increments for each message
2320
2321 =item *
2322
2323 a shared secret that is stored in $Conf{ServerMesgSecret}
2324
2325 =item *
2326
2327 the message itself.
2328
2329 =back
2330
2331 The message is sent in plain text preceded by the MD5 digest.  A
2332 snooper can see the plain-text seed sent by BackupPC and plain-text
2333 message from the client, but cannot construct a valid MD5 digest since
2334 the secret in $Conf{ServerMesgSecret} is unknown.  A replay attack is
2335 not possible since the seed changes on a per-connection and
2336 per-message basis.
2337
2338 So if you do enable the TCP port, please set $Conf{ServerMesgSecret}
2339 to some hard-to-guess string.  A denial-of-service attack is possible
2340 with the TCP port enabled.  Someone could simply connect many times
2341 to this port, until BackupPC had exhausted all its file descriptors,
2342 and this would cause new backups and the CGI interface to fail.  The
2343 most secure solution is to run BackupPC and Apache on the same machine
2344 and disable the TCP port.
2345
2346 By the way, if you have upgraded from a version of BackupPC prior to
2347 v1.5.0 you should set $Conf{ServerPort} to -1 to disable the TCP port.
2348
2349 =item Installation permissions
2350
2351 It is important to check that the BackupPC scripts in __INSTALLDIR__/bin
2352 and __INSTALLDIR__/lib cannot be edited by normal users. Check the
2353 directory permissions too.
2354
2355 =item Pool permissions
2356
2357 It is important to check that the data files in __TOPDIR__/pool,
2358 __TOPDIR__/pc and __TOPDIR__/trash cannot be read by normal users.
2359 Normal users should not be able to see anything below __TOPDIR__.
2360
2361 =item Host shares
2362
2363 Enabling shares on hosts carries security risks.  If you are on a private
2364 network and you generally trust your users then there should not be a
2365 problem. But if you have a laptop that is sometimes on public networks
2366 (eg: broadband or even dialup) you should be concerned.  A conservative
2367 approach is to use firewall software, and only enable the netbios and
2368 smb ports (137 and 139) on connections from the host running BackupPC.
2369
2370 =item SSH key security
2371
2372 Using ssh for linux/unix clients is quite secure, but the security is
2373 only as good as the protection of ssh's private keys. If an attacker can
2374 devise a way to run a shell as the BackupPC user then they will have
2375 access to BackupPC's private ssh keys. They can then, in turn, ssh to
2376 any client machine as root (or whichever user you have configured
2377 BackupPC to use). This represents a serious compromise of your entire
2378 network.  So in vulnerable networks, think carefully about how to protect
2379 the machine running BackupPC and how to prevent attackers from gaining
2380 shell access (as the BackupPC user) to the machine.
2381
2382 =item CGI interface
2383
2384 The CGI interface, __CGIDIR__/BackupPC_Admin, needs access to the pool
2385 files so it is installed setuid to __BACKUPPCUSER__. The permissions of
2386 this file need to checked carefully. It should be owned by
2387 __BACKUPPCUSER__ and have user and group (but not other) execute
2388 permission. To allow apache/httpd to execute it, the group ownership
2389 should be something that apache/httpd belongs to.
2390
2391 The Apache configuration should be setup for AuthConfig style,
2392 using a .htaccess file so that the user's name is passed into
2393 the script as $ENV{REMOTE_USER}.
2394
2395 If normal users could directly run BackupPC_Admin then there is a serious
2396 security hole: since it is setuid to __BACKUPPCUSER__ any user can
2397 browse and restore any backups. Be aware that anyone who is allowed to
2398 edit or create cgi scripts on your server can execute BackupPC_Admin as
2399 any user!  They simply write a cgi script that sets $ENV{REMOTE_USER} and
2400 then execs BackupPC_Admin.  The exec succeeds since httpd runs the first
2401 script as user httpd/apache, which in turn has group permission to
2402 execute BackupPC_Admin.
2403
2404 While this setup should be safe, a more conservative approach is to
2405 run a dedicated Apache as user __BACKUPPCUSER__ on a different port.
2406 Then BackupPC_Admin no longer needs to be setuid, and the cgi
2407 directories can be locked down from normal users.  Moreover, this
2408 setup is exactly the one used to support mod_perl, so this provides
2409 both the highest performance and the lowest security risk.
2410
2411 =back
2412
2413 Comments and suggestions are welcome.
2414
2415 =head1 Configuration File
2416
2417 The BackupPC configuration file resides in __TOPDIR__/conf/config.pl.
2418 Optional per-PC configuration files reside in __TOPDIR__/pc/$host/config.pl.
2419 This file can be used to override settings just for a particular PC.
2420
2421 =head2 Modifying the main configuration file
2422
2423 The configuration file is a perl script that is executed by BackupPC, so
2424 you should be careful to preserve the file syntax (punctuation, quotes
2425 etc) when you edit it. It is recommended that you use CVS, RCS or some
2426 other method of source control for changing config.pl.
2427
2428 BackupPC reads or re-reads the main configuration file and
2429 the hosts file in three cases:
2430
2431 =over 4
2432
2433 =item *
2434
2435 Upon startup.
2436
2437 =item *
2438
2439 When BackupPC is sent a HUP (-1) signal.  Assuming you installed the 
2440 init.d script, you can also do this with "/etc/init.d/backuppc reload".
2441
2442 =item *
2443
2444 When the modification time of config.pl file changes.  BackupPC
2445 checks the modification time once during each regular wakeup.
2446
2447 =back
2448
2449 Whenever you change the configuration file you can either do
2450 a kill -HUP BackupPC_pid or simply wait until the next regular
2451 wakeup period.
2452
2453 Each time the configuration file is re-read a message is reported in the
2454 LOG file, so you can tail it (or view it via the CGI interface) to make
2455 sure your kill -HUP worked. Errors in parsing the configuration file are
2456 also reported in the LOG file.
2457
2458 The optional per-PC configuration file (__TOPDIR__/pc/$host/config.pl)
2459 is read whenever it is needed by BackupPC_dump, BackupPC_link and others.
2460
2461 =head2 Configuration file includes
2462
2463 If you have a heterogeneous set of clients (eg: a variety of WinXX and
2464 linux/unix machines) you will need to create host-specific config.pl files
2465 for some or all of these machines to customize the default settings from
2466 the master config.pl file (at a minimum to set $Conf{XferMethod}).
2467
2468 Since the config.pl file is just regular perl code, you can include
2469 one config file from another.  For example, imagine you had three general
2470 classes of machines: WinXX desktops, linux machines in the DMZ and
2471 linux desktops.  You could create three config files in __TOPDIR__/conf:
2472
2473     __TOPDIR__/conf/ConfigWinDesktop.pl
2474     __TOPDIR__/conf/ConfigLinuxDMZ.pl
2475     __TOPDIR__/conf/ConfigLinuxDesktop.pl
2476
2477 From each client's directory you can either add a symbolic link to
2478 the appropriate config file:
2479
2480     cd __TOPDIR__/pc/$host
2481     ln -s ../../conf/ConfigWinDesktop.pl config.pl
2482
2483 or, better yet, create a config.pl file in __TOPDIR__/pc/$host
2484 that contains this line:
2485
2486     do "../../conf/ConfigWinDesktop.pl";
2487
2488 This alternative allows you to set other configuration options
2489 specific to each host (perhaps even overriding the settings in
2490 the included file).
2491
2492 Note that you could also include snippets of configuration settings
2493 from the main configuration file.  However, be aware that the
2494 modification-time checking that BackupPC does only applies to the
2495 main configuration file: if you change one of the included files,
2496 BackupPC won't notice.  You will need to either touch the main
2497 configuration file too, or send BackupPC a HUP (-1) signal.
2498
2499 =head1 Configuration Parameters
2500
2501 The configuration parameters are divided into five general groups.
2502 The first group (general server configuration) provides general
2503 configuration for BackupPC.  The next two groups describe what to
2504 backup, when to do it, and how long to keep it.  The fourth group
2505 are settings for email reminders, and the final group contains
2506 settings for the CGI interface.
2507
2508 All configuration settings in the second through fifth groups can
2509 be overridden by the per-PC config.pl file.
2510
2511 __CONFIGPOD__
2512
2513 =head1 Version Numbers
2514
2515 Starting with v1.4.0 BackupPC switched to a X.Y.Z version numbering
2516 system, instead of X.0Y. The first digit is for major new releases, the
2517 middle digit is for significant feature releases and improvements (most
2518 of the releases have been in this category), and the last digit is for
2519 bug fixes. You should think of the old 1.00, 1.01, 1.02 and 1.03 as
2520 1.0.0, 1.1.0, 1.2.0 and 1.3.0.
2521
2522 =head1 Author
2523
2524 Craig Barratt  <cbarratt@users.sourceforge.net>
2525
2526 See L<http://backuppc.sourceforge.net>.
2527
2528 =head1 Copyright
2529
2530 Copyright (C) 2001-2002 Craig Barratt
2531
2532 =head1 Credits
2533
2534 Ryan Kucera contributed the directory navigation code and images
2535 for v1.5.0.  He also contributed the first skeleton of BackupPC_restore.
2536
2537 Guillaume Filion wrote BackupPC_zipCreate and added the CGI support
2538 for zip download, in addition to some CGI cleanup, for v1.5.0.
2539
2540 Several people have reported bugs or made useful suggestions; see the
2541 ChangeLog.
2542
2543 Your name could appear here in the next version!
2544
2545 =head1 License
2546
2547 This program is free software; you can redistribute it and/or modify it
2548 under the terms of the GNU General Public License as published by the
2549 Free Software Foundation; either version 2 of the License, or (at your
2550 option) any later version.
2551
2552 This program is distributed in the hope that it will be useful,
2553 but WITHOUT ANY WARRANTY; without even the implied warranty of
2554 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2555 General Public License for more details.
2556
2557 You should have received a copy of the GNU General Public License in the
2558 LICENSE file along with this program; if not, write to the Free Software
2559 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.