Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Apparmor support #286

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open

Apparmor support #286

wants to merge 4 commits into from

Conversation

sre
Copy link
Contributor

@sre sre commented Mar 18, 2022

Hi,

This adds support for AppArmor using libapparmor and the Ubuntu kernel patch
requested in #169. For the implementation dbus-daemon has been used as reference.
The patchset handles restriction of all common DBus operations (sending, receiving,
bus owning and monitoring) - just like dbus-daemon.

Note, that the downstream kernel patch is no longer limited to Ubuntu. It has been
applied to some kernels used in the embedded sector. Missing support for AppArmor
is the limiting factor to switch from dbus-daemon to dbus-broker on these embedded
systems and the reason I wrote this code.

Regarding the status of the kernel patch required for this support: The main reason,
that the kernel is still missing support for kernel based af_unix/dbus meditation is a
pending code restructuring that got postponed for multiple years. Current expectation
is, that this restructuring finally happens in the 5.19 cycle (fingers crossed).

-- Sebastian

Copy link
Member

@dvdhrm dvdhrm left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks a lot for doing this! Some basic questions on the code inline, but it generally it looks good. I intend to merge this when I find the time to properly review this. But it will not make the next release, as I really need to tag that as soon as possible.

The second patch is quite big and could easily be split in lots of smaller ones. This would make reviewing a lot easier and make me more confident I don't miss anything. I can pick the patch apart myself and apply the changes individually, if you prefer. But if you want to do that yourself, please go ahead. I don't mind either way.

Again, thanks for looking into this!

const char *mode; /* AppArmor confinement mode (freed by freeing *label) */
};

static struct BusAppArmorConfinement *bus_con = NULL;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Any particular reason this is a global variable rather than part of struct Bus? For SELinux we need the global context, because they did not provide any context object in libselinux. But if possible, I would avoid any *_init_global() functions.

src/bus/policy.h Outdated
@@ -162,16 +166,21 @@ int policy_snapshot_dup(PolicySnapshot *snapshot, PolicySnapshot **newp);
int policy_snapshot_check_connect(PolicySnapshot *snapshot);
int policy_snapshot_check_own(PolicySnapshot *snapshot, const char *name);
int policy_snapshot_check_send(PolicySnapshot *snapshot,
const char *subject_context,
const char *sender_context,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The sender context should be taken from snapshot (see snapshot->seclabel). Otherwise, you will query the context too late. Note that the point of the policy-snapshot is to snapshot all sender information at a particular time, and then later check whether it matches. This is used for activation messages where sender and receiver information is not available simultaneously. If this does not work for apparmor, this needs to be somehow documented.


/* XXX: we don't have access to any context, so can't find
* the right UID to use, follow dbus-daemon(1) and use our
* own. */
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why can't we pass the context in? I don't understand this comment. Which context would be needed?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I took over that function incl. the comment from the dbus-broker SELinux implementation without investigating further (and adapted it for apparmor).

@sre
Copy link
Contributor Author

sre commented May 6, 2022

Thanks for having a look at it. I will check the things you pointed out next week and also try to figure out a way to split the second patch into smaller chunks.

@Conan-Kudo
Copy link

@sre Is there a link to the patch review on lore for the revised patch slated for 5.19 yet?

@sre
Copy link
Contributor Author

sre commented May 11, 2022

@sre Is there a link to the patch review on lore for the revised patch slated for 5.19 yet?

No, not that I'm aware of.

Copy link
Member

@dvdhrm dvdhrm left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So I pulled in most of the preparatory patches, and I adjusted some bits. The major apparmor.c code is still missing. I am working on it.

I commented on all things I changed. Let me know if something is unclear, or if I unintentionally broke something.

meson.build Outdated
if use_apparmor
dep_libapparmor = dependency('libapparmor', version: '>=3.0')
endif

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I moved this above the audit-check, since apparmor is before audit in alphabetical order ;)

@@ -1,3 +1,4 @@
option('apparmor', type: 'boolean', value: false, description: 'AppArmor support')
option('audit', type: 'boolean', value: false, description: 'Audit support')
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here it was in the correct order :)

src/bus/driver.c Outdated
case POLICY_E_SELINUX_ACCESS_DENIED:
return BUS_LOG_POLICY_TYPE_SELINUX;
default:
return BUS_LOG_POLICY_TYPE_INTERNAL;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I did some re-ordering all over the place to stay consistent with the order the enum is defined. So first check INTERNAL (if it applies), then SELINUX, and APPARMOR last. Not a big deal, just for consistency.

