2009-11-05 18:02:51 +00:00
|
|
|
// This file is part of BOINC.
|
|
|
|
// http://boinc.berkeley.edu
|
|
|
|
// Copyright (C) 2009 University of California
|
|
|
|
//
|
|
|
|
// BOINC is free software; you can redistribute it and/or modify it
|
|
|
|
// under the terms of the GNU Lesser General Public License
|
|
|
|
// as published by the Free Software Foundation,
|
|
|
|
// either version 3 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// BOINC is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
// See the GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
#include <string>
|
2009-11-06 00:24:26 +00:00
|
|
|
#include <stdio.h>
|
2009-11-05 18:02:51 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
|
|
|
|
#include "str_util.h"
|
|
|
|
#include "str_replace.h"
|
|
|
|
|
|
|
|
#include "url.h"
|
|
|
|
|
|
|
|
using std::string;
|
|
|
|
|
|
|
|
// Break a URL down into its protocol, server, port and file components
|
|
|
|
// URL format:
|
|
|
|
// [{http|https|socks}://][user[:passwd]@]host.dom.dom[:port][/dir/file]
|
|
|
|
//
|
2009-11-07 06:00:08 +00:00
|
|
|
void parse_url(const char* url, PARSED_URL& purl) {
|
|
|
|
char* p, *q, *buf;
|
|
|
|
char _buf[256];
|
2009-11-05 18:02:51 +00:00
|
|
|
|
|
|
|
// strip off the protocol if present
|
|
|
|
//
|
|
|
|
if (strncmp(url, "http://", 7) == 0) {
|
2009-11-07 06:00:08 +00:00
|
|
|
safe_strcpy(_buf, url+7);
|
|
|
|
purl.protocol = URL_PROTOCOL_HTTP;
|
2009-11-05 18:02:51 +00:00
|
|
|
} else if (strncmp(url, "https://", 8) == 0) {
|
2009-11-07 06:00:08 +00:00
|
|
|
safe_strcpy(_buf, url+8);
|
|
|
|
purl.protocol = URL_PROTOCOL_HTTPS;
|
2009-11-05 18:02:51 +00:00
|
|
|
} else if (strncmp(url, "socks://", 8) == 0) {
|
2009-11-07 06:00:08 +00:00
|
|
|
safe_strcpy(_buf, url+8);
|
|
|
|
purl.protocol = URL_PROTOCOL_SOCKS;
|
2009-11-05 18:02:51 +00:00
|
|
|
} else {
|
2009-11-07 06:00:08 +00:00
|
|
|
safe_strcpy(_buf, url);
|
|
|
|
purl.protocol = URL_PROTOCOL_UNKNOWN;
|
|
|
|
}
|
|
|
|
buf = _buf;
|
|
|
|
|
|
|
|
// parse user name and password
|
|
|
|
//
|
|
|
|
strcpy(purl.user, "");
|
|
|
|
strcpy(purl.passwd, "");
|
|
|
|
p = strchr(buf, '@');
|
|
|
|
if (p) {
|
|
|
|
*p = 0;
|
|
|
|
q = strchr(buf, ':');
|
|
|
|
if (q) {
|
|
|
|
*q = 0;
|
|
|
|
strcpy(purl.user, buf);
|
|
|
|
strcpy(purl.passwd, q+1);
|
|
|
|
} else {
|
|
|
|
strcpy(purl.user, buf);
|
|
|
|
}
|
|
|
|
buf = p+1;
|
2009-11-05 18:02:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// parse and strip off file part if present
|
|
|
|
//
|
|
|
|
p = strchr(buf, '/');
|
|
|
|
if (p) {
|
2009-11-07 06:00:08 +00:00
|
|
|
strcpy(purl.file, p+1);
|
2009-11-05 18:02:51 +00:00
|
|
|
*p = 0;
|
|
|
|
} else {
|
2009-11-07 06:00:08 +00:00
|
|
|
strcpy(purl.file, "");
|
2009-11-05 18:02:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// parse and strip off port if present
|
|
|
|
//
|
|
|
|
p = strchr(buf,':');
|
|
|
|
if (p) {
|
2009-11-07 06:00:08 +00:00
|
|
|
purl.port = atol(p+1);
|
2009-11-05 18:02:51 +00:00
|
|
|
*p = 0;
|
|
|
|
} else {
|
|
|
|
// CMC note: if they didn't pass in a port #,
|
|
|
|
// but the url starts with https://, assume they
|
|
|
|
// want a secure port (HTTPS, port 443)
|
2009-11-07 06:00:08 +00:00
|
|
|
purl.port = (purl.protocol == URL_PROTOCOL_HTTPS) ? 443 : 80;
|
2009-11-05 18:02:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// what remains is the host
|
|
|
|
//
|
2009-11-07 06:00:08 +00:00
|
|
|
strcpy(purl.host, buf);
|
2009-11-05 18:02:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static char x2c(char *what) {
|
|
|
|
register char digit;
|
|
|
|
|
|
|
|
digit = (what[0] >= 'A' ? ((what[0] & 0xdf) - 'A')+10 : (what[0] - '0'));
|
|
|
|
digit *= 16;
|
|
|
|
digit += (what[1] >= 'A' ? ((what[1] & 0xdf) - 'A')+10 : (what[1] - '0'));
|
|
|
|
return(digit);
|
|
|
|
}
|
|
|
|
|
|
|
|
void c2x(char *what) {
|
|
|
|
char buf[3];
|
|
|
|
char num = atoi(what);
|
|
|
|
char d1 = num / 16;
|
|
|
|
char d2 = num % 16;
|
|
|
|
int abase1, abase2;
|
|
|
|
if (d1 < 10) abase1 = 48;
|
|
|
|
else abase1 = 55;
|
|
|
|
if (d2 < 10) abase2 = 48;
|
|
|
|
else abase2 = 55;
|
|
|
|
buf[0] = d1+abase1;
|
|
|
|
buf[1] = d2+abase2;
|
|
|
|
buf[2] = 0;
|
|
|
|
|
|
|
|
strcpy(what, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
void unescape_url(char *url) {
|
|
|
|
int x,y;
|
|
|
|
|
|
|
|
for (x=0,y=0;url[y];++x,++y) {
|
|
|
|
if ((url[x] = url[y]) == '%') {
|
|
|
|
url[x] = x2c(&url[y+1]);
|
|
|
|
y+=2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
url[x] = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
void unescape_url_safe(char *url, int url_size) {
|
|
|
|
int x,y;
|
|
|
|
|
|
|
|
for (x=0,y=0; url[y] && (x<url_size);++x,++y) {
|
|
|
|
if ((url[x] = url[y]) == '%') {
|
|
|
|
url[x] = x2c(&url[y+1]);
|
|
|
|
y+=2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
url[x] = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
// unescape_url needs to be able to handle potentially hostile
|
|
|
|
// urls.
|
|
|
|
void unescape_url(string& url) {
|
|
|
|
char buf[1024];
|
|
|
|
strncpy(buf, url.c_str(), sizeof(buf));
|
|
|
|
unescape_url_safe(buf, sizeof(buf));
|
|
|
|
url = buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
void escape_url(char *in, char*out) {
|
|
|
|
int x, y;
|
|
|
|
for (x=0, y=0; in[x]; ++x) {
|
|
|
|
if (isalnum(in[x])) {
|
|
|
|
out[y] = in[x];
|
|
|
|
++y;
|
|
|
|
} else {
|
|
|
|
out[y] = '%';
|
|
|
|
++y;
|
|
|
|
out[y] = 0;
|
|
|
|
char buf[256];
|
|
|
|
sprintf(buf, "%d", (char)in[x]);
|
|
|
|
c2x(buf);
|
|
|
|
strcat(out, buf);
|
|
|
|
y += 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
out[y] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void escape_url_safe(const char *in, char*out, int out_size) {
|
|
|
|
int x, y;
|
|
|
|
for (x=0, y=0; in[x] && (y<out_size); ++x) {
|
|
|
|
if (isalnum(in[x])) {
|
|
|
|
out[y] = in[x];
|
|
|
|
++y;
|
|
|
|
} else {
|
|
|
|
out[y] = '%';
|
|
|
|
++y;
|
|
|
|
out[y] = 0;
|
|
|
|
char buf[256];
|
|
|
|
sprintf(buf, "%d", (char)in[x]);
|
|
|
|
c2x(buf);
|
|
|
|
strcat(out, buf);
|
|
|
|
y += 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
out[y] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// escape_url needs to be able to handle potentially hostile
|
|
|
|
// urls
|
|
|
|
void escape_url(string& url) {
|
|
|
|
char buf[1024];
|
|
|
|
escape_url_safe(url.c_str(), buf, sizeof(buf));
|
|
|
|
url = buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Escape a URL for the project directory, cutting off the "http://",
|
|
|
|
// converting everthing other than alphanumbers, ., - and _ to "_".
|
|
|
|
//
|
|
|
|
void escape_url_readable(char *in, char* out) {
|
|
|
|
int x, y;
|
|
|
|
char *temp;
|
|
|
|
|
|
|
|
temp = strstr(in,"://");
|
|
|
|
if (temp) {
|
|
|
|
in = temp + strlen("://");
|
|
|
|
}
|
|
|
|
for (x=0, y=0; in[x]; ++x) {
|
|
|
|
if (isalnum(in[x]) || in[x]=='.' || in[x]=='-' || in[x]=='_') {
|
|
|
|
out[y] = in[x];
|
|
|
|
++y;
|
|
|
|
} else {
|
|
|
|
out[y] = '_';
|
|
|
|
++y;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
out[y] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Canonicalize a master url.
|
|
|
|
// - Convert the first part of a URL (before the "://") to http://,
|
|
|
|
// or prepend it
|
|
|
|
// - Remove double slashes in the rest
|
|
|
|
// - Add a trailing slash if necessary
|
|
|
|
//
|
|
|
|
void canonicalize_master_url(char* url) {
|
|
|
|
char buf[1024];
|
|
|
|
size_t n;
|
|
|
|
bool bSSL = false; // keep track if they sent in https://
|
|
|
|
|
|
|
|
char *p = strstr(url, "://");
|
|
|
|
if (p) {
|
|
|
|
bSSL = (bool) (p == url + 5);
|
|
|
|
strcpy(buf, p+3);
|
|
|
|
} else {
|
|
|
|
strcpy(buf, url);
|
|
|
|
}
|
|
|
|
while (1) {
|
|
|
|
p = strstr(buf, "//");
|
|
|
|
if (!p) break;
|
|
|
|
strcpy(p, p+1);
|
|
|
|
}
|
|
|
|
n = strlen(buf);
|
|
|
|
if (buf[n-1] != '/') {
|
|
|
|
strcat(buf, "/");
|
|
|
|
}
|
|
|
|
sprintf(url, "http%s://%s", (bSSL ? "s" : ""), buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
void canonicalize_master_url(string& url) {
|
|
|
|
char buf[1024];
|
|
|
|
strcpy(buf, url.c_str());
|
|
|
|
canonicalize_master_url(buf);
|
|
|
|
url = buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
// is the string a valid master URL, in canonical form?
|
|
|
|
//
|
|
|
|
bool valid_master_url(char* buf) {
|
|
|
|
char* p, *q;
|
|
|
|
size_t n;
|
|
|
|
bool bSSL = false;
|
|
|
|
|
|
|
|
p = strstr(buf, "http://");
|
|
|
|
if (p != buf) {
|
|
|
|
// allow https
|
|
|
|
p = strstr(buf, "https://");
|
|
|
|
if (p == buf) {
|
|
|
|
bSSL = true;
|
|
|
|
} else {
|
|
|
|
return false; // no http or https, it's bad!
|
|
|
|
}
|
|
|
|
}
|
|
|
|
q = p+strlen(bSSL ? "https://" : "http://");
|
|
|
|
p = strstr(q, ".");
|
|
|
|
if (!p) return false;
|
|
|
|
if (p == q) return false;
|
|
|
|
q = p+1;
|
|
|
|
p = strstr(q, "/");
|
|
|
|
if (!p) return false;
|
|
|
|
if (p == q) return false;
|
|
|
|
n = strlen(buf);
|
|
|
|
if (buf[n-1] != '/') return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void escape_project_url(char *in, char* out) {
|
|
|
|
escape_url_readable(in, out);
|
|
|
|
char& last = out[strlen(out)-1];
|
|
|
|
// remove trailing _
|
|
|
|
if (last == '_') {
|
|
|
|
last = '\0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|