mithril_persistence/database/
version_checker.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
use anyhow::{anyhow, Context};
use chrono::Utc;
use slog::{debug, error, info, Logger};
use std::{cmp::Ordering, collections::BTreeSet};

use mithril_common::{logging::LoggerExtensions, StdError, StdResult};

use super::{
    ApplicationNodeType, DatabaseVersion, DbVersion, GetDatabaseVersionQuery,
    UpdateDatabaseVersionQuery,
};

use crate::sqlite::{ConnectionExtensions, SqliteConnection};

/// Struct to perform application version check in the database.
pub struct DatabaseVersionChecker<'conn> {
    /// Pathbuf to the SQLite3 file.
    connection: &'conn SqliteConnection,

    /// Application type which vesion is verified.
    application_type: ApplicationNodeType,

    /// logger
    logger: Logger,

    /// known migrations
    migrations: BTreeSet<SqlMigration>,
}

impl<'conn> DatabaseVersionChecker<'conn> {
    /// constructor
    pub fn new(
        logger: Logger,
        application_type: ApplicationNodeType,
        connection: &'conn SqliteConnection,
    ) -> Self {
        let migrations = BTreeSet::new();

        Self {
            connection,
            application_type,
            logger: logger.new_with_component_name::<Self>(),
            migrations,
        }
    }

    /// Register a migration.
    pub fn add_migration(&mut self, migration: SqlMigration) -> &mut Self {
        let _ = self.migrations.insert(migration);

        self
    }

    /// Apply migrations
    pub fn apply(&self) -> StdResult<()> {
        debug!(&self.logger, "Check database version",);
        self.create_table_if_not_exists(&self.application_type)
            .with_context(|| "Can not create table 'db_version' while applying migrations")?;
        let db_version = self
            .connection
            .fetch_first(GetDatabaseVersionQuery::get_application_version(
                &self.application_type,
            ))
            .with_context(|| "Can not get application version while applying migrations")?
            .unwrap(); // At least a record exists.

        // the current database version is equal to the maximum migration
        // version present in this software.
        // If no migration registered then version = 0.
        let migration_version = self.migrations.iter().map(|m| m.version).max().unwrap_or(0);

        match migration_version.cmp(&db_version.version) {
            Ordering::Greater => {
                debug!(
                    &self.logger,
                    "Database needs upgrade from version '{}' to version '{}', applying new migrations…",
                    db_version.version, migration_version
                );
                self.apply_migrations(&db_version, self.connection)?;
                info!(
                    &self.logger,
                    "Database upgraded to version '{migration_version}'"
                );
            }
            Ordering::Less => {
                error!(
                    &self.logger,
                    "Software version '{}' is older than database structure version '{}'.",
                    db_version.version,
                    migration_version,
                );

                Err(anyhow!("This software version is older than the database structure. Aborting launch to prevent possible data corruption."))?;
            }
            Ordering::Equal => {
                debug!(&self.logger, "database up to date");
            }
        };

        Ok(())
    }

    fn apply_migrations(
        &self,
        starting_version: &DatabaseVersion,
        connection: &SqliteConnection,
    ) -> StdResult<()> {
        for migration in &self
            .migrations
            .iter()
            .filter(|&m| m.version > starting_version.version)
            .collect::<Vec<&SqlMigration>>()
        {
            self.check_minimum_required_version(starting_version.version, migration)?;
            connection.execute(&migration.alterations)?;
            let db_version = DatabaseVersion {
                version: migration.version,
                application_type: self.application_type.clone(),
                updated_at: Utc::now(),
            };
            let _ = connection
                .fetch_first(UpdateDatabaseVersionQuery::one(db_version))
                .with_context(|| {
                    format!(
                        "Can not save database version when applying migration: '{}'",
                        migration.version
                    )
                })?;
        }

        Ok(())
    }

