| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 |
- #ifndef _PRO_HTTPD_H_
- #define _PRO_HTTPD_H_
- /*
- * Copyright (C) 2001-2007 by egnite Software GmbH. 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.
- * 3. Neither the name of the copyright holders nor the names of
- * contributors may be used to endorse or promote products derived
- * from this software without specific prior written permission.
- *
- * 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 OWNER 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.
- *
- * For additional information see http://www.ethernut.de/
- */
- /*!
- * \file pro/httpd.h
- * \brief HTTP protocol definitions for daemons.
- *
- * \verbatim
- *
- * $Log$
- * Revision 1.11 2008/08/11 07:00:24 haraldkipp
- * BSD types replaced by stdint types (feature request #1282721).
- *
- * Revision 1.10 2008/07/17 11:42:25 olereinhardt
- * Added prototype for new functions in cgi.c
- *
- * Revision 1.9 2008/01/31 09:28:18 haraldkipp
- * Expanded REQUEST structure to handle HTTP/1.1. Added MIMETYPES structure.
- *
- * Revision 1.8 2006/10/08 16:43:53 haraldkipp
- * Authentication info depended on static memory kept by the caller. Now a
- * local copy is held and NutClearAuth (which should have been named
- * NutHttpAuthClear, btw.) works correctly.
- *
- * Revision 1.7 2006/08/25 13:42:16 olereinhardt
- * added NutClearAuth(void); Thanks to Peter Sondermanns
- *
- * Revision 1.6 2006/03/16 15:25:34 haraldkipp
- * Changed human readable strings from u_char to char to stop GCC 4 from
- * nagging about signedness.
- *
- * Revision 1.5 2005/08/26 14:12:39 olereinhardt
- * Added NutHttpProcessPostQuery(FILE *stream, REQUEST * req)
- *
- * Revision 1.4 2005/08/05 11:23:11 olereinhardt
- * Added support to register a custom handler for mime types.
- * Added Server side include support and ASP support.
- *
- * Revision 1.3 2005/06/26 13:35:26 chaac
- * Added forgotten prototype for NutRegisterHttpRoot, fixes bug #1215853. Also fixed some prototypes when compiling with C++.
- *
- * Revision 1.2 2004/12/16 10:17:18 haraldkipp
- * Added Mikael Adolfsson's excellent parameter parsing routines.
- *
- * \endverbatim
- */
- #include <stdint.h>
- #include <stdio.h>
- #include <time.h>
- #include <compiler.h> // For NUT_DEPRECATED
- /*!
- * \addtogroup xgHTTPD
- */
- /*@{*/
- #define METHOD_GET 1
- #define METHOD_POST 2
- #define METHOD_HEAD 3
- #define HTTP_CONN_CLOSE 1
- #define HTTP_CONN_KEEP_ALIVE 2
- #define HTTP_OF_USE_HOST_TIME 0x00000001UL
- #define HTTP_OF_USE_FILE_TIME 0x00000002UL
- typedef struct _REQUEST REQUEST;
- /*!
- * \struct _REQUEST httpd.h pro/httpd.h
- * \brief HTTP request information structure.
- */
- struct _REQUEST {
- int req_method; /*!< \brief Request method. */
- int req_version; /*!< \brief 11 = HTTP/1.1, 10 = HTTP/1.0 */
- long req_length; /*!< \brief Content length */
- char *req_url; /*!< \brief URI portion of the GET or POST request line */
- char *req_query; /*!< \brief Argument string. */
- char *req_type; /*!< \brief Content type. */
- char *req_cookie; /*!< \brief Cookie. */
- char *req_auth; /*!< \brief Authorization info. */
- char *req_agent; /*!< \brief User agent. */
- char **req_qptrs; /*!< \brief Table of request parameters */
- int req_numqptrs; /*!< \brief Number of request parameters */
- time_t req_ims; /*!< \brief If-modified-since condition. */
- char *req_referer; /*!< \brief Misspelled HTTP referrer. */
- char *req_host; /*!< \brief Server host. */
- int req_connection; /*!< \brief Connection type, HTTP_CONN_. */
- char *req_encoding; /*!< \brief Accept encoding */
- };
- typedef struct _MIMETYPES MIMETYPES;
- struct _MIMETYPES {
- char *mtyp_ext;
- char *mtyp_type;
- void (*mtyp_handler)(FILE *stream, int fd, int file_len, char *http_root, REQUEST *req);
- };
- extern void NutHttpProcessRequest(FILE * stream);
- extern void NutHttpProcessQueryString(REQUEST * req);
- extern void NutHttpSendHeaderTop(FILE * stream, REQUEST * req, int status, char *title);
- extern void NutHttpSendHeaderBottom(FILE * stream, REQUEST * req, char *mime_type, long bytes);
- extern void NutHttpSendHeaderBot(FILE * stream, char *mime_type, long bytes) NUT_DEPRECATED;
- extern void NutHttpSendError(FILE * stream, REQUEST * req, int status);
- extern char *NutGetMimeType(char *name);
- extern void *NutGetMimeHandler(char *name);
- extern uint8_t NutSetMimeHandler(char *extension, void (*handler)(FILE *stream, int fd, int file_len, char *http_root, REQUEST *req));
- /*
- * Authorization
- */
- typedef struct _AUTHINFO AUTHINFO;
- /*!
- * \struct _AUTHINFO httpd.h pro/httpd.h
- * \brief HTTP authorization information structure.
- */
- struct _AUTHINFO {
- AUTHINFO *auth_next; /*!< \brief Link to next AUTHINFO structure */
- char *auth_dirname; /*!< \brief Pathname of protected directory */
- char *auth_login; /*!< \brief Login user and password, separated by a colon. */
- };
- extern int NutHttpAuthValidate(REQUEST * req);
- extern int NutRegisterAuth(const char *dirname, const char *login);
- extern void NutClearAuth(void);
- /*
- * CGI
- */
- typedef struct _CGIFUNCTION CGIFUNCTION;
- /*!
- * \struct _CGIFUNCTION httpd.h pro/httpd.h
- * \brief Registered CGI function.
- */
- struct _CGIFUNCTION {
- CGIFUNCTION *cgi_next; /*!< \brief Link to next CGIFUNCTION structure */
- char *cgi_name; /*!< \brief Name of this function */
- int (*cgi_func) (FILE *, REQUEST *); /*!< \brief Pointer to function code. */
- };
- /*@}*/
- /* Function prototypes. */
- extern void NutHttpSetOptionFlags(uint32_t flags);
- extern uint32_t NutHttpGetOptionFlags(void);
- extern int NutRegisterHttpRoot(char *path);
- extern void NutRegisterCgiBinPath(char *path);
- extern int NutRegisterCgi(char *name, int (*func) (FILE *, REQUEST *));
- extern int NutCgiCheckRequest(FILE * stream, REQUEST * req);
- extern void NutCgiProcessRequest(FILE * stream, REQUEST * req, int name_pos);
- extern void NutHttpProcessPostQuery(FILE *stream, REQUEST * req);
- extern char *NutHttpURLEncode(char *str);
- extern void NutHttpURLDecode(char *str);
- extern char *NutHttpGetParameter(REQUEST * req, char *name);
- extern int NutHttpGetParameterCount(REQUEST * req);
- extern char *NutHttpGetParameterName(REQUEST * req, int index);
- extern char *NutHttpGetParameterValue(REQUEST * req, int index);
- #endif
|