dbf964363b4e9be895e54631f37915495474db9a
[matthijs/upstream/backupninja.git] / handlers / dup.helper
1 # -*- mode: sh; sh-basic-offset: 3; indent-tabs-mode: nil; -*-
2
3 HELPERS="$HELPERS dup:incremental_encrypted_remote_filesystem_backup"
4
5 ### Functions
6
7 do_dup_host_includes() {
8    set -o noglob
9    # choose the files to backup
10    REPLY=
11    while [ -z "$REPLY" ]; do
12       formBegin "$dup_title - host system: includes"
13          [ -z "$dup_includes" ] && dup_includes="$dup_default_includes"
14          for i in $dup_includes; do
15             formItem include "$i"
16          done
17          formItem include ""
18          formItem include ""
19          formItem include ""
20          formDisplay
21       [ $? = 0 ] || return 1
22       dup_includes="$REPLY"
23    done
24    set +o noglob
25 }
26
27 do_dup_vserver() {
28    # choose the vservers to backup (into $selected_vservers)
29    choose_one_or_more_vservers "$dup_title"
30    [ $? = 0 ] || return 1
31
32    set -o noglob
33    # choose the files to backup
34    REPLY=
35    while [ -z "$REPLY" ]; do
36       formBegin "$dup_title - vservers: vsincludes (backup these directories from every selected vserver)"
37          [ -z "$dup_vsincludes" ] && dup_vsincludes="$dup_default_includes"
38          for i in $dup_vsincludes; do
39             formItem include "$i"
40          done
41          formItem include ""
42          formItem include ""
43          formItem include ""
44       formDisplay
45       [ $? = 0 ] || return 1
46       dup_vsincludes="$REPLY"
47    done
48    set +o noglob
49 }
50
51 do_dup_excludes() {
52    set -o noglob
53    formBegin "$dup_title: excludes"
54      [ -z "$dup_excludes" ] && dup_excludes="$dup_default_excludes"
55      for i in $dup_excludes; do
56         formItem exclude "$i"
57      done
58      formItem exclude ""
59      formItem exclude ""
60      formItem exclude ""
61    formDisplay
62    [ $? = 0 ] || return 1
63    dup_excludes="$REPLY"
64    set +o noglob
65 }
66
67 do_dup_src() {
68    choose_host_or_vservers_or_both "$dup_title"
69    [ $? = 0 ] || return 1
70    case $host_or_vservers in
71       'host')
72          do_dup_host_includes
73          [ $? = 0 ] || return 1
74          ;;
75       'vservers')
76          do_dup_vserver
77          [ $? = 0 ] || return 1
78          ;;
79       'both')
80          do_dup_host_includes
81          [ $? = 0 ] || return 1
82          do_dup_vserver
83          [ $? = 0 ] || return 1
84          ;;
85       *)
86          return 1
87          ;;
88    esac
89    do_dup_excludes
90    [ $? = 0 ] || return 1
91    
92    _src_done="(DONE)"
93    setDefault dest
94 }
95
96 do_dup_dest() {
97
98    local replyconverted
99    local thereply
100
101    set -o noglob
102    REPLY=
103    while [ -z "$REPLY" -o -z "$dup_destdir" -o -z "$dup_desthost" -o -z "$dup_destuser" ]; do
104       formBegin "$dup_title - destination: first three items are compulsory"
105         formItem "desthost" "$dup_desthost"
106         formItem "destuser" "$dup_destuser"
107         formItem "destdir" "$dup_destdir"
108         formItem "keep" "$dup_keep"
109         formItem "incremental" "$dup_incremental"
110         formItem "bandwidthlimit" "$dup_bandwidth"
111         formItem "sshoptions" "$dup_sshoptions"
112       formDisplay
113       [ $? = 0 ] || return 1
114
115       IFS=$''
116       replyconverted=`echo $REPLY | tr '\n' :`
117       IFS=$':'
118       thereply=($replyconverted)
119       IFS=$' \t\n'
120       
121       dup_desthost=${thereply[0]}
122       dup_destuser=${thereply[1]}
123       dup_destdir=${thereply[2]}
124       dup_keep=${thereply[3]}
125       dup_incremental=${thereply[4]}
126       dup_bandwidth=${thereply[5]}
127       dup_sshoptions=${thereply[6]}
128
129    done
130    set +o noglob
131
132    _dest_done="(DONE)"
133    setDefault gpg
134 }
135
136 do_dup_gpg_encryptkey() {
137    REPLY=
138    while [ -z "$REPLY" -o -z "$dup_gpg_encryptkey" ]; do
139       inputBox "$dup_title - GnuPG" "Enter ID of the public GnuPG key to be used to encrypt the backups:" "$dup_gpg_encryptkey"
140       [ $? = 0 ] || return 1
141       dup_gpg_encryptkey="$REPLY"
142    done
143 }
144
145 do_dup_gpg_sign() {
146    # sign ?
147    booleanBox "$dup_title - GnuPG" "Sign the backups?" "$dup_gpg_sign"
148    if [ $? = 0 ]; then
149       dup_gpg_sign=yes
150    else
151       dup_gpg_sign=no
152    fi
153 }
154
155 do_dup_gpg_signkey() {
156    # one key pair ?
157    booleanBox "$dup_title - GnuPG" "Use the same GnuPG key pair for encryption and signing?" "$dup_gpg_onekeypair"
158    if [ $? = 0 ]; then
159       dup_gpg_onekeypair=yes
160    else
161       dup_gpg_onekeypair=no
162    fi
163
164    if [ "$dup_gpg_onekeypair" == "no" }; then
165       # signkey ?
166       REPLY=
167       while [ -z "$REPLY" -o -z "$dup_gpg_signkey" ]; do
168          inputBox "$dup_title - GnuPG" "Enter the ID of the private GnuPG key to be used to sign the backups:" "$dup_gpg_signkey"
169          [ $? = 0 ] || return 1
170          dup_gpg_signkey="$REPLY"
171       done
172    fi
173 }
174
175 do_dup_gpg_passphrase() {
176    local question="Enter the passphrase needed to unlock the GnuPG key:"
177    REPLY=
178    while [ -z "$REPLY" -o -z "$dup_gpg_password" ]; do
179       passwordBox "$dup_title - GnuPG" "$question"
180       [ $? = 0 ] || return 1
181       dup_gpg_password="$REPLY"
182    done
183 }
184
185 do_dup_gpg() {
186    
187    # symmetric or public key encryption ?
188    booleanBox "$dup_title - GnuPG" "Use public key encryption? Otherwise, symmetric encryption will be used, and data signing will be impossible." "$dup_gpg_asymmetric_encryption"
189    if [ $? = 0 ]; then
190       dup_gpg_asymmetric_encryption=yes
191    else
192       dup_gpg_asymmetric_encryption=no
193    fi
194
195    # when using public/private key pair encryption, ask for the keys to use
196    if [ "$dup_gpg_asymmetric_encryption" == yes ]; then
197       do_dup_gpg_encryptkey ; [ $? = 0 ] || return 1
198       do_dup_gpg_sign ; [ $? = 0 ] || return 1
199       if [ "$dup_gpg_sign" == yes ]; then
200          do_dup_gpg_signkey ; [ $? = 0 ] || return 1
201       fi
202    fi
203
204    # a passphrase is alway needed
205    do_dup_gpg_passphrase
206
207    _gpg_done="(DONE)"
208    setDefault adv
209    # TODO: replace the above line by the following when do_dup_conn is written
210    # setDefault conn
211 }
212
213 # TODO: share rdiff.helper code in some lib, and use it here
214 do_dup_conn() {
215    _con_done="(DONE)"
216    setDefault adv
217 }
218
219 do_dup_misc_options() {
220
221    set -o noglob
222    local replyconverted
223    local thereply
224
225    formBegin "$dup_title - misc. options"
226      formItem "nicelevel" "$dup_nicelevel"
227      formItem "testconnect" "$dup_testconnect"
228      formItem "options" "$dup_options"
229    formDisplay
230    [ $? = 0 ] || return 1
231
232    IFS=$''
233    replyconverted=`echo $REPLY | tr '\n' :`
234    IFS=$':'
235    thereply=($replyconverted)
236    IFS=$' \t\n'
237
238    dup_nicelevel=${thereply[0]}
239    dup_testconnect=${thereply[1]}
240    dup_options=${thereply[2]}
241
242    set +o noglob
243 }
244
245 # (rdiff.helper compatible interface... there could be some sode to share, hmmm.)
246 do_dup_adv() {
247    do_dup_misc_options
248    [ $? = 0 ] || return 1
249    _adv_done="(DONE)"
250    setDefault finish
251 }
252
253 do_dup_finish() {
254    get_next_filename $configdirectory/90.dup
255    cat > $next_filename <<EOF
256 # passed directly to duplicity
257 #options = --verbosity 8
258 options = $dup_options
259
260 # default is 0, but set to 19 if you want to lower the priority.
261 nicelevel = $dup_nicelevel
262
263 # default is yes. set to no to skip the test if the remote host is alive
264 testconnect = $dup_testconnect
265
266 ######################################################
267 ## gpg section
268 ## (how to encrypt and optionally sign the backups)
269 ##
270 ## WARNING: old (pre-0.9.4) example.dup used to give wrong information about
271 ##          the way the following options are used. Please read the following
272 ##          carefully.
273 ##
274 ## If the encryptkey variable is set:
275 ##   - data is encrypted with the GnuPG public key specified by the encryptkey
276 ##     variable
277 ##   - if signing is enabled, data is signed with the GnuPG private
278 ##     key specified by the signkey variable
279 ##   - the password variable is used to unlock the GnuPG key(s) used
280 ##     for encryption and (optionnal) signing
281 ##
282 ## If the encryptkey option is not set:
283 ##   - data signing is not possible
284 ##   - the password variable is used to encrypt the data with symmetric
285 ##     encryption: no GnuPG key pair is needed
286
287 [gpg]
288
289 # when set to yes, encryptkey variable must be set below; if you want to use
290 # two different keys for encryption and signing, you must also set the signkey
291 # variable below.
292 # default is no, for backwards compatibility with backupninja <= 0.5.
293 sign = $dup_gpg_sign
294
295 # ID of the GnuPG public key used for data encryption.
296 # if not set, symmetric encryption is used, and data signing is not possible.
297 encryptkey = $dup_gpg_encryptkey
298
299 # ID of the GnuPG private key used for data signing.
300 # if not set, encryptkey will be used.
301 signkey = $dup_gpg_signkey
302
303 # password
304 # NB: neither quote this, nor should it include any quotes
305 password = $dup_gpg_password
306
307 ######################################################
308 ## source section
309 ## (where the files to be backed up are coming from)
310
311 [source]
312
313 # WARNING: include, exclude and vsinclude statements support EITHER globbing
314 # with '*' OR symlinks in the path; usage of both in the same statement is *not*
315 # supported and will lead to weird behaviour.
316
317 # files to include in the backup
318 EOF
319
320    if [ "$host_or_vservers" == host -o "$host_or_vservers" == both ]; then
321       set -o noglob
322       for i in $dup_includes; do
323          echo "include = $i" >> $next_filename
324       done
325       set +o noglob
326    fi
327
328    cat >> $next_filename <<EOF
329
330 # If vservers = yes in /etc/backupninja.conf then the following variables can
331 # be used:
332 # vsnames = all | <vserver1> <vserver2> ... (default = all)
333 # vsinclude = <path>
334 # vsinclude = <path>
335 # ...
336 # Any path specified in vsinclude is added to the include list for each vserver
337 # listed in vsnames (or all if vsnames = all, which is the default).
338 #
339 # For example, vsinclude = /home will backup the /home directory in every
340 # vserver listed in vsnames. If you have 'vsnames = foo bar baz', this
341 # vsinclude will add to the include list /vservers/foo/home, /vservers/bar/home
342 # and /vservers/baz/home.
343 # Vservers paths are derived from $VROOTDIR.
344
345 EOF
346
347    if [ "$host_or_vservers" == vservers -o "$host_or_vservers" == both ]; then
348       set -o noglob
349       echo -e "vsnames = $selected_vservers\n" >> $next_filename
350       for i in $dup_vsincludes; do
351          echo "vsinclude = $i" >> $next_filename
352       done
353       set +o noglob
354    fi
355
356    # excludes
357    cat >> $next_filename <<EOF
358
359 # files to exclude from the backup
360 EOF
361     set -o noglob
362     for i in $dup_excludes; do
363         echo "exclude = $i" >> $next_filename
364     done
365     set +o noglob
366
367     cat >> $next_filename <<EOF
368
369 ######################################################
370 ## destination section
371 ## (where the files are copied to)
372
373 [dest]
374
375 # perform an incremental backup? (default = yes)
376 # if incremental = no, perform a full backup in order to start a new backup set
377 incremental = $dup_incremental
378
379 # how many days of data to keep ; default is 60 days.
380 # (you can also use the time format of duplicity)
381 # 'keep = yes' means : do not delete old data, the remote host will take care of this
382 #keep = 60
383 #keep = yes
384 keep = $dup_keep
385
386 # bandwith limit, in kbit/s ; default is 0, i.e. no limit
387 #bandwidthlimit = 128
388 bandwidthlimit = $dup_bandwidth
389
390 # passed directly to ssh and scp
391 #sshoptions = -i /root/.ssh/id_dsa_duplicity
392 sshoptions = $dup_sshoptions
393
394 # put the backups under this directory
395 destdir = $dup_destdir
396
397 # the machine which will receive the backups
398 desthost = $dup_desthost
399
400 # make the files owned by this user
401 # note: you must be able to ssh backupuser@backhost
402 # without specifying a password (if type = remote).
403 destuser = $dup_destuser
404
405 EOF
406
407     chmod 600 $next_filename
408
409 }
410
411 dup_main_menu() {
412
413   while true; do
414      srcitem="choose files to include & exclude $_src_done"
415      destitem="configure backup destination $_dest_done"
416      gpgitem="configure GnuPG encryption/signing $_gpg_done"
417      conitem="set up ssh keys and test remote connection $_con_done"
418      advitem="edit advanced settings $_adv_done"
419      # TODO: add the following to the menu when do_dup_conn is written
420      # conn "$conitem" \
421      menuBox "$dup_title" "choose a step:" \
422         src "$srcitem" \
423         dest "$destitem" \
424         gpg "$gpgitem" \
425         adv "$advitem" \
426         finish "finish and create config file"
427      [ $? = 0 ] || return 1
428      result="$REPLY"
429
430      case "$result" in
431         "src") do_dup_src;;
432         "dest") do_dup_dest;;
433         "gpg") do_dup_gpg;;
434         # TODO: enable the following when do_dup_conn is written
435         # "conn") do_dup_conn;;
436         "adv") do_dup_adv;;
437         "finish")
438            if [[ "$_dest_done$_gpg_done$_src_done" != "(DONE)(DONE)(DONE)" ]]; then
439            # TODO: replace the previous test by the following when do_dup_conn is written
440            # if [[ "$_con_done$_dest_done$_gpg_done$_src_done" != "(DONE)(DONE)(DONE)(DONE)" ]]; then
441               msgBox "$dup_title" "You cannot create the configuration file until the four first steps are completed."
442            else
443               do_dup_finish
444               break
445            fi
446            ;;
447      esac
448
449   done
450 }
451
452 ### Main function
453
454 dup_wizard() {
455    
456    require_packages duplicity
457
458    # Global variables
459    dup_title="Duplicity action wizard"
460    _src_done=
461    _dest_done=
462    _con_done=
463    _gpg_done=
464    _adv_done=
465    dup_includes=
466    dup_excludes=
467    dup_vsincludes=
468    dup_incremental=yes
469    dup_keep=60
470    dup_bandwidth=
471    dup_sshoptions=
472    dup_destdir="/backups/`hostname`"
473    dup_desthost=
474    dup_destuser=
475    dup_gpg_asymmetric_encryption="yes"
476    dup_gpg_encryptkey=""
477    dup_gpg_sign="yes"
478    dup_gpg_onekeypair="yes"
479    dup_gpg_signkey=""
480    dup_gpg_password=""
481    dup_nicelevel=19
482    dup_testconnect=yes
483    dup_options=
484
485    # Global variables whose '*' shall not be expanded
486    set -o noglob
487    dup_default_includes="/var/spool/cron/crontabs /var/backups /etc /root /home /usr/local/*bin /var/lib/dpkg/status*"
488    dup_default_excludes="/home/*/.gnupg /home/*/.gnupg /home/*/.local/share/Trash /home/*/.Trash /home/*/.thumbnails /home/*/.beagle /home/*/.aMule /home/*/gtk-gnutella-downloads"
489    set +o noglob
490
491    dup_main_menu
492 }