Home | History | Annotate | Line # | Download | only in sysmon
sysmon_envsys.c revision 1.46.2.3
      1  1.46.2.3      matt /*	sysmon_envsys.c,v 1.46.2.2 2008/01/09 01:54:33 matt Exp	*/
      2      1.18   xtraeme 
      3      1.18   xtraeme /*-
      4  1.46.2.1      matt  * Copyright (c) 2007 Juan Romero Pardines.
      5      1.18   xtraeme  * All rights reserved.
      6      1.18   xtraeme  *
      7      1.18   xtraeme  * Redistribution and use in source and binary forms, with or without
      8      1.18   xtraeme  * modification, are permitted provided that the following conditions
      9      1.18   xtraeme  * are met:
     10      1.18   xtraeme  * 1. Redistributions of source code must retain the above copyright
     11      1.18   xtraeme  *    notice, this list of conditions and the following disclaimer.
     12      1.18   xtraeme  * 2. Redistributions in binary form must reproduce the above copyright
     13      1.18   xtraeme  *    notice, this list of conditions and the following disclaimer in the
     14      1.18   xtraeme  *    documentation and/or other materials provided with the distribution.
     15  1.46.2.1      matt  *
     16  1.46.2.1      matt  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     17  1.46.2.1      matt  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     18  1.46.2.1      matt  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     19  1.46.2.1      matt  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     20  1.46.2.1      matt  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     21  1.46.2.1      matt  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     22  1.46.2.1      matt  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     23  1.46.2.1      matt  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     24  1.46.2.1      matt  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     25  1.46.2.1      matt  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     26      1.18   xtraeme  */
     27       1.1   thorpej 
     28       1.1   thorpej /*-
     29       1.1   thorpej  * Copyright (c) 2000 Zembu Labs, Inc.
     30       1.1   thorpej  * All rights reserved.
     31       1.1   thorpej  *
     32       1.1   thorpej  * Author: Jason R. Thorpe <thorpej (at) zembu.com>
     33       1.1   thorpej  *
     34       1.1   thorpej  * Redistribution and use in source and binary forms, with or without
     35       1.1   thorpej  * modification, are permitted provided that the following conditions
     36       1.1   thorpej  * are met:
     37       1.1   thorpej  * 1. Redistributions of source code must retain the above copyright
     38       1.1   thorpej  *    notice, this list of conditions and the following disclaimer.
     39       1.1   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     40       1.1   thorpej  *    notice, this list of conditions and the following disclaimer in the
     41       1.1   thorpej  *    documentation and/or other materials provided with the distribution.
     42       1.1   thorpej  * 3. All advertising materials mentioning features or use of this software
     43       1.1   thorpej  *    must display the following acknowledgement:
     44       1.1   thorpej  *	This product includes software developed by Zembu Labs, Inc.
     45       1.1   thorpej  * 4. Neither the name of Zembu Labs nor the names of its employees may
     46       1.1   thorpej  *    be used to endorse or promote products derived from this software
     47       1.1   thorpej  *    without specific prior written permission.
     48       1.1   thorpej  *
     49       1.1   thorpej  * THIS SOFTWARE IS PROVIDED BY ZEMBU LABS, INC. ``AS IS'' AND ANY EXPRESS
     50       1.1   thorpej  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WAR-
     51       1.1   thorpej  * RANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DIS-
     52       1.1   thorpej  * CLAIMED.  IN NO EVENT SHALL ZEMBU LABS BE LIABLE FOR ANY DIRECT, INDIRECT,
     53       1.1   thorpej  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     54       1.1   thorpej  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     55       1.1   thorpej  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     56       1.1   thorpej  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     57       1.1   thorpej  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     58       1.1   thorpej  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     59       1.1   thorpej  */
     60       1.1   thorpej 
     61       1.1   thorpej /*
     62      1.18   xtraeme  * Environmental sensor framework for sysmon, exported to userland
     63      1.18   xtraeme  * with proplib(3).
     64       1.1   thorpej  */
     65       1.2     lukem 
     66       1.2     lukem #include <sys/cdefs.h>
     67  1.46.2.3      matt __KERNEL_RCSID(0, "sysmon_envsys.c,v 1.46.2.2 2008/01/09 01:54:33 matt Exp");
     68       1.1   thorpej 
     69       1.1   thorpej #include <sys/param.h>
     70      1.18   xtraeme #include <sys/types.h>
     71       1.1   thorpej #include <sys/conf.h>
     72       1.1   thorpej #include <sys/errno.h>
     73      1.22   xtraeme #include <sys/fcntl.h>
     74       1.1   thorpej #include <sys/kernel.h>
     75       1.1   thorpej #include <sys/systm.h>
     76       1.1   thorpej #include <sys/proc.h>
     77      1.18   xtraeme #include <sys/mutex.h>
     78      1.18   xtraeme #include <sys/kmem.h>
     79       1.1   thorpej 
     80  1.46.2.1      matt /* #define ENVSYS_DEBUG */
     81       1.1   thorpej #include <dev/sysmon/sysmonvar.h>
     82      1.18   xtraeme #include <dev/sysmon/sysmon_envsysvar.h>
     83      1.18   xtraeme #include <dev/sysmon/sysmon_taskq.h>
     84       1.1   thorpej 
     85  1.46.2.1      matt /*
     86  1.46.2.1      matt  * Notes about locking:
     87  1.46.2.1      matt  *
     88  1.46.2.2      matt  * The 'sme_mtx' lock is used to protect access to the sysmon_envsys
     89  1.46.2.2      matt  * objects (devices, sensors, events) and the global counter
     90  1.46.2.2      matt  * 'sysmon_envsys_next_sensor_index'. The 'sme_cv' condition variable
     91  1.46.2.2      matt  * is used to wait for completion paths on these objects.
     92  1.46.2.2      matt  *
     93  1.46.2.2      matt  * The 'sme_events_mtx' lock is used to protect initialization and
     94  1.46.2.2      matt  * finalization of the per device events framework (the callout(9) and
     95  1.46.2.2      matt  * workqueue(9) that is used to check for conditions and sending events
     96  1.46.2.2      matt  * to the powerd(8) daemon (if running)).
     97  1.46.2.1      matt  *
     98  1.46.2.2      matt  * The callouts are protected by the 'sme_callout_mtx'.
     99  1.46.2.1      matt  */
    100      1.18   xtraeme 
    101  1.46.2.2      matt kmutex_t sme_mtx, sme_events_mtx, sme_callout_mtx;
    102  1.46.2.1      matt kcondvar_t sme_cv;
    103      1.18   xtraeme 
    104  1.46.2.1      matt /*
    105  1.46.2.1      matt  * Types of properties that can be set via userland.
    106  1.46.2.1      matt  */
    107  1.46.2.1      matt enum {
    108  1.46.2.1      matt 	USERPROP_DESC 		= 0x0001,
    109  1.46.2.1      matt 	USERPROP_BATTCAP	= 0x0002,
    110  1.46.2.1      matt 	USERPROP_CRITMAX	= 0x0004,
    111  1.46.2.1      matt 	USERPROP_CRITMIN	= 0x0008,
    112  1.46.2.1      matt 	USERPROP_RFACT		= 0x0010
    113      1.27   xtraeme };
    114      1.27   xtraeme 
    115      1.18   xtraeme static prop_dictionary_t sme_propd;
    116  1.46.2.1      matt static uint32_t sysmon_envsys_next_sensor_index = 0;
    117      1.18   xtraeme static struct sysmon_envsys *sysmon_envsys_find_40(u_int);
    118       1.1   thorpej 
    119  1.46.2.1      matt static void sysmon_envsys_destroy_plist(prop_array_t);
    120  1.46.2.1      matt static void sme_remove_userprops(void);
    121  1.46.2.2      matt static int sme_add_property_dictionary(struct sysmon_envsys *, prop_array_t,
    122  1.46.2.2      matt 				       prop_dictionary_t);
    123       1.1   thorpej 
    124      1.18   xtraeme /*
    125      1.18   xtraeme  * sysmon_envsys_init:
    126      1.18   xtraeme  *
    127      1.18   xtraeme  * 	+ Initialize global mutexes, dictionary and the linked lists.
    128      1.18   xtraeme  */
    129      1.18   xtraeme void
    130      1.18   xtraeme sysmon_envsys_init(void)
    131      1.18   xtraeme {
    132      1.18   xtraeme 	LIST_INIT(&sysmon_envsys_list);
    133  1.46.2.2      matt 	mutex_init(&sme_mtx, MUTEX_DEFAULT, IPL_NONE);
    134  1.46.2.2      matt 	mutex_init(&sme_events_mtx, MUTEX_DEFAULT, IPL_NONE);
    135  1.46.2.2      matt 	mutex_init(&sme_callout_mtx, MUTEX_DEFAULT, IPL_SOFTCLOCK);
    136  1.46.2.2      matt 	cv_init(&sme_cv, "smeworker");
    137      1.18   xtraeme 	sme_propd = prop_dictionary_create();
    138      1.18   xtraeme }
    139       1.1   thorpej 
    140       1.1   thorpej /*
    141       1.1   thorpej  * sysmonopen_envsys:
    142       1.1   thorpej  *
    143      1.18   xtraeme  *	+ Open the system monitor device.
    144       1.1   thorpej  */
    145       1.1   thorpej int
    146      1.18   xtraeme sysmonopen_envsys(dev_t dev, int flag, int mode, struct lwp *l)
    147       1.1   thorpej {
    148      1.18   xtraeme 	return 0;
    149       1.1   thorpej }
    150       1.1   thorpej 
    151       1.1   thorpej /*
    152       1.1   thorpej  * sysmonclose_envsys:
    153       1.1   thorpej  *
    154      1.18   xtraeme  *	+ Close the system monitor device.
    155       1.1   thorpej  */
    156       1.1   thorpej int
    157      1.18   xtraeme sysmonclose_envsys(dev_t dev, int flag, int mode, struct lwp *l)
    158       1.1   thorpej {
    159      1.18   xtraeme 	return 0;
    160       1.1   thorpej }
    161       1.1   thorpej 
    162       1.1   thorpej /*
    163       1.1   thorpej  * sysmonioctl_envsys:
    164       1.1   thorpej  *
    165  1.46.2.1      matt  *	+ Perform a sysmon envsys control request.
    166       1.1   thorpej  */
    167       1.1   thorpej int
    168      1.18   xtraeme sysmonioctl_envsys(dev_t dev, u_long cmd, void *data, int flag, struct lwp *l)
    169       1.1   thorpej {
    170      1.18   xtraeme 	struct sysmon_envsys *sme = NULL;
    171       1.1   thorpej 	int error = 0;
    172       1.1   thorpej 	u_int oidx;
    173       1.1   thorpej 
    174       1.1   thorpej 	switch (cmd) {
    175  1.46.2.2      matt 	/*
    176  1.46.2.2      matt 	 * To update the global dictionary with latest data from devices.
    177  1.46.2.2      matt 	 */
    178      1.18   xtraeme 	case ENVSYS_GETDICTIONARY:
    179      1.18   xtraeme 	    {
    180      1.18   xtraeme 		struct plistref *plist = (struct plistref *)data;
    181  1.46.2.1      matt 
    182      1.18   xtraeme 		/*
    183  1.46.2.2      matt 		 * Update dictionaries on all sysmon envsys devices
    184  1.46.2.2      matt 		 * registered.
    185      1.18   xtraeme 		 */
    186  1.46.2.1      matt 		mutex_enter(&sme_mtx);
    187      1.18   xtraeme 		LIST_FOREACH(sme, &sysmon_envsys_list, sme_list) {
    188  1.46.2.2      matt 			sysmon_envsys_acquire(sme);
    189      1.18   xtraeme 			error = sme_update_dictionary(sme);
    190      1.18   xtraeme 			if (error) {
    191      1.18   xtraeme 				DPRINTF(("%s: sme_update_dictionary, "
    192      1.18   xtraeme 				    "error=%d\n", __func__, error));
    193  1.46.2.2      matt 				sysmon_envsys_release(sme);
    194      1.18   xtraeme 				mutex_exit(&sme_mtx);
    195      1.18   xtraeme 				return error;
    196      1.18   xtraeme 			}
    197  1.46.2.2      matt 			sysmon_envsys_release(sme);
    198      1.18   xtraeme 		}
    199  1.46.2.1      matt 		mutex_exit(&sme_mtx);
    200      1.18   xtraeme 		/*
    201      1.18   xtraeme 		 * Copy global dictionary to userland.
    202      1.18   xtraeme 		 */
    203      1.18   xtraeme 		error = prop_dictionary_copyout_ioctl(plist, cmd, sme_propd);
    204       1.1   thorpej 		break;
    205      1.18   xtraeme 	    }
    206  1.46.2.2      matt 	/*
    207  1.46.2.2      matt 	 * To set properties on multiple devices.
    208  1.46.2.2      matt 	 */
    209      1.18   xtraeme 	case ENVSYS_SETDICTIONARY:
    210       1.1   thorpej 	    {
    211      1.18   xtraeme 		const struct plistref *plist = (const struct plistref *)data;
    212      1.18   xtraeme 		prop_dictionary_t udict;
    213  1.46.2.1      matt 		prop_object_iterator_t iter, iter2;
    214  1.46.2.1      matt 		prop_object_t obj, obj2;
    215  1.46.2.1      matt 		prop_array_t array_u, array_k;
    216      1.18   xtraeme 		const char *devname = NULL;
    217      1.18   xtraeme 
    218      1.22   xtraeme 		if ((flag & FWRITE) == 0)
    219      1.22   xtraeme 			return EPERM;
    220      1.22   xtraeme 
    221      1.18   xtraeme 		/*
    222      1.18   xtraeme 		 * Get dictionary from userland.
    223      1.18   xtraeme 		 */
    224      1.18   xtraeme 		error = prop_dictionary_copyin_ioctl(plist, cmd, &udict);
    225      1.41   xtraeme 		if (error) {
    226      1.41   xtraeme 			DPRINTF(("%s: copyin_ioctl error=%d\n",
    227      1.41   xtraeme 			    __func__, error));
    228      1.18   xtraeme 			break;
    229      1.41   xtraeme 		}
    230       1.4  explorer 
    231  1.46.2.1      matt 		iter = prop_dictionary_iterator(udict);
    232  1.46.2.1      matt 		if (!iter) {
    233  1.46.2.1      matt 			prop_object_release(udict);
    234  1.46.2.1      matt 			return ENOMEM;
    235  1.46.2.1      matt 		}
    236  1.46.2.1      matt 
    237      1.18   xtraeme 		/*
    238  1.46.2.1      matt 		 * Iterate over the userland dictionary and process
    239  1.46.2.1      matt 		 * the list of devices.
    240      1.18   xtraeme 		 */
    241  1.46.2.1      matt 		while ((obj = prop_object_iterator_next(iter))) {
    242  1.46.2.1      matt 			array_u = prop_dictionary_get_keysym(udict, obj);
    243  1.46.2.1      matt 			if (prop_object_type(array_u) != PROP_TYPE_ARRAY) {
    244  1.46.2.1      matt 				prop_object_iterator_release(iter);
    245  1.46.2.1      matt 				prop_object_release(udict);
    246  1.46.2.1      matt 				return EINVAL;
    247  1.46.2.1      matt 			}
    248  1.46.2.1      matt 
    249  1.46.2.1      matt 			devname = prop_dictionary_keysym_cstring_nocopy(obj);
    250  1.46.2.1      matt 			DPRINTF(("%s: processing the '%s' array requests\n",
    251  1.46.2.1      matt 			    __func__, devname));
    252  1.46.2.1      matt 
    253  1.46.2.1      matt 			/*
    254  1.46.2.1      matt 			 * find the correct sme device.
    255  1.46.2.1      matt 			 */
    256  1.46.2.2      matt 			mutex_enter(&sme_mtx);
    257  1.46.2.1      matt 			sme = sysmon_envsys_find(devname);
    258  1.46.2.1      matt 			if (!sme) {
    259  1.46.2.2      matt 				mutex_exit(&sme_mtx);
    260  1.46.2.1      matt 				DPRINTF(("%s: NULL sme\n", __func__));
    261  1.46.2.1      matt 				prop_object_iterator_release(iter);
    262  1.46.2.1      matt 				prop_object_release(udict);
    263  1.46.2.1      matt 				return EINVAL;
    264  1.46.2.1      matt 			}
    265  1.46.2.1      matt 
    266  1.46.2.1      matt 			/*
    267  1.46.2.1      matt 			 * Find the correct array object with the string
    268  1.46.2.1      matt 			 * supplied by the userland dictionary.
    269  1.46.2.1      matt 			 */
    270  1.46.2.1      matt 			array_k = prop_dictionary_get(sme_propd, devname);
    271  1.46.2.1      matt 			if (prop_object_type(array_k) != PROP_TYPE_ARRAY) {
    272  1.46.2.1      matt 				DPRINTF(("%s: array device failed\n",
    273  1.46.2.1      matt 				    __func__));
    274  1.46.2.1      matt 				sysmon_envsys_release(sme);
    275  1.46.2.2      matt 				mutex_exit(&sme_mtx);
    276  1.46.2.1      matt 				prop_object_iterator_release(iter);
    277  1.46.2.1      matt 				prop_object_release(udict);
    278  1.46.2.1      matt 				return EINVAL;
    279  1.46.2.1      matt 			}
    280  1.46.2.1      matt 
    281  1.46.2.1      matt 			iter2 = prop_array_iterator(array_u);
    282  1.46.2.1      matt 			if (!iter2) {
    283  1.46.2.1      matt 				sysmon_envsys_release(sme);
    284  1.46.2.2      matt 				mutex_exit(&sme_mtx);
    285  1.46.2.1      matt 				prop_object_iterator_release(iter);
    286  1.46.2.1      matt 				prop_object_release(udict);
    287  1.46.2.1      matt 				return ENOMEM;
    288  1.46.2.1      matt 			}
    289  1.46.2.1      matt 
    290  1.46.2.1      matt 			/*
    291  1.46.2.1      matt 			 * Iterate over the array of dictionaries to
    292  1.46.2.2      matt 			 * process the list of sensors and properties.
    293  1.46.2.1      matt 			 */
    294  1.46.2.1      matt 			while ((obj2 = prop_object_iterator_next(iter2))) {
    295  1.46.2.2      matt 				/*
    296  1.46.2.2      matt 				 * do the real work now.
    297  1.46.2.2      matt 				 */
    298  1.46.2.1      matt 				error = sme_userset_dictionary(sme,
    299  1.46.2.1      matt 							       obj2,
    300  1.46.2.1      matt 							       array_k);
    301  1.46.2.1      matt 				if (error) {
    302  1.46.2.1      matt 					sysmon_envsys_release(sme);
    303  1.46.2.2      matt 					mutex_exit(&sme_mtx);
    304  1.46.2.1      matt 					prop_object_iterator_release(iter2);
    305  1.46.2.1      matt 					prop_object_iterator_release(iter);
    306  1.46.2.1      matt 					prop_object_release(udict);
    307  1.46.2.2      matt 					return error;
    308  1.46.2.1      matt 				}
    309  1.46.2.1      matt 			}
    310  1.46.2.1      matt 
    311  1.46.2.1      matt 			sysmon_envsys_release(sme);
    312  1.46.2.2      matt 			mutex_exit(&sme_mtx);
    313  1.46.2.1      matt 			prop_object_iterator_release(iter2);
    314      1.18   xtraeme 		}
    315       1.4  explorer 
    316  1.46.2.1      matt 		prop_object_iterator_release(iter);
    317  1.46.2.1      matt 		prop_object_release(udict);
    318  1.46.2.1      matt 		break;
    319  1.46.2.1      matt 	    }
    320  1.46.2.2      matt 	/*
    321  1.46.2.2      matt 	 * To remove all properties from all devices registered.
    322  1.46.2.2      matt 	 */
    323  1.46.2.1      matt 	case ENVSYS_REMOVEPROPS:
    324  1.46.2.1      matt 	    {
    325  1.46.2.1      matt 		const struct plistref *plist = (const struct plistref *)data;
    326  1.46.2.1      matt 		prop_dictionary_t udict;
    327  1.46.2.1      matt 		prop_object_t obj;
    328       1.4  explorer 
    329  1.46.2.1      matt 		if ((flag & FWRITE) == 0)
    330  1.46.2.1      matt 			return EPERM;
    331  1.46.2.1      matt 
    332  1.46.2.1      matt 		error = prop_dictionary_copyin_ioctl(plist, cmd, &udict);
    333  1.46.2.1      matt 		if (error) {
    334  1.46.2.1      matt 			DPRINTF(("%s: copyin_ioctl error=%d\n",
    335  1.46.2.1      matt 			    __func__, error));
    336       1.4  explorer 			break;
    337       1.4  explorer 		}
    338       1.1   thorpej 
    339  1.46.2.1      matt 		obj = prop_dictionary_get(udict, "envsys-remove-props");
    340  1.46.2.1      matt 		if (!obj || !prop_bool_true(obj)) {
    341  1.46.2.1      matt 			DPRINTF(("%s: invalid 'envsys-remove-props'\n",
    342  1.46.2.1      matt 			     __func__));
    343  1.46.2.1      matt 			return EINVAL;
    344       1.1   thorpej 		}
    345      1.18   xtraeme 
    346  1.46.2.2      matt 		prop_object_release(udict);
    347  1.46.2.1      matt 		sme_remove_userprops();
    348  1.46.2.1      matt 
    349       1.1   thorpej 		break;
    350       1.1   thorpej 	    }
    351  1.46.2.2      matt 	/*
    352  1.46.2.2      matt 	 * Compatibility ioctls with the old interface, only implemented
    353  1.46.2.2      matt 	 * ENVSYS_GTREDATA and ENVSYS_GTREINFO; enough to make old
    354  1.46.2.2      matt 	 * applications work.
    355  1.46.2.2      matt 	 */
    356       1.1   thorpej 	case ENVSYS_GTREDATA:
    357       1.1   thorpej 	    {
    358      1.18   xtraeme 		struct envsys_tre_data *tred = (void *)data;
    359      1.18   xtraeme 		envsys_data_t *edata = NULL;
    360  1.46.2.2      matt 		bool found = false;
    361       1.1   thorpej 
    362       1.1   thorpej 		tred->validflags = 0;
    363       1.1   thorpej 
    364  1.46.2.2      matt 		mutex_enter(&sme_mtx);
    365      1.18   xtraeme 		sme = sysmon_envsys_find_40(tred->sensor);
    366  1.46.2.2      matt 		if (!sme) {
    367  1.46.2.2      matt 			mutex_exit(&sme_mtx);
    368       1.1   thorpej 			break;
    369  1.46.2.2      matt 		}
    370      1.18   xtraeme 
    371       1.1   thorpej 		oidx = tred->sensor;
    372       1.1   thorpej 		tred->sensor = SME_SENSOR_IDX(sme, tred->sensor);
    373      1.18   xtraeme 
    374      1.18   xtraeme 		DPRINTFOBJ(("%s: sensor=%d oidx=%d dev=%s nsensors=%d\n",
    375      1.18   xtraeme 		    __func__, tred->sensor, oidx, sme->sme_name,
    376      1.18   xtraeme 		    sme->sme_nsensors));
    377      1.18   xtraeme 
    378  1.46.2.2      matt 		TAILQ_FOREACH(edata, &sme->sme_sensors_list, sensors_head) {
    379  1.46.2.2      matt 			if (edata->sensor == tred->sensor) {
    380  1.46.2.2      matt 				found = true;
    381  1.46.2.2      matt 				break;
    382  1.46.2.2      matt 			}
    383  1.46.2.2      matt 		}
    384  1.46.2.2      matt 
    385  1.46.2.2      matt 		if (!found) {
    386  1.46.2.2      matt 			sysmon_envsys_release(sme);
    387  1.46.2.2      matt 			mutex_exit(&sme_mtx);
    388  1.46.2.2      matt 			error = ENODEV;
    389  1.46.2.2      matt 			break;
    390  1.46.2.2      matt 		}
    391      1.18   xtraeme 
    392      1.18   xtraeme 		if (tred->sensor < sme->sme_nsensors) {
    393  1.46.2.2      matt 			if ((sme->sme_flags & SME_DISABLE_REFRESH) == 0)
    394  1.46.2.2      matt 				(*sme->sme_refresh)(sme, edata);
    395      1.18   xtraeme 
    396  1.46.2.2      matt 			/*
    397  1.46.2.2      matt 			 * copy required values to the old interface.
    398  1.46.2.2      matt 			 */
    399      1.18   xtraeme 			tred->sensor = edata->sensor;
    400      1.18   xtraeme 			tred->cur.data_us = edata->value_cur;
    401      1.18   xtraeme 			tred->cur.data_s = edata->value_cur;
    402      1.18   xtraeme 			tred->max.data_us = edata->value_max;
    403      1.18   xtraeme 			tred->max.data_s = edata->value_max;
    404      1.18   xtraeme 			tred->min.data_us = edata->value_min;
    405      1.18   xtraeme 			tred->min.data_s = edata->value_min;
    406      1.18   xtraeme 			tred->avg.data_us = edata->value_avg;
    407      1.18   xtraeme 			tred->avg.data_s = edata->value_avg;
    408  1.46.2.1      matt 			if (edata->units == ENVSYS_BATTERY_CHARGE)
    409  1.46.2.1      matt 				tred->units = ENVSYS_INDICATOR;
    410  1.46.2.1      matt 			else
    411  1.46.2.2      matt 				tred->units = edata->units;
    412      1.18   xtraeme 
    413      1.20   xtraeme 			tred->validflags |= ENVSYS_FVALID;
    414      1.20   xtraeme 			tred->validflags |= ENVSYS_FCURVALID;
    415      1.20   xtraeme 
    416      1.20   xtraeme 			if (edata->flags & ENVSYS_FPERCENT) {
    417      1.20   xtraeme 				tred->validflags |= ENVSYS_FMAXVALID;
    418      1.20   xtraeme 				tred->validflags |= ENVSYS_FFRACVALID;
    419      1.20   xtraeme 			}
    420      1.20   xtraeme 
    421  1.46.2.2      matt 			if (edata->state == ENVSYS_SINVALID) {
    422      1.20   xtraeme 				tred->validflags &= ~ENVSYS_FCURVALID;
    423      1.18   xtraeme 				tred->cur.data_us = tred->cur.data_s = 0;
    424      1.18   xtraeme 			}
    425      1.18   xtraeme 
    426      1.18   xtraeme 			DPRINTFOBJ(("%s: sensor=%s tred->cur.data_s=%d\n",
    427      1.18   xtraeme 			    __func__, edata->desc, tred->cur.data_s));
    428      1.18   xtraeme 			DPRINTFOBJ(("%s: tred->validflags=%d tred->units=%d"
    429      1.18   xtraeme 			    " tred->sensor=%d\n", __func__, tred->validflags,
    430      1.18   xtraeme 			    tred->units, tred->sensor));
    431       1.3  jdolecek 		}
    432       1.1   thorpej 		tred->sensor = oidx;
    433  1.46.2.2      matt 		sysmon_envsys_release(sme);
    434      1.18   xtraeme 		mutex_exit(&sme_mtx);
    435       1.1   thorpej 
    436       1.1   thorpej 		break;
    437       1.1   thorpej 	    }
    438       1.1   thorpej 	case ENVSYS_GTREINFO:
    439       1.1   thorpej 	    {
    440      1.18   xtraeme 		struct envsys_basic_info *binfo = (void *)data;
    441      1.18   xtraeme 		envsys_data_t *edata = NULL;
    442  1.46.2.2      matt 		bool found = false;
    443       1.1   thorpej 
    444       1.1   thorpej 		binfo->validflags = 0;
    445       1.1   thorpej 
    446  1.46.2.2      matt 		mutex_enter(&sme_mtx);
    447      1.18   xtraeme 		sme = sysmon_envsys_find_40(binfo->sensor);
    448  1.46.2.2      matt 		if (!sme) {
    449  1.46.2.2      matt 			mutex_exit(&sme_mtx);
    450       1.1   thorpej 			break;
    451  1.46.2.2      matt 		}
    452      1.18   xtraeme 
    453       1.1   thorpej 		oidx = binfo->sensor;
    454       1.1   thorpej 		binfo->sensor = SME_SENSOR_IDX(sme, binfo->sensor);
    455      1.18   xtraeme 
    456  1.46.2.2      matt 		TAILQ_FOREACH(edata, &sme->sme_sensors_list, sensors_head) {
    457  1.46.2.2      matt 			if (edata->sensor == binfo->sensor) {
    458  1.46.2.2      matt 				found = true;
    459  1.46.2.2      matt 				break;
    460  1.46.2.2      matt 			}
    461  1.46.2.2      matt 		}
    462  1.46.2.2      matt 
    463  1.46.2.2      matt 		if (!found) {
    464  1.46.2.2      matt 			sysmon_envsys_release(sme);
    465  1.46.2.2      matt 			mutex_exit(&sme_mtx);
    466  1.46.2.2      matt 			error = ENODEV;
    467  1.46.2.2      matt 			break;
    468  1.46.2.2      matt 		}
    469      1.18   xtraeme 
    470      1.20   xtraeme 		binfo->validflags |= ENVSYS_FVALID;
    471      1.18   xtraeme 
    472      1.18   xtraeme 		if (binfo->sensor < sme->sme_nsensors) {
    473  1.46.2.1      matt 			if (edata->units == ENVSYS_BATTERY_CHARGE)
    474  1.46.2.1      matt 				binfo->units = ENVSYS_INDICATOR;
    475  1.46.2.1      matt 			else
    476  1.46.2.2      matt 				binfo->units = edata->units;
    477  1.46.2.1      matt 
    478  1.46.2.1      matt 			/*
    479  1.46.2.1      matt 			 * previously, the ACPI sensor names included the
    480  1.46.2.1      matt 			 * device name. Include that in compatibility code.
    481  1.46.2.1      matt 			 */
    482  1.46.2.1      matt 			if (strncmp(sme->sme_name, "acpi", 4) == 0)
    483  1.46.2.1      matt 				(void)snprintf(binfo->desc, sizeof(binfo->desc),
    484  1.46.2.1      matt 				    "%s %s", sme->sme_name, edata->desc);
    485  1.46.2.1      matt 			else
    486  1.46.2.1      matt 				(void)strlcpy(binfo->desc, edata->desc,
    487  1.46.2.1      matt 				    sizeof(binfo->desc));
    488      1.18   xtraeme 		}
    489      1.18   xtraeme 
    490      1.18   xtraeme 		DPRINTFOBJ(("%s: binfo->units=%d binfo->validflags=%d\n",
    491      1.18   xtraeme 		    __func__, binfo->units, binfo->validflags));
    492      1.18   xtraeme 		DPRINTFOBJ(("%s: binfo->desc=%s binfo->sensor=%d\n",
    493      1.18   xtraeme 		    __func__, binfo->desc, binfo->sensor));
    494      1.18   xtraeme 
    495       1.1   thorpej 		binfo->sensor = oidx;
    496  1.46.2.2      matt 		sysmon_envsys_release(sme);
    497      1.18   xtraeme 		mutex_exit(&sme_mtx);
    498      1.18   xtraeme 
    499       1.1   thorpej 		break;
    500       1.1   thorpej 	    }
    501       1.1   thorpej 	default:
    502       1.1   thorpej 		error = ENOTTY;
    503      1.18   xtraeme 		break;
    504       1.1   thorpej 	}
    505       1.1   thorpej 
    506      1.18   xtraeme 	return error;
    507       1.1   thorpej }
    508       1.1   thorpej 
    509       1.1   thorpej /*
    510  1.46.2.2      matt  * sysmon_envsys_create:
    511  1.46.2.2      matt  *
    512  1.46.2.2      matt  * 	+ Allocates a new sysmon_envsys object and initializes the
    513  1.46.2.2      matt  * 	  stuff for sensors and events.
    514  1.46.2.2      matt  */
    515  1.46.2.2      matt struct sysmon_envsys *
    516  1.46.2.2      matt sysmon_envsys_create(void)
    517  1.46.2.2      matt {
    518  1.46.2.2      matt 	struct sysmon_envsys *sme;
    519  1.46.2.2      matt 
    520  1.46.2.2      matt 	sme = kmem_zalloc(sizeof(*sme), KM_SLEEP);
    521  1.46.2.2      matt 	TAILQ_INIT(&sme->sme_sensors_list);
    522  1.46.2.2      matt 	LIST_INIT(&sme->sme_events_list);
    523  1.46.2.2      matt 	callout_init(&sme->sme_callout, CALLOUT_MPSAFE);
    524  1.46.2.2      matt 
    525  1.46.2.2      matt 	return sme;
    526  1.46.2.2      matt }
    527  1.46.2.2      matt 
    528  1.46.2.2      matt /*
    529  1.46.2.2      matt  * sysmon_envsys_destroy:
    530  1.46.2.2      matt  *
    531  1.46.2.3      matt  * 	+ Removes all sensors from the tail queue, destroys the callout
    532  1.46.2.3      matt  * 	  and frees the sysmon_envsys object.
    533  1.46.2.2      matt  */
    534  1.46.2.2      matt void
    535  1.46.2.2      matt sysmon_envsys_destroy(struct sysmon_envsys *sme)
    536  1.46.2.2      matt {
    537  1.46.2.2      matt 	envsys_data_t *edata;
    538  1.46.2.2      matt 
    539  1.46.2.2      matt 	KASSERT(sme != NULL);
    540  1.46.2.2      matt 
    541  1.46.2.2      matt 	while (!TAILQ_EMPTY(&sme->sme_sensors_list)) {
    542  1.46.2.2      matt 		edata = TAILQ_FIRST(&sme->sme_sensors_list);
    543  1.46.2.2      matt 		TAILQ_REMOVE(&sme->sme_sensors_list, edata, sensors_head);
    544  1.46.2.2      matt 	}
    545  1.46.2.3      matt 	callout_destroy(&sme->sme_callout);
    546  1.46.2.2      matt 	kmem_free(sme, sizeof(*sme));
    547  1.46.2.2      matt }
    548  1.46.2.2      matt 
    549  1.46.2.2      matt /*
    550  1.46.2.2      matt  * sysmon_envsys_sensor_attach:
    551  1.46.2.2      matt  *
    552  1.46.2.2      matt  * 	+ Attachs a sensor into a sysmon_envsys device checking that units
    553  1.46.2.2      matt  * 	  is set to a valid type and description is unique and not empty.
    554  1.46.2.2      matt  */
    555  1.46.2.2      matt int
    556  1.46.2.2      matt sysmon_envsys_sensor_attach(struct sysmon_envsys *sme, envsys_data_t *edata)
    557  1.46.2.2      matt {
    558  1.46.2.2      matt 	const struct sme_description_table *sdt_units;
    559  1.46.2.2      matt 	envsys_data_t *oedata;
    560  1.46.2.2      matt 	int i;
    561  1.46.2.2      matt 
    562  1.46.2.2      matt 	KASSERT(sme != NULL || edata != NULL);
    563  1.46.2.2      matt 
    564  1.46.2.2      matt 	/*
    565  1.46.2.2      matt 	 * Find the correct units for this sensor.
    566  1.46.2.2      matt 	 */
    567  1.46.2.2      matt 	sdt_units = sme_get_description_table(SME_DESC_UNITS);
    568  1.46.2.2      matt 	for (i = 0; sdt_units[i].type != -1; i++)
    569  1.46.2.2      matt 		if (sdt_units[i].type == edata->units)
    570  1.46.2.2      matt 			break;
    571  1.46.2.2      matt 
    572  1.46.2.2      matt 	if (strcmp(sdt_units[i].desc, "unknown") == 0)
    573  1.46.2.2      matt 		return EINVAL;
    574  1.46.2.2      matt 
    575  1.46.2.2      matt 	/*
    576  1.46.2.2      matt 	 * Check that description is not empty or duplicate.
    577  1.46.2.2      matt 	 */
    578  1.46.2.2      matt 	if (strlen(edata->desc) == 0)
    579  1.46.2.2      matt 		return EINVAL;
    580  1.46.2.2      matt 
    581  1.46.2.2      matt 	mutex_enter(&sme_mtx);
    582  1.46.2.2      matt 	TAILQ_FOREACH(oedata, &sme->sme_sensors_list, sensors_head) {
    583  1.46.2.2      matt 		if (strcmp(oedata->desc, edata->desc) == 0) {
    584  1.46.2.2      matt 			mutex_exit(&sme_mtx);
    585  1.46.2.2      matt 			return EEXIST;
    586  1.46.2.2      matt 		}
    587  1.46.2.2      matt 	}
    588  1.46.2.2      matt 	/*
    589  1.46.2.2      matt 	 * Ok, the sensor has been added into the device queue.
    590  1.46.2.2      matt 	 */
    591  1.46.2.2      matt 	TAILQ_INSERT_TAIL(&sme->sme_sensors_list, edata, sensors_head);
    592  1.46.2.2      matt 
    593  1.46.2.2      matt 	/*
    594  1.46.2.2      matt 	 * Give the sensor a index position.
    595  1.46.2.2      matt 	 */
    596  1.46.2.2      matt 	edata->sensor = sme->sme_nsensors;
    597  1.46.2.2      matt 	sme->sme_nsensors++;
    598  1.46.2.2      matt 	mutex_exit(&sme_mtx);
    599  1.46.2.2      matt 
    600  1.46.2.2      matt 	return 0;
    601  1.46.2.2      matt }
    602  1.46.2.2      matt 
    603  1.46.2.2      matt /*
    604  1.46.2.2      matt  * sysmon_envsys_sensor_detach:
    605  1.46.2.2      matt  *
    606  1.46.2.2      matt  * 	+ Detachs a sensor from a sysmon_envsys device and decrements the
    607  1.46.2.2      matt  * 	  sensors count on success.
    608  1.46.2.2      matt  */
    609  1.46.2.2      matt int
    610  1.46.2.2      matt sysmon_envsys_sensor_detach(struct sysmon_envsys *sme, envsys_data_t *edata)
    611  1.46.2.2      matt {
    612  1.46.2.2      matt 	envsys_data_t *oedata;
    613  1.46.2.2      matt 	bool found = false;
    614  1.46.2.2      matt 
    615  1.46.2.2      matt 	KASSERT(sme != NULL || edata != NULL);
    616  1.46.2.2      matt 
    617  1.46.2.2      matt 	/*
    618  1.46.2.2      matt 	 * Check the sensor is already on the list.
    619  1.46.2.2      matt 	 */
    620  1.46.2.2      matt 	mutex_enter(&sme_mtx);
    621  1.46.2.2      matt 	TAILQ_FOREACH(oedata, &sme->sme_sensors_list, sensors_head) {
    622  1.46.2.2      matt 		if (oedata->sensor == edata->sensor) {
    623  1.46.2.2      matt 			found = true;
    624  1.46.2.2      matt 			break;
    625  1.46.2.2      matt 		}
    626  1.46.2.2      matt 	}
    627  1.46.2.2      matt 
    628  1.46.2.2      matt 	if (!found) {
    629  1.46.2.2      matt 		mutex_exit(&sme_mtx);
    630  1.46.2.2      matt 		return EINVAL;
    631  1.46.2.2      matt 	}
    632  1.46.2.2      matt 
    633  1.46.2.2      matt 	/*
    634  1.46.2.2      matt 	 * remove it and decrement the sensors count.
    635  1.46.2.2      matt 	 */
    636  1.46.2.2      matt 	TAILQ_REMOVE(&sme->sme_sensors_list, edata, sensors_head);
    637  1.46.2.2      matt 	sme->sme_nsensors--;
    638  1.46.2.2      matt 	mutex_exit(&sme_mtx);
    639  1.46.2.2      matt 
    640  1.46.2.2      matt 	return 0;
    641  1.46.2.2      matt }
    642  1.46.2.2      matt 
    643  1.46.2.2      matt 
    644  1.46.2.2      matt /*
    645       1.1   thorpej  * sysmon_envsys_register:
    646       1.1   thorpej  *
    647  1.46.2.1      matt  *	+ Register a sysmon envsys device.
    648  1.46.2.1      matt  *	+ Create array of dictionaries for a device.
    649       1.1   thorpej  */
    650       1.1   thorpej int
    651       1.1   thorpej sysmon_envsys_register(struct sysmon_envsys *sme)
    652       1.1   thorpej {
    653  1.46.2.1      matt 	struct sme_evdrv {
    654  1.46.2.1      matt 		SLIST_ENTRY(sme_evdrv) evdrv_head;
    655  1.46.2.1      matt 		sme_event_drv_t *evdrv;
    656  1.46.2.1      matt 	};
    657  1.46.2.1      matt 	SLIST_HEAD(, sme_evdrv) sme_evdrv_list;
    658  1.46.2.1      matt 	struct sme_evdrv *sme_evdrv = NULL;
    659      1.18   xtraeme 	struct sysmon_envsys *lsme;
    660  1.46.2.2      matt 	prop_dictionary_t dict, dict2;
    661  1.46.2.1      matt 	prop_array_t array;
    662  1.46.2.1      matt 	envsys_data_t *edata = NULL;
    663  1.46.2.1      matt 	int i, error = 0;
    664       1.1   thorpej 
    665  1.46.2.1      matt 	KASSERT(sme != NULL);
    666  1.46.2.1      matt 	KASSERT(sme->sme_name != NULL);
    667      1.18   xtraeme 
    668  1.46.2.1      matt 	/*
    669  1.46.2.2      matt 	 * sanity check: if SME_DISABLE_REFRESH is not set,
    670  1.46.2.2      matt 	 * the sme_refresh function callback must be non NULL.
    671      1.18   xtraeme 	 */
    672  1.46.2.2      matt 	if ((sme->sme_flags & SME_DISABLE_REFRESH) == 0)
    673  1.46.2.2      matt 		if (!sme->sme_refresh)
    674  1.46.2.2      matt 			return EINVAL;
    675  1.46.2.2      matt 
    676      1.18   xtraeme 	/*
    677  1.46.2.2      matt 	 * If the list of sensors is empty, there's no point to continue...
    678      1.18   xtraeme 	 */
    679  1.46.2.2      matt 	if (TAILQ_EMPTY(&sme->sme_sensors_list)) {
    680  1.46.2.2      matt 		DPRINTF(("%s: sensors list empty for %s\n", __func__,
    681  1.46.2.2      matt 		    sme->sme_name));
    682  1.46.2.2      matt 		return ENOTSUP;
    683       1.1   thorpej 	}
    684       1.1   thorpej 
    685  1.46.2.2      matt 	/*
    686  1.46.2.2      matt 	 * create the device array.
    687  1.46.2.2      matt 	 */
    688  1.46.2.1      matt 	array = prop_array_create();
    689  1.46.2.1      matt 	if (!array)
    690  1.46.2.1      matt 		return ENOMEM;
    691  1.46.2.1      matt 
    692  1.46.2.1      matt 	/*
    693  1.46.2.1      matt 	 * Initialize the singly linked list for driver events.
    694  1.46.2.1      matt 	 */
    695  1.46.2.1      matt 	SLIST_INIT(&sme_evdrv_list);
    696  1.46.2.2      matt 
    697      1.18   xtraeme 	/*
    698  1.46.2.2      matt 	 * Iterate over all sensors and create a dictionary per sensor.
    699  1.46.2.2      matt 	 * We must respect the order in which the sensors were added.
    700      1.18   xtraeme 	 */
    701  1.46.2.2      matt 	TAILQ_FOREACH(edata, &sme->sme_sensors_list, sensors_head) {
    702  1.46.2.1      matt 		dict = prop_dictionary_create();
    703  1.46.2.1      matt 		if (!dict) {
    704  1.46.2.1      matt 			error = ENOMEM;
    705  1.46.2.1      matt 			goto out2;
    706  1.46.2.1      matt 		}
    707  1.46.2.1      matt 
    708  1.46.2.1      matt 		/*
    709  1.46.2.1      matt 		 * Create all objects in sensor's dictionary.
    710  1.46.2.1      matt 		 */
    711  1.46.2.1      matt 		sme_evdrv = kmem_zalloc(sizeof(*sme_evdrv), KM_SLEEP);
    712  1.46.2.1      matt 		sme_evdrv->evdrv = sme_add_sensor_dictionary(sme,
    713  1.46.2.1      matt 					array, dict, edata);
    714  1.46.2.1      matt 		if (sme_evdrv->evdrv)
    715  1.46.2.1      matt 			SLIST_INSERT_HEAD(&sme_evdrv_list,
    716  1.46.2.1      matt 					  sme_evdrv, evdrv_head);
    717  1.46.2.1      matt 	}
    718  1.46.2.1      matt 
    719  1.46.2.1      matt 	/*
    720  1.46.2.1      matt 	 * Check if requested sysmon_envsys device is valid
    721  1.46.2.1      matt 	 * and does not exist already in the list.
    722  1.46.2.1      matt 	 */
    723  1.46.2.1      matt 	mutex_enter(&sme_mtx);
    724      1.18   xtraeme 	LIST_FOREACH(lsme, &sysmon_envsys_list, sme_list) {
    725      1.18   xtraeme 	       if (strcmp(lsme->sme_name, sme->sme_name) == 0) {
    726      1.18   xtraeme 		       error = EEXIST;
    727      1.18   xtraeme 		       goto out;
    728      1.18   xtraeme 	       }
    729      1.18   xtraeme 	}
    730      1.27   xtraeme 
    731  1.46.2.1      matt 	/*
    732  1.46.2.1      matt 	 * If the array does not contain any object (sensor), there's
    733  1.46.2.1      matt 	 * no need to attach the driver.
    734  1.46.2.1      matt 	 */
    735  1.46.2.1      matt 	if (prop_array_count(array) == 0) {
    736  1.46.2.1      matt 		error = EINVAL;
    737  1.46.2.1      matt 		DPRINTF(("%s: empty array for '%s'\n", __func__,
    738  1.46.2.1      matt 		    sme->sme_name));
    739  1.46.2.1      matt 		goto out;
    740  1.46.2.1      matt 	}
    741  1.46.2.2      matt 
    742  1.46.2.2      matt 	/*
    743  1.46.2.2      matt 	 * Add the dictionary for the global properties of this device.
    744  1.46.2.2      matt 	 */
    745  1.46.2.2      matt 	dict2 = prop_dictionary_create();
    746  1.46.2.2      matt 	if (!dict2) {
    747  1.46.2.2      matt 		error = ENOMEM;
    748  1.46.2.2      matt 		goto out;
    749  1.46.2.2      matt 	}
    750  1.46.2.2      matt 
    751  1.46.2.2      matt 	error = sme_add_property_dictionary(sme, array, dict2);
    752  1.46.2.2      matt 	if (error) {
    753  1.46.2.2      matt 		prop_object_release(dict2);
    754  1.46.2.2      matt 		goto out;
    755  1.46.2.2      matt 	}
    756  1.46.2.2      matt 
    757  1.46.2.1      matt 	/*
    758  1.46.2.1      matt 	 * Add the array into the global dictionary for the driver.
    759  1.46.2.1      matt 	 *
    760  1.46.2.1      matt 	 * <dict>
    761  1.46.2.1      matt 	 * 	<key>foo0</key>
    762  1.46.2.1      matt 	 * 	<array>
    763  1.46.2.1      matt 	 * 		...
    764  1.46.2.1      matt 	 */
    765  1.46.2.1      matt 	if (!prop_dictionary_set(sme_propd, sme->sme_name, array)) {
    766  1.46.2.1      matt 		error = EINVAL;
    767  1.46.2.1      matt 		DPRINTF(("%s: prop_dictionary_set for '%s'\n", __func__,
    768  1.46.2.1      matt 		    sme->sme_name));
    769  1.46.2.1      matt 		goto out;
    770  1.46.2.1      matt 	}
    771  1.46.2.1      matt 	/*
    772  1.46.2.1      matt 	 * Add the device into the list.
    773  1.46.2.1      matt 	 */
    774  1.46.2.1      matt 	LIST_INSERT_HEAD(&sysmon_envsys_list, sme, sme_list);
    775       1.1   thorpej 	sme->sme_fsensor = sysmon_envsys_next_sensor_index;
    776       1.1   thorpej 	sysmon_envsys_next_sensor_index += sme->sme_nsensors;
    777  1.46.2.1      matt out:
    778  1.46.2.1      matt 	mutex_exit(&sme_mtx);
    779  1.46.2.1      matt 
    780  1.46.2.2      matt 	/*
    781  1.46.2.2      matt 	 * No errors? register the events that were set in the driver.
    782  1.46.2.2      matt 	 */
    783  1.46.2.1      matt 	if (error == 0) {
    784  1.46.2.1      matt 		i = 0;
    785  1.46.2.1      matt 		SLIST_FOREACH(sme_evdrv, &sme_evdrv_list, evdrv_head) {
    786  1.46.2.1      matt 			if (i == 0)
    787  1.46.2.1      matt 				sysmon_task_queue_init();
    788  1.46.2.1      matt 			sysmon_task_queue_sched(0,
    789  1.46.2.1      matt 			    sme_event_drvadd, sme_evdrv->evdrv);
    790  1.46.2.1      matt 		}
    791  1.46.2.1      matt 		DPRINTF(("%s: driver '%s' registered (nsens=%d)\n",
    792  1.46.2.1      matt 		    __func__, sme->sme_name, sme->sme_nsensors));
    793  1.46.2.1      matt 	}
    794  1.46.2.1      matt 
    795  1.46.2.1      matt out2:
    796  1.46.2.1      matt 	while (!SLIST_EMPTY(&sme_evdrv_list)) {
    797  1.46.2.1      matt 		sme_evdrv = SLIST_FIRST(&sme_evdrv_list);
    798  1.46.2.1      matt 		SLIST_REMOVE_HEAD(&sme_evdrv_list, evdrv_head);
    799  1.46.2.1      matt 		kmem_free(sme_evdrv, sizeof(*sme_evdrv));
    800  1.46.2.1      matt 	}
    801  1.46.2.1      matt 	if (!error)
    802  1.46.2.1      matt 		return 0;
    803  1.46.2.1      matt 
    804  1.46.2.2      matt 	/*
    805  1.46.2.2      matt 	 * Ugh... something wasn't right; unregister all events and sensors
    806  1.46.2.2      matt 	 * previously assigned and destroy the array with all its objects.
    807  1.46.2.2      matt 	 */
    808  1.46.2.1      matt 	DPRINTF(("%s: failed to register '%s' (%d)\n", __func__,
    809  1.46.2.1      matt 	    sme->sme_name, error));
    810  1.46.2.1      matt 	if (error != EEXIST) {
    811  1.46.2.1      matt 		mutex_enter(&sme_mtx);
    812  1.46.2.2      matt 		sme_event_unregister_all(sme);
    813  1.46.2.2      matt 		while (!TAILQ_EMPTY(&sme->sme_sensors_list)) {
    814  1.46.2.2      matt 			edata = TAILQ_FIRST(&sme->sme_sensors_list);
    815  1.46.2.2      matt 			TAILQ_REMOVE(&sme->sme_sensors_list, edata,
    816  1.46.2.2      matt 			    sensors_head);
    817  1.46.2.2      matt 		}
    818  1.46.2.1      matt 		mutex_exit(&sme_mtx);
    819  1.46.2.1      matt 	}
    820  1.46.2.1      matt 	sysmon_envsys_destroy_plist(array);
    821  1.46.2.1      matt 	return error;
    822  1.46.2.1      matt }
    823  1.46.2.1      matt 
    824  1.46.2.1      matt /*
    825  1.46.2.1      matt  * sysmon_envsys_destroy_plist:
    826  1.46.2.1      matt  *
    827  1.46.2.1      matt  * 	+ Remove all objects from the array of dictionaries that is
    828  1.46.2.1      matt  * 	  created in a sysmon envsys device.
    829  1.46.2.1      matt  */
    830  1.46.2.1      matt static void
    831  1.46.2.1      matt sysmon_envsys_destroy_plist(prop_array_t array)
    832  1.46.2.1      matt {
    833  1.46.2.1      matt 	prop_object_iterator_t iter, iter2;
    834  1.46.2.1      matt 	prop_dictionary_t dict;
    835  1.46.2.1      matt 	prop_object_t obj;
    836  1.46.2.1      matt 
    837  1.46.2.1      matt 	KASSERT(array != NULL);
    838  1.46.2.1      matt 
    839  1.46.2.1      matt 	DPRINTFOBJ(("%s: objects in array=%d\n", __func__,
    840  1.46.2.1      matt 	    prop_array_count(array)));
    841  1.46.2.1      matt 
    842  1.46.2.1      matt 	iter = prop_array_iterator(array);
    843  1.46.2.1      matt 	if (!iter)
    844  1.46.2.1      matt 		return;
    845  1.46.2.1      matt 
    846  1.46.2.1      matt 	while ((dict = prop_object_iterator_next(iter))) {
    847  1.46.2.1      matt 		KASSERT(prop_object_type(dict) == PROP_TYPE_DICTIONARY);
    848  1.46.2.1      matt 		iter2 = prop_dictionary_iterator(dict);
    849  1.46.2.1      matt 		if (!iter2)
    850  1.46.2.1      matt 			goto out;
    851  1.46.2.1      matt 		DPRINTFOBJ(("%s: iterating over dictionary\n", __func__));
    852  1.46.2.1      matt 		while ((obj = prop_object_iterator_next(iter2)) != NULL) {
    853  1.46.2.1      matt 			DPRINTFOBJ(("%s: obj=%s\n", __func__,
    854  1.46.2.1      matt 			    prop_dictionary_keysym_cstring_nocopy(obj)));
    855  1.46.2.1      matt 			prop_dictionary_remove(dict,
    856  1.46.2.1      matt 			    prop_dictionary_keysym_cstring_nocopy(obj));
    857  1.46.2.1      matt 			prop_object_iterator_reset(iter2);
    858  1.46.2.1      matt 		}
    859  1.46.2.1      matt 		prop_object_iterator_release(iter2);
    860  1.46.2.1      matt 		DPRINTFOBJ(("%s: objects in dictionary:%d\n",
    861  1.46.2.1      matt 		    __func__, prop_dictionary_count(dict)));
    862  1.46.2.1      matt 		prop_object_release(dict);
    863      1.18   xtraeme 	}
    864       1.1   thorpej 
    865      1.18   xtraeme out:
    866  1.46.2.1      matt 	prop_object_iterator_release(iter);
    867  1.46.2.1      matt 	prop_object_release(array);
    868       1.1   thorpej }
    869       1.1   thorpej 
    870       1.1   thorpej /*
    871       1.1   thorpej  * sysmon_envsys_unregister:
    872       1.1   thorpej  *
    873  1.46.2.1      matt  *	+ Unregister a sysmon envsys device.
    874       1.1   thorpej  */
    875       1.1   thorpej void
    876       1.1   thorpej sysmon_envsys_unregister(struct sysmon_envsys *sme)
    877       1.1   thorpej {
    878  1.46.2.1      matt 	prop_array_t array;
    879      1.35   xtraeme 
    880      1.35   xtraeme 	KASSERT(sme != NULL);
    881       1.1   thorpej 
    882  1.46.2.1      matt 	mutex_enter(&sme_mtx);
    883  1.46.2.2      matt 	/*
    884  1.46.2.2      matt 	 * Wait for device to be available.
    885  1.46.2.2      matt 	 */
    886  1.46.2.2      matt 	while (sme->sme_flags & SME_FLAG_BUSY)
    887  1.46.2.1      matt 		cv_wait(&sme_cv, &sme_mtx);
    888      1.27   xtraeme 	/*
    889  1.46.2.2      matt 	 * Stop the callout.
    890  1.46.2.1      matt 	 */
    891  1.46.2.2      matt 	callout_stop(&sme->sme_callout);
    892  1.46.2.2      matt 	/*
    893  1.46.2.2      matt 	 * Decrement global sensors counter (only useful for compatibility).
    894  1.46.2.2      matt 	 */
    895  1.46.2.2      matt 	sysmon_envsys_next_sensor_index -= sme->sme_nsensors;
    896  1.46.2.1      matt 	/*
    897      1.27   xtraeme 	 * Unregister all events associated with this device.
    898      1.27   xtraeme 	 */
    899  1.46.2.2      matt 	sme_event_unregister_all(sme);
    900  1.46.2.1      matt 	LIST_REMOVE(sme, sme_list);
    901  1.46.2.1      matt 	mutex_exit(&sme_mtx);
    902      1.27   xtraeme 	/*
    903  1.46.2.1      matt 	 * Remove the device (and all its objects) from the global dictionary.
    904      1.27   xtraeme 	 */
    905  1.46.2.1      matt 	array = prop_dictionary_get(sme_propd, sme->sme_name);
    906  1.46.2.1      matt 	if (array && prop_object_type(array) == PROP_TYPE_ARRAY) {
    907  1.46.2.1      matt 		prop_dictionary_remove(sme_propd, sme->sme_name);
    908  1.46.2.1      matt 		sysmon_envsys_destroy_plist(array);
    909      1.27   xtraeme 	}
    910  1.46.2.2      matt 	/*
    911  1.46.2.2      matt 	 * And finally destroy the sysmon_envsys object.
    912  1.46.2.2      matt 	 */
    913  1.46.2.2      matt 	sysmon_envsys_destroy(sme);
    914       1.1   thorpej }
    915       1.1   thorpej 
    916       1.1   thorpej /*
    917       1.1   thorpej  * sysmon_envsys_find:
    918       1.1   thorpej  *
    919  1.46.2.2      matt  *	+ Find a sysmon envsys device and mark it as busy if found.
    920       1.1   thorpej  */
    921       1.1   thorpej struct sysmon_envsys *
    922      1.18   xtraeme sysmon_envsys_find(const char *name)
    923       1.1   thorpej {
    924       1.1   thorpej 	struct sysmon_envsys *sme;
    925       1.1   thorpej 
    926  1.46.2.2      matt 	KASSERT(mutex_owned(&sme_mtx));
    927  1.46.2.2      matt 
    928       1.7      yamt again:
    929  1.46.2.2      matt 	LIST_FOREACH(sme, &sysmon_envsys_list, sme_list) {
    930  1.46.2.2      matt 		if (strcmp(sme->sme_name, name) == 0) {
    931  1.46.2.2      matt 			if (sme->sme_flags & SME_FLAG_BUSY) {
    932  1.46.2.2      matt 				cv_wait(&sme_cv, &sme_mtx);
    933  1.46.2.2      matt 				goto again;
    934      1.18   xtraeme 			}
    935  1.46.2.2      matt 			sme->sme_flags |= SME_FLAG_BUSY;
    936  1.46.2.2      matt 			break;
    937  1.46.2.2      matt 		}
    938      1.18   xtraeme 	}
    939      1.18   xtraeme 	return sme;
    940      1.18   xtraeme }
    941      1.18   xtraeme 
    942      1.18   xtraeme /*
    943  1.46.2.2      matt  * sysmon_envsys_acquire:
    944  1.46.2.2      matt  *
    945  1.46.2.2      matt  * 	+ Acquire priviledge to a sysmon envsys device (locked).
    946  1.46.2.2      matt  */
    947  1.46.2.2      matt void
    948  1.46.2.2      matt sysmon_envsys_acquire(struct sysmon_envsys *sme)
    949  1.46.2.2      matt {
    950  1.46.2.2      matt 	KASSERT(mutex_owned(&sme_mtx));
    951  1.46.2.2      matt 
    952  1.46.2.2      matt 	while (sme->sme_flags & SME_FLAG_BUSY)
    953  1.46.2.2      matt 		cv_wait(&sme_cv, &sme_mtx);
    954  1.46.2.2      matt 
    955  1.46.2.2      matt 	sme->sme_flags |= SME_FLAG_BUSY;
    956  1.46.2.2      matt }
    957  1.46.2.2      matt 
    958  1.46.2.2      matt /*
    959      1.18   xtraeme  * sysmon_envsys_release:
    960      1.18   xtraeme  *
    961  1.46.2.2      matt  * 	+ Release a sysmon envsys device (locked).
    962      1.18   xtraeme  */
    963      1.18   xtraeme void
    964      1.18   xtraeme sysmon_envsys_release(struct sysmon_envsys *sme)
    965      1.18   xtraeme {
    966  1.46.2.2      matt 	KASSERT(mutex_owned(&sme_mtx));
    967  1.46.2.2      matt 
    968  1.46.2.2      matt 	sme->sme_flags &= ~SME_FLAG_BUSY;
    969  1.46.2.2      matt 	cv_broadcast(&sme_cv);
    970      1.18   xtraeme }
    971      1.18   xtraeme 
    972      1.18   xtraeme /* compatibility function */
    973      1.18   xtraeme struct sysmon_envsys *
    974      1.18   xtraeme sysmon_envsys_find_40(u_int idx)
    975      1.18   xtraeme {
    976      1.18   xtraeme 	struct sysmon_envsys *sme;
    977      1.18   xtraeme 
    978  1.46.2.2      matt 	KASSERT(mutex_owned(&sme_mtx));
    979  1.46.2.2      matt 
    980  1.46.2.2      matt again:
    981  1.46.2.2      matt 	LIST_FOREACH(sme, &sysmon_envsys_list, sme_list) {
    982       1.1   thorpej 		if (idx >= sme->sme_fsensor &&
    983  1.46.2.2      matt 	    	    idx < (sme->sme_fsensor + sme->sme_nsensors)) {
    984  1.46.2.2      matt 			if (sme->sme_flags & SME_FLAG_BUSY) {
    985  1.46.2.2      matt 				cv_wait(&sme_cv, &sme_mtx);
    986  1.46.2.2      matt 				goto again;
    987  1.46.2.2      matt 			}
    988  1.46.2.2      matt 			sme->sme_flags |= SME_FLAG_BUSY;
    989      1.18   xtraeme 			break;
    990  1.46.2.2      matt 		}
    991      1.18   xtraeme 	}
    992      1.18   xtraeme 	return sme;
    993      1.18   xtraeme }
    994      1.18   xtraeme 
    995      1.18   xtraeme /*
    996  1.46.2.1      matt  * sme_sensor_dictionary_get:
    997      1.18   xtraeme  *
    998  1.46.2.2      matt  * 	+ Returns a dictionary of a device specified by its index
    999  1.46.2.2      matt  * 	  position.
   1000      1.18   xtraeme  */
   1001  1.46.2.1      matt prop_dictionary_t
   1002  1.46.2.1      matt sme_sensor_dictionary_get(prop_array_t array, const char *index)
   1003      1.18   xtraeme {
   1004  1.46.2.1      matt 	prop_object_iterator_t iter;
   1005  1.46.2.1      matt 	prop_dictionary_t dict;
   1006  1.46.2.1      matt 	prop_object_t obj;
   1007      1.41   xtraeme 
   1008  1.46.2.1      matt 	KASSERT(array != NULL || index != NULL);
   1009      1.18   xtraeme 
   1010  1.46.2.1      matt 	iter = prop_array_iterator(array);
   1011  1.46.2.1      matt 	if (!iter)
   1012  1.46.2.1      matt 		return NULL;
   1013      1.44   xtraeme 
   1014  1.46.2.1      matt 	while ((dict = prop_object_iterator_next(iter))) {
   1015  1.46.2.1      matt 		obj = prop_dictionary_get(dict, "index");
   1016  1.46.2.1      matt 		if (prop_string_equals_cstring(obj, index))
   1017  1.46.2.1      matt 			break;
   1018      1.41   xtraeme 	}
   1019      1.41   xtraeme 
   1020  1.46.2.1      matt 	prop_object_iterator_release(iter);
   1021  1.46.2.1      matt 	return dict;
   1022  1.46.2.1      matt }
   1023  1.46.2.1      matt 
   1024  1.46.2.1      matt /*
   1025  1.46.2.1      matt  * sme_remove_userprops:
   1026  1.46.2.1      matt  *
   1027  1.46.2.1      matt  * 	+ Remove all properties from all devices that were set by
   1028  1.46.2.2      matt  * 	  the ENVSYS_SETDICTIONARY ioctl.
   1029  1.46.2.1      matt  */
   1030  1.46.2.1      matt static void
   1031  1.46.2.1      matt sme_remove_userprops(void)
   1032  1.46.2.1      matt {
   1033  1.46.2.1      matt 	struct sysmon_envsys *sme;
   1034  1.46.2.1      matt 	prop_array_t array;
   1035  1.46.2.1      matt 	prop_dictionary_t sdict;
   1036  1.46.2.1      matt 	envsys_data_t *edata = NULL;
   1037  1.46.2.1      matt 	char tmp[ENVSYS_DESCLEN];
   1038  1.46.2.2      matt 	int ptype;
   1039      1.18   xtraeme 
   1040      1.41   xtraeme 	mutex_enter(&sme_mtx);
   1041  1.46.2.1      matt 	LIST_FOREACH(sme, &sysmon_envsys_list, sme_list) {
   1042  1.46.2.2      matt 		sysmon_envsys_acquire(sme);
   1043  1.46.2.1      matt 		array = prop_dictionary_get(sme_propd, sme->sme_name);
   1044  1.46.2.1      matt 
   1045  1.46.2.2      matt 		TAILQ_FOREACH(edata, &sme->sme_sensors_list, sensors_head) {
   1046  1.46.2.1      matt 			(void)snprintf(tmp, sizeof(tmp), "sensor%d",
   1047  1.46.2.1      matt 				       edata->sensor);
   1048  1.46.2.1      matt 			sdict = sme_sensor_dictionary_get(array, tmp);
   1049  1.46.2.2      matt 			KASSERT(sdict != NULL);
   1050  1.46.2.1      matt 
   1051  1.46.2.1      matt 			if (edata->upropset & USERPROP_BATTCAP) {
   1052  1.46.2.1      matt 				prop_dictionary_remove(sdict,
   1053  1.46.2.1      matt 				    "critical-capacity");
   1054  1.46.2.1      matt 				ptype = PENVSYS_EVENT_BATT_USERCAP;
   1055  1.46.2.2      matt 				sme_event_unregister(sme, edata->desc, ptype);
   1056  1.46.2.1      matt 			}
   1057      1.41   xtraeme 
   1058  1.46.2.1      matt 			if (edata->upropset & USERPROP_CRITMAX) {
   1059  1.46.2.1      matt 				prop_dictionary_remove(sdict,
   1060  1.46.2.1      matt 				    "critical-max");
   1061  1.46.2.1      matt 				ptype = PENVSYS_EVENT_USER_CRITMAX;
   1062  1.46.2.2      matt 				sme_event_unregister(sme, edata->desc, ptype);
   1063  1.46.2.1      matt 			}
   1064      1.18   xtraeme 
   1065  1.46.2.1      matt 			if (edata->upropset & USERPROP_CRITMIN) {
   1066  1.46.2.1      matt 				prop_dictionary_remove(sdict,
   1067  1.46.2.1      matt 				    "critical-min");
   1068  1.46.2.1      matt 				ptype = PENVSYS_EVENT_USER_CRITMIN;
   1069  1.46.2.2      matt 				sme_event_unregister(sme, edata->desc, ptype);
   1070  1.46.2.1      matt 			}
   1071      1.18   xtraeme 
   1072  1.46.2.1      matt 			if (edata->upropset & USERPROP_RFACT) {
   1073  1.46.2.1      matt 				(void)sme_sensor_upint32(sdict, "rfact", 0);
   1074  1.46.2.1      matt 				edata->rfact = 0;
   1075  1.46.2.1      matt 			}
   1076  1.46.2.1      matt 
   1077  1.46.2.1      matt 			if (edata->upropset & USERPROP_DESC)
   1078  1.46.2.1      matt 				(void)sme_sensor_upstring(sdict,
   1079  1.46.2.1      matt 			  	    "description", edata->desc);
   1080  1.46.2.2      matt 
   1081  1.46.2.2      matt 			if (edata->upropset)
   1082  1.46.2.2      matt 				edata->upropset = 0;
   1083  1.46.2.1      matt 		}
   1084  1.46.2.1      matt 
   1085  1.46.2.2      matt 		/*
   1086  1.46.2.2      matt 		 * Restore default timeout value.
   1087  1.46.2.2      matt 		 */
   1088  1.46.2.2      matt 		sme->sme_events_timeout = SME_EVENTS_DEFTIMEOUT;
   1089  1.46.2.2      matt 		sysmon_envsys_release(sme);
   1090  1.46.2.1      matt 	}
   1091  1.46.2.1      matt 	mutex_exit(&sme_mtx);
   1092  1.46.2.1      matt }
   1093  1.46.2.2      matt 
   1094      1.18   xtraeme /*
   1095  1.46.2.2      matt  * sme_add_property_dictionary:
   1096  1.46.2.2      matt  *
   1097  1.46.2.2      matt  * 	+ Add global properties into a device.
   1098      1.27   xtraeme  */
   1099      1.27   xtraeme static int
   1100  1.46.2.2      matt sme_add_property_dictionary(struct sysmon_envsys *sme, prop_array_t array,
   1101  1.46.2.2      matt 			    prop_dictionary_t dict)
   1102      1.27   xtraeme {
   1103  1.46.2.2      matt 	prop_dictionary_t pdict;
   1104  1.46.2.2      matt 	int error = 0;
   1105      1.27   xtraeme 
   1106  1.46.2.2      matt 	pdict = prop_dictionary_create();
   1107  1.46.2.2      matt 	if (!pdict)
   1108  1.46.2.2      matt 		return EINVAL;
   1109      1.35   xtraeme 
   1110  1.46.2.2      matt 	/*
   1111  1.46.2.2      matt 	 * Add the 'refresh-timeout' object into the 'device-properties'
   1112  1.46.2.2      matt 	 * dictionary. We use by default 30 seconds.
   1113  1.46.2.2      matt 	 *
   1114  1.46.2.2      matt 	 * 	...
   1115  1.46.2.2      matt 	 * 	<dict>
   1116  1.46.2.2      matt 	 * 		<key>device-properties</key>
   1117  1.46.2.2      matt 	 * 		<dict>
   1118  1.46.2.2      matt 	 * 			<key>refresh-timeout</key>
   1119  1.46.2.2      matt 	 * 			<integer>120</integer<
   1120  1.46.2.2      matt 	 * 		</dict<
   1121  1.46.2.2      matt 	 * 	</dict>
   1122  1.46.2.2      matt 	 * 	...
   1123  1.46.2.2      matt 	 *
   1124  1.46.2.2      matt 	 */
   1125  1.46.2.2      matt 	if (!sme->sme_events_timeout)
   1126  1.46.2.2      matt 		sme->sme_events_timeout = SME_EVENTS_DEFTIMEOUT;
   1127  1.46.2.2      matt 
   1128  1.46.2.2      matt 	if (!prop_dictionary_set_uint64(pdict, "refresh-timeout",
   1129  1.46.2.2      matt 					sme->sme_events_timeout)) {
   1130  1.46.2.2      matt 		error = EINVAL;
   1131  1.46.2.2      matt 		goto out;
   1132      1.27   xtraeme 	}
   1133      1.27   xtraeme 
   1134  1.46.2.2      matt 	if (!prop_dictionary_set(dict, "device-properties", pdict)) {
   1135  1.46.2.2      matt 		error = EINVAL;
   1136  1.46.2.2      matt 		goto out;
   1137  1.46.2.2      matt 	}
   1138  1.46.2.1      matt 
   1139  1.46.2.2      matt 	/*
   1140  1.46.2.2      matt 	 * Add the device dictionary into the sysmon envsys array.
   1141  1.46.2.2      matt 	 */
   1142  1.46.2.2      matt 	if (!prop_array_add(array, dict))
   1143  1.46.2.2      matt 		error = EINVAL;
   1144      1.27   xtraeme 
   1145  1.46.2.2      matt out:
   1146  1.46.2.2      matt 	prop_object_release(pdict);
   1147  1.46.2.2      matt 	return error;
   1148      1.27   xtraeme }
   1149      1.27   xtraeme 
   1150      1.27   xtraeme /*
   1151  1.46.2.1      matt  * sme_add_sensor_dictionary:
   1152      1.18   xtraeme  *
   1153  1.46.2.2      matt  * 	+ Adds the sensor objects into the dictionary and returns a pointer
   1154  1.46.2.2      matt  * 	  to a sme_event_drv_t object if a monitoring flag was set
   1155  1.46.2.2      matt  * 	  (or NULL otherwise).
   1156      1.18   xtraeme  */
   1157  1.46.2.1      matt sme_event_drv_t *
   1158  1.46.2.1      matt sme_add_sensor_dictionary(struct sysmon_envsys *sme, prop_array_t array,
   1159  1.46.2.1      matt 		    	  prop_dictionary_t dict, envsys_data_t *edata)
   1160      1.18   xtraeme {
   1161  1.46.2.1      matt 	const struct sme_description_table *sdt, *sdt_units;
   1162      1.18   xtraeme 	sme_event_drv_t *sme_evdrv_t = NULL;
   1163      1.41   xtraeme 	int i, j;
   1164  1.46.2.1      matt 	char indexstr[ENVSYS_DESCLEN];
   1165      1.18   xtraeme 
   1166  1.46.2.2      matt 	/*
   1167  1.46.2.2      matt 	 * Find the correct units for this sensor.
   1168  1.46.2.2      matt 	 */
   1169  1.46.2.1      matt 	sdt_units = sme_get_description_table(SME_DESC_UNITS);
   1170  1.46.2.1      matt 	for (i = 0; sdt_units[i].type != -1; i++)
   1171  1.46.2.1      matt 		if (sdt_units[i].type == edata->units)
   1172      1.18   xtraeme 			break;
   1173      1.18   xtraeme 
   1174      1.18   xtraeme 	/*
   1175  1.46.2.1      matt 	 * Add the index sensor string.
   1176  1.46.2.1      matt 	 *
   1177  1.46.2.1      matt 	 * 		...
   1178  1.46.2.2      matt 	 * 		<key>index</eyr
   1179  1.46.2.1      matt 	 * 		<string>sensor0</string>
   1180  1.46.2.1      matt 	 * 		...
   1181  1.46.2.1      matt 	 */
   1182  1.46.2.1      matt 	(void)snprintf(indexstr, sizeof(indexstr), "sensor%d", edata->sensor);
   1183  1.46.2.1      matt 	if (sme_sensor_upstring(dict, "index", indexstr))
   1184  1.46.2.2      matt 		goto bad;
   1185  1.46.2.1      matt 
   1186  1.46.2.1      matt 	/*
   1187      1.18   xtraeme 	 * 		...
   1188      1.18   xtraeme 	 * 		<key>type</key>
   1189      1.18   xtraeme 	 * 		<string>foo</string>
   1190      1.18   xtraeme 	 * 		<key>description</key>
   1191      1.18   xtraeme 	 * 		<string>blah blah</string>
   1192      1.18   xtraeme 	 * 		...
   1193      1.18   xtraeme 	 */
   1194  1.46.2.1      matt 	if (sme_sensor_upstring(dict, "type", sdt_units[i].desc))
   1195  1.46.2.2      matt 		goto bad;
   1196      1.30   xtraeme 
   1197      1.41   xtraeme 	if (sme_sensor_upstring(dict, "description", edata->desc))
   1198  1.46.2.2      matt 		goto bad;
   1199      1.18   xtraeme 
   1200      1.18   xtraeme 	/*
   1201      1.18   xtraeme 	 * Add sensor's state description.
   1202      1.18   xtraeme 	 *
   1203      1.18   xtraeme 	 * 		...
   1204      1.18   xtraeme 	 * 		<key>state</key>
   1205      1.18   xtraeme 	 * 		<string>valid</string>
   1206      1.18   xtraeme 	 * 		...
   1207      1.18   xtraeme 	 */
   1208  1.46.2.1      matt 	sdt = sme_get_description_table(SME_DESC_STATES);
   1209  1.46.2.1      matt 	for (j = 0; sdt[j].type != -1; j++)
   1210  1.46.2.1      matt 		if (sdt[j].type == edata->state)
   1211       1.7      yamt 			break;
   1212      1.18   xtraeme 
   1213      1.41   xtraeme 	DPRINTF(("%s: sensor desc=%s type=%d state=%d\n",
   1214      1.41   xtraeme 	    __func__, edata->desc, edata->units, edata->state));
   1215      1.41   xtraeme 
   1216  1.46.2.1      matt 	if (sme_sensor_upstring(dict, "state", sdt[j].desc))
   1217  1.46.2.2      matt 		goto bad;
   1218      1.18   xtraeme 
   1219      1.18   xtraeme 	/*
   1220  1.46.2.1      matt 	 * Add the monitoring boolean object:
   1221  1.46.2.1      matt 	 *
   1222  1.46.2.1      matt 	 * 		...
   1223  1.46.2.1      matt 	 * 		<key>monitoring-supported</key>
   1224  1.46.2.1      matt 	 * 		<true/>
   1225  1.46.2.1      matt 	 *		...
   1226  1.46.2.1      matt 	 *
   1227  1.46.2.1      matt 	 * always false on Battery {capacity,charge}, Drive and Indicator types.
   1228  1.46.2.1      matt 	 * They cannot be monitored.
   1229  1.46.2.1      matt 	 *
   1230  1.46.2.1      matt 	 */
   1231  1.46.2.1      matt 	if ((edata->flags & ENVSYS_FMONNOTSUPP) ||
   1232  1.46.2.1      matt 	    (edata->units == ENVSYS_INDICATOR) ||
   1233  1.46.2.1      matt 	    (edata->units == ENVSYS_DRIVE) ||
   1234  1.46.2.1      matt 	    (edata->units == ENVSYS_BATTERY_CAPACITY) ||
   1235  1.46.2.1      matt 	    (edata->units == ENVSYS_BATTERY_CHARGE)) {
   1236  1.46.2.1      matt 		if (sme_sensor_upbool(dict, "monitoring-supported", false))
   1237  1.46.2.1      matt 			goto out;
   1238  1.46.2.1      matt 	} else {
   1239  1.46.2.1      matt 		if (sme_sensor_upbool(dict, "monitoring-supported", true))
   1240  1.46.2.1      matt 			goto out;
   1241  1.46.2.1      matt 	}
   1242  1.46.2.1      matt 
   1243  1.46.2.1      matt 	/*
   1244  1.46.2.1      matt 	 * Add the percentage boolean object, true if ENVSYS_FPERCENT
   1245  1.46.2.1      matt 	 * is set or false otherwise.
   1246      1.18   xtraeme 	 *
   1247      1.18   xtraeme 	 * 		...
   1248      1.18   xtraeme 	 * 		<key>want-percentage</key>
   1249      1.18   xtraeme 	 * 		<true/>
   1250      1.18   xtraeme 	 * 		...
   1251      1.18   xtraeme 	 */
   1252      1.41   xtraeme 	if (edata->flags & ENVSYS_FPERCENT)
   1253      1.41   xtraeme 		if (sme_sensor_upbool(dict, "want-percentage", true))
   1254      1.30   xtraeme 			goto out;
   1255      1.18   xtraeme 
   1256      1.18   xtraeme 	/*
   1257  1.46.2.1      matt 	 * Add the allow-rfact boolean object, true if
   1258  1.46.2.1      matt 	 * ENVSYS_FCHANGERFACT if set or false otherwise.
   1259      1.18   xtraeme 	 *
   1260      1.18   xtraeme 	 * 		...
   1261  1.46.2.1      matt 	 * 		<key>allow-rfact</key>
   1262      1.18   xtraeme 	 * 		<true/>
   1263  1.46.2.1      matt 	 * 		...
   1264  1.46.2.1      matt 	 */
   1265  1.46.2.1      matt 	if (edata->units == ENVSYS_SVOLTS_DC ||
   1266  1.46.2.1      matt 	    edata->units == ENVSYS_SVOLTS_AC) {
   1267  1.46.2.1      matt 		if (edata->flags & ENVSYS_FCHANGERFACT) {
   1268  1.46.2.1      matt 			if (sme_sensor_upbool(dict, "allow-rfact", true))
   1269  1.46.2.1      matt 				goto out;
   1270  1.46.2.1      matt 		} else {
   1271  1.46.2.1      matt 			if (sme_sensor_upbool(dict, "allow-rfact", false))
   1272  1.46.2.1      matt 				goto out;
   1273  1.46.2.1      matt 		}
   1274  1.46.2.1      matt 	}
   1275  1.46.2.1      matt 
   1276  1.46.2.1      matt 	/*
   1277  1.46.2.1      matt 	 * Add the object for battery capacity sensors:
   1278      1.18   xtraeme 	 *
   1279  1.46.2.1      matt 	 * 		...
   1280  1.46.2.1      matt 	 * 		<key>battery-capacity</key>
   1281  1.46.2.1      matt 	 * 		<string>NORMAL</string>
   1282  1.46.2.1      matt 	 * 		...
   1283      1.18   xtraeme 	 */
   1284  1.46.2.1      matt 	if (edata->units == ENVSYS_BATTERY_CAPACITY) {
   1285  1.46.2.1      matt 		sdt = sme_get_description_table(SME_DESC_BATTERY_CAPACITY);
   1286  1.46.2.1      matt 		for (j = 0; sdt[j].type != -1; j++)
   1287  1.46.2.1      matt 			if (sdt[j].type == edata->value_cur)
   1288  1.46.2.1      matt 				break;
   1289  1.46.2.1      matt 
   1290  1.46.2.1      matt 		if (sme_sensor_upstring(dict, "battery-capacity", sdt[j].desc))
   1291      1.30   xtraeme 			goto out;
   1292      1.18   xtraeme 	}
   1293      1.18   xtraeme 
   1294      1.18   xtraeme 	/*
   1295      1.18   xtraeme 	 * Add the drive-state object for drive sensors:
   1296      1.18   xtraeme 	 *
   1297      1.18   xtraeme 	 * 		...
   1298      1.18   xtraeme 	 * 		<key>drive-state</key>
   1299      1.18   xtraeme 	 * 		<string>drive is online</string>
   1300      1.18   xtraeme 	 * 		...
   1301      1.18   xtraeme 	 */
   1302      1.18   xtraeme 	if (edata->units == ENVSYS_DRIVE) {
   1303  1.46.2.1      matt 		sdt = sme_get_description_table(SME_DESC_DRIVE_STATES);
   1304  1.46.2.1      matt 		for (j = 0; sdt[j].type != -1; j++)
   1305  1.46.2.1      matt 			if (sdt[j].type == edata->value_cur)
   1306      1.18   xtraeme 				break;
   1307      1.30   xtraeme 
   1308  1.46.2.1      matt 		if (sme_sensor_upstring(dict, "drive-state", sdt[j].desc))
   1309      1.30   xtraeme 			goto out;
   1310      1.18   xtraeme 	}
   1311      1.18   xtraeme 
   1312  1.46.2.2      matt 	/*
   1313  1.46.2.2      matt 	 * Add the following objects if sensor is enabled...
   1314  1.46.2.1      matt 	 */
   1315      1.18   xtraeme 	if (edata->state == ENVSYS_SVALID) {
   1316      1.18   xtraeme 		/*
   1317  1.46.2.2      matt 		 * Add the following objects:
   1318  1.46.2.2      matt 		 *
   1319      1.18   xtraeme 		 * 	...
   1320      1.18   xtraeme 		 * 	<key>rpms</key>
   1321      1.18   xtraeme 		 * 	<integer>2500</integer>
   1322      1.18   xtraeme 		 * 	<key>rfact</key>
   1323      1.18   xtraeme 		 * 	<integer>10000</integer>
   1324      1.18   xtraeme 		 * 	<key>cur-value</key>
   1325  1.46.2.2      matt 	 	 * 	<integer>1250</integer>
   1326  1.46.2.2      matt 	 	 * 	<key>min-value</key>
   1327  1.46.2.2      matt 	 	 * 	<integer>800</integer>
   1328  1.46.2.2      matt 	 	 * 	<key>max-value</integer>
   1329  1.46.2.2      matt 	 	 * 	<integer>3000</integer>
   1330  1.46.2.2      matt 	 	 * 	<key>avg-value</integer>
   1331  1.46.2.2      matt 	 	 * 	<integer>1400</integer>
   1332  1.46.2.2      matt 	 	 * 	...
   1333  1.46.2.2      matt 	 	 */
   1334      1.41   xtraeme 		if (edata->units == ENVSYS_SFANRPM)
   1335      1.41   xtraeme 			if (sme_sensor_upuint32(dict, "rpms", edata->rpms))
   1336      1.30   xtraeme 				goto out;
   1337      1.18   xtraeme 
   1338      1.41   xtraeme 		if (edata->units == ENVSYS_SVOLTS_AC ||
   1339  1.46.2.2      matt 	    	    edata->units == ENVSYS_SVOLTS_DC)
   1340      1.41   xtraeme 			if (sme_sensor_upint32(dict, "rfact", edata->rfact))
   1341      1.30   xtraeme 				goto out;
   1342      1.18   xtraeme 
   1343      1.41   xtraeme 		if (sme_sensor_upint32(dict, "cur-value", edata->value_cur))
   1344      1.41   xtraeme 			goto out;
   1345      1.30   xtraeme 
   1346      1.41   xtraeme 		if (edata->flags & ENVSYS_FVALID_MIN) {
   1347      1.41   xtraeme 			if (sme_sensor_upint32(dict,
   1348      1.41   xtraeme 					       "min-value",
   1349      1.41   xtraeme 					       edata->value_min))
   1350  1.46.2.2      matt 			goto out;
   1351      1.30   xtraeme 		}
   1352      1.30   xtraeme 
   1353      1.41   xtraeme 		if (edata->flags & ENVSYS_FVALID_MAX) {
   1354      1.41   xtraeme 			if (sme_sensor_upint32(dict,
   1355      1.41   xtraeme 					       "max-value",
   1356      1.41   xtraeme 					       edata->value_max))
   1357  1.46.2.2      matt 			goto out;
   1358      1.30   xtraeme 		}
   1359      1.30   xtraeme 
   1360      1.41   xtraeme 		if (edata->flags & ENVSYS_FVALID_AVG) {
   1361      1.41   xtraeme 			if (sme_sensor_upint32(dict,
   1362      1.41   xtraeme 					       "avg-value",
   1363  1.46.2.2      matt 					       edata->value_avg))
   1364  1.46.2.2      matt 			goto out;
   1365      1.30   xtraeme 		}
   1366      1.18   xtraeme 	}
   1367      1.18   xtraeme 
   1368      1.18   xtraeme 	/*
   1369      1.18   xtraeme 	 * 	...
   1370  1.46.2.2      matt 	 * </dict>
   1371  1.46.2.1      matt 	 *
   1372  1.46.2.1      matt 	 * Add the dictionary into the array.
   1373  1.46.2.1      matt 	 *
   1374      1.18   xtraeme 	 */
   1375  1.46.2.2      matt 	if (!prop_array_add(array, dict)) {
   1376      1.41   xtraeme 		DPRINTF(("%s: prop_array_add\n", __func__));
   1377  1.46.2.2      matt 		goto bad;
   1378      1.41   xtraeme 	}
   1379      1.41   xtraeme 
   1380      1.41   xtraeme 	/*
   1381  1.46.2.2      matt 	 * Register a new event if a monitoring flag was set.
   1382      1.41   xtraeme 	 */
   1383      1.41   xtraeme 	if (edata->monitor) {
   1384      1.41   xtraeme 		sme_evdrv_t = kmem_zalloc(sizeof(*sme_evdrv_t), KM_SLEEP);
   1385  1.46.2.2      matt 		sme_evdrv_t->sed_sdict = dict;
   1386  1.46.2.2      matt 		sme_evdrv_t->sed_edata = edata;
   1387  1.46.2.2      matt 		sme_evdrv_t->sed_sme = sme;
   1388  1.46.2.2      matt 		sme_evdrv_t->sed_powertype = sdt_units[i].crittype;
   1389      1.41   xtraeme 	}
   1390      1.41   xtraeme 
   1391      1.18   xtraeme out:
   1392  1.46.2.1      matt 	return sme_evdrv_t;
   1393      1.41   xtraeme 
   1394  1.46.2.2      matt bad:
   1395      1.18   xtraeme 	prop_object_release(dict);
   1396  1.46.2.2      matt 	return NULL;
   1397      1.18   xtraeme }
   1398      1.18   xtraeme 
   1399      1.18   xtraeme /*
   1400      1.18   xtraeme  * sme_update_dictionary:
   1401      1.18   xtraeme  *
   1402      1.18   xtraeme  * 	+ Update per-sensor dictionaries with new values if there were
   1403      1.18   xtraeme  * 	  changes, otherwise the object in dictionary is untouched.
   1404      1.18   xtraeme  */
   1405      1.18   xtraeme int
   1406      1.18   xtraeme sme_update_dictionary(struct sysmon_envsys *sme)
   1407      1.18   xtraeme {
   1408  1.46.2.1      matt 	const struct sme_description_table *sdt;
   1409  1.46.2.1      matt 	envsys_data_t *edata;
   1410  1.46.2.2      matt 	prop_object_t array, dict, obj, obj2;
   1411  1.46.2.2      matt 	int j, error = 0;
   1412      1.18   xtraeme 
   1413  1.46.2.1      matt 	KASSERT(mutex_owned(&sme_mtx));
   1414  1.46.2.1      matt 
   1415  1.46.2.2      matt 	/*
   1416  1.46.2.2      matt 	 * Retrieve the array of dictionaries in device.
   1417  1.46.2.2      matt 	 */
   1418      1.18   xtraeme 	array = prop_dictionary_get(sme_propd, sme->sme_name);
   1419      1.24   xtraeme 	if (prop_object_type(array) != PROP_TYPE_ARRAY) {
   1420      1.24   xtraeme 		DPRINTF(("%s: not an array (%s)\n", __func__, sme->sme_name));
   1421      1.18   xtraeme 		return EINVAL;
   1422      1.24   xtraeme 	}
   1423      1.18   xtraeme 
   1424  1.46.2.2      matt 	/*
   1425  1.46.2.2      matt 	 * Get the last dictionary on the array, this contains the
   1426  1.46.2.2      matt 	 * 'device-properties' sub-dictionary.
   1427  1.46.2.2      matt 	 */
   1428  1.46.2.2      matt 	obj = prop_array_get(array, prop_array_count(array) - 1);
   1429  1.46.2.2      matt 	if (!obj || prop_object_type(obj) != PROP_TYPE_DICTIONARY) {
   1430  1.46.2.2      matt 		DPRINTF(("%s: not a device-properties dictionary\n", __func__));
   1431  1.46.2.2      matt 		return EINVAL;
   1432  1.46.2.2      matt 	}
   1433  1.46.2.2      matt 
   1434  1.46.2.2      matt 	obj2 = prop_dictionary_get(obj, "device-properties");
   1435  1.46.2.2      matt 	if (!obj2)
   1436  1.46.2.2      matt 		return EINVAL;
   1437  1.46.2.2      matt 
   1438  1.46.2.2      matt 	/*
   1439  1.46.2.2      matt 	 * Update the 'refresh-timeout' property.
   1440  1.46.2.2      matt 	 */
   1441  1.46.2.2      matt 	if (!prop_dictionary_set_uint64(obj2, "refresh-timeout",
   1442  1.46.2.2      matt 					sme->sme_events_timeout))
   1443  1.46.2.2      matt 		return EINVAL;
   1444  1.46.2.2      matt 
   1445      1.18   xtraeme 	/*
   1446      1.18   xtraeme 	 * - iterate over all sensors.
   1447      1.18   xtraeme 	 * - fetch new data.
   1448      1.18   xtraeme 	 * - check if data in dictionary is different than new data.
   1449      1.18   xtraeme 	 * - update dictionary if there were changes.
   1450      1.18   xtraeme 	 */
   1451  1.46.2.1      matt 	DPRINTF(("%s: updating '%s' with nsensors=%d\n", __func__,
   1452  1.46.2.1      matt 	    sme->sme_name, sme->sme_nsensors));
   1453  1.46.2.1      matt 
   1454  1.46.2.2      matt 	TAILQ_FOREACH(edata, &sme->sme_sensors_list, sensors_head) {
   1455      1.18   xtraeme 		/*
   1456  1.46.2.2      matt 		 * refresh sensor data via sme_refresh only if the
   1457      1.18   xtraeme 		 * flag is not set.
   1458      1.18   xtraeme 		 */
   1459  1.46.2.2      matt 		if ((sme->sme_flags & SME_DISABLE_REFRESH) == 0)
   1460  1.46.2.2      matt 			(*sme->sme_refresh)(sme, edata);
   1461      1.18   xtraeme 
   1462  1.46.2.2      matt 		/*
   1463  1.46.2.2      matt 		 * retrieve sensor's dictionary.
   1464  1.46.2.2      matt 		 */
   1465  1.46.2.2      matt 		dict = prop_array_get(array, edata->sensor);
   1466      1.24   xtraeme 		if (prop_object_type(dict) != PROP_TYPE_DICTIONARY) {
   1467      1.24   xtraeme 			DPRINTF(("%s: not a dictionary (%d:%s)\n",
   1468      1.24   xtraeme 			    __func__, edata->sensor, sme->sme_name));
   1469      1.18   xtraeme 			return EINVAL;
   1470      1.24   xtraeme 		}
   1471      1.18   xtraeme 
   1472  1.46.2.2      matt 		/*
   1473  1.46.2.2      matt 		 * update sensor's state.
   1474  1.46.2.2      matt 		 */
   1475  1.46.2.1      matt 		sdt = sme_get_description_table(SME_DESC_STATES);
   1476  1.46.2.1      matt 		for (j = 0; sdt[j].type != -1; j++)
   1477  1.46.2.1      matt 			if (sdt[j].type == edata->state)
   1478      1.18   xtraeme 				break;
   1479      1.18   xtraeme 
   1480      1.18   xtraeme 		DPRINTFOBJ(("%s: state=%s type=%d flags=%d "
   1481  1.46.2.1      matt 		    "units=%d sensor=%d\n", __func__, sdt[j].desc,
   1482  1.46.2.1      matt 		    sdt[j].type, edata->flags, edata->units, edata->sensor));
   1483      1.18   xtraeme 
   1484  1.46.2.1      matt 		error = sme_sensor_upstring(dict, "state", sdt[j].desc);
   1485      1.30   xtraeme 		if (error)
   1486      1.30   xtraeme 			break;
   1487      1.18   xtraeme 
   1488  1.46.2.2      matt 		/*
   1489  1.46.2.2      matt 		 * update sensor's type.
   1490  1.46.2.2      matt 		 */
   1491  1.46.2.1      matt 		sdt = sme_get_description_table(SME_DESC_UNITS);
   1492  1.46.2.1      matt 		for (j = 0; sdt[j].type != -1; j++)
   1493  1.46.2.1      matt 			if (sdt[j].type == edata->units)
   1494      1.45   xtraeme 				break;
   1495      1.45   xtraeme 
   1496  1.46.2.1      matt 		error = sme_sensor_upstring(dict, "type", sdt[j].desc);
   1497      1.45   xtraeme 		if (error)
   1498      1.45   xtraeme 			break;
   1499      1.45   xtraeme 
   1500  1.46.2.2      matt 		/*
   1501  1.46.2.2      matt 		 * update sensor's current value.
   1502  1.46.2.2      matt 		 */
   1503      1.34   xtraeme 		error = sme_sensor_upint32(dict,
   1504      1.30   xtraeme 					   "cur-value",
   1505      1.30   xtraeme 					   edata->value_cur);
   1506      1.30   xtraeme 		if (error)
   1507      1.30   xtraeme 			break;
   1508      1.18   xtraeme 
   1509      1.18   xtraeme 		/*
   1510  1.46.2.1      matt 		 * Battery charge, Integer and Indicator types do not
   1511  1.46.2.1      matt 		 * need the following objects, so skip them.
   1512      1.18   xtraeme 		 */
   1513      1.18   xtraeme 		if (edata->units == ENVSYS_INTEGER ||
   1514  1.46.2.1      matt 		    edata->units == ENVSYS_INDICATOR ||
   1515  1.46.2.1      matt 		    edata->units == ENVSYS_BATTERY_CHARGE)
   1516      1.18   xtraeme 			continue;
   1517      1.18   xtraeme 
   1518  1.46.2.2      matt 		/*
   1519  1.46.2.2      matt 		 * update sensor flags.
   1520  1.46.2.2      matt 		 */
   1521      1.30   xtraeme 		if (edata->flags & ENVSYS_FPERCENT) {
   1522      1.34   xtraeme 			error = sme_sensor_upbool(dict,
   1523      1.30   xtraeme 						  "want-percentage",
   1524      1.30   xtraeme 						  true);
   1525      1.30   xtraeme 			if (error)
   1526      1.30   xtraeme 				break;
   1527      1.18   xtraeme 		}
   1528      1.18   xtraeme 
   1529  1.46.2.2      matt 		/*
   1530  1.46.2.2      matt 		 * update sensor's {avg,max,min}-value.
   1531  1.46.2.2      matt 		 */
   1532      1.30   xtraeme 		if (edata->flags & ENVSYS_FVALID_MAX) {
   1533      1.34   xtraeme 			error = sme_sensor_upint32(dict,
   1534      1.30   xtraeme 						   "max-value",
   1535      1.30   xtraeme 						   edata->value_max);
   1536      1.30   xtraeme 			if (error)
   1537      1.30   xtraeme 				break;
   1538      1.30   xtraeme 		}
   1539      1.30   xtraeme 
   1540      1.30   xtraeme 		if (edata->flags & ENVSYS_FVALID_MIN) {
   1541      1.34   xtraeme 			error = sme_sensor_upint32(dict,
   1542      1.30   xtraeme 						   "min-value",
   1543      1.30   xtraeme 						   edata->value_min);
   1544      1.30   xtraeme 			if (error)
   1545      1.30   xtraeme 				break;
   1546      1.30   xtraeme 		}
   1547      1.18   xtraeme 
   1548      1.30   xtraeme 		if (edata->flags & ENVSYS_FVALID_AVG) {
   1549      1.34   xtraeme 			error = sme_sensor_upint32(dict,
   1550      1.30   xtraeme 						   "avg-value",
   1551      1.30   xtraeme 						   edata->value_avg);
   1552      1.30   xtraeme 			if (error)
   1553      1.30   xtraeme 				break;
   1554      1.30   xtraeme 		}
   1555      1.18   xtraeme 
   1556  1.46.2.2      matt 		/*
   1557  1.46.2.2      matt 		 * update 'rpms' only for ENVSYS_SFANRPM sensors.
   1558  1.46.2.2      matt 		 */
   1559      1.30   xtraeme 		if (edata->units == ENVSYS_SFANRPM) {
   1560      1.34   xtraeme 			error = sme_sensor_upuint32(dict,
   1561      1.30   xtraeme 						    "rpms",
   1562      1.30   xtraeme 						    edata->rpms);
   1563      1.30   xtraeme 			if (error)
   1564      1.30   xtraeme 				break;
   1565      1.30   xtraeme 		}
   1566      1.18   xtraeme 
   1567  1.46.2.2      matt 		/*
   1568  1.46.2.2      matt 		 * update 'rfact' only for ENVSYS_SVOLTS_[AD]C sensors.
   1569  1.46.2.2      matt 		 */
   1570      1.18   xtraeme 		if (edata->units == ENVSYS_SVOLTS_AC ||
   1571      1.18   xtraeme 		    edata->units == ENVSYS_SVOLTS_DC) {
   1572      1.34   xtraeme 			error = sme_sensor_upint32(dict,
   1573      1.30   xtraeme 						   "rfact",
   1574      1.30   xtraeme 						   edata->rfact);
   1575      1.30   xtraeme 			if (error)
   1576      1.30   xtraeme 				break;
   1577      1.18   xtraeme 		}
   1578      1.18   xtraeme 
   1579  1.46.2.2      matt 		/*
   1580  1.46.2.2      matt 		 * update 'drive-state' only for ENVSYS_DRIVE sensors.
   1581  1.46.2.2      matt 		 */
   1582      1.18   xtraeme 		if (edata->units == ENVSYS_DRIVE) {
   1583  1.46.2.1      matt 			sdt = sme_get_description_table(SME_DESC_DRIVE_STATES);
   1584  1.46.2.1      matt 			for (j = 0; sdt[j].type != -1; j++)
   1585  1.46.2.1      matt 				if (sdt[j].type == edata->value_cur)
   1586      1.18   xtraeme 					break;
   1587      1.18   xtraeme 
   1588      1.34   xtraeme 			error = sme_sensor_upstring(dict,
   1589      1.30   xtraeme 						    "drive-state",
   1590  1.46.2.1      matt 						    sdt[j].desc);
   1591  1.46.2.1      matt 			if (error)
   1592  1.46.2.1      matt 				break;
   1593  1.46.2.1      matt 		}
   1594  1.46.2.1      matt 
   1595  1.46.2.2      matt 		/*
   1596  1.46.2.2      matt 		 * update 'battery-capacity' only for ENVSYS_BATTERY_CAPACITY
   1597  1.46.2.2      matt 		 * sensors.
   1598  1.46.2.2      matt 		 */
   1599  1.46.2.1      matt 		if (edata->units == ENVSYS_BATTERY_CAPACITY) {
   1600  1.46.2.1      matt 			sdt =
   1601  1.46.2.2      matt 			  sme_get_description_table(SME_DESC_BATTERY_CAPACITY);
   1602  1.46.2.1      matt 			for (j = 0; sdt[j].type != -1; j++)
   1603  1.46.2.1      matt 				if (sdt[j].type == edata->value_cur)
   1604  1.46.2.1      matt 					break;
   1605  1.46.2.1      matt 
   1606  1.46.2.1      matt 			error = sme_sensor_upstring(dict,
   1607  1.46.2.1      matt 						    "battery-capacity",
   1608  1.46.2.1      matt 						    sdt[j].desc);
   1609      1.32   xtraeme 			if (error)
   1610      1.32   xtraeme 				break;
   1611       1.7      yamt 		}
   1612       1.1   thorpej 	}
   1613       1.1   thorpej 
   1614      1.18   xtraeme 	return error;
   1615       1.1   thorpej }
   1616       1.1   thorpej 
   1617       1.1   thorpej /*
   1618      1.18   xtraeme  * sme_userset_dictionary:
   1619       1.1   thorpej  *
   1620  1.46.2.2      matt  * 	+ Parse the userland dictionary and run the appropiate tasks
   1621  1.46.2.2      matt  * 	  that were specified.
   1622       1.1   thorpej  */
   1623      1.18   xtraeme int
   1624      1.18   xtraeme sme_userset_dictionary(struct sysmon_envsys *sme, prop_dictionary_t udict,
   1625      1.18   xtraeme 		       prop_array_t array)
   1626       1.1   thorpej {
   1627  1.46.2.1      matt 	const struct sme_description_table *sdt;
   1628  1.46.2.2      matt 	envsys_data_t *edata;
   1629  1.46.2.2      matt 	prop_dictionary_t dict, tdict = NULL;
   1630  1.46.2.2      matt 	prop_object_t obj, obj1, obj2, tobj = NULL;
   1631  1.46.2.2      matt 	uint64_t refresh_timo = 0;
   1632      1.18   xtraeme 	int32_t critval;
   1633  1.46.2.2      matt 	int i, error = 0;
   1634  1.46.2.2      matt 	const char *blah;
   1635      1.18   xtraeme 	bool targetfound = false;
   1636      1.18   xtraeme 
   1637  1.46.2.2      matt 	KASSERT(mutex_owned(&sme_mtx));
   1638      1.18   xtraeme 
   1639  1.46.2.2      matt 	/*
   1640  1.46.2.2      matt 	 * The user wanted to change the refresh timeout value for this
   1641  1.46.2.2      matt 	 * device.
   1642  1.46.2.2      matt 	 *
   1643  1.46.2.2      matt 	 * Get the 'device-properties' object from the userland dictionary.
   1644  1.46.2.2      matt 	 */
   1645  1.46.2.2      matt 	obj = prop_dictionary_get(udict, "device-properties");
   1646  1.46.2.2      matt 	if (obj && prop_object_type(obj) == PROP_TYPE_DICTIONARY) {
   1647  1.46.2.2      matt 		/*
   1648  1.46.2.2      matt 		 * Get the 'refresh-timeout' property for this device.
   1649  1.46.2.2      matt 		 */
   1650  1.46.2.2      matt 		obj1 = prop_dictionary_get(obj, "refresh-timeout");
   1651  1.46.2.2      matt 		if (obj1 && prop_object_type(obj1) == PROP_TYPE_NUMBER) {
   1652  1.46.2.2      matt 			targetfound = true;
   1653  1.46.2.2      matt 			refresh_timo =
   1654  1.46.2.2      matt 			    prop_number_unsigned_integer_value(obj1);
   1655  1.46.2.2      matt 			if (refresh_timo < 1)
   1656  1.46.2.2      matt 				error = EINVAL;
   1657  1.46.2.2      matt 			else
   1658  1.46.2.2      matt 				sme->sme_events_timeout = refresh_timo;
   1659  1.46.2.2      matt 		}
   1660  1.46.2.2      matt 		goto out;
   1661       1.1   thorpej 
   1662  1.46.2.2      matt 	} else if (!obj) {
   1663  1.46.2.1      matt 		/*
   1664  1.46.2.2      matt 		 * Get sensor's index from userland dictionary.
   1665  1.46.2.1      matt 		 */
   1666  1.46.2.2      matt 		obj = prop_dictionary_get(udict, "index");
   1667  1.46.2.2      matt 		if (!obj)
   1668  1.46.2.2      matt 			goto out;
   1669  1.46.2.2      matt 		if (prop_object_type(obj) != PROP_TYPE_STRING) {
   1670  1.46.2.2      matt 			DPRINTF(("%s: 'index' not a string\n", __func__));
   1671  1.46.2.2      matt 			return EINVAL;
   1672      1.40   xtraeme 		}
   1673  1.46.2.2      matt 	} else
   1674  1.46.2.2      matt 		return EINVAL;
   1675      1.27   xtraeme 
   1676  1.46.2.2      matt 	/*
   1677  1.46.2.2      matt 	 * iterate over the sensors to find the right one.
   1678  1.46.2.2      matt 	 */
   1679  1.46.2.2      matt 	TAILQ_FOREACH(edata, &sme->sme_sensors_list, sensors_head) {
   1680  1.46.2.2      matt 		/*
   1681  1.46.2.2      matt 		 * Get a dictionary and check if it's our sensor by checking
   1682  1.46.2.2      matt 		 * at its index position.
   1683  1.46.2.2      matt 		 */
   1684  1.46.2.2      matt 		dict = prop_array_get(array, edata->sensor);
   1685  1.46.2.1      matt 		obj1 = prop_dictionary_get(dict, "index");
   1686      1.18   xtraeme 
   1687  1.46.2.2      matt 		/*
   1688  1.46.2.2      matt 		 * is it our sensor?
   1689  1.46.2.2      matt 		 */
   1690      1.18   xtraeme 		if (!prop_string_equals(obj1, obj))
   1691      1.18   xtraeme 			continue;
   1692      1.18   xtraeme 
   1693      1.18   xtraeme 		/*
   1694      1.18   xtraeme 		 * Check if a new description operation was
   1695      1.18   xtraeme 		 * requested by the user and set new description.
   1696      1.18   xtraeme 		 */
   1697  1.46.2.2      matt 		obj2 = prop_dictionary_get(udict, "description");
   1698  1.46.2.2      matt 		if (obj2 && prop_object_type(obj2) == PROP_TYPE_STRING) {
   1699      1.18   xtraeme 			targetfound = true;
   1700      1.18   xtraeme 			blah = prop_string_cstring_nocopy(obj2);
   1701  1.46.2.2      matt 
   1702  1.46.2.2      matt 			/*
   1703  1.46.2.2      matt 			 * Check for duplicate description.
   1704  1.46.2.2      matt 			 */
   1705      1.23   xtraeme 			for (i = 0; i < sme->sme_nsensors; i++) {
   1706      1.23   xtraeme 				if (i == edata->sensor)
   1707      1.23   xtraeme 					continue;
   1708  1.46.2.2      matt 				tdict = prop_array_get(array, i);
   1709  1.46.2.2      matt 				tobj =
   1710  1.46.2.2      matt 				    prop_dictionary_get(tdict, "description");
   1711  1.46.2.2      matt 				if (prop_string_equals(obj2, tobj))
   1712  1.46.2.2      matt 					return EEXIST;
   1713      1.23   xtraeme 			}
   1714      1.23   xtraeme 
   1715  1.46.2.2      matt 			/*
   1716  1.46.2.2      matt 			 * Update the object in dictionary.
   1717  1.46.2.2      matt 			 */
   1718      1.34   xtraeme 			error = sme_sensor_upstring(dict,
   1719      1.30   xtraeme 						    "description",
   1720      1.30   xtraeme 						    blah);
   1721      1.18   xtraeme 			if (error)
   1722  1.46.2.2      matt 				return error;
   1723      1.18   xtraeme 
   1724  1.46.2.2      matt 			DPRINTF(("%s: sensor%d changed desc to: %s\n",
   1725  1.46.2.2      matt 			    __func__, edata->sensor, blah));
   1726  1.46.2.1      matt 			edata->upropset |= USERPROP_DESC;
   1727      1.18   xtraeme 		}
   1728      1.18   xtraeme 
   1729  1.46.2.1      matt 		/*
   1730  1.46.2.1      matt 		 * did the user want to change the rfact?
   1731  1.46.2.1      matt 		 */
   1732  1.46.2.1      matt 		obj2 = prop_dictionary_get(udict, "rfact");
   1733  1.46.2.2      matt 		if (obj2 && prop_object_type(obj2) == PROP_TYPE_NUMBER) {
   1734      1.18   xtraeme 			targetfound = true;
   1735  1.46.2.1      matt 			if (edata->flags & ENVSYS_FCHANGERFACT) {
   1736      1.18   xtraeme 				edata->rfact = prop_number_integer_value(obj2);
   1737  1.46.2.1      matt 				edata->upropset |= USERPROP_RFACT;
   1738  1.46.2.2      matt 				DPRINTF(("%s: sensor%d changed rfact to %d\n",
   1739  1.46.2.2      matt 				    __func__, edata->sensor, edata->rfact));
   1740  1.46.2.2      matt 			} else
   1741  1.46.2.2      matt 				return ENOTSUP;
   1742      1.18   xtraeme 		}
   1743      1.18   xtraeme 
   1744  1.46.2.1      matt 		sdt = sme_get_description_table(SME_DESC_UNITS);
   1745  1.46.2.1      matt 		for (i = 0; sdt[i].type != -1; i++)
   1746  1.46.2.1      matt 			if (sdt[i].type == edata->units)
   1747      1.18   xtraeme 				break;
   1748      1.18   xtraeme 
   1749  1.46.2.1      matt 		/*
   1750  1.46.2.1      matt 		 * did the user want to set a critical capacity event?
   1751  1.46.2.1      matt 		 *
   1752  1.46.2.1      matt 		 * NOTE: if sme_event_register returns EEXIST that means
   1753  1.46.2.1      matt 		 * the object is already there, but this is not a real
   1754  1.46.2.1      matt 		 * error, because the object might be updated.
   1755  1.46.2.1      matt 		 */
   1756      1.18   xtraeme 		obj2 = prop_dictionary_get(udict, "critical-capacity");
   1757  1.46.2.2      matt 		if (obj2 && prop_object_type(obj2) == PROP_TYPE_NUMBER) {
   1758      1.18   xtraeme 			targetfound = true;
   1759      1.18   xtraeme 			if ((edata->flags & ENVSYS_FMONNOTSUPP) ||
   1760  1.46.2.2      matt 			    (edata->flags & ENVSYS_FPERCENT) == 0)
   1761  1.46.2.2      matt 				return ENOTSUP;
   1762      1.18   xtraeme 
   1763      1.18   xtraeme 			critval = prop_number_integer_value(obj2);
   1764  1.46.2.1      matt 			error = sme_event_register(dict,
   1765      1.18   xtraeme 					      edata,
   1766  1.46.2.2      matt 					      sme,
   1767      1.18   xtraeme 					      "critical-capacity",
   1768      1.18   xtraeme 					      critval,
   1769      1.18   xtraeme 					      PENVSYS_EVENT_BATT_USERCAP,
   1770  1.46.2.1      matt 					      sdt[i].crittype);
   1771  1.46.2.1      matt 			if (error == EEXIST)
   1772  1.46.2.1      matt 				error = 0;
   1773  1.46.2.2      matt 			if (error)
   1774  1.46.2.2      matt 				goto out;
   1775  1.46.2.2      matt 			else if (!error)
   1776  1.46.2.1      matt 				edata->upropset |= USERPROP_BATTCAP;
   1777      1.18   xtraeme 		}
   1778      1.18   xtraeme 
   1779  1.46.2.1      matt 		/*
   1780  1.46.2.1      matt 		 * did the user want to set a critical max event?
   1781  1.46.2.1      matt 		 */
   1782  1.46.2.1      matt 		obj2 = prop_dictionary_get(udict, "critical-max");
   1783  1.46.2.2      matt 		if (obj2 && prop_object_type(obj2) == PROP_TYPE_NUMBER) {
   1784      1.18   xtraeme 			targetfound = true;
   1785      1.18   xtraeme 			if (edata->units == ENVSYS_INDICATOR ||
   1786  1.46.2.2      matt 			    edata->flags & ENVSYS_FMONNOTSUPP)
   1787  1.46.2.2      matt 				return ENOTSUP;
   1788      1.18   xtraeme 
   1789      1.18   xtraeme 			critval = prop_number_integer_value(obj2);
   1790  1.46.2.1      matt 			error = sme_event_register(dict,
   1791      1.18   xtraeme 					      edata,
   1792  1.46.2.2      matt 					      sme,
   1793  1.46.2.1      matt 					      "critical-max",
   1794      1.18   xtraeme 					      critval,
   1795      1.18   xtraeme 					      PENVSYS_EVENT_USER_CRITMAX,
   1796  1.46.2.1      matt 					      sdt[i].crittype);
   1797  1.46.2.1      matt 			if (error == EEXIST)
   1798  1.46.2.1      matt 				error = 0;
   1799  1.46.2.2      matt 			if (error)
   1800  1.46.2.2      matt 				goto out;
   1801  1.46.2.2      matt 			else if (!error)
   1802  1.46.2.1      matt 				edata->upropset |= USERPROP_CRITMAX;
   1803      1.18   xtraeme 		}
   1804      1.18   xtraeme 
   1805  1.46.2.1      matt 		/*
   1806  1.46.2.1      matt 		 * did the user want to set a critical min event?
   1807  1.46.2.1      matt 		 */
   1808  1.46.2.1      matt 		obj2 = prop_dictionary_get(udict, "critical-min");
   1809  1.46.2.2      matt 		if (obj2 && prop_object_type(obj2) == PROP_TYPE_NUMBER) {
   1810      1.18   xtraeme 			targetfound = true;
   1811      1.18   xtraeme 			if (edata->units == ENVSYS_INDICATOR ||
   1812  1.46.2.2      matt 			    edata->flags & ENVSYS_FMONNOTSUPP)
   1813  1.46.2.2      matt 				return ENOTSUP;
   1814      1.18   xtraeme 
   1815      1.18   xtraeme 			critval = prop_number_integer_value(obj2);
   1816  1.46.2.1      matt 			error = sme_event_register(dict,
   1817      1.18   xtraeme 					      edata,
   1818  1.46.2.2      matt 					      sme,
   1819  1.46.2.1      matt 					      "critical-min",
   1820      1.18   xtraeme 					      critval,
   1821      1.18   xtraeme 					      PENVSYS_EVENT_USER_CRITMIN,
   1822  1.46.2.1      matt 					      sdt[i].crittype);
   1823  1.46.2.1      matt 			if (error == EEXIST)
   1824  1.46.2.1      matt 				error = 0;
   1825  1.46.2.2      matt 			if (error)
   1826  1.46.2.2      matt 				goto out;
   1827  1.46.2.2      matt 			else if (!error)
   1828  1.46.2.1      matt 				edata->upropset |= USERPROP_CRITMIN;
   1829      1.18   xtraeme 		}
   1830  1.46.2.1      matt 
   1831  1.46.2.1      matt 		/*
   1832  1.46.2.1      matt 		 * All objects in dictionary were processed.
   1833  1.46.2.1      matt 		 */
   1834  1.46.2.1      matt 		break;
   1835      1.18   xtraeme 	}
   1836      1.18   xtraeme 
   1837  1.46.2.2      matt out:
   1838  1.46.2.2      matt 	/*
   1839  1.46.2.2      matt 	 * invalid target? return the error.
   1840  1.46.2.2      matt 	 */
   1841      1.18   xtraeme 	if (!targetfound)
   1842      1.18   xtraeme 		error = EINVAL;
   1843      1.18   xtraeme 
   1844      1.18   xtraeme 	return error;
   1845       1.1   thorpej }
   1846