update atp870u driver to 0.78 from D-Link source
[linux-2.4.git] / net / core / scm.c
1 /* 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/signal.h>
13 #include <linux/errno.h>
14 #include <linux/sched.h>
15 #include <linux/mm.h>
16 #include <linux/kernel.h>
17 #include <linux/major.h>
18 #include <linux/stat.h>
19 #include <linux/socket.h>
20 #include <linux/file.h>
21 #include <linux/fcntl.h>
22 #include <linux/net.h>
23 #include <linux/interrupt.h>
24 #include <linux/netdevice.h>
25
26 #include <asm/system.h>
27 #include <asm/uaccess.h>
28
29 #include <net/protocol.h>
30 #include <linux/skbuff.h>
31 #include <net/sock.h>
32 #include <net/scm.h>
33
34
35 /*
36  *      Only allow a user to send credentials, that they could set with 
37  *      setu(g)id.
38  */
39
40 static __inline__ int scm_check_creds(struct ucred *creds)
41 {
42         if ((creds->pid == current->pid || capable(CAP_SYS_ADMIN)) &&
43             ((creds->uid == current->uid || creds->uid == current->euid ||
44               creds->uid == current->suid) || capable(CAP_SETUID)) &&
45             ((creds->gid == current->gid || creds->gid == current->egid ||
46               creds->gid == current->sgid) || capable(CAP_SETGID))) {
47                return 0;
48         }
49         return -EPERM;
50 }
51
52 static int scm_fp_copy(struct cmsghdr *cmsg, struct scm_fp_list **fplp)
53 {
54         int *fdp = (int*)CMSG_DATA(cmsg);
55         struct scm_fp_list *fpl = *fplp;
56         struct file **fpp;
57         int i, num;
58
59         num = (cmsg->cmsg_len - CMSG_ALIGN(sizeof(struct cmsghdr)))/sizeof(int);
60
61         if (num <= 0)
62                 return 0;
63
64         if (num > SCM_MAX_FD)
65                 return -EINVAL;
66
67         if (!fpl)
68         {
69                 fpl = kmalloc(sizeof(struct scm_fp_list), GFP_KERNEL);
70                 if (!fpl)
71                         return -ENOMEM;
72                 *fplp = fpl;
73                 fpl->count = 0;
74         }
75         fpp = &fpl->fp[fpl->count];
76
77         if (fpl->count + num > SCM_MAX_FD)
78                 return -EINVAL;
79         
80         /*
81          *      Verify the descriptors and increment the usage count.
82          */
83          
84         for (i=0; i< num; i++)
85         {
86                 int fd = fdp[i];
87                 struct file *file;
88
89                 if (fd < 0 || !(file = fget(fd)))
90                         return -EBADF;
91                 *fpp++ = file;
92                 fpl->count++;
93         }
94         return num;
95 }
96
97 void __scm_destroy(struct scm_cookie *scm)
98 {
99         struct scm_fp_list *fpl = scm->fp;
100         int i;
101
102         if (fpl) {
103                 scm->fp = NULL;
104                 for (i=fpl->count-1; i>=0; i--)
105                         fput(fpl->fp[i]);
106                 kfree(fpl);
107         }
108 }
109
110 int __scm_send(struct socket *sock, struct msghdr *msg, struct scm_cookie *p)
111 {
112         struct cmsghdr *cmsg;
113         int err;
114
115         for (cmsg = CMSG_FIRSTHDR(msg); cmsg; cmsg = CMSG_NXTHDR(msg, cmsg))
116         {
117                 err = -EINVAL;
118
119                 /* Verify that cmsg_len is at least sizeof(struct cmsghdr) */
120                 /* The first check was omitted in <= 2.2.5. The reasoning was
121                    that parser checks cmsg_len in any case, so that
122                    additional check would be work duplication.
123                    But if cmsg_level is not SOL_SOCKET, we do not check 
124                    for too short ancillary data object at all! Oops.
125                    OK, let's add it...
126                  */
127                 if (!CMSG_OK(msg, cmsg))
128                         goto error;
129
130                 if (cmsg->cmsg_level != SOL_SOCKET)
131                         continue;
132
133                 switch (cmsg->cmsg_type)
134                 {
135                 case SCM_RIGHTS:
136                         err=scm_fp_copy(cmsg, &p->fp);
137                         if (err<0)
138                                 goto error;
139                         break;
140                 case SCM_CREDENTIALS:
141                         if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct ucred)))
142                                 goto error;
143                         memcpy(&p->creds, CMSG_DATA(cmsg), sizeof(struct ucred));
144                         err = scm_check_creds(&p->creds);
145                         if (err)
146                                 goto error;
147                         break;
148                 default:
149                         goto error;
150                 }
151         }
152
153         if (p->fp && !p->fp->count)
154         {
155                 kfree(p->fp);
156                 p->fp = NULL;
157         }
158         return 0;
159         
160 error:
161         scm_destroy(p);
162         return err;
163 }
164
165 int put_cmsg(struct msghdr * msg, int level, int type, int len, void *data)
166 {
167         struct cmsghdr *cm = (struct cmsghdr*)msg->msg_control;
168         struct cmsghdr cmhdr;
169         int cmlen = CMSG_LEN(len);
170         int err;
171
172         if (cm==NULL || msg->msg_controllen < sizeof(*cm)) {
173                 msg->msg_flags |= MSG_CTRUNC;
174                 return 0; /* XXX: return error? check spec. */
175         }
176         if (msg->msg_controllen < cmlen) {
177                 msg->msg_flags |= MSG_CTRUNC;
178                 cmlen = msg->msg_controllen;
179         }
180         cmhdr.cmsg_level = level;
181         cmhdr.cmsg_type = type;
182         cmhdr.cmsg_len = cmlen;
183
184         err = -EFAULT;
185         if (copy_to_user(cm, &cmhdr, sizeof cmhdr))
186                 goto out; 
187         if (copy_to_user(CMSG_DATA(cm), data, cmlen - sizeof(struct cmsghdr)))
188                 goto out;
189         cmlen = CMSG_SPACE(len);
190         msg->msg_control += cmlen;
191         msg->msg_controllen -= cmlen;
192         err = 0;
193 out:
194         return err;
195 }
196
197 void scm_detach_fds(struct msghdr *msg, struct scm_cookie *scm)
198 {
199         struct cmsghdr *cm = (struct cmsghdr*)msg->msg_control;
200
201         int fdmax = 0;
202         int fdnum = scm->fp->count;
203         struct file **fp = scm->fp->fp;
204         int *cmfptr;
205         int err = 0, i;
206
207         if (msg->msg_controllen > sizeof(struct cmsghdr))
208                 fdmax = ((msg->msg_controllen - sizeof(struct cmsghdr))
209                          / sizeof(int));
210
211         if (fdnum < fdmax)
212                 fdmax = fdnum;
213
214         for (i=0, cmfptr=(int*)CMSG_DATA(cm); i<fdmax; i++, cmfptr++)
215         {
216                 int new_fd;
217                 err = get_unused_fd();
218                 if (err < 0)
219                         break;
220                 new_fd = err;
221                 err = put_user(new_fd, cmfptr);
222                 if (err) {
223                         put_unused_fd(new_fd);
224                         break;
225                 }
226                 /* Bump the usage count and install the file. */
227                 get_file(fp[i]);
228                 fd_install(new_fd, fp[i]);
229         }
230
231         if (i > 0)
232         {
233                 int cmlen = CMSG_LEN(i*sizeof(int));
234                 if (!err)
235                         err = put_user(SOL_SOCKET, &cm->cmsg_level);
236                 if (!err)
237                         err = put_user(SCM_RIGHTS, &cm->cmsg_type);
238                 if (!err)
239                         err = put_user(cmlen, &cm->cmsg_len);
240                 if (!err) {
241                         cmlen = CMSG_SPACE(i*sizeof(int));
242                         msg->msg_control += cmlen;
243                         msg->msg_controllen -= cmlen;
244                 }
245         }
246         if (i < fdnum || (fdnum && fdmax <= 0))
247                 msg->msg_flags |= MSG_CTRUNC;
248
249         /*
250          * All of the files that fit in the message have had their
251          * usage counts incremented, so we just free the list.
252          */
253         __scm_destroy(scm);
254 }
255
256 struct scm_fp_list *scm_fp_dup(struct scm_fp_list *fpl)
257 {
258         struct scm_fp_list *new_fpl;
259         int i;
260
261         if (!fpl)
262                 return NULL;
263
264         new_fpl = kmalloc(sizeof(*fpl), GFP_KERNEL);
265         if (new_fpl) {
266                 for (i=fpl->count-1; i>=0; i--)
267                         get_file(fpl->fp[i]);
268                 memcpy(new_fpl, fpl, sizeof(*fpl));
269         }
270         return new_fpl;
271 }