cpfsyslog/src/main.c

217 lines
7.2 KiB
C
Raw Normal View History

2018-05-09 20:42:19 -07:00
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <ctype.h>
#include <string.h>
#include <assert.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <limits.h>
2018-05-10 21:54:45 -07:00
#include "helpers.h"
2018-05-10 18:05:46 -07:00
// UDP server-related mostly lifted from https://cs.nyu.edu/~mwalfish/classes/16sp/classnotes/handout01.pdf
2018-05-09 20:42:19 -07:00
2018-05-10 21:54:45 -07:00
#define DF_MONTH_LEN 9
2018-05-10 18:05:46 -07:00
struct Datefields {
2018-05-10 22:40:00 -07:00
char month[DF_MONTH_LEN]; // TODO numeric indicator?
2018-05-10 18:05:46 -07:00
int day;
int hour;
int minute;
int second;
};
2018-05-10 22:40:00 -07:00
#define MSG_APP_LEN 64 // TODO check max app name length
struct Message {
int priority;
char application[MSG_APP_LEN];
struct Datefields date;
};
void panic(const char* s) {
perror(s);
exit(1);
}
2018-05-10 18:05:46 -07:00
int parse_priority(char* message, int* priority, int* position) {
2018-05-09 20:42:19 -07:00
/*
2018-05-10 18:05:46 -07:00
Given a string that begins with a message something like: <123>foo
Parse out the number (123) and place it in the passed `priority` int pointer
The position after the final `>` will be placed in the passed `position` int pointer
Returns 0 on success or something else on failure
2018-05-09 20:42:19 -07:00
*/
// Must have >3 chars to form <x> priority
if (strlen(message) < 3) return 1;
// Must start with <
if (message[0] != '<') return 1;
2018-05-10 18:05:46 -07:00
char digits[4];
memset(&digits, '\0', sizeof(digits));
2018-05-09 20:42:19 -07:00
int num_digits = 0;
2018-05-10 18:05:46 -07:00
int pos = 1;
2018-05-09 20:42:19 -07:00
//bool found_priority_end = false; // TODO
2018-05-10 18:05:46 -07:00
while (pos < 4) {
if(!isdigit(message[pos])) return 1; // priority must be numeric
digits[num_digits] = message[pos];
2018-05-09 20:42:19 -07:00
num_digits++;
2018-05-10 18:05:46 -07:00
pos++;
if (message[pos] == '>') {
2018-05-09 20:42:19 -07:00
break;
}
}
2018-05-10 18:05:46 -07:00
// TODO if escape the loop because pos >= 4, we never found '>'
2018-05-09 22:34:49 -07:00
if (num_digits == 0) return 1; // empty priority <> ?
2018-05-10 18:05:46 -07:00
*priority = atoi(digits);
*position = pos;
return 0;
}
2018-05-09 20:42:19 -07:00
2018-05-10 18:05:46 -07:00
int parse_datefield(char* message, struct Datefields* date, int* position) {
/*
Given a message+position pointers, where message + position in a string like:
May 10 03:09:59 filterlog: 5,,,....
Parse out the date and place the fields in the passed datefields struct pointer
Position will be advanced to the character after the parsed data
*/
// char month[8];
// memset(&month, '\0', sizeof(month)); // makes valgrind happy as the above char contains uninitialized memory
int date_length;
2018-05-10 21:54:45 -07:00
if(sscanf(message + *position, "%"STR(DF_MONTH_LEN)"s %d %d:%d:%d%n",
2018-05-10 18:05:46 -07:00
date->month, &(date->day), &(date->hour), &(date->minute), &(date->second), &date_length) != 5) {
2018-05-09 23:17:26 -07:00
return 1; // Failed to parse all desired fields
}
2018-05-10 18:05:46 -07:00
*position += date_length;
return 0;
}
2018-05-10 21:54:45 -07:00
int parse_application(char* message, char* application, int* position) {
int app_length;
if(sscanf(message + *position, "%"STR(MSG_APP_LEN)"s%n", application, &app_length) != 1) { // %n not counted in returned field count
return 1; // Failed to parse all desired fields
}
if(strlen(application) < 2) return 1; // Expect at least chars
application[app_length-1] = '\0'; // Remove the trailing :
*position += app_length;
return 0;
}
2018-05-10 18:05:46 -07:00
int parse_message(struct Message* result, char* message) {
/*
parse a message like:
<134>May 10 03:09:59 filterlog: 5,,,1000000103,cpsw0,match,block,in,4,0x20,,239,27547,0,none,6,tcp,40,185.216.140.37,24.4.129.164,57159,11111,0,S,3919167832,,1024,,
Format:
<priority>VERSION ISOTIMESTAMP HOSTNAME APPLICATION PID MESSAGEID STRUCTURED-DATA MSG
Assumes null termed string
*/
int priority = 0;
int position = 0;
if(parse_priority(message, &priority, &position) != 0) return 1;
result->priority = priority;
position++; // Now sits on the first character of the ISOTIMESTAMP
2018-05-10 21:54:45 -07:00
// Parse ISOTIMESTAMP
// Note: does not parse a full iso timestamp, only the format above
2018-05-10 18:05:46 -07:00
struct Datefields date;
if(parse_datefield(message, &date, &position) != 0) {
return 1;
}
2018-05-10 22:40:00 -07:00
result->date = date;
2018-05-10 18:05:46 -07:00
position++; // position now at beginning of HOSTNAME field
2018-05-09 22:34:49 -07:00
2018-05-10 21:54:45 -07:00
// Parse APPLICATION
// filterlog: 5,,,1000000103,cpsw0,match....
char application[MSG_APP_LEN];
if(parse_application(message, application, &position) != 0) return 1;
memcpy(result->application, application, sizeof(application));
position += 1; // pass over the space
printf("remaining: '%s'\n", message + position);
return 0;
2018-05-09 23:12:17 -07:00
// char msg_remaining[4096];
// memset(&msg_remaining, '\0', sizeof(msg_remaining));
// memcpy(msg_remaining, &message[position], strlen(message) - position);
// printf("'%s'\n", msg_remaining);
// or
// memmove(message, &message[position], strlen(message) - position);
// printf("'%s'\n", message);
2018-05-09 20:42:19 -07:00
}
2018-05-09 22:34:49 -07:00
2018-05-10 21:54:45 -07:00
2018-05-09 20:42:19 -07:00
int main(int argc, char** argv) {
if (argc != 2) {
fprintf(stderr, "usage: %s <port>\n", argv[0]);
exit(1);
}
2018-05-10 22:40:00 -07:00
// Parse port number to integer
char* portend;
unsigned int portl;
portl = strtol(argv[1], &portend, 10);
if (portend == NULL) panic("strtol");
2018-05-09 20:42:19 -07:00
assert(portl < USHRT_MAX);
2018-05-10 22:40:00 -07:00
unsigned short port = (unsigned short)portl;
2018-05-09 20:42:19 -07:00
2018-05-10 22:40:00 -07:00
// Create socket
int sock_fd;
char msg[4096];
2018-05-09 20:42:19 -07:00
if ((sock_fd = socket(AF_INET, SOCK_DGRAM, 0)) < 0)
panic("socket");
2018-05-10 22:40:00 -07:00
// Set socket options
2018-05-09 20:42:19 -07:00
int one = 1;
2018-05-10 21:54:45 -07:00
setsockopt(sock_fd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one));
2018-05-09 20:42:19 -07:00
2018-05-10 22:40:00 -07:00
// Bind socket
struct sockaddr_in my_addr, my_peer_addr;
2018-05-09 20:42:19 -07:00
memset(&my_addr, 0, sizeof(my_addr));
my_addr.sin_family = AF_INET;
my_addr.sin_addr.s_addr = INADDR_ANY;
my_addr.sin_port = htons(port);
if (bind(sock_fd, (struct sockaddr*)&my_addr, sizeof(struct sockaddr_in)) < 0)
panic("bind failed");
2018-05-10 22:40:00 -07:00
socklen_t addrlen = sizeof(struct sockaddr_in);
2018-05-09 20:42:19 -07:00
while (1) {
2018-05-10 21:54:45 -07:00
int size_recvd;
2018-05-09 20:42:19 -07:00
if ((size_recvd = recvfrom(sock_fd, /* socket */
msg, /* buffer */
sizeof(msg), /* size of buffer */
0, /* flags = 0 */
(struct sockaddr*)&my_peer_addr, /* whos sending */
&addrlen /* length of buffer to receive peer info */
)) < 0)
panic("recvfrom");
2018-05-09 22:34:49 -07:00
assert(size_recvd < sizeof(msg)); // messages can't be longer than our buffer
2018-05-09 20:42:19 -07:00
assert(addrlen == sizeof(struct sockaddr_in));
2018-05-10 21:54:45 -07:00
printf("Got message: %s\n", msg);
2018-05-09 20:42:19 -07:00
// TODO should we check that msg[size_recvd] == \0 ?
// printf("From host %s src port %d got message %.*s\n",
// inet_ntoa(my_peer_addr.sin_addr), ntohs(my_peer_addr.sin_port), size_recvd, msg);
struct Message result;
// printf("XXXsize: %lu", sizeof(result)); // curious how big the struct gets
2018-05-09 22:34:49 -07:00
//printf("msg[size_recvd] is: %d", msg[size_recvd]);
msg[size_recvd] = '\0'; // We receive 1 full string at a time
if(parse_message(&result, msg) != 1) {
2018-05-10 22:40:00 -07:00
printf("message is valid:\n\tpriority: %d\n\tapplication: %s\n\tDate: %s %d %02d:%02d:%02d\n",
result.priority, result.application, result.date.month, result.date.day, result.date.hour,
result.date.minute, result.date.second);
2018-05-09 20:42:19 -07:00
}
}
exit(EXIT_SUCCESS);
}