drop leftover freq_dynamic code in freebsd.c and openbsd.c
[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-2009 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)
484 {
485         int state;
486
487         if (!p_client_buffer || client_buffer_size <= 0) {
488                 return;
489         }
490
491         if (GETSYSCTL("hw.acpi.acline", state)) {
492                 fprintf(stderr, "Cannot read sysctl \"hw.acpi.acline\"\n");
493                 return;
494         }
495
496         if (state) {
497                 strncpy(p_client_buffer, "Running on AC Power", client_buffer_size);
498         } else {
499                 strncpy(p_client_buffer, "Running on battery", client_buffer_size);
500         }
501 }
502
503 void get_acpi_fan(char *p_client_buffer, size_t client_buffer_size)
504 {
505         /* not implemented */
506         if (p_client_buffer && client_buffer_size > 0) {
507                 memset(p_client_buffer, 0, client_buffer_size);
508         }
509 }
510
511 /* void */
512 char get_freq(char *p_client_buffer, size_t client_buffer_size, const char *p_format,
513                 int divisor, unsigned int cpu)
514 {
515         int freq;
516         char *freq_sysctl;
517
518         freq_sysctl = (char *) calloc(16, sizeof(char));
519         if (freq_sysctl == NULL) {
520                 exit(-1);
521         }
522
523         snprintf(freq_sysctl, 16, "dev.cpu.%d.freq", (cpu - 1));
524
525         if (!p_client_buffer || client_buffer_size <= 0 || !p_format
526                         || divisor <= 0) {
527                 return 0;
528         }
529
530         if (GETSYSCTL(freq_sysctl, freq) == 0) {
531                 snprintf(p_client_buffer, client_buffer_size, p_format,
532                         (float) freq / divisor);
533         } else {
534                 snprintf(p_client_buffer, client_buffer_size, p_format, 0.0f);
535         }
536
537         free(freq_sysctl);
538         return 1;
539 }
540
541 void update_top(void)
542 {
543         proc_find_top(info.cpu, info.memu);
544 }
545
546 #if 0
547 void update_wifi_stats(void)
548 {
549         struct ifreq ifr;               /* interface stats */
550         struct wi_req wireq;
551         struct net_stat *ns;
552         struct ifaddrs *ifap, *ifa;
553         struct ifmediareq ifmr;
554         int s;
555
556         /* Get iface table */
557         if (getifaddrs(&ifap) < 0) {
558                 return;
559         }
560
561         for (ifa = ifap; ifa; ifa = ifa->ifa_next) {
562                 ns = get_net_stat((const char *) ifa->ifa_name, NULL, NULL);
563
564                 s = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
565
566                 /* Get media type */
567                 bzero(&ifmr, sizeof(ifmr));
568                 strlcpy(ifmr.ifm_name, ifa->ifa_name, IFNAMSIZ);
569                 if (ioctl(s, SIOCGIFMEDIA, (caddr_t) &ifmr) < 0) {
570                         close(s);
571                         return;
572                 }
573
574                 /* We can monitor only wireless interfaces
575                  * which are not in hostap mode */
576                 if ((ifmr.ifm_active & IFM_IEEE80211)
577                                 && !(ifmr.ifm_active & IFM_IEEE80211_HOSTAP)) {
578                         /* Get wi status */
579                         bzero(&ifr, sizeof(ifr));
580                         strlcpy(ifr.ifr_name, ifa->ifa_name, IFNAMSIZ);
581                         wireq.wi_type = WI_RID_COMMS_QUALITY;
582                         wireq.wi_len = WI_MAX_DATALEN;
583                         ifr.ifr_data = (void *) &wireq;
584
585                         if (ioctl(s, SIOCGWAVELAN, (caddr_t) &ifr) < 0) {
586                                 perror("ioctl (getting wi status)");
587                                 exit(1);
588                         }
589
590                         /* wi_val[0] = quality
591                          * wi_val[1] = signal
592                          * wi_val[2] = noise */
593                         ns->linkstatus = (int) wireq.wi_val[1];
594                 }
595 cleanup:
596                 close(s);
597         }
598 }
599 #endif
600
601 void update_diskio(void)
602 {
603         int devs_count, num_selected, num_selections, dn;
604         struct device_selection *dev_select = NULL;
605         long select_generation;
606         static struct statinfo statinfo_cur;
607         char device_name[text_buffer_size];
608         struct diskio_stat *cur;
609         unsigned int reads, writes;
610         unsigned int total_reads = 0, total_writes = 0;
611
612
613         memset(&statinfo_cur, 0, sizeof(statinfo_cur));
614         statinfo_cur.dinfo = (struct devinfo *)calloc(1, sizeof(struct devinfo));
615         stats.current = stats.current_read = stats.current_write = 0;
616
617         if (devstat_getdevs(NULL, &statinfo_cur) < 0) {
618                 free(statinfo_cur.dinfo);
619                 return;
620         }
621
622         devs_count = statinfo_cur.dinfo->numdevs;
623         if (devstat_selectdevs(&dev_select, &num_selected, &num_selections,
624                         &select_generation, statinfo_cur.dinfo->generation,
625                         statinfo_cur.dinfo->devices, devs_count, NULL, 0, NULL, 0,
626                         DS_SELECT_ONLY, MAXSHOWDEVS, 1) >= 0) {
627                 for (dn = 0; dn < devs_count; dn++) {
628                         int di;
629                         struct devstat *dev;
630
631                         di = dev_select[dn].position;
632                         dev = &statinfo_cur.dinfo->devices[di];
633                         snprintf(device_name, text_buffer_size, "%s%d",
634                                         dev_select[dn].device_name, dev_select[dn].unit_number);
635
636                         total_reads += (reads = dev->bytes[DEVSTAT_READ] / 512);
637                         total_writes += (writes = dev->bytes[DEVSTAT_WRITE] / 512);
638                         for (cur = stats.next; cur; cur = cur->next) {
639                                 if (cur->dev && !strcmp(device_name, cur->dev)) {
640                                         update_diskio_values(cur, reads, writes);
641                                         break;
642                                 }
643                         }
644                 }
645                 update_diskio_values(&stats, total_reads, total_writes);
646
647                 free(dev_select);
648         }
649
650         free(statinfo_cur.dinfo);
651 }
652
653 /* While topless is obviously better, top is also not bad. */
654
655 int comparecpu(const void *a, const void *b)
656 {
657         if (((const struct process *)a)->amount > ((const struct process *)b)->amount) {
658                 return -1;
659         } else if (((const struct process *)a)->amount < ((const struct process *)b)->amount) {
660                 return 1;
661         } else {
662                 return 0;
663         }
664 }
665
666 int comparemem(const void *a, const void *b)
667 {
668         if (((const struct process *)a)->rss > ((const struct process *)b)->rss) {
669                 return -1;
670         } else if (((const struct process *)a)->rss < ((const struct process *)b)->rss) {
671                 return 1;
672         } else {
673                 return 0;
674         }
675 }
676
677 __attribute__((gnu_inline)) inline void
678 proc_find_top(struct process **cpu, struct process **mem)
679 {
680         struct kinfo_proc *p;
681         int n_processes;
682         int i, j = 0;
683         struct process *processes;
684
685         int total_pages;
686
687         /* we get total pages count again to be sure it is up to date */
688         if (GETSYSCTL("vm.stats.vm.v_page_count", total_pages) != 0) {
689                 CRIT_ERR(NULL, NULL, "Cannot read sysctl \"vm.stats.vm.v_page_count\"");
690         }
691
692         p = kvm_getprocs(kd, KERN_PROC_PROC, 0, &n_processes);
693         processes = malloc(n_processes * sizeof(struct process));
694
695         for (i = 0; i < n_processes; i++) {
696                 if (!((p[i].ki_flag & P_SYSTEM)) && p[i].ki_comm != NULL) {
697                         processes[j].pid = p[i].ki_pid;
698                         processes[j].name = strndup(p[i].ki_comm, text_buffer_size);
699                         processes[j].amount = 100.0 * p[i].ki_pctcpu / FSCALE;
700                         processes[j].vsize = p[i].ki_size;
701                         processes[j].rss = (p[i].ki_rssize * getpagesize());
702                         j++;
703                 }
704         }
705
706         qsort(processes, j - 1, sizeof(struct process), comparemem);
707         for (i = 0; i < 10 && i < n_processes; i++) {
708                 struct process *tmp, *ttmp;
709
710                 tmp = malloc(sizeof(struct process));
711                 tmp->pid = processes[i].pid;
712                 tmp->amount = processes[i].amount;
713                 tmp->name = strndup(processes[i].name, text_buffer_size);
714                 tmp->rss = processes[i].rss;
715                 tmp->vsize = processes[i].vsize;
716
717                 ttmp = mem[i];
718                 mem[i] = tmp;
719                 if (ttmp != NULL) {
720                         free(ttmp->name);
721                         free(ttmp);
722                 }
723         }
724
725         qsort(processes, j - 1, sizeof(struct process), comparecpu);
726         for (i = 0; i < 10 && i < n_processes; i++) {
727                 struct process *tmp, *ttmp;
728
729                 tmp = malloc(sizeof(struct process));
730                 tmp->pid = processes[i].pid;
731                 tmp->amount = processes[i].amount;
732                 tmp->name = strndup(processes[i].name, text_buffer_size);
733                 tmp->rss = processes[i].rss;
734                 tmp->vsize = processes[i].vsize;
735
736                 ttmp = cpu[i];
737                 cpu[i] = tmp;
738                 if (ttmp != NULL) {
739                         free(ttmp->name);
740                         free(ttmp);
741                 }
742         }
743
744 #if defined(FREEBSD_DEBUG)
745         printf("=====\nmem\n");
746         for (i = 0; i < 10; i++) {
747                 printf("%d: %s(%d) %ld %ld\n", i, mem[i]->name,
748                                 mem[i]->pid, mem[i]->vsize, mem[i]->rss);
749         }
750 #endif
751
752         for (i = 0; i < j; i++) {
753                 free(processes[i].name);
754         }
755         free(processes);
756 }
757
758 #if     defined(i386) || defined(__i386__)
759 #define APMDEV          "/dev/apm"
760 #define APM_UNKNOWN     255
761
762 int apm_getinfo(int fd, apm_info_t aip)
763 {
764         if (ioctl(fd, APMIO_GETINFO, aip) == -1) {
765                 return -1;
766         }
767
768         return 0;
769 }
770
771 char *get_apm_adapter(void)
772 {
773         int fd;
774         struct apm_info a_info;
775         char *out;
776
777         out = (char *) calloc(16, sizeof(char));
778
779         fd = open(APMDEV, O_RDONLY);
780         if (fd < 0) {
781                 strncpy(out, "ERR", 16);
782                 return out;
783         }
784
785         if (apm_getinfo(fd, &a_info) != 0) {
786                 close(fd);
787                 strncpy(out, "ERR", 16);
788                 return out;
789         }
790         close(fd);
791
792         switch (a_info.ai_acline) {
793                 case 0:
794                         strncpy(out, "off-line", 16);
795                         return out;
796                         break;
797                 case 1:
798                         if (a_info.ai_batt_stat == 3) {
799                                 strncpy(out, "charging", 16);
800                                 return out;
801                         } else {
802                                 strncpy(out, "on-line", 16);
803                                 return out;
804                         }
805                         break;
806                 default:
807                         strncpy(out, "unknown", 16);
808                         return out;
809                         break;
810         }
811 }
812
813 char *get_apm_battery_life(void)
814 {
815         int fd;
816         u_int batt_life;
817         struct apm_info a_info;
818         char *out;
819
820         out = (char *) calloc(16, sizeof(char));
821
822         fd = open(APMDEV, O_RDONLY);
823         if (fd < 0) {
824                 strncpy(out, "ERR", 16);
825                 return out;
826         }
827
828         if (apm_getinfo(fd, &a_info) != 0) {
829                 close(fd);
830                 strncpy(out, "ERR", 16);
831                 return out;
832         }
833         close(fd);
834
835         batt_life = a_info.ai_batt_life;
836         if (batt_life == APM_UNKNOWN) {
837                 strncpy(out, "unknown", 16);
838         } else if (batt_life <= 100) {
839                 snprintf(out, 16, "%d%%", batt_life);
840                 return out;
841         } else {
842                 strncpy(out, "ERR", 16);
843         }
844
845         return out;
846 }
847
848 char *get_apm_battery_time(void)
849 {
850         int fd;
851         int batt_time;
852         int h, m, s;
853         struct apm_info a_info;
854         char *out;
855
856         out = (char *) calloc(16, sizeof(char));
857
858         fd = open(APMDEV, O_RDONLY);
859         if (fd < 0) {
860                 strncpy(out, "ERR", 16);
861                 return out;
862         }
863
864         if (apm_getinfo(fd, &a_info) != 0) {
865                 close(fd);
866                 strncpy(out, "ERR", 16);
867                 return out;
868         }
869         close(fd);
870
871         batt_time = a_info.ai_batt_time;
872
873         if (batt_time == -1) {
874                 strncpy(out, "unknown", 16);
875         } else {
876                 h = batt_time;
877                 s = h % 60;
878                 h /= 60;
879                 m = h % 60;
880                 h /= 60;
881                 snprintf(out, 16, "%2d:%02d:%02d", h, m, s);
882         }
883
884         return out;
885 }
886
887 #endif
888
889 void get_battery_short_status(char *buffer, unsigned int n, const char *bat)
890 {
891         get_battery_stuff(buffer, n, bat, BATTERY_STATUS);
892         if (0 == strncmp("charging", buffer, 8)) {
893                 buffer[0] = 'C';
894                 memmove(buffer + 1, buffer + 8, n - 8);
895         } else if (0 == strncmp("discharging", buffer, 11)) {
896                 buffer[0] = 'D';
897                 memmove(buffer + 1, buffer + 11, n - 11);
898         } else if (0 == strncmp("absent/on AC", buffer, 12)) {
899                 buffer[0] = 'A';
900                 memmove(buffer + 1, buffer + 12, n - 12);
901         }
902 }
903
904 int get_entropy_avail(unsigned int *val)
905 {
906         /* Not applicable for FreeBSD as it uses the yarrow prng. */
907         (void)val;
908         return 1;
909 }
910
911 int get_entropy_poolsize(unsigned int *val)
912 {
913         /* Not applicable for FreeBSD as it uses the yarrow prng. */
914         (void)val;
915         return 1;
916 }
917
918 /* empty stub so conky links */
919 void free_all_processes(void)
920 {
921 }