src/server/daemon/httplistener.h

Sat, 03 Dec 2022 12:27:00 +0100

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Sat, 03 Dec 2022 12:27:00 +0100
changeset 445
834351da593b
parent 444
96d2ba2f28db
child 446
240ed6f945ca
permissions
-rw-r--r--

improve acceptor error handling

/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 *
 * Copyright 2013 Olaf Wintermann. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 *   1. Redistributions of source code must retain the above copyright
 *      notice, this list of conditions and the following disclaimer.
 *
 *   2. 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.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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 COPYRIGHT HOLDER OR 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 HTTPLISTENER_H
#define	HTTPLISTENER_H

#include "sessionhandler.h"
#include "threadpools.h"
#include "config.h"
#include "../util/systems.h"

#include <openssl/bio.h> 
#include <openssl/ssl.h> 
#include <openssl/err.h> 

#ifdef	__cplusplus
extern "C" {
#endif

/* HttpListener typedef in nsapi.h */
typedef struct _acceptor         Acceptor;
typedef struct _listener_config  ListenerConfig;
typedef struct _http_ssl         HttpSSL;

typedef struct _ws_socket        WSSocket;




union vs {
    VirtualServer    *vs;
    char             *vs_name;
};
struct _listener_config {
    ServerConfiguration  *cfg;
    cxmutstr             name;
    cxmutstr             vs;
    cxmutstr             threadpool;
    char                 *address;
    int                  port;
    int                  nacceptors;
    WSBool               blockingio;
    WSBool               ssl;
    cxstring             certfile;
    cxstring             privkeyfile;
    cxstring             chainfile;
    cxstring             disable_proto;
};

struct _acceptor {
    pthread_t      tid;
    HttpListener   *listener;
    WSBool         ipv6;
    WSBool         exit;
    WSBool         running;
};

struct _http_listener {
    ServerConfiguration  *cfg;
    cxmutstr             name;
    union vs             default_vs;
    int                  port;
    WSSocket             *server_socket;
    WSSocket             *server_socket6;
    SessionHandler       *session_handler;
    threadpool_t         *threadpool;
    HttpListener         *next;
    Acceptor             **acceptors;
    Acceptor             **acceptors6;
    int                  nacceptors;
    int                  running;
    HttpSSL              *ssl;
};

struct _http_ssl {
    /*
    unsigned char *cert;
    size_t        certlen;
    unsigned char *privkey;
    size_t        privkeylen;
    unsigned char *chain;
    size_t        chainlen;
    */
    
    SSL_CTX       *sslctx;
    
    // TODO: ssl/tls cipher, ... config
};

struct _ws_socket {
    int socket;
    WSBool listening;
    HttpSSL *ssl;
    uint32_t ref; // reference counter
};

/*
 * global listener init function
 * must be called before any other listener initialization
 */
int http_listener_global_init(void);

int start_all_listener();

HttpListener* http_listener_create(ListenerConfig *conf);

int http_listener_start(HttpListener *listener);


/*
 * returns true of l1 and l2 share the same socket
 */
int http_listener_socket_eq(HttpListener *l1, HttpListener *l2);

/*
 * set the succeeding listener
 */
void http_listener_set_next(HttpListener *listener, HttpListener *next);

/*
 * shutdown all acceptor threads
 */
void http_listener_shutdown_acceptors(HttpListener *listener);

Acceptor* acceptor_new(HttpListener *listener);

void acceptor_start(Acceptor *a);

void* acceptor_thread(Acceptor *a);

void wssocket_ref(WSSocket *ws);
void wssocket_unref(WSSocket *ws);


#ifdef	__cplusplus
}
#endif

#endif	/* HTTPLISTENER_H */

mercurial