Home | History | Annotate | Line # | Download | only in netbsd32
netbsd32_sem.c revision 1.10.2.1
      1  1.10.2.1  jdolecek /*	$NetBSD: netbsd32_sem.c,v 1.10.2.1 2017/12/03 11:36:56 jdolecek Exp $	*/
      2       1.1      cube 
      3       1.1      cube /*
      4       1.1      cube  *  Copyright (c) 2006 The NetBSD Foundation.
      5       1.1      cube  *  All rights reserved.
      6       1.1      cube  *
      7       1.1      cube  *  Redistribution and use in source and binary forms, with or without
      8       1.1      cube  *  modification, are permitted provided that the following conditions
      9       1.1      cube  *  are met:
     10       1.1      cube  *  1. Redistributions of source code must retain the above copyright
     11       1.1      cube  *     notice, this list of conditions and the following disclaimer.
     12       1.1      cube  *  2. Redistributions in binary form must reproduce the above copyright
     13       1.1      cube  *     notice, this list of conditions and the following disclaimer in the
     14       1.1      cube  *     documentation and/or other materials provided with the distribution.
     15       1.1      cube  *
     16       1.1      cube  *  THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     17       1.1      cube  *  ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     18       1.1      cube  *  TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     19       1.1      cube  *  PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     20       1.1      cube  *  BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     21       1.1      cube  *  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     22       1.1      cube  *  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     23       1.1      cube  *  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     24       1.1      cube  *  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     25       1.1      cube  *  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     26       1.1      cube  *  POSSIBILITY OF SUCH DAMAGE.
     27       1.1      cube  */
     28       1.1      cube 
     29       1.1      cube #include <sys/cdefs.h>
     30  1.10.2.1  jdolecek __KERNEL_RCSID(0, "$NetBSD: netbsd32_sem.c,v 1.10.2.1 2017/12/03 11:36:56 jdolecek Exp $");
     31       1.1      cube 
     32       1.1      cube #include <sys/types.h>
     33       1.1      cube #include <sys/param.h>
     34       1.1      cube #include <sys/systm.h>
     35       1.1      cube #include <sys/kernel.h>
     36       1.1      cube #include <sys/dirent.h>
     37  1.10.2.1  jdolecek #include <sys/condvar.h>
     38       1.1      cube #include <sys/ksem.h>
     39       1.1      cube #include <sys/mount.h>
     40       1.1      cube #include <sys/proc.h>
     41       1.1      cube #include <sys/syscallargs.h>
     42       1.1      cube 
     43       1.1      cube #include <compat/netbsd32/netbsd32.h>
     44       1.1      cube #include <compat/netbsd32/netbsd32_syscallargs.h>
     45       1.1      cube #include <compat/netbsd32/netbsd32_conv.h>
     46       1.1      cube 
     47       1.1      cube static int
     48       1.1      cube netbsd32_ksem_copyout(const void *src, void *dst, size_t size)
     49       1.1      cube {
     50       1.8        ad 	const intptr_t *idp = src;
     51       1.8        ad 	netbsd32_intptr_t id32, *outidp = dst;
     52       1.1      cube 
     53       1.8        ad 	KASSERT(size == sizeof(intptr_t));
     54       1.1      cube 
     55       1.3       dsl 	/* Returning a kernel pointer to userspace sucks badly :-( */
     56       1.8        ad 	id32 = (netbsd32_intptr_t)*idp;
     57       1.1      cube 	return copyout(&id32, outidp, sizeof(id32));
     58       1.1      cube }
     59       1.1      cube 
     60       1.1      cube int
     61       1.6       dsl netbsd32__ksem_init(struct lwp *l, const struct netbsd32__ksem_init_args *uap, register_t *retval)
     62       1.1      cube {
     63       1.6       dsl 	/* {
     64       1.1      cube 		syscallarg(unsigned int) value;
     65       1.1      cube 		syscallarg(netbsd32_semidp_t) idp;
     66       1.6       dsl 	} */
     67       1.1      cube 
     68       1.1      cube 	return do_ksem_init(l, SCARG(uap, value),
     69       1.4       dsl 	    SCARG_P32(uap, idp), netbsd32_ksem_copyout);
     70       1.1      cube }
     71       1.1      cube 
     72       1.1      cube int
     73       1.6       dsl netbsd32__ksem_open(struct lwp *l, const struct netbsd32__ksem_open_args *uap, register_t *retval)
     74       1.1      cube {
     75       1.6       dsl 	/* {
     76       1.1      cube 		syscallarg(const netbsd32_charp) name;
     77       1.1      cube 		syscallarg(int) oflag;
     78       1.1      cube 		syscallarg(mode_t) mode;
     79       1.1      cube 		syscallarg(unsigned int) value;
     80       1.1      cube 		syscallarg(netbsd32_semidp_t) idp;
     81       1.6       dsl 	} */
     82       1.1      cube 
     83       1.4       dsl 	return do_ksem_open(l, SCARG_P32(uap, name),
     84       1.1      cube 	    SCARG(uap, oflag), SCARG(uap, mode), SCARG(uap, value),
     85       1.4       dsl 	    SCARG_P32(uap, idp), netbsd32_ksem_copyout);
     86       1.1      cube }
     87       1.1      cube 
     88       1.1      cube int
     89       1.6       dsl netbsd32__ksem_unlink(struct lwp *l, const struct netbsd32__ksem_unlink_args *uap, register_t *retval)
     90       1.1      cube {
     91       1.6       dsl 	/* {
     92       1.1      cube 		syscallarg(const netbsd32_charp) name;
     93       1.6       dsl 	} */
     94       1.1      cube 	struct sys__ksem_unlink_args ua;
     95       1.1      cube 
     96       1.1      cube 	NETBSD32TOP_UAP(name, const char);
     97       1.1      cube 	return sys__ksem_unlink(l, &ua, retval);
     98       1.1      cube }
     99       1.1      cube 
    100       1.1      cube int
    101       1.6       dsl netbsd32__ksem_close(struct lwp *l, const struct netbsd32__ksem_close_args *uap, register_t *retval)
    102       1.1      cube {
    103       1.6       dsl 	/* {
    104       1.8        ad 		syscallarg(netbsd32_intptr_t) id;
    105       1.6       dsl 	} */
    106       1.1      cube 	struct sys__ksem_close_args ua;
    107       1.1      cube 
    108       1.8        ad 	NETBSD32TOX_UAP(id, intptr_t);
    109       1.1      cube 	return sys__ksem_close(l, &ua, retval);
    110       1.1      cube }
    111       1.1      cube 
    112       1.1      cube int
    113       1.6       dsl netbsd32__ksem_post(struct lwp *l, const struct netbsd32__ksem_post_args *uap, register_t *retval)
    114       1.1      cube {
    115       1.6       dsl 	/* {
    116       1.8        ad 		syscallarg(netbsd32_intptr_t) id;
    117       1.6       dsl 	} */
    118       1.1      cube 	struct sys__ksem_post_args ua;
    119       1.1      cube 
    120       1.8        ad 	NETBSD32TOX_UAP(id, intptr_t);
    121       1.1      cube 	return sys__ksem_post(l, &ua, retval);
    122       1.1      cube }
    123       1.1      cube 
    124       1.1      cube int
    125       1.6       dsl netbsd32__ksem_wait(struct lwp *l, const struct netbsd32__ksem_wait_args *uap, register_t *retval)
    126       1.1      cube {
    127       1.6       dsl 	/* {
    128       1.8        ad 		syscallarg(netbsd32_intptr_t) id;
    129       1.6       dsl 	} */
    130       1.1      cube 
    131       1.9     joerg 	return do_ksem_wait(l, SCARG(uap, id), false, NULL);
    132       1.1      cube }
    133       1.1      cube 
    134       1.1      cube int
    135       1.6       dsl netbsd32__ksem_trywait(struct lwp *l, const struct netbsd32__ksem_trywait_args *uap, register_t *retval)
    136       1.1      cube {
    137       1.6       dsl 	/* {
    138       1.8        ad 		syscallarg(netbsd32_intptr_t) id;
    139       1.6       dsl 	} */
    140       1.1      cube 
    141       1.9     joerg 	return do_ksem_wait(l, SCARG(uap, id), true, NULL);
    142       1.9     joerg }
    143       1.9     joerg 
    144       1.9     joerg int
    145       1.9     joerg netbsd32__ksem_timedwait(struct lwp *l, const struct netbsd32__ksem_timedwait_args *uap,
    146       1.9     joerg     register_t *retval)
    147       1.9     joerg {
    148       1.9     joerg 	/* {
    149       1.9     joerg 		intptr_t id;
    150       1.9     joerg 		const netbsd32_timespecp_t abstime;
    151       1.9     joerg 	} */
    152       1.9     joerg 	struct netbsd32_timespec ts32;
    153       1.9     joerg 	struct timespec ts;
    154       1.9     joerg 	intptr_t id;
    155       1.9     joerg 	int error;
    156       1.9     joerg 
    157       1.9     joerg 	id = SCARG(uap, id);
    158       1.9     joerg 
    159       1.9     joerg 	error = copyin(SCARG_P32(uap, abstime), &ts32, sizeof(ts32));
    160       1.9     joerg 	if (error != 0)
    161       1.9     joerg 		return error;
    162       1.9     joerg 	netbsd32_to_timespec(&ts32, &ts);
    163       1.9     joerg 
    164       1.9     joerg 	if (ts.tv_sec < 0 || ts.tv_nsec < 0 || ts.tv_nsec >= 1000000000)
    165       1.9     joerg 		return EINVAL;
    166       1.9     joerg 
    167       1.9     joerg 	error = do_ksem_wait(l, id, false, &ts);
    168       1.9     joerg 	if (error == EWOULDBLOCK)
    169       1.9     joerg 		error = ETIMEDOUT;
    170       1.9     joerg 	return error;
    171       1.1      cube }
    172       1.1      cube 
    173       1.1      cube int
    174       1.6       dsl netbsd32__ksem_destroy(struct lwp *l, const struct netbsd32__ksem_destroy_args *uap, register_t *retval)
    175       1.1      cube {
    176       1.6       dsl 	/* {
    177       1.8        ad 		syscallarg(netbsd32_intptr_t) id;
    178       1.6       dsl 	} */
    179       1.1      cube 	struct sys__ksem_destroy_args ua;
    180       1.1      cube 
    181       1.8        ad 	NETBSD32TOX_UAP(id, intptr_t);
    182       1.1      cube 	return sys__ksem_destroy(l, &ua, retval);
    183       1.1      cube }
    184       1.1      cube 
    185       1.1      cube int
    186       1.6       dsl netbsd32__ksem_getvalue(struct lwp *l, const struct netbsd32__ksem_getvalue_args *uap, register_t *retval)
    187       1.1      cube {
    188       1.6       dsl 	/* {
    189       1.8        ad 		syscallarg(netbsd32_intptr_t) id;
    190       1.1      cube 		syscallarg(netbsd32_intp) value;
    191       1.6       dsl 	} */
    192       1.1      cube 	struct sys__ksem_getvalue_args ua;
    193       1.1      cube 
    194       1.8        ad 	NETBSD32TOX_UAP(id, intptr_t);
    195       1.1      cube 	NETBSD32TOP_UAP(value, unsigned int);
    196       1.1      cube 	return sys__ksem_getvalue(l, &ua, retval);
    197       1.1      cube }
    198