svr4_sysvec.c revision 65302
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: head/sys/compat/svr4/svr4_sysvec.c 65302 2000-08-31 22:54:09Z obrien $
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/proc.h>
43#include <sys/sysent.h>
44#include <sys/imgact.h>
45#include <sys/imgact_elf.h>
46#include <sys/socket.h>
47#include <sys/malloc.h>
48#include <sys/namei.h>
49#include <sys/vnode.h>
50#include <sys/module.h>
51#include <vm/vm.h>
52#include <sys/exec.h>
53#include <sys/kernel.h>
54#include <machine/cpu.h>
55#include <netinet/in.h>
56
57#include <compat/svr4/svr4.h>
58#include <compat/svr4/svr4_types.h>
59#include <compat/svr4/svr4_syscall.h>
60#include <compat/svr4/svr4_signal.h>
61#include <compat/svr4/svr4_sockio.h>
62#include <compat/svr4/svr4_socket.h>
63#include <compat/svr4/svr4_errno.h>
64#include <compat/svr4/svr4_proto.h>
65#include <compat/svr4/svr4_siginfo.h>
66#include <compat/svr4/svr4_util.h>
67
68int bsd_to_svr4_errno[ELAST+1] = {
69        0,
70        SVR4_EPERM,
71        SVR4_ENOENT,
72        SVR4_ESRCH,
73        SVR4_EINTR,
74        SVR4_EIO,
75        SVR4_ENXIO,
76        SVR4_E2BIG,
77        SVR4_ENOEXEC,
78        SVR4_EBADF,
79        SVR4_ECHILD,
80        SVR4_EDEADLK,
81        SVR4_ENOMEM,
82        SVR4_EACCES,
83        SVR4_EFAULT,
84        SVR4_ENOTBLK,
85        SVR4_EBUSY,
86        SVR4_EEXIST,
87        SVR4_EXDEV,
88        SVR4_ENODEV,
89        SVR4_ENOTDIR,
90        SVR4_EISDIR,
91        SVR4_EINVAL,
92        SVR4_ENFILE,
93        SVR4_EMFILE,
94        SVR4_ENOTTY,
95        SVR4_ETXTBSY,
96        SVR4_EFBIG,
97        SVR4_ENOSPC,
98        SVR4_ESPIPE,
99        SVR4_EROFS,
100        SVR4_EMLINK,
101        SVR4_EPIPE,
102        SVR4_EDOM,
103        SVR4_ERANGE,
104        SVR4_EAGAIN,
105        SVR4_EINPROGRESS,
106        SVR4_EALREADY,
107        SVR4_ENOTSOCK,
108        SVR4_EDESTADDRREQ,
109        SVR4_EMSGSIZE,
110        SVR4_EPROTOTYPE,
111        SVR4_ENOPROTOOPT,
112        SVR4_EPROTONOSUPPORT,
113        SVR4_ESOCKTNOSUPPORT,
114        SVR4_EOPNOTSUPP,
115        SVR4_EPFNOSUPPORT,
116        SVR4_EAFNOSUPPORT,
117        SVR4_EADDRINUSE,
118        SVR4_EADDRNOTAVAIL,
119        SVR4_ENETDOWN,
120        SVR4_ENETUNREACH,
121        SVR4_ENETRESET,
122        SVR4_ECONNABORTED,
123        SVR4_ECONNRESET,
124        SVR4_ENOBUFS,
125        SVR4_EISCONN,
126        SVR4_ENOTCONN,
127        SVR4_ESHUTDOWN,
128        SVR4_ETOOMANYREFS,
129        SVR4_ETIMEDOUT,
130        SVR4_ECONNREFUSED,
131        SVR4_ELOOP,
132        SVR4_ENAMETOOLONG,
133        SVR4_EHOSTDOWN,
134        SVR4_EHOSTUNREACH,
135        SVR4_ENOTEMPTY,
136        SVR4_EPROCLIM,
137        SVR4_EUSERS,
138        SVR4_EDQUOT,
139        SVR4_ESTALE,
140        SVR4_EREMOTE,
141        SVR4_EBADRPC,
142        SVR4_ERPCMISMATCH,
143        SVR4_EPROGUNAVAIL,
144        SVR4_EPROGMISMATCH,
145        SVR4_EPROCUNAVAIL,
146        SVR4_ENOLCK,
147        SVR4_ENOSYS,
148        SVR4_EFTYPE,
149        SVR4_EAUTH,
150        SVR4_ENEEDAUTH,
151        SVR4_EIDRM,
152        SVR4_ENOMSG,
153};
154
155
156static int 	svr4_fixup(register_t **stack_base, struct image_params *imgp);
157
158extern struct sysent svr4_sysent[];
159#undef szsigcode
160#undef sigcode
161
162extern int svr4_szsigcode;
163extern char svr4_sigcode[];
164
165struct sysentvec svr4_sysvec = {
166  SVR4_SYS_MAXSYSCALL,
167  svr4_sysent,
168  0xff,
169  SVR4_SIGTBLSZ,
170  bsd_to_svr4_sig,
171  ELAST,  /* ELAST */
172  bsd_to_svr4_errno,
173  0,
174  svr4_fixup,
175  svr4_sendsig,
176  svr4_sigcode,
177  &svr4_szsigcode,
178  NULL,
179  "SVR4",
180  elf_coredump
181};
182
183Elf32_Brandinfo svr4_brand = {
184  ELFOSABI_SOLARIS,		/* XXX  Or should we use ELFOSABI_SYSV here?  */
185  svr4_emul_path,
186  "/lib/libc.so.1",
187  &svr4_sysvec
188};
189
190const char      svr4_emul_path[] = "/compat/svr4";
191
192static int
193svr4_fixup(register_t **stack_base, struct image_params *imgp)
194{
195	Elf32_Auxargs *args = (Elf32_Auxargs *)imgp->auxargs;
196	register_t *pos;
197
198	pos = *stack_base + (imgp->argc + imgp->envc + 2);
199
200	if (args->trace) {
201		AUXARGS_ENTRY(pos, AT_DEBUG, 1);
202	}
203	if (args->execfd != -1) {
204		AUXARGS_ENTRY(pos, AT_EXECFD, args->execfd);
205	}
206	AUXARGS_ENTRY(pos, AT_PHDR, args->phdr);
207	AUXARGS_ENTRY(pos, AT_PHENT, args->phent);
208	AUXARGS_ENTRY(pos, AT_PHNUM, args->phnum);
209	AUXARGS_ENTRY(pos, AT_PAGESZ, args->pagesz);
210	AUXARGS_ENTRY(pos, AT_FLAGS, args->flags);
211	AUXARGS_ENTRY(pos, AT_ENTRY, args->entry);
212	AUXARGS_ENTRY(pos, AT_BASE, args->base);
213	AUXARGS_ENTRY(pos, AT_UID, imgp->proc->p_cred->p_ruid);
214	AUXARGS_ENTRY(pos, AT_EUID, imgp->proc->p_cred->p_svuid);
215	AUXARGS_ENTRY(pos, AT_GID, imgp->proc->p_cred->p_rgid);
216	AUXARGS_ENTRY(pos, AT_EGID, imgp->proc->p_cred->p_svgid);
217	AUXARGS_ENTRY(pos, AT_NULL, 0);
218
219	free(imgp->auxargs, M_TEMP);
220	imgp->auxargs = NULL;
221
222	(*stack_base)--;
223	**stack_base = (int)imgp->argc;
224	return 0;
225}
226
227/*
228 * Search an alternate path before passing pathname arguments on
229 * to system calls. Useful for keeping a seperate 'emulation tree'.
230 *
231 * If cflag is set, we check if an attempt can be made to create
232 * the named file, i.e. we check if the directory it should
233 * be in exists.
234 *
235 * Code shamelessly stolen by Mark Newton from IBCS2 emulation code.
236 */
237int
238svr4_emul_find(p, sgp, prefix, path, pbuf, cflag)
239	struct proc	 *p;
240	caddr_t		 *sgp;		/* Pointer to stackgap memory */
241	const char	 *prefix;
242	char		 *path;
243	char		**pbuf;
244	int		  cflag;
245{
246	struct nameidata	 nd;
247	struct nameidata	 ndroot;
248	struct vattr		 vat;
249	struct vattr		 vatroot;
250	int			 error;
251	char			*ptr, *buf, *cp;
252	size_t			 sz, len;
253
254	buf = (char *) malloc(MAXPATHLEN, M_TEMP, M_WAITOK);
255	*pbuf = path;
256
257	for (ptr = buf; (*ptr = *prefix) != '\0'; ptr++, prefix++)
258		continue;
259
260	sz = MAXPATHLEN - (ptr - buf);
261
262	/*
263	 * If sgp is not given then the path is already in kernel space
264	 */
265	if (sgp == NULL)
266		error = copystr(path, ptr, sz, &len);
267	else
268		error = copyinstr(path, ptr, sz, &len);
269
270	if (error) {
271		free(buf, M_TEMP);
272		return error;
273	}
274
275	if (*ptr != '/') {
276		free(buf, M_TEMP);
277		return EINVAL;
278	}
279
280	/*
281	 * We know that there is a / somewhere in this pathname.
282	 * Search backwards for it, to find the file's parent dir
283	 * to see if it exists in the alternate tree. If it does,
284	 * and we want to create a file (cflag is set). We don't
285	 * need to worry about the root comparison in this case.
286	 */
287
288	if (cflag) {
289		for (cp = &ptr[len] - 1; *cp != '/'; cp--);
290		*cp = '\0';
291
292		NDINIT(&nd, LOOKUP, FOLLOW, UIO_SYSSPACE, buf, p);
293
294		if ((error = namei(&nd)) != 0) {
295			free(buf, M_TEMP);
296			return error;
297		}
298		NDFREE(&nd, NDF_ONLY_PNBUF);
299
300		*cp = '/';
301	}
302	else {
303		NDINIT(&nd, LOOKUP, FOLLOW, UIO_SYSSPACE, buf, p);
304
305		if ((error = namei(&nd)) != 0) {
306			free(buf, M_TEMP);
307			return error;
308		}
309		NDFREE(&nd, NDF_ONLY_PNBUF);
310
311		/*
312		 * We now compare the vnode of the svr4_root to the one
313		 * vnode asked. If they resolve to be the same, then we
314		 * ignore the match so that the real root gets used.
315		 * This avoids the problem of traversing "../.." to find the
316		 * root directory and never finding it, because "/" resolves
317		 * to the emulation root directory. This is expensive :-(
318		 */
319		NDINIT(&ndroot, LOOKUP, FOLLOW, UIO_SYSSPACE, svr4_emul_path,
320		       p);
321
322		if ((error = namei(&ndroot)) != 0) {
323			/* Cannot happen! */
324			free(buf, M_TEMP);
325			vrele(nd.ni_vp);
326			return error;
327		}
328		NDFREE(&ndroot, NDF_ONLY_PNBUF);
329
330		if ((error = VOP_GETATTR(nd.ni_vp, &vat, p->p_ucred, p)) != 0) {
331			goto done;
332		}
333
334		if ((error = VOP_GETATTR(ndroot.ni_vp, &vatroot, p->p_ucred, p))
335		    != 0) {
336			goto done;
337		}
338
339		if (vat.va_fsid == vatroot.va_fsid &&
340		    vat.va_fileid == vatroot.va_fileid) {
341			error = ENOENT;
342			goto done;
343		}
344
345	}
346	if (sgp == NULL)
347		*pbuf = buf;
348	else {
349		sz = &ptr[len] - buf;
350		*pbuf = stackgap_alloc(sgp, sz + 1);
351		error = copyout(buf, *pbuf, sz);
352		free(buf, M_TEMP);
353	}
354
355
356done:
357	vrele(nd.ni_vp);
358	if (!cflag)
359		vrele(ndroot.ni_vp);
360	return error;
361}
362
363static int
364svr4_elf_modevent(module_t mod, int type, void *data)
365{
366	int error;
367
368	error = 0;
369
370	switch(type) {
371	case MOD_LOAD:
372		if (elf_insert_brand_entry(&svr4_brand) < 0)
373			error = EINVAL;
374		if (error)
375			printf("cannot insert svr4 elf brand handler\n");
376		else if (bootverbose)
377			printf("svr4 ELF exec handler installed\n");
378		break;
379	case MOD_UNLOAD:
380		/* Only allow the emulator to be removed if it isn't in use. */
381		if (elf_brand_inuse(&svr4_brand) != 0) {
382			error = EBUSY;
383		} else if (elf_remove_brand_entry(&svr4_brand) < 0) {
384			error = EINVAL;
385		}
386
387		if (error)
388			printf("Could not deinstall ELF interpreter entry (error %d)\n",
389			       error);
390		else if (bootverbose)
391			printf("svr4 ELF exec handler removed\n");
392		break;
393	default:
394		break;
395	}
396	return error;
397}
398
399static moduledata_t svr4_elf_mod = {
400	"svr4elf",
401	svr4_elf_modevent,
402	0
403};
404DECLARE_MODULE(svr4elf, svr4_elf_mod, SI_SUB_EXEC, SI_ORDER_ANY);
405MODULE_DEPEND(svr4elf, streams, 1, 1, 1);
406