From b983ee158ace30f836ec25c4d6a6426281e5700c Mon Sep 17 00:00:00 2001 From: pommicket Date: Wed, 11 Jan 2023 17:34:27 -0500 Subject: URI %-escape sequences --- lsp-parse.c | 31 +++++++++++++++++++++++++++---- 1 file changed, 27 insertions(+), 4 deletions(-) (limited to 'lsp-parse.c') diff --git a/lsp-parse.c b/lsp-parse.c index fd07913..6cb7cd4 100644 --- a/lsp-parse.c +++ b/lsp-parse.c @@ -104,13 +104,36 @@ static bool parse_document_uri(LSP *lsp, const JSON *json, JSONValue value, LSPD char *path; #if _WIN32 path = string + strlen("file:///"); - // replace slashes with backslashes - for (char *p = path; *p; ++p) - if (*p == '/') - *p = '\\'; #else path = string + strlen("file://"); #endif + + // replace percent-encoded sequences (e.g. replace %20 with ' ') + char *out = path; + for (const char *in = path; *in; ) { + char c = *in++; + if (c == '%') { + char sequence[3] = {0}; + if (!in[0] || !in[1] || !isxdigit(in[0]) || !isxdigit(in[1])) { + lsp_set_error(lsp, "Bad escape sequence in URI."); + free(string); + return false; + } + sequence[0] = in[0]; + sequence[1] = in[1]; + in += 2; + long byte = strtol(sequence, NULL, 16); + assert(byte >= 0 && byte <= 255); + c = (char)byte; + } + #if _WIN32 + // replace forward slashes with backslashes for consistency + if (c == '/') c = '\\'; + #endif + *out++ = c; + } + *out = '\0'; + *id = lsp_document_id(lsp, path); free(string); return true; -- cgit v1.2.3