]> git.ozlabs.org Git - petitboot/blob - lib/security/none.c
discover/discover-server: Restrict clients based on uid
[petitboot] / lib / security / none.c
1 /*
2  *  Copyright (C) 2016 Raptor Engineering, LLC
3  *  Copyright (C) 2018 Opengear, Inc
4  *
5  *  This program 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; version 2 of the License.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License
15  *  along with this program; if not, write to the Free Software
16  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  */
18
19 #if defined(HAVE_CONFIG_H)
20 #include "config.h"
21 #endif
22
23 #include <stdbool.h>
24 #include <stdlib.h>
25 #include <stdio.h>
26
27 #include <url/url.h>
28
29 #include "security.h"
30
31 int lockdown_status(void) { return PB_LOCKDOWN_NONE; }
32
33 struct pb_url * get_signature_url(void *ctx __attribute__((unused)),
34             struct pb_url *base_file __attribute__((unused)))
35 {
36         return NULL;
37 }
38
39 int verify_file_signature(const char *plaintext_filename __attribute__((unused)),
40     const char *signature_filename __attribute__((unused)),
41     FILE *authorized_signatures_handle __attribute__((unused)),
42     const char *keyring_path __attribute__((unused)))
43 {
44         return -1;
45 }
46
47 int decrypt_file(const char * filename __attribute__((unused)),
48     FILE * authorized_signatures_handle __attribute__((unused)),
49     const char * keyring_path __attribute__((unused)))
50 {
51         return -1;
52 }
53
54 int validate_boot_files(struct boot_task *boot_task __attribute__((unused)))
55 {
56         return 0;
57 }
58
59 void validate_boot_files_cleanup(struct boot_task *boot_task __attribute__((unused)))
60 {}
61