703 lines
18 KiB
C
703 lines
18 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* AppArmor security module
|
|
*
|
|
* This file contains AppArmor af_unix fine grained mediation
|
|
*
|
|
* Copyright 2018 Canonical Ltd.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation, version 2 of the
|
|
* License.
|
|
*/
|
|
|
|
#include <net/tcp_states.h>
|
|
|
|
#include "include/audit.h"
|
|
#include "include/af_unix.h"
|
|
#include "include/apparmor.h"
|
|
#include "include/file.h"
|
|
#include "include/label.h"
|
|
#include "include/path.h"
|
|
#include "include/policy.h"
|
|
#include "include/cred.h"
|
|
|
|
static inline struct sock *aa_unix_sk(struct unix_sock *u)
|
|
{
|
|
return &u->sk;
|
|
}
|
|
|
|
static umode_t sock_i_mode(struct sock *sk)
|
|
{
|
|
umode_t mode;
|
|
|
|
read_lock_bh(&sk->sk_callback_lock);
|
|
mode = sk->sk_socket ? SOCK_INODE(sk->sk_socket)->i_mode : 0;
|
|
read_unlock_bh(&sk->sk_callback_lock);
|
|
return mode;
|
|
}
|
|
|
|
static inline int unix_fs_perm(const char *op, u32 mask,
|
|
const struct cred *subj_cred,
|
|
struct aa_label *label,
|
|
struct unix_sock *u, int flags)
|
|
{
|
|
AA_BUG(!label);
|
|
AA_BUG(!u);
|
|
AA_BUG(!UNIX_FS(aa_unix_sk(u)));
|
|
|
|
if (unconfined(label) || !label_mediates(label, AA_CLASS_FILE))
|
|
return 0;
|
|
|
|
mask &= NET_FS_PERMS;
|
|
if (!u->path.dentry) {
|
|
struct path_cond cond = {
|
|
.uid = sock_i_uid(&u->sk),
|
|
.mode = sock_i_mode(&u->sk),
|
|
};
|
|
struct aa_perms perms = { };
|
|
struct aa_profile *profile;
|
|
|
|
/* socket path has been cleared because it is being shutdown
|
|
* can only fall back to original sun_path request
|
|
*/
|
|
struct aa_sk_ctx *ctx = aa_sock(&u->sk);
|
|
|
|
if (ctx->path.dentry)
|
|
return aa_path_perm(op, subj_cred, label, &ctx->path,
|
|
flags, mask,
|
|
&cond);
|
|
return fn_for_each_confined(label, profile,
|
|
((flags | profile->path_flags) & PATH_MEDIATE_DELETED) ?
|
|
__aa_path_perm(op, subj_cred, profile,
|
|
u->addr->name->sun_path, mask,
|
|
&cond, flags, &perms, false) :
|
|
aa_audit_file(subj_cred, profile, &nullperms,
|
|
op, mask,
|
|
u->addr->name->sun_path, NULL,
|
|
NULL, cond.uid,
|
|
"Failed name lookup - deleted entry",
|
|
-EACCES, false));
|
|
} else {
|
|
/* the sunpath may not be valid for this ns so use the path */
|
|
struct path_cond cond = { u->path.dentry->d_inode->i_uid,
|
|
u->path.dentry->d_inode->i_mode
|
|
};
|
|
|
|
return aa_path_perm(op, subj_cred, label, &u->path, flags,
|
|
mask, &cond);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
/* passing in state returned by PROFILE_MEDIATES_AF */
|
|
static unsigned int match_to_prot(struct aa_dfa *dfa,
|
|
unsigned int state, int type, int protocol,
|
|
const char **info)
|
|
{
|
|
__be16 buffer[2];
|
|
|
|
buffer[0] = cpu_to_be16(type);
|
|
buffer[1] = cpu_to_be16(protocol);
|
|
state = aa_dfa_match_len(dfa, state, (char *) &buffer, 4);
|
|
if (!state)
|
|
*info = "failed type and protocol match";
|
|
return state;
|
|
}
|
|
|
|
static unsigned int match_addr(struct aa_dfa *dfa, unsigned int state,
|
|
struct sockaddr_un *addr, int addrlen)
|
|
{
|
|
if (addr)
|
|
/* include leading \0 */
|
|
state = aa_dfa_match_len(dfa, state, addr->sun_path,
|
|
unix_addr_len(addrlen));
|
|
else
|
|
/* anonymous end point */
|
|
state = aa_dfa_match_len(dfa, state, "\x01", 1);
|
|
/* todo change to out of band */
|
|
state = aa_dfa_null_transition(dfa, state);
|
|
return state;
|
|
}
|
|
|
|
static unsigned int match_to_local(struct aa_dfa *dfa,
|
|
unsigned int state, int type, int protocol,
|
|
struct sockaddr_un *addr, int addrlen,
|
|
const char **info)
|
|
{
|
|
state = match_to_prot(dfa, state, type, protocol, info);
|
|
if (state) {
|
|
state = match_addr(dfa, state, addr, addrlen);
|
|
if (state) {
|
|
/* todo: local label matching */
|
|
state = aa_dfa_null_transition(dfa, state);
|
|
if (!state)
|
|
*info = "failed local label match";
|
|
} else
|
|
*info = "failed local address match";
|
|
}
|
|
|
|
return state;
|
|
}
|
|
|
|
static unsigned int match_to_sk(struct aa_dfa *dfa,
|
|
unsigned int state, struct unix_sock *u,
|
|
const char **info)
|
|
{
|
|
struct sockaddr_un *addr = NULL;
|
|
int addrlen = 0;
|
|
|
|
if (u->addr) {
|
|
addr = u->addr->name;
|
|
addrlen = u->addr->len;
|
|
}
|
|
|
|
return match_to_local(dfa, state, u->sk.sk_type, u->sk.sk_protocol,
|
|
addr, addrlen, info);
|
|
}
|
|
|
|
#define CMD_ADDR 1
|
|
#define CMD_LISTEN 2
|
|
#define CMD_OPT 4
|
|
|
|
static inline unsigned int match_to_cmd(struct aa_dfa *dfa,
|
|
unsigned int state, struct unix_sock *u,
|
|
char cmd, const char **info)
|
|
{
|
|
state = match_to_sk(dfa, state, u, info);
|
|
if (state) {
|
|
state = aa_dfa_match_len(dfa, state, &cmd, 1);
|
|
if (!state)
|
|
*info = "failed cmd selection match";
|
|
}
|
|
|
|
return state;
|
|
}
|
|
|
|
static inline unsigned int match_to_peer(struct aa_dfa *dfa,
|
|
unsigned int state,
|
|
struct unix_sock *u,
|
|
struct sockaddr_un *peer_addr,
|
|
int peer_addrlen,
|
|
const char **info)
|
|
{
|
|
state = match_to_cmd(dfa, state, u, CMD_ADDR, info);
|
|
if (state) {
|
|
state = match_addr(dfa, state, peer_addr, peer_addrlen);
|
|
if (!state)
|
|
*info = "failed peer address match";
|
|
}
|
|
return state;
|
|
}
|
|
|
|
static int do_perms(struct aa_profile *profile, struct aa_ruleset *rule,
|
|
unsigned int state, u32 request,
|
|
struct apparmor_audit_data *ad)
|
|
{
|
|
struct aa_perms perms;
|
|
|
|
AA_BUG(!profile);
|
|
|
|
perms = *aa_lookup_perms(rule->policy, state);
|
|
aa_apply_modes_to_perms(profile, &perms);
|
|
return aa_check_perms(profile, &perms, request, ad,
|
|
audit_net_cb);
|
|
}
|
|
|
|
static int match_label(struct aa_profile *profile, struct aa_ruleset *rule,
|
|
struct aa_profile *peer, unsigned int state, u32 request,
|
|
struct apparmor_audit_data *ad)
|
|
{
|
|
AA_BUG(!profile);
|
|
AA_BUG(!peer);
|
|
|
|
ad->peer = &peer->label;
|
|
|
|
if (state) {
|
|
state = aa_dfa_match(rule->policy->dfa, state,
|
|
peer->base.hname);
|
|
if (!state)
|
|
ad->info = "failed peer label match";
|
|
}
|
|
return do_perms(profile, rule, state, request, ad);
|
|
}
|
|
|
|
|
|
/* unix sock creation comes before we know if the socket will be an fs
|
|
* socket
|
|
* v6 - semantics are handled by mapping in profile load
|
|
* v7 - semantics require sock create for tasks creating an fs socket.
|
|
*/
|
|
static int profile_create_perm(struct aa_profile *profile, int family,
|
|
int type, int protocol)
|
|
{
|
|
struct aa_ruleset *rules = list_first_entry(&profile->rules,
|
|
typeof(*rules), list);
|
|
aa_state_t state;
|
|
DEFINE_AUDIT_NET(ad, OP_CREATE, NULL, family, type, protocol);
|
|
|
|
AA_BUG(!profile);
|
|
AA_BUG(profile_unconfined(profile));
|
|
|
|
state = RULE_MEDIATES_AF(rules, AF_UNIX);
|
|
if (state) {
|
|
state = match_to_prot(rules->policy->dfa, state, type,
|
|
protocol, &ad.info);
|
|
return do_perms(profile, rules, state, AA_MAY_CREATE, &ad);
|
|
}
|
|
|
|
return aa_profile_af_perm(profile, &ad, AA_MAY_CREATE, family, type);
|
|
}
|
|
|
|
int aa_unix_create_perm(struct aa_label *label, int family, int type,
|
|
int protocol)
|
|
{
|
|
struct aa_profile *profile;
|
|
|
|
if (unconfined(label))
|
|
return 0;
|
|
|
|
return fn_for_each_confined(label, profile,
|
|
profile_create_perm(profile, family, type, protocol));
|
|
}
|
|
|
|
|
|
static inline int profile_sk_perm(struct aa_profile *profile,
|
|
struct apparmor_audit_data *ad,
|
|
u32 request, struct sock *sk)
|
|
{
|
|
struct aa_ruleset *rules = list_first_entry(&profile->rules,
|
|
typeof(*rules),
|
|
list);
|
|
unsigned int state;
|
|
|
|
AA_BUG(!profile);
|
|
AA_BUG(!sk);
|
|
AA_BUG(UNIX_FS(sk));
|
|
AA_BUG(profile_unconfined(profile));
|
|
|
|
state = RULE_MEDIATES_AF(rules, AF_UNIX);
|
|
if (state) {
|
|
state = match_to_sk(rules->policy->dfa, state, unix_sk(sk),
|
|
&ad->info);
|
|
return do_perms(profile, rules, state, request, ad);
|
|
}
|
|
|
|
return aa_profile_af_sk_perm(profile, ad, request, sk);
|
|
}
|
|
|
|
int aa_unix_label_sk_perm(const struct cred *subj_cred,
|
|
struct aa_label *label, const char *op, u32 request,
|
|
struct sock *sk)
|
|
{
|
|
if (!unconfined(label)) {
|
|
struct aa_profile *profile;
|
|
DEFINE_AUDIT_SK(ad, op, sk);
|
|
|
|
ad.subj_cred = subj_cred;
|
|
return fn_for_each_confined(label, profile,
|
|
profile_sk_perm(profile, &ad, request, sk));
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static int unix_label_sock_perm(const struct cred *subj_cred,
|
|
struct aa_label *label, const char *op,
|
|
u32 request, struct socket *sock)
|
|
{
|
|
if (unconfined(label))
|
|
return 0;
|
|
if (UNIX_FS(sock->sk))
|
|
return unix_fs_perm(op, request, subj_cred, label,
|
|
unix_sk(sock->sk), 0);
|
|
|
|
return aa_unix_label_sk_perm(subj_cred, label, op, request, sock->sk);
|
|
}
|
|
|
|
/* revaliation, get/set attr */
|
|
int aa_unix_sock_perm(const char *op, u32 request, struct socket *sock)
|
|
{
|
|
struct aa_label *label;
|
|
int error;
|
|
|
|
label = begin_current_label_crit_section();
|
|
error = unix_label_sock_perm(current_cred(), label, op, request, sock);
|
|
end_current_label_crit_section(label);
|
|
|
|
return error;
|
|
}
|
|
|
|
static int profile_bind_perm(struct aa_profile *profile, struct sock *sk,
|
|
struct sockaddr *addr, int addrlen)
|
|
{
|
|
struct aa_ruleset *rules = list_first_entry(&profile->rules,
|
|
typeof(*rules), list);
|
|
unsigned int state;
|
|
DEFINE_AUDIT_SK(ad, OP_BIND, sk);
|
|
|
|
ad.subj_cred = current_cred();
|
|
AA_BUG(!profile);
|
|
AA_BUG(!sk);
|
|
AA_BUG(addr->sa_family != AF_UNIX);
|
|
AA_BUG(profile_unconfined(profile));
|
|
AA_BUG(unix_addr_fs(addr, addrlen));
|
|
|
|
state = RULE_MEDIATES_AF(rules, AF_UNIX);
|
|
if (state) {
|
|
/* bind for abstract socket */
|
|
ad.net.addr = unix_addr(addr);
|
|
ad.net.addrlen = addrlen;
|
|
|
|
state = match_to_local(rules->policy->dfa, state,
|
|
sk->sk_type, sk->sk_protocol,
|
|
unix_addr(addr), addrlen,
|
|
&ad.info);
|
|
return do_perms(profile, rules, state, AA_MAY_BIND, &ad);
|
|
}
|
|
|
|
return aa_profile_af_sk_perm(profile, &ad, AA_MAY_BIND, sk);
|
|
}
|
|
|
|
int aa_unix_bind_perm(struct socket *sock, struct sockaddr *address,
|
|
int addrlen)
|
|
{
|
|
struct aa_profile *profile;
|
|
struct aa_label *label;
|
|
int error = 0;
|
|
|
|
label = begin_current_label_crit_section();
|
|
/* fs bind is handled by mknod */
|
|
if (!(unconfined(label) || unix_addr_fs(address, addrlen)))
|
|
error = fn_for_each_confined(label, profile,
|
|
profile_bind_perm(profile, sock->sk, address,
|
|
addrlen));
|
|
end_current_label_crit_section(label);
|
|
|
|
return error;
|
|
}
|
|
|
|
int aa_unix_connect_perm(struct socket *sock, struct sockaddr *address,
|
|
int addrlen)
|
|
{
|
|
/* unix connections are covered by the
|
|
* - unix_stream_connect (stream) and unix_may_send hooks (dgram)
|
|
* - fs connect is handled by open
|
|
*/
|
|
return 0;
|
|
}
|
|
|
|
static int profile_listen_perm(struct aa_profile *profile, struct sock *sk,
|
|
int backlog)
|
|
{
|
|
struct aa_ruleset *rules = list_first_entry(&profile->rules,
|
|
typeof(*rules), list);
|
|
unsigned int state;
|
|
DEFINE_AUDIT_SK(ad, OP_LISTEN, sk);
|
|
|
|
AA_BUG(!profile);
|
|
AA_BUG(!sk);
|
|
AA_BUG(UNIX_FS(sk));
|
|
AA_BUG(profile_unconfined(profile));
|
|
|
|
state = RULE_MEDIATES_AF(rules, AF_UNIX);
|
|
if (state) {
|
|
__be16 b = cpu_to_be16(backlog);
|
|
|
|
state = match_to_cmd(rules->policy->dfa, state, unix_sk(sk),
|
|
CMD_LISTEN, &ad.info);
|
|
if (state) {
|
|
state = aa_dfa_match_len(rules->policy->dfa, state,
|
|
(char *) &b, 2);
|
|
if (!state)
|
|
ad.info = "failed listen backlog match";
|
|
}
|
|
return do_perms(profile, rules, state, AA_MAY_LISTEN, &ad);
|
|
}
|
|
|
|
return aa_profile_af_sk_perm(profile, &ad, AA_MAY_LISTEN, sk);
|
|
}
|
|
|
|
int aa_unix_listen_perm(struct socket *sock, int backlog)
|
|
{
|
|
struct aa_profile *profile;
|
|
struct aa_label *label;
|
|
int error = 0;
|
|
|
|
label = begin_current_label_crit_section();
|
|
if (!(unconfined(label) || UNIX_FS(sock->sk)))
|
|
error = fn_for_each_confined(label, profile,
|
|
profile_listen_perm(profile, sock->sk,
|
|
backlog));
|
|
end_current_label_crit_section(label);
|
|
|
|
return error;
|
|
}
|
|
|
|
|
|
static inline int profile_accept_perm(struct aa_profile *profile,
|
|
struct sock *sk,
|
|
struct sock *newsk)
|
|
{
|
|
struct aa_ruleset *rules = list_first_entry(&profile->rules,
|
|
typeof(*rules), list);
|
|
unsigned int state;
|
|
DEFINE_AUDIT_SK(ad, OP_ACCEPT, sk);
|
|
|
|
AA_BUG(!profile);
|
|
AA_BUG(!sk);
|
|
AA_BUG(UNIX_FS(sk));
|
|
AA_BUG(profile_unconfined(profile));
|
|
|
|
state = RULE_MEDIATES_AF(rules, AF_UNIX);
|
|
if (state) {
|
|
state = match_to_sk(rules->policy->dfa, state, unix_sk(sk),
|
|
&ad.info);
|
|
return do_perms(profile, rules, state, AA_MAY_ACCEPT, &ad);
|
|
}
|
|
|
|
return aa_profile_af_sk_perm(profile, &ad, AA_MAY_ACCEPT, sk);
|
|
}
|
|
|
|
/* ability of sock to connect, not peer address binding */
|
|
int aa_unix_accept_perm(struct socket *sock, struct socket *newsock)
|
|
{
|
|
struct aa_profile *profile;
|
|
struct aa_label *label;
|
|
int error = 0;
|
|
|
|
label = begin_current_label_crit_section();
|
|
if (!(unconfined(label) || UNIX_FS(sock->sk)))
|
|
error = fn_for_each_confined(label, profile,
|
|
profile_accept_perm(profile, sock->sk,
|
|
newsock->sk));
|
|
end_current_label_crit_section(label);
|
|
|
|
return error;
|
|
}
|
|
|
|
|
|
/* dgram handled by unix_may_sendmsg, right to send on stream done at connect
|
|
* could do per msg unix_stream here
|
|
*/
|
|
/* sendmsg, recvmsg */
|
|
int aa_unix_msg_perm(const char *op, u32 request, struct socket *sock,
|
|
struct msghdr *msg, int size)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
|
|
static int profile_opt_perm(struct aa_profile *profile, const char *op, u32 request,
|
|
struct sock *sk, int level, int optname)
|
|
{
|
|
struct aa_ruleset *rules = list_first_entry(&profile->rules,
|
|
typeof(*rules), list);
|
|
unsigned int state;
|
|
DEFINE_AUDIT_SK(ad, op, sk);
|
|
|
|
AA_BUG(!profile);
|
|
AA_BUG(!sk);
|
|
AA_BUG(UNIX_FS(sk));
|
|
AA_BUG(profile_unconfined(profile));
|
|
|
|
state = RULE_MEDIATES_AF(rules, AF_UNIX);
|
|
if (state) {
|
|
__be16 b = cpu_to_be16(optname);
|
|
|
|
state = match_to_cmd(rules->policy->dfa, state, unix_sk(sk),
|
|
CMD_OPT, &ad.info);
|
|
if (state) {
|
|
state = aa_dfa_match_len(rules->policy->dfa, state,
|
|
(char *) &b, 2);
|
|
if (!state)
|
|
ad.info = "failed sockopt match";
|
|
}
|
|
return do_perms(profile, rules, state, request, &ad);
|
|
}
|
|
|
|
return aa_profile_af_sk_perm(profile, &ad, request, sk);
|
|
}
|
|
|
|
int aa_unix_opt_perm(const char *op, u32 request, struct socket *sock, int level,
|
|
int optname)
|
|
{
|
|
struct aa_profile *profile;
|
|
struct aa_label *label;
|
|
int error = 0;
|
|
|
|
label = begin_current_label_crit_section();
|
|
if (!(unconfined(label) || UNIX_FS(sock->sk)))
|
|
error = fn_for_each_confined(label, profile,
|
|
profile_opt_perm(profile, op, request,
|
|
sock->sk, level, optname));
|
|
end_current_label_crit_section(label);
|
|
|
|
return error;
|
|
}
|
|
|
|
/* null peer_label is allowed, in which case the peer_sk label is used */
|
|
static int profile_peer_perm(struct aa_profile *profile, const char *op, u32 request,
|
|
struct sock *sk, struct sock *peer_sk,
|
|
struct aa_label *peer_label,
|
|
struct apparmor_audit_data *ad)
|
|
{
|
|
struct aa_ruleset *rules = list_first_entry(&profile->rules,
|
|
typeof(*rules), list);
|
|
unsigned int state;
|
|
|
|
AA_BUG(!profile);
|
|
AA_BUG(profile_unconfined(profile));
|
|
AA_BUG(!sk);
|
|
AA_BUG(!peer_sk);
|
|
AA_BUG(UNIX_FS(peer_sk));
|
|
|
|
state = RULE_MEDIATES_AF(rules, AF_UNIX);
|
|
if (state) {
|
|
struct aa_sk_ctx *peer_ctx = aa_sock(peer_sk);
|
|
struct aa_profile *peerp;
|
|
struct sockaddr_un *addr = NULL;
|
|
int len = 0;
|
|
|
|
if (unix_sk(peer_sk)->addr) {
|
|
addr = unix_sk(peer_sk)->addr->name;
|
|
len = unix_sk(peer_sk)->addr->len;
|
|
}
|
|
state = match_to_peer(rules->policy->dfa, state, unix_sk(sk),
|
|
addr, len, &ad->info);
|
|
if (!peer_label)
|
|
peer_label = peer_ctx->label;
|
|
return fn_for_each_in_ns(peer_label, peerp,
|
|
match_label(profile, rules, peerp, state,
|
|
request, ad));
|
|
}
|
|
|
|
return aa_profile_af_sk_perm(profile, ad, request, sk);
|
|
}
|
|
|
|
/**
|
|
*
|
|
* Requires: lock held on both @sk and @peer_sk
|
|
*/
|
|
int aa_unix_peer_perm(const struct cred *subj_cred,
|
|
struct aa_label *label, const char *op, u32 request,
|
|
struct sock *sk, struct sock *peer_sk,
|
|
struct aa_label *peer_label)
|
|
{
|
|
struct unix_sock *peeru = unix_sk(peer_sk);
|
|
struct unix_sock *u = unix_sk(sk);
|
|
|
|
AA_BUG(!label);
|
|
AA_BUG(!sk);
|
|
AA_BUG(!peer_sk);
|
|
|
|
if (UNIX_FS(aa_unix_sk(peeru))) {
|
|
return unix_fs_perm(op, request, subj_cred, label, peeru, 0);
|
|
} else if (UNIX_FS(aa_unix_sk(u))) {
|
|
return unix_fs_perm(op, request, subj_cred, label, u, 0);
|
|
} else {
|
|
struct aa_profile *profile;
|
|
DEFINE_AUDIT_SK(ad, op, sk);
|
|
|
|
ad.net.peer_sk = peer_sk;
|
|
ad.subj_cred = subj_cred;
|
|
/* TODO: ns!!! */
|
|
if (!net_eq(sock_net(sk), sock_net(peer_sk)))
|
|
;
|
|
|
|
if (unconfined(label))
|
|
return 0;
|
|
|
|
return fn_for_each_confined(label, profile,
|
|
profile_peer_perm(profile, op, request, sk,
|
|
peer_sk, peer_label, &ad));
|
|
}
|
|
}
|
|
|
|
|
|
/* from net/unix/af_unix.c */
|
|
static void unix_state_double_lock(struct sock *sk1, struct sock *sk2)
|
|
{
|
|
if (unlikely(sk1 == sk2) || !sk2) {
|
|
unix_state_lock(sk1);
|
|
return;
|
|
}
|
|
if (sk1 < sk2) {
|
|
unix_state_lock(sk1);
|
|
unix_state_lock_nested(sk2, U_LOCK_SECOND);
|
|
} else {
|
|
unix_state_lock(sk2);
|
|
unix_state_lock_nested(sk1, U_LOCK_SECOND);
|
|
}
|
|
}
|
|
|
|
static void unix_state_double_unlock(struct sock *sk1, struct sock *sk2)
|
|
{
|
|
if (unlikely(sk1 == sk2) || !sk2) {
|
|
unix_state_unlock(sk1);
|
|
return;
|
|
}
|
|
unix_state_unlock(sk1);
|
|
unix_state_unlock(sk2);
|
|
}
|
|
|
|
int aa_unix_file_perm(const struct cred *subj_cred, struct aa_label *label,
|
|
const char *op, u32 request, struct socket *sock)
|
|
{
|
|
struct sock *peer_sk = NULL;
|
|
u32 sk_req = request & ~NET_PEER_MASK;
|
|
int error = 0;
|
|
|
|
AA_BUG(!label);
|
|
AA_BUG(!sock);
|
|
AA_BUG(!sock->sk);
|
|
AA_BUG(sock->sk->sk_family != AF_UNIX);
|
|
|
|
/* TODO: update sock label with new task label */
|
|
unix_state_lock(sock->sk);
|
|
peer_sk = unix_peer(sock->sk);
|
|
if (peer_sk)
|
|
sock_hold(peer_sk);
|
|
if (!unix_connected(sock) && sk_req) {
|
|
error = unix_label_sock_perm(subj_cred, label, op, sk_req,
|
|
sock);
|
|
if (!error)
|
|
; // TODO: update label
|
|
}
|
|
unix_state_unlock(sock->sk);
|
|
if (!peer_sk)
|
|
return error;
|
|
|
|
unix_state_double_lock(sock->sk, peer_sk);
|
|
if (UNIX_FS(sock->sk)) {
|
|
error = unix_fs_perm(op, request, subj_cred, label,
|
|
unix_sk(sock->sk),
|
|
PATH_SOCK_COND);
|
|
} else if (UNIX_FS(peer_sk)) {
|
|
error = unix_fs_perm(op, request, subj_cred, label,
|
|
unix_sk(peer_sk),
|
|
PATH_SOCK_COND);
|
|
} else {
|
|
struct aa_sk_ctx *pctx = aa_sock(peer_sk);
|
|
|
|
if (sk_req)
|
|
error = aa_unix_label_sk_perm(subj_cred,
|
|
label, op, sk_req,
|
|
sock->sk);
|
|
last_error(error,
|
|
xcheck(aa_unix_peer_perm(subj_cred, label, op,
|
|
MAY_READ | MAY_WRITE,
|
|
sock->sk, peer_sk, NULL),
|
|
aa_unix_peer_perm(sock->file ? sock->file->f_cred : NULL,
|
|
pctx->label, op,
|
|
MAY_READ | MAY_WRITE,
|
|
peer_sk, sock->sk, label)));
|
|
}
|
|
|
|
unix_state_double_unlock(sock->sk, peer_sk);
|
|
sock_put(peer_sk);
|
|
|
|
return error;
|
|
}
|