3b608281493cbcebed5e25f52cdaf6a1c890ddb0
[dragonfly.git] / sys / emulation / ibcs2 / i386 / ibcs2_xenix.c
1 /*-
2  * Copyright (c) 1994 Sean Eric Fagan
3  * Copyright (c) 1994 Søren Schmidt
4  * Copyright (c) 1995 Steven Wallace
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  *    in this position and unchanged.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. The name of the author may not be used to endorse or promote products
17  *    derived from this software withough 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: src/sys/i386/ibcs2/ibcs2_xenix.c,v 1.20 1999/12/15 23:01:46 eivind Exp $
31  * $DragonFly: src/sys/emulation/ibcs2/i386/Attic/ibcs2_xenix.c,v 1.5 2003/07/19 21:14:34 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/sysproto.h>
39 #include <sys/kernel.h>
40 #include <sys/filio.h>
41 #include <sys/vnode.h>
42 #include <sys/sysctl.h>
43
44 #include <machine/cpu.h>
45
46 #include <i386/ibcs2/ibcs2_types.h>
47 #include <i386/ibcs2/ibcs2_unistd.h>
48 #include <i386/ibcs2/ibcs2_signal.h>
49 #include <i386/ibcs2/ibcs2_util.h>
50 #include <i386/ibcs2/ibcs2_proto.h>
51 #include <i386/ibcs2/ibcs2_xenix.h>
52 #include <i386/ibcs2/ibcs2_xenix_syscall.h>
53
54 #include <vm/vm_zone.h>
55
56 extern struct sysent xenix_sysent[];
57
58 int
59 ibcs2_xenix(struct ibcs2_xenix_args *uap)
60 {
61         struct proc *p = curproc;
62         struct trapframe *tf = p->p_md.md_regs;
63         struct sysent *callp;
64         u_int code;             
65
66         code = (tf->tf_eax & 0xff00) >> 8;
67         callp = &xenix_sysent[code];
68
69         if (code < IBCS2_XENIX_MAXSYSCALL)
70                 return((*callp->sy_call)((void *)uap));
71         else
72                 return ENOSYS;
73 }
74
75 int
76 xenix_rdchk(struct xenix_rdchk_args *uap)
77 {
78         struct proc *p = curproc;
79         int error;
80         struct ioctl_args sa;
81         caddr_t sg = stackgap_init();
82
83         DPRINTF(("IBCS2: 'xenix rdchk'\n"));
84         SCARG(&sa, fd) = SCARG(uap, fd);
85         SCARG(&sa, com) = FIONREAD;
86         SCARG(&sa, data) = stackgap_alloc(&sg, sizeof(int));
87         if ((error = ioctl(&sa)) != 0)
88                 return error;
89         p->p_retval[0] = (*((int*)SCARG(&sa, data))) ? 1 : 0;
90         return 0;
91 }
92
93 int
94 xenix_chsize(struct xenix_chsize_args *uap)
95 {
96         struct ftruncate_args sa;
97
98         DPRINTF(("IBCS2: 'xenix chsize'\n"));
99         SCARG(&sa, fd) = SCARG(uap, fd);
100         SCARG(&sa, pad) = 0;
101         SCARG(&sa, length) = SCARG(uap, size);
102         return ftruncate(&sa);
103 }
104
105
106 int
107 xenix_ftime(struct xenix_ftime_args *uap)
108 {
109         struct timeval tv;
110         struct ibcs2_timeb {
111                 unsigned long time __attribute__((packed));
112                 unsigned short millitm;
113                 short timezone;
114                 short dstflag;
115         } itb;
116
117         DPRINTF(("IBCS2: 'xenix ftime'\n"));
118         microtime(&tv);
119         itb.time = tv.tv_sec;
120         itb.millitm = (tv.tv_usec / 1000);
121         itb.timezone = tz.tz_minuteswest;
122         itb.dstflag = tz.tz_dsttime != DST_NONE;
123
124         return copyout((caddr_t)&itb, (caddr_t)SCARG(uap, tp),
125                        sizeof(struct ibcs2_timeb));
126 }
127
128 int
129 xenix_nap(struct xenix_nap_args *uap)
130 {
131         long period;
132
133         DPRINTF(("IBCS2: 'xenix nap %d ms'\n", SCARG(uap, millisec)));
134         period = (long)SCARG(uap, millisec) / (1000/hz);
135         if (period) {
136                 while (tsleep(&period, 0, "nap", period) != EWOULDBLOCK)
137                     ;
138         }
139         return 0;
140 }
141
142 int
143 xenix_utsname(struct xenix_utsname_args *uap)
144 {
145         struct ibcs2_sco_utsname {
146                 char sysname[9];
147                 char nodename[9];
148                 char release[16];
149                 char kernelid[20];
150                 char machine[9];
151                 char bustype[9];
152                 char sysserial[10];
153                 unsigned short sysorigin;
154                 unsigned short sysoem;
155                 char numusers[9];
156                 unsigned short numcpu;
157         } ibcs2_sco_uname;
158
159         DPRINTF(("IBCS2: 'xenix sco_utsname'\n"));
160         bzero(&ibcs2_sco_uname, sizeof(struct ibcs2_sco_utsname));
161         strncpy(ibcs2_sco_uname.sysname, ostype,
162                 sizeof(ibcs2_sco_uname.sysname) - 1);
163         strncpy(ibcs2_sco_uname.nodename, hostname,
164                 sizeof(ibcs2_sco_uname.nodename) - 1);
165         strncpy(ibcs2_sco_uname.release, osrelease,
166                 sizeof(ibcs2_sco_uname.release) - 1);
167         strncpy(ibcs2_sco_uname.kernelid, version,
168                 sizeof(ibcs2_sco_uname.kernelid) - 1);
169         strncpy(ibcs2_sco_uname.machine, machine,
170                 sizeof(ibcs2_sco_uname.machine) - 1);
171         strncpy(ibcs2_sco_uname.bustype, "ISA/EISA",
172                 sizeof(ibcs2_sco_uname.bustype) - 1);
173         strncpy(ibcs2_sco_uname.sysserial, "no charge",
174                 sizeof(ibcs2_sco_uname.sysserial) - 1);
175         strncpy(ibcs2_sco_uname.numusers, "unlim",
176                 sizeof(ibcs2_sco_uname.numusers) - 1);
177         ibcs2_sco_uname.sysorigin = 0xFFFF;
178         ibcs2_sco_uname.sysoem = 0xFFFF;
179         ibcs2_sco_uname.numcpu = 1;
180         return copyout((caddr_t)&ibcs2_sco_uname,
181                        (caddr_t)(void *)(intptr_t)uap->addr,
182                        sizeof(struct ibcs2_sco_utsname));
183 }
184
185 int
186 xenix_scoinfo(struct xenix_scoinfo_args *uap)
187 {
188         struct proc *p = curproc;
189
190         /* scoinfo (not documented) */
191         p->p_retval[0] = 0;
192         return 0;
193 }
194
195 int     
196 xenix_eaccess(struct xenix_eaccess_args *uap)
197 {
198         struct thread *td = curthread;  /* XXX */
199         struct proc *p = curproc;
200         struct ucred *cred = p->p_ucred;
201         struct vnode *vp;
202         struct nameidata nd;
203         int error, flags;
204         caddr_t sg = stackgap_init();
205
206         CHECKALTEXIST(&sg, SCARG(uap, path));
207
208         NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF, UIO_USERSPACE,
209             SCARG(uap, path), td);
210         if ((error = namei(&nd)) != 0)
211                 return error;
212         vp = nd.ni_vp;
213
214         /* Flags == 0 means only check for existence. */
215         if (SCARG(uap, flags)) {
216                 flags = 0;
217                 if (SCARG(uap, flags) & IBCS2_R_OK)
218                         flags |= VREAD;
219                 if (SCARG(uap, flags) & IBCS2_W_OK)
220                         flags |= VWRITE;
221                 if (SCARG(uap, flags) & IBCS2_X_OK)
222                         flags |= VEXEC;
223                 if ((flags & VWRITE) == 0 || (error = vn_writechk(vp)) == 0)
224                         error = VOP_ACCESS(vp, flags, cred, td);
225         }
226         NDFREE(&nd, NDF_ONLY_PNBUF);
227         vput(vp);
228         return error;
229 }