]>
git.saurik.com Git - apple/xnu.git/blob - bsd/dev/ppc/stubs.c
ddb4174d4390c35f3d238216e7a15b52e1fadd42
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved.
8 * This file contains Original Code and/or Modifications of Original Code
9 * as defined in and that are subject to the Apple Public Source License
10 * Version 2.0 (the 'License'). You may not use this file except in
11 * compliance with the License. Please obtain a copy of the License at
12 * http://www.opensource.apple.com/apsl/ and read it before using this
15 * The Original Code and all software distributed under the License are
16 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
17 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
18 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
20 * Please see the License for the specific language governing rights and
21 * limitations under the License.
23 * @APPLE_LICENSE_HEADER_END@
26 * Copyright (c) 1997 by Apple Computer, Inc., all rights reserved
27 * Copyright (c) 1993 NeXT Computer, Inc.
31 #include <sys/param.h>
32 #include <sys/systm.h>
34 #include <sys/ioctl.h>
39 #include <kern/thread.h>
40 #include <kern/thread_act.h>
41 #include <kern/task.h>
42 #include <vm/vm_map.h>
46 * copy a null terminated string from the kernel address space into
47 * the user address space.
48 * - if the user is denied write access, return EFAULT.
49 * - if the end of string isn't found before
50 * maxlen bytes are copied, return ENAMETOOLONG,
51 * indicating an incomplete copy.
52 * - otherwise, return 0, indicating success.
53 * the number of bytes copied is always returned in lencopied.
56 copyoutstr(from
, to
, maxlen
, lencopied
)
58 size_t maxlen
, *lencopied
;
62 /* XXX Must optimize this */
64 slen
= strlen(from
) + 1;
68 len
= min(maxlen
,slen
);
69 if (copyout(from
, to
, len
))
78 * copy a null terminated string from one point to another in
79 * the kernel address space.
80 * - no access checks are performed.
81 * - if the end of string isn't found before
82 * maxlen bytes are copied, return ENAMETOOLONG,
83 * indicating an incomplete copy.
84 * - otherwise, return 0, indicating success.
85 * the number of bytes copied is always returned in lencopied.
87 /* from ppc/fault_copy.c -Titan1T4 VERSION */
89 copystr(vfrom
, vto
, maxlen
, lencopied
)
90 register void * vfrom
, *vto
;
91 size_t maxlen
, *lencopied
;
99 for (l
= 0; l
< maxlen
; l
++)
100 if ((*to
++ = *from
++) == '\0') {
110 int copywithin(src
, dst
, count
)
114 bcopy(src
,dst
,count
);
118 struct unix_syscallargs
{
121 int arg1
, arg2
,arg3
,arg4
,arg5
,arg6
,arg7
;
124 set_bsduthreadargs(thread_t th
, void * pcb
, struct unix_syscallargs
* sarg
)
128 ut
= get_bsdthread_info(th
);
129 ut
->uu_ar0
= (int *)pcb
;
133 ut
->uu_arg
[0] = sarg
->arg1
;
134 ut
->uu_arg
[1] = sarg
->arg2
;
135 ut
->uu_arg
[2] = sarg
->arg3
;
136 ut
->uu_arg
[3] = sarg
->arg4
;
137 ut
->uu_arg
[4] = sarg
->arg5
;
138 ut
->uu_arg
[5] = sarg
->arg6
;
139 ut
->uu_arg
[7] = sarg
->arg7
;
143 ut
->uu_arg
[0] = sarg
->r3
;
144 ut
->uu_arg
[1] = sarg
->arg1
;
145 ut
->uu_arg
[2] = sarg
->arg2
;
146 ut
->uu_arg
[3] = sarg
->arg3
;
147 ut
->uu_arg
[4] = sarg
->arg4
;
148 ut
->uu_arg
[5] = sarg
->arg5
;
149 ut
->uu_arg
[6] = sarg
->arg6
;
150 ut
->uu_arg
[7] = sarg
->arg7
;
157 get_bsduthreadarg(thread_t th
)
160 ut
= get_bsdthread_info(th
);
161 return((void *)(ut
->uu_arg
));
165 get_bsduthreadrval(thread_act_t th
)
168 ut
= get_bsdthread_info(th
);
169 return(&ut
->uu_rval
[0]);