blob: 905dcc6ad1e3b480c01f87df5157f4e37de112a1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* scm.c - Socket level control messages processing.
2 *
3 * Author: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
4 * Alignment and value checking mods by Craig Metz
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
12#include <linux/module.h>
13#include <linux/signal.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080014#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/errno.h>
16#include <linux/sched.h>
17#include <linux/mm.h>
18#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/stat.h>
20#include <linux/socket.h>
21#include <linux/file.h>
22#include <linux/fcntl.h>
23#include <linux/net.h>
24#include <linux/interrupt.h>
25#include <linux/netdevice.h>
26#include <linux/security.h>
Pavel Emelyanovb4888932007-10-18 23:40:14 -070027#include <linux/pid.h>
28#include <linux/nsproxy.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/uaccess.h>
32
33#include <net/protocol.h>
34#include <linux/skbuff.h>
35#include <net/sock.h>
36#include <net/compat.h>
37#include <net/scm.h>
Daniel Wagnerd8429502013-01-21 21:09:00 +000038#include <net/cls_cgroup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40
41/*
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090042 * Only allow a user to send credentials, that they could set with
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 * setu(g)id.
44 */
45
46static __inline__ int scm_check_creds(struct ucred *creds)
47{
David Howells86a264a2008-11-14 10:39:18 +110048 const struct cred *cred = current_cred();
Eric W. Biedermanb2e4f542012-05-23 16:39:45 -060049 kuid_t uid = make_kuid(cred->user_ns, creds->uid);
50 kgid_t gid = make_kgid(cred->user_ns, creds->gid);
51
52 if (!uid_valid(uid) || !gid_valid(gid))
53 return -EINVAL;
David Howellsb6dff3e2008-11-14 10:39:16 +110054
Eric W. Biederman00f70de2012-11-16 03:03:03 +000055 if ((creds->pid == task_tgid_vnr(current) || nsown_capable(CAP_SYS_ADMIN)) &&
Eric W. Biedermanb2e4f542012-05-23 16:39:45 -060056 ((uid_eq(uid, cred->uid) || uid_eq(uid, cred->euid) ||
Eric W. Biederman00f70de2012-11-16 03:03:03 +000057 uid_eq(uid, cred->suid)) || nsown_capable(CAP_SETUID)) &&
Eric W. Biedermanb2e4f542012-05-23 16:39:45 -060058 ((gid_eq(gid, cred->gid) || gid_eq(gid, cred->egid) ||
Eric W. Biederman00f70de2012-11-16 03:03:03 +000059 gid_eq(gid, cred->sgid)) || nsown_capable(CAP_SETGID))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 return 0;
61 }
62 return -EPERM;
63}
64
65static int scm_fp_copy(struct cmsghdr *cmsg, struct scm_fp_list **fplp)
66{
67 int *fdp = (int*)CMSG_DATA(cmsg);
68 struct scm_fp_list *fpl = *fplp;
69 struct file **fpp;
70 int i, num;
71
72 num = (cmsg->cmsg_len - CMSG_ALIGN(sizeof(struct cmsghdr)))/sizeof(int);
73
74 if (num <= 0)
75 return 0;
76
77 if (num > SCM_MAX_FD)
78 return -EINVAL;
79
80 if (!fpl)
81 {
82 fpl = kmalloc(sizeof(struct scm_fp_list), GFP_KERNEL);
83 if (!fpl)
84 return -ENOMEM;
85 *fplp = fpl;
86 fpl->count = 0;
Eric Dumazetbba14de2010-11-23 14:09:15 +000087 fpl->max = SCM_MAX_FD;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 }
89 fpp = &fpl->fp[fpl->count];
90
Eric Dumazetbba14de2010-11-23 14:09:15 +000091 if (fpl->count + num > fpl->max)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 return -EINVAL;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090093
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 /*
95 * Verify the descriptors and increment the usage count.
96 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090097
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 for (i=0; i< num; i++)
99 {
100 int fd = fdp[i];
101 struct file *file;
102
Al Viro326be7b2011-03-13 17:08:22 -0400103 if (fd < 0 || !(file = fget_raw(fd)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 return -EBADF;
105 *fpp++ = file;
106 fpl->count++;
107 }
108 return num;
109}
110
111void __scm_destroy(struct scm_cookie *scm)
112{
113 struct scm_fp_list *fpl = scm->fp;
114 int i;
115
116 if (fpl) {
117 scm->fp = NULL;
Al Viro6120d3d2012-06-24 10:03:05 +0400118 for (i=fpl->count-1; i>=0; i--)
119 fput(fpl->fp[i]);
120 kfree(fpl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 }
122}
Eric Dumazet9e34a5b2010-07-09 21:22:04 +0000123EXPORT_SYMBOL(__scm_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125int __scm_send(struct socket *sock, struct msghdr *msg, struct scm_cookie *p)
126{
127 struct cmsghdr *cmsg;
128 int err;
129
130 for (cmsg = CMSG_FIRSTHDR(msg); cmsg; cmsg = CMSG_NXTHDR(msg, cmsg))
131 {
132 err = -EINVAL;
133
134 /* Verify that cmsg_len is at least sizeof(struct cmsghdr) */
135 /* The first check was omitted in <= 2.2.5. The reasoning was
136 that parser checks cmsg_len in any case, so that
137 additional check would be work duplication.
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900138 But if cmsg_level is not SOL_SOCKET, we do not check
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 for too short ancillary data object at all! Oops.
140 OK, let's add it...
141 */
142 if (!CMSG_OK(msg, cmsg))
143 goto error;
144
145 if (cmsg->cmsg_level != SOL_SOCKET)
146 continue;
147
148 switch (cmsg->cmsg_type)
149 {
150 case SCM_RIGHTS:
Eric W. Biederman76dadd762010-02-28 01:20:36 +0000151 if (!sock->ops || sock->ops->family != PF_UNIX)
152 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 err=scm_fp_copy(cmsg, &p->fp);
154 if (err<0)
155 goto error;
156 break;
157 case SCM_CREDENTIALS:
Eric W. Biedermanb2e4f542012-05-23 16:39:45 -0600158 {
Eric W. Biedermandbe9a412012-09-06 18:20:01 +0000159 struct ucred creds;
Eric W. Biedermanb2e4f542012-05-23 16:39:45 -0600160 kuid_t uid;
161 kgid_t gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct ucred)))
163 goto error;
Eric W. Biedermandbe9a412012-09-06 18:20:01 +0000164 memcpy(&creds, CMSG_DATA(cmsg), sizeof(struct ucred));
165 err = scm_check_creds(&creds);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 if (err)
167 goto error;
Eric W. Biederman257b5352010-06-13 03:32:34 +0000168
Eric W. Biedermandbe9a412012-09-06 18:20:01 +0000169 p->creds.pid = creds.pid;
170 if (!p->pid || pid_vnr(p->pid) != creds.pid) {
Eric W. Biederman257b5352010-06-13 03:32:34 +0000171 struct pid *pid;
172 err = -ESRCH;
Eric W. Biedermandbe9a412012-09-06 18:20:01 +0000173 pid = find_get_pid(creds.pid);
Eric W. Biederman257b5352010-06-13 03:32:34 +0000174 if (!pid)
175 goto error;
176 put_pid(p->pid);
177 p->pid = pid;
178 }
179
Eric W. Biedermanb2e4f542012-05-23 16:39:45 -0600180 err = -EINVAL;
Eric W. Biedermandbe9a412012-09-06 18:20:01 +0000181 uid = make_kuid(current_user_ns(), creds.uid);
182 gid = make_kgid(current_user_ns(), creds.gid);
Eric W. Biedermanb2e4f542012-05-23 16:39:45 -0600183 if (!uid_valid(uid) || !gid_valid(gid))
184 goto error;
185
Eric W. Biedermandbe9a412012-09-06 18:20:01 +0000186 p->creds.uid = uid;
187 p->creds.gid = gid;
188
Eric Dumazet16e57262011-09-19 05:52:27 +0000189 if (!p->cred ||
Eric W. Biedermanb2e4f542012-05-23 16:39:45 -0600190 !uid_eq(p->cred->euid, uid) ||
191 !gid_eq(p->cred->egid, gid)) {
Eric W. Biederman257b5352010-06-13 03:32:34 +0000192 struct cred *cred;
193 err = -ENOMEM;
194 cred = prepare_creds();
195 if (!cred)
196 goto error;
197
Eric W. Biedermanb2e4f542012-05-23 16:39:45 -0600198 cred->uid = cred->euid = uid;
199 cred->gid = cred->egid = gid;
Eric Dumazet16e57262011-09-19 05:52:27 +0000200 if (p->cred)
201 put_cred(p->cred);
Eric W. Biederman257b5352010-06-13 03:32:34 +0000202 p->cred = cred;
203 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 break;
Eric W. Biedermanb2e4f542012-05-23 16:39:45 -0600205 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 default:
207 goto error;
208 }
209 }
210
211 if (p->fp && !p->fp->count)
212 {
213 kfree(p->fp);
214 p->fp = NULL;
215 }
216 return 0;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900217
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218error:
219 scm_destroy(p);
220 return err;
221}
Eric Dumazet9e34a5b2010-07-09 21:22:04 +0000222EXPORT_SYMBOL(__scm_send);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224int put_cmsg(struct msghdr * msg, int level, int type, int len, void *data)
225{
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -0700226 struct cmsghdr __user *cm
227 = (__force struct cmsghdr __user *)msg->msg_control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 struct cmsghdr cmhdr;
229 int cmlen = CMSG_LEN(len);
230 int err;
231
232 if (MSG_CMSG_COMPAT & msg->msg_flags)
233 return put_cmsg_compat(msg, level, type, len, data);
234
235 if (cm==NULL || msg->msg_controllen < sizeof(*cm)) {
236 msg->msg_flags |= MSG_CTRUNC;
237 return 0; /* XXX: return error? check spec. */
238 }
239 if (msg->msg_controllen < cmlen) {
240 msg->msg_flags |= MSG_CTRUNC;
241 cmlen = msg->msg_controllen;
242 }
243 cmhdr.cmsg_level = level;
244 cmhdr.cmsg_type = type;
245 cmhdr.cmsg_len = cmlen;
246
247 err = -EFAULT;
248 if (copy_to_user(cm, &cmhdr, sizeof cmhdr))
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900249 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 if (copy_to_user(CMSG_DATA(cm), data, cmlen - sizeof(struct cmsghdr)))
251 goto out;
252 cmlen = CMSG_SPACE(len);
Wei Yongjun1ac70e72007-12-20 14:36:44 -0800253 if (msg->msg_controllen < cmlen)
254 cmlen = msg->msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 msg->msg_control += cmlen;
256 msg->msg_controllen -= cmlen;
257 err = 0;
258out:
259 return err;
260}
Eric Dumazet9e34a5b2010-07-09 21:22:04 +0000261EXPORT_SYMBOL(put_cmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263void scm_detach_fds(struct msghdr *msg, struct scm_cookie *scm)
264{
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -0700265 struct cmsghdr __user *cm
266 = (__force struct cmsghdr __user*)msg->msg_control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
268 int fdmax = 0;
269 int fdnum = scm->fp->count;
270 struct file **fp = scm->fp->fp;
271 int __user *cmfptr;
272 int err = 0, i;
273
274 if (MSG_CMSG_COMPAT & msg->msg_flags) {
275 scm_detach_fds_compat(msg, scm);
276 return;
277 }
278
279 if (msg->msg_controllen > sizeof(struct cmsghdr))
280 fdmax = ((msg->msg_controllen - sizeof(struct cmsghdr))
281 / sizeof(int));
282
283 if (fdnum < fdmax)
284 fdmax = fdnum;
285
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -0700286 for (i=0, cmfptr=(__force int __user *)CMSG_DATA(cm); i<fdmax;
287 i++, cmfptr++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 {
John Fastabend48a87cc2012-08-14 12:34:30 +0000289 struct socket *sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 int new_fd;
291 err = security_file_receive(fp[i]);
292 if (err)
293 break;
Ulrich Drepper4a195422007-07-15 23:40:34 -0700294 err = get_unused_fd_flags(MSG_CMSG_CLOEXEC & msg->msg_flags
295 ? O_CLOEXEC : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 if (err < 0)
297 break;
298 new_fd = err;
299 err = put_user(new_fd, cmfptr);
300 if (err) {
301 put_unused_fd(new_fd);
302 break;
303 }
304 /* Bump the usage count and install the file. */
John Fastabend48a87cc2012-08-14 12:34:30 +0000305 sock = sock_from_file(fp[i], &err);
Daniel Wagnerd8429502013-01-21 21:09:00 +0000306 if (sock) {
John Fastabend48a87cc2012-08-14 12:34:30 +0000307 sock_update_netprioidx(sock->sk, current);
Daniel Wagnerd8429502013-01-21 21:09:00 +0000308 sock_update_classid(sock->sk, current);
309 }
Al Virocb0942b2012-08-27 14:48:26 -0400310 fd_install(new_fd, get_file(fp[i]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 }
312
313 if (i > 0)
314 {
315 int cmlen = CMSG_LEN(i*sizeof(int));
Miklos Szeredieffee6a2006-10-09 21:42:14 -0700316 err = put_user(SOL_SOCKET, &cm->cmsg_level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 if (!err)
318 err = put_user(SCM_RIGHTS, &cm->cmsg_type);
319 if (!err)
320 err = put_user(cmlen, &cm->cmsg_len);
321 if (!err) {
322 cmlen = CMSG_SPACE(i*sizeof(int));
323 msg->msg_control += cmlen;
324 msg->msg_controllen -= cmlen;
325 }
326 }
327 if (i < fdnum || (fdnum && fdmax <= 0))
328 msg->msg_flags |= MSG_CTRUNC;
329
330 /*
331 * All of the files that fit in the message have had their
332 * usage counts incremented, so we just free the list.
333 */
334 __scm_destroy(scm);
335}
Eric Dumazet9e34a5b2010-07-09 21:22:04 +0000336EXPORT_SYMBOL(scm_detach_fds);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338struct scm_fp_list *scm_fp_dup(struct scm_fp_list *fpl)
339{
340 struct scm_fp_list *new_fpl;
341 int i;
342
343 if (!fpl)
344 return NULL;
345
Eric Dumazetbba14de2010-11-23 14:09:15 +0000346 new_fpl = kmemdup(fpl, offsetof(struct scm_fp_list, fp[fpl->count]),
347 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 if (new_fpl) {
Eric Dumazetbba14de2010-11-23 14:09:15 +0000349 for (i = 0; i < fpl->count; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 get_file(fpl->fp[i]);
Eric Dumazetbba14de2010-11-23 14:09:15 +0000351 new_fpl->max = new_fpl->count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 }
353 return new_fpl;
354}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355EXPORT_SYMBOL(scm_fp_dup);