Home | History | Annotate | Line # | Download | only in hpcboot
file_http.cpp revision 1.5.2.1
      1  1.5.2.1  jdolecek /*	$NetBSD: file_http.cpp,v 1.5.2.1 2002/02/11 20:07:58 jdolecek Exp $	*/
      2      1.1       uch 
      3      1.1       uch /*-
      4  1.5.2.1  jdolecek  * Copyright (c) 2001, 2002 The NetBSD Foundation, Inc.
      5      1.1       uch  * All rights reserved.
      6      1.1       uch  *
      7      1.1       uch  * This code is derived from software contributed to The NetBSD Foundation
      8      1.1       uch  * by UCHIYAMA Yasushi.
      9      1.1       uch  *
     10      1.1       uch  * Redistribution and use in source and binary forms, with or without
     11      1.1       uch  * modification, are permitted provided that the following conditions
     12      1.1       uch  * are met:
     13      1.1       uch  * 1. Redistributions of source code must retain the above copyright
     14      1.1       uch  *    notice, this list of conditions and the following disclaimer.
     15      1.1       uch  * 2. Redistributions in binary form must reproduce the above copyright
     16      1.1       uch  *    notice, this list of conditions and the following disclaimer in the
     17      1.1       uch  *    documentation and/or other materials provided with the distribution.
     18      1.1       uch  * 3. All advertising materials mentioning features or use of this software
     19      1.1       uch  *    must display the following acknowledgement:
     20      1.1       uch  *        This product includes software developed by the NetBSD
     21      1.1       uch  *        Foundation, Inc. and its contributors.
     22      1.1       uch  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23      1.1       uch  *    contributors may be used to endorse or promote products derived
     24      1.1       uch  *    from this software without specific prior written permission.
     25      1.1       uch  *
     26      1.1       uch  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27      1.1       uch  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28      1.1       uch  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29      1.1       uch  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30      1.1       uch  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31      1.1       uch  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32      1.1       uch  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33      1.1       uch  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34      1.1       uch  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35      1.1       uch  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36      1.1       uch  * POSSIBILITY OF SUCH DAMAGE.
     37      1.1       uch  */
     38      1.1       uch 
     39      1.1       uch #include <file.h>
     40      1.1       uch #include <file_http.h>
     41      1.1       uch #include <console.h>
     42      1.2       uch 
     43      1.2       uch #if _WIN32_WCE < 210
     44      1.2       uch #define tolower(c)	((c) - 'A' + 'a')
     45      1.2       uch #define wcsicmp		_wcsicmp
     46      1.2       uch #endif
     47      1.1       uch 
     48      1.1       uch static int __stricmp(const char *, const char *);
     49      1.1       uch 
     50      1.1       uch HttpFile::HttpFile(Console *&cons)
     51      1.1       uch 	: File(cons),
     52      1.1       uch 	  _req_get("GET "),
     53      1.1       uch 	  _req_head("HEAD "),
     54      1.1       uch 	  _req_host(" HTTP/1.0\r\nHOST: "),
     55      1.1       uch 	  _req_ua("\r\nUser-Agent: HPCBOOT/ZERO(1st impact; Windows CE; "
     56      1.1       uch #if defined MIPS
     57      1.5       uch 	      "MIPS"
     58      1.1       uch #elif defined ARM
     59      1.5       uch 	      "ARM"
     60      1.1       uch #elif defined SH3
     61      1.5       uch 	      "SH3"
     62      1.1       uch #elif defined SH4
     63      1.5       uch 	      "SH4"
     64      1.1       uch #else
     65      1.5       uch 	      "Unknown"
     66      1.1       uch #endif
     67      1.5       uch 	      ")\r\n\r\n")
     68      1.1       uch {
     69      1.1       uch 	_server_name[0] = '\0';
     70      1.1       uch 	_debug = TRUE;
     71      1.1       uch 	_memory_cache = TRUE;
     72      1.1       uch 	//    _memory_cache = FALSE; // not recomended.
     73      1.1       uch 	_buffer = 0;
     74      1.1       uch 	_reset_state();
     75  1.5.2.1  jdolecek 	DPRINTF((TEXT("FileManager: HTTP\n")));
     76      1.1       uch }
     77      1.1       uch 
     78      1.1       uch HttpFile::~HttpFile(void)
     79      1.1       uch {
     80      1.1       uch 	if (_buffer)
     81      1.1       uch 		free(_buffer);
     82      1.1       uch 	WSACleanup();
     83      1.1       uch }
     84      1.1       uch 
     85      1.1       uch void
     86      1.1       uch HttpFile::_reset_state(void)
     87      1.1       uch {
     88      1.1       uch 	_ascii_filename[0] = '\0';
     89      1.1       uch 	_cached = FALSE;
     90      1.1       uch 	if (_buffer)
     91      1.1       uch 		free(_buffer);
     92      1.1       uch 	_buffer = 0;
     93      1.1       uch 	_header_size = 0;
     94      1.1       uch 	_cur_pos = 0;
     95      1.1       uch }
     96      1.1       uch 
     97      1.1       uch BOOL
     98      1.1       uch HttpFile::setRoot(TCHAR *server)
     99      1.1       uch {
    100      1.1       uch 	SOCKET h;
    101      1.1       uch 	int ret, port;
    102      1.1       uch 
    103      1.1       uch 	// parse server name and its port #
    104      1.1       uch 	TCHAR sep[] = TEXT(":/");
    105      1.1       uch 	TCHAR *token = wcstok(server, sep);
    106      1.1       uch 	for (int i = 0; i < 3 && token; i++, token = wcstok(0, sep)) {
    107      1.1       uch 		switch(i) {
    108      1.1       uch 		case 0:
    109      1.1       uch 			if (wcsicmp(token, TEXT("http"))) {
    110      1.1       uch 				return FALSE;
    111      1.1       uch 			}
    112      1.1       uch 			break;
    113      1.1       uch 		case 1:
    114      1.1       uch 			if (!_to_ascii(_server_name, token, MAX_PATH))
    115      1.1       uch 				return FALSE;
    116      1.1       uch 			port = 80;
    117      1.1       uch 			break;
    118      1.1       uch 		case 2:
    119      1.1       uch 			port = _wtoi(token);
    120      1.1       uch 			break;
    121      1.1       uch 		}
    122      1.1       uch 	}
    123      1.1       uch 
    124      1.1       uch 	ret = WSAStartup(MAKEWORD(1, 1), &_winsock);
    125      1.1       uch 	if (ret != 0) {
    126      1.1       uch 		DPRINTF((TEXT("WinSock initialize failed.\n")));
    127      1.1       uch 		return FALSE;
    128      1.1       uch 	}
    129      1.1       uch 	if (LOBYTE(_winsock.wVersion) != 1 ||
    130      1.1       uch 	    HIBYTE(_winsock.wVersion) != 1) {
    131      1.1       uch 		DPRINTF((TEXT("can't use WinSock DLL.\n")));
    132      1.1       uch 		return FALSE;
    133      1.1       uch 	}
    134      1.1       uch 
    135      1.1       uch 	h = socket(AF_INET, SOCK_STREAM, 0);
    136      1.1       uch 	if (h == INVALID_SOCKET) {
    137      1.1       uch 		DPRINTF((TEXT("can't open socket. cause=%d\n"),
    138      1.5       uch 		    WSAGetLastError()));
    139      1.1       uch 		return FALSE;
    140      1.1       uch 	}
    141      1.1       uch 
    142      1.1       uch 	memset(&_sockaddr, 0, sizeof(sockaddr_in));
    143      1.1       uch 	_sockaddr.sin_family = AF_INET;
    144      1.1       uch 	_sockaddr.sin_port = htons(port);
    145      1.4       uch 
    146      1.4       uch 	struct hostent *entry = gethostbyname(_server_name);
    147      1.4       uch 	if (entry == 0) {
    148      1.4       uch 		_sockaddr.sin_addr.S_un.S_addr = inet_addr(_server_name);
    149      1.4       uch 		if (_sockaddr.sin_addr.S_un.S_addr == INADDR_NONE) {
    150      1.4       uch 			DPRINTF((TEXT("can't get host by name.\n")));
    151      1.4       uch 			return FALSE;
    152      1.4       uch 		}
    153      1.1       uch 		u_int8_t *b = &_sockaddr.sin_addr.S_un.S_un_b.s_b1;
    154      1.1       uch 		DPRINTF((TEXT("%d.%d.%d.%d "), b[0], b[1], b[2], b[3]));
    155      1.1       uch 		if (connect(h,(const struct sockaddr *)&_sockaddr,
    156      1.5       uch 		    sizeof(struct sockaddr_in)) == 0)
    157      1.1       uch 			goto connected;
    158      1.4       uch 	} else {
    159      1.4       uch 		for (u_int8_t **addr_list =(u_int8_t **)entry->h_addr_list;
    160      1.5       uch 		    *addr_list; addr_list++) {
    161      1.4       uch 			u_int8_t *b = &_sockaddr.sin_addr.S_un.S_un_b.s_b1;
    162      1.4       uch 			for (int i = 0; i < 4; i++)
    163      1.4       uch 				b[i] = addr_list[0][i];
    164      1.4       uch 
    165      1.4       uch 			DPRINTF((TEXT("%d.%d.%d.%d "), b[0], b[1], b[2],b[3]));
    166      1.4       uch 			if (connect(h,(const struct sockaddr *)&_sockaddr,
    167      1.5       uch 			    sizeof(struct sockaddr_in)) == 0)
    168      1.4       uch 				goto connected;
    169      1.4       uch 		}
    170      1.1       uch 	}
    171      1.1       uch 	DPRINTF((TEXT("can't connect server.\n")));
    172      1.1       uch 	return FALSE;
    173      1.1       uch 
    174      1.1       uch  connected:
    175  1.5.2.1  jdolecek 	DPRINTF((TEXT("(%S) connected.\n"), _server_name));
    176      1.1       uch 	closesocket(h);
    177      1.1       uch 
    178      1.1       uch 	return TRUE;
    179      1.1       uch }
    180      1.1       uch 
    181      1.1       uch BOOL
    182      1.1       uch HttpFile::open(const TCHAR *name, u_int32_t flag)
    183      1.1       uch {
    184  1.5.2.1  jdolecek 
    185      1.1       uch 	_reset_state();
    186  1.5.2.1  jdolecek 
    187      1.1       uch 	return _to_ascii(_ascii_filename, name, MAX_PATH);
    188      1.1       uch }
    189      1.1       uch 
    190      1.1       uch size_t
    191      1.1       uch HttpFile::_read_from_cache(void *buf, size_t bytes, off_t ofs)
    192      1.1       uch {
    193      1.3       uch 	size_t transfer;
    194      1.3       uch 
    195      1.3       uch 	if (ofs >= _buffer_size)
    196      1.3       uch 		return 0;
    197      1.3       uch 
    198      1.3       uch 	transfer = ofs + bytes > _buffer_size ? _buffer_size - ofs : bytes;
    199      1.3       uch 
    200      1.1       uch 	memcpy(buf, &_buffer[ofs], transfer);
    201      1.3       uch 
    202      1.1       uch 	return transfer;
    203      1.1       uch }
    204      1.1       uch 
    205      1.1       uch BOOL
    206      1.1       uch HttpFile::seek(off_t offset)
    207      1.1       uch {
    208      1.1       uch 	_cur_pos = offset;
    209      1.1       uch 
    210      1.1       uch 	return TRUE;
    211      1.1       uch }
    212      1.1       uch 
    213      1.1       uch size_t
    214      1.1       uch HttpFile::read(void *buf, size_t bytes, off_t offset)
    215      1.1       uch {
    216      1.1       uch 	char *b;
    217      1.1       uch 	off_t ofs;
    218      1.1       uch 
    219      1.1       uch 	if (offset != -1) {
    220      1.1       uch 		ofs = offset;
    221      1.1       uch 	} else {
    222      1.1       uch 		ofs = _cur_pos;
    223      1.1       uch 		_cur_pos += bytes;
    224      1.1       uch 	}
    225      1.1       uch 
    226      1.1       uch 	if (_memory_cache && _cached)
    227      1.1       uch 		return _read_from_cache(buf, bytes, ofs);
    228      1.1       uch 
    229      1.1       uch 	// HEAD request(get header size).
    230      1.1       uch 	if (_header_size == 0)
    231      1.1       uch 		_buffer_size = _parse_header(_header_size);
    232      1.1       uch 
    233      1.1       uch 	// reconnect
    234      1.1       uch 	Socket sock(_sockaddr);
    235      1.1       uch 	SOCKET h;
    236      1.1       uch 	if ((h = sock) == INVALID_SOCKET)
    237      1.1       uch 		return 0;
    238      1.1       uch 
    239      1.1       uch 	// GET request
    240      1.1       uch 	strcpy(_request, _req_get);
    241      1.1       uch 	_set_request();
    242      1.1       uch 	send(h, _request, strlen(_request), 0);
    243      1.1       uch 
    244      1.1       uch 	// skip header.
    245      1.1       uch 	b = static_cast <char *>(malloc(_header_size));
    246      1.1       uch 	_recv_buffer(h, b, _header_size);
    247      1.1       uch 	free(b);
    248      1.1       uch 
    249      1.1       uch 	// read contents.
    250      1.1       uch 	size_t readed;
    251      1.1       uch 	if (_memory_cache) {
    252      1.1       uch 		_buffer = static_cast <char *>(malloc(_buffer_size));
    253      1.1       uch 		_recv_buffer(h, _buffer, _buffer_size);
    254      1.1       uch 		_cached = TRUE;
    255      1.1       uch 		return _read_from_cache(buf, bytes, ofs);
    256      1.1       uch 	} else {
    257      1.1       uch 		int i, n = ofs / bytes;
    258      1.1       uch 		b = static_cast <char *>(buf);
    259      1.1       uch 
    260      1.1       uch 		for (readed = 0, i = 0; i < n; i++)
    261      1.1       uch 			readed += _recv_buffer(h, b, bytes);
    262      1.1       uch 		if ((n =(ofs % bytes)))
    263      1.1       uch 			readed += _recv_buffer(h, b, n);
    264      1.1       uch 		DPRINTF((TEXT("skip contents %d byte.\n"), readed));
    265      1.1       uch 
    266      1.1       uch 		readed = _recv_buffer(h, b, bytes);
    267      1.1       uch 	}
    268      1.1       uch 	return readed;
    269      1.1       uch }
    270      1.1       uch 
    271      1.1       uch size_t
    272      1.1       uch HttpFile::_parse_header(size_t &header_size)
    273      1.1       uch {
    274      1.1       uch 	size_t sz = 0;
    275      1.1       uch 	// reconnect.
    276      1.1       uch 	Socket sock(_sockaddr);
    277      1.1       uch 	SOCKET h;
    278      1.1       uch 	if ((h = sock) == INVALID_SOCKET)
    279      1.1       uch 		return 0;
    280      1.1       uch 
    281      1.1       uch 	// HEAD request
    282      1.1       uch 	strcpy(_request, _req_head);
    283      1.1       uch 	_set_request();
    284      1.1       uch 	send(h, _request, strlen(_request), 0);
    285      1.1       uch 
    286      1.1       uch 	// receive.
    287      1.1       uch 	char __buf[TMP_BUFFER_SIZE];
    288      1.1       uch 	int cnt, ret;
    289      1.1       uch 
    290      1.1       uch 	for (cnt = 0;
    291      1.5       uch 	    ret = _recv_buffer(h, __buf, TMP_BUFFER_SIZE); cnt += ret) {
    292      1.1       uch 		char sep[] = " :\r\n";
    293      1.1       uch 		char *token = strtok(__buf, sep);
    294      1.1       uch 		while (token) {
    295      1.1       uch 			if (__stricmp(token, "content-length") == 0) {
    296      1.1       uch 				token = strtok(0, sep);
    297      1.1       uch 				sz = atoi(token);
    298  1.5.2.1  jdolecek 				DPRINTFN(1, (TEXT("content-length=%d\n"), sz));
    299      1.1       uch 			} else
    300      1.1       uch 				token = strtok(0, sep);
    301      1.1       uch 		}
    302      1.1       uch 	}
    303      1.1       uch 	header_size = cnt;
    304  1.5.2.1  jdolecek 
    305  1.5.2.1  jdolecek 	DPRINTF((TEXT
    306  1.5.2.1  jdolecek 	    ("open file http://%S%S - header %d byte contents %d byte\n"),
    307  1.5.2.1  jdolecek 	    _server_name, _ascii_filename, header_size, sz));
    308      1.1       uch 
    309      1.1       uch 	return sz;
    310      1.1       uch }
    311      1.1       uch 
    312      1.1       uch size_t
    313      1.1       uch HttpFile::_recv_buffer(SOCKET h, char *buf, size_t size)
    314      1.1       uch {
    315      1.1       uch 	size_t cnt, total = 0;
    316      1.1       uch 
    317      1.1       uch 	do {
    318      1.1       uch 		cnt = recv(h, buf + total, size - total, 0);
    319      1.1       uch 		total += cnt;
    320      1.1       uch 		DPRINTFN(2,(TEXT("size %d readed %d byte(+%d)\n"),
    321      1.5       uch 		    size, total, cnt));
    322      1.1       uch 	} while (total < size && cnt > 0);
    323      1.1       uch 
    324      1.1       uch 
    325      1.1       uch 	DPRINTFN(1,(TEXT("total read %d byte\n"), total));
    326      1.1       uch 	return total;
    327      1.1       uch }
    328      1.1       uch 
    329      1.1       uch void
    330      1.1       uch HttpFile::_set_request(void)
    331      1.1       uch {
    332  1.5.2.1  jdolecek 
    333      1.1       uch 	strcat(_request, _ascii_filename);
    334      1.1       uch 	strcat(_request, _req_host);
    335      1.1       uch 	strcat(_request, _server_name);
    336      1.1       uch 	strcat(_request, _req_ua);
    337      1.1       uch }
    338      1.1       uch 
    339      1.1       uch static int
    340      1.1       uch __stricmp(const char *s1, const char *s2)
    341      1.1       uch {
    342      1.1       uch 	const unsigned char *us1 =
    343      1.5       uch 	    reinterpret_cast <const unsigned char *>(s1);
    344      1.1       uch 	const unsigned char *us2 =
    345      1.5       uch 	    reinterpret_cast <const unsigned char *>(s2);
    346      1.1       uch 
    347      1.1       uch 	while (tolower(*us1) == tolower(*us2++))
    348      1.1       uch 		if (*us1++ == '\0')
    349      1.1       uch 			return 0;
    350      1.1       uch 	return tolower(*us1) - tolower(*--us2);
    351      1.1       uch }
    352      1.1       uch 
    353      1.1       uch Socket::Socket(struct sockaddr_in &sock)
    354      1.1       uch 	: _sockaddr(sock)
    355      1.1       uch {
    356  1.5.2.1  jdolecek 
    357      1.1       uch 	_socket = socket(AF_INET, SOCK_STREAM, 0);
    358      1.1       uch 	if (_socket != INVALID_SOCKET)
    359      1.1       uch 		connect(_socket,
    360      1.5       uch 		    reinterpret_cast <const struct sockaddr *>(&_sockaddr),
    361      1.5       uch 		    sizeof(struct sockaddr_in));
    362      1.1       uch }
    363      1.1       uch 
    364      1.1       uch Socket::~Socket(void)
    365      1.1       uch {
    366  1.5.2.1  jdolecek 
    367      1.1       uch 	if (_socket != INVALID_SOCKET)
    368      1.1       uch 		closesocket(_socket);
    369      1.1       uch }
    370