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