MOXA linux-2.6.x / linux-2.6.9-uc0 from sdlinux-moxaart.tgz
[linux-2.6.9-moxart.git] / net / core / scm.c
blob3699df388ebe6b816d598e763ac6a67b4b853876
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/errno.h>
15 #include <linux/sched.h>
16 #include <linux/mm.h>
17 #include <linux/kernel.h>
18 #include <linux/major.h>
19 #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>
28 #include <asm/system.h>
29 #include <asm/uaccess.h>
31 #include <net/protocol.h>
32 #include <linux/skbuff.h>
33 #include <net/sock.h>
34 #include <net/compat.h>
35 #include <net/scm.h>
39 * Only allow a user to send credentials, that they could set with
40 * setu(g)id.
43 static __inline__ int scm_check_creds(struct ucred *creds)
45 if ((creds->pid == current->tgid || capable(CAP_SYS_ADMIN)) &&
46 ((creds->uid == current->uid || creds->uid == current->euid ||
47 creds->uid == current->suid) || capable(CAP_SETUID)) &&
48 ((creds->gid == current->gid || creds->gid == current->egid ||
49 creds->gid == current->sgid) || capable(CAP_SETGID))) {
50 return 0;
52 return -EPERM;
55 static int scm_fp_copy(struct cmsghdr *cmsg, struct scm_fp_list **fplp)
57 int *fdp = (int*)CMSG_DATA(cmsg);
58 struct scm_fp_list *fpl = *fplp;
59 struct file **fpp;
60 int i, num;
62 num = (cmsg->cmsg_len - CMSG_ALIGN(sizeof(struct cmsghdr)))/sizeof(int);
64 if (num <= 0)
65 return 0;
67 if (num > SCM_MAX_FD)
68 return -EINVAL;
70 if (!fpl)
72 fpl = kmalloc(sizeof(struct scm_fp_list), GFP_KERNEL);
73 if (!fpl)
74 return -ENOMEM;
75 *fplp = fpl;
76 fpl->count = 0;
78 fpp = &fpl->fp[fpl->count];
80 if (fpl->count + num > SCM_MAX_FD)
81 return -EINVAL;
84 * Verify the descriptors and increment the usage count.
87 for (i=0; i< num; i++)
89 int fd = fdp[i];
90 struct file *file;
92 if (fd < 0 || !(file = fget(fd)))
93 return -EBADF;
94 *fpp++ = file;
95 fpl->count++;
97 return num;
100 void __scm_destroy(struct scm_cookie *scm)
102 struct scm_fp_list *fpl = scm->fp;
103 int i;
105 if (fpl) {
106 scm->fp = NULL;
107 for (i=fpl->count-1; i>=0; i--)
108 fput(fpl->fp[i]);
109 kfree(fpl);
113 int __scm_send(struct socket *sock, struct msghdr *msg, struct scm_cookie *p)
115 struct cmsghdr *cmsg;
116 int err;
118 for (cmsg = CMSG_FIRSTHDR(msg); cmsg; cmsg = CMSG_NXTHDR(msg, cmsg))
120 err = -EINVAL;
122 /* Verify that cmsg_len is at least sizeof(struct cmsghdr) */
123 /* The first check was omitted in <= 2.2.5. The reasoning was
124 that parser checks cmsg_len in any case, so that
125 additional check would be work duplication.
126 But if cmsg_level is not SOL_SOCKET, we do not check
127 for too short ancillary data object at all! Oops.
128 OK, let's add it...
130 if (cmsg->cmsg_len < sizeof(struct cmsghdr) ||
131 (unsigned long)(((char*)cmsg - (char*)msg->msg_control)
132 + cmsg->cmsg_len) > msg->msg_controllen)
133 goto error;
135 if (cmsg->cmsg_level != SOL_SOCKET)
136 continue;
138 switch (cmsg->cmsg_type)
140 case SCM_RIGHTS:
141 err=scm_fp_copy(cmsg, &p->fp);
142 if (err<0)
143 goto error;
144 break;
145 case SCM_CREDENTIALS:
146 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct ucred)))
147 goto error;
148 memcpy(&p->creds, CMSG_DATA(cmsg), sizeof(struct ucred));
149 err = scm_check_creds(&p->creds);
150 if (err)
151 goto error;
152 break;
153 default:
154 goto error;
158 if (p->fp && !p->fp->count)
160 kfree(p->fp);
161 p->fp = NULL;
163 return 0;
165 error:
166 scm_destroy(p);
167 return err;
170 int put_cmsg(struct msghdr * msg, int level, int type, int len, void *data)
172 struct cmsghdr __user *cm = (struct cmsghdr __user *)msg->msg_control;
173 struct cmsghdr cmhdr;
174 int cmlen = CMSG_LEN(len);
175 int err;
177 if (MSG_CMSG_COMPAT & msg->msg_flags)
178 return put_cmsg_compat(msg, level, type, len, data);
180 if (cm==NULL || msg->msg_controllen < sizeof(*cm)) {
181 msg->msg_flags |= MSG_CTRUNC;
182 return 0; /* XXX: return error? check spec. */
184 if (msg->msg_controllen < cmlen) {
185 msg->msg_flags |= MSG_CTRUNC;
186 cmlen = msg->msg_controllen;
188 cmhdr.cmsg_level = level;
189 cmhdr.cmsg_type = type;
190 cmhdr.cmsg_len = cmlen;
192 err = -EFAULT;
193 if (copy_to_user(cm, &cmhdr, sizeof cmhdr))
194 goto out;
195 if (copy_to_user(CMSG_DATA(cm), data, cmlen - sizeof(struct cmsghdr)))
196 goto out;
197 cmlen = CMSG_SPACE(len);
198 msg->msg_control += cmlen;
199 msg->msg_controllen -= cmlen;
200 err = 0;
201 out:
202 return err;
205 void scm_detach_fds(struct msghdr *msg, struct scm_cookie *scm)
207 struct cmsghdr __user *cm = (struct cmsghdr __user*)msg->msg_control;
209 int fdmax = 0;
210 int fdnum = scm->fp->count;
211 struct file **fp = scm->fp->fp;
212 int __user *cmfptr;
213 int err = 0, i;
215 if (MSG_CMSG_COMPAT & msg->msg_flags) {
216 scm_detach_fds_compat(msg, scm);
217 return;
220 if (msg->msg_controllen > sizeof(struct cmsghdr))
221 fdmax = ((msg->msg_controllen - sizeof(struct cmsghdr))
222 / sizeof(int));
224 if (fdnum < fdmax)
225 fdmax = fdnum;
227 for (i=0, cmfptr=(int __user *)CMSG_DATA(cm); i<fdmax; i++, cmfptr++)
229 int new_fd;
230 err = security_file_receive(fp[i]);
231 if (err)
232 break;
233 err = get_unused_fd();
234 if (err < 0)
235 break;
236 new_fd = err;
237 err = put_user(new_fd, cmfptr);
238 if (err) {
239 put_unused_fd(new_fd);
240 break;
242 /* Bump the usage count and install the file. */
243 get_file(fp[i]);
244 fd_install(new_fd, fp[i]);
247 if (i > 0)
249 int cmlen = CMSG_LEN(i*sizeof(int));
250 if (!err)
251 err = put_user(SOL_SOCKET, &cm->cmsg_level);
252 if (!err)
253 err = put_user(SCM_RIGHTS, &cm->cmsg_type);
254 if (!err)
255 err = put_user(cmlen, &cm->cmsg_len);
256 if (!err) {
257 cmlen = CMSG_SPACE(i*sizeof(int));
258 msg->msg_control += cmlen;
259 msg->msg_controllen -= cmlen;
262 if (i < fdnum || (fdnum && fdmax <= 0))
263 msg->msg_flags |= MSG_CTRUNC;
266 * All of the files that fit in the message have had their
267 * usage counts incremented, so we just free the list.
269 __scm_destroy(scm);
272 struct scm_fp_list *scm_fp_dup(struct scm_fp_list *fpl)
274 struct scm_fp_list *new_fpl;
275 int i;
277 if (!fpl)
278 return NULL;
280 new_fpl = kmalloc(sizeof(*fpl), GFP_KERNEL);
281 if (new_fpl) {
282 for (i=fpl->count-1; i>=0; i--)
283 get_file(fpl->fp[i]);
284 memcpy(new_fpl, fpl, sizeof(*fpl));
286 return new_fpl;
289 EXPORT_SYMBOL(__scm_destroy);
290 EXPORT_SYMBOL(__scm_send);
291 EXPORT_SYMBOL(put_cmsg);
292 EXPORT_SYMBOL(scm_detach_fds);
293 EXPORT_SYMBOL(scm_fp_dup);