slstatus/slstatus.c

639 lines
13 KiB
C
Raw Normal View History

2016-03-04 17:07:42 +00:00
/* See LICENSE file for copyright and license details. */
#include <alsa/asoundlib.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>
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>
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-03-04 17:07:42 +00:00
#include <time.h>
#include <unistd.h>
#include <X11/Xlib.h>
#undef strlcat
#undef strlcpy
#include "strlcat.h"
#include "strlcpy.h"
#include "concat.h"
char concat[];
struct arg {
char *(*func)();
const char *format;
const char *args;
};
2016-08-21 08:28:42 +00:00
static char *smprintf(const char *, ...);
static char *battery_perc(const char *);
2016-09-13 20:03:36 +00:00
static char *battery_state(const char *);
2016-08-21 09:00:51 +00:00
static char *cpu_perc(void);
2016-08-21 08:28:42 +00:00
static char *datetime(const char *);
static char *disk_free(const char *);
static char *disk_perc(const char *);
static char *disk_total(const char *);
static char *disk_used(const char *);
2016-08-21 09:00:51 +00:00
static char *entropy(void);
static char *gid(void);
static char *hostname(void);
2016-08-21 08:28:42 +00:00
static char *ip(const char *);
2016-08-21 09:00:51 +00:00
static char *load_avg(void);
static char *ram_free(void);
static char *ram_perc(void);
static char *ram_used(void);
static char *ram_total(void);
2016-08-21 08:28:42 +00:00
static char *run_command(const char *);
static char *temp(const char *);
2016-08-21 09:00:51 +00:00
static char *uid(void);
static char *uptime(void);
static char *username(void);
2016-08-21 08:28:42 +00:00
static char *vol_perc(const char *);
static char *wifi_perc(const char *);
static char *wifi_essid(const char *);
static void sighandler(const int);
2016-09-14 00:31:01 +00:00
static unsigned short int delay, done;
static Display *dpy;
#include "config.h"
2016-08-21 08:28:42 +00:00
static char *
smprintf(const char *fmt, ...)
2016-03-09 15:30:52 +00:00
{
2016-08-28 13:30:12 +00:00
va_list ap;
char *ret;
int len;
2016-08-28 13:30:12 +00:00
va_start(ap, fmt);
len = vsnprintf(NULL, 0, fmt, ap);
va_end(ap);
ret = malloc(++len);
if (ret == NULL) {
perror("malloc");
exit(1);
}
2016-03-09 15:30:52 +00:00
va_start(ap, fmt);
vsnprintf(ret, len, fmt, ap);
2016-08-28 13:30:12 +00:00
va_end(ap);
return ret;
2016-03-09 15:30:52 +00:00
}
2016-08-21 08:28:42 +00:00
static char *
battery_perc(const char *battery)
2016-03-07 09:00:02 +00:00
{
int perc;
FILE *fp;
ccat(3, "/sys/class/power_supply/", battery, "/capacity");
fp = fopen(concat, "r");
if (fp == NULL) {
warn("Error opening battery file: %s", concat);
return smprintf(UNKNOWN_STR);
}
fscanf(fp, "%i", &perc);
fclose(fp);
return smprintf("%d%%", perc);
2016-03-07 09:00:02 +00:00
}
2016-09-13 20:03:36 +00:00
static char *
battery_state(const char *battery)
{
2016-09-14 00:35:09 +00:00
char state[12];
2016-09-13 20:03:36 +00:00
FILE *fp;
ccat(3, "/sys/class/power_supply/", battery, "/status");
fp = fopen(concat, "r");
if (fp == NULL) {
warn("Error opening battery file: %s", concat);
return smprintf(UNKNOWN_STR);
}
2016-09-14 00:31:01 +00:00
fscanf(fp, "%12s", state);
fclose(fp);
2016-09-13 20:03:36 +00:00
if (strcmp(state, "Charging") == 0)
return smprintf("+");
else if (strcmp(state, "Discharging") == 0)
return smprintf("-");
else if (strcmp(state, "Full") == 0)
return smprintf("=");
else
return smprintf("?");
2016-03-07 09:00:02 +00:00
}
2016-08-21 08:28:42 +00:00
static char *
2016-08-21 09:00:51 +00:00
cpu_perc(void)
{
int perc;
long double a[4], b[4];
FILE *fp = fopen("/proc/stat","r");
2016-03-07 09:00:02 +00:00
if (fp == NULL) {
warn("Error opening stat file");
return smprintf(UNKNOWN_STR);
}
2016-03-07 09:00:02 +00:00
fscanf(fp, "%*s %Lf %Lf %Lf %Lf", &a[0], &a[1], &a[2], &a[3]);
fclose(fp);
2016-03-07 09:00:02 +00:00
delay = (UPDATE_INTERVAL - (UPDATE_INTERVAL - 1));
sleep(delay);
2016-03-07 09:00:02 +00:00
fp = fopen("/proc/stat","r");
if (fp == NULL) {
warn("Error opening stat file");
return smprintf(UNKNOWN_STR);
}
2016-03-07 09:00:02 +00:00
fscanf(fp, "%*s %Lf %Lf %Lf %Lf", &b[0], &b[1], &b[2], &b[3]);
fclose(fp);
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]));
2016-09-09 17:15:43 +00:00
return smprintf("%d%%", perc);
2016-03-07 09:00:02 +00:00
}
2016-08-21 08:28:42 +00:00
static char *
datetime(const char *timeformat)
2016-03-07 09:00:02 +00:00
{
time_t t;
char timestr[80];
t = time(NULL);
if (strftime(timestr, sizeof(timestr), timeformat, localtime(&t)) == 0)
return smprintf(UNKNOWN_STR);
return smprintf("%s", timestr);
2016-03-07 09:00:02 +00:00
}
2016-08-21 08:28:42 +00:00
static char *
2016-06-10 17:13:13 +00:00
disk_free(const char *mountpoint)
{
struct statvfs fs;
2016-06-10 17:13:13 +00:00
if (statvfs(mountpoint, &fs) < 0) {
warn("Could not get filesystem info");
return smprintf(UNKNOWN_STR);
}
2016-09-09 17:15:43 +00:00
return smprintf("%f", (float)fs.f_bsize * (float)fs.f_bfree / 1024 / 1024 / 1024);
2016-06-10 17:13:13 +00:00
}
2016-08-21 08:28:42 +00:00
static char *
disk_perc(const char *mountpoint)
{
int perc = 0;
struct statvfs fs;
2016-03-11 12:15:17 +00:00
if (statvfs(mountpoint, &fs) < 0) {
warn("Could not get filesystem info");
return smprintf(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 smprintf("%d%%", perc);
}
2016-08-21 08:28:42 +00:00
static char *
2016-06-10 17:13:13 +00:00
disk_total(const char *mountpoint)
{
struct statvfs fs;
2016-06-10 17:13:13 +00:00
if (statvfs(mountpoint, &fs) < 0) {
warn("Could not get filesystem info");
return smprintf(UNKNOWN_STR);
}
2016-06-10 17:13:13 +00:00
return smprintf("%f", (float)fs.f_bsize * (float)fs.f_blocks / 1024 / 1024 / 1024);
2016-06-10 17:13:13 +00:00
}
2016-08-21 08:28:42 +00:00
static char *
2016-06-10 17:13:13 +00:00
disk_used(const char *mountpoint)
{
struct statvfs fs;
2016-06-10 17:13:13 +00:00
if (statvfs(mountpoint, &fs) < 0) {
warn("Could not get filesystem info");
return smprintf(UNKNOWN_STR);
}
2016-06-10 17:13:13 +00:00
return smprintf("%f", (float)fs.f_bsize * ((float)fs.f_blocks - (float)fs.f_bfree) / 1024 / 1024 / 1024);
2016-06-10 17:13:13 +00:00
}
2016-08-21 08:28:42 +00:00
static char *
2016-08-21 09:00:51 +00:00
entropy(void)
2016-06-03 11:04:15 +00:00
{
int entropy = 0;
FILE *fp = fopen("/proc/sys/kernel/random/entropy_avail", "r");
2016-06-03 11:04:15 +00:00
if (fp == NULL) {
warn("Could not open entropy file");
return smprintf(UNKNOWN_STR);
}
2016-06-03 11:04:15 +00:00
fscanf(fp, "%d", &entropy);
fclose(fp);
2016-09-09 17:15:43 +00:00
return smprintf("%d", entropy);
2016-06-03 11:04:15 +00:00
}
2016-08-21 08:28:42 +00:00
static char *
2016-08-21 09:00:51 +00:00
gid(void)
2016-06-13 16:49:50 +00:00
{
2016-09-01 18:51:32 +00:00
return smprintf("%d", getgid());
2016-06-13 16:49:50 +00:00
}
2016-08-21 08:28:42 +00:00
static char *
2016-08-21 09:00:51 +00:00
hostname(void)
2016-06-10 13:53:07 +00:00
{
char hostname[HOST_NAME_MAX];
FILE *fp = fopen("/proc/sys/kernel/hostname", "r");
2016-06-10 13:53:07 +00:00
if (fp == NULL) {
warn("Could not open hostname file");
return smprintf(UNKNOWN_STR);
}
2016-06-10 13:53:07 +00:00
fgets(hostname, sizeof(hostname), fp);
2016-09-14 09:22:03 +00:00
hostname[strlen(hostname)-1] = '\0';
fclose(fp);
2016-09-09 17:15:43 +00:00
return smprintf("%s", hostname);
2016-06-10 13:53:07 +00:00
}
2016-08-21 08:28:42 +00:00
static char *
2016-06-08 07:42:32 +00:00
ip(const char *interface)
{
struct ifaddrs *ifaddr, *ifa;
int s;
char host[NI_MAXHOST];
if (getifaddrs(&ifaddr) == -1) {
warn("Error getting IP address");
return smprintf(UNKNOWN_STR);
}
for (ifa = ifaddr; ifa != NULL; ifa = ifa->ifa_next) {
if (ifa->ifa_addr == NULL)
continue;
s = getnameinfo(ifa->ifa_addr, sizeof(struct sockaddr_in), host, NI_MAXHOST,
NULL, 0, NI_NUMERICHOST);
if ((strcmp(ifa->ifa_name, interface) == 0) && (ifa->ifa_addr->sa_family == AF_INET)) {
if (s != 0) {
warnx("Error getting IP address.");
return smprintf(UNKNOWN_STR);
}
return smprintf("%s", host);
}
}
freeifaddrs(ifaddr);
return smprintf(UNKNOWN_STR);
2016-06-08 07:42:32 +00:00
}
2016-08-21 08:28:42 +00:00
static 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) {
warnx("Error getting load avg.");
return smprintf(UNKNOWN_STR);
2016-08-18 11:30:45 +00:00
}
return smprintf("%.2f %.2f %.2f", avgs[0], avgs[1], avgs[2]);
}
2016-08-21 08:28:42 +00:00
static char *
2016-08-21 09:00:51 +00:00
ram_free(void)
2016-06-10 16:46:47 +00:00
{
long free;
FILE *fp = fopen("/proc/meminfo", "r");
2016-06-10 16:46:47 +00:00
if (fp == NULL) {
warn("Error opening meminfo file");
return smprintf(UNKNOWN_STR);
}
2016-06-10 16:46:47 +00:00
fscanf(fp, "MemFree: %ld kB\n", &free);
fclose(fp);
2016-09-09 17:15:43 +00:00
return smprintf("%f", (float)free / 1024 / 1024);
2016-06-10 16:46:47 +00:00
}
2016-08-21 08:28:42 +00:00
static char *
2016-08-21 09:00:51 +00:00
ram_perc(void)
2016-03-07 09:00:02 +00:00
{
int perc;
long total, free, buffers, cached;
FILE *fp = fopen("/proc/meminfo", "r");
if (fp == NULL) {
warn("Error opening meminfo file");
return smprintf(UNKNOWN_STR);
}
fscanf(fp, "MemTotal: %ld kB\n", &total);
fscanf(fp, "MemFree: %ld kB\n", &free);
fscanf(fp, "MemAvailable: %ld kB\nBuffers: %ld kB\n", &buffers, &buffers);
fscanf(fp, "Cached: %ld kB\n", &cached);
fclose(fp);
perc = 100 * ((total - free) - (buffers + cached)) / total;
2016-09-09 17:15:43 +00:00
return smprintf("%d%%", perc);
2016-03-07 09:00:02 +00:00
}
2016-08-21 08:28:42 +00:00
static char *
2016-08-21 09:00:51 +00:00
ram_total(void)
2016-06-10 16:46:47 +00:00
{
long total;
FILE *fp = fopen("/proc/meminfo", "r");
2016-06-10 16:46:47 +00:00
if (fp == NULL) {
warn("Error opening meminfo file");
return smprintf(UNKNOWN_STR);
}
2016-06-10 16:46:47 +00:00
fscanf(fp, "MemTotal: %ld kB\n", &total);
fclose(fp);
2016-09-09 17:15:43 +00:00
return smprintf("%f", (float)total / 1024 / 1024);
2016-06-10 16:46:47 +00:00
}
2016-08-21 08:28:42 +00:00
static char *
2016-08-21 09:00:51 +00:00
ram_used(void)
2016-06-10 16:46:47 +00:00
{
long free, total, buffers, cached, used;
FILE *fp = fopen("/proc/meminfo", "r");
2016-06-10 16:46:47 +00:00
if (fp == NULL) {
warn("Error opening meminfo file");
return smprintf(UNKNOWN_STR);
}
2016-06-10 16:46:47 +00:00
fscanf(fp, "MemTotal: %ld kB\n", &total);
fscanf(fp, "MemFree: %ld kB\n", &free);
fscanf(fp, "MemAvailable: %ld kB\nBuffers: %ld kB\n", &buffers, &buffers);
fscanf(fp, "Cached: %ld kB\n", &cached);
2016-06-10 16:46:47 +00:00
fclose(fp);
used = total - free - buffers - cached;
2016-09-09 17:15:43 +00:00
return smprintf("%f", (float)used / 1024 / 1024);
2016-06-10 16:46:47 +00:00
}
2016-08-21 08:28:42 +00:00
static char *
2016-08-15 10:23:35 +00:00
run_command(const char* command)
{
FILE *fp = popen(command, "r");
2016-09-14 16:42:51 +00:00
char buffer[64] = "\0";
2016-08-15 10:23:35 +00:00
if (fp == NULL) {
warn("Could not get command output for: %s", command);
return smprintf(UNKNOWN_STR);
}
2016-08-15 10:23:35 +00:00
2016-09-14 13:20:20 +00:00
fgets(buffer, sizeof(buffer), fp);
buffer[sizeof(buffer)-1] = '\0';
2016-09-09 17:15:43 +00:00
2016-09-14 13:20:20 +00:00
pclose(fp);
2016-08-15 10:23:35 +00:00
return smprintf("%s", buffer);
}
2016-08-21 08:28:42 +00:00
static char *
temp(const char *file)
{
int temperature;
FILE *fp = fopen(file, "r");
if (fp == NULL) {
warn("Could not open temperature file");
return smprintf(UNKNOWN_STR);
}
fscanf(fp, "%d", &temperature);
fclose(fp);
2016-09-09 17:15:43 +00:00
return smprintf("%d°C", temperature / 1000);
}
2016-08-21 08:28:42 +00:00
static char *
2016-08-21 09:00:51 +00:00
uptime(void)
2016-08-18 11:43:18 +00:00
{
struct sysinfo info;
int hours = 0;
int minutes = 0;
sysinfo(&info);
hours = info.uptime / 3600;
minutes = (info.uptime - hours * 3600 ) / 60;
return smprintf("%dh %dm", hours, minutes);
}
2016-08-21 08:28:42 +00:00
static char *
2016-08-21 09:00:51 +00:00
username(void)
2016-06-13 16:49:50 +00:00
{
2016-09-01 18:35:32 +00:00
uid_t uid = geteuid();
struct passwd *pw = getpwuid(uid);
if (pw == NULL) {
warn("Could not get username");
return smprintf(UNKNOWN_STR);
}
return smprintf("%s", pw->pw_name);
2016-06-13 16:49:50 +00:00
}
2016-08-21 08:28:42 +00:00
static char *
2016-08-21 09:00:51 +00:00
uid(void)
2016-06-13 16:49:50 +00:00
{
2016-09-01 18:35:32 +00:00
return smprintf("%d", geteuid());
2016-06-13 16:49:50 +00:00
}
static char *
vol_perc(const char *soundcard)
{
long int vol, max, min;
snd_mixer_t *handle;
snd_mixer_elem_t *elem;
snd_mixer_selem_id_t *s_elem;
snd_mixer_open(&handle, 0);
snd_mixer_attach(handle, soundcard);
snd_mixer_selem_register(handle, NULL, NULL);
snd_mixer_load(handle);
snd_mixer_selem_id_malloc(&s_elem);
snd_mixer_selem_id_set_name(s_elem, "Master");
elem = snd_mixer_find_selem(handle, s_elem);
if (elem == NULL) {
snd_mixer_selem_id_free(s_elem);
snd_mixer_close(handle);
2016-09-14 00:31:01 +00:00
warn("Failed to get volume percentage for: %s", soundcard);
return smprintf(UNKNOWN_STR);
}
snd_mixer_handle_events(handle);
snd_mixer_selem_get_playback_volume_range(elem, &min, &max);
snd_mixer_selem_get_playback_volume(elem, 0, &vol);
snd_mixer_selem_id_free(s_elem);
snd_mixer_close(handle);
return smprintf("%d%%", ((uint_fast16_t)(vol * 100) / max));
2016-03-04 17:07:42 +00:00
}
2016-08-21 08:28:42 +00:00
static char *
wifi_perc(const char *wificard)
2016-03-04 17:07:42 +00:00
{
int strength;
char buf[255];
char *datastart;
char status[5];
FILE *fp;
2016-09-12 09:28:54 +00:00
ccat(3, "/sys/class/net/", wificard, "/operstate");
fp = fopen(concat, "r");
if (fp == NULL) {
warn("Error opening wifi operstate file");
return smprintf(UNKNOWN_STR);
}
fgets(status, 5, fp);
fclose(fp);
if(strcmp(status, "up\n") != 0)
return smprintf(UNKNOWN_STR);
fp = fopen("/proc/net/wireless", "r");
if (fp == NULL) {
warn("Error opening wireless file");
return smprintf(UNKNOWN_STR);
}
ccat(2, wificard, ":");
fgets(buf, sizeof(buf), fp);
fgets(buf, sizeof(buf), fp);
fgets(buf, sizeof(buf), fp);
datastart = strstr(buf, concat);
if (datastart != NULL) {
datastart = strstr(buf, ":");
sscanf(datastart + 1, " %*d %d %*d %*d %*d %*d %*d %*d %*d %*d", &strength);
}
fclose(fp);
2016-09-09 17:15:43 +00:00
return smprintf("%d%%", strength);
2016-03-04 17:07:42 +00:00
}
2016-08-21 08:28:42 +00:00
static char *
2016-08-15 12:43:29 +00:00
wifi_essid(const char *wificard)
{
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;
sprintf(wreq.ifr_name, wificard);
if (sockfd == -1) {
warn("Cannot open socket for interface: %s", wificard);
return smprintf(UNKNOWN_STR);
}
wreq.u.essid.pointer = id;
if (ioctl(sockfd,SIOCGIWESSID, &wreq) == -1) {
warn("Get ESSID ioctl failed for interface %s", wificard);
return smprintf(UNKNOWN_STR);
}
close(sockfd);
if (strcmp((char *)wreq.u.essid.pointer, "") == 0)
return smprintf(UNKNOWN_STR);
else
return smprintf("%s", (char *)wreq.u.essid.pointer);
2016-08-15 12:43:29 +00:00
}
static void
2016-09-13 17:21:54 +00:00
sighandler(const int signo)
{
2016-09-14 00:31:01 +00:00
if (signo == SIGTERM || signo == SIGINT)
done = 1;
}
2016-03-04 17:07:42 +00:00
int
main(void)
2016-03-04 17:07:42 +00:00
{
2016-09-14 00:31:01 +00:00
unsigned short int i;
char status_string[4096];
2016-09-14 00:35:09 +00:00
char *res, *element;
struct arg argument;
struct sigaction act;
memset(&act, 0, sizeof(act));
act.sa_handler = sighandler;
sigaction(SIGINT, &act, 0);
sigaction(SIGTERM, &act, 0);
dpy = XOpenDisplay(NULL);
while (!done) {
2016-09-13 16:57:56 +00:00
status_string[0] = '\0';
2016-09-04 22:21:03 +00:00
for (i = 0; i < sizeof(args) / sizeof(args[0]); ++i) {
argument = args[i];
if (argument.args == NULL)
res = argument.func();
else
res = argument.func(argument.args);
element = smprintf(argument.format, res);
if (element == NULL) {
element = smprintf(UNKNOWN_STR);
warnx("Failed to format output.");
2016-09-04 22:21:03 +00:00
}
strlcat(status_string, element, sizeof(status_string));
free(res);
free(element);
2016-09-03 21:10:49 +00:00
}
2016-09-04 23:17:30 +00:00
XStoreName(dpy, DefaultRootWindow(dpy), status_string);
XSync(dpy, False);
/*
* subtract delay time spend in function
* calls from the actual global delay time
*/
sleep(UPDATE_INTERVAL - delay);
delay = 0;
2016-09-03 21:10:49 +00:00
}
2016-09-09 17:26:06 +00:00
2016-09-14 00:31:01 +00:00
XStoreName(dpy, DefaultRootWindow(dpy), NULL);
2016-09-13 17:34:25 +00:00
XSync(dpy, False);
XCloseDisplay(dpy);
return 0;
2016-03-04 17:07:42 +00:00
}