summaryrefslogtreecommitdiffstats
path: root/nsprpub/tools/httpget.c
blob: ed363651221d7ac490fe0b85d79f9beaaf4e5716 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */


/*
 * Author: Wan-Teh Chang
 *
 * Given an HTTP URL, httpget uses the GET method to fetch the file.
 * The fetched file is written to stdout by default, or can be
 * saved in an output file.
 *
 * This is a single-threaded program.
 */

#include "prio.h"
#include "prnetdb.h"
#include "prlog.h"
#include "prerror.h"
#include "prprf.h"
#include "prinit.h"

#include <stdio.h>
#include <string.h>
#include <stdlib.h>  /* for atoi */

#define FCOPY_BUFFER_SIZE (16 * 1024)
#define INPUT_BUFFER_SIZE 1024
#define LINE_SIZE 512
#define HOST_SIZE 256
#define PORT_SIZE 32
#define PATH_SIZE 512

/*
 * A buffer for storing the excess input data for ReadLine.
 * The data in the buffer starts from (including) the element pointed to
 * by inputHead, and ends just before (not including) the element pointed
 * to by inputTail.  The buffer is empty if inputHead == inputTail.
 */

static char inputBuf[INPUT_BUFFER_SIZE];
/*
 * inputBufEnd points just past the end of inputBuf
 */
static char *inputBufEnd = inputBuf + sizeof(inputBuf);
static char *inputHead = inputBuf;
static char *inputTail = inputBuf;

static PRBool endOfStream = PR_FALSE;

/*
 * ReadLine --
 *
 * Read in a line of text, terminated by CRLF or LF, from fd into buf.
 * The terminating CRLF or LF is included (always as '\n').  The text
 * in buf is terminated by a null byte.  The excess bytes are stored in
 * inputBuf for use in the next ReadLine call or FetchFile call.
 * Returns the number of bytes in buf.  0 means end of stream.  Returns
 * -1 if read fails.
 */

PRInt32 ReadLine(PRFileDesc *fd, char *buf, PRUint32 bufSize)
{
    char *dst = buf;
    char *bufEnd = buf + bufSize;  /* just past the end of buf */
    PRBool lineFound = PR_FALSE;
    char *crPtr = NULL;  /* points to the CR ('\r') character */
    PRInt32 nRead;

loop:
    PR_ASSERT(inputBuf <= inputHead && inputHead <= inputTail
              && inputTail <= inputBufEnd);
    while (lineFound == PR_FALSE && inputHead != inputTail
           && dst < bufEnd - 1) {
        if (*inputHead == '\r') {
            crPtr = dst;
        } else if (*inputHead == '\n') {
            lineFound = PR_TRUE;
            if (crPtr == dst - 1) {
                dst--;
            }
        }
        *(dst++) = *(inputHead++);
    }
    if (lineFound == PR_TRUE || dst == bufEnd - 1 || endOfStream == PR_TRUE) {
        *dst = '\0';
        return dst - buf;
    }

    /*
     * The input buffer should be empty now
     */
    PR_ASSERT(inputHead == inputTail);

    nRead = PR_Read(fd, inputBuf, sizeof(inputBuf));
    if (nRead == -1) {
        *dst = '\0';
        return -1;
    } else if (nRead == 0) {
        endOfStream = PR_TRUE;
        *dst = '\0';
        return dst - buf;
    }
    inputHead = inputBuf;
    inputTail = inputBuf + nRead;
    goto loop;
}

PRInt32 DrainInputBuffer(char *buf, PRUint32 bufSize)
{
    PRInt32 nBytes = inputTail - inputHead;

    if (nBytes == 0) {
        if (endOfStream) {
            return -1;
        } else {
            return 0;
        }
    }
    if ((PRInt32) bufSize < nBytes) {
        nBytes = bufSize;
    }
    memcpy(buf, inputHead, nBytes);
    inputHead += nBytes;
    return nBytes;
}

PRStatus FetchFile(PRFileDesc *in, PRFileDesc *out)
{
    char buf[FCOPY_BUFFER_SIZE];
    PRInt32 nBytes;

    while ((nBytes = DrainInputBuffer(buf, sizeof(buf))) > 0) {
        if (PR_Write(out, buf, nBytes) != nBytes) {
            fprintf(stderr, "httpget: cannot write to file\n");
            return PR_FAILURE;
        }
    }
    if (nBytes < 0) {
        /* Input buffer is empty and end of stream */
        return PR_SUCCESS;
    }
    while ((nBytes = PR_Read(in, buf, sizeof(buf))) > 0) {
        if (PR_Write(out, buf, nBytes) != nBytes) {
            fprintf(stderr, "httpget: cannot write to file\n");
            return PR_FAILURE;
        }
    }
    if (nBytes < 0) {
        fprintf(stderr, "httpget: cannot read from socket\n");
        return PR_FAILURE;
    }
    return PR_SUCCESS;
}