    /// Method to create the table at the beginning of the migration procedure.
    /// This code is temporary and should not last.
    pub fn create_table_if_not_exists(
        &self,
        application_type: &ApplicationNodeType,
    ) -> StdResult<()> {
        let connection = self.connection;
        let table_exists = connection.query_single_cell::<_, i64>(
            "select exists(select name from sqlite_master where type='table' and name='db_version') as table_exists",
            &[],
        )? == 1;

        if !table_exists {
            let sql = format!("
create table db_version (application_type text not null primary key, version integer not null, updated_at text not null);
insert into db_version (application_type, version, updated_at) values ('{application_type}', 0, '{}');
", Utc::now().to_rfc3339());
            connection.execute(sql)?;
        }

        Ok(())
    }

    /// Checks if the database version meets the minimum required version to apply a squashed migration.
    /// If the database version 0 or if the migration doesn't specify a fallback distribution version, the check passes.
    /// For migrations with a fallback distribution version, the check passes if the database version is exactly
    /// one less than the migration version (i.e., there's no gap between them).
    fn check_minimum_required_version(
        &self,
        db_version: DbVersion,
        migration: &SqlMigration,
    ) -> StdResult<()> {
        if db_version == 0 {
            return Ok(());
        }

        if let Some(fallback_distribution_version) = &migration.fallback_distribution_version {
            let min_required_version = migration.version - 1;
            if db_version < min_required_version {
                return Err(self.generate_fallback_migration_error(
                    migration.version,
                    fallback_distribution_version,
                ));
            }
        }

        Ok(())
    }

    fn generate_fallback_migration_error(
        &self,
        migration_version: i64,
        fallback_distribution_version: &str,
    ) -> StdError {
        anyhow!(
            r#"
                Minimum required database version is not met to apply migration '{}'.
                Please migrate your {} node database with the minimum node version compatible available in the distribution: '{}'.

                First, download the required node version in your current directory by running the following command:
                curl --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/input-output-hk/mithril/refs/heads/main/mithril-install.sh | sh -s -- -c mithril-{} -d {} -p $(pwd)

                Then run the database migrate command:
                mithril-{} database migrate --stores-directory /path/to/stores-directory
            "#,
            migration_version,
            self.application_type.to_string(),
            fallback_distribution_version,
            self.application_type.to_string(),
            fallback_distribution_version,
            self.application_type.to_string()
        )
    }
}

/// Represent a file containing SQL structure or data alterations.
#[derive(Debug, Clone)]
pub struct SqlMigration {
    /// The semver version this migration targets.
    pub version: DbVersion,

    /// SQL statements to alter the database.
    pub alterations: String,

    /// The distribution version the user can fallback to in order to update their database before updating to the latest node.
    pub fallback_distribution_version: Option<String>,
}

impl SqlMigration {
    /// Create a new SQL migration instance.
    pub fn new<T: Into<String>>(version: DbVersion, alteration: T) -> Self {
        Self {
            version,
            alterations: alteration.into(),
            fallback_distribution_version: None,
        }
    }

    /// Create a new squashed SQL migration instance with the fallback distribution version.
    pub fn new_squashed<T: Into<String>>(
        version: DbVersion,
        fallback_distribution_version: T,
        alteration: T,
    ) -> Self {
        Self {
            version,
            alterations: alteration.into(),
            fallback_distribution_version: Some(fallback_distribution_version.into()),
        }
    }
}

impl PartialOrd for SqlMigration {
    fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
        Some(self.cmp(other))
    }
}

impl Ord for SqlMigration {
    fn cmp(&self, other: &Self) -> Ordering {
        self.version.cmp(&other.version)
    }
}

impl PartialEq for SqlMigration {
    fn eq(&self, other: &Self) -> bool {
        self.version.eq(&other.version)
    }
}

impl Eq for SqlMigration {}

#[cfg(test)]
mod tests {
    use anyhow::Context;
    use mithril_common::test_utils::TempDir;
    use mithril_common::{current_function, StdResult};
    use sqlite::{Connection, ConnectionThreadSafe};
    use std::path::PathBuf;

