slstatus/slstatus.c

936 lines
18 KiB
C
Raw Normal View History

/* See LICENSE file for copyright and license details. */
2016-03-04 17:07:42 +00:00
#include <dirent.h>
#include <err.h>
#include <fcntl.h>
2016-06-08 07:42:32 +00:00
#include <ifaddrs.h>
#include <limits.h>
2016-08-15 12:43:29 +00:00
#include <linux/wireless.h>
#include <locale.h>
2016-06-08 07:42:32 +00:00
#include <netdb.h>
2016-06-13 16:49:50 +00:00
#include <pwd.h>
#include <signal.h>
2016-03-04 17:07:42 +00:00
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
2016-08-15 12:43:29 +00:00
#include <sys/ioctl.h>
#include <sys/stat.h>
#include <sys/statvfs.h>
2016-06-08 07:42:32 +00:00
#include <sys/socket.h>
#include <sys/soundcard.h>
2016-08-18 11:43:18 +00:00
#include <sys/sysinfo.h>
2016-08-15 12:43:29 +00:00
#include <sys/types.h>
2016-11-03 16:49:09 +00:00
#include <sys/utsname.h>
2016-03-04 17:07:42 +00:00
#include <time.h>
#include <unistd.h>
#include <X11/Xlib.h>
2017-01-07 21:33:28 +00:00
#include "arg.h"
struct arg {
const char *(*func)();
2016-09-17 15:06:06 +00:00
const char *fmt;
const char *args;
};
static const char *bprintf(const char *fmt, ...);
static const char *battery_perc(const char *bat);
static const char *battery_power(const char *bat);
static const char *battery_state(const char *bat);
static const char *cpu_freq(void);
static const char *cpu_perc(void);
static const char *datetime(const char *fmt);
static const char *disk_free(const char *mnt);
static const char *disk_perc(const char *mnt);
static const char *disk_total(const char *mnt);
static const char *disk_used(const char *mnt);
static const char *entropy(void);
static const char *gid(void);
static const char *hostname(void);
static const char *ip(const char *iface);
static const char *kernel_release(void);
static const char *keyboard_indicators(void);
static const char *load_avg(void);
static const char *num_files(const char *dir);
static const char *ram_free(void);
static const char *ram_perc(void);
static const char *ram_used(void);
static const char *ram_total(void);
static const char *run_command(const char *cmd);
static const char *swap_free(void);
static const char *swap_perc(void);
static const char *swap_used(void);
static const char *swap_total(void);
static const char *temp(const char *file);
static const char *uid(void);
static const char *uptime(void);
static const char *username(void);
static const char *vol_perc(const char *card);
static const char *wifi_perc(const char *iface);
static const char *wifi_essid(const char *iface);
static void sighandler(const int signo);
static void usage(const int eval);
char *argv0;
2016-12-27 16:12:39 +00:00
static unsigned short int delay = 0;
2016-09-17 14:51:21 +00:00
static unsigned short int done;
static unsigned short int dflag, oflag, nflag;
static Display *dpy;
#include "config.h"
static char buf[MAXLEN];
static const char *
bprintf(const char *fmt, ...)
2016-03-09 15:30:52 +00:00
{
2016-08-28 13:30:12 +00:00
va_list ap;
size_t len;
2016-08-28 13:30:12 +00:00
va_start(ap, fmt);
len = vsnprintf(buf, sizeof(buf) - 1, fmt, ap);
va_end(ap);
if (len >= sizeof(buf))
buf[sizeof(buf)-1] = '\0';
2016-03-09 15:30:52 +00:00
return buf;
2016-03-09 15:30:52 +00:00
}
static const char *
2016-09-17 14:51:21 +00:00
battery_perc(const char *bat)
2016-03-07 09:00:02 +00:00
{
2017-06-12 22:06:56 +00:00
int n, perc;
2017-01-07 21:01:49 +00:00
char path[PATH_MAX];
FILE *fp;
2017-01-07 21:01:49 +00:00
snprintf(path, sizeof(path), "%s%s%s", "/sys/class/power_supply/", bat, "/capacity");
fp = fopen(path, "r");
if (fp == NULL) {
2017-01-07 21:01:49 +00:00
warn("Failed to open file %s", path);
return UNKNOWN_STR;
}
2017-06-12 22:06:56 +00:00
n = fscanf(fp, "%i", &perc);
fclose(fp);
2017-06-12 22:06:56 +00:00
if (n != 1)
return UNKNOWN_STR;
return bprintf("%d", perc);
2016-03-07 09:00:02 +00:00
}
static const char *
2017-06-12 21:55:27 +00:00
battery_power(const char *bat)
{
char path[PATH_MAX];
FILE *fp;
2017-06-12 22:06:56 +00:00
int n, watts;
2017-06-12 21:55:27 +00:00
snprintf(path, sizeof(path), "%s%s%s", "/sys/class/power_supply/", bat, "/power_now");
fp = fopen(path, "r");
if (fp == NULL) {
warn("Failed to open file %s", path);
return UNKNOWN_STR;
2017-06-12 21:55:27 +00:00
}
2017-06-12 22:06:56 +00:00
n = fscanf(fp, "%i", &watts);
2017-06-12 21:55:27 +00:00
fclose(fp);
2017-06-12 22:06:56 +00:00
if (n != 1)
return UNKNOWN_STR;
2017-06-12 21:55:27 +00:00
return bprintf("%d", (watts + 500000) / 1000000);
2017-06-12 21:55:27 +00:00
}
static const char *
2016-09-17 14:51:21 +00:00
battery_state(const char *bat)
2016-09-13 20:03:36 +00:00
{
2017-01-07 21:01:49 +00:00
char path[PATH_MAX];
2016-09-17 14:51:21 +00:00
char state[12];
2016-09-13 20:03:36 +00:00
FILE *fp;
2017-06-12 22:06:56 +00:00
int n;
2016-09-13 20:03:36 +00:00
2017-01-07 21:01:49 +00:00
snprintf(path, sizeof(path), "%s%s%s", "/sys/class/power_supply/", bat, "/status");
fp = fopen(path, "r");
if (fp == NULL) {
2017-01-07 21:01:49 +00:00
warn("Failed to open file %s", path);
return UNKNOWN_STR;
}
2017-06-12 22:06:56 +00:00
n = fscanf(fp, "%12s", state);
fclose(fp);
2017-06-12 22:06:56 +00:00
if (n != 1)
return UNKNOWN_STR;
2016-09-17 14:51:21 +00:00
if (strcmp(state, "Charging") == 0) {
return "+";
2016-09-17 14:51:21 +00:00
} else if (strcmp(state, "Discharging") == 0) {
return "-";
2016-09-17 14:51:21 +00:00
} else if (strcmp(state, "Full") == 0) {
return "=";
2017-03-30 15:32:20 +00:00
} else if (strcmp(state, "Unknown") == 0) {
return "/";
2016-09-17 14:51:21 +00:00
} else {
return "?";
2016-09-17 14:51:21 +00:00
}
2016-03-07 09:00:02 +00:00
}
static const char *
2017-06-12 21:56:21 +00:00
cpu_freq(void)
{
2017-06-12 22:06:56 +00:00
int n, freq;
2017-06-12 21:56:21 +00:00
FILE *fp;
fp = fopen("/sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq", "r");
if (fp == NULL) {
warn("Failed to open file /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq");
return UNKNOWN_STR;
2017-06-12 21:56:21 +00:00
}
2017-06-12 22:06:56 +00:00
n = fscanf(fp, "%i", &freq);
2017-06-12 21:56:21 +00:00
fclose(fp);
2017-06-12 22:06:56 +00:00
if (n != 1)
return UNKNOWN_STR;
2017-06-12 21:56:21 +00:00
return bprintf("%d", (freq + 500) / 1000);
2017-06-12 21:56:21 +00:00
}
static const char *
2016-08-21 09:00:51 +00:00
cpu_perc(void)
{
2017-06-12 22:06:56 +00:00
int n, perc;
long double a[4], b[4];
2016-09-17 14:51:21 +00:00
FILE *fp;
2016-03-07 09:00:02 +00:00
2016-09-17 14:51:21 +00:00
fp = fopen("/proc/stat", "r");
if (fp == NULL) {
2016-09-17 14:51:21 +00:00
warn("Failed to open file /proc/stat");
return UNKNOWN_STR;
}
2017-06-12 22:06:56 +00:00
n = fscanf(fp, "%*s %Lf %Lf %Lf %Lf", &a[0], &a[1], &a[2], &a[3]);
fclose(fp);
2017-06-12 22:06:56 +00:00
if (n != 4)
return UNKNOWN_STR;
2016-03-07 09:00:02 +00:00
2016-12-27 16:12:39 +00:00
delay++;
sleep(delay);
2016-03-07 09:00:02 +00:00
2016-09-17 14:51:21 +00:00
fp = fopen("/proc/stat", "r");
if (fp == NULL) {
2016-09-17 14:51:21 +00:00
warn("Failed to open file /proc/stat");
return UNKNOWN_STR;
}
2017-06-12 22:06:56 +00:00
n = fscanf(fp, "%*s %Lf %Lf %Lf %Lf", &b[0], &b[1], &b[2], &b[3]);
fclose(fp);
2017-06-12 22:06:56 +00:00
if (n != 4)
return UNKNOWN_STR;
2016-09-09 17:15:43 +00:00
2016-09-17 14:51:21 +00:00
perc = 100 * ((b[0]+b[1]+b[2]) - (a[0]+a[1]+a[2])) / ((b[0]+b[1]+b[2]+b[3]) - (a[0]+a[1]+a[2]+a[3]));
return bprintf("%d", perc);
2016-03-07 09:00:02 +00:00
}
static const char *
2016-09-17 14:51:21 +00:00
datetime(const char *fmt)
2016-03-07 09:00:02 +00:00
{
time_t t;
t = time(NULL);
if (strftime(buf, sizeof(buf), fmt, localtime(&t)) == 0)
return UNKNOWN_STR;
return buf;
2016-03-07 09:00:02 +00:00
}
static const char *
2016-09-17 14:51:21 +00:00
disk_free(const char *mnt)
2016-06-10 17:13:13 +00:00
{
struct statvfs fs;
2016-06-10 17:13:13 +00:00
2016-09-17 14:51:21 +00:00
if (statvfs(mnt, &fs) < 0) {
warn("Failed to get filesystem info");
return UNKNOWN_STR;
}
2016-09-09 17:15:43 +00:00
return bprintf("%f", (float)fs.f_bsize * (float)fs.f_bfree / 1024 / 1024 / 1024);
2016-06-10 17:13:13 +00:00
}
static const char *
2016-09-17 14:51:21 +00:00
disk_perc(const char *mnt)
{
2016-09-17 14:51:21 +00:00
int perc;
struct statvfs fs;
2016-03-11 12:15:17 +00:00
2016-09-17 14:51:21 +00:00
if (statvfs(mnt, &fs) < 0) {
warn("Failed to get filesystem info");
return UNKNOWN_STR;
}
2016-03-11 12:11:15 +00:00
perc = 100 * (1.0f - ((float)fs.f_bfree / (float)fs.f_blocks));
2016-09-09 17:15:43 +00:00
return bprintf("%d", perc);
}
static const char *
2016-09-17 14:51:21 +00:00
disk_total(const char *mnt)
2016-06-10 17:13:13 +00:00
{
struct statvfs fs;
2016-06-10 17:13:13 +00:00
2016-09-17 14:51:21 +00:00
if (statvfs(mnt, &fs) < 0) {
warn("Failed to get filesystem info");
return UNKNOWN_STR;
}
2016-06-10 17:13:13 +00:00
return bprintf("%f", (float)fs.f_bsize * (float)fs.f_blocks / 1024 / 1024 / 1024);
2016-06-10 17:13:13 +00:00
}
static const char *
2016-09-17 14:51:21 +00:00
disk_used(const char *mnt)
2016-06-10 17:13:13 +00:00
{
struct statvfs fs;
2016-06-10 17:13:13 +00:00
2016-09-17 14:51:21 +00:00
if (statvfs(mnt, &fs) < 0) {
warn("Failed to get filesystem info");
return UNKNOWN_STR;
}
2016-06-10 17:13:13 +00:00
return bprintf("%f", (float)fs.f_bsize * ((float)fs.f_blocks - (float)fs.f_bfree) / 1024 / 1024 / 1024);
2016-06-10 17:13:13 +00:00
}
static const char *
2016-08-21 09:00:51 +00:00
entropy(void)
2016-06-03 11:04:15 +00:00
{
2017-06-12 22:06:56 +00:00
int n, num;
2016-09-17 14:51:21 +00:00
FILE *fp;
2016-06-03 11:04:15 +00:00
2016-09-17 14:51:21 +00:00
fp= fopen("/proc/sys/kernel/random/entropy_avail", "r");
if (fp == NULL) {
2016-09-17 14:51:21 +00:00
warn("Failed to open file /proc/sys/kernel/random/entropy_avail");
return UNKNOWN_STR;
}
2017-06-12 22:06:56 +00:00
n = fscanf(fp, "%d", &num);
fclose(fp);
2017-06-12 22:06:56 +00:00
if (n != 1)
return UNKNOWN_STR;
2016-09-09 17:15:43 +00:00
return bprintf("%d", num);
2016-06-03 11:04:15 +00:00
}
static const char *
2016-08-21 09:00:51 +00:00
gid(void)
2016-06-13 16:49:50 +00:00
{
return bprintf("%d", getgid());
2016-06-13 16:49:50 +00:00
}
static const char *
2016-08-21 09:00:51 +00:00
hostname(void)
2016-06-10 13:53:07 +00:00
{
if (gethostname(buf, sizeof(buf)) == -1) {
warn("hostname");
return UNKNOWN_STR;
}
2016-09-09 17:15:43 +00:00
return buf;
2016-06-10 13:53:07 +00:00
}
static const char *
2016-09-17 14:51:21 +00:00
ip(const char *iface)
2016-06-08 07:42:32 +00:00
{
struct ifaddrs *ifaddr, *ifa;
int s;
char host[NI_MAXHOST];
if (getifaddrs(&ifaddr) == -1) {
2016-09-17 14:51:21 +00:00
warn("Failed to get IP address for interface %s", iface);
return UNKNOWN_STR;
}
for (ifa = ifaddr; ifa != NULL; ifa = ifa->ifa_next) {
2016-09-17 14:51:21 +00:00
if (ifa->ifa_addr == NULL) {
continue;
2016-09-17 14:51:21 +00:00
}
s = getnameinfo(ifa->ifa_addr, sizeof(struct sockaddr_in), host, NI_MAXHOST, NULL, 0, NI_NUMERICHOST);
if ((strcmp(ifa->ifa_name, iface) == 0) && (ifa->ifa_addr->sa_family == AF_INET)) {
if (s != 0) {
2016-09-17 14:51:21 +00:00
warnx("Failed to get IP address for interface %s", iface);
return UNKNOWN_STR;
}
return bprintf("%s", host);
}
}
freeifaddrs(ifaddr);
return UNKNOWN_STR;
2016-06-08 07:42:32 +00:00
}
static const char *
kernel_release(void)
{
struct utsname udata;
if (uname(&udata) < 0) {
return UNKNOWN_STR;
}
return bprintf("%s", udata.release);
2016-06-08 07:42:32 +00:00
}
static const char *
2017-01-16 11:10:56 +00:00
keyboard_indicators(void)
{
Display *dpy = XOpenDisplay(NULL);
XKeyboardState state;
XGetKeyboardControl(dpy, &state);
XCloseDisplay(dpy);
2017-01-16 11:10:56 +00:00
switch (state.led_mask) {
case 1:
return "c";
2017-01-16 11:10:56 +00:00
case 2:
return "n";
2017-01-16 11:10:56 +00:00
case 3:
return "cn";
2017-01-16 11:10:56 +00:00
default:
return "";
2017-01-16 11:10:56 +00:00
}
}
static const char *
2016-08-21 09:00:51 +00:00
load_avg(void)
2016-08-18 11:30:45 +00:00
{
double avgs[3];
if (getloadavg(avgs, 3) < 0) {
2016-09-17 14:51:21 +00:00
warnx("Failed to get the load avg");
return UNKNOWN_STR;
2016-08-18 11:30:45 +00:00
}
return bprintf("%.2f %.2f %.2f", avgs[0], avgs[1], avgs[2]);
2016-08-18 11:30:45 +00:00
}
static const char *
num_files(const char *dir)
{
struct dirent *dp;
DIR *fd;
int num = 0;
if ((fd = opendir(dir)) == NULL) {
warn("Failed to get number of files in directory %s", dir);
return UNKNOWN_STR;
}
while ((dp = readdir(fd)) != NULL) {
if (!strcmp(dp->d_name, ".") || !strcmp(dp->d_name, ".."))
continue; /* skip self and parent */
num++;
}
closedir(fd);
return bprintf("%d", num);
}
static const char *
2016-08-21 09:00:51 +00:00
ram_free(void)
2016-06-10 16:46:47 +00:00
{
long free;
2016-09-17 14:51:21 +00:00
FILE *fp;
2017-06-12 22:06:56 +00:00
int n;
2016-06-10 16:46:47 +00:00
2016-09-17 14:51:21 +00:00
fp = fopen("/proc/meminfo", "r");
if (fp == NULL) {
2016-09-17 14:51:21 +00:00
warn("Failed to open file /proc/meminfo");
return UNKNOWN_STR;
}
2017-06-12 22:06:56 +00:00
n = fscanf(fp, "MemFree: %ld kB\n", &free);
fclose(fp);
2017-06-12 22:06:56 +00:00
if (n != 1)
return UNKNOWN_STR;
2016-09-09 17:15:43 +00:00
return bprintf("%f", (float)free / 1024 / 1024);
2016-06-10 16:46:47 +00:00
}
static const char *
2016-08-21 09:00:51 +00:00
ram_perc(void)
2016-03-07 09:00:02 +00:00
{
long total, free, buffers, cached;
2016-09-17 14:51:21 +00:00
FILE *fp;
2016-09-17 14:51:21 +00:00
fp = fopen("/proc/meminfo", "r");
if (fp == NULL) {
2016-09-17 14:51:21 +00:00
warn("Failed to open file /proc/meminfo");
return UNKNOWN_STR;
}
2017-06-12 22:06:56 +00:00
if (fscanf(fp, "MemTotal: %ld kB\n", &total) != 1 ||
fscanf(fp, "MemFree: %ld kB\n", &free) != 1 ||
fscanf(fp, "MemAvailable: %ld kB\nBuffers: %ld kB\n",
&buffers, &buffers) != 2 ||
fscanf(fp, "Cached: %ld kB\n", &cached) != 1)
goto scanerr;
fclose(fp);
2016-09-09 17:15:43 +00:00
return bprintf("%d", 100 * ((total - free) - (buffers + cached)) / total);
2017-06-12 22:06:56 +00:00
scanerr:
fclose(fp);
return UNKNOWN_STR;
2016-03-07 09:00:02 +00:00
}
static const char *
2016-08-21 09:00:51 +00:00
ram_total(void)
2016-06-10 16:46:47 +00:00
{
long total;
2016-09-17 14:51:21 +00:00
FILE *fp;
2017-06-12 22:06:56 +00:00
int n;
2016-06-10 16:46:47 +00:00
2016-09-17 14:51:21 +00:00
fp = fopen("/proc/meminfo", "r");
if (fp == NULL) {
2016-09-17 14:51:21 +00:00
warn("Failed to open file /proc/meminfo");
return UNKNOWN_STR;
}
2017-06-12 22:06:56 +00:00
n = fscanf(fp, "MemTotal: %ld kB\n", &total);
fclose(fp);
2017-06-12 22:06:56 +00:00
if (n != 1)
return UNKNOWN_STR;
2016-09-09 17:15:43 +00:00
return bprintf("%f", (float)total / 1024 / 1024);
2016-06-10 16:46:47 +00:00
}
static const char *
2016-08-21 09:00:51 +00:00
ram_used(void)
2016-06-10 16:46:47 +00:00
{
2016-09-17 14:51:21 +00:00
long free, total, buffers, cached;
FILE *fp;
2016-06-10 16:46:47 +00:00
2016-09-17 14:51:21 +00:00
fp = fopen("/proc/meminfo", "r");
if (fp == NULL) {
2016-09-17 14:51:21 +00:00
warn("Failed to open file /proc/meminfo");
return UNKNOWN_STR;
}
2017-06-12 22:06:56 +00:00
if (fscanf(fp, "MemTotal: %ld kB\n", &total) != 1 ||
fscanf(fp, "MemFree: %ld kB\n", &free) != 1 ||
fscanf(fp, "MemAvailable: %ld kB\nBuffers: %ld kB\n",
&buffers, &buffers) != 2 ||
fscanf(fp, "Cached: %ld kB\n", &cached) != 1)
goto scanerr;
fclose(fp);
2016-09-09 17:15:43 +00:00
return bprintf("%f", (float)(total - free - buffers - cached) / 1024 / 1024);
2017-06-12 22:06:56 +00:00
scanerr:
fclose(fp);
return UNKNOWN_STR;
2016-06-10 16:46:47 +00:00
}
static const char *
2016-09-17 14:51:21 +00:00
run_command(const char *cmd)
2016-08-15 10:23:35 +00:00
{
2017-06-12 22:06:56 +00:00
char *p;
2016-09-17 14:51:21 +00:00
FILE *fp;
2016-08-15 10:23:35 +00:00
2016-09-17 14:51:21 +00:00
fp = popen(cmd, "r");
if (fp == NULL) {
2016-09-17 14:51:21 +00:00
warn("Failed to get command output for %s", cmd);
return UNKNOWN_STR;
}
2017-06-12 22:06:56 +00:00
p = fgets(buf, sizeof(buf) - 1, fp);
2016-09-14 13:20:20 +00:00
pclose(fp);
2017-06-12 22:06:56 +00:00
if (!p)
return UNKNOWN_STR;
if ((p = strrchr(buf, '\n')) != NULL)
p[0] = '\0';
2016-10-10 07:19:44 +00:00
return buf[0] ? buf : UNKNOWN_STR;
2016-08-15 10:23:35 +00:00
}
2016-10-14 09:44:46 +00:00
static const char *
2016-10-14 09:44:46 +00:00
swap_free(void)
{
long total, free;
2016-10-14 09:44:46 +00:00
FILE *fp;
size_t bytes_read;
char *match;
fp = fopen("/proc/meminfo", "r");
if (fp == NULL) {
warn("Failed to open file /proc/meminfo");
return UNKNOWN_STR;
2016-10-14 09:44:46 +00:00
}
2016-12-27 16:26:04 +00:00
if ((bytes_read = fread(buf, sizeof(char), sizeof(buf) - 1, fp)) == 0) {
2016-12-27 16:26:04 +00:00
warn("swap_free: read error");
fclose(fp);
return UNKNOWN_STR;
2016-10-14 09:44:46 +00:00
}
fclose(fp);
if ((match = strstr(buf, "SwapTotal")) == NULL)
return UNKNOWN_STR;
sscanf(match, "SwapTotal: %ld kB\n", &total);
if ((match = strstr(buf, "SwapFree")) == NULL)
return UNKNOWN_STR;
2016-10-14 09:44:46 +00:00
sscanf(match, "SwapFree: %ld kB\n", &free);
return bprintf("%f", (float)free / 1024 / 1024);
2016-10-14 09:44:46 +00:00
}
static const char *
2016-10-14 09:44:46 +00:00
swap_perc(void)
{
long total, free, cached;
FILE *fp;
size_t bytes_read;
char *match;
fp = fopen("/proc/meminfo", "r");
if (fp == NULL) {
warn("Failed to open file /proc/meminfo");
return UNKNOWN_STR;
2016-10-14 09:44:46 +00:00
}
2016-12-27 16:26:04 +00:00
if ((bytes_read = fread(buf, sizeof(char), sizeof(buf) - 1, fp)) == 0) {
warn("swap_perc: read error");
fclose(fp);
return UNKNOWN_STR;
2016-10-14 09:44:46 +00:00
}
fclose(fp);
if ((match = strstr(buf, "SwapTotal")) == NULL)
return UNKNOWN_STR;
2016-10-14 09:44:46 +00:00
sscanf(match, "SwapTotal: %ld kB\n", &total);
if ((match = strstr(buf, "SwapCached")) == NULL)
return UNKNOWN_STR;
sscanf(match, "SwapCached: %ld kB\n", &cached);
2016-10-14 09:44:46 +00:00
if ((match = strstr(buf, "SwapFree")) == NULL)
return UNKNOWN_STR;
2016-10-14 09:44:46 +00:00
sscanf(match, "SwapFree: %ld kB\n", &free);
return bprintf("%d", 100 * (total - free - cached) / total);
2016-10-14 09:44:46 +00:00
}
static const char *
2016-10-14 09:44:46 +00:00
swap_total(void)
{
long total;
FILE *fp;
size_t bytes_read;
char *match;
fp = fopen("/proc/meminfo", "r");
if (fp == NULL) {
warn("Failed to open file /proc/meminfo");
return UNKNOWN_STR;
2016-10-14 09:44:46 +00:00
}
if ((bytes_read = fread(buf, sizeof(char), sizeof(buf) - 1, fp)) == 0) {
warn("swap_total: read error");
fclose(fp);
return UNKNOWN_STR;
}
2016-10-14 09:44:46 +00:00
fclose(fp);
if ((match = strstr(buf, "SwapTotal")) == NULL)
return UNKNOWN_STR;
sscanf(match, "SwapTotal: %ld kB\n", &total);
2016-10-14 09:44:46 +00:00
return bprintf("%f", (float)total / 1024 / 1024);
2016-10-14 09:44:46 +00:00
}
static const char *
2016-10-14 09:44:46 +00:00
swap_used(void)
{
long total, free, cached;
FILE *fp;
size_t bytes_read;
char *match;
fp = fopen("/proc/meminfo", "r");
if (fp == NULL) {
warn("Failed to open file /proc/meminfo");
return UNKNOWN_STR;
2016-10-14 09:44:46 +00:00
}
if ((bytes_read = fread(buf, sizeof(char), sizeof(buf) - 1, fp)) == 0) {
warn("swap_used: read error");
fclose(fp);
return UNKNOWN_STR;
2016-10-14 09:44:46 +00:00
}
fclose(fp);
if ((match = strstr(buf, "SwapTotal")) == NULL)
return UNKNOWN_STR;
sscanf(match, "SwapTotal: %ld kB\n", &total);
if ((match = strstr(buf, "SwapCached")) == NULL)
return UNKNOWN_STR;
sscanf(match, "SwapCached: %ld kB\n", &cached);
2016-10-14 09:44:46 +00:00
if ((match = strstr(buf, "SwapFree")) == NULL)
return UNKNOWN_STR;
2016-10-14 09:44:46 +00:00
sscanf(match, "SwapFree: %ld kB\n", &free);
return bprintf("%f", (float)(total - free - cached) / 1024 / 1024);
2016-10-14 09:44:46 +00:00
}
2016-08-15 10:23:35 +00:00
static const char *
temp(const char *file)
{
2017-06-12 22:06:56 +00:00
int n, temp;
2016-09-17 14:51:21 +00:00
FILE *fp;
2016-09-17 14:51:21 +00:00
fp = fopen(file, "r");
if (fp == NULL) {
2016-09-17 14:51:21 +00:00
warn("Failed to open file %s", file);
return UNKNOWN_STR;
}
2017-06-12 22:06:56 +00:00
n = fscanf(fp, "%d", &temp);
fclose(fp);
2017-06-12 22:06:56 +00:00
if (n != 1)
return UNKNOWN_STR;
2016-09-09 17:15:43 +00:00
return bprintf("%d", temp / 1000);
}
static const char *
2016-08-21 09:00:51 +00:00
uptime(void)
2016-08-18 11:43:18 +00:00
{
struct sysinfo info;
2016-09-17 14:51:21 +00:00
int h = 0;
int m = 0;
2016-08-18 11:43:18 +00:00
sysinfo(&info);
2016-09-17 14:51:21 +00:00
h = info.uptime / 3600;
m = (info.uptime - h * 3600 ) / 60;
2016-08-18 11:43:18 +00:00
return bprintf("%dh %dm", h, m);
2016-08-18 11:43:18 +00:00
}
static const char *
2016-08-21 09:00:51 +00:00
username(void)
2016-06-13 16:49:50 +00:00
{
struct passwd *pw = getpwuid(geteuid());
if (pw == NULL) {
2016-09-17 14:51:21 +00:00
warn("Failed to get username");
return UNKNOWN_STR;
}
return bprintf("%s", pw->pw_name);
2016-06-13 16:49:50 +00:00
}
static const char *
2016-08-21 09:00:51 +00:00
uid(void)
2016-06-13 16:49:50 +00:00
{
return bprintf("%d", geteuid());
2016-06-13 16:49:50 +00:00
}
static const char *
2016-09-17 14:51:21 +00:00
vol_perc(const char *card)
{
unsigned int i;
int v, afd, devmask;
char *vnames[] = SOUND_DEVICE_NAMES;
2017-04-20 20:30:04 +00:00
afd = open(card, O_RDONLY | O_NONBLOCK);
if (afd == -1) {
warn("Cannot open %s", card);
return UNKNOWN_STR;
}
2017-04-20 20:30:04 +00:00
if (ioctl(afd, SOUND_MIXER_READ_DEVMASK, &devmask) == -1) {
warn("Cannot get volume for %s", card);
close(afd);
return UNKNOWN_STR;
2017-04-20 20:30:04 +00:00
}
for (i = 0; i < (sizeof(vnames) / sizeof((vnames[0]))); i++) {
2017-04-20 20:30:04 +00:00
if (devmask & (1 << i) && !strcmp("vol", vnames[i])) {
if (ioctl(afd, MIXER_READ(i), &v) == -1) {
warn("vol_perc: ioctl");
close(afd);
return UNKNOWN_STR;
}
}
}
close(afd);
2017-01-09 11:05:29 +00:00
return bprintf("%d", v & 0xff);
2016-03-04 17:07:42 +00:00
}
static const char *
2016-09-17 14:51:21 +00:00
wifi_perc(const char *iface)
2016-03-04 17:07:42 +00:00
{
2017-06-12 22:06:56 +00:00
int i, perc;
char *p, *datastart;
2017-01-07 21:01:49 +00:00
char path[PATH_MAX];
char status[5];
FILE *fp;
2017-01-07 21:01:49 +00:00
snprintf(path, sizeof(path), "%s%s%s", "/sys/class/net/", iface, "/operstate");
fp = fopen(path, "r");
if (fp == NULL) {
2017-01-07 21:01:49 +00:00
warn("Failed to open file %s", path);
return UNKNOWN_STR;
}
2017-06-12 22:06:56 +00:00
p = fgets(status, 5, fp);
fclose(fp);
2017-06-12 22:06:56 +00:00
if(!p || strcmp(status, "up\n") != 0) {
return UNKNOWN_STR;
2016-09-17 14:51:21 +00:00
}
fp = fopen("/proc/net/wireless", "r");
if (fp == NULL) {
2016-09-17 14:51:21 +00:00
warn("Failed to open file /proc/net/wireless");
return UNKNOWN_STR;
}
2017-01-07 21:01:49 +00:00
2017-06-12 22:06:56 +00:00
for (i = 0; i < 3; i++) {
if (!(p = fgets(buf, sizeof(buf) - 1, fp)))
break;
}
2016-09-17 14:51:21 +00:00
fclose(fp);
2017-06-12 22:06:56 +00:00
if (i < 2 || !p)
return UNKNOWN_STR;
if ((datastart = strstr(buf, iface)) == NULL)
return UNKNOWN_STR;
datastart = (datastart+(strlen(iface)+1));
sscanf(datastart + 1, " %*d %d %*d %*d %*d %*d %*d %*d %*d %*d", &perc);
return bprintf("%d", perc);
2016-03-04 17:07:42 +00:00
}
static const char *
2016-09-17 14:51:21 +00:00
wifi_essid(const char *iface)
2016-08-15 12:43:29 +00:00
{
static char id[IW_ESSID_MAX_SIZE+1];
int sockfd = socket(AF_INET, SOCK_DGRAM, 0);
struct iwreq wreq;
memset(&wreq, 0, sizeof(struct iwreq));
wreq.u.essid.length = IW_ESSID_MAX_SIZE+1;
2016-12-27 17:18:09 +00:00
snprintf(wreq.ifr_name, sizeof(wreq.ifr_name), "%s", iface);
if (sockfd == -1) {
2016-09-17 14:51:21 +00:00
warn("Failed to get ESSID for interface %s", iface);
return UNKNOWN_STR;
}
wreq.u.essid.pointer = id;
if (ioctl(sockfd,SIOCGIWESSID, &wreq) == -1) {
2016-09-17 14:51:21 +00:00
warn("Failed to get ESSID for interface %s", iface);
return UNKNOWN_STR;
}
close(sockfd);
if (strcmp(id, "") == 0)
return UNKNOWN_STR;
else
return id;
2016-08-15 12:43:29 +00:00
}
static void
2016-09-13 17:21:54 +00:00
sighandler(const int signo)
{
2016-09-17 14:51:21 +00:00
if (signo == SIGTERM || signo == SIGINT) {
done = 1;
2016-09-17 14:51:21 +00:00
}
}
static void
usage(const int eval)
{
fprintf(stderr, "usage: %s [-d] [-o] [-n] [-v] [-h]\n", argv0);
exit(eval);
}
2016-03-04 17:07:42 +00:00
int
main(int argc, char *argv[])
2016-03-04 17:07:42 +00:00
{
2016-09-14 00:31:01 +00:00
unsigned short int i;
char status_string[MAXLEN];
char *element;
struct arg argument;
struct sigaction act;
size_t len;
ARGBEGIN {
case 'd':
dflag = 1;
break;
case 'o':
oflag = 1;
break;
case 'n':
nflag = 1;
break;
2016-09-18 15:03:53 +00:00
case 'v':
2017-01-07 20:28:22 +00:00
printf("slstatus (C) 2016-2017 slstatus engineers\n");
2016-09-18 15:03:53 +00:00
return 0;
case 'h':
usage(0);
default:
usage(1);
} ARGEND
if ((dflag && oflag) || (dflag && nflag) || (oflag && nflag)) {
usage(1);
2016-09-17 14:51:21 +00:00
}
2016-10-10 16:52:46 +00:00
if (dflag && daemon(1, 1) < 0) {
err(1, "daemon");
2016-09-17 14:51:21 +00:00
}
memset(&act, 0, sizeof(act));
act.sa_handler = sighandler;
sigaction(SIGINT, &act, 0);
sigaction(SIGTERM, &act, 0);
if (!oflag) {
dpy = XOpenDisplay(NULL);
}
setlocale(LC_ALL, "");
while (!done) {
2016-09-13 16:57:56 +00:00
status_string[0] = '\0';
for (element = status_string, i = len = 0;
i < sizeof(args) / sizeof(args[0]);
++i, element += len) {
2016-09-04 22:21:03 +00:00
argument = args[i];
len = snprintf(element, sizeof(status_string)-1 - len,
argument.fmt,
argument.func(argument.args));
if (len >= sizeof(status_string)) {
status_string[sizeof(status_string)-1] = '\0';
break;
2016-09-04 22:21:03 +00:00
}
2016-09-03 21:10:49 +00:00
}
if (oflag) {
printf("%s\n", status_string);
} else if (nflag) {
printf("%s\n", status_string);
done = 1;
} else {
XStoreName(dpy, DefaultRootWindow(dpy), status_string);
XSync(dpy, False);
2016-09-17 14:51:21 +00:00
}
2016-12-27 16:12:39 +00:00
if ((UPDATE_INTERVAL - delay) <= 0) {
delay = 0;
continue;
} else {
sleep(UPDATE_INTERVAL - delay);
delay = 0;
}
2016-09-03 21:10:49 +00:00
}
2016-09-09 17:26:06 +00:00
2016-09-17 14:51:21 +00:00
if (!oflag) {
XStoreName(dpy, DefaultRootWindow(dpy), NULL);
XCloseDisplay(dpy);
2016-09-17 14:51:21 +00:00
}
2016-09-13 17:34:25 +00:00
return 0;
2016-03-04 17:07:42 +00:00
}