[v2: added clean-ups, backed off on some of the build silencing]
This is a rather large rearrangement of how a subset of the parser global
variables are defined. Right now, there are unit tests built without
linking against parser_main.c. As a result, none of the globals defined in
parser_main.c could be used in the code that is built for unit tests
(misc, regex, symtab, variable). To get a clean build, either stubs needed
to be added to "#ifdef UNIT_TEST" blocks in each .c file, or we had to
depend on link-time optimizations that would throw out the unused routines.
First, this is a problem because all the compile-time warnings had to be
explicitly silenced, so reviewing the build logs becomes difficult on
failures, and we can potentially (in really unlucky situations) test
something that isn't actually part of the "real" parser.
Second, not all compilers will allow this kind of linking (e.g. mips gcc),
and the missing symbols at link time will fail the entire build even though
they're technically not needed.
To solve all of this, I've moved all of the global variables used in lex,
yacc, and main to parser_common.c, and adjusted the .h files. On top of
this, I made sure to fully link the tst builds so all symbols are resolved
(including aare lib) and removedonly tst build-log silencing (for now,
deferring to another future patchset to consolidate the build silencing).
Signed-off-by: Kees Cook <kees.cook@canonical.com>
2011-05-13 02:12:49 -07:00
|
|
|
/*
|
2012-02-24 04:21:59 -08:00
|
|
|
* Copyright (c) 2010 - 2012
|
|
|
|
* Canonical Ltd. (All rights reserved)
|
[v2: added clean-ups, backed off on some of the build silencing]
This is a rather large rearrangement of how a subset of the parser global
variables are defined. Right now, there are unit tests built without
linking against parser_main.c. As a result, none of the globals defined in
parser_main.c could be used in the code that is built for unit tests
(misc, regex, symtab, variable). To get a clean build, either stubs needed
to be added to "#ifdef UNIT_TEST" blocks in each .c file, or we had to
depend on link-time optimizations that would throw out the unused routines.
First, this is a problem because all the compile-time warnings had to be
explicitly silenced, so reviewing the build logs becomes difficult on
failures, and we can potentially (in really unlucky situations) test
something that isn't actually part of the "real" parser.
Second, not all compilers will allow this kind of linking (e.g. mips gcc),
and the missing symbols at link time will fail the entire build even though
they're technically not needed.
To solve all of this, I've moved all of the global variables used in lex,
yacc, and main to parser_common.c, and adjusted the .h files. On top of
this, I made sure to fully link the tst builds so all symbols are resolved
(including aare lib) and removedonly tst build-log silencing (for now,
deferring to another future patchset to consolidate the build silencing).
Signed-off-by: Kees Cook <kees.cook@canonical.com>
2011-05-13 02:12:49 -07:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of version 2 of the GNU General Public
|
|
|
|
* License published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, contact Novell, Inc. or Canonical,
|
|
|
|
* Ltd.
|
|
|
|
*/
|
2020-08-09 14:51:55 -04:00
|
|
|
#include <iostream>
|
[v2: added clean-ups, backed off on some of the build silencing]
This is a rather large rearrangement of how a subset of the parser global
variables are defined. Right now, there are unit tests built without
linking against parser_main.c. As a result, none of the globals defined in
parser_main.c could be used in the code that is built for unit tests
(misc, regex, symtab, variable). To get a clean build, either stubs needed
to be added to "#ifdef UNIT_TEST" blocks in each .c file, or we had to
depend on link-time optimizations that would throw out the unused routines.
First, this is a problem because all the compile-time warnings had to be
explicitly silenced, so reviewing the build logs becomes difficult on
failures, and we can potentially (in really unlucky situations) test
something that isn't actually part of the "real" parser.
Second, not all compilers will allow this kind of linking (e.g. mips gcc),
and the missing symbols at link time will fail the entire build even though
they're technically not needed.
To solve all of this, I've moved all of the global variables used in lex,
yacc, and main to parser_common.c, and adjusted the .h files. On top of
this, I made sure to fully link the tst builds so all symbols are resolved
(including aare lib) and removedonly tst build-log silencing (for now,
deferring to another future patchset to consolidate the build silencing).
Signed-off-by: Kees Cook <kees.cook@canonical.com>
2011-05-13 02:12:49 -07:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdarg.h>
|
2014-08-23 23:50:43 -07:00
|
|
|
|
[v2: added clean-ups, backed off on some of the build silencing]
This is a rather large rearrangement of how a subset of the parser global
variables are defined. Right now, there are unit tests built without
linking against parser_main.c. As a result, none of the globals defined in
parser_main.c could be used in the code that is built for unit tests
(misc, regex, symtab, variable). To get a clean build, either stubs needed
to be added to "#ifdef UNIT_TEST" blocks in each .c file, or we had to
depend on link-time optimizations that would throw out the unused routines.
First, this is a problem because all the compile-time warnings had to be
explicitly silenced, so reviewing the build logs becomes difficult on
failures, and we can potentially (in really unlucky situations) test
something that isn't actually part of the "real" parser.
Second, not all compilers will allow this kind of linking (e.g. mips gcc),
and the missing symbols at link time will fail the entire build even though
they're technically not needed.
To solve all of this, I've moved all of the global variables used in lex,
yacc, and main to parser_common.c, and adjusted the .h files. On top of
this, I made sure to fully link the tst builds so all symbols are resolved
(including aare lib) and removedonly tst build-log silencing (for now,
deferring to another future patchset to consolidate the build silencing).
Signed-off-by: Kees Cook <kees.cook@canonical.com>
2011-05-13 02:12:49 -07:00
|
|
|
#include "parser.h"
|
2021-04-20 01:32:41 -07:00
|
|
|
#include "file_cache.h"
|
[v2: added clean-ups, backed off on some of the build silencing]
This is a rather large rearrangement of how a subset of the parser global
variables are defined. Right now, there are unit tests built without
linking against parser_main.c. As a result, none of the globals defined in
parser_main.c could be used in the code that is built for unit tests
(misc, regex, symtab, variable). To get a clean build, either stubs needed
to be added to "#ifdef UNIT_TEST" blocks in each .c file, or we had to
depend on link-time optimizations that would throw out the unused routines.
First, this is a problem because all the compile-time warnings had to be
explicitly silenced, so reviewing the build logs becomes difficult on
failures, and we can potentially (in really unlucky situations) test
something that isn't actually part of the "real" parser.
Second, not all compilers will allow this kind of linking (e.g. mips gcc),
and the missing symbols at link time will fail the entire build even though
they're technically not needed.
To solve all of this, I've moved all of the global variables used in lex,
yacc, and main to parser_common.c, and adjusted the .h files. On top of
this, I made sure to fully link the tst builds so all symbols are resolved
(including aare lib) and removedonly tst build-log silencing (for now,
deferring to another future patchset to consolidate the build silencing).
Signed-off-by: Kees Cook <kees.cook@canonical.com>
2011-05-13 02:12:49 -07:00
|
|
|
|
2014-04-23 11:00:32 -07:00
|
|
|
/* Policy versioning is determined by a combination of 3 values:
|
|
|
|
* policy_version: version of txt policy
|
|
|
|
* parser_abi_version: version of abi revision of policy generated by parser
|
|
|
|
* kernel_abi_version: version of abi revision for the kernel
|
|
|
|
*
|
|
|
|
* The version info is stored in a single 32 bit version field in the
|
|
|
|
* header portion of each binary policy file.
|
|
|
|
*
|
|
|
|
* policy_version:
|
|
|
|
* a gross revision number indicating what features and semantics are
|
|
|
|
* expected by the text policy. This does not necessarily map directly
|
|
|
|
* to a feature set as a kernel may not have all the supported features
|
|
|
|
* patched/builtin.
|
|
|
|
*
|
|
|
|
* policy_version is not supported by kernels that only support v5
|
|
|
|
* kernel abi, so it will not be written when creating policy for
|
|
|
|
* those kernels.
|
|
|
|
*
|
|
|
|
* kernel_abi_version:
|
|
|
|
* should be set to the highest version supported by both the parser and
|
|
|
|
* the kernel.
|
|
|
|
* This allows new kernels to detect old userspaces, and new parsers
|
|
|
|
* to support old kernels and policies semantics.
|
|
|
|
*
|
|
|
|
* parser_abi_version:
|
|
|
|
* should be bumped when a compiler error or some other event happens
|
|
|
|
* and policy cache needs to be forced to be recomputed, when the
|
|
|
|
* policy_version or kernel version has not changed.
|
|
|
|
*
|
|
|
|
* parser_abi_version is not supported by kernels that only support
|
|
|
|
* v5 kernel abi so it will not be written when creating policy for those
|
|
|
|
* kernels.
|
|
|
|
*
|
|
|
|
* Default values set to v5 kernel abi before the different versioning
|
|
|
|
* numbers where supported.
|
|
|
|
*/
|
|
|
|
uint32_t policy_version = 2;
|
2015-11-17 16:21:46 -08:00
|
|
|
uint32_t parser_abi_version = 2;
|
2014-04-23 11:00:32 -07:00
|
|
|
uint32_t kernel_abi_version = 5;
|
|
|
|
|
|
|
|
int force_complain = 0;
|
[v2: added clean-ups, backed off on some of the build silencing]
This is a rather large rearrangement of how a subset of the parser global
variables are defined. Right now, there are unit tests built without
linking against parser_main.c. As a result, none of the globals defined in
parser_main.c could be used in the code that is built for unit tests
(misc, regex, symtab, variable). To get a clean build, either stubs needed
to be added to "#ifdef UNIT_TEST" blocks in each .c file, or we had to
depend on link-time optimizations that would throw out the unused routines.
First, this is a problem because all the compile-time warnings had to be
explicitly silenced, so reviewing the build logs becomes difficult on
failures, and we can potentially (in really unlucky situations) test
something that isn't actually part of the "real" parser.
Second, not all compilers will allow this kind of linking (e.g. mips gcc),
and the missing symbols at link time will fail the entire build even though
they're technically not needed.
To solve all of this, I've moved all of the global variables used in lex,
yacc, and main to parser_common.c, and adjusted the .h files. On top of
this, I made sure to fully link the tst builds so all symbols are resolved
(including aare lib) and removedonly tst build-log silencing (for now,
deferring to another future patchset to consolidate the build silencing).
Signed-off-by: Kees Cook <kees.cook@canonical.com>
2011-05-13 02:12:49 -07:00
|
|
|
int perms_create = 0; /* perms contain create flag */
|
|
|
|
int net_af_max_override = -1; /* use kernel to determine af_max */
|
|
|
|
int kernel_load = 1;
|
2014-05-08 09:03:13 -07:00
|
|
|
int kernel_supports_setload = 0; /* kernel supports atomic set loads */
|
2020-04-24 17:43:47 -07:00
|
|
|
int features_supports_network = 0; /* kernel supports network rules */
|
2018-07-24 04:40:25 -07:00
|
|
|
int features_supports_networkv8 = 0; /* kernel supports 4.17 network rules */
|
2024-02-29 17:30:38 -03:00
|
|
|
int features_supports_inet = 0; /* kernel supports inet network rules */
|
2020-04-29 02:18:24 -07:00
|
|
|
int features_supports_unix = 0; /* kernel supports unix socket rules */
|
2014-04-23 10:59:07 -07:00
|
|
|
int kernel_supports_policydb = 0; /* kernel supports new policydb */
|
2020-04-24 17:43:47 -07:00
|
|
|
int features_supports_mount = 0; /* kernel supports mount rules */
|
2020-04-29 02:18:24 -07:00
|
|
|
int features_supports_dbus = 0; /* kernel supports dbus rules */
|
2014-04-23 11:05:58 -07:00
|
|
|
int kernel_supports_diff_encode = 0; /* kernel supports diff_encode */
|
2020-04-24 17:43:47 -07:00
|
|
|
int features_supports_signal = 0; /* kernel supports signal rules */
|
|
|
|
int features_supports_ptrace = 0; /* kernel supports ptrace rules */
|
2020-04-29 02:18:24 -07:00
|
|
|
int features_supports_stacking = 0; /* kernel supports stacking */
|
|
|
|
int features_supports_domain_xattr = 0; /* x attachment cond */
|
2022-09-29 17:40:18 -03:00
|
|
|
int features_supports_userns = 0; /* kernel supports user namespace */
|
2022-02-07 19:15:11 -03:00
|
|
|
int features_supports_posix_mqueue = 0; /* kernel supports mqueue rules */
|
|
|
|
int features_supports_sysv_mqueue = 0; /* kernel supports mqueue rules */
|
2023-03-20 12:28:53 -03:00
|
|
|
int features_supports_io_uring = 0; /* kernel supports io_uring rules */
|
2023-08-14 12:30:01 -07:00
|
|
|
int features_supports_flag_interruptible = 0;
|
2023-08-21 11:51:42 -07:00
|
|
|
int features_supports_flag_signal = 0;
|
2024-04-15 16:32:16 -03:00
|
|
|
int features_supports_flag_error = 0;
|
2019-08-17 05:02:13 -07:00
|
|
|
int kernel_supports_oob = 0; /* out of band transitions */
|
2023-04-23 16:04:23 -07:00
|
|
|
int kernel_supports_promptdev = 0; /* prompt via audit perms */
|
2020-06-18 05:49:20 -07:00
|
|
|
int kernel_supports_permstable32 = 0; /* extended permissions */
|
2023-04-20 08:31:12 -07:00
|
|
|
int kernel_supports_permstable32_v1 = 0; /* extended permissions */
|
2023-04-23 21:14:18 -07:00
|
|
|
int prompt_compat_mode = PROMPT_COMPAT_UNKNOWN;
|
2024-08-14 08:57:08 -07:00
|
|
|
int kernel_supports_state32 = 0; /* 32 bit state table entries */
|
|
|
|
int kernel_supports_flags_table = 0; /* state flags stored in table */
|
[v2: added clean-ups, backed off on some of the build silencing]
This is a rather large rearrangement of how a subset of the parser global
variables are defined. Right now, there are unit tests built without
linking against parser_main.c. As a result, none of the globals defined in
parser_main.c could be used in the code that is built for unit tests
(misc, regex, symtab, variable). To get a clean build, either stubs needed
to be added to "#ifdef UNIT_TEST" blocks in each .c file, or we had to
depend on link-time optimizations that would throw out the unused routines.
First, this is a problem because all the compile-time warnings had to be
explicitly silenced, so reviewing the build logs becomes difficult on
failures, and we can potentially (in really unlucky situations) test
something that isn't actually part of the "real" parser.
Second, not all compilers will allow this kind of linking (e.g. mips gcc),
and the missing symbols at link time will fail the entire build even though
they're technically not needed.
To solve all of this, I've moved all of the global variables used in lex,
yacc, and main to parser_common.c, and adjusted the .h files. On top of
this, I made sure to fully link the tst builds so all symbols are resolved
(including aare lib) and removedonly tst build-log silencing (for now,
deferring to another future patchset to consolidate the build silencing).
Signed-off-by: Kees Cook <kees.cook@canonical.com>
2011-05-13 02:12:49 -07:00
|
|
|
int conf_verbose = 0;
|
|
|
|
int conf_quiet = 0;
|
|
|
|
int names_only = 0;
|
|
|
|
int current_lineno = 1;
|
|
|
|
int option = OPTION_ADD;
|
|
|
|
|
|
|
|
|
2013-10-01 10:59:04 -07:00
|
|
|
const char *progname = __FILE__;
|
2013-09-27 16:13:22 -07:00
|
|
|
char *profile_ns = NULL;
|
[v2: added clean-ups, backed off on some of the build silencing]
This is a rather large rearrangement of how a subset of the parser global
variables are defined. Right now, there are unit tests built without
linking against parser_main.c. As a result, none of the globals defined in
parser_main.c could be used in the code that is built for unit tests
(misc, regex, symtab, variable). To get a clean build, either stubs needed
to be added to "#ifdef UNIT_TEST" blocks in each .c file, or we had to
depend on link-time optimizations that would throw out the unused routines.
First, this is a problem because all the compile-time warnings had to be
explicitly silenced, so reviewing the build logs becomes difficult on
failures, and we can potentially (in really unlucky situations) test
something that isn't actually part of the "real" parser.
Second, not all compilers will allow this kind of linking (e.g. mips gcc),
and the missing symbols at link time will fail the entire build even though
they're technically not needed.
To solve all of this, I've moved all of the global variables used in lex,
yacc, and main to parser_common.c, and adjusted the .h files. On top of
this, I made sure to fully link the tst builds so all symbols are resolved
(including aare lib) and removedonly tst build-log silencing (for now,
deferring to another future patchset to consolidate the build silencing).
Signed-off-by: Kees Cook <kees.cook@canonical.com>
2011-05-13 02:12:49 -07:00
|
|
|
char *profilename = NULL;
|
|
|
|
char *current_filename = NULL;
|
|
|
|
|
|
|
|
FILE *ofile = NULL;
|
|
|
|
|
2021-04-20 01:32:41 -07:00
|
|
|
IncludeCache_t *g_includecache;
|
|
|
|
|
2023-07-05 04:33:14 -07:00
|
|
|
optflags parseopts = {
|
2024-10-24 20:28:52 -07:00
|
|
|
.control = (optflags_t)(CONTROL_DFA_TREE_NORMAL | CONTROL_DFA_TREE_SIMPLE | CONTROL_DFA_MINIMIZE | CONTROL_DFA_DIFF_ENCODE | CONTROL_RULE_MERGE |
|
|
|
|
/* TODO: remove when we have better auto
|
|
|
|
* selection on when/which explicit denies
|
|
|
|
* to remove
|
|
|
|
*/
|
|
|
|
CONTROL_DFA_FILTER_DENY),
|
2023-07-08 19:49:34 -07:00
|
|
|
.dump = 0,
|
2023-07-05 04:33:14 -07:00
|
|
|
.warn = DEFAULT_WARNINGS,
|
|
|
|
.Werror = 0
|
|
|
|
};
|
|
|
|
|
|
|
|
|
[v2: added clean-ups, backed off on some of the build silencing]
This is a rather large rearrangement of how a subset of the parser global
variables are defined. Right now, there are unit tests built without
linking against parser_main.c. As a result, none of the globals defined in
parser_main.c could be used in the code that is built for unit tests
(misc, regex, symtab, variable). To get a clean build, either stubs needed
to be added to "#ifdef UNIT_TEST" blocks in each .c file, or we had to
depend on link-time optimizations that would throw out the unused routines.
First, this is a problem because all the compile-time warnings had to be
explicitly silenced, so reviewing the build logs becomes difficult on
failures, and we can potentially (in really unlucky situations) test
something that isn't actually part of the "real" parser.
Second, not all compilers will allow this kind of linking (e.g. mips gcc),
and the missing symbols at link time will fail the entire build even though
they're technically not needed.
To solve all of this, I've moved all of the global variables used in lex,
yacc, and main to parser_common.c, and adjusted the .h files. On top of
this, I made sure to fully link the tst builds so all symbols are resolved
(including aare lib) and removedonly tst build-log silencing (for now,
deferring to another future patchset to consolidate the build silencing).
Signed-off-by: Kees Cook <kees.cook@canonical.com>
2011-05-13 02:12:49 -07:00
|
|
|
#ifdef FORCE_READ_IMPLIES_EXEC
|
|
|
|
int read_implies_exec = 1;
|
|
|
|
#else
|
|
|
|
int read_implies_exec = 0;
|
|
|
|
#endif
|
|
|
|
|
2020-08-28 11:38:12 -07:00
|
|
|
void pwarnf(bool werr, const char *fmt, ...)
|
[v2: added clean-ups, backed off on some of the build silencing]
This is a rather large rearrangement of how a subset of the parser global
variables are defined. Right now, there are unit tests built without
linking against parser_main.c. As a result, none of the globals defined in
parser_main.c could be used in the code that is built for unit tests
(misc, regex, symtab, variable). To get a clean build, either stubs needed
to be added to "#ifdef UNIT_TEST" blocks in each .c file, or we had to
depend on link-time optimizations that would throw out the unused routines.
First, this is a problem because all the compile-time warnings had to be
explicitly silenced, so reviewing the build logs becomes difficult on
failures, and we can potentially (in really unlucky situations) test
something that isn't actually part of the "real" parser.
Second, not all compilers will allow this kind of linking (e.g. mips gcc),
and the missing symbols at link time will fail the entire build even though
they're technically not needed.
To solve all of this, I've moved all of the global variables used in lex,
yacc, and main to parser_common.c, and adjusted the .h files. On top of
this, I made sure to fully link the tst builds so all symbols are resolved
(including aare lib) and removedonly tst build-log silencing (for now,
deferring to another future patchset to consolidate the build silencing).
Signed-off-by: Kees Cook <kees.cook@canonical.com>
2011-05-13 02:12:49 -07:00
|
|
|
{
|
|
|
|
va_list arg;
|
|
|
|
char *newfmt;
|
|
|
|
|
|
|
|
if (conf_quiet || names_only || option == OPTION_REMOVE)
|
|
|
|
return;
|
|
|
|
|
2020-08-28 11:38:12 -07:00
|
|
|
if (asprintf(&newfmt, _("%s from %s (%s%sline %d): %s"),
|
|
|
|
werr ? _("Warning converted to Error") : _("Warning"),
|
2012-01-06 07:09:12 -08:00
|
|
|
profilename ? profilename : "stdin",
|
|
|
|
current_filename ? current_filename : "",
|
|
|
|
current_filename ? " " : "",
|
|
|
|
current_lineno,
|
|
|
|
fmt) == -1)
|
[v2: added clean-ups, backed off on some of the build silencing]
This is a rather large rearrangement of how a subset of the parser global
variables are defined. Right now, there are unit tests built without
linking against parser_main.c. As a result, none of the globals defined in
parser_main.c could be used in the code that is built for unit tests
(misc, regex, symtab, variable). To get a clean build, either stubs needed
to be added to "#ifdef UNIT_TEST" blocks in each .c file, or we had to
depend on link-time optimizations that would throw out the unused routines.
First, this is a problem because all the compile-time warnings had to be
explicitly silenced, so reviewing the build logs becomes difficult on
failures, and we can potentially (in really unlucky situations) test
something that isn't actually part of the "real" parser.
Second, not all compilers will allow this kind of linking (e.g. mips gcc),
and the missing symbols at link time will fail the entire build even though
they're technically not needed.
To solve all of this, I've moved all of the global variables used in lex,
yacc, and main to parser_common.c, and adjusted the .h files. On top of
this, I made sure to fully link the tst builds so all symbols are resolved
(including aare lib) and removedonly tst build-log silencing (for now,
deferring to another future patchset to consolidate the build silencing).
Signed-off-by: Kees Cook <kees.cook@canonical.com>
2011-05-13 02:12:49 -07:00
|
|
|
return;
|
|
|
|
|
|
|
|
va_start(arg, fmt);
|
|
|
|
vfprintf(stderr, newfmt, arg);
|
|
|
|
va_end(arg);
|
|
|
|
|
|
|
|
free(newfmt);
|
2020-08-28 11:38:12 -07:00
|
|
|
|
|
|
|
if (werr) {
|
|
|
|
fflush(stderr);
|
|
|
|
exit(1);
|
|
|
|
}
|
[v2: added clean-ups, backed off on some of the build silencing]
This is a rather large rearrangement of how a subset of the parser global
variables are defined. Right now, there are unit tests built without
linking against parser_main.c. As a result, none of the globals defined in
parser_main.c could be used in the code that is built for unit tests
(misc, regex, symtab, variable). To get a clean build, either stubs needed
to be added to "#ifdef UNIT_TEST" blocks in each .c file, or we had to
depend on link-time optimizations that would throw out the unused routines.
First, this is a problem because all the compile-time warnings had to be
explicitly silenced, so reviewing the build logs becomes difficult on
failures, and we can potentially (in really unlucky situations) test
something that isn't actually part of the "real" parser.
Second, not all compilers will allow this kind of linking (e.g. mips gcc),
and the missing symbols at link time will fail the entire build even though
they're technically not needed.
To solve all of this, I've moved all of the global variables used in lex,
yacc, and main to parser_common.c, and adjusted the .h files. On top of
this, I made sure to fully link the tst builds so all symbols are resolved
(including aare lib) and removedonly tst build-log silencing (for now,
deferring to another future patchset to consolidate the build silencing).
Signed-off-by: Kees Cook <kees.cook@canonical.com>
2011-05-13 02:12:49 -07:00
|
|
|
}
|
2020-08-09 14:51:55 -04:00
|
|
|
|
|
|
|
/* do we want to warn once/profile or just once per compile?? */
|
|
|
|
void common_warn_once(const char *name, const char *msg, const char **warned_name)
|
|
|
|
{
|
2023-07-06 16:41:56 -07:00
|
|
|
if ((parseopts.warn & WARN_RULE_NOT_ENFORCED) && *warned_name != name) {
|
|
|
|
if (parseopts.Werror & WARN_RULE_NOT_ENFORCED)
|
2020-08-28 11:38:12 -07:00
|
|
|
cerr << "Warning converted to Error";
|
|
|
|
else
|
|
|
|
cerr << "Warning";
|
|
|
|
cerr << " from profile " << name << " (";
|
2020-08-09 14:51:55 -04:00
|
|
|
if (current_filename)
|
|
|
|
cerr << current_filename;
|
|
|
|
else
|
|
|
|
cerr << "stdin";
|
|
|
|
cerr << "): " << msg << "\n";
|
|
|
|
*warned_name = name;
|
|
|
|
}
|
2020-08-28 11:38:12 -07:00
|
|
|
|
2023-07-06 16:41:56 -07:00
|
|
|
if (parseopts.Werror & WARN_RULE_NOT_ENFORCED)
|
2020-08-28 11:38:12 -07:00
|
|
|
exit(1);
|
2020-08-09 14:51:55 -04:00
|
|
|
}
|
2023-04-23 11:56:00 -07:00
|
|
|
|
|
|
|
bool prompt_compat_mode_supported(int mode)
|
|
|
|
{
|
|
|
|
if (mode == PROMPT_COMPAT_PERMSV2 &&
|
|
|
|
(kernel_supports_permstable32 && !kernel_supports_permstable32_v1))
|
|
|
|
return true;
|
2023-04-23 21:14:18 -07:00
|
|
|
/*
|
2023-04-23 16:04:23 -07:00
|
|
|
else if (mode == PROMPT_COMPAT_DEV &&
|
|
|
|
kernel_supports_promptdev)
|
|
|
|
return true;
|
2023-04-23 21:14:18 -07:00
|
|
|
*/
|
|
|
|
else if (mode == PROMPT_COMPAT_FLAG &&
|
|
|
|
kernel_supports_permstable32)
|
|
|
|
return true;
|
|
|
|
/*
|
2023-04-23 11:56:00 -07:00
|
|
|
else if (mode == PROMPT_COMPAT_PERMSV1 &&
|
|
|
|
(kernel_supports_permstable32_v1))
|
|
|
|
return true;
|
2023-04-23 21:14:18 -07:00
|
|
|
*/
|
2023-04-23 11:56:00 -07:00
|
|
|
else if (mode == PROMPT_COMPAT_IGNORE)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
int default_prompt_compat_mode()
|
|
|
|
{
|
|
|
|
if (prompt_compat_mode_supported(PROMPT_COMPAT_PERMSV2))
|
|
|
|
return PROMPT_COMPAT_PERMSV2;
|
2023-04-23 16:04:23 -07:00
|
|
|
if (prompt_compat_mode_supported(PROMPT_COMPAT_DEV))
|
|
|
|
return PROMPT_COMPAT_DEV;
|
2023-04-23 21:14:18 -07:00
|
|
|
if (prompt_compat_mode_supported(PROMPT_COMPAT_FLAG))
|
|
|
|
return PROMPT_COMPAT_FLAG;
|
2023-04-23 11:56:00 -07:00
|
|
|
if (prompt_compat_mode_supported(PROMPT_COMPAT_PERMSV1))
|
|
|
|
return PROMPT_COMPAT_PERMSV1;
|
|
|
|
if (prompt_compat_mode_supported(PROMPT_COMPAT_IGNORE))
|
|
|
|
return PROMPT_COMPAT_IGNORE;
|
|
|
|
return PROMPT_COMPAT_IGNORE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void print_prompt_compat_mode(FILE *f)
|
|
|
|
{
|
|
|
|
switch (prompt_compat_mode) {
|
|
|
|
case PROMPT_COMPAT_IGNORE:
|
|
|
|
fprintf(f, "ignore");
|
|
|
|
break;
|
2023-04-23 21:14:18 -07:00
|
|
|
case PROMPT_COMPAT_FLAG:
|
|
|
|
fprintf(f, "flag");
|
|
|
|
break;
|
2023-04-23 11:56:00 -07:00
|
|
|
case PROMPT_COMPAT_PERMSV2:
|
|
|
|
fprintf(f, "permsv2");
|
|
|
|
break;
|
|
|
|
case PROMPT_COMPAT_PERMSV1:
|
|
|
|
fprintf(f, "permsv1");
|
|
|
|
break;
|
2023-04-23 16:04:23 -07:00
|
|
|
case PROMPT_COMPAT_DEV:
|
|
|
|
fprintf(stderr, "dev");
|
|
|
|
break;
|
2023-04-23 11:56:00 -07:00
|
|
|
default:
|
|
|
|
fprintf(f, "Unknown prompt compat mode '%d'", prompt_compat_mode);
|
|
|
|
}
|
|
|
|
}
|