    use super::*;

    const CREATE_TABLE_SQL_REQUEST: &str = "create table whatever (thing_id integer); insert into whatever (thing_id) values (1), (2), (3), (4);";
    const ALTER_TABLE_SQL_REQUEST: &str = "alter table whatever add column thing_content text; update whatever set thing_content = 'some content'";

    fn discard_logger() -> Logger {
        Logger::root(slog::Discard, slog::o!())
    }

    fn check_database_version(connection: &SqliteConnection, db_version: DbVersion) {
        let version = connection
            .fetch_first(GetDatabaseVersionQuery::get_application_version(
                &ApplicationNodeType::Aggregator,
            ))
            .unwrap()
            .unwrap();

        assert_eq!(db_version, version.version);
    }

    fn create_sqlite_file(test_name: &str) -> StdResult<(PathBuf, SqliteConnection)> {
        let dirpath = TempDir::create("mithril_test_database", test_name);
        let filepath = dirpath.join("db.sqlite3");

        let connection = Connection::open_thread_safe(&filepath)
            .with_context(|| "connection to sqlite file failure")?;

        Ok((filepath, connection))
    }

    fn get_table_whatever_column_count(connection: &SqliteConnection) -> i64 {
        let sql = "select count(*) as column_count from pragma_table_info('whatever');";
        let column_count = connection
            .prepare(sql)
            .unwrap()
            .iter()
            .next()
            .unwrap()
            .unwrap()
            .read::<i64, _>(0);

        column_count
    }

    fn create_db_checker(connection: &ConnectionThreadSafe) -> DatabaseVersionChecker {
        DatabaseVersionChecker::new(
            discard_logger(),
            ApplicationNodeType::Aggregator,
            connection,
        )
    }

    #[test]
    fn test_upgrade_with_migration() {
        let (_filepath, connection) = create_sqlite_file(current_function!()).unwrap();
        let mut db_checker = create_db_checker(&connection);

        db_checker.apply().unwrap();
        assert_eq!(0, get_table_whatever_column_count(&connection));

        db_checker.apply().unwrap();
        assert_eq!(0, get_table_whatever_column_count(&connection));

        let alterations = "create table whatever (thing_id integer); insert into whatever (thing_id) values (1), (2), (3), (4);";
        let migration = SqlMigration {
            version: 1,
            alterations: alterations.to_string(),
            fallback_distribution_version: None,
        };
        db_checker.add_migration(migration);
        db_checker.apply().unwrap();
        assert_eq!(1, get_table_whatever_column_count(&connection));
        check_database_version(&connection, 1);

        db_checker.apply().unwrap();
        assert_eq!(1, get_table_whatever_column_count(&connection));
        check_database_version(&connection, 1);

        let alterations = "alter table whatever add column thing_content text; update whatever set thing_content = 'some content'";
        let migration = SqlMigration {
            version: 2,
            alterations: alterations.to_string(),
            fallback_distribution_version: None,
        };
        db_checker.add_migration(migration);
        db_checker.apply().unwrap();
        assert_eq!(2, get_table_whatever_column_count(&connection));
        check_database_version(&connection, 2);

        // in the test below both migrations are declared in reversed order to
        // ensure they are played in the right order. The last one depends on
        // the 3rd.
        let alterations = "alter table whatever add column one_last_thing text; update whatever set one_last_thing = more_thing";
        let migration = SqlMigration {
            version: 4,
            alterations: alterations.to_string(),
            fallback_distribution_version: None,
        };
        db_checker.add_migration(migration);
        let alterations = "alter table whatever add column more_thing text; update whatever set more_thing = 'more thing'";
        let migration = SqlMigration {
            version: 3,
            alterations: alterations.to_string(),
            fallback_distribution_version: None,
        };
        db_checker.add_migration(migration);
        db_checker.apply().unwrap();
        assert_eq!(4, get_table_whatever_column_count(&connection));
        check_database_version(&connection, 4);
    }

