X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fuhttpd.git;a=blobdiff_plain;f=uhttpd.h;h=590d486d5aaa29bb48999bb3fb74bb62f83c3275;hp=24ad83de82718e329353e3530735b7c35f5083c6;hb=f8573c7b4c3a9e1a67cae787690f27a976aee11c;hpb=58c5fd1f9a72db878e29958a4c4e1b65db5b2e07 diff --git a/uhttpd.h b/uhttpd.h index 24ad83d..590d486 100644 --- a/uhttpd.h +++ b/uhttpd.h @@ -29,11 +29,17 @@ #include #include #include +#ifdef HAVE_UBUS +#include +#include +#endif +#ifdef HAVE_TLS +#include +#endif #include "utils.h" #define UH_LIMIT_CLIENTS 64 -#define UH_LIMIT_HEADERS 64 #define __enum_header(_name) HDR_##_name, #define __blobmsg_header(_name) [HDR_##_name] = { .name = #_name, .type = BLOBMSG_TYPE_STRING }, @@ -47,6 +53,10 @@ struct config { const char *error_handler; const char *cgi_prefix; const char *cgi_path; + const char *lua_handler; + const char *lua_prefix; + const char *ubus_prefix; + const char *ubus_socket; int no_symlinks; int no_dirlists; int network_timeout; @@ -59,9 +69,9 @@ struct config { struct auth_realm { struct list_head list; - char *path; - char *user; - char *pass; + const char *path; + const char *user; + const char *pass; }; enum http_method { @@ -80,7 +90,9 @@ struct http_request { enum http_method method; enum http_version version; int redirect_status; - char *url; + int content_length; + bool expect_cont; + uint8_t transfer_chunked; const struct auth_realm *realm; }; @@ -94,8 +106,8 @@ enum client_state { struct interpreter { struct list_head list; - char *path; - char *ext; + const char *path; + const char *ext; }; struct path_info { @@ -104,9 +116,10 @@ struct path_info { const char *name; const char *info; const char *query; - int redirected; + const char *auth; + bool redirected; struct stat stat; - struct interpreter *ip; + const struct interpreter *ip; }; struct env_var { @@ -128,12 +141,53 @@ struct relay { void (*close)(struct relay *r, int ret); }; +struct dispatch_proc { + struct blob_buf hdr; + struct uloop_fd wrfd; + struct relay r; + int status_code; + char *status_msg; +}; + struct dispatch_handler { struct list_head list; bool (*check_url)(const char *url); bool (*check_path)(struct path_info *pi, const char *url); - void (*handle_request)(struct client *cl, const char *url, struct path_info *pi); + void (*handle_request)(struct client *cl, char *url, struct path_info *pi); +}; + +#ifdef HAVE_UBUS +struct dispatch_ubus { + struct ubus_request req; + struct json_tokener *jstok; + struct json_object *jsobj; + uint32_t obj; + int post_len; + const char *func; + bool req_pending; + bool header_sent; +}; +#endif + +struct dispatch { + int (*data_send)(struct client *cl, const char *data, int len); + void (*data_done)(struct client *cl); + void (*write_cb)(struct client *cl); + void (*close_fds)(struct client *cl); + void (*free)(struct client *cl); + bool data_blocked; + + union { + struct { + struct blob_attr **hdr; + int fd; + } file; + struct dispatch_proc proc; +#ifdef HAVE_UBUS + struct dispatch_ubus ubus; +#endif + }; }; struct client { @@ -143,35 +197,18 @@ struct client { struct ustream *us; struct ustream_fd sfd; #ifdef HAVE_TLS - struct ustream_ssl stream_ssl; + struct ustream_ssl ssl; #endif struct uloop_timeout timeout; enum client_state state; + bool tls; struct http_request request; - struct sockaddr_in6 servaddr; - struct sockaddr_in6 peeraddr; + struct uh_addr srv_addr, peer_addr; struct blob_buf hdr; - - struct { - void (*write_cb)(struct client *cl); - void (*close_fds)(struct client *cl); - void (*free)(struct client *cl); - union { - struct { - struct blob_attr **hdr; - int fd; - } file; - struct { - struct blob_buf hdr; - struct relay r; - int status_code; - char *status_msg; - } proc; - }; - } dispatch; + struct dispatch dispatch; }; extern char uh_buf[4096]; @@ -183,7 +220,7 @@ extern struct dispatch_handler cgi_dispatch; void uh_index_add(const char *filename); -void uh_accept_client(int fd); +bool uh_accept_client(int fd, bool tls); void uh_unblock_listeners(void); void uh_setup_listeners(void); @@ -204,8 +241,12 @@ void __printf(4, 5) uh_client_error(struct client *cl, int code, const char *summary, const char *fmt, ...); void uh_handle_request(struct client *cl); +void client_poll_post_data(struct client *cl); +void uh_client_read_cb(struct client *cl); +void uh_client_notify_state(struct client *cl); void uh_auth_add(const char *path, const char *user, const char *pass); +bool uh_auth_check(struct client *cl, struct path_info *pi); void uh_close_listen_fds(void); void uh_close_fds(void); @@ -218,7 +259,10 @@ void uh_relay_close(struct relay *r, int ret); void uh_relay_free(struct relay *r); struct env_var *uh_get_process_vars(struct client *cl, struct path_info *pi); -bool uh_create_process(struct client *cl, struct path_info *pi, - void (*cb)(struct client *cl, struct path_info *pi, int fd)); +bool uh_create_process(struct client *cl, struct path_info *pi, char *url, + void (*cb)(struct client *cl, struct path_info *pi, char *url)); + +int uh_plugin_init(const char *name); +void uh_plugin_post_init(void); #endif