2011-03-19 22:04:13 +01:00
|
|
|
/****************************************************************************
|
2021-06-11 12:06:42 +02:00
|
|
|
* apps/netutils/netlib/netlib_parsehttpurl.c
|
2011-03-19 22:04:13 +01:00
|
|
|
*
|
2021-06-11 06:22:42 +02:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2011-03-19 22:04:13 +01:00
|
|
|
*
|
2021-06-11 06:22:42 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-03-19 22:04:13 +01:00
|
|
|
*
|
2021-06-11 06:22:42 +02:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2011-03-19 22:04:13 +01:00
|
|
|
*
|
2015-10-03 15:20:15 +02:00
|
|
|
****************************************************************************/
|
2011-03-19 22:04:13 +01:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
2015-10-03 15:20:15 +02:00
|
|
|
****************************************************************************/
|
2011-03-19 22:04:13 +01:00
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
2016-07-11 18:11:18 +02:00
|
|
|
#include "netutils/netlib.h"
|
2011-03-19 22:04:13 +01:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Data
|
2015-10-03 15:20:15 +02:00
|
|
|
****************************************************************************/
|
2011-03-19 22:04:13 +01:00
|
|
|
|
2017-05-19 15:13:12 +02:00
|
|
|
static const char g_http[] = "http://";
|
2011-03-19 22:04:13 +01:00
|
|
|
#define HTTPLEN 7
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
2015-10-03 15:20:15 +02:00
|
|
|
****************************************************************************/
|
2011-03-19 22:04:13 +01:00
|
|
|
|
|
|
|
/****************************************************************************
|
2014-07-03 00:52:02 +02:00
|
|
|
* Name: netlib_parsehttpurl
|
2011-03-19 22:04:13 +01:00
|
|
|
****************************************************************************/
|
|
|
|
|
2018-09-30 16:33:10 +02:00
|
|
|
int netlib_parsehttpurl(FAR const char *url, FAR uint16_t *port,
|
|
|
|
FAR char *hostname, int hostlen,
|
|
|
|
FAR char *filename, int namelen)
|
2011-03-19 22:04:13 +01:00
|
|
|
{
|
2018-09-30 16:33:10 +02:00
|
|
|
FAR const char *src = url;
|
|
|
|
FAR char *dest;
|
2011-03-19 22:04:13 +01:00
|
|
|
int bytesleft;
|
|
|
|
int ret = OK;
|
2020-05-28 10:24:54 +02:00
|
|
|
size_t pathlen;
|
2011-03-19 22:04:13 +01:00
|
|
|
|
|
|
|
/* A valid HTTP URL must begin with http:// if it does not, we will assume
|
|
|
|
* that it is a file name only, but still return an error. wget() depends
|
|
|
|
* on this strange behavior.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (strncmp(src, g_http, HTTPLEN) != 0)
|
|
|
|
{
|
|
|
|
ret = -EINVAL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Skip over the http:// */
|
|
|
|
|
|
|
|
src += HTTPLEN;
|
|
|
|
|
|
|
|
/* Concatenate the hostname following http:// and up to the termnator */
|
|
|
|
|
|
|
|
dest = hostname;
|
|
|
|
bytesleft = hostlen;
|
2018-09-30 16:33:10 +02:00
|
|
|
|
2011-03-19 22:04:13 +01:00
|
|
|
while (*src != '\0' && *src != '/' && *src != ' ' && *src != ':')
|
|
|
|
{
|
2018-09-30 16:46:52 +02:00
|
|
|
/* Make sure that there is space for another character in the
|
|
|
|
* hostname (reserving space for the null terminator).
|
2011-03-19 22:04:13 +01:00
|
|
|
*/
|
|
|
|
|
2018-09-30 16:46:52 +02:00
|
|
|
if (bytesleft > 1)
|
2011-03-19 22:04:13 +01:00
|
|
|
{
|
2018-09-30 16:46:52 +02:00
|
|
|
/* Copy the byte */
|
|
|
|
|
|
|
|
*dest++ = *src++;
|
|
|
|
bytesleft--;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Note the error, but continue parsing until the end of the
|
|
|
|
* hostname
|
|
|
|
*/
|
|
|
|
|
|
|
|
src++;
|
2011-03-19 22:04:13 +01:00
|
|
|
ret = -E2BIG;
|
|
|
|
}
|
|
|
|
}
|
2018-09-30 16:33:10 +02:00
|
|
|
|
2011-03-19 22:04:13 +01:00
|
|
|
*dest = '\0';
|
|
|
|
|
|
|
|
/* Check if the hostname is following by a port number */
|
|
|
|
|
|
|
|
if (*src == ':')
|
|
|
|
{
|
|
|
|
uint16_t accum = 0;
|
|
|
|
src++; /* Skip over the colon */
|
2014-04-14 00:24:28 +02:00
|
|
|
|
2011-03-19 22:04:13 +01:00
|
|
|
while (*src >= '0' && *src <= '9')
|
|
|
|
{
|
|
|
|
accum = 10*accum + *src - '0';
|
|
|
|
src++;
|
|
|
|
}
|
2018-09-30 16:33:10 +02:00
|
|
|
|
2011-03-19 22:04:13 +01:00
|
|
|
*port = accum;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The rest of the line is the file name */
|
|
|
|
|
|
|
|
if (*src == '\0' || *src == ' ')
|
|
|
|
{
|
|
|
|
ret = -ENOENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Make sure the file name starts with exactly one '/' */
|
|
|
|
|
|
|
|
dest = filename;
|
|
|
|
bytesleft = namelen;
|
2018-09-30 16:33:10 +02:00
|
|
|
|
2011-03-19 22:04:13 +01:00
|
|
|
while (*src == '/')
|
|
|
|
{
|
|
|
|
src++;
|
|
|
|
}
|
2018-09-30 16:33:10 +02:00
|
|
|
|
2011-03-19 22:04:13 +01:00
|
|
|
*dest++ = '/';
|
|
|
|
bytesleft--;
|
|
|
|
|
|
|
|
/* The copy the rest of the file name to the user buffer */
|
2014-04-14 00:24:28 +02:00
|
|
|
|
2020-05-28 10:24:54 +02:00
|
|
|
pathlen = strlen(src);
|
|
|
|
if (bytesleft >= pathlen + 1)
|
|
|
|
{
|
|
|
|
memcpy(dest, src, pathlen);
|
|
|
|
dest[pathlen] = '\0';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
dest[0] = '\0';
|
|
|
|
ret = -E2BIG;
|
|
|
|
}
|
|
|
|
|
2011-03-19 22:04:13 +01:00
|
|
|
return ret;
|
|
|
|
}
|