src/bus/driver.c Outdated
case POLICY_E_ACCESS_DENIED:
case POLICY_E_APPARMOR_ACCESS_DENIED:
case POLICY_E_SELINUX_ACCESS_DENIED:
{
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I know we have a mixed style of switch and if clauses, but I think I prefer the if-clause here. I fixed it up everywhere. I also added the same errno-check to all instances of policy_snapshot_check_{send,receive}, you missed one in driver.c. I also changed it to always check for SELINUX as well. Technically, SELINUX only checks for SEND, not RECEIVE, but the callsite should be consistent, imho. No reason to be overly pedantic there, it just makes it a lot harder to argue about it, and nothing really technically prevents us from adding selinux checks to recv as well.

src/bus/policy.c Outdated Show resolved Hide resolved
@@ -114,6 +115,7 @@ struct Policy {
.gid_tree = C_RBTREE_INIT, \
.selinux_list = C_LIST_INIT((_x).selinux_list), \
.apparmor_mode = CONFIG_APPARMOR_ENABLED, \
.bus_type = CONFIG_BUS_TYPE_SYSTEM, \
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is system actually the default? The man-page doesn't mention it, and I didn't check the dbus sources. Did you?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, I did not check when writing this and totally forgot about it. I just did check dbus-daemon. Apparently it supports arbitrary bus types incl. the bus type being empty and then has special handling for "session" and "system". So parsing needs to go and instead the string should be used directly.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, I think we need to avoid parsing it and just send it through, indeed.

if (f) {
errno = 0;
if (!fgets(buffer, sizeof(buffer), f)) {
if (ferror(f) && errno != EINVAL)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I assume this EINVAL check was copy-pasted. Looks like an error. I dropped it. If it was intentional, let me know! I also dropped it from the old is_enabled() code.

@sre
Copy link
Contributor Author

sre commented May 17, 2022

So I pulled in most of the preparatory patches, and I adjusted some bits. The major apparmor.c code is still missing. I am working on it.

Thanks, the changes look fine to me.

Let me know if something is unclear, or if I unintentionally broke something.

I just rebased the pull-request to current HEAD dropping the merged patches (no other changes) and the branch is still working. I will look into the CI issues and the bus_type problem.

src/bus/policy.h Outdated
@@ -173,6 +173,8 @@ int policy_snapshot_check_send(PolicySnapshot *snapshot,
bool broadcast,
size_t n_fds);
int policy_snapshot_check_receive(PolicySnapshot *snapshot,
const char *sender_seclabel,
const char *receiver_seclabel,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

snapshot->seclabel is equivalent to receiver_seclabel. You only need to pass in sender_seclabel. See *_check_send() and the SELinux path for an example.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I dropped it myself and pushed the patch!

Copy link
Member

@dvdhrm dvdhrm left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A bunch more comments inline. It looks good! I think we can mostly take it that way, just some minor corrections needed.

Thanks a lot! I think I now got a full overview of the thing, and I am generally not opposed at all to merging this.

src/bus/driver.c Outdated Show resolved Hide resolved
src/bus/policy.c Outdated Show resolved Hide resolved
src/bus/policy.c Outdated Show resolved Hide resolved
src/bus/policy.c Outdated Show resolved Hide resolved
src/bus/policy.c Outdated
@@ -1082,6 +1114,16 @@ int policy_snapshot_check_receive(PolicySnapshot *snapshot,
size_t n_fds) {
PolicyVerdict verdict = POLICY_VERDICT_INIT;
size_t i;
int r;

r = bus_apparmor_check_xmit(snapshot->apparmor, false, sender_seclabel, receiver_seclabel,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is now: subject_seclabel, snapshot->seclabel, rather than sender_seclabel, receiver_seclabel

int bus_apparmor_set_bus_type(BusAppArmorRegistry *registry, const char* bustype) {
registry->bustype = strdup(bustype);
if (!registry->bustype)
return -ENOMEM;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

return error_origin(-ENOMEM)

r = -EINVAL;
}

return r;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Uff. This is slow. I mean, we optimized everything so we have a single allocation per message transaction. Now the apparmor code adds one allocation per name the receiver and sender own. I am fine keeping the code, but man those LSMs really drag things down. Makes me a bit sad :-/

return 0;

if (!condup)
return -ENOMEM;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

error_origin(-ENOMEM), and I would suggest moving the strdup() out of the variable declaration.

return error_origin(-errno);

if (audit)
bus_apparmor_log("apparmor=\"%s\" operation=\"dbus_bind\" bus=\"%s\" name=\"%s\"", allowstr(allow), registry->bustype, name);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

bustype can contain quotes ", right? At least if we take it unmodified from the configuration. Probably doesn't matter much, though.

enum {
_APPARMOR_E_SUCCESS,

APPARMOR_E_DENIED,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you prefix these with BUS_APPARMOR_*? The reason for the BUS_* prefix in selinux was that we do not want to conflict with selinux names, which sometimes start with selinux_*. I think the same is warranted for apparmor for consistency, even if the library uses aa_* as prefix (otherwise we should really drop it from the functions as well).

Copy link
Member

@dvdhrm dvdhrm left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I now pushed this with a bunch of fixups on top. This still lacks the last commit (handling apparmor in the launcher, though). Note that I am not really sure that this currently matches the behavior of dbus-daemon. I will try to align it with dbus-daemon later. In the meantime, if you have any comments on the code I pushed, let me know. I tried to implement everything that I mentioned inline in this PR.

src/bus/driver.c Outdated
Comment on lines 1841 to 1842
if (r)
return r;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
if (r)
return r;
else if (r)
return error_fold(r);

Crossing error-namespaces, so this needs to be folded.

src/bus/policy.c Outdated
Comment on lines 701 to 703
r = bus_apparmor_set_bus_type(registry->apparmor, bustype ? bustype : "");
if (r)
return error_trace(r);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
r = bus_apparmor_set_bus_type(registry->apparmor, bustype ? bustype : "");
if (r)
return error_trace(r);
r = bus_apparmor_set_bus_type(registry->apparmor, bustype);
if (r)
return error_fold(r);

bustype cannot be NULL, and the error needs to be folded, as this is a different error-namespace.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this entire construct needs to drop the if (apparmor) and then use apparmor ? bustype : NULL as argument to set_bus_type(), right?

state->current->bus_type.type = CONFIG_BUS_TYPE_SESSION;
else
CONFIG_ERR(state, "Unknown bus type", ": %s", state->current->cdata);
state->current->bus_type.type = strdup(state->current->cdata);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This needs to be freed in config_node_free().

@@ -11,6 +11,7 @@
#include <stdio.h>
#include <stdlib.h>
#include "util/apparmor.h"
#include "util/error.h"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Spurious include that is not needed, right?

@@ -93,3 +105,446 @@ int bus_apparmor_dbus_supported(bool *supportedp) {
*supportedp = supported;
return 0;
}

static inline bool is_apparmor_enabled(BusAppArmorRegistry *registry) {
return registry->bustype ? true : false;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
return registry->bustype ? true : false;
return registry->bustype;

}

static bool is_unconfined(const char *context) {
return !strcmp(context, "unconfined");
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

dbus-daemon checks for the mode to be equal to unconfined, or unset and the label equal to unconfined. Any particular reason this is different?

interface, method, allow, &audit_tmp);
if (r < 0)
return r;
if (!allow)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldn't this be if (!*allow)?

if (!allow)
return r;
if (audit_tmp)
*audit = 1;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldn't this conditional be before checking allow?


if (!is_apparmor_enabled(registry))
return 0;

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why does this function not check against unconfined like the others and dbus-daemon do?

* or a negative error code on failure.
*/
int bus_apparmor_check_xmit(BusAppArmorRegistry *registry,
bool check_send,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

dbus-daemon only ever checks on send, why do we have two calls one for send and one for receive?

Maybe this is a confusion where dbus-daemon checks both for sending and receival in a single call, but that is not the case. Checking at send and receive is different to checking the receiver during send. I think this should be bus_apparmor_check_send() just like selinux does.

@dvdhrm
Copy link
Member

dvdhrm commented Jul 13, 2022

I am quite confused now where you got the transmission checks from. dbus-daemon simply checks with the destination-string and source-unique-id, but your code iterates the set of names on the destination. This will very easily break existing AppArmor rules. I also don't understand why that change was done. Is there any reason not to imitate what dbus-daemon does?

That is, I would make apparmor check whether the sender is allowed to send to the destination used in the message. Then check whether the receiver is allowed to receive from the unique-id of the sender. If either is false, refuse the transmission.

I can implement this, but I want to make sure you agree on that, and that this is indeed the intended behavior?

Copy link

@setharnold setharnold left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hello, a few small thoughts; it's more of a quick skim than in-depth review, and while I'm alright with AppArmor, I know next to nothing about dbus-broker.

Thanks

} else if (*apparmor_mode == CONFIG_APPARMOR_REQUIRED) {
if (!enabled || !supported) {
fprintf(stderr, "AppArmor required, but not supported. Exiting.\n");
*apparmor_mode = CONFIG_APPARMOR_REQUIRED;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I expected to see a negative return value here, or perhaps an exit(3) or _exit(2) call.

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

exit is handled outside of this function on line 1250

perhaps the fprintf on line 1196 should move between lines 1250 and 1251 ?

src/bus/policy.c Outdated
if (r) {
if (r == BUS_APPARMOR_E_DENIED)
return POLICY_E_APPARMOR_ACCESS_DENIED;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are there other return values that mean "don't grant access"? eg. "internal error" or "silently deny" or similar? This currently feels like a 'fail open' way to write this check. (And two more later.)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a translation of error codes from one domain to another. If we happen to forget converting one, the result is the following error_fold(), which takes any unhandled error and turns it into a fatal error code. Hence, the worst that can happen is that we end up exiting, rather than just refusing the message-transaction. Not good, but also we do not accidentally fail the security check.


if (is_complain(security_mode))
allow = 1;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this allow = 1 block be moved above the bus_apparmor_log() call, so that the allowstr(allow) generates an output that matches the decision?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sounds good!

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks!

bus_apparmor_log("apparmor=\"%s\" operation=\"dbus_eavesdrop\" bus=\"%s\" label=\"%s\"", allowstr(allow), registry->bustype, context);

if (is_complain(security_mode))
allow = 1;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A similar question here, should this be moved above the logging line, so the string matches the result?


if (src_audit) {
bus_apparmor_log(registry,
"apparmor=\"%s\" bus=\"%s\" path=\"%s\" interface=\"%s\" method=\"%s\" "

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I realize the previous code already did this but the AppArmor log parsing tools expects "method" to be "member" instead

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I created a PR in AppArmor so we can parse method the same way as member so no change is needed here :)

if (src_audit) {
bus_apparmor_log(registry,
"apparmor=\"%s\" bus=\"%s\" path=\"%s\" interface=\"%s\" method=\"%s\" "
"label=\"%s\" peer_label=\"%s\"",

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe the denied mask is missing. It should look like
mask="send" for when send is denied and
mask="receive" for when receive is denied.

name="" is also missing

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, I also noticed that operation="dbus_method_call" is missing here

Copy link
Contributor Author

@sre sre Dec 22, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the review, I added mask and operation. Logging name is non-trivial, since dbus-broker has a NameSet possibly containing multiple names.

Checking if the destination is allowed to receive during
send time is not the same as checking if a message is allowed
to be received at receive time.

Fix this by following the dbus-daemon implementation more
closely and handle everything in bus_apparmor_check_send().

Reported-by: David Rheinsberg <[email protected]>
Fixes: 8b1e969 ("util/apparmor: add apparmor support")
Signed-off-by: Sebastian Reichel <[email protected]>
Log failing apparmor checks as accepted when in
complain mode for consistency.

Reported-by: Seth Arnold <[email protected]>
Fixes: 8b1e969 ("util/apparmor: add apparmor support")
Signed-off-by: Sebastian Reichel <[email protected]>
All required AppArmor support code has landed, so enable it in
the launcher.

Signed-off-by: Sebastian Reichel <[email protected]>
Improve logging for compatibility with AppArmor log parsing tools:

 * Add denied mask to the send/receive/bind log messages
 * Add operation to the send/receive log messages

Reported-by: Georgia Garcia <[email protected]>
Signed-off-by: Sebastian Reichel <[email protected]>
@gegarcia
Copy link

gegarcia commented Mar 9, 2023

From an AppArmor perspective, this LGTM. We updated our regression tests upstream and they are passing with these patches.

ottok pushed a commit to ottok/apparmor that referenced this pull request Mar 26, 2023
In the [merge request that adds AppArmor support on D-Bus Broker](bus1/dbus-broker#286), the word "method" is used instead of "member" on the auditing logs.
So we are adding support to parse "method" the same way as "member" on D-Bus audit logs.

MR: https://gitlab.com/apparmor/apparmor/-/merge_requests/958
Approved-by: John Johansen <[email protected]>
Merged-by: John Johansen <[email protected]>
ottok pushed a commit to ottok/apparmor that referenced this pull request Mar 26, 2023
In the [merge request that adds AppArmor support on D-Bus Broker](bus1/dbus-broker#286), the word "method" is used instead of "member" on the auditing logs.
So we are adding support to parse "method" the same way as "member" on D-Bus audit logs.

MR: https://gitlab.com/apparmor/apparmor/-/merge_requests/958
Approved-by: John Johansen <[email protected]>
Merged-by: John Johansen <[email protected]>
(cherry picked from commit a96fa35)
Signed-off-by: John Johansen <[email protected]>
ottok pushed a commit to ottok/apparmor that referenced this pull request Mar 26, 2023
In the [merge request that adds AppArmor support on D-Bus Broker](bus1/dbus-broker#286), the word "method" is used instead of "member" on the auditing logs.
So we are adding support to parse "method" the same way as "member" on D-Bus audit logs.

MR: https://gitlab.com/apparmor/apparmor/-/merge_requests/958
Approved-by: John Johansen <[email protected]>
Merged-by: John Johansen <[email protected]>
(cherry picked from commit a96fa35)
Signed-off-by: John Johansen <[email protected]>
ottok pushed a commit to ottok/apparmor that referenced this pull request Mar 26, 2023
In the [merge request that adds AppArmor support on D-Bus Broker](bus1/dbus-broker#286), the word "method" is used instead of "member" on the auditing logs.
So we are adding support to parse "method" the same way as "member" on D-Bus audit logs.

MR: https://gitlab.com/apparmor/apparmor/-/merge_requests/958
Approved-by: John Johansen <[email protected]>
Merged-by: John Johansen <[email protected]>
(cherry picked from commit a96fa35)
Signed-off-by: John Johansen <[email protected]>
Copy link

@eslerm eslerm left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @dvdhrm o/

@gegarcia and @setharnold from AppArmor have ACKd this PR

there is one outstanding review request that might be resolved by moving a line

} else if (*apparmor_mode == CONFIG_APPARMOR_REQUIRED) {
if (!enabled || !supported) {
fprintf(stderr, "AppArmor required, but not supported. Exiting.\n");
*apparmor_mode = CONFIG_APPARMOR_REQUIRED;
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

exit is handled outside of this function on line 1250

perhaps the fprintf on line 1196 should move between lines 1250 and 1251 ?

@evverx
Copy link
Contributor

evverx commented Jun 16, 2023

As far as I can tell the CI is currently unaware of AppArmor in the sense that -Dapparmor=true isn't passed to meson anywhere. At least CodeQL analyzes the apparmor fallback only as far as I can see because libapparmor-dev isn't installed there and the "autobuild" job can't figure out what to do. The other CI workflow passes -Daudit=true only. There it would probably make sense to build dbus-broker with both -Dapparmor=true and -Dapparmor=false to make sure it compiles fine with -Werror with and without libapparmor.

(I'm not sure it should be fixed here but I think it should be fixed one way or another).

@andrewfader
Copy link

looks like arch is adopting dbus-broker as default. any chance this can be merged?

@Maryse47
Copy link

Arch kernels don't have apparmor dbus mediation patches so included so this is irrelevant.

@andrewfader
Copy link

Arch kernels don't have apparmor dbus mediation patches so included so this is irrelevant.

I don't see how that can be, but I'm not an expert. Per https://wiki.archlinux.org/title/AppArmor I have it enabled and running, a service loaded, a kernel option enabled, aa-enabled returns true, I see "DENIED" in my logs sometimes, etc.

@dvdhrm
Copy link
Member

dvdhrm commented Jan 15, 2024

The required AppArmor features to get D-Bus message security policies working are not part of upstream linux kernels. Basic AppArmor support has been included in upstream kernels, though.

So to get AppArmor working with dbus-broker, you would definitely need downstream patches. Ubuntu applies them to all their kernel builds.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

9 participants