PRStatus FastFetchFile(PRFileDesc *in, PRFileDesc *out, PRUint32 size)
{
    PRInt32 nBytes;
    PRFileMap *outfMap;
    void *addr;
    char *start;
    PRUint32 rem;
    PRUint32 bytesToRead;
    PRStatus rv;
    PRInt64 sz64;

    LL_UI2L(sz64, size);
    outfMap = PR_CreateFileMap(out, sz64, PR_PROT_READWRITE);
    PR_ASSERT(outfMap);
    addr = PR_MemMap(outfMap, LL_ZERO, size);
    if (addr == NULL) {
        fprintf(stderr, "cannot memory-map file: (%d, %d)\n", PR_GetError(),
                PR_GetOSError());

        PR_CloseFileMap(outfMap);
        return PR_FAILURE;
    }
    start = (char *) addr;
    rem = size;
    while ((nBytes = DrainInputBuffer(start, rem)) > 0) {
        start += nBytes;
        rem -= nBytes;
    }
    if (nBytes < 0) {
        /* Input buffer is empty and end of stream */
        return PR_SUCCESS;
    }
    bytesToRead = (rem < FCOPY_BUFFER_SIZE) ? rem : FCOPY_BUFFER_SIZE;
    while (rem > 0 && (nBytes = PR_Read(in, start, bytesToRead)) > 0) {
        start += nBytes;
        rem -= nBytes;
        bytesToRead = (rem < FCOPY_BUFFER_SIZE) ? rem : FCOPY_BUFFER_SIZE;
    }
    if (nBytes < 0) {
        fprintf(stderr, "httpget: cannot read from socket\n");
        return PR_FAILURE;
    }
    rv = PR_MemUnmap(addr, size);
    PR_ASSERT(rv == PR_SUCCESS);
    rv = PR_CloseFileMap(outfMap);
    PR_ASSERT(rv == PR_SUCCESS);
    return PR_SUCCESS;
}

PRStatus ParseURL(char *url, char *host, PRUint32 hostSize,
                  char *port, PRUint32 portSize, char *path, PRUint32 pathSize)
{
    char *start, *end;
    char *dst;
    char *hostEnd;
    char *portEnd;
    char *pathEnd;

    if (strncmp(url, "http", 4)) {
        fprintf(stderr, "httpget: the protocol must be http\n");
        return PR_FAILURE;
    }
    if (strncmp(url + 4, "://", 3) || url[7] == '\0') {
        fprintf(stderr, "httpget: malformed URL: %s\n", url);
        return PR_FAILURE;
    }

    start = end = url + 7;
    dst = host;
    hostEnd = host + hostSize;
    while (*end && *end != ':' && *end != '/') {
        if (dst == hostEnd - 1) {
            fprintf(stderr, "httpget: host name too long\n");
            return PR_FAILURE;
        }
        *(dst++) = *(end++);
    }
    *dst = '\0';

    if (*end == '\0') {
        PR_snprintf(port, portSize, "%d", 80);
        PR_snprintf(path, pathSize, "%s", "/");
        return PR_SUCCESS;
    }

    if (*end == ':') {
        end++;
        dst = port;
        portEnd = port + portSize;
        while (*end && *end != '/') {
            if (dst == portEnd - 1) {
                fprintf(stderr, "httpget: port number too long\n");
                return PR_FAILURE;
            }
            *(dst++) = *(end++);
        }
        *dst = '\0';
        if (*end == '\0') {
            PR_snprintf(path, pathSize, "%s", "/");
            return PR_SUCCESS;
        }
    } else {
        PR_snprintf(port, portSize, "%d", 80);
    }

    dst = path;
    pathEnd = path + pathSize;
    while (*end) {
        if (dst == pathEnd - 1) {
            fprintf(stderr, "httpget: file pathname too long\n");
            return PR_FAILURE;
        }
        *(dst++) = *(end++);
    }
    *dst = '\0';
    return PR_SUCCESS;
}

void PrintUsage(void) {
    fprintf(stderr, "usage: httpget url\n"
            "       httpget -o outputfile url\n"
            "       httpget url -o outputfile\n");
}

