source: mainline/uspace/lib/http/src/request.c@ 4e2d387

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 4e2d387 was 1433ecda, checked in by Jiri Svoboda <jiri@…>, 7 years ago

Fix cstyle: make ccheck-fix and commit only files where all the changes are good.

  • Property mode set to 100644
File size: 3.9 KB
Line 
1/*
2 * Copyright (c) 2013 Martin Sucha
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup http
30 * @{
31 */
32/**
33 * @file
34 */
35
36#include <errno.h>
37#include <stdio.h>
38#include <stdlib.h>
39#include <str.h>
40#include <macros.h>
41
42#include <inet/tcp.h>
43
44#include <http/http.h>
45
46#define HTTP_METHOD_LINE "%s %s HTTP/1.1\r\n"
47#define HTTP_REQUEST_LINE "\r\n"
48
49http_request_t *http_request_create(const char *method, const char *path)
50{
51 http_request_t *req = malloc(sizeof(http_request_t));
52 if (req == NULL)
53 return NULL;
54
55 req->method = str_dup(method);
56 if (req->method == NULL) {
57 free(req);
58 return NULL;
59 }
60
61 req->path = str_dup(path);
62 if (req->path == NULL) {
63 free(req->method);
64 free(req);
65 return NULL;
66 }
67
68 http_headers_init(&req->headers);
69
70 return req;
71}
72
73void http_request_destroy(http_request_t *req)
74{
75 free(req->method);
76 free(req->path);
77 http_headers_clear(&req->headers);
78 free(req);
79}
80
81static ssize_t http_encode_method(char *buf, size_t buf_size,
82 const char *method, const char *path)
83{
84 if (buf == NULL) {
85 return printf_size(HTTP_METHOD_LINE, method, path);
86 } else {
87 return snprintf(buf, buf_size, HTTP_METHOD_LINE, method, path);
88 }
89}
90
91errno_t http_request_format(http_request_t *req, char **out_buf,
92 size_t *out_buf_size)
93{
94 /* Compute the size of the request */
95 ssize_t meth_size = http_encode_method(NULL, 0, req->method, req->path);
96 if (meth_size < 0)
97 return EINVAL;
98 size_t size = meth_size;
99
100 http_headers_foreach(req->headers, header) {
101 ssize_t header_size = http_header_encode(header, NULL, 0);
102 if (header_size < 0)
103 return EINVAL;
104 size += header_size;
105 }
106 size += str_length(HTTP_REQUEST_LINE);
107
108 char *buf = malloc(size);
109 if (buf == NULL)
110 return ENOMEM;
111
112 char *pos = buf;
113 size_t pos_size = size;
114 ssize_t written = http_encode_method(pos, pos_size, req->method, req->path);
115 if (written < 0) {
116 free(buf);
117 return EINVAL;
118 }
119 pos += written;
120 pos_size -= written;
121
122 http_headers_foreach(req->headers, header) {
123 written = http_header_encode(header, pos, pos_size);
124 if (written < 0) {
125 free(buf);
126 return EINVAL;
127 }
128 pos += written;
129 pos_size -= written;
130 }
131
132 size_t rlsize = str_size(HTTP_REQUEST_LINE);
133 memcpy(pos, HTTP_REQUEST_LINE, rlsize);
134 pos_size -= rlsize;
135 assert(pos_size == 0);
136
137 *out_buf = buf;
138 *out_buf_size = size;
139 return EOK;
140}
141
142errno_t http_send_request(http_t *http, http_request_t *req)
143{
144 char *buf = NULL;
145 size_t buf_size = 0;
146
147 errno_t rc = http_request_format(req, &buf, &buf_size);
148 if (rc != EOK)
149 return rc;
150
151 rc = tcp_conn_send(http->conn, buf, buf_size);
152 free(buf);
153
154 return rc;
155}
156
157/** @}
158 */
Note: See TracBrowser for help on using the repository browser.