1 /* backend.c - Dispatcher to the various backends.
2 * Copyright (C) 2009 Free Software Foundation, Inc.
4 * This file is part of GnuPG.
6 * GnuPG is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
11 * GnuPG is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
32 #include "be-truecrypt.h"
36 no_such_backend (int conttype
)
38 log_error ("invalid backend %d given - this is most likely a bug\n",
40 return gpg_error (GPG_ERR_INTERNAL
);
44 /* Return true if CONTTYPE is supported by us. */
46 be_is_supported_conttype (int conttype
)
60 /* If the backend requires a separate file or directory for the
61 container, return its name by computing it from FNAME which gives
62 the g13 filename. The new file name is allocated and stored at
63 R_NAME, if this is expected to be a directory true is stored at
64 R_ISDIR. If no detached name is expected or an error occurs NULL
65 is stored at R_NAME. The function returns 0 on success or an error
68 be_get_detached_name (int conttype
, const char *fname
,
69 char **r_name
, int *r_isdir
)
76 return be_encfs_get_detached_name (fname
, r_name
, r_isdir
);
79 return no_such_backend (conttype
);
85 be_create_new_keys (int conttype
, membuf_t
*mb
)
90 return be_encfs_create_new_keys (mb
);
92 case CONTTYPE_TRUECRYPT
:
93 return be_truecrypt_create_new_keys (mb
);
96 return no_such_backend (conttype
);
101 /* Dispatcher to the backend's create function. */
103 be_create_container (ctrl_t ctrl
, int conttype
,
104 const char *fname
, int fd
, tupledesc_t tuples
,
107 (void)fd
; /* Not yet used. */
112 return be_encfs_create_container (ctrl
, fname
, tuples
, r_id
);
115 return no_such_backend (conttype
);
120 /* Dispatcher to the backend's mount function. */
122 be_mount_container (ctrl_t ctrl
, int conttype
,
123 const char *fname
, const char *mountpoint
,
124 tupledesc_t tuples
, unsigned int *r_id
)
129 return be_encfs_mount_container (ctrl
, fname
, mountpoint
, tuples
, r_id
);
132 return no_such_backend (conttype
);