    #[test]
    fn test_upgrade_with_migration_with_a_version_gap() {
        let (_filepath, connection) = create_sqlite_file(current_function!()).unwrap();
        let mut db_checker = create_db_checker(&connection);

        let alterations = "create table whatever (thing_id integer); insert into whatever (thing_id) values (1), (2), (3), (4);";
        let migration = SqlMigration {
            version: 3,
            alterations: alterations.to_string(),
            fallback_distribution_version: None,
        };
        db_checker.add_migration(migration);
        db_checker.apply().unwrap();
        assert_eq!(1, get_table_whatever_column_count(&connection));
        check_database_version(&connection, 3);

        let alterations = "alter table whatever add column thing_content text; update whatever set thing_content = 'some content'";
        let migration_with_version_gap = SqlMigration {
            version: 10,
            alterations: alterations.to_string(),
            fallback_distribution_version: None,
        };
        db_checker.add_migration(migration_with_version_gap);
        db_checker.apply().unwrap();
        assert_eq!(2, get_table_whatever_column_count(&connection));
        check_database_version(&connection, 10);
    }

    #[test]
    fn starting_with_migration() {
        let (_filepath, connection) = create_sqlite_file(current_function!()).unwrap();
        let mut db_checker = create_db_checker(&connection);

        let alterations = "create table whatever (thing_id integer); insert into whatever (thing_id) values (1), (2), (3), (4);";
        let migration = SqlMigration {
            version: 1,
            alterations: alterations.to_string(),
            fallback_distribution_version: None,
        };
        db_checker.add_migration(migration);
        db_checker.apply().unwrap();
        assert_eq!(1, get_table_whatever_column_count(&connection));
        check_database_version(&connection, 1);
    }

    #[test]
    /// This test case ensure that when multiple migrations are played and one fails:
    /// * previous migrations are ok and the database version is updated
    /// * further migrations are not played.
    fn test_failing_migration() {
        let (_filepath, connection) = create_sqlite_file(current_function!()).unwrap();
        let mut db_checker = create_db_checker(&connection);
        // Table whatever does not exist, this should fail with error.
        let alterations = "create table whatever (thing_id integer); insert into whatever (thing_id) values (1), (2), (3), (4);";
        let migration = SqlMigration {
            version: 1,
            alterations: alterations.to_string(),
            fallback_distribution_version: None,
        };
        db_checker.add_migration(migration);
        let alterations = "alter table wrong add column thing_content text; update whatever set thing_content = 'some content'";
        let migration = SqlMigration {
            version: 2,
            alterations: alterations.to_string(),
            fallback_distribution_version: None,
        };
        db_checker.add_migration(migration);
        let alterations = "alter table whatever add column thing_content text; update whatever set thing_content = 'some content'";
        let migration = SqlMigration {
            version: 3,
            alterations: alterations.to_string(),
            fallback_distribution_version: None,
        };
        db_checker.add_migration(migration);
        db_checker.apply().unwrap_err();
        check_database_version(&connection, 1);
    }

    #[test]
    fn test_fail_downgrading() {
        let (_filepath, connection) = create_sqlite_file(current_function!()).unwrap();
        let mut db_checker = create_db_checker(&connection);
        let migration = SqlMigration {
            version: 1,
            alterations: CREATE_TABLE_SQL_REQUEST.to_string(),
            fallback_distribution_version: None,
        };
        db_checker.add_migration(migration);
        db_checker.apply().unwrap();
        check_database_version(&connection, 1);

        // re instantiate a new checker with no migration registered (version 0).
        let db_checker = create_db_checker(&connection);
        assert!(
            db_checker.apply().is_err(),
            "using an old version with an up to date database should fail"
        );
        check_database_version(&connection, 1);
    }

