summaryrefslogtreecommitdiff
path: root/components/wifi.c
blob: 7cd2702ca1e9fc27666688167df1321fa5aa3725 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/* See LICENSE file for copyright and license details. */
#if defined(__linux__)
	#include <errno.h>
	#include <ifaddrs.h>
	#include <linux/wireless.h>
	#include <sys/socket.h>
	#include <stdio.h>
	#include <limits.h>
	#include <string.h>
	#include <sys/ioctl.h>
	#include <unistd.h>

	#include "../util.h"

	const char *
	wifi_perc(const char *iface)
	{
		int i, cur;
		float perc;
		int total = 70; /* the max of /proc/net/wireless */
		char *p, *datastart;
		char path[PATH_MAX];
		char status[5];
		FILE *fp;

		snprintf(path, sizeof(path), "%s%s%s", "/sys/class/net/", iface,
		         "/operstate");
		if (!(fp = fopen(path, "r"))) {
			fprintf(stderr, "fopen '%s': %s\n", path,
			        strerror(errno));
			return NULL;
		}
		p = fgets(status, 5, fp);
		fclose(fp);
		if(!p || strcmp(status, "up\n") != 0) {
			return NULL;
		}

		if (!(fp = fopen("/proc/net/wireless", "r"))) {
			fprintf(stderr, "fopen '/proc/net/wireless': %s\n",
			        strerror(errno));
			return NULL;
		}

		for (i = 0; i < 3; i++) {
			if (!(p = fgets(buf, sizeof(buf) - 1, fp)))
				break;
		}
		fclose(fp);
		if (i < 2 || !p)
			return NULL;

		if ((datastart = strstr(buf, iface)) == NULL)
			return NULL;

		datastart = (datastart+(strlen(iface)+1));
		sscanf(datastart + 1, " %*d   %d  %*d  %*d\t\t  %*d\t   "
		       "%*d\t\t%*d\t\t %*d\t  %*d\t\t %*d", &cur);

		perc = (float)cur / total * 100.0;

		return bprintf("%.0f", perc);
	}

	const char *
	wifi_essid(const char *iface)
	{
		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;
		snprintf(wreq.ifr_name, sizeof(wreq.ifr_name), "%s", iface);

		if (sockfd == -1) {
			fprintf(stderr, "socket 'AF_INET': %s\n",
			        strerror(errno));
			return NULL;
		}
		wreq.u.essid.pointer = id;
		if (ioctl(sockfd,SIOCGIWESSID, &wreq) == -1) {
			fprintf(stderr, "ioctl 'SIOCGIWESSID': %s\n",
			        strerror(errno));
			close(sockfd);
			return NULL;
		}

		close(sockfd);

		if (strcmp(id, "") == 0)
			return NULL;

		return id;
	}
#elif defined(__OpenBSD__)
	/* unimplemented */
#endif