2 * HTTP handling functions.
4 * Copyright 2003 Ferenc Wagner
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 open_http (const char *server
)
31 struct sockaddr_in sa
;
34 report (R_STATUS
, "Opening HTTP connection to %s", server
);
35 if (WSAStartup (MAKEWORD (2,2), &wsad
)) return INVALID_SOCKET
;
37 sa
.sin_family
= AF_INET
;
38 sa
.sin_port
= htons (80);
39 sa
.sin_addr
.s_addr
= inet_addr (server
);
40 if (sa
.sin_addr
.s_addr
== INADDR_NONE
) {
41 struct hostent
*host
= gethostbyname (server
);
43 report (R_ERROR
, "Hostname lookup failed for %s", server
);
46 sa
.sin_addr
.s_addr
= ((struct in_addr
*)host
->h_addr
)->s_addr
;
48 s
= socket (AF_INET
, SOCK_STREAM
, IPPROTO_TCP
);
49 if (s
== INVALID_SOCKET
) {
50 report (R_ERROR
, "Can't open network socket: %d",
54 if (!connect (s
, (struct sockaddr
*)&sa
, sizeof (struct sockaddr_in
)))
57 report (R_ERROR
, "Can't connect: %d", WSAGetLastError ());
61 return INVALID_SOCKET
;
69 ret
= closesocket (s
);
70 return (WSACleanup () || ret
);
74 send_buf (SOCKET s
, const char *buf
, size_t length
)
79 sent
= send (s
, buf
, length
, 0);
80 if (sent
== SOCKET_ERROR
) return 1;
88 send_str (SOCKET s
, ...)
96 p
= vstrmake (&len
, ap
);
99 ret
= send_buf (s
, p
, len
);
105 send_file (const char *name
)
110 char buffer
[BUFLEN
+1];
111 size_t bytes_read
, total
, filesize
;
116 #define SEP "--8<--cut-here--8<--"
117 static const char head
[] = "POST /submit HTTP/1.0\r\n"
118 "Host: test.winehq.org\r\n"
119 "User-Agent: Winetest Shell\r\n"
120 "Content-Type: multipart/form-data; boundary=\"" SEP
"\"\r\n"
121 "Content-Length: %u\r\n\r\n";
122 static const char body1
[] = "--" SEP
"\r\n"
123 "Content-Disposition: form-data; name=\"reportfile\"; filename=\"%s\"\r\n"
124 "Content-Type: application/octet-stream\r\n\r\n";
125 static const char body2
[] = "\r\n--" SEP
"\r\n"
126 "Content-Disposition: form-data; name=\"submit\"\r\n\r\n"
130 s
= open_http ("test.winehq.org");
131 if (s
== INVALID_SOCKET
) return 1;
133 f
= fopen (name
, "rb");
135 report (R_WARNING
, "Can't open file '%s': %d", name
, errno
);
138 fseek (f
, 0, SEEK_END
);
139 filesize
= ftell (f
);
140 if (filesize
> 1024*1024) {
142 "File too big (%.1f MB > 1 MB); submitting partial report.",
143 filesize
/1024.0/1024);
144 filesize
= 1024*1024;
146 fseek (f
, 0, SEEK_SET
);
148 report (R_STATUS
, "Sending header");
149 str
= strmake (&total
, body1
, name
);
150 ret
= send_str (s
, head
, filesize
+ total
+ sizeof body2
- 1) ||
151 send_buf (s
, str
, total
);
154 report (R_WARNING
, "Error sending header: %d, %d",
155 errno
, WSAGetLastError ());
159 report (R_STATUS
, "Sending %u bytes of data", filesize
);
160 report (R_PROGRESS
, 2, filesize
);
162 while (total
< filesize
&& (bytes_read
= fread (buffer
, 1, BUFLEN
/2, f
))) {
163 if ((signed)bytes_read
== -1) {
164 report (R_WARNING
, "Error reading log file: %d", errno
);
168 if (total
> filesize
) bytes_read
-= total
- filesize
;
169 if (send_buf (s
, buffer
, bytes_read
)) {
170 report (R_WARNING
, "Error sending body: %d, %d",
171 errno
, WSAGetLastError ());
174 report (R_DELTA
, bytes_read
, "Network transfer: In progress");
178 if (send_buf (s
, body2
, sizeof body2
- 1)) {
179 report (R_WARNING
, "Error sending trailer: %d, %d",
180 errno
, WSAGetLastError ());
183 report (R_DELTA
, 0, "Network transfer: Done");
186 while ((bytes_read
= recv (s
, buffer
+total
, BUFLEN
-total
, 0))) {
187 if ((signed)bytes_read
== SOCKET_ERROR
) {
188 report (R_WARNING
, "Error receiving reply: %d, %d",
189 errno
, WSAGetLastError ());
193 if (total
== BUFLEN
) {
194 report (R_WARNING
, "Buffer overflow");
198 if (close_http (s
)) {
199 report (R_WARNING
, "Error closing connection: %d, %d",
200 errno
, WSAGetLastError ());
204 str
= strmake (&bytes_read
, "Received %s (%d bytes).\n",
206 ret
= memcmp (str
, buffer
+ total
- bytes_read
, bytes_read
);
210 str
= strstr (buffer
, "\r\n\r\n");
211 if (!str
) str
= buffer
;
213 report (R_ERROR
, "Can't submit logfile '%s'. "
214 "Server response: %s", name
, str
);