/* Copyright 2020 Jaakko Keränen Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "gmutil.h" #include #include #include void init_Url(iUrl *d, const iString *text) { /* Handle "file:" as a special case since it only has the path part. */ if (startsWithCase_String(text, "file://")) { iZap(*d); const char *cstr = constBegin_String(text); d->scheme = (iRangecc){ cstr, cstr + 4 }; d->path = (iRangecc){ cstr + 7, constEnd_String(text) }; return; } static iRegExp *urlPattern_; static iRegExp *authPattern_; if (!urlPattern_) { urlPattern_ = new_RegExp("^(([^:/?#]+):)?(//([^/?#]*))?" "([^?#]*)(\\?([^#]*))?(#(.*))?", caseInsensitive_RegExpOption); authPattern_ = new_RegExp("(([^@]+)@)?(([^:\\[\\]]+)" "|(\\[[0-9a-f:]+\\]))(:([0-9]+))?", caseInsensitive_RegExpOption); } iZap(*d); iRegExpMatch m; init_RegExpMatch(&m); if (matchString_RegExp(urlPattern_, text, &m)) { d->scheme = capturedRange_RegExpMatch(&m, 2); d->host = capturedRange_RegExpMatch(&m, 4); d->port = (iRangecc){ d->host.end, d->host.end }; d->path = capturedRange_RegExpMatch(&m, 5); d->query = capturedRange_RegExpMatch(&m, 6); d->fragment = capturedRange_RegExpMatch(&m, 8); /* starts with a hash */ /* Check if the authority contains a port. */ init_RegExpMatch(&m); if (matchRange_RegExp(authPattern_, d->host, &m)) { d->host = capturedRange_RegExpMatch(&m, 3); d->port = capturedRange_RegExpMatch(&m, 7); } } } static iRangecc dirPath_(iRangecc path) { const size_t pos = lastIndexOfCStr_Rangecc(path, "/"); if (pos == iInvalidPos) return path; return (iRangecc){ path.start, path.start + pos }; } iLocalDef iBool isDef_(iRangecc cc) { return !isEmpty_Range(&cc); } static iRangecc prevPathSeg_(const char *end, const char *start) { iRangecc seg = { end, end }; if (start == end) { return seg; } do { seg.start--; } while (*seg.start != '/' && seg.start != start); return seg; } void stripDefaultUrlPort_String(iString *d) { iUrl parts; init_Url(&parts, d); if (equalCase_Rangecc(parts.scheme, "gemini") && equal_Rangecc(parts.port, "1965")) { /* Always preceded by a colon. */ remove_Block(&d->chars, parts.port.start - 1 - constBegin_String(d), size_Range(&parts.port) + 1); } } const iString *urlFragmentStripped_String(const iString *d) { /* Note: Could use `iUrl` here and leave out the fragment. */ const size_t fragPos = indexOf_String(d, '#'); if (fragPos != iInvalidPos) { return collect_String(newRange_String((iRangecc){ constBegin_String(d), constBegin_String(d) + fragPos })); } return d; } void cleanUrlPath_String(iString *d) { iString clean; init_String(&clean); iUrl parts; init_Url(&parts, d); iRangecc seg = iNullRange; while (nextSplit_Rangecc(parts.path, "/", &seg)) { if (equal_Rangecc(seg, "..")) { /* Back up one segment. */ iRangecc last = prevPathSeg_(constEnd_String(&clean), constBegin_String(&clean)); truncate_Block(&clean.chars, last.start - constBegin_String(&clean)); } else if (equal_Rangecc(seg, ".")) { /* Skip it. */ } else if (!isEmpty_Range(&seg)) { /* Ensure the cleaned path starts with a slash if the original does. */ if (!isEmpty_String(&clean) || startsWith_Rangecc(parts.path, "/")) { appendCStr_String(&clean, "/"); } appendRange_String(&clean, seg); } } if (endsWith_Rangecc(parts.path, "/")) { appendCStr_String(&clean, "/"); } /* Replace with the new path. */ if (cmpCStrNSc_Rangecc(parts.path, cstr_String(&clean), size_String(&clean), &iCaseSensitive)) { const size_t pos = parts.path.start - constBegin_String(d); remove_Block(&d->chars, pos, size_Range(&parts.path)); insertData_Block(&d->chars, pos, cstr_String(&clean), size_String(&clean)); } deinit_String(&clean); } iRangecc urlScheme_String(const iString *d) { iUrl url; init_Url(&url, d); return url.scheme; } iRangecc urlHost_String(const iString *d) { iUrl url; init_Url(&url, d); return url.host; } iRangecc urlUser_String(const iString *d) { static iRegExp *userPats_[2]; if (!userPats_[0]) { userPats_[0] = new_RegExp("~([^/?]+)", 0); userPats_[1] = new_RegExp("/users/([^/?]+)", caseInsensitive_RegExpOption); } iRegExpMatch m; init_RegExpMatch(&m); iRangecc found = iNullRange; iForIndices(i, userPats_) { if (matchString_RegExp(userPats_[i], d, &m)) { found = capturedRange_RegExpMatch(&m, 1); } } return found; } iRangecc urlRoot_String(const iString *d) { const char *rootEnd; const iRangecc user = urlUser_String(d); if (!isEmpty_Range(&user)) { rootEnd = user.end; } else { iUrl parts; init_Url(&parts, d); rootEnd = parts.path.start; } return (iRangecc){ constBegin_String(d), rootEnd }; } static iBool isAbsolutePath_(iRangecc path) { return isAbsolute_Path(collect_String(urlDecode_String(collect_String(newRange_String(path))))); } static iString *punyDecodeHost_(iRangecc host) { iString *result = new_String(); iRangecc label = iNullRange; while (nextSplit_Rangecc(host, ".", &label)) { if (!isEmpty_String(result)) { appendChar_String(result, '.'); } if (startsWithCase_Rangecc(label, "xn--")) { iString *dec = punyDecode_Rangecc((iRangecc){ label.start + 4, label.end }); if (!isEmpty_String(dec)) { append_String(result, dec); continue; } } appendRange_String(result, label); } return result; } void urlDecodePath_String(iString *d) { iUrl url; init_Url(&url, d); if (isEmpty_Range(&url.path)) { return; } iString *decoded = new_String(); appendRange_String(decoded, (iRangecc){ constBegin_String(d), url.path.start }); iString *path = newRange_String(url.path); iString *decPath = urlDecodeExclude_String(path, "%?/#"); /* don't decode reserved path chars */ append_String(decoded, decPath); delete_String(decPath); delete_String(path); appendRange_String(decoded, (iRangecc){ url.path.end, constEnd_String(d) }); set_String(d, decoded); delete_String(decoded); } void urlEncodePath_String(iString *d) { iUrl url; init_Url(&url, d); if (isEmpty_Range(&url.path)) { return; } iString *encoded = new_String(); appendRange_String(encoded, (iRangecc){ constBegin_String(d), url.path.start }); iString *path = newRange_String(url.path); iString *encPath = urlEncodeExclude_String(path, "%/ "); append_String(encoded, encPath); delete_String(encPath); delete_String(path); appendRange_String(encoded, (iRangecc){ url.path.end, constEnd_String(d) }); set_String(d, encoded); delete_String(encoded); } const iString *absoluteUrl_String(const iString *d, const iString *urlMaybeRelative) { iUrl orig; iUrl rel; init_Url(&orig, d); init_Url(&rel, urlMaybeRelative); if (equalCase_Rangecc(rel.scheme, "data") || equalCase_Rangecc(rel.scheme, "about") || equalCase_Rangecc(rel.scheme, "mailto")) { /* Special case, the contents should be left unparsed. */ return urlMaybeRelative; } const iBool isRelative = !isDef_(rel.host); iRangecc scheme = range_CStr("gemini"); if (isDef_(rel.scheme)) { scheme = rel.scheme; } else if (isRelative && isDef_(orig.scheme)) { scheme = orig.scheme; } iString *absolute = collectNew_String(); appendRange_String(absolute, scheme); appendCStr_String(absolute, "://"); /* Authority. */ { const iUrl *selHost = isDef_(rel.host) ? &rel : &orig; iString *decHost = punyDecodeHost_(selHost->host); append_String(absolute, decHost); delete_String(decHost); /* Default Gemini port is removed as redundant; normalization. */ if (!isEmpty_Range(&selHost->port) && (!equalCase_Rangecc(scheme, "gemini") || !equal_Rangecc(selHost->port, "1965"))) { appendCStr_String(absolute, ":"); appendRange_String(absolute, selHost->port); } } if (isDef_(rel.scheme) || isDef_(rel.host) || isAbsolutePath_(rel.path)) { if (!startsWith_Rangecc(rel.path, "/")) { appendCStr_String(absolute, "/"); } appendRange_String(absolute, rel.path); } else if (isDef_(rel.path)) { if (!endsWith_Rangecc(orig.path, "/")) { /* Referencing a file. */ appendRange_String(absolute, dirPath_(orig.path)); } else { /* Referencing a directory. */ appendRange_String(absolute, orig.path); } if (!endsWith_String(absolute, "/")) { appendCStr_String(absolute, "/"); } appendRange_String(absolute, rel.path); } else if (isDef_(rel.query)) { /* Just a new query. */ appendRange_String(absolute, orig.path); } appendRange_String(absolute, rel.query); appendRange_String(absolute, rel.fragment); normalize_String(absolute); cleanUrlPath_String(absolute); return absolute; } iBool isLikelyUrl_String(const iString *d) { /* Guess whether a human intends the string to be an URL. This is supposed to be fuzzy; not completely per-spec: a) begins with a scheme; b) has something that looks like a hostname */ iRegExp *pattern = new_RegExp("^([a-z]+:)?//.*|" "^(//)?([^/?#: ]+)([/?#:].*)$|" "^([-\\w]+(\\.[-\\w]+)+|localhost)$", caseInsensitive_RegExpOption); iRegExpMatch m; init_RegExpMatch(&m); const iBool likelyUrl = matchString_RegExp(pattern, d, &m); iRelease(pattern); return likelyUrl; } static iBool equalPuny_(const iString *d, iRangecc orig) { if (!endsWith_String(d, "-")) { return iFalse; /* This is a sufficient condition? */ } if (size_String(d) != size_Range(&orig) + 1) { return iFalse; } return iCmpStrN(cstr_String(d), orig.start, size_Range(&orig)) == 0; } void punyEncodeDomain_Rangecc(iRangecc domain, iString *encoded_out) { /* The domain name needs to be split into labels. */ iRangecc label = iNullRange; iBool isFirst = iTrue; while (nextSplit_Rangecc(domain, ".", &label)) { if (!isFirst) { appendChar_String(encoded_out, '.'); } isFirst = iFalse; iString *puny = punyEncode_Rangecc(label); if (!isEmpty_String(puny) && !equalPuny_(puny, label)) { appendCStr_String(encoded_out, "xn--"); append_String(encoded_out, puny); } else { appendRange_String(encoded_out, label); } delete_String(puny); } } void punyEncodeUrlHost_String(iString *absoluteUrl) { iUrl url; init_Url(&url, absoluteUrl); if (isEmpty_Range(&url.host)) { return; } iString *encoded = new_String(); setRange_String(encoded, (iRangecc){ url.scheme.start, url.host.start }); punyEncodeDomain_Rangecc(url.host, encoded); appendRange_String(encoded, (iRangecc){ url.host.end, constEnd_String(absoluteUrl) }); set_String(absoluteUrl, encoded); delete_String(encoded); } iString *makeFileUrl_String(const iString *localFilePath) { iString *url = makeAbsolute_Path(collect_String(cleaned_Path(localFilePath))); replace_Block(&url->chars, '\\', '/'); /* in case it's a Windows path */ set_String(url, collect_String(urlEncodeExclude_String(url, "/:"))); #if defined (iPlatformMsys) prependChar_String(url, '/'); /* three slashes */ #endif prependCStr_String(url, "file://"); return url; } const char *makeFileUrl_CStr(const char *localFilePath) { return cstrCollect_String(makeFileUrl_String(collectNewCStr_String(localFilePath))); } void urlEncodeSpaces_String(iString *d) { for (;;) { const size_t pos = indexOfCStr_String(d, " "); if (pos == iInvalidPos) break; remove_Block(&d->chars, pos, 1); insertData_Block(&d->chars, pos, "%20", 3); } } const iString *withSpacesEncoded_String(const iString *d) { iString *enc = copy_String(d); urlEncodeSpaces_String(enc); return collect_String(enc); } const iString *feedEntryOpenCommand_String(const iString *url, int newTab) { if (!isEmpty_String(url)) { iString *cmd = collectNew_String(); const size_t fragPos = indexOf_String(url, '#'); if (fragPos != iInvalidPos) { iString *head = newRange_String( (iRangecc){ constBegin_String(url) + fragPos + 1, constEnd_String(url) }); format_String(cmd, "open newtab:%d gotourlheading:%s url:%s", newTab, cstr_String(head), cstr_Rangecc((iRangecc){ constBegin_String(url), constBegin_String(url) + fragPos })); delete_String(head); } else { format_String(cmd, "open newtab:%d url:%s", newTab, cstr_String(url)); } return cmd; } return NULL; } static const struct { enum iGmStatusCode code; iGmError err; } errors_[] = { { unknownStatusCode_GmStatusCode, /* keep this as the first one (fallback return value) */ { 0x1f4ab, /* dizzy */ "Unknown Status Code", "The server responded with a status code that is not in the Gemini specification. " "Maybe the server is from the future? Or just malfunctioning." } }, { failedToOpenFile_GmStatusCode, { 0x1f4c1, /* file folder */ "Failed to Open File", "The requested file does not exist or is inaccessible. " "Please check the file path." } }, { invalidLocalResource_GmStatusCode, { 0, "Invalid Resource", "The requested resource does not exist." } }, { unsupportedMimeType_GmStatusCode, { 0x1f47d, /* alien */ "Unsupported Content Type", "The received content cannot be viewed with this application." } }, { unsupportedProtocol_GmStatusCode, { 0x1f61e, /* disappointed */ "Unsupported Protocol", "The requested protocol is not supported by this application." }, }, { invalidHeader_GmStatusCode, { 0x1f4a9, /* pile of poo */ "Invalid Header", "The received header did not conform to the Gemini specification. " "Perhaps the server is malfunctioning or you tried to contact a " "non-Gemini server." } }, { invalidRedirect_GmStatusCode, { 0x27a0, /* dashed arrow */ "Invalid Redirect", "The server responded with a redirect but did not provide a valid destination URL. " "Perhaps the server is malfunctioning." } }, { schemeChangeRedirect_GmStatusCode, { 0x27a0, /* dashed arrow */ "Scheme-Changing Redirect", "The server attempted to redirect us to a URL whose scheme is different than the " "originating URL's scheme. Here is the link so you can open it manually if appropriate."} }, { tooManyRedirects_GmStatusCode, { 0x27a0, /* dashed arrow */ "Too Many Redirects", "You may be stuck in a redirection loop. The next redirected URL is below if you " "want to continue manually."} }, { tlsFailure_GmStatusCode, { 0x1f5a7, /* networked computers */ "Network/TLS Failure", "Failed to communicate with the host. Here is the error message:" } }, { temporaryFailure_GmStatusCode, { 0x1f50c, /* electric plug */ "Temporary Failure", "The request has failed, but may succeed if you try again in the future." } }, { serverUnavailable_GmStatusCode, { 0x1f525, /* fire */ "Server Unavailable", "The server is unavailable due to overload or maintenance. Check back later." } }, { cgiError_GmStatusCode, { 0x1f4a5, /* collision */ "CGI Error", "Failure during dynamic content generation on the server. This may be due " "to buggy serverside software." } }, { proxyError_GmStatusCode, { 0x1f310, /* globe */ "Proxy Error", "A proxy request failed because the server was unable to successfully " "complete a transaction with the remote host. Perhaps there are difficulties " "with network connectivity." } }, { slowDown_GmStatusCode, { 0x1f40c, /* snail */ "Slow Down", "The server is rate limiting requests. Please wait..." } }, { permanentFailure_GmStatusCode, { 0x1f6ab, /* no entry */ "Permanent Failure", "Your request has failed and will fail in the future as well if repeated." } }, { notFound_GmStatusCode, { 0x1f50d, /* magnifying glass */ "Not Found", "The requested resource could not be found at this time." } }, { gone_GmStatusCode, { 0x1f47b, /* ghost */ "Gone", "The resource requested is no longer available and will not be available again." } }, { proxyRequestRefused_GmStatusCode, { 0x1f6c2, /* passport control */ "Proxy Request Refused", "The request was for a resource at a domain not served by the server and the " "server does not accept proxy requests." } }, { badRequest_GmStatusCode, { 0x1f44e, /* thumbs down */ "Bad Request", "The server was unable to parse your request, presumably due to the " "request being malformed." } }, { clientCertificateRequired_GmStatusCode, { 0x1f511, /* key */ "Certificate Required", "Access to the requested resource requires identification via " "a client certificate." } }, { certificateNotAuthorized_GmStatusCode, { 0x1f512, /* lock */ "Certificate Not Authorized", "The provided client certificate is valid but is not authorized for accessing " "the requested resource. " } }, { certificateNotValid_GmStatusCode, { 0x1f6a8, /* revolving light */ "Invalid Certificate", "The provided client certificate is expired or invalid." } }, }; iBool isDefined_GmError(enum iGmStatusCode code) { iForIndices(i, errors_) { if (errors_[i].code == code) { return iTrue; } } return iFalse; } const iGmError *get_GmError(enum iGmStatusCode code) { static const iGmError none = { 0, "", "" }; if (code == 0) { return &none; } iForIndices(i, errors_) { if (errors_[i].code == code) { return &errors_[i].err; } } iAssert(errors_[0].code == unknownStatusCode_GmStatusCode); return &errors_[0].err; /* unknown */ }