Merge branch '1.8.0' of git.omp.am:/home/omp/git/conky into 1.8.0
[monky] / src / freebsd.c
1 /* -*- mode: c; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*-
2  * vim: ts=4 sw=4 noet ai cindent syntax=c
3  *
4  * Conky, a system monitor, based on torsmo
5  *
6  * Any original torsmo code is licensed under the BSD license
7  *
8  * All code written since the fork of torsmo is licensed under the GPL
9  *
10  * Please see COPYING for details
11  *
12  * Copyright (c) 2005-2010 Brenden Matthews, Philip Kovacs, et. al.
13  *      (see AUTHORS)
14  * All rights reserved.
15  *
16  * This program is free software: you can redistribute it and/or modify
17  * it under the terms of the GNU General Public License as published by
18  * the Free Software Foundation, either version 3 of the License, or
19  * (at your option) any later version.
20  *
21  * This program is distributed in the hope that it will be useful,
22  * but WITHOUT ANY WARRANTY; without even the implied warranty of
23  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24  * GNU General Public License for more details.
25  * You should have received a copy of the GNU General Public License
26  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
27  *
28  */
29
30 #include <sys/ioctl.h>
31 #include <sys/dkstat.h>
32 #include <sys/param.h>
33 #include <sys/resource.h>
34 #include <sys/socket.h>
35 #include <sys/stat.h>
36 #include <sys/sysctl.h>
37 #include <sys/time.h>
38 #include <sys/types.h>
39 #include <sys/user.h>
40
41 #include <net/if.h>
42 #include <net/if_mib.h>
43 #include <net/if_media.h>
44 #include <net/if_var.h>
45
46 #include <devstat.h>
47 #include <ifaddrs.h>
48 #include <limits.h>
49 #include <unistd.h>
50
51 #include <dev/wi/if_wavelan_ieee.h>
52 #include <dev/acpica/acpiio.h>
53
54 #include "conky.h"
55 #include "freebsd.h"
56 #include "logging.h"
57 #include "net_stat.h"
58 #include "top.h"
59 #include "diskio.h"
60
61 #define GETSYSCTL(name, var)    getsysctl(name, &(var), sizeof(var))
62 #define KELVTOC(x)                              ((x - 2732) / 10.0)
63 #define MAXSHOWDEVS                             16
64
65 #if 0
66 #define FREEBSD_DEBUG
67 #endif
68
69 __attribute__((gnu_inline)) inline void
70 proc_find_top(struct process **cpu, struct process **mem);
71
72 static short cpu_setup = 0;
73
74 static int getsysctl(const char *name, void *ptr, size_t len)
75 {
76         size_t nlen = len;
77
78         if (sysctlbyname(name, ptr, &nlen, NULL, 0) == -1) {
79                 return -1;
80         }
81
82         if (nlen != len && errno == ENOMEM) {
83                 return -1;
84         }
85
86         return 0;
87 }
88
89 struct ifmibdata *data = NULL;
90 size_t len = 0;
91
92 static int swapmode(unsigned long *retavail, unsigned long *retfree)
93 {
94         int n;
95         unsigned long pagesize = getpagesize();
96         struct kvm_swap swapary[1];
97
98         *retavail = 0;
99         *retfree = 0;
100
101 #define CONVERT(v)      ((quad_t)(v) * (pagesize / 1024))
102
103         n = kvm_getswapinfo(kd, swapary, 1, 0);
104         if (n < 0 || swapary[0].ksw_total == 0) {
105                 return 0;
106         }
107
108         *retavail = CONVERT(swapary[0].ksw_total);
109         *retfree = CONVERT(swapary[0].ksw_total - swapary[0].ksw_used);
110
111         n = (int) ((double) swapary[0].ksw_used * 100.0 /
112                 (double) swapary[0].ksw_total);
113
114         return n;
115 }
116
117 void prepare_update(void)
118 {
119 }
120
121 void update_uptime(void)
122 {
123         int mib[2] = { CTL_KERN, KERN_BOOTTIME };
124         struct timeval boottime;
125         time_t now;
126         size_t size = sizeof(boottime);
127
128         if ((sysctl(mib, 2, &boottime, &size, NULL, 0) != -1)
129                         && (boottime.tv_sec != 0)) {
130                 time(&now);
131                 info.uptime = now - boottime.tv_sec;
132         } else {
133                 fprintf(stderr, "Could not get uptime\n");
134                 info.uptime = 0;
135         }
136 }
137
138 int check_mount(char *s)
139 {
140         struct statfs *mntbuf;
141         int i, mntsize;
142
143         mntsize = getmntinfo(&mntbuf, MNT_NOWAIT);
144         for (i = mntsize - 1; i >= 0; i--) {
145                 if (strcmp(mntbuf[i].f_mntonname, s) == 0) {
146                         return 1;
147                 }
148         }
149
150         return 0;
151 }
152
153 void update_meminfo(void)
154 {
155         u_int total_pages, inactive_pages, free_pages;
156         unsigned long swap_avail, swap_free;
157
158         int pagesize = getpagesize();
159
160         if (GETSYSCTL("vm.stats.vm.v_page_count", total_pages)) {
161                 fprintf(stderr, "Cannot read sysctl \"vm.stats.vm.v_page_count\"\n");
162         }
163
164         if (GETSYSCTL("vm.stats.vm.v_free_count", free_pages)) {
165                 fprintf(stderr, "Cannot read sysctl \"vm.stats.vm.v_free_count\"\n");
166         }
167
168         if (GETSYSCTL("vm.stats.vm.v_inactive_count", inactive_pages)) {
169                 fprintf(stderr, "Cannot read sysctl \"vm.stats.vm.v_inactive_count\"\n");
170         }
171
172         info.memmax = total_pages * (pagesize >> 10);
173         info.mem = (total_pages - free_pages - inactive_pages) * (pagesize >> 10);
174         info.memeasyfree = info.memfree = info.memmax - info.mem;
175
176         if ((swapmode(&swap_avail, &swap_free)) >= 0) {
177                 info.swapmax = swap_avail;
178                 info.swap = (swap_avail - swap_free);
179                 info.swapfree = swap_free;
180         } else {
181                 info.swapmax = 0;
182                 info.swap = 0;
183                 info.swapfree = 0;
184         }
185 }
186
187 void update_net_stats(void)
188 {
189         struct net_stat *ns;
190         double delta;
191         long long r, t, last_recv, last_trans;
192         struct ifaddrs *ifap, *ifa;
193         struct if_data *ifd;
194
195         /* get delta */
196         delta = current_update_time - last_update_time;
197         if (delta <= 0.0001) {
198                 return;
199         }
200
201         if (getifaddrs(&ifap) < 0) {
202                 return;
203         }
204
205         for (ifa = ifap; ifa; ifa = ifa->ifa_next) {
206                 ns = get_net_stat((const char *) ifa->ifa_name, NULL, NULL);
207
208                 if (ifa->ifa_flags & IFF_UP) {
209                         struct ifaddrs *iftmp;
210
211                         ns->up = 1;
212                         last_recv = ns->recv;
213                         last_trans = ns->trans;
214
215                         if (ifa->ifa_addr->sa_family != AF_LINK) {
216                                 continue;
217                         }
218
219                         for (iftmp = ifa->ifa_next;
220                                         iftmp != NULL && strcmp(ifa->ifa_name, iftmp->ifa_name) == 0;
221                                         iftmp = iftmp->ifa_next) {
222                                 if (iftmp->ifa_addr->sa_family == AF_INET) {
223                                         memcpy(&(ns->addr), iftmp->ifa_addr,
224                                                 iftmp->ifa_addr->sa_len);
225                                 }
226                         }
227
228                         ifd = (struct if_data *) ifa->ifa_data;
229                         r = ifd->ifi_ibytes;
230                         t = ifd->ifi_obytes;
231
232                         if (r < ns->last_read_recv) {
233                                 ns->recv += ((long long) 4294967295U - ns->last_read_recv) + r;
234                         } else {
235                                 ns->recv += (r - ns->last_read_recv);
236                         }
237
238                         ns->last_read_recv = r;
239
240                         if (t < ns->last_read_trans) {
241                                 ns->trans += ((long long) 4294967295U -
242                                         ns->last_read_trans) + t;
243                         } else {
244                                 ns->trans += (t - ns->last_read_trans);
245                         }
246
247                         ns->last_read_trans = t;
248
249                         /* calculate speeds */
250                         ns->recv_speed = (ns->recv - last_recv) / delta;
251                         ns->trans_speed = (ns->trans - last_trans) / delta;
252                 } else {
253                         ns->up = 0;
254                 }
255         }
256
257         freeifaddrs(ifap);
258 }
259
260 void update_total_processes(void)
261 {
262         int n_processes;
263
264         kvm_getprocs(kd, KERN_PROC_ALL, 0, &n_processes);
265
266         info.procs = n_processes;
267 }
268
269 void update_running_processes(void)
270 {
271         struct kinfo_proc *p;
272         int n_processes;
273         int i, cnt = 0;
274
275         p = kvm_getprocs(kd, KERN_PROC_ALL, 0, &n_processes);
276         for (i = 0; i < n_processes; i++) {
277 #if (__FreeBSD__ < 5) && (__FreeBSD_kernel__ < 5)
278                 if (p[i].kp_proc.p_stat == SRUN) {
279 #else
280                 if (p[i].ki_stat == SRUN) {
281 #endif
282                         cnt++;
283                 }
284         }
285
286         info.run_procs = cnt;
287 }
288
289 struct cpu_load_struct {
290         unsigned long load[5];
291 };
292
293 struct cpu_load_struct fresh = { {0, 0, 0, 0, 0} };
294 long cpu_used, oldtotal, oldused;
295
296 void get_cpu_count(void)
297 {
298         /* int cpu_count = 0; */
299
300         /* XXX: FreeBSD doesn't allow to get per CPU load stats on SMP machines.
301          * It's possible to get a CPU count, but as we fulfill only
302          * info.cpu_usage[0], it's better to report there's only one CPU.
303          * It should fix some bugs (e.g. cpugraph) */
304 #if 0
305         if (GETSYSCTL("hw.ncpu", cpu_count) == 0) {
306                 info.cpu_count = cpu_count;
307         }
308 #endif
309         info.cpu_count = 1;
310
311         info.cpu_usage = malloc(info.cpu_count * sizeof(float));
312         if (info.cpu_usage == NULL) {
313                 CRIT_ERR(NULL, NULL, "malloc");
314         }
315 }
316
317 /* XXX: SMP support */
318 void update_cpu_usage(void)
319 {
320         long used, total;
321         long cp_time[CPUSTATES];
322         size_t cp_len = sizeof(cp_time);
323
324         /* add check for !info.cpu_usage since that mem is freed on a SIGUSR1 */
325         if ((cpu_setup == 0) || (!info.cpu_usage)) {
326                 get_cpu_count();
327                 cpu_setup = 1;
328         }
329
330         if (sysctlbyname("kern.cp_time", &cp_time, &cp_len, NULL, 0) < 0) {
331                 fprintf(stderr, "Cannot get kern.cp_time");
332         }
333
334         fresh.load[0] = cp_time[CP_USER];
335         fresh.load[1] = cp_time[CP_NICE];
336         fresh.load[2] = cp_time[CP_SYS];
337         fresh.load[3] = cp_time[CP_IDLE];
338         fresh.load[4] = cp_time[CP_IDLE];
339
340         used = fresh.load[0] + fresh.load[1] + fresh.load[2];
341         total = fresh.load[0] + fresh.load[1] + fresh.load[2] + fresh.load[3];
342
343         if ((total - oldtotal) != 0) {
344                 info.cpu_usage[0] = ((double) (used - oldused)) /
345                         (double) (total - oldtotal);
346         } else {
347                 info.cpu_usage[0] = 0;
348         }
349
350         oldused = used;
351         oldtotal = total;
352 }
353
354 void update_load_average(void)
355 {
356         double v[3];
357
358         getloadavg(v, 3);
359
360         info.loadavg[0] = (double) v[0];
361         info.loadavg[1] = (double) v[1];
362         info.loadavg[2] = (double) v[2];
363 }
364
365 double get_acpi_temperature(int fd)
366 {
367         int temp;
368         (void)fd;
369
370         if (GETSYSCTL("hw.acpi.thermal.tz0.temperature", temp)) {
371                 fprintf(stderr,
372                         "Cannot read sysctl \"hw.acpi.thermal.tz0.temperature\"\n");
373                 return 0.0;
374         }
375
376         return KELVTOC(temp);
377 }
378
379 static void get_battery_stats(int *battime, int *batcapacity, int *batstate, int *ac) {
380         if (battime && GETSYSCTL("hw.acpi.battery.time", *battime)) {
381                 fprintf(stderr, "Cannot read sysctl \"hw.acpi.battery.time\"\n");
382         }
383         if (batcapacity && GETSYSCTL("hw.acpi.battery.life", *batcapacity)) {
384                 fprintf(stderr, "Cannot read sysctl \"hw.acpi.battery.life\"\n");
385         }
386         if (batstate && GETSYSCTL("hw.acpi.battery.state", *batstate)) {
387                 fprintf(stderr, "Cannot read sysctl \"hw.acpi.battery.state\"\n");
388         }
389         if (ac && GETSYSCTL("hw.acpi.acline", *ac)) {
390                 fprintf(stderr, "Cannot read sysctl \"hw.acpi.acline\"\n");
391         }
392 }
393
394 void get_battery_stuff(char *buf, unsigned int n, const char *bat, int item)
395 {
396         int battime, batcapacity, batstate, ac;
397         (void)bat;
398
399         get_battery_stats(&battime, &batcapacity, &batstate, &ac);
400
401         if (batstate != 1 && batstate != 2 && batstate != 0 && batstate != 7)
402                 fprintf(stderr, "Unknown battery state %d!\n", batstate);
403         else if (batstate != 1 && ac == 0)
404                 fprintf(stderr, "Battery charging while not on AC!\n");
405         else if (batstate == 1 && ac == 1)
406                 fprintf(stderr, "Battery discharing while on AC!\n");
407
408         switch (item) {
409                 case BATTERY_TIME:
410                         if (batstate == 1 && battime != -1)
411                                 snprintf(buf, n, "%d:%2.2d", battime / 60, battime % 60);
412                         break;
413                 case BATTERY_STATUS:
414                         if (batstate == 1) // Discharging
415                                 snprintf(buf, n, "remaining %d%%", batcapacity);
416                         else
417                                 snprintf(buf, n, batstate == 2 ? "charging (%d%%)" :
418                                                 (batstate == 7 ? "absent/on AC" : "charged (%d%%)"),
419                                                 batcapacity);
420                         break;
421                 default:
422                         fprintf(stderr, "Unknown requested battery stat %d\n", item);
423         }
424 }
425
426 static int check_bat(const char *bat)
427 {
428         int batnum, numbatts;
429         char *endptr;
430         if (GETSYSCTL("hw.acpi.battery.units", numbatts)) {
431                 fprintf(stderr, "Cannot read sysctl \"hw.acpi.battery.units\"\n");
432                 return -1;
433         }
434         if (numbatts <= 0) {
435                 fprintf(stderr, "No battery unit detected\n");
436                 return -1;
437         }
438         if (!bat || (batnum = strtol(bat, &endptr, 10)) < 0 ||
439                         bat == endptr || batnum > numbatts) {
440                 fprintf(stderr, "Wrong battery unit %s requested\n", bat ? bat : "");
441                 return -1;
442         }
443         return batnum;
444 }
445
446 int get_battery_perct(const char *bat)
447 {
448         union acpi_battery_ioctl_arg battio;
449         int batnum, acpifd;
450         int designcap, lastfulcap, batperct;
451
452         if ((battio.unit = batnum = check_bat(bat)) < 0)
453                 return 0;
454         if ((acpifd = open("/dev/acpi", O_RDONLY)) < 0) {
455                 fprintf(stderr, "Can't open ACPI device\n");
456                 return 0;
457         }
458         if (ioctl(acpifd, ACPIIO_BATT_GET_BIF, &battio) == -1) {
459                 fprintf(stderr, "Unable to get info for battery unit %d\n", batnum);
460                 return 0;
461         }
462         close(acpifd);
463         designcap = battio.bif.dcap;
464         lastfulcap = battio.bif.lfcap;
465         batperct = (designcap > 0 && lastfulcap > 0) ?
466                 (int) (((float) lastfulcap / designcap) * 100) : 0;
467         return batperct > 100 ? 100 : batperct;
468 }
469
470 int get_battery_perct_bar(const char *bar)
471 {
472         int batperct = get_battery_perct(bar);
473         return (int)(batperct * 2.56 - 1);
474 }
475
476 int open_acpi_temperature(const char *name)
477 {
478         (void)name;
479         /* Not applicable for FreeBSD. */
480         return 0;
481 }
482
483 void get_acpi_ac_adapter(char *p_client_buffer, size_t client_buffer_size, const char *adapter)
484 {
485         int state;
486
487         (void) adapter; // only linux uses this
488
489         if (!p_client_buffer || client_buffer_size <= 0) {
490                 return;
491         }
492
493         if (GETSYSCTL("hw.acpi.acline", state)) {
494                 fprintf(stderr, "Cannot read sysctl \"hw.acpi.acline\"\n");
495                 return;
496         }
497
498         if (state) {
499                 strncpy(p_client_buffer, "Running on AC Power", client_buffer_size);
500         } else {
501                 strncpy(p_client_buffer, "Running on battery", client_buffer_size);
502         }
503 }
504
505 void get_acpi_fan(char *p_client_buffer, size_t client_buffer_size)
506 {
507         /* not implemented */
508         if (p_client_buffer && client_buffer_size > 0) {
509                 memset(p_client_buffer, 0, client_buffer_size);
510         }
511 }
512
513 /* void */
514 char get_freq(char *p_client_buffer, size_t client_buffer_size, const char *p_format,
515                 int divisor, unsigned int cpu)
516 {
517         int freq;
518         char *freq_sysctl;
519
520         freq_sysctl = (char *) calloc(16, sizeof(char));
521         if (freq_sysctl == NULL) {
522                 exit(-1);
523         }
524
525         snprintf(freq_sysctl, 16, "dev.cpu.%d.freq", (cpu - 1));
526
527         if (!p_client_buffer || client_buffer_size <= 0 || !p_format
528                         || divisor <= 0) {
529                 return 0;
530         }
531
532         if (GETSYSCTL(freq_sysctl, freq) == 0) {
533                 snprintf(p_client_buffer, client_buffer_size, p_format,
534                         (float) freq / divisor);
535         } else {
536                 snprintf(p_client_buffer, client_buffer_size, p_format, 0.0f);
537         }
538
539         free(freq_sysctl);
540         return 1;
541 }
542
543 void update_top(void)
544 {
545         proc_find_top(info.cpu, info.memu);
546 }
547
548 #if 0
549 void update_wifi_stats(void)
550 {
551         struct ifreq ifr;               /* interface stats */
552         struct wi_req wireq;
553         struct net_stat *ns;
554         struct ifaddrs *ifap, *ifa;
555         struct ifmediareq ifmr;
556         int s;
557
558         /* Get iface table */
559         if (getifaddrs(&ifap) < 0) {
560                 return;
561         }
562
563         for (ifa = ifap; ifa; ifa = ifa->ifa_next) {
564                 ns = get_net_stat((const char *) ifa->ifa_name, NULL, NULL);
565
566                 s = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
567
568                 /* Get media type */
569                 bzero(&ifmr, sizeof(ifmr));
570                 strlcpy(ifmr.ifm_name, ifa->ifa_name, IFNAMSIZ);
571                 if (ioctl(s, SIOCGIFMEDIA, (caddr_t) &ifmr) < 0) {
572                         close(s);
573                         return;
574                 }
575
576                 /* We can monitor only wireless interfaces
577                  * which are not in hostap mode */
578                 if ((ifmr.ifm_active & IFM_IEEE80211)
579                                 && !(ifmr.ifm_active & IFM_IEEE80211_HOSTAP)) {
580                         /* Get wi status */
581                         bzero(&ifr, sizeof(ifr));
582                         strlcpy(ifr.ifr_name, ifa->ifa_name, IFNAMSIZ);
583                         wireq.wi_type = WI_RID_COMMS_QUALITY;
584                         wireq.wi_len = WI_MAX_DATALEN;
585                         ifr.ifr_data = (void *) &wireq;
586
587                         if (ioctl(s, SIOCGWAVELAN, (caddr_t) &ifr) < 0) {
588                                 perror("ioctl (getting wi status)");
589                                 exit(1);
590                         }
591
592                         /* wi_val[0] = quality
593                          * wi_val[1] = signal
594                          * wi_val[2] = noise */
595                         ns->linkstatus = (int) wireq.wi_val[1];
596                 }
597 cleanup:
598                 close(s);
599         }
600 }
601 #endif
602
603 void update_diskio(void)
604 {
605         int devs_count, num_selected, num_selections, dn;
606         struct device_selection *dev_select = NULL;
607         long select_generation;
608         static struct statinfo statinfo_cur;
609         char device_name[text_buffer_size];
610         struct diskio_stat *cur;
611         unsigned int reads, writes;
612         unsigned int total_reads = 0, total_writes = 0;
613
614
615         memset(&statinfo_cur, 0, sizeof(statinfo_cur));
616         statinfo_cur.dinfo = (struct devinfo *)calloc(1, sizeof(struct devinfo));
617         stats.current = stats.current_read = stats.current_write = 0;
618
619         if (devstat_getdevs(NULL, &statinfo_cur) < 0) {
620                 free(statinfo_cur.dinfo);
621                 return;
622         }
623
624         devs_count = statinfo_cur.dinfo->numdevs;
625         if (devstat_selectdevs(&dev_select, &num_selected, &num_selections,
626                         &select_generation, statinfo_cur.dinfo->generation,
627                         statinfo_cur.dinfo->devices, devs_count, NULL, 0, NULL, 0,
628                         DS_SELECT_ONLY, MAXSHOWDEVS, 1) >= 0) {
629                 for (dn = 0; dn < devs_count; dn++) {
630                         int di;
631                         struct devstat *dev;
632
633                         di = dev_select[dn].position;
634                         dev = &statinfo_cur.dinfo->devices[di];
635                         snprintf(device_name, text_buffer_size, "%s%d",
636                                         dev_select[dn].device_name, dev_select[dn].unit_number);
637
638                         total_reads += (reads = dev->bytes[DEVSTAT_READ] / 512);
639                         total_writes += (writes = dev->bytes[DEVSTAT_WRITE] / 512);
640                         for (cur = stats.next; cur; cur = cur->next) {
641                                 if (cur->dev && !strcmp(device_name, cur->dev)) {
642                                         update_diskio_values(cur, reads, writes);
643                                         break;
644                                 }
645                         }
646                 }
647                 update_diskio_values(&stats, total_reads, total_writes);
648
649                 free(dev_select);
650         }
651
652         free(statinfo_cur.dinfo);
653 }
654
655 /* While topless is obviously better, top is also not bad. */
656
657 int comparecpu(const void *a, const void *b)
658 {
659         if (((const struct process *)a)->amount > ((const struct process *)b)->amount) {
660                 return -1;
661         } else if (((const struct process *)a)->amount < ((const struct process *)b)->amount) {
662                 return 1;
663         } else {
664                 return 0;
665         }
666 }
667
668 int comparemem(const void *a, const void *b)
669 {
670         if (((const struct process *)a)->rss > ((const struct process *)b)->rss) {
671                 return -1;
672         } else if (((const struct process *)a)->rss < ((const struct process *)b)->rss) {
673                 return 1;
674         } else {
675                 return 0;
676         }
677 }
678
679 __attribute__((gnu_inline)) inline void
680 proc_find_top(struct process **cpu, struct process **mem)
681 {
682         struct kinfo_proc *p;
683         int n_processes;
684         int i, j = 0;
685         struct process *processes;
686
687         int total_pages;
688
689         /* we get total pages count again to be sure it is up to date */
690         if (GETSYSCTL("vm.stats.vm.v_page_count", total_pages) != 0) {
691                 CRIT_ERR(NULL, NULL, "Cannot read sysctl \"vm.stats.vm.v_page_count\"");
692         }
693
694         p = kvm_getprocs(kd, KERN_PROC_PROC, 0, &n_processes);
695         processes = malloc(n_processes * sizeof(struct process));
696
697         for (i = 0; i < n_processes; i++) {
698                 if (!((p[i].ki_flag & P_SYSTEM)) && p[i].ki_comm != NULL) {
699                         processes[j].pid = p[i].ki_pid;
700                         processes[j].name = strndup(p[i].ki_comm, text_buffer_size);
701                         processes[j].amount = 100.0 * p[i].ki_pctcpu / FSCALE;
702                         processes[j].vsize = p[i].ki_size;
703                         processes[j].rss = (p[i].ki_rssize * getpagesize());
704                         j++;
705                 }
706         }
707
708         qsort(processes, j - 1, sizeof(struct process), comparemem);
709         for (i = 0; i < 10 && i < n_processes; i++) {
710                 struct process *tmp, *ttmp;
711
712                 tmp = malloc(sizeof(struct process));
713                 tmp->pid = processes[i].pid;
714                 tmp->amount = processes[i].amount;
715                 tmp->name = strndup(processes[i].name, text_buffer_size);
716                 tmp->rss = processes[i].rss;
717                 tmp->vsize = processes[i].vsize;
718
719                 ttmp = mem[i];
720                 mem[i] = tmp;
721                 if (ttmp != NULL) {
722                         free(ttmp->name);
723                         free(ttmp);
724                 }
725         }
726
727         qsort(processes, j - 1, sizeof(struct process), comparecpu);
728         for (i = 0; i < 10 && i < n_processes; i++) {
729                 struct process *tmp, *ttmp;
730
731                 tmp = malloc(sizeof(struct process));
732                 tmp->pid = processes[i].pid;
733                 tmp->amount = processes[i].amount;
734                 tmp->name = strndup(processes[i].name, text_buffer_size);
735                 tmp->rss = processes[i].rss;
736                 tmp->vsize = processes[i].vsize;
737
738                 ttmp = cpu[i];
739                 cpu[i] = tmp;
740                 if (ttmp != NULL) {
741                         free(ttmp->name);
742                         free(ttmp);
743                 }
744         }
745
746 #if defined(FREEBSD_DEBUG)
747         printf("=====\nmem\n");
748         for (i = 0; i < 10; i++) {
749                 printf("%d: %s(%d) %ld %ld\n", i, mem[i]->name,
750                                 mem[i]->pid, mem[i]->vsize, mem[i]->rss);
751         }
752 #endif
753
754         for (i = 0; i < j; i++) {
755                 free(processes[i].name);
756         }
757         free(processes);
758 }
759
760 #if     defined(i386) || defined(__i386__)
761 #define APMDEV          "/dev/apm"
762 #define APM_UNKNOWN     255
763
764 int apm_getinfo(int fd, apm_info_t aip)
765 {
766         if (ioctl(fd, APMIO_GETINFO, aip) == -1) {
767                 return -1;
768         }
769
770         return 0;
771 }
772
773 char *get_apm_adapter(void)
774 {
775         int fd;
776         struct apm_info a_info;
777         char *out;
778
779         out = (char *) calloc(16, sizeof(char));
780
781         fd = open(APMDEV, O_RDONLY);
782         if (fd < 0) {
783                 strncpy(out, "ERR", 16);
784                 return out;
785         }
786
787         if (apm_getinfo(fd, &a_info) != 0) {
788                 close(fd);
789                 strncpy(out, "ERR", 16);
790                 return out;
791         }
792         close(fd);
793
794         switch (a_info.ai_acline) {
795                 case 0:
796                         strncpy(out, "off-line", 16);
797                         return out;
798                         break;
799                 case 1:
800                         if (a_info.ai_batt_stat == 3) {
801                                 strncpy(out, "charging", 16);
802                                 return out;
803                         } else {
804                                 strncpy(out, "on-line", 16);
805                                 return out;
806                         }
807                         break;
808                 default:
809                         strncpy(out, "unknown", 16);
810                         return out;
811                         break;
812         }
813 }
814
815 char *get_apm_battery_life(void)
816 {
817         int fd;
818         u_int batt_life;
819         struct apm_info a_info;
820         char *out;
821
822         out = (char *) calloc(16, sizeof(char));
823
824         fd = open(APMDEV, O_RDONLY);
825         if (fd < 0) {
826                 strncpy(out, "ERR", 16);
827                 return out;
828         }
829
830         if (apm_getinfo(fd, &a_info) != 0) {
831                 close(fd);
832                 strncpy(out, "ERR", 16);
833                 return out;
834         }
835         close(fd);
836
837         batt_life = a_info.ai_batt_life;
838         if (batt_life == APM_UNKNOWN) {
839                 strncpy(out, "unknown", 16);
840         } else if (batt_life <= 100) {
841                 snprintf(out, 16, "%d%%", batt_life);
842                 return out;
843         } else {
844                 strncpy(out, "ERR", 16);
845         }
846
847         return out;
848 }
849
850 char *get_apm_battery_time(void)
851 {
852         int fd;
853         int batt_time;
854         int h, m, s;
855         struct apm_info a_info;
856         char *out;
857
858         out = (char *) calloc(16, sizeof(char));
859
860         fd = open(APMDEV, O_RDONLY);
861         if (fd < 0) {
862                 strncpy(out, "ERR", 16);
863                 return out;
864         }
865
866         if (apm_getinfo(fd, &a_info) != 0) {
867                 close(fd);
868                 strncpy(out, "ERR", 16);
869                 return out;
870         }
871         close(fd);
872
873         batt_time = a_info.ai_batt_time;
874
875         if (batt_time == -1) {
876                 strncpy(out, "unknown", 16);
877         } else {
878                 h = batt_time;
879                 s = h % 60;
880                 h /= 60;
881                 m = h % 60;
882                 h /= 60;
883                 snprintf(out, 16, "%2d:%02d:%02d", h, m, s);
884         }
885
886         return out;
887 }
888
889 #endif
890
891 void get_battery_short_status(char *buffer, unsigned int n, const char *bat)
892 {
893         get_battery_stuff(buffer, n, bat, BATTERY_STATUS);
894         if (0 == strncmp("charging", buffer, 8)) {
895                 buffer[0] = 'C';
896                 memmove(buffer + 1, buffer + 8, n - 8);
897         } else if (0 == strncmp("discharging", buffer, 11)) {
898                 buffer[0] = 'D';
899                 memmove(buffer + 1, buffer + 11, n - 11);
900         } else if (0 == strncmp("absent/on AC", buffer, 12)) {
901                 buffer[0] = 'A';
902                 memmove(buffer + 1, buffer + 12, n - 12);
903         }
904 }
905
906 int get_entropy_avail(unsigned int *val)
907 {
908         /* Not applicable for FreeBSD as it uses the yarrow prng. */
909         (void)val;
910         return 1;
911 }
912
913 int get_entropy_poolsize(unsigned int *val)
914 {
915         /* Not applicable for FreeBSD as it uses the yarrow prng. */
916         (void)val;
917         return 1;
918 }
919
920 /* empty stub so conky links */
921 void free_all_processes(void)
922 {
923 }