int main(int argc, char **argv)
{
    PRHostEnt hostentry;
    char buf[PR_NETDB_BUF_SIZE];
    PRNetAddr addr;
    PRFileDesc *socket = NULL, *file = NULL;
    PRIntn cmdSize;
    char host[HOST_SIZE];
    char port[PORT_SIZE];
    char path[PATH_SIZE];
    char line[LINE_SIZE];
    int exitStatus = 0;
    PRBool endOfHeader = PR_FALSE;
    char *url;
    char *fileName = NULL;
    PRUint32 fileSize;

    if (argc != 2 && argc != 4) {
        PrintUsage();
        exit(1);
    }

    if (argc == 2) {
        /*
         * case 1: httpget url
         */
        url = argv[1];
    } else {
        if (strcmp(argv[1], "-o") == 0) {
            /*
             * case 2: httpget -o outputfile url
             */
            fileName = argv[2];
            url = argv[3];
        } else {
            /*
             * case 3: httpget url -o outputfile
             */
            url = argv[1];
            if (strcmp(argv[2], "-o") != 0) {
                PrintUsage();
                exit(1);
            }
            fileName = argv[3];
        }
    }

    if (ParseURL(url, host, sizeof(host), port, sizeof(port),
                 path, sizeof(path)) == PR_FAILURE) {
        exit(1);
    }

    if (PR_GetHostByName(host, buf, sizeof(buf), &hostentry)
        == PR_FAILURE) {
        fprintf(stderr, "httpget: unknown host name: %s\n", host);
        exit(1);
    }

    addr.inet.family = PR_AF_INET;
    addr.inet.port = PR_htons((short) atoi(port));
    addr.inet.ip = *((PRUint32 *) hostentry.h_addr_list[0]);

    socket = PR_NewTCPSocket();
    if (socket == NULL) {
        fprintf(stderr, "httpget: cannot create new tcp socket\n");
        exit(1);
    }

    if (PR_Connect(socket, &addr, PR_INTERVAL_NO_TIMEOUT) == PR_FAILURE) {
        fprintf(stderr, "httpget: cannot connect to http server\n");
        exitStatus = 1;
        goto done;
    }

    if (fileName == NULL) {
        file = PR_STDOUT;
    } else {
        file = PR_Open(fileName, PR_RDWR | PR_CREATE_FILE | PR_TRUNCATE,
                       00777);
        if (file == NULL) {
            fprintf(stderr, "httpget: cannot open file %s: (%d, %d)\n",
                    fileName, PR_GetError(), PR_GetOSError());
            exitStatus = 1;
            goto done;
        }
    }

    cmdSize = PR_snprintf(buf, sizeof(buf), "GET %s HTTP/1.0\r\n\r\n", path);
    PR_ASSERT(cmdSize == (PRIntn) strlen("GET  HTTP/1.0\r\n\r\n")
              + (PRIntn) strlen(path));
    if (PR_Write(socket, buf, cmdSize) != cmdSize) {
        fprintf(stderr, "httpget: cannot write to http server\n");
        exitStatus = 1;
        goto done;
    }

    if (ReadLine(socket, line, sizeof(line)) <= 0) {
        fprintf(stderr, "httpget: cannot read line from http server\n");
        exitStatus = 1;
        goto done;
    }

    /* HTTP response: 200 == OK */
    if (strstr(line, "200") == NULL) {
        fprintf(stderr, "httpget: %s\n", line);
        exitStatus = 1;
        goto done;
    }

    while (ReadLine(socket, line, sizeof(line)) > 0) {
        if (line[0] == '\n') {
            endOfHeader = PR_TRUE;
            break;
        }
        if (strncmp(line, "Content-Length", 14) == 0
            || strncmp(line, "Content-length", 14) == 0) {
            char *p = line + 14;

            while (*p == ' ' || *p == '\t') {
                p++;
            }
            if (*p != ':') {
                continue;
            }
            p++;
            while (*p == ' ' || *p == '\t') {
                p++;
            }
            fileSize = 0;
            while ('0' <= *p && *p <= '9') {
                fileSize = 10 * fileSize + (*p - '0');
                p++;
            }
        }
    }
    if (endOfHeader == PR_FALSE) {
        fprintf(stderr, "httpget: cannot read line from http server\n");
        exitStatus = 1;
        goto done;
    }

    if (fileName == NULL || fileSize == 0) {
        FetchFile(socket, file);
    } else {
        FastFetchFile(socket, file, fileSize);
    }

done:
    if (socket) {
        PR_Close(socket);
    }
    if (file) {
        PR_Close(file);
    }
    PR_Cleanup();
    return exitStatus;
}