gmid/gmid.h

251 lines
6.2 KiB
C
Raw Normal View History

2020-12-24 16:49:55 +01:00
/*
* Copyright (c) 2020 Omar Polo <op@omarpolo.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
2020-12-24 16:48:39 +01:00
#ifndef GMID_H
#define GMID_H
2021-01-24 19:53:26 +01:00
#include <sys/socket.h>
#include <sys/types.h>
2020-12-24 16:48:39 +01:00
#include <arpa/inet.h>
#include <netinet/in.h>
2021-01-24 19:53:26 +01:00
#include <dirent.h>
2020-12-24 16:48:39 +01:00
#include <poll.h>
#include <stdio.h>
#include <stdlib.h>
#include <syslog.h>
#include <tls.h>
#include <unistd.h>
#include "config.h"
2020-12-24 16:48:39 +01:00
#ifndef INFTIM
# define INFTIM -1
#endif
#define GEMINI_URL_LEN (1024+3) /* URL max len + \r\n + \0 */
#define SUCCESS 20
#define TEMP_REDIRECT 30
2020-12-24 16:48:39 +01:00
#define TEMP_FAILURE 40
#define NOT_FOUND 51
2021-01-11 15:45:57 +01:00
#define PROXY_REFUSED 53
2020-12-24 16:48:39 +01:00
#define BAD_REQUEST 59
#define MAX_USERS 64
#define HOSTSLEN 64
2021-01-24 15:11:40 +01:00
#define LOCLEN 32
/* maximum hostname and label length, +1 for the NUL-terminator */
#define DOMAIN_NAME_LEN (253+1)
#define LABEL_LEN (63+1)
2021-01-27 11:47:49 +01:00
2021-01-15 15:03:45 +01:00
#define LOGE(c, fmt, ...) logs(LOG_ERR, c, fmt, __VA_ARGS__)
#define LOGW(c, fmt, ...) logs(LOG_WARNING, c, fmt, __VA_ARGS__)
#define LOGN(c, fmt, ...) logs(LOG_NOTICE, c, fmt, __VA_ARGS__)
#define LOGI(c, fmt, ...) logs(LOG_INFO, c, fmt, __VA_ARGS__)
#define LOGD(c, fmt, ...) logs(LOG_DEBUG, c, fmt, __VA_ARGS__)
2021-01-24 15:11:40 +01:00
struct location {
2021-01-27 16:53:30 +01:00
const char *match;
const char *lang;
const char *default_mime;
const char *index;
2021-01-24 19:53:26 +01:00
int auto_index; /* 0 auto, -1 off, 1 on */
2021-01-24 15:11:40 +01:00
};
struct vhost {
const char *domain;
const char *cert;
const char *key;
const char *dir;
const char *cgi;
int dirfd;
2021-01-24 15:11:40 +01:00
struct location locations[LOCLEN];
};
extern struct vhost hosts[HOSTSLEN];
2021-01-18 19:48:37 +01:00
struct etm { /* extension to mime */
const char *mime;
const char *ext;
};
struct mime {
2021-01-18 19:48:37 +01:00
struct etm *t;
size_t len;
size_t cap;
};
struct conf {
2021-01-25 11:30:07 +01:00
int port;
int ipv6;
uint32_t protos;
struct mime mime;
char *chroot;
char *user;
};
extern struct conf conf;
extern int exfd;
struct iri {
char *schema;
char *host;
char *port;
uint16_t port_no;
char *path;
char *query;
char *fragment;
};
struct parser {
char *iri;
struct iri *parsed;
const char *err;
};
2020-12-24 16:48:39 +01:00
enum {
S_HANDSHAKE,
2020-12-24 16:48:39 +01:00
S_OPEN,
S_INITIALIZING,
S_SENDING_FILE,
2021-01-24 19:53:26 +01:00
S_SENDING_DIR,
S_SENDING_CGI,
2020-12-24 16:48:39 +01:00
S_CLOSING,
};
struct client {
struct tls *ctx;
char req[GEMINI_URL_LEN];
struct iri iri;
2021-01-27 11:47:49 +01:00
char domain[DOMAIN_NAME_LEN];
int state, next;
2020-12-24 16:48:39 +01:00
int code;
const char *meta;
int fd, waiting_on_child;
char sbuf[1024]; /* static buffer */
void *buf, *i; /* mmap buffer */
ssize_t len, off; /* mmap/static buffer */
2021-01-24 19:53:26 +01:00
DIR *dir;
2021-01-10 23:29:22 +01:00
struct sockaddr_storage addr;
2021-01-15 16:21:51 +01:00
struct vhost *host; /* host she's talking to */
2020-12-24 16:48:39 +01:00
};
enum {
FILE_EXISTS,
FILE_EXECUTABLE,
FILE_DIRECTORY,
FILE_MISSING,
};
/* gmid.c */
__attribute__((format (printf, 1, 2)))
__attribute__((__noreturn__))
void fatal(const char*, ...);
__attribute__((format (printf, 3, 4)))
void logs(int, struct client*, const char*, ...);
void log_request(struct client*, char*, size_t);
2021-01-15 15:03:45 +01:00
void sig_handler(int);
void gen_certificate(const char*, const char*, const char*);
void mkdirs(const char*);
char *data_dir(void);
void load_local_cert(const char*, const char*);
2021-01-25 11:30:07 +01:00
void load_vhosts(void);
2021-01-21 15:49:11 +01:00
int make_socket(int, int);
2021-01-25 11:30:07 +01:00
void setup_tls(void);
2021-01-21 15:49:11 +01:00
int listener_main(void);
2021-01-24 15:11:40 +01:00
void init_config(void);
2021-01-25 11:30:07 +01:00
void drop_priv(void);
2020-12-24 16:48:39 +01:00
void usage(const char*);
2021-01-15 16:21:51 +01:00
/* provided by lex/yacc */
extern FILE *yyin;
extern int yylineno;
extern int yyparse(void);
extern int yylex(void);
2021-01-27 17:45:45 +01:00
void yyerror(const char*);
int parse_portno(const char*);
void parse_conf(const char*);
/* mime.c */
void init_mime(struct mime*);
void add_mime(struct mime*, const char*, const char*);
void load_default_mime(struct mime*);
const char *mime(struct vhost*, const char*);
/* server.c */
2021-01-24 15:11:40 +01:00
const char *vhost_lang(struct vhost*, const char*);
const char *vhost_default_mime(struct vhost*, const char*);
const char *vhost_index(struct vhost*, const char*);
2021-01-24 19:53:26 +01:00
int vhost_auto_index(struct vhost*, const char*);
int check_path(struct client*, const char*, int*);
void open_file(struct pollfd*, struct client*);
2021-01-24 19:53:26 +01:00
void load_file(struct pollfd*, struct client*);
void check_for_cgi(char *, char*, struct pollfd*, struct client*);
void mark_nonblock(int);
void handle_handshake(struct pollfd*, struct client*);
void handle_open_conn(struct pollfd*, struct client*);
void start_reply(struct pollfd*, struct client*, int, const char*);
void start_cgi(const char*, const char*, const char*, struct pollfd*, struct client*);
void send_file(struct pollfd*, struct client*);
2021-01-24 19:53:26 +01:00
void open_dir(struct pollfd*, struct client*);
void redirect_canonical_dir(struct pollfd*, struct client*);
int read_next_dir_entry(struct client*);
void send_directory_listing(struct pollfd*, struct client*);
void cgi_poll_on_child(struct pollfd*, struct client*);
void cgi_poll_on_client(struct pollfd*, struct client*);
void handle_cgi(struct pollfd*, struct client*);
2021-01-22 14:45:27 +01:00
void close_conn(struct pollfd*, struct client*);
void do_accept(int, struct tls*, struct pollfd*, struct client*);
void handle(struct pollfd*, struct client*);
void loop(struct tls*, int, int);
/* ex.c */
int send_string(int, const char*);
int recv_string(int, char**);
int send_vhost(int, struct vhost*);
int recv_vhost(int, struct vhost**);
int send_fd(int, int);
int recv_fd(int);
int executor_main(int);
2021-01-15 15:03:45 +01:00
/* sandbox.c */
2021-01-21 15:49:11 +01:00
void sandbox(void);
2021-01-15 15:03:45 +01:00
/* utf8.c */
int valid_multibyte_utf8(struct parser*);
2021-01-27 11:47:49 +01:00
char *utf8_nth(char*, size_t);
2021-01-11 14:08:00 +01:00
/* iri.c */
int parse_iri(char*, struct iri*, const char**);
2021-01-27 16:05:16 +01:00
int trim_req_iri(char*, const char **);
2021-01-27 11:47:49 +01:00
/* puny.c */
2021-01-27 12:21:23 +01:00
int puny_decode(const char*, char*, size_t);
2021-01-27 11:47:49 +01:00
2021-01-27 16:35:09 +01:00
/* utils.c */
int starts_with(const char*, const char*);
int ends_with(const char*, const char*);
ssize_t filesize(int);
2020-12-24 16:48:39 +01:00
#endif