1 /* scm.c - Socket level control messages processing.
3 * Author: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
4 * Alignment and value checking mods by Craig Metz
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.
12 #include <linux/module.h>
13 #include <linux/signal.h>
14 #include <linux/capability.h>
15 #include <linux/errno.h>
16 #include <linux/sched.h>
17 #include <linux/sched/user.h>
19 #include <linux/kernel.h>
20 #include <linux/stat.h>
21 #include <linux/socket.h>
22 #include <linux/file.h>
23 #include <linux/fcntl.h>
24 #include <linux/net.h>
25 #include <linux/interrupt.h>
26 #include <linux/netdevice.h>
27 #include <linux/security.h>
28 #include <linux/pid_namespace.h>
29 #include <linux/pid.h>
30 #include <linux/nsproxy.h>
31 #include <linux/slab.h>
33 #include <linux/uaccess.h>
35 #include <net/protocol.h>
36 #include <linux/skbuff.h>
38 #include <net/compat.h>
40 #include <net/cls_cgroup.h>
44 * Only allow a user to send credentials, that they could set with
48 static __inline__
int scm_check_creds(struct ucred
*creds
)
50 const struct cred
*cred
= current_cred();
51 kuid_t uid
= make_kuid(cred
->user_ns
, creds
->uid
);
52 kgid_t gid
= make_kgid(cred
->user_ns
, creds
->gid
);
54 if (!uid_valid(uid
) || !gid_valid(gid
))
57 if ((creds
->pid
== task_tgid_vnr(current
) ||
58 ns_capable(task_active_pid_ns(current
)->user_ns
, CAP_SYS_ADMIN
)) &&
59 ((uid_eq(uid
, cred
->uid
) || uid_eq(uid
, cred
->euid
) ||
60 uid_eq(uid
, cred
->suid
)) || ns_capable(cred
->user_ns
, CAP_SETUID
)) &&
61 ((gid_eq(gid
, cred
->gid
) || gid_eq(gid
, cred
->egid
) ||
62 gid_eq(gid
, cred
->sgid
)) || ns_capable(cred
->user_ns
, CAP_SETGID
))) {
68 static int scm_fp_copy(struct cmsghdr
*cmsg
, struct scm_fp_list
**fplp
)
70 int *fdp
= (int*)CMSG_DATA(cmsg
);
71 struct scm_fp_list
*fpl
= *fplp
;
75 num
= (cmsg
->cmsg_len
- sizeof(struct cmsghdr
))/sizeof(int);
85 fpl
= kmalloc(sizeof(struct scm_fp_list
), GFP_KERNEL
);
90 fpl
->max
= SCM_MAX_FD
;
93 fpp
= &fpl
->fp
[fpl
->count
];
95 if (fpl
->count
+ num
> fpl
->max
)
99 * Verify the descriptors and increment the usage count.
102 for (i
=0; i
< num
; i
++)
107 if (fd
< 0 || !(file
= fget_raw(fd
)))
114 fpl
->user
= get_uid(current_user());
119 void __scm_destroy(struct scm_cookie
*scm
)
121 struct scm_fp_list
*fpl
= scm
->fp
;
126 for (i
=fpl
->count
-1; i
>=0; i
--)
132 EXPORT_SYMBOL(__scm_destroy
);
134 int __scm_send(struct socket
*sock
, struct msghdr
*msg
, struct scm_cookie
*p
)
136 struct cmsghdr
*cmsg
;
139 for_each_cmsghdr(cmsg
, msg
) {
142 /* Verify that cmsg_len is at least sizeof(struct cmsghdr) */
143 /* The first check was omitted in <= 2.2.5. The reasoning was
144 that parser checks cmsg_len in any case, so that
145 additional check would be work duplication.
146 But if cmsg_level is not SOL_SOCKET, we do not check
147 for too short ancillary data object at all! Oops.
150 if (!CMSG_OK(msg
, cmsg
))
153 if (cmsg
->cmsg_level
!= SOL_SOCKET
)
156 switch (cmsg
->cmsg_type
)
159 if (!sock
->ops
|| sock
->ops
->family
!= PF_UNIX
)
161 err
=scm_fp_copy(cmsg
, &p
->fp
);
165 case SCM_CREDENTIALS
:
170 if (cmsg
->cmsg_len
!= CMSG_LEN(sizeof(struct ucred
)))
172 memcpy(&creds
, CMSG_DATA(cmsg
), sizeof(struct ucred
));
173 err
= scm_check_creds(&creds
);
177 p
->creds
.pid
= creds
.pid
;
178 if (!p
->pid
|| pid_vnr(p
->pid
) != creds
.pid
) {
181 pid
= find_get_pid(creds
.pid
);
189 uid
= make_kuid(current_user_ns(), creds
.uid
);
190 gid
= make_kgid(current_user_ns(), creds
.gid
);
191 if (!uid_valid(uid
) || !gid_valid(gid
))
203 if (p
->fp
&& !p
->fp
->count
)
214 EXPORT_SYMBOL(__scm_send
);
216 int put_cmsg(struct msghdr
* msg
, int level
, int type
, int len
, void *data
)
218 struct cmsghdr __user
*cm
219 = (__force
struct cmsghdr __user
*)msg
->msg_control
;
220 struct cmsghdr cmhdr
;
221 int cmlen
= CMSG_LEN(len
);
224 if (MSG_CMSG_COMPAT
& msg
->msg_flags
)
225 return put_cmsg_compat(msg
, level
, type
, len
, data
);
227 if (cm
==NULL
|| msg
->msg_controllen
< sizeof(*cm
)) {
228 msg
->msg_flags
|= MSG_CTRUNC
;
229 return 0; /* XXX: return error? check spec. */
231 if (msg
->msg_controllen
< cmlen
) {
232 msg
->msg_flags
|= MSG_CTRUNC
;
233 cmlen
= msg
->msg_controllen
;
235 cmhdr
.cmsg_level
= level
;
236 cmhdr
.cmsg_type
= type
;
237 cmhdr
.cmsg_len
= cmlen
;
240 if (copy_to_user(cm
, &cmhdr
, sizeof cmhdr
))
242 if (copy_to_user(CMSG_DATA(cm
), data
, cmlen
- sizeof(struct cmsghdr
)))
244 cmlen
= CMSG_SPACE(len
);
245 if (msg
->msg_controllen
< cmlen
)
246 cmlen
= msg
->msg_controllen
;
247 msg
->msg_control
+= cmlen
;
248 msg
->msg_controllen
-= cmlen
;
253 EXPORT_SYMBOL(put_cmsg
);
255 void scm_detach_fds(struct msghdr
*msg
, struct scm_cookie
*scm
)
257 struct cmsghdr __user
*cm
258 = (__force
struct cmsghdr __user
*)msg
->msg_control
;
261 int fdnum
= scm
->fp
->count
;
262 struct file
**fp
= scm
->fp
->fp
;
266 if (MSG_CMSG_COMPAT
& msg
->msg_flags
) {
267 scm_detach_fds_compat(msg
, scm
);
271 if (msg
->msg_controllen
> sizeof(struct cmsghdr
))
272 fdmax
= ((msg
->msg_controllen
- sizeof(struct cmsghdr
))
278 for (i
=0, cmfptr
=(__force
int __user
*)CMSG_DATA(cm
); i
<fdmax
;
283 err
= security_file_receive(fp
[i
]);
286 err
= get_unused_fd_flags(MSG_CMSG_CLOEXEC
& msg
->msg_flags
291 err
= put_user(new_fd
, cmfptr
);
293 put_unused_fd(new_fd
);
296 /* Bump the usage count and install the file. */
297 sock
= sock_from_file(fp
[i
], &err
);
299 sock_update_netprioidx(&sock
->sk
->sk_cgrp_data
);
300 sock_update_classid(&sock
->sk
->sk_cgrp_data
);
302 fd_install(new_fd
, get_file(fp
[i
]));
307 int cmlen
= CMSG_LEN(i
*sizeof(int));
308 err
= put_user(SOL_SOCKET
, &cm
->cmsg_level
);
310 err
= put_user(SCM_RIGHTS
, &cm
->cmsg_type
);
312 err
= put_user(cmlen
, &cm
->cmsg_len
);
314 cmlen
= CMSG_SPACE(i
*sizeof(int));
315 if (msg
->msg_controllen
< cmlen
)
316 cmlen
= msg
->msg_controllen
;
317 msg
->msg_control
+= cmlen
;
318 msg
->msg_controllen
-= cmlen
;
321 if (i
< fdnum
|| (fdnum
&& fdmax
<= 0))
322 msg
->msg_flags
|= MSG_CTRUNC
;
325 * All of the files that fit in the message have had their
326 * usage counts incremented, so we just free the list.
330 EXPORT_SYMBOL(scm_detach_fds
);
332 struct scm_fp_list
*scm_fp_dup(struct scm_fp_list
*fpl
)
334 struct scm_fp_list
*new_fpl
;
340 new_fpl
= kmemdup(fpl
, offsetof(struct scm_fp_list
, fp
[fpl
->count
]),
343 for (i
= 0; i
< fpl
->count
; i
++)
344 get_file(fpl
->fp
[i
]);
345 new_fpl
->max
= new_fpl
->count
;
346 new_fpl
->user
= get_uid(fpl
->user
);
350 EXPORT_SYMBOL(scm_fp_dup
);