3 // This file is part of Moodle - http://moodle.org/
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
19 * Defines various element classes used in specific areas
21 * @package core_backup
24 * @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
25 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
28 defined('MOODLE_INTERNAL') ||
die();
31 * Implementation of backup_final_element that provides one interceptor for anonymization of data
33 * This class overwrites the standard set_value() method, in order to get (by name)
34 * functions from backup_anonymizer_helper executed, producing anonymization of information
35 * to happen in a clean way
37 * TODO: Finish phpdocs
39 class anonymizer_final_element
extends backup_final_element
{
41 public function set_value($value) {
43 $pname = $this->get_parent()->get_name();
45 $myname = $this->get_name();
46 // Define class and function name
47 $classname = 'backup_anonymizer_helper';
48 $methodname= 'process_' . $pname . '_' . $myname;
49 // Invoke the interception method
50 $result = call_user_func(array($classname, $methodname), $value);
52 parent
::set_value($result);
57 * Implementation of backup_final_element that provides special handling of mnethosturl
59 * This class overwrites the standard set_value() method, in order to decide,
60 * based on various config options, what to do with the field.
62 * TODO: Finish phpdocs
64 class mnethosturl_final_element
extends backup_final_element
{
66 public function set_value($value) {
69 $localhostwwwroot = backup_plan_dbops
::get_mnet_localhost_wwwroot();
71 // If user wwwroot matches mnet local host one or if
72 // there isn't associated wwwroot, skip sending it to file
73 if ($localhostwwwroot == $value ||
empty($value)) {
76 parent
::set_value($value);
82 * Implementation of {@link backup_final_element} that provides base64 encoding.
84 * This final element transparently encodes with base64_encode() contents that
85 * normally are not safe for being stored in utf-8 xml files (binaries, serialized
88 class base64_encode_final_element
extends backup_final_element
{
91 * Set the value for the final element, encoding it as utf-8/xml safe base64.
93 * @param string $value Original value coming from backup step source, usually db.
95 public function set_value($value) {
96 // Avoid null being passed to base64_encode.
97 $value = $value ??
'';
98 parent
::set_value(base64_encode($value));
103 * Implementation of {@link backup_final_element} that provides symmetric-key AES-256 encryption of contents.
105 * This final element transparently encrypts, for secure storage and transport, any content
106 * that shouldn't be shown normally in plain text. Usually, passwords or keys that cannot use
107 * hashing algorithms, although potentially can encrypt any content. All information is encoded
111 * - requires openssl extension to work. Without it contents are completely omitted.
112 * - automatically creates an appropriate default key for the site and stores it into backup_encryptkey config (bas64 encoded).
113 * - uses a different appropriate init vector for every operation, which is transmited with the encrypted contents.
114 * - all generated data is base64 encoded for safe transmission.
115 * - automatically adds "encrypted" attribute for easier detection.
116 * - implements HMAC for providing integrity.
118 * @copyright 2017 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
119 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
121 class encrypted_final_element
extends backup_final_element
{
123 /** @var string cypher appropiate raw key for backups in the site. Defaults to backup_encryptkey config. */
124 protected $key = null;
127 * Constructor - instantiates a encrypted_final_element, specifying its basic info.
129 * Overridden to automatically add the 'encrypted' attribute if missing.
131 * @param string $name name of the element
132 * @param array $attributes attributes this element will handle (optional, defaults to null)
134 public function __construct($name, $attributes = null) {
135 parent
::__construct($name, $attributes);
136 if (! $this->get_attribute('encrypted')) {
137 $this->add_attributes('encrypted');
142 * Set the encryption key manually, overriding default backup_encryptkey config.
144 * @param string $key key to be used for encrypting. Required to be 256-bit key.
145 * Use a safe generation technique. See self::generate_encryption_random_key() below.
147 protected function set_key($key) {
148 $bytes = strlen($key); // Get key length in bytes.
150 // Only accept keys with the expected (backup::CIPHERKEYLEN) key length. There are a number of hashing,
151 // random generators to achieve this esasily, like the one shown below to create the default
152 // site encryption key and ivs.
153 if ($bytes !== backup
::CIPHERKEYLEN
) {
154 $info = (object)array('expected' => backup
::CIPHERKEYLEN
, 'found' => $bytes);
155 throw new base_element_struct_exception('encrypted_final_element incorrect key length', $info);
157 // Everything went ok, store the key.
162 * Set the value of the field.
164 * This method sets the value of the element, encrypted using the specified key for it,
165 * defaulting to (and generating) backup_encryptkey config. HMAC is used for integrity.
167 * @param string $value plain-text content the will be stored encrypted and encoded.
169 public function set_value($value) {
171 // No openssl available, skip this field completely.
172 if (!function_exists('openssl_encrypt')) {
176 // No hmac available, skip this field completely.
177 if (!function_exists('hash_hmac')) {
181 // Cypher not available, skip this field completely.
182 if (!in_array(backup
::CIPHER
, openssl_get_cipher_methods())) {
186 // Ensure we have a good key, manual or default.
187 if (empty($this->key
)) {
188 // The key has not been set manually, look for it at config (base64 encoded there).
189 $enckey = get_config('backup', 'backup_encryptkey');
190 if ($enckey === false) {
191 // Has not been set, calculate and save an appropiate random key automatically.
192 $enckey = base64_encode(self
::generate_encryption_random_key(backup
::CIPHERKEYLEN
));
193 set_config('backup_encryptkey', $enckey, 'backup');
195 $this->set_key(base64_decode($enckey));
198 // Now we need an iv for this operation.
199 $iv = self
::generate_encryption_random_key(openssl_cipher_iv_length(backup
::CIPHER
));
201 // Everything is ready, let's encrypt and prepend the 1-shot iv.
202 $value = $iv . openssl_encrypt($value ??
'', backup
::CIPHER
, $this->key
, OPENSSL_RAW_DATA
, $iv);
204 // Calculate the hmac of the value (iv + encrypted) and prepend it.
205 $hmac = hash_hmac('sha256', $value, $this->key
, true);
206 $value = $hmac . $value;
208 // Ready, set the encoded value.
209 parent
::set_value(base64_encode($value));
211 // Finally, if the field has an "encrypted" attribute, set it to true.
212 if ($att = $this->get_attribute('encrypted')) {
213 $att->set_value('true');
218 * Generate an appropiate random key to be used for encrypting backup information.
220 * Normally used as site default encryption key (backup_encryptkey config) and also
221 * for calculating the init vectors.
223 * Note that until PHP 5.6.12 openssl_random_pseudo_bytes() did NOT
224 * use a "cryptographically strong algorithm" {@link https://bugs.php.net/bug.php?id=70014}
225 * But it's beyond my crypto-knowledge when it's worth finding a *real* better alternative.
227 * @param int $bytes Number of bytes to determine the key length expected.
229 protected static function generate_encryption_random_key($bytes) {
230 return openssl_random_pseudo_bytes($bytes);
235 * Implementation of backup_nested_element that provides special handling of files
237 * This class overwrites the standard fill_values() method, so it gets intercepted
238 * for each file record being set to xml, in order to copy, at the same file, the
239 * physical file from moodle file storage to backup file storage
241 * TODO: Finish phpdocs
243 class file_nested_element
extends backup_nested_element
{
247 public function process($processor) {
248 // Get current backupid from processor, we'll need later
249 if (is_null($this->backupid
)) {
250 $this->backupid
= $processor->get_var(backup
::VAR_BACKUPID
);
252 return parent
::process($processor);
255 public function fill_values($values) {
257 parent
::fill_values($values);
258 // Do our own tasks (copy file from moodle to backup)
260 backup_file_manager
::copy_file_moodle2backup($this->backupid
, $values);
261 } catch (file_exception
$e) {
262 $this->add_result(array('missing_files_in_pool' => true));
264 // Build helpful log message with all information necessary to identify
266 $context = context
::instance_by_id($values->contextid
, IGNORE_MISSING
);
269 $contextname = ' \'' . $context->get_context_name() . '\'';
271 $message = 'Missing file in pool: ' . $values->filepath
. $values->filename
.
272 ' (context ' . $values->contextid
. $contextname . ', component ' .
273 $values->component
. ', filearea ' . $values->filearea
. ', itemid ' .
274 $values->itemid
. ') [' . $e->debuginfo
. ']';
275 $this->add_log($message, backup
::LOG_WARNING
);
281 * Implementation of backup_optigroup_element to be used by plugins stuff.
282 * Split just for better separation and future specialisation
284 class backup_plugin_element
extends backup_optigroup_element
{ }
287 * Implementation of backup_optigroup_element to be used by subplugins stuff.
288 * Split just for better separation and future specialisation
290 class backup_subplugin_element
extends backup_optigroup_element
{ }