diff options
author | Werner Koch <[email protected]> | 2016-02-13 16:30:14 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2016-02-13 16:30:14 +0000 |
commit | 86f3bb144ad75461eb9b7ac1e59046ac75efccac (patch) | |
tree | b0b5a86c8319b687574ed0fce8ad9bf7edd349f8 /g13/g13-syshelp.c | |
parent | g13: Second chunk of code to support dm-crypt. (diff) | |
download | gnupg-86f3bb144ad75461eb9b7ac1e59046ac75efccac.tar.gz gnupg-86f3bb144ad75461eb9b7ac1e59046ac75efccac.zip |
g13: Require a confirmation before g13 is used for DM-Crypt.
* g13/g13-syshelp.c (g13_syshelp_i_know_what_i_am_doing):
* g13/sh-dmcrypt.c (sh_dmcrypt_create_container): Call it.
(sh_dmcrypt_mount_container): Call it.
Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to 'g13/g13-syshelp.c')
-rw-r--r-- | g13/g13-syshelp.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/g13/g13-syshelp.c b/g13/g13-syshelp.c index cbb5f8dbf..b31964e6e 100644 --- a/g13/g13-syshelp.c +++ b/g13/g13-syshelp.c @@ -577,6 +577,27 @@ release_tab_items (tab_item_t tab) } +void +g13_syshelp_i_know_what_i_am_doing (void) +{ + const char * const yesfile = "Yes-g13-I-know-what-I-am-doing"; + char *fname; + + fname = make_filename (gnupg_sysconfdir (), yesfile, NULL); + if (access (fname, F_OK)) + { + log_info ("*******************************************************\n"); + log_info ("* The G13 support for DM-Crypt is new and not matured.\n"); + log_info ("* Bugs or improper use may delete all your disks!\n"); + log_info ("* To confirm that you are ware of this risk, create\n"); + log_info ("* the file '%s'.\n", fname); + log_info ("*******************************************************\n"); + exit (1); + } + xfree (fname); +} + + /* Parse the /etc/gnupg/g13tab for user USERNAME. Return a table for the user on success. Return NULL on error and print diagnostics. */ |