    #[test]
    fn check_minimum_required_version_does_not_fail_when_no_fallback_distribution_version() {
        let (_filepath, connection) = create_sqlite_file(current_function!()).unwrap();
        let db_checker = create_db_checker(&connection);

        let alterations = CREATE_TABLE_SQL_REQUEST;
        let migration = SqlMigration {
            version: 3,
            alterations: alterations.to_string(),
            fallback_distribution_version: None,
        };

        db_checker
            .check_minimum_required_version(1, &migration)
            .expect(
            "Check minimum required version should not fail when no fallback distribution version",
        );
    }

    #[test]
    fn check_minimum_required_version_does_not_fail_when_fallback_distribution_version_with_fresh_database(
    ) {
        let (_filepath, connection) = create_sqlite_file(current_function!()).unwrap();
        let db_checker = create_db_checker(&connection);

        let alterations = CREATE_TABLE_SQL_REQUEST;
        let migration = SqlMigration {
            version: 2,
            alterations: alterations.to_string(),
            fallback_distribution_version: Some("2511.0".to_string()),
        };

        db_checker
            .check_minimum_required_version(0, &migration)
            .expect("Check minimum required version should not fail with fresh database");
    }

    #[test]
    fn check_minimum_required_version_does_not_fail_when_no_gap_between_db_version_and_migration_version(
    ) {
        let (_filepath, connection) = create_sqlite_file(current_function!()).unwrap();
        let db_checker = create_db_checker(&connection);

        let migration = SqlMigration {
            version: 2,
            alterations: CREATE_TABLE_SQL_REQUEST.to_string(),
            fallback_distribution_version: Some("2511.0".to_string()),
        };

        db_checker
            .check_minimum_required_version(1, &migration)
            .expect("Check minimum required version should not fail when no gap between db version and migration version");
    }

    #[test]
    fn check_minimum_required_version_fails_when_gap_between_db_version_and_migration_version() {
        let (_filepath, connection) = create_sqlite_file(current_function!()).unwrap();
        let db_checker = DatabaseVersionChecker::new(
            discard_logger(),
            ApplicationNodeType::Aggregator,
            &connection,
        );

        let migration = SqlMigration {
            version: 3,
            alterations: CREATE_TABLE_SQL_REQUEST.to_string(),
            fallback_distribution_version: Some("2511.0".to_string()),
        };

        let error = db_checker
            .check_minimum_required_version(1, &migration)
            .expect_err("Check minimum required version should fail when gap between db version and migration version");

        assert!(error.to_string().contains("curl --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/input-output-hk/mithril/refs/heads/main/mithril-install.sh | sh -s -- -c mithril-aggregator -d 2511.0 -p $(pwd)"));
    }

    #[test]
    fn apply_fails_when_trying_to_apply_squashed_migration_on_old_database() {
        let (_filepath, connection) = create_sqlite_file(current_function!()).unwrap();
        let mut db_checker = DatabaseVersionChecker::new(
            discard_logger(),
            ApplicationNodeType::Aggregator,
            &connection,
        );

        let migration = SqlMigration {
            version: 1,
            alterations: CREATE_TABLE_SQL_REQUEST.to_string(),
            fallback_distribution_version: None,
        };
        db_checker.add_migration(migration);
        db_checker.apply().unwrap();
        check_database_version(&connection, 1);

        let squashed_migration = SqlMigration {
            version: 3,
            alterations: ALTER_TABLE_SQL_REQUEST.to_string(),
            fallback_distribution_version: Some("2511.0".to_string()),
        };
        db_checker.add_migration(squashed_migration);

        let error = db_checker
            .apply()
            .expect_err("Should fail when applying squashed migration on old database");

        assert!(error.to_string().contains("curl --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/input-output-hk/mithril/refs/heads/main/mithril-install.sh | sh -s -- -c mithril-aggregator -d 2511.0 -p $(pwd)"));
    }
}