Home | History | Annotate | Line # | Download | only in dev
clockctl.c revision 1.23.20.1
      1  1.23.20.1      yamt /*      $NetBSD: clockctl.c,v 1.23.20.1 2009/05/04 08:12:32 yamt Exp $ */
      2        1.1      manu 
      3        1.1      manu /*-
      4        1.1      manu  * Copyright (c) 2001 The NetBSD Foundation, Inc.
      5        1.1      manu  * All rights reserved.
      6        1.1      manu  *
      7        1.1      manu  * This code is derived from software contributed to The NetBSD Foundation
      8        1.1      manu  * by Emmanuel Dreyfus.
      9        1.1      manu  *
     10        1.1      manu  * Redistribution and use in source and binary forms, with or without
     11        1.1      manu  * modification, are permitted provided that the following conditions
     12        1.1      manu  * are met:
     13        1.1      manu  * 1. Redistributions of source code must retain the above copyright
     14        1.1      manu  *    notice, this list of conditions and the following disclaimer.
     15        1.1      manu  * 2. Redistributions in binary form must reproduce the above copyright
     16        1.1      manu  *    notice, this list of conditions and the following disclaimer in the
     17        1.1      manu  *    documentation and/or other materials provided with the distribution.
     18        1.1      manu  * 3. The name of the author may not be used to endorse or promote products
     19        1.1      manu  *    derived from this software without specific prior written permission.
     20        1.1      manu  *
     21        1.1      manu  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22        1.1      manu  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23        1.1      manu  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24        1.1      manu  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25        1.1      manu  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26        1.1      manu  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27        1.1      manu  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28        1.1      manu  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29        1.1      manu  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30        1.1      manu  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31        1.1      manu  */
     32        1.2     lukem 
     33        1.2     lukem #include <sys/cdefs.h>
     34  1.23.20.1      yamt __KERNEL_RCSID(0, "$NetBSD: clockctl.c,v 1.23.20.1 2009/05/04 08:12:32 yamt Exp $");
     35        1.5      manu 
     36        1.5      manu #include "opt_ntp.h"
     37  1.23.20.1      yamt #include "opt_compat_netbsd.h"
     38        1.1      manu 
     39        1.1      manu #include <sys/param.h>
     40        1.1      manu #include <sys/systm.h>
     41        1.1      manu #include <sys/proc.h>
     42        1.1      manu #include <sys/errno.h>
     43        1.1      manu #include <sys/ioctl.h>
     44        1.1      manu #include <sys/device.h>
     45        1.1      manu #include <sys/time.h>
     46        1.7   gehenna #include <sys/conf.h>
     47        1.1      manu #ifdef NTP
     48        1.1      manu #include <sys/timex.h>
     49        1.1      manu #endif /* NTP */
     50        1.1      manu 
     51        1.1      manu #include <sys/clockctl.h>
     52  1.23.20.1      yamt #ifdef COMPAT_50
     53  1.23.20.1      yamt #include <compat/sys/clockctl.h>
     54  1.23.20.1      yamt #endif
     55        1.1      manu 
     56        1.1      manu struct clockctl_softc {
     57        1.1      manu 	struct device   clockctl_dev;
     58        1.1      manu };
     59        1.1      manu 
     60        1.7   gehenna dev_type_ioctl(clockctlioctl);
     61        1.7   gehenna 
     62        1.7   gehenna const struct cdevsw clockctl_cdevsw = {
     63        1.7   gehenna 	nullopen, nullclose, noread, nowrite, clockctlioctl,
     64       1.18  christos 	nostop, notty, nopoll, nommap, nokqfilter, D_OTHER,
     65        1.7   gehenna };
     66        1.1      manu 
     67       1.10     perry /*ARGSUSED*/
     68        1.1      manu void
     69       1.20  christos clockctlattach(int num)
     70        1.1      manu {
     71        1.1      manu 	/* Nothing to set up before open is called */
     72        1.1      manu 	return;
     73        1.1      manu }
     74        1.1      manu 
     75        1.1      manu int
     76       1.19  christos clockctlioctl(
     77       1.20  christos     dev_t dev,
     78       1.19  christos     u_long cmd,
     79       1.21  christos     void *data,
     80       1.20  christos     int flags,
     81       1.19  christos     struct lwp *l)
     82        1.1      manu {
     83        1.1      manu 	int error = 0;
     84       1.13     perry 
     85        1.1      manu 	switch (cmd) {
     86  1.23.20.1      yamt 	case CLOCKCTL_SETTIMEOFDAY: {
     87  1.23.20.1      yamt 		struct clockctl_settimeofday *args = data;
     88        1.1      manu 
     89  1.23.20.1      yamt 		error = settimeofday1(args->tv, true, args->tzp, l, false);
     90  1.23.20.1      yamt 		break;
     91  1.23.20.1      yamt 	}
     92  1.23.20.1      yamt 	case CLOCKCTL_ADJTIME: {
     93  1.23.20.1      yamt 		struct timeval atv, oldatv;
     94  1.23.20.1      yamt 		struct clockctl_adjtime *args = data;
     95        1.1      manu 
     96  1.23.20.1      yamt 		if (args->delta) {
     97  1.23.20.1      yamt 			error = copyin(args->delta, &atv, sizeof(atv));
     98        1.1      manu 			if (error)
     99       1.13     perry 				return (error);
    100        1.1      manu 		}
    101  1.23.20.1      yamt 		adjtime1(args->delta ? &atv : NULL,
    102  1.23.20.1      yamt 		    args->olddelta ? &oldatv : NULL, l->l_proc);
    103  1.23.20.1      yamt 		if (args->olddelta)
    104  1.23.20.1      yamt 			error = copyout(&oldatv, args->olddelta,
    105  1.23.20.1      yamt 			    sizeof(oldatv));
    106  1.23.20.1      yamt 		break;
    107  1.23.20.1      yamt 	}
    108  1.23.20.1      yamt 	case CLOCKCTL_CLOCK_SETTIME: {
    109  1.23.20.1      yamt 		struct clockctl_clock_settime *args = data;
    110  1.23.20.1      yamt 		struct timespec ts;
    111        1.1      manu 
    112  1.23.20.1      yamt 		error = copyin(args->tp, &ts, sizeof ts);
    113  1.23.20.1      yamt 		if (error)
    114  1.23.20.1      yamt 			return (error);
    115  1.23.20.1      yamt 		error = clock_settime1(l->l_proc, args->clock_id, &ts, false);
    116  1.23.20.1      yamt 		break;
    117  1.23.20.1      yamt 	}
    118        1.1      manu #ifdef NTP
    119  1.23.20.1      yamt 	case CLOCKCTL_NTP_ADJTIME: {
    120  1.23.20.1      yamt 		struct clockctl_ntp_adjtime *args = data;
    121  1.23.20.1      yamt 		struct timex ntv;
    122  1.23.20.1      yamt 		register_t retval;
    123        1.6      manu 
    124  1.23.20.1      yamt 		error = copyin(args->tp, &ntv, sizeof(ntv));
    125  1.23.20.1      yamt 		if (error)
    126  1.23.20.1      yamt 			return (error);
    127       1.17    kardel 
    128  1.23.20.1      yamt 		ntp_adjtime1(&ntv);
    129       1.17    kardel 
    130  1.23.20.1      yamt 		error = copyout(&ntv, args->tp, sizeof(ntv));
    131  1.23.20.1      yamt 		if (error == 0)
    132  1.23.20.1      yamt 			error = copyout(&retval, &args->retval, sizeof(retval));
    133  1.23.20.1      yamt 		break;
    134  1.23.20.1      yamt 	}
    135        1.1      manu #endif /* NTP */
    136  1.23.20.1      yamt 	default:
    137  1.23.20.1      yamt #ifdef COMPAT_50
    138  1.23.20.1      yamt 		error = compat50_clockctlioctl(dev, cmd, data, flags, l);
    139  1.23.20.1      yamt #else
    140  1.23.20.1      yamt 		error = EINVAL;
    141  1.23.20.1      yamt #endif
    142        1.1      manu 	}
    143        1.1      manu 
    144        1.1      manu 	return (error);
    145        1.1      manu }
    146        1.1      manu 
    147        1.1      manu 
    148