diff options
Diffstat (limited to 'libnet/inc')
-rw-r--r-- | libnet/inc/dns.h | 21 | ||||
-rw-r--r-- | libnet/inc/http.h | 82 | ||||
-rw-r--r-- | libnet/inc/ip.h | 12 | ||||
-rw-r--r-- | libnet/inc/net.h | 73 |
4 files changed, 0 insertions, 188 deletions
diff --git a/libnet/inc/dns.h b/libnet/inc/dns.h deleted file mode 100644 index d6673e6..0000000 --- a/libnet/inc/dns.h +++ /dev/null @@ -1,21 +0,0 @@ -// MIT License, Copyright (c) 2020 Marvin Borner - -#ifndef DNS_H -#define DNS_H - -#include <def.h> - -#define DNS_NOERROR 0 -#define DNS_FORMERR 1 -#define DNS_SERVFAIL 2 -#define DNS_NXDOMAIN 3 -#define DNS_NOTIMP 4 -#define DNS_REFUSED 5 -#define DNS_YXDOMAIN 6 -#define DNS_XRRSET 7 -#define DNS_NOTAUTH 8 -#define DNS_NOTZONE 9 - -u32 dns_request(const char *name); - -#endif diff --git a/libnet/inc/http.h b/libnet/inc/http.h deleted file mode 100644 index 45709c6..0000000 --- a/libnet/inc/http.h +++ /dev/null @@ -1,82 +0,0 @@ -// MIT License, Copyright (c) 2020 Marvin Borner - -#ifndef HTTP_H -#define HTTP_H - -#include <def.h> -#include <socket.h> - -char *http_data(char *response); -char *http_header_key(char *r, const char *key); -u32 http_content_length(char *r); -char *http_code(char *r); -u32 http_response(const char *http_code, u32 content_length, const char *data, char *resp); -char *http_query_get(const char *url, const char *path); -char *http_query_path(const char *query, char *path); -char *http_receive(struct socket *socket); - -#define HTTP_100 "100 Continue" -#define HTTP_101 "101 Switching Protocol" -#define HTTP_102 "102 Processing" -#define HTTP_103 "103 Early Hints" -#define HTTP_200 "200 OK" -#define HTTP_201 "201 Created" -#define HTTP_202 "202 Accepted" -#define HTTP_203 "203 Non-Authoritative Information" -#define HTTP_204 "204 No Content" -#define HTTP_205 "205 Reset Content" -#define HTTP_206 "206 Partial Content" -#define HTTP_207 "207 Multi-Status" -#define HTTP_208 "208 Already Reported" -#define HTTP_226 "226 IM Used" -#define HTTP_300 "300 Multiple Choice" -#define HTTP_301 "301 Moved Permanently" -#define HTTP_302 "302 Found" -#define HTTP_303 "303 See Other" -#define HTTP_304 "304 Not Modified" -#define HTTP_305 "305 Use Proxy" -#define HTTP_306 "306 Unused" -#define HTTP_307 "307 Temporary Redirect" -#define HTTP_308 "308 Permanent Redirect" -#define HTTP_400 "400 Bad Request" -#define HTTP_401 "401 Unauthorized" -#define HTTP_402 "402 Payment Required" -#define HTTP_403 "403 Forbidden" -#define HTTP_404 "404 Not Found" -#define HTTP_405 "405 Method Not Allowed" -#define HTTP_406 "406 Not Acceptable" -#define HTTP_407 "407 Proxy Authentication Required" -#define HTTP_408 "408 Request Timeout" -#define HTTP_409 "409 Conflict" -#define HTTP_410 "410 Gone" -#define HTTP_411 "411 Length Required" -#define HTTP_412 "412 Precondition Failed" -#define HTTP_413 "413 Payload Too Large" -#define HTTP_414 "414 URI Too Long" -#define HTTP_415 "415 Unsupported Media Type" -#define HTTP_416 "416 Range Not Satisfiable" -#define HTTP_417 "417 Expectation Failed" -#define HTTP_418 "418 I'm a teapot" -#define HTTP_421 "421 Misdirected Request" -#define HTTP_422 "422 Unprocessable Entity" -#define HTTP_423 "423 Locked" -#define HTTP_424 "424 Failed Dependency" -#define HTTP_425 "425 Too Early" -#define HTTP_426 "426 Upgrade Required" -#define HTTP_428 "428 Precondition Required" -#define HTTP_429 "429 Too Many Request" -#define HTTP_431 "431 Request Header Fields Too Large" -#define HTTP_451 "451 Unavailable For Legal Reasons" -#define HTTP_500 "500 Internal Server Error" -#define HTTP_501 "501 Not Implemented" -#define HTTP_502 "502 Bad Gateway" -#define HTTP_503 "503 Service Unavailable" -#define HTTP_504 "504 Gateway Timeout" -#define HTTP_505 "505 HTTP Version Not Supported" -#define HTTP_506 "506 Variant Also Negotiates" -#define HTTP_507 "507 Insufficient Storage" -#define HTTP_508 "508 Loop Detected" -#define HTTP_510 "510 Not Extended" -#define HTTP_511 "511 Network Authentication Required" - -#endif diff --git a/libnet/inc/ip.h b/libnet/inc/ip.h deleted file mode 100644 index e06aba2..0000000 --- a/libnet/inc/ip.h +++ /dev/null @@ -1,12 +0,0 @@ -// MIT License, Copyright (c) 2020 Marvin Borner -// Most net/ip handlers are in the kernel space -// This is a userspace wrapper for some things - -#ifndef IP_H -#define IP_H - -#include <def.h> - -int ip_pton(const char *src, u32 *dst); - -#endif diff --git a/libnet/inc/net.h b/libnet/inc/net.h deleted file mode 100644 index e5190c7..0000000 --- a/libnet/inc/net.h +++ /dev/null @@ -1,73 +0,0 @@ -// MIT License, Copyright (c) 2020 Marvin Borner - -#ifndef NET_H -#define NET_H - -#include <dns.h> -#include <ip.h> -#include <print.h> -#include <socket.h> -#include <sys.h> - -#define htonl(l) \ - ((((l)&0xff) << 24) | (((l)&0xff00) << 8) | (((l)&0xff0000) >> 8) | \ - (((l)&0xff000000) >> 24)) -#define htons(s) ((((s)&0xff) << 8) | (((s)&0xff00) >> 8)) -#define ntohl(l) htonl((l)) -#define ntohs(s) htons((s)) -#define ip(a, b, c, d) \ - ((((a)&0xff) << 24) | (((b)&0xff) << 16) | (((c)&0xff) << 8) | (((d)&0xff) << 0)) - -#define NET_TIMEOUT 2000 -#define NET_NO_TIMEOUT 0 - -static inline int net_data_available(struct socket *socket) -{ - return (socket && socket->packets && socket->packets->head && socket->packets->head->data && - ((struct socket_data *)socket->packets->head->data)->length > 0); -} - -#define net_open(type) (void *)sys1(SYS_NET_OPEN, (int)(type)) -#define net_send(socket, data, len) (void)sys3(SYS_NET_SEND, (int)(socket), (int)(data), (int)(len)) - -static inline int net_connect(struct socket *socket, u32 ip_addr, u16 dst_port, u32 timeout) -{ - if (!socket || !ip_addr || !dst_port) - return 0; - sys3(SYS_NET_CONNECT, (int)(socket), (int)(ip_addr), (int)(dst_port)); - int time = time(); - while (socket->state != S_CONNECTED) { - if (socket->state == S_FAILED || (timeout && time() - time >= timeout)) - return 0; - yield(); - } - return 1; -} - -static inline int net_close(struct socket *socket) -{ - if (!socket) - return 0; - int res = 0; - while (socket->state == S_CLOSING || !(res = (int)sys1(SYS_NET_CLOSE, (int)(socket)))) - yield(); - return res; -} - -static inline int net_receive(struct socket *socket, void *buf, u32 len, u32 timeout) -{ - if (!socket || !buf || !len) - return 0; - - int time = time(); - while (!net_data_available(socket)) { - if (socket->state == S_FAILED || (timeout && time() - time >= timeout)) - return 0; - yield(); - } - - // TODO: Only return once all segments are received? - return (int)sys3(SYS_NET_RECEIVE, (int)(socket), (int)(buf), (int)(len)); -} - -#endif |