Home | History | Annotate | Line # | Download | only in common
linux32_time.c revision 1.36
      1  1.36  christos /*	$NetBSD: linux32_time.c,v 1.36 2011/11/18 04:08:56 christos Exp $ */
      2   1.1      manu 
      3   1.1      manu /*-
      4   1.1      manu  * Copyright (c) 2006 Emmanuel Dreyfus, all rights reserved.
      5   1.1      manu  *
      6   1.1      manu  * Redistribution and use in source and binary forms, with or without
      7   1.1      manu  * modification, are permitted provided that the following conditions
      8   1.1      manu  * are met:
      9   1.1      manu  * 1. Redistributions of source code must retain the above copyright
     10   1.1      manu  *    notice, this list of conditions and the following disclaimer.
     11   1.1      manu  * 2. Redistributions in binary form must reproduce the above copyright
     12   1.1      manu  *    notice, this list of conditions and the following disclaimer in the
     13   1.1      manu  *    documentation and/or other materials provided with the distribution.
     14   1.1      manu  * 3. All advertising materials mentioning features or use of this software
     15   1.1      manu  *    must display the following acknowledgement:
     16   1.1      manu  *	This product includes software developed by Emmanuel Dreyfus
     17   1.1      manu  * 4. The name of the author may not be used to endorse or promote
     18   1.1      manu  *    products derived from this software without specific prior written
     19   1.1      manu  *    permission.
     20   1.1      manu  *
     21   1.1      manu  * THIS SOFTWARE IS PROVIDED BY THE THE AUTHOR AND CONTRIBUTORS ``AS IS''
     22   1.1      manu  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
     23   1.1      manu  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     24   1.1      manu  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS
     25   1.1      manu  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     26   1.1      manu  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     27   1.1      manu  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     28   1.1      manu  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     29   1.1      manu  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     30   1.1      manu  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     31   1.1      manu  * POSSIBILITY OF SUCH DAMAGE.
     32   1.1      manu  */
     33   1.1      manu 
     34   1.1      manu #include <sys/cdefs.h>
     35   1.1      manu 
     36  1.36  christos __KERNEL_RCSID(0, "$NetBSD: linux32_time.c,v 1.36 2011/11/18 04:08:56 christos Exp $");
     37   1.1      manu 
     38   1.1      manu #include <sys/types.h>
     39   1.1      manu #include <sys/param.h>
     40   1.1      manu #include <sys/fstypes.h>
     41   1.1      manu #include <sys/signal.h>
     42   1.1      manu #include <sys/dirent.h>
     43   1.4       skd #include <sys/kauth.h>
     44   1.1      manu #include <sys/kernel.h>
     45   1.1      manu #include <sys/fcntl.h>
     46  1.12       dsl #include <sys/namei.h>
     47   1.1      manu #include <sys/select.h>
     48   1.1      manu #include <sys/proc.h>
     49  1.13       dsl #include <sys/resourcevar.h>
     50   1.1      manu #include <sys/ucred.h>
     51   1.1      manu #include <sys/swap.h>
     52  1.12       dsl #include <sys/vfs_syscalls.h>
     53   1.1      manu 
     54   1.1      manu #include <machine/types.h>
     55   1.1      manu 
     56   1.1      manu #include <sys/syscallargs.h>
     57   1.1      manu 
     58   1.1      manu #include <compat/netbsd32/netbsd32.h>
     59   1.1      manu #include <compat/netbsd32/netbsd32_conv.h>
     60   1.1      manu #include <compat/netbsd32/netbsd32_syscallargs.h>
     61   1.1      manu 
     62   1.1      manu #include <compat/linux/common/linux_types.h>
     63   1.1      manu #include <compat/linux/common/linux_signal.h>
     64   1.1      manu #include <compat/linux/common/linux_machdep.h>
     65   1.1      manu #include <compat/linux/common/linux_misc.h>
     66   1.1      manu #include <compat/linux/common/linux_oldolduname.h>
     67  1.18     njoly #include <compat/linux/common/linux_sched.h>
     68  1.23        ad #include <compat/linux/common/linux_ipc.h>
     69  1.23        ad #include <compat/linux/common/linux_sem.h>
     70   1.1      manu #include <compat/linux/linux_syscallargs.h>
     71   1.1      manu 
     72   1.1      manu #include <compat/linux32/common/linux32_types.h>
     73   1.1      manu #include <compat/linux32/common/linux32_signal.h>
     74   1.1      manu #include <compat/linux32/common/linux32_machdep.h>
     75   1.1      manu #include <compat/linux32/common/linux32_sysctl.h>
     76   1.1      manu #include <compat/linux32/common/linux32_socketcall.h>
     77  1.36  christos #include <compat/linux32/common/linux32_sched.h>
     78   1.1      manu #include <compat/linux32/linux32_syscallargs.h>
     79   1.1      manu 
     80   1.1      manu extern struct timezone linux_sys_tz;
     81  1.18     njoly 
     82  1.34       chs void native_to_linux32_timespec(struct linux32_timespec *, struct timespec *);
     83  1.34       chs void linux32_to_native_timespec(struct timespec *, struct linux32_timespec *);
     84  1.18     njoly 
     85   1.1      manu int
     86  1.16       dsl linux32_sys_gettimeofday(struct lwp *l, const struct linux32_sys_gettimeofday_args *uap, register_t *retval)
     87   1.1      manu {
     88  1.16       dsl 	/* {
     89  1.28     njoly 		syscallarg(netbsd32_timeval50p_t) tp;
     90   1.1      manu 		syscallarg(netbsd32_timezonep_t) tzp;
     91  1.16       dsl 	} */
     92   1.1      manu 	struct timeval tv;
     93  1.28     njoly 	struct netbsd32_timeval50 tv32;
     94   1.1      manu 	int error;
     95   1.1      manu 
     96  1.10       dsl 	if (SCARG_P32(uap, tp) != NULL) {
     97   1.1      manu 		microtime(&tv);
     98  1.28     njoly 		netbsd32_from_timeval50(&tv, &tv32);
     99  1.10       dsl 		if ((error = copyout(&tv32, SCARG_P32(uap, tp),
    100   1.1      manu 		    sizeof(tv32))) != 0)
    101   1.1      manu 			return error;
    102   1.1      manu 	}
    103   1.1      manu 
    104   1.1      manu 	/* timezone size does not change */
    105  1.10       dsl 	if (SCARG_P32(uap, tzp) != NULL) {
    106  1.10       dsl 		if ((error = copyout(&linux_sys_tz, SCARG_P32(uap, tzp),
    107   1.1      manu 		    sizeof(linux_sys_tz))) != 0)
    108   1.1      manu 			return error;
    109   1.1      manu 	}
    110   1.1      manu 
    111   1.1      manu 	return 0;
    112   1.1      manu }
    113   1.1      manu 
    114   1.1      manu int
    115  1.16       dsl linux32_sys_settimeofday(struct lwp *l, const struct linux32_sys_settimeofday_args *uap, register_t *retval)
    116   1.1      manu {
    117  1.16       dsl 	/* {
    118  1.28     njoly 		syscallarg(netbsd32_timeval50p_t) tp;
    119   1.1      manu 		syscallarg(netbsd32_timezonep_t) tzp;
    120  1.16       dsl 	} */
    121   1.1      manu 	struct linux_sys_settimeofday_args ua;
    122   1.1      manu 
    123  1.28     njoly 	NETBSD32TOP_UAP(tp, struct timeval50);
    124   1.1      manu 	NETBSD32TOP_UAP(tzp, struct timezone);
    125   1.1      manu 
    126   1.1      manu 	return linux_sys_settimeofday(l, &ua, retval);
    127   1.1      manu }
    128   1.1      manu 
    129   1.1      manu int
    130  1.16       dsl linux32_sys_time(struct lwp *l, const struct linux32_sys_time_args *uap, register_t *retval)
    131   1.1      manu {
    132  1.16       dsl 	/* {
    133  1.26     njoly 		syscallarg(linux32_timep_t) t;
    134  1.16       dsl 	} */
    135   1.2      manu         struct timeval atv;
    136   1.2      manu         linux32_time_t tt;
    137   1.2      manu         int error;
    138   1.2      manu 
    139   1.2      manu         microtime(&atv);
    140   1.2      manu 
    141   1.2      manu         tt = (linux32_time_t)atv.tv_sec;
    142   1.2      manu 
    143  1.10       dsl         if (SCARG_P32(uap, t) && (error = copyout(&tt,
    144  1.10       dsl 	    SCARG_P32(uap, t), sizeof(tt))))
    145   1.2      manu                 return error;
    146   1.1      manu 
    147   1.2      manu         retval[0] = tt;
    148   1.1      manu 
    149   1.2      manu         return 0;
    150   1.1      manu }
    151   1.1      manu 
    152   1.1      manu 
    153  1.20  christos #define	CONVTCK(r)	(r.tv_sec * hz + r.tv_usec / (1000000 / hz))
    154  1.20  christos 
    155   1.1      manu int
    156  1.16       dsl linux32_sys_times(struct lwp *l, const struct linux32_sys_times_args *uap, register_t *retval)
    157   1.1      manu {
    158  1.16       dsl 	/* {
    159   1.1      manu 		syscallarg(linux32_tmsp_t) tms;
    160  1.16       dsl 	} */
    161  1.20  christos 	struct proc *p = l->l_proc;
    162  1.20  christos 	struct timeval t;
    163  1.20  christos 	int error;
    164   1.1      manu 
    165  1.20  christos 	if (SCARG_P32(uap, tms)) {
    166  1.20  christos 		struct linux32_tms ltms32;
    167  1.20  christos 		struct rusage ru;
    168  1.20  christos 
    169  1.20  christos 		mutex_enter(p->p_lock);
    170  1.20  christos 		calcru(p, &ru.ru_utime, &ru.ru_stime, NULL, NULL);
    171  1.20  christos 		ltms32.ltms32_utime = CONVTCK(ru.ru_utime);
    172  1.20  christos 		ltms32.ltms32_stime = CONVTCK(ru.ru_stime);
    173  1.20  christos 		ltms32.ltms32_cutime = CONVTCK(p->p_stats->p_cru.ru_utime);
    174  1.20  christos 		ltms32.ltms32_cstime = CONVTCK(p->p_stats->p_cru.ru_stime);
    175  1.20  christos 		mutex_exit(p->p_lock);
    176  1.13       dsl 
    177  1.21  christos 		error = copyout(&ltms32, SCARG_P32(uap, tms), sizeof(ltms32));
    178  1.21  christos 		if (error)
    179  1.20  christos 			return error;
    180  1.20  christos 	}
    181  1.13       dsl 
    182  1.20  christos 	getmicrouptime(&t);
    183  1.13       dsl 
    184  1.20  christos 	retval[0] = ((linux32_clock_t)(CONVTCK(t)));
    185  1.20  christos 	return 0;
    186  1.20  christos }
    187   1.1      manu 
    188  1.20  christos #undef CONVTCK
    189   1.1      manu 
    190   1.1      manu int
    191  1.16       dsl linux32_sys_stime(struct lwp *l, const struct linux32_sys_stime_args *uap, register_t *retval)
    192   1.1      manu {
    193  1.16       dsl 	/* {
    194   1.1      manu 		syscallarg(linux32_timep_t) t;
    195  1.16       dsl 	} */
    196   1.1      manu 	struct timespec ts;
    197   1.1      manu 	linux32_time_t tt32;
    198   1.1      manu 	int error;
    199   1.1      manu 
    200  1.27     njoly 	if ((error = copyin(SCARG_P32(uap, t), &tt32, sizeof tt32)) != 0)
    201  1.10       dsl 		return error;
    202   1.1      manu 
    203   1.1      manu 	ts.tv_sec = (long)tt32;
    204   1.1      manu 	ts.tv_nsec = 0;
    205   1.1      manu 
    206   1.5        ad 	return settime(l->l_proc, &ts);
    207   1.1      manu }
    208   1.1      manu 
    209   1.1      manu int
    210  1.16       dsl linux32_sys_utime(struct lwp *l, const struct linux32_sys_utime_args *uap, register_t *retval)
    211   1.1      manu {
    212  1.16       dsl 	/* {
    213   1.1      manu 		syscallarg(const netbsd32_charp) path;
    214   1.1      manu 		syscallarg(linux32_utimbufp_t) times;
    215  1.16       dsl 	} */
    216   1.1      manu         struct timeval tv[2], *tvp;
    217   1.1      manu         struct linux32_utimbuf lut;
    218   1.1      manu         int error;
    219   1.1      manu 
    220  1.10       dsl         if (SCARG_P32(uap, times) != NULL) {
    221  1.10       dsl                 if ((error = copyin(SCARG_P32(uap, times), &lut, sizeof lut)))
    222   1.1      manu                         return error;
    223   1.1      manu 
    224   1.1      manu                 tv[0].tv_sec = (long)lut.l_actime;
    225   1.1      manu                 tv[0].tv_usec = 0;
    226   1.1      manu                 tv[1].tv_sec = (long)lut.l_modtime;
    227   1.1      manu 		tv[1].tv_usec = 0;
    228  1.12       dsl                 tvp = tv;
    229   1.1      manu         } else {
    230  1.12       dsl 		tvp = NULL;
    231   1.1      manu 	}
    232   1.1      manu 
    233  1.12       dsl         return do_sys_utimes(l, NULL, SCARG_P32(uap, path), FOLLOW,
    234  1.12       dsl 			    tvp, UIO_SYSSPACE);
    235  1.18     njoly }
    236  1.18     njoly 
    237  1.34       chs void
    238  1.18     njoly native_to_linux32_timespec(struct linux32_timespec *ltp, struct timespec *ntp)
    239  1.18     njoly {
    240  1.18     njoly 	ltp->tv_sec = ntp->tv_sec;
    241  1.18     njoly 	ltp->tv_nsec = ntp->tv_nsec;
    242  1.18     njoly }
    243  1.18     njoly 
    244  1.34       chs void
    245  1.18     njoly linux32_to_native_timespec(struct timespec *ntp, struct linux32_timespec *ltp)
    246  1.18     njoly {
    247  1.18     njoly 	ntp->tv_sec = ltp->tv_sec;
    248  1.18     njoly 	ntp->tv_nsec = ltp->tv_nsec;
    249  1.18     njoly }
    250  1.18     njoly 
    251  1.18     njoly int
    252  1.22     njoly linux32_sys_nanosleep(struct lwp *l,
    253  1.22     njoly     const struct linux32_sys_nanosleep_args *uap, register_t *retval)
    254  1.22     njoly {
    255  1.22     njoly 	/* {
    256  1.22     njoly 		syscallarg(linux32_timespecp_t) rqtp;
    257  1.22     njoly 		syscallarg(linux32_timespecp_t) rmtp;
    258  1.22     njoly 	} */
    259  1.22     njoly 	struct timespec rqts, rmts;
    260  1.22     njoly 	struct linux32_timespec lrqts, lrmts;
    261  1.22     njoly 	int error, error1;
    262  1.22     njoly 
    263  1.22     njoly 	error = copyin(SCARG_P32(uap, rqtp), &lrqts, sizeof(lrqts));
    264  1.22     njoly 	if (error != 0)
    265  1.22     njoly 		return error;
    266  1.22     njoly 	linux32_to_native_timespec(&rqts, &lrqts);
    267  1.22     njoly 
    268  1.22     njoly 	error = nanosleep1(l, &rqts, SCARG_P32(uap, rmtp) ? &rmts : NULL);
    269  1.22     njoly 	if (SCARG_P32(uap, rmtp) == NULL || (error != 0 && error != EINTR))
    270  1.22     njoly 		return error;
    271  1.22     njoly 
    272  1.22     njoly 	native_to_linux32_timespec(&lrmts, &rmts);
    273  1.22     njoly 	error1 = copyout(&lrmts, SCARG_P32(uap, rmtp), sizeof(lrmts));
    274  1.22     njoly 	return error1 ? error1 : error;
    275  1.22     njoly }
    276  1.22     njoly 
    277  1.22     njoly int
    278  1.18     njoly linux32_sys_clock_settime(struct lwp *l,
    279  1.18     njoly     const struct linux32_sys_clock_settime_args *uap, register_t *retval)
    280  1.18     njoly {
    281  1.18     njoly 	/* {
    282  1.18     njoly 		syscallarg(clockid_t) which;
    283  1.18     njoly 		syscallarg(linux32_timespecp_t) tp;
    284  1.18     njoly 	} */
    285  1.18     njoly 	int error;
    286  1.18     njoly 	struct timespec ts;
    287  1.18     njoly 	struct linux32_timespec lts;
    288  1.30     njoly 	clockid_t id;
    289  1.18     njoly 
    290  1.30     njoly 	error = linux_to_native_clockid(&id, SCARG(uap, which));
    291  1.30     njoly 	if (error != 0)
    292  1.30     njoly 		return error;
    293  1.18     njoly 
    294  1.18     njoly 	if ((error = copyin(SCARG_P32(uap, tp), &lts, sizeof lts)))
    295  1.18     njoly 		return error;
    296  1.18     njoly 
    297  1.18     njoly 	linux32_to_native_timespec(&ts, &lts);
    298  1.30     njoly 	return clock_settime1(l->l_proc, id, &ts, true);
    299  1.18     njoly }
    300  1.18     njoly 
    301  1.18     njoly int
    302  1.18     njoly linux32_sys_clock_gettime(struct lwp *l,
    303  1.18     njoly     const struct linux32_sys_clock_gettime_args *uap, register_t *retval)
    304  1.18     njoly {
    305  1.18     njoly 	/* {
    306  1.18     njoly 		syscallarg(clockid_t) which;
    307  1.18     njoly 		syscallarg(linux32_timespecp_t) tp;
    308  1.18     njoly 	} */
    309  1.32     njoly 	int error;
    310  1.32     njoly 	clockid_t id;
    311  1.18     njoly 	struct timespec ts;
    312  1.18     njoly 	struct linux32_timespec lts;
    313  1.18     njoly 
    314  1.32     njoly 	error = linux_to_native_clockid(&id, SCARG(uap, which));
    315  1.32     njoly 	if (error != 0)
    316  1.32     njoly 		return error;
    317  1.32     njoly 
    318  1.32     njoly 	error = clock_gettime1(id, &ts);
    319  1.32     njoly 	if (error != 0)
    320  1.32     njoly 		return error;
    321  1.18     njoly 
    322  1.18     njoly 	native_to_linux32_timespec(&lts, &ts);
    323  1.18     njoly 	return copyout(&lts, SCARG_P32(uap, tp), sizeof lts);
    324  1.18     njoly }
    325  1.18     njoly 
    326  1.18     njoly int
    327  1.18     njoly linux32_sys_clock_getres(struct lwp *l,
    328  1.18     njoly     const struct linux32_sys_clock_getres_args *uap, register_t *retval)
    329  1.18     njoly {
    330  1.18     njoly 	/* {
    331  1.18     njoly 		syscallarg(clockid_t) which;
    332  1.18     njoly 		syscallarg(linux32_timespecp_t) tp;
    333  1.18     njoly 	} */
    334  1.18     njoly 	int error;
    335  1.18     njoly 	clockid_t id;
    336  1.18     njoly 	struct timespec ts;
    337  1.18     njoly 	struct linux32_timespec lts;
    338  1.18     njoly 
    339  1.18     njoly 	error = linux_to_native_clockid(&id, SCARG(uap, which));
    340  1.18     njoly 	if (error != 0 || SCARG_P32(uap, tp) == NULL)
    341  1.18     njoly 		return error;
    342  1.18     njoly 
    343  1.31     njoly 	error = clock_getres1(id, &ts);
    344  1.31     njoly 	if (error != 0)
    345  1.31     njoly 		return error;
    346  1.31     njoly 
    347  1.18     njoly 	native_to_linux32_timespec(&lts, &ts);
    348  1.18     njoly 	return copyout(&lts, SCARG_P32(uap, tp), sizeof lts);
    349  1.18     njoly }
    350  1.25     njoly 
    351  1.25     njoly int
    352  1.25     njoly linux32_sys_clock_nanosleep(struct lwp *l,
    353  1.25     njoly     const struct linux32_sys_clock_nanosleep_args *uap, register_t *retval)
    354  1.25     njoly {
    355  1.25     njoly 	/* {
    356  1.25     njoly 		syscallarg(clockid_t) which;
    357  1.25     njoly 		syscallarg(int) flags;
    358  1.25     njoly 		syscallarg(linux32_timespecp_t) rqtp;
    359  1.25     njoly 		syscallarg(linux32_timespecp_t) rmtp;
    360  1.25     njoly 	} */
    361  1.25     njoly 	struct linux32_timespec lrqts, lrmts;
    362  1.25     njoly 	struct timespec rqts, rmts;
    363  1.25     njoly 	int error, error1;
    364  1.35     njoly 	clockid_t id;
    365  1.25     njoly 
    366  1.25     njoly 	if (SCARG(uap, flags) != 0)
    367  1.25     njoly 		return EINVAL;          /* XXX deal with TIMER_ABSTIME */
    368  1.35     njoly 
    369  1.35     njoly 	error = linux_to_native_clockid(&id, SCARG(uap, which));
    370  1.35     njoly 	if (error != 0)
    371  1.35     njoly 		return error;
    372  1.25     njoly 
    373  1.25     njoly 	error = copyin(SCARG_P32(uap, rqtp), &lrqts, sizeof lrqts);
    374  1.25     njoly 	if (error != 0)
    375  1.25     njoly 		return error;
    376  1.25     njoly 	linux32_to_native_timespec(&rqts, &lrqts);
    377  1.25     njoly 
    378  1.33     njoly 	error = nanosleep1(l, &rqts, SCARG_P32(uap, rmtp) ? &rmts : NULL);
    379  1.25     njoly 	if (SCARG_P32(uap, rmtp) == NULL || (error != 0 && error != EINTR))
    380  1.25     njoly 		return error;
    381  1.25     njoly 
    382  1.25     njoly 	native_to_linux32_timespec(&lrmts, &rmts);
    383  1.25     njoly 	error1 = copyout(&lrmts, SCARG_P32(uap, rmtp), sizeof lrmts);
    384  1.25     njoly 	return error1 ? error1 : error;
    385  1.25     njoly }
    386