]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/svr4/svr4_sysvec.c
unfinished sblive driver, playback/mixer only for now - not enabled in
[FreeBSD/FreeBSD.git] / sys / svr4 / svr4_sysvec.c
1 /*
2  * Copyright (c) 1998 Mark Newton
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by Christos Zoulas.
16  * 4. The name of the author may not be used to endorse or promote products
17  *    derived from this software without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  * 
30  * $FreeBSD$
31  */
32
33 /* XXX we use functions that might not exist. */
34 #include "opt_compat.h"
35
36 #ifndef COMPAT_43
37 #error "Unable to compile SVR4-emulator due to missing COMPAT_43 option!"
38 #endif
39
40 #include <sys/param.h>
41 #include <sys/systm.h>
42 #include <sys/buf.h>
43 #include <sys/proc.h>
44 #include <sys/sysent.h>
45 #include <sys/imgact.h>
46 #include <sys/imgact_elf.h>
47 #include <sys/socket.h>
48 #include <sys/malloc.h>
49 #include <sys/namei.h>
50 #include <sys/vnode.h>
51 #include <sys/module.h>
52 #include <vm/vm.h>
53 #include <vm/vm_zone.h>
54 #include <sys/exec.h>
55 #include <sys/kernel.h>
56 #include <machine/cpu.h>
57 #include <netinet/in.h>
58
59 #include <svr4/svr4.h>
60 #include <svr4/svr4_types.h>
61 #include <svr4/svr4_syscall.h>
62 #include <svr4/svr4_signal.h>
63 #include <svr4/svr4_sockio.h>
64 #include <svr4/svr4_socket.h>
65 #include <svr4/svr4_errno.h>
66 #include <svr4/svr4_proto.h>
67 #include <svr4/svr4_siginfo.h>
68 #include <svr4/svr4_util.h>
69
70 int bsd_to_svr4_errno[ELAST+1] = {
71         0,
72         SVR4_EPERM,
73         SVR4_ENOENT,
74         SVR4_ESRCH,
75         SVR4_EINTR,
76         SVR4_EIO,
77         SVR4_ENXIO,
78         SVR4_E2BIG,
79         SVR4_ENOEXEC,
80         SVR4_EBADF,
81         SVR4_ECHILD,
82         SVR4_EDEADLK,
83         SVR4_ENOMEM,
84         SVR4_EACCES,
85         SVR4_EFAULT,
86         SVR4_ENOTBLK,
87         SVR4_EBUSY,
88         SVR4_EEXIST,
89         SVR4_EXDEV,
90         SVR4_ENODEV,
91         SVR4_ENOTDIR,
92         SVR4_EISDIR,
93         SVR4_EINVAL,
94         SVR4_ENFILE,
95         SVR4_EMFILE,
96         SVR4_ENOTTY,
97         SVR4_ETXTBSY,
98         SVR4_EFBIG,
99         SVR4_ENOSPC,
100         SVR4_ESPIPE,
101         SVR4_EROFS,
102         SVR4_EMLINK,
103         SVR4_EPIPE,
104         SVR4_EDOM,
105         SVR4_ERANGE,
106         SVR4_EAGAIN,
107         SVR4_EINPROGRESS,
108         SVR4_EALREADY,
109         SVR4_ENOTSOCK,
110         SVR4_EDESTADDRREQ,
111         SVR4_EMSGSIZE,
112         SVR4_EPROTOTYPE,
113         SVR4_ENOPROTOOPT,
114         SVR4_EPROTONOSUPPORT,
115         SVR4_ESOCKTNOSUPPORT,
116         SVR4_EOPNOTSUPP,
117         SVR4_EPFNOSUPPORT,
118         SVR4_EAFNOSUPPORT,
119         SVR4_EADDRINUSE,
120         SVR4_EADDRNOTAVAIL,
121         SVR4_ENETDOWN,
122         SVR4_ENETUNREACH,
123         SVR4_ENETRESET,
124         SVR4_ECONNABORTED,
125         SVR4_ECONNRESET,
126         SVR4_ENOBUFS,
127         SVR4_EISCONN,
128         SVR4_ENOTCONN,
129         SVR4_ESHUTDOWN,
130         SVR4_ETOOMANYREFS,
131         SVR4_ETIMEDOUT,
132         SVR4_ECONNREFUSED,
133         SVR4_ELOOP,
134         SVR4_ENAMETOOLONG,
135         SVR4_EHOSTDOWN,
136         SVR4_EHOSTUNREACH,
137         SVR4_ENOTEMPTY,
138         SVR4_EPROCLIM,
139         SVR4_EUSERS,
140         SVR4_EDQUOT,
141         SVR4_ESTALE,
142         SVR4_EREMOTE,
143         SVR4_EBADRPC,
144         SVR4_ERPCMISMATCH,
145         SVR4_EPROGUNAVAIL,
146         SVR4_EPROGMISMATCH,
147         SVR4_EPROCUNAVAIL,
148         SVR4_ENOLCK,
149         SVR4_ENOSYS,
150         SVR4_EFTYPE,
151         SVR4_EAUTH,
152         SVR4_ENEEDAUTH,
153         SVR4_EIDRM,
154         SVR4_ENOMSG,
155 };
156
157
158 static int      svr4_fixup(long **stack_base, struct image_params *imgp);
159
160 extern struct sysent svr4_sysent[];
161 #undef szsigcode
162 #undef sigcode
163
164 extern int svr4_szsigcode;
165 extern char svr4_sigcode[];
166
167 struct sysentvec svr4_sysvec = {
168   SVR4_SYS_MAXSYSCALL,
169   svr4_sysent,
170   0xff,
171   SVR4_SIGTBLSZ,
172   bsd_to_svr4_sig,
173   ELAST,  /* ELAST */
174   bsd_to_svr4_errno,
175   0,
176   svr4_fixup,
177   svr4_sendsig,
178   svr4_sigcode,
179   &svr4_szsigcode,
180   NULL,
181   "SVR4",
182   elf_coredump
183 };
184
185 Elf32_Brandinfo svr4_brand = {
186   "SVR4",
187   "/compat/svr4",
188   "/lib/libc.so.1",
189   &svr4_sysvec
190 };
191
192 const char      svr4_emul_path[] = "/compat/svr4";
193
194 static int
195 svr4_fixup(long **stack_base, struct image_params *imgp)
196 {
197         Elf32_Auxargs *args = (Elf32_Auxargs *)imgp->auxargs;
198         long *pos;
199              
200         pos = *stack_base + (imgp->argc + imgp->envc + 2);  
201     
202         if (args->trace) {
203                 AUXARGS_ENTRY(pos, AT_DEBUG, 1);
204         }
205         if (args->execfd != -1) {
206                 AUXARGS_ENTRY(pos, AT_EXECFD, args->execfd);
207         }       
208         AUXARGS_ENTRY(pos, AT_PHDR, args->phdr);
209         AUXARGS_ENTRY(pos, AT_PHENT, args->phent);
210         AUXARGS_ENTRY(pos, AT_PHNUM, args->phnum);
211         AUXARGS_ENTRY(pos, AT_PAGESZ, args->pagesz);
212         AUXARGS_ENTRY(pos, AT_FLAGS, args->flags);
213         AUXARGS_ENTRY(pos, AT_ENTRY, args->entry);
214         AUXARGS_ENTRY(pos, AT_BASE, args->base);
215         AUXARGS_ENTRY(pos, AT_UID, imgp->proc->p_cred->p_ruid);
216         AUXARGS_ENTRY(pos, AT_EUID, imgp->proc->p_cred->p_svuid);
217         AUXARGS_ENTRY(pos, AT_GID, imgp->proc->p_cred->p_rgid);
218         AUXARGS_ENTRY(pos, AT_EGID, imgp->proc->p_cred->p_svgid);
219         AUXARGS_ENTRY(pos, AT_NULL, 0);
220         
221         free(imgp->auxargs, M_TEMP);      
222         imgp->auxargs = NULL;
223
224         (*stack_base)--;
225         **stack_base = (int)imgp->argc;
226         return 0;
227 }
228
229 /*
230  * Search an alternate path before passing pathname arguments on
231  * to system calls. Useful for keeping a seperate 'emulation tree'.
232  *
233  * If cflag is set, we check if an attempt can be made to create
234  * the named file, i.e. we check if the directory it should
235  * be in exists.
236  *
237  * Code shamelessly stolen by Mark Newton from IBCS2 emulation code.
238  */
239 int
240 svr4_emul_find(p, sgp, prefix, path, pbuf, cflag)
241         struct proc      *p;
242         caddr_t          *sgp;          /* Pointer to stackgap memory */
243         const char       *prefix;
244         char             *path;
245         char            **pbuf;
246         int               cflag;
247 {
248         struct nameidata         nd;
249         struct nameidata         ndroot;
250         struct vattr             vat;
251         struct vattr             vatroot;
252         int                      error;
253         char                    *ptr, *buf, *cp;
254         size_t                   sz, len;
255
256         buf = (char *) malloc(MAXPATHLEN, M_TEMP, M_WAITOK);
257         *pbuf = path;
258
259         for (ptr = buf; (*ptr = *prefix) != '\0'; ptr++, prefix++)
260                 continue;
261
262         sz = MAXPATHLEN - (ptr - buf);
263
264         /* 
265          * If sgp is not given then the path is already in kernel space
266          */
267         if (sgp == NULL)
268                 error = copystr(path, ptr, sz, &len);
269         else
270                 error = copyinstr(path, ptr, sz, &len);
271
272         if (error) {
273                 free(buf, M_TEMP);
274                 return error;
275         }
276
277         if (*ptr != '/') {
278                 free(buf, M_TEMP);
279                 return EINVAL;
280         }
281
282         /*
283          * We know that there is a / somewhere in this pathname.
284          * Search backwards for it, to find the file's parent dir
285          * to see if it exists in the alternate tree. If it does,
286          * and we want to create a file (cflag is set). We don't
287          * need to worry about the root comparison in this case.
288          */
289
290         if (cflag) {
291                 for (cp = &ptr[len] - 1; *cp != '/'; cp--);
292                 *cp = '\0';
293
294                 NDINIT(&nd, LOOKUP, FOLLOW, UIO_SYSSPACE, buf, p);
295
296                 if ((error = namei(&nd)) != 0) {
297                         free(buf, M_TEMP);
298                         return error;
299                 }
300                 NDFREE(&nd, NDF_ONLY_PNBUF);
301
302                 *cp = '/';
303         }
304         else {
305                 NDINIT(&nd, LOOKUP, FOLLOW, UIO_SYSSPACE, buf, p);
306
307                 if ((error = namei(&nd)) != 0) {
308                         free(buf, M_TEMP);
309                         return error;
310                 }
311                 NDFREE(&nd, NDF_ONLY_PNBUF);
312
313                 /*
314                  * We now compare the vnode of the svr4_root to the one
315                  * vnode asked. If they resolve to be the same, then we
316                  * ignore the match so that the real root gets used.
317                  * This avoids the problem of traversing "../.." to find the
318                  * root directory and never finding it, because "/" resolves
319                  * to the emulation root directory. This is expensive :-(
320                  */
321                 NDINIT(&ndroot, LOOKUP, FOLLOW, UIO_SYSSPACE, svr4_emul_path,
322                        p);
323
324                 if ((error = namei(&ndroot)) != 0) {
325                         /* Cannot happen! */
326                         free(buf, M_TEMP);
327                         vrele(nd.ni_vp);
328                         return error;
329                 }
330                 NDFREE(&ndroot, NDF_ONLY_PNBUF);
331
332                 if ((error = VOP_GETATTR(nd.ni_vp, &vat, p->p_ucred, p)) != 0) {
333                         goto done;
334                 }
335
336                 if ((error = VOP_GETATTR(ndroot.ni_vp, &vatroot, p->p_ucred, p))
337                     != 0) {
338                         goto done;
339                 }
340
341                 if (vat.va_fsid == vatroot.va_fsid &&
342                     vat.va_fileid == vatroot.va_fileid) {
343                         error = ENOENT;
344                         goto done;
345                 }
346
347         }
348         if (sgp == NULL)
349                 *pbuf = buf;
350         else {
351                 sz = &ptr[len] - buf;
352                 *pbuf = stackgap_alloc(sgp, sz + 1);
353                 error = copyout(buf, *pbuf, sz);
354                 free(buf, M_TEMP);
355         }
356
357
358 done:
359         vrele(nd.ni_vp);
360         if (!cflag)
361                 vrele(ndroot.ni_vp);
362         return error;
363 }
364
365 static int
366 svr4_elf_modevent(module_t mod, int type, void *data)
367 {
368         int error;
369
370         error = 0;
371
372         switch(type) {
373         case MOD_LOAD:
374                 if (elf_insert_brand_entry(&svr4_brand) < 0)
375                         error = EINVAL;
376                 if (error)
377                         printf("cannot insert svr4 elf brand handler\n");
378                 else if (bootverbose)
379                         printf("svr4 ELF exec handler installed\n");
380                 break;
381         case MOD_UNLOAD:
382                 /* Only allow the emulator to be removed if it isn't in use. */
383                 if (elf_brand_inuse(&svr4_brand) != 0) {
384                         error = EBUSY;
385                 } else if (elf_remove_brand_entry(&svr4_brand) < 0) {
386                         error = EINVAL;
387                 }
388
389                 if (error)
390                         printf("Could not deinstall ELF interpreter entry (error %d)\n",
391                                error);
392                 else if (bootverbose)
393                         printf("svr4 ELF exec handler removed\n");
394                 break;
395         default:
396                 break;
397         }
398         return error;
399 }
400
401 static moduledata_t svr4_elf_mod = {
402         "svr4elf",
403         svr4_elf_modevent,
404         0
405 };
406 DECLARE_MODULE(svr4elf, svr4_elf_mod, SI_SUB_EXEC, SI_ORDER_ANY);