syscall messaging 3: Expand the 'header' that goes in front of the syscall
[dragonfly.git] / sys / emulation / ibcs2 / i386 / ibcs2_util.c
1 /*
2  * Copyright (c) 1994 Christos Zoulas
3  * Copyright (c) 1995 Frank van der Linden
4  * Copyright (c) 1995 Scott Bartram
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. The name of the author may not be used to endorse or promote products
16  *    derived from this software without specific prior written permission
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  *
29  *      from: svr4_util.c,v 1.5 1995/01/22 23:44:50 christos Exp
30  * $FreeBSD: src/sys/i386/ibcs2/ibcs2_util.c,v 1.7 1999/12/15 23:01:45 eivind Exp $
31  * $DragonFly: src/sys/emulation/ibcs2/i386/Attic/ibcs2_util.c,v 1.5 2003/06/26 05:55:13 dillon Exp $
32  */
33
34 #include <sys/param.h>
35 #include <sys/systm.h>
36 #include <sys/proc.h>
37 #include <sys/namei.h>
38 #include <sys/malloc.h>
39 #include <sys/vnode.h>
40
41 #include <i386/ibcs2/ibcs2_util.h>
42
43 #include <vm/vm_zone.h>
44
45 const char      ibcs2_emul_path[] = "/compat/ibcs2";
46
47 /*
48  * Search an alternate path before passing pathname arguments on
49  * to system calls. Useful for keeping a seperate 'emulation tree'.
50  *
51  * If cflag is set, we check if an attempt can be made to create
52  * the named file, i.e. we check if the directory it should
53  * be in exists.
54  */
55 int
56 ibcs2_emul_find(sgp, prefix, path, pbuf, cflag)
57         caddr_t          *sgp;          /* Pointer to stackgap memory */
58         const char       *prefix;
59         char             *path;
60         char            **pbuf;
61         int               cflag;
62 {
63         struct thread    *td = curthread;       /* XXX */
64         struct ucred    *cred;
65         struct nameidata         nd;
66         struct nameidata         ndroot;
67         struct vattr             vat;
68         struct vattr             vatroot;
69         int                      error;
70         char                    *ptr, *buf, *cp;
71         size_t                   sz, len;
72
73         KKASSERT(td->td_proc);
74         cred = td->td_proc->p_ucred;
75
76         buf = (char *) malloc(MAXPATHLEN, M_TEMP, M_WAITOK);
77         *pbuf = path;
78
79         for (ptr = buf; (*ptr = *prefix) != '\0'; ptr++, prefix++)
80                 continue;
81
82         sz = MAXPATHLEN - (ptr - buf);
83
84         /* 
85          * If sgp is not given then the path is already in kernel space
86          */
87         if (sgp == NULL)
88                 error = copystr(path, ptr, sz, &len);
89         else
90                 error = copyinstr(path, ptr, sz, &len);
91
92         if (error) {
93                 free(buf, M_TEMP);
94                 return error;
95         }
96
97         if (*ptr != '/') {
98                 free(buf, M_TEMP);
99                 return EINVAL;
100         }
101
102         /*
103          * We know that there is a / somewhere in this pathname.
104          * Search backwards for it, to find the file's parent dir
105          * to see if it exists in the alternate tree. If it does,
106          * and we want to create a file (cflag is set). We don't
107          * need to worry about the root comparison in this case.
108          */
109
110         if (cflag) {
111                 for (cp = &ptr[len] - 1; *cp != '/'; cp--);
112                 *cp = '\0';
113
114                 NDINIT(&nd, LOOKUP, FOLLOW, UIO_SYSSPACE, buf, td);
115
116                 if ((error = namei(&nd)) != 0) {
117                         free(buf, M_TEMP);
118                         return error;
119                 }
120
121                 *cp = '/';
122         }
123         else {
124                 NDINIT(&nd, LOOKUP, FOLLOW, UIO_SYSSPACE, buf, td);
125
126                 if ((error = namei(&nd)) != 0) {
127                         free(buf, M_TEMP);
128                         return error;
129                 }
130
131                 /*
132                  * We now compare the vnode of the ibcs2_root to the one
133                  * vnode asked. If they resolve to be the same, then we
134                  * ignore the match so that the real root gets used.
135                  * This avoids the problem of traversing "../.." to find the
136                  * root directory and never finding it, because "/" resolves
137                  * to the emulation root directory. This is expensive :-(
138                  */
139                 NDINIT(&ndroot, LOOKUP, FOLLOW, UIO_SYSSPACE,
140                         ibcs2_emul_path, td);
141
142                 if ((error = namei(&ndroot)) != 0) {
143                         /* Cannot happen! */
144                         free(buf, M_TEMP);
145                         NDFREE(&nd, NDF_ONLY_PNBUF);
146                         vrele(nd.ni_vp);
147                         return error;
148                 }
149
150                 if ((error = VOP_GETATTR(nd.ni_vp, &vat, td)) != 0) {
151                         goto done;
152                 }
153
154                 if ((error = VOP_GETATTR(ndroot.ni_vp, &vatroot, td))
155                     != 0) {
156                         goto done;
157                 }
158
159                 if (vat.va_fsid == vatroot.va_fsid &&
160                     vat.va_fileid == vatroot.va_fileid) {
161                         error = ENOENT;
162                         goto done;
163                 }
164
165         }
166         if (sgp == NULL)
167                 *pbuf = buf;
168         else {
169                 sz = &ptr[len] - buf;
170                 *pbuf = stackgap_alloc(sgp, sz + 1);
171                 error = copyout(buf, *pbuf, sz);
172                 free(buf, M_TEMP);
173         }
174
175
176 done:
177         NDFREE(&nd, NDF_ONLY_PNBUF);
178         vrele(nd.ni_vp);
179         if (!cflag) {
180                 NDFREE(&ndroot, NDF_ONLY_PNBUF);
181                 vrele(ndroot.ni_vp);
182         }
183         return error;
184 }