blob: c98b7016f446be963e9ee57d96660335906743ae [file] [log] [blame]
Eric Biggers671e67b2019-07-22 09:26:21 -07001// SPDX-License-Identifier: GPL-2.0
2/*
Eric Biggers7bf765d2020-11-13 13:19:15 -08003 * fs-verity module initialization and logging
Eric Biggers671e67b2019-07-22 09:26:21 -07004 *
5 * Copyright 2019 Google LLC
6 */
7
8#include "fsverity_private.h"
9
10#include <linux/ratelimit.h>
11
12void fsverity_msg(const struct inode *inode, const char *level,
13 const char *fmt, ...)
14{
15 static DEFINE_RATELIMIT_STATE(rs, DEFAULT_RATELIMIT_INTERVAL,
16 DEFAULT_RATELIMIT_BURST);
17 struct va_format vaf;
18 va_list args;
19
20 if (!__ratelimit(&rs))
21 return;
22
23 va_start(args, fmt);
24 vaf.fmt = fmt;
25 vaf.va = &args;
26 if (inode)
27 printk("%sfs-verity (%s, inode %lu): %pV\n",
28 level, inode->i_sb->s_id, inode->i_ino, &vaf);
29 else
30 printk("%sfs-verity: %pV\n", level, &vaf);
31 va_end(args);
32}
33
34static int __init fsverity_init(void)
35{
Eric Biggersfd2d1ac2019-07-22 09:26:22 -070036 int err;
37
Eric Biggers671e67b2019-07-22 09:26:21 -070038 fsverity_check_hash_algs();
39
Eric Biggersfd2d1ac2019-07-22 09:26:22 -070040 err = fsverity_init_info_cache();
41 if (err)
42 return err;
43
Eric Biggers8a1d0f92019-07-22 09:26:22 -070044 err = fsverity_init_workqueue();
45 if (err)
46 goto err_exit_info_cache;
47
Eric Biggers432434c2019-07-22 09:26:23 -070048 err = fsverity_init_signature();
49 if (err)
50 goto err_exit_workqueue;
51
Eric Biggers671e67b2019-07-22 09:26:21 -070052 pr_debug("Initialized fs-verity\n");
53 return 0;
Eric Biggers8a1d0f92019-07-22 09:26:22 -070054
Eric Biggers432434c2019-07-22 09:26:23 -070055err_exit_workqueue:
56 fsverity_exit_workqueue();
Eric Biggers8a1d0f92019-07-22 09:26:22 -070057err_exit_info_cache:
58 fsverity_exit_info_cache();
59 return err;
Eric Biggers671e67b2019-07-22 09:26:21 -070060}
61late_initcall(fsverity_init)