volta.h
author Mahlon E. Smith <mahlon@laika.com>
Mon, 31 Oct 2011 17:17:07 -0700
changeset 13 23a242d7b7fa
parent 12 191b3c25974a
child 14 51eb85ae4de4
permissions -rw-r--r--
1st iteration of volta actually doing something. Process the request, find the best matching rule, and rewrite the request. Without the DB queries, volta was parsing over 750k requests a second. Currently, it's down to 129.5 with 1161 rules in place. Yikes. I may need to re-evaluate some design choices here.

/* vim: set noet nosta sw=4 ts=4 ft=c : */
/*
Copyright (c) 2011, Mahlon E. Smith <mahlon@martini.nu>
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

    * Redistributions of source code must retain the above copyright
      notice, this list of conditions and the following disclaimer.

    * Redistributions in binary form must reproduce the above copyright
      notice, this list of conditions and the following disclaimer in the
      documentation and/or other materials provided with the distribution.

    * Neither the name of Mahlon E. Smith nor the names of his
      contributors may be used to endorse or promote products derived
      from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

#ifndef _VOLTA_H
#define _VOLTA_H

#ifndef PROG
#define PROG    "volta"
#endif
#define VERSION "$Version$" /* expanded by mercurial */

#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <errno.h>
#include <string.h>
#include <unistd.h>
#include <time.h>
#include <sys/stat.h>
#include <signal.h>

#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>

#ifdef DEBUG
#include <google/profiler.h>
#endif

/* Default line size we accept from squid, longer lines (huge URLs?) malloc. */
#define LINE_BUFSIZE 2048
/* Ceiling for how many bytes can be allocated at one for a single line. */
#define LINE_MAX 256000 /* 250k */

/* Redirect types */
#define REDIR_TEMPORARY   0
#define REDIR_PERMANENT   1
#define REDIR_TRANSPARENT 2

/* Aid debugging */
#define LOC __FILE__, __LINE__

/*
 * a global struct for easy access to common vars 
 *
 */
struct v_globals {
	unsigned short int debugmode; /* debug level */
	char dbname[128];             /* path to database file */
	struct sqlite3 *db;           /* database handle */

	/* prepared statements */
	struct {
		struct sqlite3_stmt *match_request;
		struct sqlite3_stmt *get_rewrite_rule;
	} db_stmt;

	struct {
		time_t start;            /* start time */
		unsigned long int lines; /* line count for determining speed */
	} timer;
};
extern struct v_globals v;        /* defined in main.c */

/*
 * The parsed attributes from the request line, as given to us by squid.
 *
 */
typedef struct request {
	char   *scheme;
	char   *host;
	char   *tld;
	char   *path;
	unsigned short int port;
	struct in_addr *client_ip;
	char   *user;
	char   *method;

	struct {
		char *scheme_start;
		char *host_start;
		char *port_start;
		char *path_start;
		char *meth_start;
		char *c_ip_start;
		unsigned short int scheme_length;
		unsigned short int host_length;
		unsigned short int port_length;
		unsigned short int path_length;
		unsigned short int meth_length;
		unsigned short int c_ip_length;
	} tokens;
} request;

/*
 * The URL elements to rewrite a user's request into.
 *
 */
typedef struct rewrite {
	char *scheme;
	char *host;
	char *path;
	unsigned short int port;
	unsigned short int redir;
} rewrite;


/*
 *
 * Function prototypes
 *
 */
int getopt( int, char * const [], const char *);

void usage( char * );
void debug( int, char *, int, const char *, ... );
void out( const char * );
void reverse_str( char * );
void report_speed( void );
char *slurp_file( char * );
char *extend_line( char *, const char * );
char *copy_string_token( char *, unsigned short int );
struct in_addr *copy_ipv4_token( char *, unsigned short int );

void shutdown_handler( int );
void shutdown_actions( void );
int accept_loop( void );
void process( char * );
request *parse( char * );
request *init_request( void );
void populate_request( request * );
void parse_tld( request * );
void parse_port( request * );
void finish_request( request * );

#endif