1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * AppArmor security module
5 * This file contains AppArmor network mediation definitions.
7 * Copyright (C) 1998-2008 Novell/SUSE
8 * Copyright 2009-2017 Canonical Ltd.
15 #include <linux/path.h>
17 #include "apparmorfs.h"
22 #define AA_MAY_SEND AA_MAY_WRITE
23 #define AA_MAY_RECEIVE AA_MAY_READ
25 #define AA_MAY_SHUTDOWN AA_MAY_DELETE
27 #define AA_MAY_CONNECT AA_MAY_OPEN
28 #define AA_MAY_ACCEPT 0x00100000
30 #define AA_MAY_BIND 0x00200000
31 #define AA_MAY_LISTEN 0x00400000
33 #define AA_MAY_SETOPT 0x01000000
34 #define AA_MAY_GETOPT 0x02000000
36 #define NET_PERMS_MASK (AA_MAY_SEND | AA_MAY_RECEIVE | AA_MAY_CREATE | \
37 AA_MAY_SHUTDOWN | AA_MAY_BIND | AA_MAY_LISTEN | \
38 AA_MAY_CONNECT | AA_MAY_ACCEPT | AA_MAY_SETATTR | \
39 AA_MAY_GETATTR | AA_MAY_SETOPT | AA_MAY_GETOPT)
41 #define NET_FS_PERMS (AA_MAY_SEND | AA_MAY_RECEIVE | AA_MAY_CREATE | \
42 AA_MAY_SHUTDOWN | AA_MAY_CONNECT | AA_MAY_RENAME |\
43 AA_MAY_SETATTR | AA_MAY_GETATTR | AA_MAY_CHMOD | \
44 AA_MAY_CHOWN | AA_MAY_CHGRP | AA_MAY_LOCK | \
47 #define NET_PEER_MASK (AA_MAY_SEND | AA_MAY_RECEIVE | AA_MAY_CONNECT | \
50 struct aa_label *label;
51 struct aa_label *peer;
54 #define SK_CTX(X) ((X)->sk_security)
55 #define SOCK_ctx(X) SOCK_INODE(X)->i_security
56 #define DEFINE_AUDIT_NET(NAME, OP, SK, F, T, P) \
57 struct lsm_network_audit NAME ## _net = { .sk = (SK), \
59 DEFINE_AUDIT_DATA(NAME, \
60 ((SK) && (F) != AF_UNIX) ? LSM_AUDIT_DATA_NET : \
61 LSM_AUDIT_DATA_NONE, \
64 NAME.u.net = &(NAME ## _net); \
65 aad(&NAME)->net.type = (T); \
66 aad(&NAME)->net.protocol = (P)
68 #define DEFINE_AUDIT_SK(NAME, OP, SK) \
69 DEFINE_AUDIT_NET(NAME, OP, SK, (SK)->sk_family, (SK)->sk_type, \
73 #define af_select(FAMILY, FN, DEF_FN) \
90 extern struct aa_sfs_entry aa_sfs_entry_network[];
92 void audit_net_cb(struct audit_buffer *ab, void *va);
93 int aa_profile_af_perm(struct aa_profile *profile, struct common_audit_data *sa,
94 u32 request, u16 family, int type);
95 int aa_af_perm(struct aa_label *label, const char *op, u32 request, u16 family,
96 int type, int protocol);
97 static inline int aa_profile_af_sk_perm(struct aa_profile *profile,
98 struct common_audit_data *sa,
102 return aa_profile_af_perm(profile, sa, request, sk->sk_family,
105 int aa_sk_perm(const char *op, u32 request, struct sock *sk);
107 int aa_sock_file_perm(struct aa_label *label, const char *op, u32 request,
108 struct socket *sock);
110 int apparmor_secmark_check(struct aa_label *label, char *op, u32 request,
111 u32 secid, const struct sock *sk);
113 #endif /* __AA_NET_H */