1 // SPDX-License-Identifier: GPL-2.0
3 * fs/verity/init.c: fs-verity module initialization and logging
5 * Copyright 2019 Google LLC
8 #include "fsverity_private.h"
10 #include <linux/ratelimit.h>
12 void fsverity_msg(const struct inode
*inode
, const char *level
,
15 static DEFINE_RATELIMIT_STATE(rs
, DEFAULT_RATELIMIT_INTERVAL
,
16 DEFAULT_RATELIMIT_BURST
);
20 if (!__ratelimit(&rs
))
27 printk("%sfs-verity (%s, inode %lu): %pV\n",
28 level
, inode
->i_sb
->s_id
, inode
->i_ino
, &vaf
);
30 printk("%sfs-verity: %pV\n", level
, &vaf
);
34 static int __init
fsverity_init(void)
38 fsverity_check_hash_algs();
40 err
= fsverity_init_info_cache();
44 err
= fsverity_init_workqueue();
46 goto err_exit_info_cache
;
48 err
= fsverity_init_signature();
50 goto err_exit_workqueue
;
52 pr_debug("Initialized fs-verity\n");
56 fsverity_exit_workqueue();
58 fsverity_exit_info_cache();
61 late_initcall(fsverity_init
)