Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | #ifndef __LINUX_NET_SCM_H |
| 3 | #define __LINUX_NET_SCM_H |
| 4 | |
| 5 | #include <linux/limits.h> |
| 6 | #include <linux/net.h> |
Ingo Molnar | 5b825c3 | 2017-02-02 17:54:15 +0100 | [diff] [blame] | 7 | #include <linux/cred.h> |
Catherine Zhang | dc49c1f | 2006-08-02 14:12:06 -0700 | [diff] [blame] | 8 | #include <linux/security.h> |
Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 9 | #include <linux/pid.h> |
| 10 | #include <linux/nsproxy.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | |
| 12 | /* Well, we should have at least one descriptor open |
| 13 | * to accept passed FDs 8) |
| 14 | */ |
Eric Dumazet | bba14de | 2010-11-23 14:09:15 +0000 | [diff] [blame] | 15 | #define SCM_MAX_FD 253 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | |
Eric W. Biederman | dbe9a41 | 2012-09-06 18:20:01 +0000 | [diff] [blame] | 17 | struct scm_creds { |
| 18 | u32 pid; |
| 19 | kuid_t uid; |
| 20 | kgid_t gid; |
| 21 | }; |
| 22 | |
Eric Dumazet | fd2c3ef | 2009-11-03 03:26:03 +0000 | [diff] [blame] | 23 | struct scm_fp_list { |
Eric Dumazet | bba14de | 2010-11-23 14:09:15 +0000 | [diff] [blame] | 24 | short count; |
| 25 | short max; |
Hannes Frederic Sowa | 415e3d3 | 2016-02-03 02:11:03 +0100 | [diff] [blame] | 26 | struct user_struct *user; |
David Miller | f8d570a | 2008-11-06 00:37:40 -0800 | [diff] [blame] | 27 | struct file *fp[SCM_MAX_FD]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | }; |
| 29 | |
Eric Dumazet | fd2c3ef | 2009-11-03 03:26:03 +0000 | [diff] [blame] | 30 | struct scm_cookie { |
Eric W. Biederman | 257b535 | 2010-06-13 03:32:34 +0000 | [diff] [blame] | 31 | struct pid *pid; /* Skb credentials */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | struct scm_fp_list *fp; /* Passed files */ |
Eric W. Biederman | dbe9a41 | 2012-09-06 18:20:01 +0000 | [diff] [blame] | 33 | struct scm_creds creds; /* Skb credentials */ |
Catherine Zhang | 877ce7c | 2006-06-29 12:27:47 -0700 | [diff] [blame] | 34 | #ifdef CONFIG_SECURITY_NETWORK |
Catherine Zhang | dc49c1f | 2006-08-02 14:12:06 -0700 | [diff] [blame] | 35 | u32 secid; /* Passed security ID */ |
Catherine Zhang | 877ce7c | 2006-06-29 12:27:47 -0700 | [diff] [blame] | 36 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | }; |
| 38 | |
Joe Perches | 8153ff5 | 2013-09-22 10:32:24 -0700 | [diff] [blame] | 39 | void scm_detach_fds(struct msghdr *msg, struct scm_cookie *scm); |
| 40 | void scm_detach_fds_compat(struct msghdr *msg, struct scm_cookie *scm); |
| 41 | int __scm_send(struct socket *sock, struct msghdr *msg, struct scm_cookie *scm); |
| 42 | void __scm_destroy(struct scm_cookie *scm); |
| 43 | struct scm_fp_list *scm_fp_dup(struct scm_fp_list *fpl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
Catherine Zhang | dc49c1f | 2006-08-02 14:12:06 -0700 | [diff] [blame] | 45 | #ifdef CONFIG_SECURITY_NETWORK |
| 46 | static __inline__ void unix_get_peersec_dgram(struct socket *sock, struct scm_cookie *scm) |
| 47 | { |
| 48 | security_socket_getpeersec_dgram(sock, NULL, &scm->secid); |
| 49 | } |
| 50 | #else |
| 51 | static __inline__ void unix_get_peersec_dgram(struct socket *sock, struct scm_cookie *scm) |
| 52 | { } |
| 53 | #endif /* CONFIG_SECURITY_NETWORK */ |
| 54 | |
Eric W. Biederman | 257b535 | 2010-06-13 03:32:34 +0000 | [diff] [blame] | 55 | static __inline__ void scm_set_cred(struct scm_cookie *scm, |
Eric W. Biederman | 6b0ee8c0 | 2013-04-03 17:28:16 +0000 | [diff] [blame] | 56 | struct pid *pid, kuid_t uid, kgid_t gid) |
Eric W. Biederman | 257b535 | 2010-06-13 03:32:34 +0000 | [diff] [blame] | 57 | { |
| 58 | scm->pid = get_pid(pid); |
Eric W. Biederman | dbe9a41 | 2012-09-06 18:20:01 +0000 | [diff] [blame] | 59 | scm->creds.pid = pid_vnr(pid); |
Eric W. Biederman | 6b0ee8c0 | 2013-04-03 17:28:16 +0000 | [diff] [blame] | 60 | scm->creds.uid = uid; |
| 61 | scm->creds.gid = gid; |
Eric W. Biederman | 257b535 | 2010-06-13 03:32:34 +0000 | [diff] [blame] | 62 | } |
| 63 | |
| 64 | static __inline__ void scm_destroy_cred(struct scm_cookie *scm) |
| 65 | { |
| 66 | put_pid(scm->pid); |
| 67 | scm->pid = NULL; |
Eric W. Biederman | 257b535 | 2010-06-13 03:32:34 +0000 | [diff] [blame] | 68 | } |
| 69 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | static __inline__ void scm_destroy(struct scm_cookie *scm) |
| 71 | { |
Eric W. Biederman | 257b535 | 2010-06-13 03:32:34 +0000 | [diff] [blame] | 72 | scm_destroy_cred(scm); |
David S. Miller | 2a6c8c7 | 2012-09-24 15:52:33 -0400 | [diff] [blame] | 73 | if (scm->fp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | __scm_destroy(scm); |
| 75 | } |
| 76 | |
| 77 | static __inline__ int scm_send(struct socket *sock, struct msghdr *msg, |
Eric Dumazet | e0e3cea | 2012-08-21 06:21:17 +0000 | [diff] [blame] | 78 | struct scm_cookie *scm, bool forcecreds) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | { |
Eric Dumazet | 16e5726 | 2011-09-19 05:52:27 +0000 | [diff] [blame] | 80 | memset(scm, 0, sizeof(*scm)); |
Eric W. Biederman | 6b0ee8c0 | 2013-04-03 17:28:16 +0000 | [diff] [blame] | 81 | scm->creds.uid = INVALID_UID; |
| 82 | scm->creds.gid = INVALID_GID; |
Eric Dumazet | e0e3cea | 2012-08-21 06:21:17 +0000 | [diff] [blame] | 83 | if (forcecreds) |
David S. Miller | 6e0895c | 2013-04-22 20:32:51 -0400 | [diff] [blame] | 84 | scm_set_cred(scm, task_tgid(current), current_uid(), current_gid()); |
Catherine Zhang | dc49c1f | 2006-08-02 14:12:06 -0700 | [diff] [blame] | 85 | unix_get_peersec_dgram(sock, scm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | if (msg->msg_controllen <= 0) |
| 87 | return 0; |
| 88 | return __scm_send(sock, msg, scm); |
| 89 | } |
| 90 | |
Catherine Zhang | 877ce7c | 2006-06-29 12:27:47 -0700 | [diff] [blame] | 91 | #ifdef CONFIG_SECURITY_NETWORK |
| 92 | static inline void scm_passec(struct socket *sock, struct msghdr *msg, struct scm_cookie *scm) |
| 93 | { |
Catherine Zhang | dc49c1f | 2006-08-02 14:12:06 -0700 | [diff] [blame] | 94 | char *secdata; |
| 95 | u32 seclen; |
| 96 | int err; |
| 97 | |
| 98 | if (test_bit(SOCK_PASSSEC, &sock->flags)) { |
| 99 | err = security_secid_to_secctx(scm->secid, &secdata, &seclen); |
| 100 | |
| 101 | if (!err) { |
| 102 | put_cmsg(msg, SOL_SOCKET, SCM_SECURITY, seclen, secdata); |
| 103 | security_release_secctx(secdata, seclen); |
| 104 | } |
| 105 | } |
Catherine Zhang | 877ce7c | 2006-06-29 12:27:47 -0700 | [diff] [blame] | 106 | } |
| 107 | #else |
| 108 | static inline void scm_passec(struct socket *sock, struct msghdr *msg, struct scm_cookie *scm) |
| 109 | { } |
| 110 | #endif /* CONFIG_SECURITY_NETWORK */ |
| 111 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | static __inline__ void scm_recv(struct socket *sock, struct msghdr *msg, |
| 113 | struct scm_cookie *scm, int flags) |
| 114 | { |
Eric Dumazet | fd2c3ef | 2009-11-03 03:26:03 +0000 | [diff] [blame] | 115 | if (!msg->msg_control) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | if (test_bit(SOCK_PASSCRED, &sock->flags) || scm->fp) |
| 117 | msg->msg_flags |= MSG_CTRUNC; |
David S. Miller | f78a5fd | 2011-09-16 19:34:00 -0400 | [diff] [blame] | 118 | scm_destroy(scm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | return; |
| 120 | } |
| 121 | |
Eric W. Biederman | dbe9a41 | 2012-09-06 18:20:01 +0000 | [diff] [blame] | 122 | if (test_bit(SOCK_PASSCRED, &sock->flags)) { |
| 123 | struct user_namespace *current_ns = current_user_ns(); |
| 124 | struct ucred ucreds = { |
| 125 | .pid = scm->creds.pid, |
| 126 | .uid = from_kuid_munged(current_ns, scm->creds.uid), |
| 127 | .gid = from_kgid_munged(current_ns, scm->creds.gid), |
| 128 | }; |
| 129 | put_cmsg(msg, SOL_SOCKET, SCM_CREDENTIALS, sizeof(ucreds), &ucreds); |
| 130 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | |
David S. Miller | f78a5fd | 2011-09-16 19:34:00 -0400 | [diff] [blame] | 132 | scm_destroy_cred(scm); |
| 133 | |
Catherine Zhang | 877ce7c | 2006-06-29 12:27:47 -0700 | [diff] [blame] | 134 | scm_passec(sock, msg, scm); |
| 135 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | if (!scm->fp) |
| 137 | return; |
| 138 | |
| 139 | scm_detach_fds(msg, scm); |
| 140 | } |
| 141 | |
| 142 | |
| 143 | #endif /* __LINUX_NET_SCM_H */ |
| 144 | |