Create netledPi.c
A network activity light for the Raspberry Pi, using an LED connected to a GPIO pin.
This commit is contained in:
parent
2f37b3ddd0
commit
d10c36a829
235
netledPi.c
Normal file
235
netledPi.c
Normal file
@ -0,0 +1,235 @@
|
||||
/ **************************************************************************
|
||||
*
|
||||
* A network activity light for the Raspberry Pi, using an LED connected to a GPIO pin.
|
||||
* Based on hddled.c - http://members.optusnet.com.au/foonly/whirlpool/code/hddled.c -
|
||||
* This program uses the WiringPi library by Gordon Henderson - http://wiringpi.com/ - Thanks, Gordon!
|
||||
*
|
||||
*
|
||||
* To compile:
|
||||
* gcc -Wall -O3 -o netledPi netledPi.c -lwiringPi
|
||||
*
|
||||
* Options:
|
||||
* -d, --detach Detach from terminal (become a daemon)
|
||||
* -p, --pin=VALUE GPIO pin (using wiringPi numbering scheme) where LED is connected (default: 11)
|
||||
* -r, --refresh=VALUE Refresh interval (default: 20 ms)
|
||||
*
|
||||
* GPIO pin ----|>|----[330]----+
|
||||
* LED |
|
||||
* ===
|
||||
* Ground
|
||||
*
|
||||
* Default LED Pin - wiringPi pin 11 is BCM_GPIO 7, physical pin 25 on the Pi's P1 header.
|
||||
* Note: This pin is also used for the SPI interface. If you have SPI add-ons connected,
|
||||
* you'll have to use the -p option to change it to another, unused pin.
|
||||
*/
|
||||
|
||||
|
||||
#define NETDEVICES "/proc/net/dev"
|
||||
|
||||
|
||||
#define _GNU_SOURCE
|
||||
|
||||
#include <argp.h>
|
||||
#include <signal.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <time.h>
|
||||
#include <unistd.h>
|
||||
#include <wiringPi.h>
|
||||
|
||||
|
||||
static unsigned int o_refresh = 20; /* milliseconds */
|
||||
static unsigned int o_gpiopin = 11; /* wiringPi numbering scheme */
|
||||
static int o_detach = 0;
|
||||
|
||||
static volatile sig_atomic_t running = 1;
|
||||
static char *line = NULL;
|
||||
static size_t len = 0;
|
||||
|
||||
/* Reread the netdevices file */
|
||||
int activity(FILE *netdevices) {
|
||||
static unsigned int prev_inpackets, prev_outpackets;
|
||||
unsigned int inpackets, outpackets;
|
||||
unsigned int device_inpackets, device_outpackets;
|
||||
int found_inpackets, found_outpackets;
|
||||
int result;
|
||||
char *ptr;
|
||||
char device[8];
|
||||
|
||||
/* Go to the beginning of the netdevices file */
|
||||
result = TEMP_FAILURE_RETRY(fseek(netdevices, 0L, SEEK_SET));
|
||||
if (result) {
|
||||
perror("Could not rewind " NETDEVICES);
|
||||
return result;
|
||||
}
|
||||
|
||||
/* Clear glibc's buffer */
|
||||
result = TEMP_FAILURE_RETRY(fflush(netdevices));
|
||||
if (result) {
|
||||
perror("Could not flush input stream");
|
||||
return result;
|
||||
}
|
||||
|
||||
/* Extract the I/O stats */
|
||||
inpackets = outpackets = 0;
|
||||
found_inpackets = found_outpackets = 0;
|
||||
device_inpackets = device_outpackets = 0;
|
||||
while (getline(&line, &len, netdevices) != -1 && errno != EINTR) {
|
||||
ptr = line;
|
||||
while (*ptr == ' ') ptr++; // Skip leading spaces
|
||||
if (sscanf(ptr, "%s %*u %u %*u %*u %*u %*u %*u %*u %*u %u %*u %*u %*u %*u %*u %*u", device, &device_inpackets, &device_outpackets)) {
|
||||
if(strstr(device, "lo:")) continue; // Skip loopback interface
|
||||
found_inpackets++;
|
||||
found_outpackets++;
|
||||
inpackets += device_inpackets;
|
||||
outpackets += device_outpackets;
|
||||
}
|
||||
|
||||
}
|
||||
if (!found_inpackets || !found_outpackets) {
|
||||
fprintf(stderr, "Could not find required lines in " NETDEVICES);
|
||||
return -1;
|
||||
}
|
||||
|
||||
/* Anything changed? */
|
||||
result = (prev_inpackets != inpackets) ||
|
||||
(prev_outpackets != outpackets);
|
||||
prev_inpackets = inpackets;
|
||||
prev_outpackets = outpackets;
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
/* Update the LED */
|
||||
void led(int on) {
|
||||
static int current = 1; /* Ensure the LED turns off on first call */
|
||||
if (current == on)
|
||||
return;
|
||||
|
||||
if (on) {
|
||||
digitalWrite (o_gpiopin, HIGH);
|
||||
} else {
|
||||
digitalWrite (o_gpiopin, LOW);
|
||||
}
|
||||
|
||||
current = on;
|
||||
}
|
||||
|
||||
/* Signal handler -- break out of the main loop */
|
||||
void shutdown(int sig) {
|
||||
running = 0;
|
||||
}
|
||||
|
||||
/* Argp parser function */
|
||||
error_t parse_options(int key, char *arg, struct argp_state *state) {
|
||||
switch (key) {
|
||||
case 'd':
|
||||
o_detach = 1;
|
||||
break;
|
||||
case 'r':
|
||||
o_refresh = strtol(arg, NULL, 10);
|
||||
if (o_refresh < 10)
|
||||
argp_failure(state, EXIT_FAILURE, 0,
|
||||
"refresh interval must be at least 10");
|
||||
break;
|
||||
case 'p':
|
||||
o_gpiopin = strtol(arg, NULL, 10);
|
||||
if ((o_gpiopin < 0) || (o_gpiopin > 29))
|
||||
argp_failure(state, EXIT_FAILURE, 0,
|
||||
"pin number must be between 0 and 29");
|
||||
break;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
struct argp_option options[] = {
|
||||
{ "detach", 'd', NULL, 0, "Detach from terminal" },
|
||||
{ "pin", 'p', "VALUE", 0, "GPIO pin where LED is connected (default: wiringPi pin 11, physical pin 25 on the P1 header)" },
|
||||
{ "refresh", 'r', "VALUE", 0, "Refresh interval (default: 20 ms)" },
|
||||
{ 0 },
|
||||
};
|
||||
struct argp parser = {
|
||||
NULL, parse_options, NULL,
|
||||
"Show network activity using an LED wired to a GPIO pin.",
|
||||
NULL, NULL, NULL
|
||||
};
|
||||
int status = EXIT_FAILURE;
|
||||
FILE *netdevices = NULL;
|
||||
struct timespec delay;
|
||||
|
||||
/* Parse the command-line */
|
||||
parser.options = options;
|
||||
if (argp_parse(&parser, argc, argv, ARGP_NO_ARGS, NULL, NULL))
|
||||
goto out;
|
||||
|
||||
delay.tv_sec = o_refresh / 1000;
|
||||
delay.tv_nsec = 1000000 * (o_refresh % 1000);
|
||||
|
||||
wiringPiSetup () ;
|
||||
pinMode (o_gpiopin, OUTPUT) ;
|
||||
|
||||
|
||||
/* Open the netdevices file */
|
||||
netdevices = fopen(NETDEVICES, "r");
|
||||
if (!netdevices) {
|
||||
perror("Could not open " NETDEVICES " for reading");
|
||||
goto out;
|
||||
}
|
||||
|
||||
/* Ensure the LED is off */
|
||||
led(LOW);
|
||||
|
||||
/* Save the current I/O stat values */
|
||||
if (activity(netdevices) < 0)
|
||||
goto out;
|
||||
|
||||
/* Detach from terminal? */
|
||||
if (o_detach) {
|
||||
pid_t child = fork();
|
||||
if (child < 0) {
|
||||
perror("Could not detach from terminal");
|
||||
goto out;
|
||||
}
|
||||
if (child) {
|
||||
/* I am the parent */
|
||||
status = EXIT_SUCCESS;
|
||||
goto out;
|
||||
}
|
||||
}
|
||||
|
||||
/* We catch these signals so we can clean up */
|
||||
{
|
||||
struct sigaction action;
|
||||
memset(&action, 0, sizeof(action));
|
||||
action.sa_handler = shutdown;
|
||||
sigemptyset(&action.sa_mask);
|
||||
action.sa_flags = 0; /* We block on usleep; don't use SA_RESTART */
|
||||
sigaction(SIGHUP, &action, NULL);
|
||||
sigaction(SIGINT, &action, NULL);
|
||||
sigaction(SIGTERM, &action, NULL);
|
||||
}
|
||||
|
||||
/* Loop until signal received */
|
||||
while (running) {
|
||||
int a;
|
||||
if (nanosleep(&delay, NULL) < 0)
|
||||
break;
|
||||
a = activity(netdevices);
|
||||
if (a < 0)
|
||||
break;
|
||||
led(a);
|
||||
}
|
||||
|
||||
/* Ensure the LED is off */
|
||||
led(LOW);
|
||||
|
||||
status = EXIT_SUCCESS;
|
||||
|
||||
out:
|
||||
if (line) free(line);
|
||||
if (netdevices) fclose(netdevices);
|
||||
return status;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user