2012-03-01 19:19:12 +00:00
|
|
|
/*
|
|
|
|
* Rufus: The Reliable USB Formatting Utility
|
|
|
|
* Elementary Unicode compliant find/replace parser
|
2014-01-24 02:46:06 +00:00
|
|
|
* Copyright © 2012-2014 Pete Batard <pete@akeo.ie>
|
2012-03-01 19:19:12 +00:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Memory leaks detection - define _CRTDBG_MAP_ALLOC as preprocessor macro */
|
|
|
|
#ifdef _CRTDBG_MAP_ALLOC
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <crtdbg.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <wchar.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <malloc.h>
|
|
|
|
#include <io.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
#include "rufus.h"
|
|
|
|
#include "msapi_utf8.h"
|
2013-10-15 21:58:27 +00:00
|
|
|
#include "localization.h"
|
2012-03-01 19:19:12 +00:00
|
|
|
|
2013-10-15 21:58:27 +00:00
|
|
|
static const char space[] = " \t";
|
|
|
|
static const wchar_t wspace[] = L" \t";
|
2015-01-25 00:56:38 +00:00
|
|
|
static const char* conversion_error = "Could not convert '%s' to UTF-16";
|
2013-10-15 21:58:27 +00:00
|
|
|
|
2014-01-24 02:46:06 +00:00
|
|
|
const struct {char c; int flag;} attr_parse[] = {
|
|
|
|
{ 'r', LOC_RIGHT_TO_LEFT },
|
2014-06-03 21:16:40 +00:00
|
|
|
{ 'a', LOC_ARABIC_NUMERALS }, // NOT IMPLEMENTED
|
|
|
|
{ 'j', LOC_JAPANESE_NUMERALS }, // NOT IMPLEMENTED
|
2014-01-24 02:46:06 +00:00
|
|
|
};
|
|
|
|
|
2013-10-15 21:58:27 +00:00
|
|
|
/*
|
|
|
|
* Fill a localization command buffer by parsing the line arguments
|
|
|
|
* The command is allocated and must be freed (by calling free_loc_cmd)
|
|
|
|
*/
|
|
|
|
static loc_cmd* get_loc_cmd(char c, char* line) {
|
|
|
|
size_t i, j, k, l, r, ti = 0, ii = 0;
|
|
|
|
char *endptr, *expected_endptr, *token;
|
|
|
|
loc_cmd* lcmd = NULL;
|
|
|
|
|
|
|
|
for (j=0; j<ARRAYSIZE(parse_cmd); j++) {
|
|
|
|
if (c == parse_cmd[j].c)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (j >= ARRAYSIZE(parse_cmd)) {
|
|
|
|
luprint("unknown command");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
lcmd = (loc_cmd*)calloc(sizeof(loc_cmd), 1);
|
|
|
|
if (lcmd == NULL) {
|
|
|
|
luprint("could not allocate command");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
lcmd->command = parse_cmd[j].cmd;
|
2014-01-24 02:46:06 +00:00
|
|
|
lcmd->ctrl_id = (lcmd->command <= LC_TEXT)?-1:0;
|
2013-10-15 21:58:27 +00:00
|
|
|
lcmd->line_nr = (uint16_t)loc_line_nr;
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
for (k = 0; parse_cmd[j].arg_type[k] != 0; k++) {
|
|
|
|
// Skip leading spaces
|
|
|
|
i += strspn(&line[i], space);
|
|
|
|
r = i;
|
|
|
|
if (line[i] == 0) {
|
|
|
|
luprintf("missing parameter for command '%c'", parse_cmd[j].c);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
switch(parse_cmd[j].arg_type[k]) {
|
|
|
|
case 's': // quoted string
|
|
|
|
// search leading quote
|
|
|
|
if (line[i++] != '"') {
|
|
|
|
luprint("no start quote");
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
r = i;
|
|
|
|
// locate ending quote
|
|
|
|
while ((line[i] != 0) && ((line[i] != '"') || ((line[i] == '"') && (line[i-1] == '\\')))) {
|
|
|
|
if ((line[i] == '"') && (line[i-1] == '\\')) {
|
|
|
|
strcpy(&line[i-1], &line[i]);
|
|
|
|
} else {
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (line[i] == 0) {
|
|
|
|
luprint("no end quote");
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
line[i++] = 0;
|
|
|
|
lcmd->txt[ti++] = safe_strdup(&line[r]);
|
|
|
|
break;
|
|
|
|
case 'c': // control ID (single word)
|
|
|
|
while ((line[i] != 0) && (line[i] != space[0]) && (line[i] != space[1]))
|
|
|
|
i++;
|
|
|
|
if (line[i] != 0)
|
|
|
|
line[i++] = 0;
|
|
|
|
lcmd->txt[ti++] = safe_strdup(&line[r]);
|
|
|
|
break;
|
|
|
|
case 'i': // 32 bit signed integer
|
|
|
|
// allow commas or dots between values
|
|
|
|
if ((line[i] == ',') || (line[i] == '.')) {
|
|
|
|
i += strspn(&line[i+1], space);
|
|
|
|
r = i;
|
|
|
|
}
|
|
|
|
while ((line[i] != 0) && (line[i] != space[0]) && (line[i] != space[1])
|
|
|
|
&& (line[i] != ',') && (line[i] != '.'))
|
|
|
|
i++;
|
|
|
|
expected_endptr = &line[i];
|
|
|
|
if (line[i] != 0)
|
|
|
|
line[i++] = 0;
|
|
|
|
lcmd->num[ii++] = (int32_t)strtol(&line[r], &endptr, 0);
|
|
|
|
if (endptr != expected_endptr) {
|
|
|
|
luprint("invalid integer");
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
break;
|
2013-10-30 20:28:56 +00:00
|
|
|
case 'u': // comma or dot separated list of unsigned integers (to end of line)
|
2013-10-15 21:58:27 +00:00
|
|
|
// count the number of commas
|
|
|
|
lcmd->unum_size = 1;
|
|
|
|
for (l=i; line[l] != 0; l++) {
|
2013-10-30 20:28:56 +00:00
|
|
|
if ((line[l] == '.') || (line[l] == ','))
|
2013-10-15 21:58:27 +00:00
|
|
|
lcmd->unum_size++;
|
|
|
|
}
|
|
|
|
lcmd->unum = (uint32_t*)malloc(lcmd->unum_size * sizeof(uint32_t));
|
2013-10-30 20:28:56 +00:00
|
|
|
token = strtok(&line[i], ".,");
|
2013-10-15 21:58:27 +00:00
|
|
|
for (l=0; (l<lcmd->unum_size) && (token != NULL); l++) {
|
|
|
|
lcmd->unum[l] = (int32_t)strtol(token, &endptr, 0);
|
2013-10-30 20:28:56 +00:00
|
|
|
token = strtok(NULL, ".,");
|
2013-10-15 21:58:27 +00:00
|
|
|
}
|
|
|
|
if ((token != NULL) || (l != lcmd->unum_size)) {
|
|
|
|
luprint("internal error (unexpected number of numeric values)");
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
uprintf("localization: unhandled arg_type '%c'\n", parse_cmd[j].arg_type[k]);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return lcmd;
|
|
|
|
|
|
|
|
err:
|
|
|
|
free_loc_cmd(lcmd);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Parse an UTF-8 localization command line
|
|
|
|
*/
|
|
|
|
static void get_loc_data_line(char* line)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
loc_cmd* lcmd = NULL;
|
|
|
|
char t;
|
|
|
|
|
|
|
|
if ((line == NULL) || (line[0] == 0))
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Skip leading spaces
|
|
|
|
i = strspn(line, space);
|
|
|
|
|
|
|
|
// Read token (NUL character will be read if EOL)
|
|
|
|
t = line[i++];
|
|
|
|
if (t == '#') // Comment
|
|
|
|
return;
|
|
|
|
if ((t == 0) || ((line[i] != space[0]) && (line[i] != space[1]))) {
|
|
|
|
luprintf("syntax error: '%s'", line);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
lcmd = get_loc_cmd(t, &line[i]);
|
|
|
|
|
|
|
|
if ((lcmd != NULL) && (lcmd->command != LC_LOCALE))
|
|
|
|
// TODO: check return value?
|
|
|
|
dispatch_loc_cmd(lcmd);
|
|
|
|
else
|
|
|
|
free_loc_cmd(lcmd);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Open a localization file and store its file name, with special case
|
|
|
|
* when dealing with the embedded loc file.
|
|
|
|
*/
|
|
|
|
FILE* open_loc_file(const char* filename)
|
|
|
|
{
|
|
|
|
FILE* fd = NULL;
|
|
|
|
wchar_t *wfilename = NULL;
|
|
|
|
const char* tmp_ext = ".tmp";
|
|
|
|
|
|
|
|
if (filename == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (loc_filename != embedded_loc_filename) {
|
|
|
|
safe_free(loc_filename);
|
|
|
|
}
|
|
|
|
if (safe_strcmp(tmp_ext, &filename[safe_strlen(filename)-4]) == 0) {
|
|
|
|
loc_filename = embedded_loc_filename;
|
|
|
|
} else {
|
|
|
|
loc_filename = safe_strdup(filename);
|
|
|
|
}
|
|
|
|
wfilename = utf8_to_wchar(filename);
|
|
|
|
if (wfilename == NULL) {
|
2015-01-25 00:56:38 +00:00
|
|
|
uprintf(conversion_error, filename);
|
2013-10-15 21:58:27 +00:00
|
|
|
goto out;
|
|
|
|
}
|
2013-12-05 12:24:20 +00:00
|
|
|
fd = _wfopen(wfilename, L"rb");
|
2013-10-15 21:58:27 +00:00
|
|
|
if (fd == NULL) {
|
|
|
|
uprintf("localization: could not open '%s'\n", filename);
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
|
|
|
safe_free(wfilename);
|
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Parse a localization file, to construct the list of available locales.
|
|
|
|
* The locale file must be UTF-8 with NO BOM.
|
|
|
|
*/
|
2015-02-03 23:42:27 +00:00
|
|
|
extern char lost_translators[][6];
|
2013-10-15 21:58:27 +00:00
|
|
|
BOOL get_supported_locales(const char* filename)
|
|
|
|
{
|
|
|
|
FILE* fd = NULL;
|
|
|
|
BOOL r = FALSE;
|
|
|
|
char line[1024];
|
2015-02-03 23:42:27 +00:00
|
|
|
char* LT[] = LOST_TRANSLATORS; //just to get the arraysize...
|
2014-01-24 02:46:06 +00:00
|
|
|
size_t i, j, k;
|
2013-10-15 21:58:27 +00:00
|
|
|
loc_cmd *lcmd = NULL, *last_lcmd = NULL;
|
|
|
|
long end_of_block;
|
2013-10-30 20:28:56 +00:00
|
|
|
int version_line_nr = 0;
|
|
|
|
uint32_t loc_base_minor = -1, loc_base_micro = -1;
|
2013-10-15 21:58:27 +00:00
|
|
|
|
|
|
|
fd = open_loc_file(filename);
|
|
|
|
if (fd == NULL)
|
|
|
|
goto out;
|
|
|
|
|
2013-12-05 12:24:20 +00:00
|
|
|
// Check that the file doesn't contain a BOM and was saved in DOS mode
|
|
|
|
i = fread(line, 1, sizeof(line), fd);
|
|
|
|
if (i < sizeof(line)) {
|
|
|
|
uprintf("Invalid loc file: the file is too small!");
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
if (((uint8_t)line[0]) > 0x80) {
|
|
|
|
uprintf("Invalid loc file: the file should not have a BOM (Byte Order Mark)");
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
for (i=0; i<sizeof(line)-1; i++)
|
|
|
|
if ((((uint8_t)line[i]) == 0x0D) && (((uint8_t)line[i+1]) == 0x0A)) break;
|
|
|
|
if (i >= sizeof(line)-1) {
|
|
|
|
uprintf("Invalid loc file: the file MUST be saved in DOS mode (CR/LF)");
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
fseek(fd, 0, SEEK_SET);
|
|
|
|
|
2013-10-15 21:58:27 +00:00
|
|
|
loc_line_nr = 0;
|
|
|
|
line[0] = 0;
|
|
|
|
free_locale_list();
|
|
|
|
do {
|
|
|
|
// adjust the last block
|
|
|
|
end_of_block = ftell(fd);
|
|
|
|
if (fgets(line, sizeof(line), fd) == NULL)
|
|
|
|
break;
|
|
|
|
loc_line_nr++;
|
|
|
|
// Skip leading spaces
|
|
|
|
i = strspn(line, space);
|
2014-01-24 02:46:06 +00:00
|
|
|
if ((line[i] != 'l') && (line[i] != 'v') && (line[i] != 'a'))
|
2013-10-15 21:58:27 +00:00
|
|
|
continue;
|
|
|
|
// line[i] is not NUL so i+1 is safe to access
|
|
|
|
lcmd = get_loc_cmd(line[i], &line[i+1]);
|
2014-01-24 02:46:06 +00:00
|
|
|
if ((lcmd == NULL) || ((lcmd->command != LC_LOCALE) && (lcmd->command != LC_VERSION) && (lcmd->command != LC_ATTRIBUTES))) {
|
2013-10-15 21:58:27 +00:00
|
|
|
free_loc_cmd(lcmd);
|
|
|
|
continue;
|
|
|
|
}
|
2013-10-30 20:28:56 +00:00
|
|
|
switch (lcmd->command) {
|
|
|
|
case LC_LOCALE:
|
|
|
|
// we use num[0] and num[1] as block delimiter index for this locale in the file
|
|
|
|
if (last_lcmd != NULL) {
|
|
|
|
if (version_line_nr == 0) {
|
|
|
|
uprintf("localization: no compatible version was found - this locale will be ignored\n");
|
|
|
|
list_del(&last_lcmd->list);
|
|
|
|
free_loc_cmd(last_lcmd);
|
|
|
|
} else {
|
|
|
|
last_lcmd->num[1] = (int32_t)end_of_block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
lcmd->num[0] = (int32_t)ftell(fd);
|
|
|
|
// Add our locale command to the locale list
|
|
|
|
list_add_tail(&lcmd->list, &locale_list);
|
|
|
|
uprintf("localization: found locale '%s'\n", lcmd->txt[0]);
|
|
|
|
last_lcmd = lcmd;
|
|
|
|
version_line_nr = 0;
|
|
|
|
break;
|
2014-01-24 02:46:06 +00:00
|
|
|
case LC_ATTRIBUTES:
|
|
|
|
if (last_lcmd == NULL) {
|
|
|
|
luprint("[a]ttributes cannot precede [l]ocale");
|
2014-05-09 21:05:25 +00:00
|
|
|
} else for(j=0; lcmd->txt[0][j] != 0; j++) {
|
2014-01-24 02:46:06 +00:00
|
|
|
for (k=0; k<ARRAYSIZE(attr_parse); k++) {
|
|
|
|
if (attr_parse[k].c == lcmd->txt[0][j]) {
|
|
|
|
// Repurpose ctrl_id as an attributes mask
|
|
|
|
last_lcmd->ctrl_id |= attr_parse[k].flag;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (k >= ARRAYSIZE(attr_parse))
|
|
|
|
luprintf("unknown attribute '%c' - ignored", lcmd->txt[0][j]);
|
|
|
|
}
|
|
|
|
free_loc_cmd(lcmd);
|
|
|
|
break;
|
2013-10-30 20:28:56 +00:00
|
|
|
case LC_VERSION:
|
|
|
|
if (version_line_nr != 0) {
|
|
|
|
luprintf("[v]ersion was already provided at line %d", version_line_nr);
|
|
|
|
} else if (lcmd->unum_size != 3) {
|
|
|
|
luprint("[v]ersion format is invalid");
|
|
|
|
} else if (last_lcmd == NULL) {
|
|
|
|
luprint("[v]ersion cannot precede [l]ocale");
|
|
|
|
} else if (lcmd->unum[0] != LOC_FRAMEWORK_VERSION) {
|
|
|
|
// If the localization framework evolved in a manner that makes existing
|
|
|
|
// translations incompatible, we need to discard them.
|
|
|
|
luprint("[v]ersion is not compatible with this framework");
|
|
|
|
} else if (loc_base_minor == -1) {
|
|
|
|
// We use the first version from our loc file (usually en-US) as our base
|
|
|
|
// as it should always be the most up to date.
|
|
|
|
loc_base_minor = lcmd->unum[1];
|
2013-11-01 19:17:46 +00:00
|
|
|
loc_base_micro = lcmd->unum[2];
|
2013-10-30 20:28:56 +00:00
|
|
|
version_line_nr = loc_line_nr;
|
|
|
|
} else if (lcmd->unum[1] < loc_base_minor) {
|
|
|
|
luprintf("the version of this locale is incompatible with this version of " APPLICATION_NAME " and MUST be updated to at least v%d.%d.0",
|
|
|
|
LOC_FRAMEWORK_VERSION, loc_base_minor);
|
|
|
|
} else {
|
|
|
|
if (lcmd->unum[2] < loc_base_micro) {
|
|
|
|
luprintf("the version of this translation is older than the base one and may result in some messages not being properly translated.\n"
|
|
|
|
"If you are the translator, please update your translation with the changes that intervened between v%d.%d.%d and v%d.%d.%d.\n"
|
|
|
|
"See https://github.com/pbatard/rufus/blob/master/res/localization/ChangeLog.txt",
|
|
|
|
LOC_FRAMEWORK_VERSION, loc_base_minor, lcmd->unum[2], LOC_FRAMEWORK_VERSION, loc_base_minor, loc_base_micro);
|
2015-02-03 23:42:27 +00:00
|
|
|
} else if (lcmd->unum[2] >= loc_base_micro) {
|
|
|
|
// Don't bug users about a locale that may already have been upgraded
|
|
|
|
for (i=0; i<ARRAYSIZE(LT); i++) {
|
|
|
|
if (safe_strcmp(last_lcmd->txt[0], lost_translators[i]) == 0) {
|
|
|
|
uprintf("NOTE: This translation appears up to date - Removing it from LOST_TRANSLATORS");
|
|
|
|
lost_translators[i][0] = 0;
|
|
|
|
}
|
|
|
|
}
|
2013-10-30 20:28:56 +00:00
|
|
|
}
|
|
|
|
version_line_nr = loc_line_nr;
|
|
|
|
}
|
|
|
|
free_loc_cmd(lcmd);
|
|
|
|
break;
|
2013-10-15 21:58:27 +00:00
|
|
|
}
|
|
|
|
} while (1);
|
2013-10-30 20:28:56 +00:00
|
|
|
if (last_lcmd != NULL) {
|
|
|
|
if (version_line_nr == 0) {
|
|
|
|
uprintf("localization: no compatible version was found - this locale will be ignored\n");
|
|
|
|
list_del(&last_lcmd->list);
|
|
|
|
free_loc_cmd(last_lcmd);
|
|
|
|
} else {
|
|
|
|
last_lcmd->num[1] = (int32_t)ftell(fd);
|
|
|
|
}
|
|
|
|
}
|
2013-10-15 21:58:27 +00:00
|
|
|
r = !list_empty(&locale_list);
|
|
|
|
if (r == FALSE)
|
2013-10-30 20:28:56 +00:00
|
|
|
uprintf("localization: '%s' contains no valid locale sections\n", filename);
|
2013-10-15 21:58:27 +00:00
|
|
|
|
|
|
|
out:
|
|
|
|
if (fd != NULL)
|
|
|
|
fclose(fd);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Parse a locale section in a localization file (UTF-8, no BOM)
|
|
|
|
* NB: this call is reentrant for the "base" command support
|
2013-12-28 16:48:02 +00:00
|
|
|
* TODO: Working on memory rather than on file would improve performance
|
2013-10-15 21:58:27 +00:00
|
|
|
*/
|
2013-12-19 23:56:40 +00:00
|
|
|
BOOL get_loc_data_file(const char* filename, loc_cmd* lcmd)
|
2013-10-15 21:58:27 +00:00
|
|
|
{
|
|
|
|
size_t bufsize = 1024;
|
|
|
|
static FILE* fd = NULL;
|
2013-12-28 16:48:02 +00:00
|
|
|
static BOOL populate_default = FALSE;
|
2013-12-19 23:56:40 +00:00
|
|
|
char *buf = NULL;
|
2013-10-15 21:58:27 +00:00
|
|
|
size_t i = 0;
|
|
|
|
int r = 0, line_nr_incr = 1;
|
|
|
|
int c = 0, eol_char = 0;
|
2014-01-03 01:26:38 +00:00
|
|
|
int start_line, old_loc_line_nr = 0;
|
2013-12-19 23:56:40 +00:00
|
|
|
BOOL ret = FALSE, eol = FALSE, escape_sequence = FALSE, reentrant = (fd != NULL);
|
|
|
|
long offset, cur_offset = -1, end_offset;
|
|
|
|
// The default locale is always the first one
|
|
|
|
loc_cmd* default_locale = list_entry(locale_list.next, loc_cmd, list);
|
2013-10-15 21:58:27 +00:00
|
|
|
|
2013-12-28 16:48:02 +00:00
|
|
|
if ((lcmd == NULL) || (default_locale == NULL)) {
|
|
|
|
uprintf("localization: no %slocale", (default_locale == NULL)?"default ":" ");
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (msg_table == NULL) {
|
|
|
|
// Initialize the default message table (usually en-US)
|
|
|
|
msg_table = default_msg_table;
|
|
|
|
uprintf("localization: initializing default message table");
|
|
|
|
populate_default = TRUE;
|
|
|
|
get_loc_data_file(filename, default_locale);
|
|
|
|
populate_default = FALSE;
|
2013-12-19 23:56:40 +00:00
|
|
|
}
|
|
|
|
|
2014-01-03 01:26:38 +00:00
|
|
|
if (reentrant) {
|
|
|
|
// Called, from a 'b' command - no need to reopen the file,
|
|
|
|
// just save the current offset and current line number
|
|
|
|
cur_offset = ftell(fd);
|
|
|
|
old_loc_line_nr = loc_line_nr;
|
|
|
|
} else {
|
2013-10-15 21:58:27 +00:00
|
|
|
if ((filename == NULL) || (filename[0] == 0))
|
2013-12-19 23:56:40 +00:00
|
|
|
return FALSE;
|
2013-12-28 16:48:02 +00:00
|
|
|
if (!populate_default) {
|
|
|
|
if (lcmd == default_locale) {
|
|
|
|
// The default locale has already been populated => nothing to do
|
|
|
|
msg_table = default_msg_table;
|
|
|
|
return TRUE;
|
|
|
|
}
|
2013-12-19 23:56:40 +00:00
|
|
|
msg_table = current_msg_table;
|
|
|
|
}
|
2013-10-15 21:58:27 +00:00
|
|
|
free_dialog_list();
|
|
|
|
fd = open_loc_file(filename);
|
|
|
|
if (fd == NULL)
|
|
|
|
goto out;
|
|
|
|
}
|
2013-12-19 23:56:40 +00:00
|
|
|
|
|
|
|
offset = (long)lcmd->num[0];
|
|
|
|
end_offset = (long)lcmd->num[1];
|
|
|
|
start_line = lcmd->line_nr;
|
2013-10-15 21:58:27 +00:00
|
|
|
loc_line_nr = start_line;
|
|
|
|
buf = (char*) malloc(bufsize);
|
|
|
|
if (buf == NULL) {
|
|
|
|
uprintf("localization: could not allocate line buffer\n");
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2014-05-09 21:05:25 +00:00
|
|
|
if (fseek(fd, offset, SEEK_SET) != 0) {
|
|
|
|
uprintf("localization: could not rewind\n");
|
|
|
|
goto out;
|
|
|
|
}
|
2013-10-15 21:58:27 +00:00
|
|
|
|
|
|
|
do { // custom readline handling for string collation, realloc, line numbers, etc.
|
|
|
|
c = getc(fd);
|
|
|
|
switch(c) {
|
|
|
|
case EOF:
|
|
|
|
buf[i] = 0;
|
|
|
|
if (!eol)
|
|
|
|
loc_line_nr += line_nr_incr;
|
|
|
|
get_loc_data_line(buf);
|
2013-12-22 18:28:38 +00:00
|
|
|
break;
|
2013-10-15 21:58:27 +00:00
|
|
|
case '\r':
|
|
|
|
case '\n':
|
|
|
|
if (escape_sequence) {
|
|
|
|
escape_sequence = FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// This assumes that the EOL sequence is always the same throughout the file
|
|
|
|
if (eol_char == 0)
|
|
|
|
eol_char = c;
|
|
|
|
if (c == eol_char) {
|
|
|
|
if (eol) {
|
|
|
|
line_nr_incr++;
|
|
|
|
} else {
|
|
|
|
loc_line_nr += line_nr_incr;
|
|
|
|
line_nr_incr = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
buf[i] = 0;
|
|
|
|
if (!eol) {
|
|
|
|
// Strip trailing spaces (for string collation)
|
|
|
|
for (r = ((int)i)-1; (r>0) && ((buf[r]==space[0])||(buf[r]==space[1])); r--);
|
|
|
|
if (r < 0)
|
|
|
|
r = 0;
|
|
|
|
eol = TRUE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case ' ':
|
|
|
|
case '\t':
|
|
|
|
if (escape_sequence) {
|
|
|
|
escape_sequence = FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!eol) {
|
|
|
|
buf[i++] = (char)c;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case '\\':
|
|
|
|
if (!escape_sequence) {
|
|
|
|
escape_sequence = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// fall through on escape sequence
|
|
|
|
default:
|
|
|
|
if (escape_sequence) {
|
|
|
|
switch (c) {
|
|
|
|
case 'n': // \n -> CRLF
|
|
|
|
buf[i++] = '\r';
|
|
|
|
buf[i++] = '\n';
|
|
|
|
break;
|
|
|
|
case '"': // \" carried as is
|
|
|
|
buf[i++] = '\\';
|
|
|
|
buf[i++] = '"';
|
|
|
|
break;
|
|
|
|
case '\\':
|
|
|
|
buf[i++] = '\\';
|
|
|
|
break;
|
|
|
|
default: // ignore any other escape sequence
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
escape_sequence = FALSE;
|
|
|
|
} else {
|
|
|
|
// Collate multiline strings
|
|
|
|
if ((eol) && (c == '"') && (buf[r] == '"')) {
|
|
|
|
i = r;
|
|
|
|
eol = FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (eol) {
|
|
|
|
get_loc_data_line(buf);
|
|
|
|
eol = FALSE;
|
|
|
|
i = 0;
|
|
|
|
r = 0;
|
|
|
|
}
|
|
|
|
buf[i++] = (char)c;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2013-12-22 18:28:38 +00:00
|
|
|
if ((c == EOF) || (ftell(fd) > end_offset))
|
|
|
|
break;
|
2013-10-15 21:58:27 +00:00
|
|
|
// Have at least 2 chars extra, for \r\n sequences
|
|
|
|
if (i >= bufsize-2) {
|
|
|
|
bufsize *= 2;
|
|
|
|
if (bufsize > 32768) {
|
|
|
|
uprintf("localization: requested line buffer is larger than 32K!\n");
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
buf = (char*) _reallocf(buf, bufsize);
|
|
|
|
if (buf == NULL) {
|
|
|
|
uprintf("localization: could not grow line buffer\n");
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} while(1);
|
2013-12-19 23:56:40 +00:00
|
|
|
ret = TRUE;
|
2013-10-15 21:58:27 +00:00
|
|
|
|
|
|
|
out:
|
|
|
|
// Don't close on a reentrant call
|
|
|
|
if (reentrant) {
|
2014-05-09 21:05:25 +00:00
|
|
|
if ((cur_offset < 0) || (fseek(fd, cur_offset, SEEK_SET) != 0)) {
|
|
|
|
uprintf("localization: unable to reset reentrant position\n");
|
|
|
|
ret = FALSE;
|
|
|
|
}
|
2013-10-15 21:58:27 +00:00
|
|
|
loc_line_nr = old_loc_line_nr;
|
|
|
|
} else if (fd != NULL) {
|
|
|
|
fclose(fd);
|
|
|
|
fd = NULL;
|
|
|
|
}
|
|
|
|
safe_free(buf);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Parse a line of UTF-16 text and return the data if it matches the 'token'
|
|
|
|
* The parsed line is of the form: [ ]token[ ]=[ ]["]data["][ ] and is
|
|
|
|
* modified by the parser
|
|
|
|
*/
|
2012-11-12 01:53:34 +00:00
|
|
|
static wchar_t* get_token_data_line(const wchar_t* wtoken, wchar_t* wline)
|
|
|
|
{
|
|
|
|
size_t i, r;
|
2012-11-30 00:18:28 +00:00
|
|
|
BOOLEAN quoteth = FALSE;
|
2012-11-12 01:53:34 +00:00
|
|
|
|
|
|
|
if ((wtoken == NULL) || (wline == NULL) || (wline[0] == 0))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
|
|
|
|
// Skip leading spaces
|
|
|
|
i += wcsspn(&wline[i], wspace);
|
|
|
|
|
|
|
|
// Our token should begin a line
|
|
|
|
if (_wcsnicmp(&wline[i], wtoken, wcslen(wtoken)) != 0)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
// Token was found, move past token
|
|
|
|
i += wcslen(wtoken);
|
|
|
|
|
|
|
|
// Skip spaces
|
|
|
|
i += wcsspn(&wline[i], wspace);
|
|
|
|
|
|
|
|
// Check for an equal sign
|
|
|
|
if (wline[i] != L'=')
|
|
|
|
return NULL;
|
|
|
|
i++;
|
|
|
|
|
|
|
|
// Skip spaces after equal sign
|
|
|
|
i += wcsspn(&wline[i], wspace);
|
|
|
|
|
|
|
|
// eliminate leading quote, if it exists
|
|
|
|
if (wline[i] == L'"') {
|
|
|
|
quoteth = TRUE;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Keep the starting pos of our data
|
|
|
|
r = i;
|
|
|
|
|
|
|
|
// locate end of string or quote
|
|
|
|
while ( (wline[i] != 0) && ((wline[i] != L'"') || ((wline[i] == L'"') && (!quoteth))) )
|
|
|
|
i++;
|
2012-12-15 03:27:14 +00:00
|
|
|
wline[i--] = 0;
|
2012-11-12 01:53:34 +00:00
|
|
|
|
2012-12-04 01:47:45 +00:00
|
|
|
// Eliminate trailing EOL characters
|
|
|
|
while ((i>=r) && ((wline[i] == L'\r') || (wline[i] == L'\n')))
|
|
|
|
wline[i--] = 0;
|
|
|
|
|
2012-11-12 01:53:34 +00:00
|
|
|
return (wline[r] == 0)?NULL:&wline[r];
|
|
|
|
}
|
|
|
|
|
2013-10-15 21:58:27 +00:00
|
|
|
/*
|
|
|
|
* Parse a file (ANSI or UTF-8 or UTF-16) and return the data for the first occurrence of 'token'
|
|
|
|
* The returned string is UTF-8 and MUST be freed by the caller
|
|
|
|
*/
|
2012-11-12 01:53:34 +00:00
|
|
|
char* get_token_data_file(const char* token, const char* filename)
|
2012-03-01 19:19:12 +00:00
|
|
|
{
|
2012-11-12 01:53:34 +00:00
|
|
|
wchar_t *wtoken = NULL, *wdata= NULL, *wfilename = NULL;
|
2012-03-01 19:19:12 +00:00
|
|
|
wchar_t buf[1024];
|
|
|
|
FILE* fd = NULL;
|
|
|
|
char *ret = NULL;
|
|
|
|
|
|
|
|
if ((filename == NULL) || (token == NULL))
|
|
|
|
return NULL;
|
|
|
|
if ((filename[0] == 0) || (token[0] == 0))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
wfilename = utf8_to_wchar(filename);
|
|
|
|
if (wfilename == NULL) {
|
2015-01-25 00:56:38 +00:00
|
|
|
uprintf(conversion_error, filename);
|
2012-03-01 19:19:12 +00:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
wtoken = utf8_to_wchar(token);
|
|
|
|
if (wfilename == NULL) {
|
2015-01-25 00:56:38 +00:00
|
|
|
uprintf(conversion_error, token);
|
2012-03-01 19:19:12 +00:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
fd = _wfopen(wfilename, L"r, ccs=UNICODE");
|
2012-03-03 23:12:48 +00:00
|
|
|
if (fd == NULL) goto out;
|
2012-03-01 19:19:12 +00:00
|
|
|
|
|
|
|
// Process individual lines. NUL is always appended.
|
|
|
|
// Ideally, we'd check that our buffer fits the line
|
|
|
|
while (fgetws(buf, ARRAYSIZE(buf), fd) != NULL) {
|
2012-11-12 01:53:34 +00:00
|
|
|
wdata = get_token_data_line(wtoken, buf);
|
|
|
|
if (wdata != NULL) {
|
|
|
|
ret = wchar_to_utf8(wdata);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2012-03-01 19:19:12 +00:00
|
|
|
|
2012-11-12 01:53:34 +00:00
|
|
|
out:
|
|
|
|
if (fd != NULL)
|
|
|
|
fclose(fd);
|
|
|
|
safe_free(wfilename);
|
|
|
|
safe_free(wtoken);
|
|
|
|
return ret;
|
|
|
|
}
|
2012-03-01 19:19:12 +00:00
|
|
|
|
2015-01-25 00:56:38 +00:00
|
|
|
/*
|
|
|
|
* replace or add 'data' for token 'token' in config file 'filename'
|
|
|
|
*/
|
|
|
|
char* set_token_data_file(const char* token, const char* data, const char* filename)
|
|
|
|
{
|
|
|
|
const wchar_t* outmode[] = { L"w", L"w, ccs=UTF-8", L"w, ccs=UTF-16LE" };
|
|
|
|
wchar_t *wtoken = NULL, *wfilename = NULL, *wtmpname = NULL, *wdata = NULL, bom = 0;
|
|
|
|
wchar_t buf[1024];
|
|
|
|
FILE *fd_in = NULL, *fd_out = NULL;
|
|
|
|
size_t i, size;
|
|
|
|
int mode = 0;
|
|
|
|
char *ret = NULL, tmp[2];
|
|
|
|
|
|
|
|
if ((filename == NULL) || (token == NULL) || (data == NULL))
|
|
|
|
return NULL;
|
|
|
|
if ((filename[0] == 0) || (token[0] == 0) || (data[0] == 0))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
wfilename = utf8_to_wchar(filename);
|
|
|
|
if (wfilename == NULL) {
|
|
|
|
uprintf(conversion_error, filename);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
wtoken = utf8_to_wchar(token);
|
|
|
|
if (wfilename == NULL) {
|
|
|
|
uprintf(conversion_error, token);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
wdata = utf8_to_wchar(data);
|
|
|
|
if (wdata == NULL) {
|
|
|
|
uprintf(conversion_error, data);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
fd_in = _wfopen(wfilename, L"r, ccs=UNICODE");
|
|
|
|
if (fd_in == NULL) {
|
|
|
|
uprintf("Could not open file '%s'\n", filename);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
// Check the input file's BOM and create an output file with the same
|
|
|
|
if (fread(&bom, sizeof(bom), 1, fd_in) == 1) {
|
|
|
|
switch(bom) {
|
|
|
|
case 0xFEFF:
|
|
|
|
mode = 2; // UTF-16 (LE)
|
|
|
|
break;
|
|
|
|
case 0xBBEF: // Yeah, the UTF-8 BOM is really 0xEF,0xBB,0xBF, but
|
|
|
|
mode = 1; // find me a non UTF-8 file that actually begins with "ï»"
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
mode = 0; // ANSI
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
fseek(fd_in, 0, SEEK_SET);
|
|
|
|
}
|
|
|
|
|
|
|
|
wtmpname = (wchar_t*)calloc(wcslen(wfilename)+2, sizeof(wchar_t));
|
|
|
|
if (wtmpname == NULL) {
|
|
|
|
uprintf("Could not allocate space for temporary output name\n");
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
wcscpy(wtmpname, wfilename);
|
|
|
|
wtmpname[wcslen(wtmpname)] = '~';
|
|
|
|
|
|
|
|
fd_out = _wfopen(wtmpname, outmode[mode]);
|
|
|
|
if (fd_out == NULL) {
|
|
|
|
uprintf("Could not open temporary output file '%s~'\n", filename);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Process individual lines. NUL is always appended.
|
|
|
|
while (fgetws(buf, ARRAYSIZE(buf), fd_in) != NULL) {
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
|
|
|
|
// Skip leading spaces
|
|
|
|
i += wcsspn(&buf[i], wspace);
|
|
|
|
|
|
|
|
// Ignore comments or section headers
|
|
|
|
if ((buf[i] == ';') || (buf[i] == '[')) {
|
|
|
|
fputws(buf, fd_out);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Our token should begin a line
|
|
|
|
if (_wcsnicmp(&buf[i], wtoken, wcslen(wtoken)) != 0) {
|
|
|
|
fputws(buf, fd_out);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Token was found, move past token
|
|
|
|
i += wcslen(wtoken);
|
|
|
|
|
|
|
|
// Skip spaces
|
|
|
|
i += wcsspn(&buf[i], wspace);
|
|
|
|
|
|
|
|
// Check for an equal sign
|
|
|
|
if (buf[i] != L'=') {
|
|
|
|
fputws(buf, fd_out);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
i++;
|
|
|
|
|
|
|
|
// Skip spaces after equal sign
|
|
|
|
i += wcsspn(&buf[i], wspace);
|
|
|
|
|
|
|
|
// Output the token
|
|
|
|
buf[i] = 0;
|
|
|
|
fputws(buf, fd_out);
|
|
|
|
|
|
|
|
// Now output the new data
|
|
|
|
fwprintf(fd_out, L"%s\n", wdata);
|
|
|
|
ret = (char*)data;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ret == NULL) {
|
|
|
|
// Didn't find an existing token => append it
|
|
|
|
fwprintf(fd_out, L"%s = %s\n", wtoken, wdata);
|
|
|
|
ret = (char*)data;
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
|
|
|
if (fd_in != NULL) fclose(fd_in);
|
|
|
|
if (fd_out != NULL) fclose(fd_out);
|
|
|
|
|
|
|
|
// If an insertion occurred, delete existing file and use the new one
|
|
|
|
if (ret != NULL) {
|
|
|
|
// We're in Windows text mode => Remove CRs if requested
|
|
|
|
fd_in = _wfopen(wtmpname, L"rb");
|
|
|
|
fd_out = _wfopen(wfilename, L"wb");
|
|
|
|
// Don't check fds
|
|
|
|
if ((fd_in != NULL) && (fd_out != NULL)) {
|
|
|
|
size = (mode==2)?2:1;
|
|
|
|
while(fread(tmp, size, 1, fd_in) == 1)
|
|
|
|
fwrite(tmp, size, 1, fd_out);
|
|
|
|
fclose(fd_in);
|
|
|
|
fclose(fd_out);
|
|
|
|
} else {
|
|
|
|
uprintf("Could not write '%s' - original file has been left unmodified\n", filename);
|
|
|
|
ret = NULL;
|
|
|
|
if (fd_in != NULL) fclose(fd_in);
|
|
|
|
if (fd_out != NULL) fclose(fd_out);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (wtmpname != NULL)
|
|
|
|
_wunlink(wtmpname);
|
|
|
|
safe_free(wfilename);
|
|
|
|
safe_free(wtmpname);
|
|
|
|
safe_free(wtoken);
|
|
|
|
safe_free(wdata);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-10-15 21:58:27 +00:00
|
|
|
/*
|
|
|
|
* Parse a buffer (ANSI or UTF-8) and return the data for the 'n'th occurrence of 'token'
|
|
|
|
* The returned string is UTF-8 and MUST be freed by the caller
|
|
|
|
*/
|
2012-11-12 01:53:34 +00:00
|
|
|
char* get_token_data_buffer(const char* token, unsigned int n, const char* buffer, size_t buffer_size)
|
|
|
|
{
|
2012-12-04 01:47:45 +00:00
|
|
|
unsigned int j, curly_count;
|
2012-11-12 01:53:34 +00:00
|
|
|
wchar_t *wtoken = NULL, *wdata = NULL, *wbuffer = NULL, *wline = NULL;
|
|
|
|
size_t i;
|
|
|
|
BOOL done = FALSE;
|
|
|
|
char* ret = NULL;
|
|
|
|
|
|
|
|
// We're handling remote data => better safe than sorry
|
|
|
|
if ((token == NULL) || (buffer == NULL) || (buffer_size <= 4) || (buffer_size > 65536))
|
|
|
|
goto out;
|
2012-03-01 19:19:12 +00:00
|
|
|
|
2012-11-12 01:53:34 +00:00
|
|
|
// Ensure that our buffer is NUL terminated
|
|
|
|
if (buffer[buffer_size-1] != 0)
|
|
|
|
goto out;
|
2012-03-01 19:19:12 +00:00
|
|
|
|
2012-11-12 01:53:34 +00:00
|
|
|
wbuffer = utf8_to_wchar(buffer);
|
|
|
|
wtoken = utf8_to_wchar(token);
|
|
|
|
if ((wbuffer == NULL) || (wtoken == NULL))
|
|
|
|
goto out;
|
2012-03-01 19:19:12 +00:00
|
|
|
|
2012-12-04 01:47:45 +00:00
|
|
|
// Process individual lines (or multiple lines when between {}, for RTF)
|
2012-11-12 01:53:34 +00:00
|
|
|
for (i=0,j=0,done=FALSE; (j!=n)&&(!done); ) {
|
|
|
|
wline = &wbuffer[i];
|
2012-03-01 19:19:12 +00:00
|
|
|
|
2012-12-04 01:47:45 +00:00
|
|
|
for(curly_count=0;((curly_count>0)||((wbuffer[i]!=L'\n')&&(wbuffer[i]!=L'\r')))&&(wbuffer[i]!=0);i++) {
|
|
|
|
if (wbuffer[i] == L'{') curly_count++;
|
|
|
|
if (wbuffer[i] == L'}') curly_count--;
|
|
|
|
}
|
2012-11-12 01:53:34 +00:00
|
|
|
if (wbuffer[i]==0) {
|
|
|
|
done = TRUE;
|
|
|
|
} else {
|
|
|
|
wbuffer[i++] = 0;
|
|
|
|
}
|
|
|
|
wdata = get_token_data_line(wtoken, wline);
|
|
|
|
if (wdata != NULL) {
|
|
|
|
j++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
out:
|
|
|
|
if (wdata != NULL)
|
|
|
|
ret = wchar_to_utf8(wdata);
|
|
|
|
safe_free(wbuffer);
|
|
|
|
safe_free(wtoken);
|
|
|
|
return ret;
|
|
|
|
}
|
2012-03-01 19:19:12 +00:00
|
|
|
|
2012-11-12 01:53:34 +00:00
|
|
|
static __inline char* get_sanitized_token_data_buffer(const char* token, unsigned int n, const char* buffer, size_t buffer_size)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
char* data = get_token_data_buffer(token, n, buffer, buffer_size);
|
|
|
|
if (data != NULL) {
|
2014-05-09 21:05:25 +00:00
|
|
|
for (i=0; i<strlen(data); i++) {
|
2012-11-12 01:53:34 +00:00
|
|
|
if ((data[i] == '\\') && (data[i+1] == 'n')) {
|
|
|
|
data[i] = '\r';
|
|
|
|
data[i+1] = '\n';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return data;
|
|
|
|
}
|
2012-03-01 19:19:12 +00:00
|
|
|
|
2013-10-15 21:58:27 +00:00
|
|
|
/*
|
|
|
|
* Parse an update data file and populates a rufus_update structure.
|
|
|
|
* NB: since this is remote data, and we're running elevated, it *IS* considered
|
|
|
|
* potentially malicious, even if it comes from a supposedly trusted server.
|
|
|
|
* len should be the size of the buffer, including the zero terminator
|
|
|
|
*/
|
2012-11-22 01:52:33 +00:00
|
|
|
void parse_update(char* buf, size_t len)
|
2012-11-12 01:53:34 +00:00
|
|
|
{
|
2012-11-22 01:52:33 +00:00
|
|
|
size_t i;
|
2012-11-12 01:53:34 +00:00
|
|
|
char *data = NULL, *token;
|
2012-12-04 01:47:45 +00:00
|
|
|
char allowed_rtf_chars[] = "abcdefghijklmnopqrstuvwxyz|~-_:*'";
|
|
|
|
char allowed_std_chars[] = "\r\n ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!\"$%^&+=<>(){}[].,;#@/?";
|
2012-11-12 01:53:34 +00:00
|
|
|
|
2012-12-04 01:47:45 +00:00
|
|
|
// strchr includes the NUL terminator in the search, so take care of backslash before NUL
|
|
|
|
if ((buf == NULL) || (len < 2) || (len > 65536) || (buf[len-1] != 0) || (buf[len-2] == '\\'))
|
2012-11-22 01:52:33 +00:00
|
|
|
return;
|
2012-12-04 01:47:45 +00:00
|
|
|
// Sanitize the data - Not a silver bullet, but it helps
|
2012-12-07 00:54:40 +00:00
|
|
|
len = safe_strlen(buf)+1; // Someone may be inserting NULs
|
2012-11-22 01:52:33 +00:00
|
|
|
for (i=0; i<len-1; i++) {
|
2012-12-04 01:47:45 +00:00
|
|
|
// Check for valid RTF sequences as well as allowed chars if not RTF
|
|
|
|
if (buf[i] == '\\') {
|
|
|
|
// NB: we have a zero terminator, so we can afford a +1 without overflow
|
|
|
|
if (strchr(allowed_rtf_chars, buf[i+1]) == NULL) {
|
|
|
|
buf[i] = ' ';
|
|
|
|
}
|
|
|
|
} else if ((strchr(allowed_rtf_chars, buf[i]) == NULL) && (strchr(allowed_std_chars, buf[i]) == NULL)) {
|
2012-11-12 01:53:34 +00:00
|
|
|
buf[i] = ' ';
|
|
|
|
}
|
|
|
|
}
|
2012-03-01 19:19:12 +00:00
|
|
|
|
2012-12-07 00:54:40 +00:00
|
|
|
for (i=0; i<4; i++)
|
|
|
|
update.version[i] = 0;
|
|
|
|
update.platform_min[0] = 5;
|
|
|
|
update.platform_min[1] = 2; // XP or later
|
|
|
|
safe_free(update.download_url);
|
|
|
|
safe_free(update.release_notes);
|
2012-11-22 01:52:33 +00:00
|
|
|
if ((data = get_sanitized_token_data_buffer("version", 1, buf, len)) != NULL) {
|
|
|
|
for (i=0; (i<4) && ((token = strtok((i==0)?data:NULL, ".")) != NULL); i++) {
|
2012-12-07 00:54:40 +00:00
|
|
|
update.version[i] = (uint16_t)atoi(token);
|
|
|
|
}
|
|
|
|
safe_free(data);
|
|
|
|
}
|
|
|
|
if ((data = get_sanitized_token_data_buffer("platform_min", 1, buf, len)) != NULL) {
|
|
|
|
for (i=0; (i<2) && ((token = strtok((i==0)?data:NULL, ".")) != NULL); i++) {
|
|
|
|
update.platform_min[i] = (uint32_t)atoi(token);
|
2012-11-12 01:53:34 +00:00
|
|
|
}
|
|
|
|
safe_free(data);
|
|
|
|
}
|
2012-12-04 01:47:45 +00:00
|
|
|
update.download_url = get_sanitized_token_data_buffer("download_url", 1, buf, len);
|
2012-11-22 01:52:33 +00:00
|
|
|
update.release_notes = get_sanitized_token_data_buffer("release_notes", 1, buf, len);
|
2012-03-01 19:19:12 +00:00
|
|
|
}
|
|
|
|
|
2013-10-15 21:58:27 +00:00
|
|
|
/*
|
|
|
|
* Insert entry 'data' under section 'section' of a config file
|
2014-05-20 18:28:46 +00:00
|
|
|
* Section must include the relevant delimiters (eg '[', ']') if needed
|
2013-10-15 21:58:27 +00:00
|
|
|
*/
|
2012-03-27 19:31:15 +00:00
|
|
|
char* insert_section_data(const char* filename, const char* section, const char* data, BOOL dos2unix)
|
|
|
|
{
|
|
|
|
const wchar_t* outmode[] = { L"w", L"w, ccs=UTF-8", L"w, ccs=UTF-16LE" };
|
|
|
|
wchar_t *wsection = NULL, *wfilename = NULL, *wtmpname = NULL, *wdata = NULL, bom = 0;
|
|
|
|
wchar_t buf[1024];
|
|
|
|
FILE *fd_in = NULL, *fd_out = NULL;
|
|
|
|
size_t i, size;
|
2014-01-11 00:19:03 +00:00
|
|
|
int mode = 0;
|
2012-03-27 19:31:15 +00:00
|
|
|
char *ret = NULL, tmp[2];
|
|
|
|
|
|
|
|
if ((filename == NULL) || (section == NULL) || (data == NULL))
|
|
|
|
return NULL;
|
|
|
|
if ((filename[0] == 0) || (section[0] == 0) || (data[0] == 0))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
wfilename = utf8_to_wchar(filename);
|
|
|
|
if (wfilename == NULL) {
|
2015-01-25 00:56:38 +00:00
|
|
|
uprintf(conversion_error, filename);
|
2012-03-27 19:31:15 +00:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
wsection = utf8_to_wchar(section);
|
|
|
|
if (wfilename == NULL) {
|
2015-01-25 00:56:38 +00:00
|
|
|
uprintf(conversion_error, section);
|
2012-03-27 19:31:15 +00:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
wdata = utf8_to_wchar(data);
|
|
|
|
if (wdata == NULL) {
|
2015-01-25 00:56:38 +00:00
|
|
|
uprintf(conversion_error, data);
|
2012-03-27 19:31:15 +00:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
fd_in = _wfopen(wfilename, L"r, ccs=UNICODE");
|
|
|
|
if (fd_in == NULL) {
|
|
|
|
uprintf("Could not open file '%s'\n", filename);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
// Check the input file's BOM and create an output file with the same
|
2014-05-09 21:05:25 +00:00
|
|
|
if (fread(&bom, sizeof(bom), 1, fd_in) != 1) {
|
|
|
|
uprintf("Could not read file '%s'\n", filename);
|
|
|
|
goto out;
|
|
|
|
}
|
2012-03-27 19:31:15 +00:00
|
|
|
switch(bom) {
|
|
|
|
case 0xFEFF:
|
|
|
|
mode = 2; // UTF-16 (LE)
|
|
|
|
break;
|
|
|
|
case 0xBBEF: // Yeah, the UTF-8 BOM is really 0xEF,0xBB,0xBF, but
|
2013-02-01 22:59:46 +00:00
|
|
|
mode = 1; // find me a non UTF-8 file that actually begins with "ï»"
|
2012-03-27 19:31:15 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
mode = 0; // ANSI
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
fseek(fd_in, 0, SEEK_SET);
|
2015-01-25 00:56:38 +00:00
|
|
|
// duprintf("'%s' was detected as %s\n", filename,
|
|
|
|
// (mode==0)?"ANSI/UTF8 (no BOM)":((mode==1)?"UTF8 (with BOM)":"UTF16 (with BOM"));
|
2012-03-27 19:31:15 +00:00
|
|
|
|
|
|
|
wtmpname = (wchar_t*)calloc(wcslen(wfilename)+2, sizeof(wchar_t));
|
|
|
|
if (wtmpname == NULL) {
|
|
|
|
uprintf("Could not allocate space for temporary output name\n");
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
wcscpy(wtmpname, wfilename);
|
|
|
|
wtmpname[wcslen(wtmpname)] = '~';
|
|
|
|
|
|
|
|
fd_out = _wfopen(wtmpname, outmode[mode]);
|
|
|
|
if (fd_out == NULL) {
|
2013-10-15 21:58:27 +00:00
|
|
|
uprintf("Could not open temporary output file '%s~'\n", filename);
|
2012-03-27 19:31:15 +00:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Process individual lines. NUL is always appended.
|
|
|
|
while (fgetws(buf, ARRAYSIZE(buf), fd_in) != NULL) {
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
|
|
|
|
// Skip leading spaces
|
|
|
|
i += wcsspn(&buf[i], wspace);
|
|
|
|
|
|
|
|
// Our token should begin a line
|
|
|
|
if (_wcsnicmp(&buf[i], wsection, wcslen(wsection)) != 0) {
|
|
|
|
fputws(buf, fd_out);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Section was found, output it
|
|
|
|
fputws(buf, fd_out);
|
|
|
|
// Now output the new data
|
|
|
|
fwprintf(fd_out, L"%s\n", wdata);
|
|
|
|
ret = (char*)data;
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
|
|
|
if (fd_in != NULL) fclose(fd_in);
|
|
|
|
if (fd_out != NULL) fclose(fd_out);
|
|
|
|
|
2013-06-30 01:31:52 +00:00
|
|
|
// If an insertion occurred, delete existing file and use the new one
|
2012-03-27 19:31:15 +00:00
|
|
|
if (ret != NULL) {
|
|
|
|
// We're in Windows text mode => Remove CRs if requested
|
|
|
|
fd_in = _wfopen(wtmpname, L"rb");
|
|
|
|
fd_out = _wfopen(wfilename, L"wb");
|
|
|
|
// Don't check fds
|
|
|
|
if ((fd_in != NULL) && (fd_out != NULL)) {
|
|
|
|
size = (mode==2)?2:1;
|
|
|
|
while(fread(tmp, size, 1, fd_in) == 1) {
|
|
|
|
if ((!dos2unix) || (tmp[0] != 0x0D))
|
|
|
|
fwrite(tmp, size, 1, fd_out);
|
|
|
|
}
|
|
|
|
fclose(fd_in);
|
|
|
|
fclose(fd_out);
|
|
|
|
} else {
|
2013-10-15 21:58:27 +00:00
|
|
|
uprintf("Could not write '%s' - original file has been left unmodified\n", filename);
|
2012-03-27 19:31:15 +00:00
|
|
|
ret = NULL;
|
|
|
|
if (fd_in != NULL) fclose(fd_in);
|
|
|
|
if (fd_out != NULL) fclose(fd_out);
|
|
|
|
}
|
2014-05-09 21:05:25 +00:00
|
|
|
}
|
|
|
|
if (wtmpname != NULL)
|
|
|
|
_wunlink(wtmpname);
|
2012-03-27 19:31:15 +00:00
|
|
|
safe_free(wfilename);
|
|
|
|
safe_free(wtmpname);
|
|
|
|
safe_free(wsection);
|
|
|
|
safe_free(wdata);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-10-15 21:58:27 +00:00
|
|
|
/*
|
|
|
|
* Search for a specific 'src' substring data for all occurrences of 'token', and replace
|
|
|
|
* it with 'rep'. File can be ANSI or UNICODE and is overwritten. Parameters are UTF-8.
|
|
|
|
* The parsed line is of the form: [ ]token[ ]data
|
|
|
|
* Returns a pointer to rep if replacement occurred, NULL otherwise
|
|
|
|
*/
|
2012-03-27 19:31:15 +00:00
|
|
|
char* replace_in_token_data(const char* filename, const char* token, const char* src, const char* rep, BOOL dos2unix)
|
2012-03-01 19:19:12 +00:00
|
|
|
{
|
|
|
|
const wchar_t* outmode[] = { L"w", L"w, ccs=UTF-8", L"w, ccs=UTF-16LE" };
|
|
|
|
wchar_t *wtoken = NULL, *wfilename = NULL, *wtmpname = NULL, *wsrc = NULL, *wrep = NULL, bom = 0;
|
|
|
|
wchar_t buf[1024], *torep;
|
|
|
|
FILE *fd_in = NULL, *fd_out = NULL;
|
|
|
|
size_t i, size;
|
2014-01-11 00:19:03 +00:00
|
|
|
int mode = 0;
|
2012-03-01 19:19:12 +00:00
|
|
|
char *ret = NULL, tmp[2];
|
|
|
|
|
|
|
|
if ((filename == NULL) || (token == NULL) || (src == NULL) || (rep == NULL))
|
|
|
|
return NULL;
|
|
|
|
if ((filename[0] == 0) || (token[0] == 0) || (src[0] == 0) || (rep[0] == 0))
|
|
|
|
return NULL;
|
|
|
|
if (strcmp(src, rep) == 0) // No need for processing is source is same as replacement
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
wfilename = utf8_to_wchar(filename);
|
|
|
|
if (wfilename == NULL) {
|
2015-01-25 00:56:38 +00:00
|
|
|
uprintf(conversion_error, filename);
|
2012-03-01 19:19:12 +00:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
wtoken = utf8_to_wchar(token);
|
|
|
|
if (wfilename == NULL) {
|
2015-01-25 00:56:38 +00:00
|
|
|
uprintf(conversion_error, token);
|
2012-03-01 19:19:12 +00:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
wsrc = utf8_to_wchar(src);
|
|
|
|
if (wsrc == NULL) {
|
2015-01-25 00:56:38 +00:00
|
|
|
uprintf(conversion_error, src);
|
2012-03-01 19:19:12 +00:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
wrep = utf8_to_wchar(rep);
|
|
|
|
if (wsrc == NULL) {
|
2015-01-25 00:56:38 +00:00
|
|
|
uprintf(conversion_error, rep);
|
2012-03-01 19:19:12 +00:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
fd_in = _wfopen(wfilename, L"r, ccs=UNICODE");
|
|
|
|
if (fd_in == NULL) {
|
|
|
|
uprintf("Could not open file '%s'\n", filename);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
// Check the input file's BOM and create an output file with the same
|
2014-05-09 21:05:25 +00:00
|
|
|
if (fread(&bom, sizeof(bom), 1, fd_in) != 1) {
|
|
|
|
uprintf("Could not read file '%s'\n", filename);
|
|
|
|
goto out;
|
|
|
|
}
|
2012-03-01 19:19:12 +00:00
|
|
|
switch(bom) {
|
|
|
|
case 0xFEFF:
|
|
|
|
mode = 2; // UTF-16 (LE)
|
|
|
|
break;
|
|
|
|
case 0xBBEF: // Yeah, the UTF-8 BOM is really 0xEF,0xBB,0xBF, but
|
2013-02-01 22:59:46 +00:00
|
|
|
mode = 1; // find me a non UTF-8 file that actually begins with "ï»"
|
2012-03-01 19:19:12 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
mode = 0; // ANSI
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
fseek(fd_in, 0, SEEK_SET);
|
2014-06-03 21:16:40 +00:00
|
|
|
duprintf("'%s' was detected as %s\n", filename,
|
|
|
|
(mode==0)?"ANSI/UTF8 (no BOM)":((mode==1)?"UTF8 (with BOM)":"UTF16 (with BOM"));
|
2012-03-01 19:19:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
wtmpname = (wchar_t*)calloc(wcslen(wfilename)+2, sizeof(wchar_t));
|
|
|
|
if (wtmpname == NULL) {
|
|
|
|
uprintf("Could not allocate space for temporary output name\n");
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
wcscpy(wtmpname, wfilename);
|
|
|
|
wtmpname[wcslen(wtmpname)] = '~';
|
|
|
|
|
|
|
|
fd_out = _wfopen(wtmpname, outmode[mode]);
|
|
|
|
if (fd_out == NULL) {
|
2013-10-15 21:58:27 +00:00
|
|
|
uprintf("Could not open temporary output file '%s~'\n", filename);
|
2012-03-01 19:19:12 +00:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Process individual lines. NUL is always appended.
|
|
|
|
while (fgetws(buf, ARRAYSIZE(buf), fd_in) != NULL) {
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
|
|
|
|
// Skip leading spaces
|
|
|
|
i += wcsspn(&buf[i], wspace);
|
|
|
|
|
|
|
|
// Our token should begin a line
|
|
|
|
if (_wcsnicmp(&buf[i], wtoken, wcslen(wtoken)) != 0) {
|
|
|
|
fputws(buf, fd_out);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Token was found, move past token
|
2015-01-25 00:56:38 +00:00
|
|
|
i += wcslen(wtoken);
|
2012-03-01 19:19:12 +00:00
|
|
|
|
|
|
|
// Skip spaces
|
|
|
|
i += wcsspn(&buf[i], wspace);
|
|
|
|
|
|
|
|
torep = wcsstr(&buf[i], wsrc);
|
|
|
|
if (torep == NULL) {
|
|
|
|
fputws(buf, fd_out);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
i = (torep-buf) + wcslen(wsrc);
|
|
|
|
*torep = 0;
|
|
|
|
fwprintf(fd_out, L"%s%s%s", buf, wrep, &buf[i]);
|
|
|
|
ret = (char*)rep;
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
|
|
|
if (fd_in != NULL) fclose(fd_in);
|
|
|
|
if (fd_out != NULL) fclose(fd_out);
|
|
|
|
|
2013-06-30 01:31:52 +00:00
|
|
|
// If a replacement occurred, delete existing file and use the new one
|
2012-03-01 19:19:12 +00:00
|
|
|
if (ret != NULL) {
|
2012-03-27 19:31:15 +00:00
|
|
|
// We're in Windows text mode => Remove CRs if requested
|
2012-03-01 19:19:12 +00:00
|
|
|
fd_in = _wfopen(wtmpname, L"rb");
|
|
|
|
fd_out = _wfopen(wfilename, L"wb");
|
|
|
|
// Don't check fds
|
|
|
|
if ((fd_in != NULL) && (fd_out != NULL)) {
|
|
|
|
size = (mode==2)?2:1;
|
|
|
|
while(fread(tmp, size, 1, fd_in) == 1) {
|
2012-03-27 19:31:15 +00:00
|
|
|
if ((!dos2unix) || (tmp[0] != 0x0D))
|
2012-03-01 19:19:12 +00:00
|
|
|
fwrite(tmp, size, 1, fd_out);
|
|
|
|
}
|
|
|
|
fclose(fd_in);
|
|
|
|
fclose(fd_out);
|
|
|
|
} else {
|
2013-10-15 21:58:27 +00:00
|
|
|
uprintf("Could not write '%s' - original file has been left unmodified.\n", filename);
|
2012-03-27 19:31:15 +00:00
|
|
|
ret = NULL;
|
2012-03-01 19:19:12 +00:00
|
|
|
if (fd_in != NULL) fclose(fd_in);
|
|
|
|
if (fd_out != NULL) fclose(fd_out);
|
|
|
|
}
|
2012-03-27 19:31:15 +00:00
|
|
|
}
|
2014-05-09 21:05:25 +00:00
|
|
|
if (wtmpname != NULL)
|
|
|
|
_wunlink(wtmpname);
|
2012-03-01 19:19:12 +00:00
|
|
|
safe_free(wfilename);
|
|
|
|
safe_free(wtmpname);
|
|
|
|
safe_free(wtoken);
|
|
|
|
safe_free(wsrc);
|
|
|
|
safe_free(wrep);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
2014-11-07 23:57:17 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Replace all 'c' characters in string 'src' with the subtsring 'rep'
|
|
|
|
* The returned string is allocated and must be freed by the caller.
|
|
|
|
*/
|
|
|
|
char* replace_char(const char* src, const char c, const char* rep)
|
|
|
|
{
|
|
|
|
size_t i, j, k, count=0, str_len = safe_strlen(src), rep_len = safe_strlen(rep);
|
|
|
|
char* res;
|
|
|
|
|
|
|
|
if ((src == NULL) || (rep == NULL))
|
|
|
|
return NULL;
|
|
|
|
for (i=0; i<str_len; i++) {
|
|
|
|
if (src[i] == c)
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
res = (char*)malloc(str_len + count*rep_len + 1);
|
|
|
|
for (i=0,j=0; i<str_len; i++) {
|
|
|
|
if (src[i] == c) {
|
|
|
|
for(k=0; k<rep_len; k++)
|
|
|
|
res[j++] = rep[k];
|
|
|
|
} else {
|
|
|
|
res[j++] = src[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
res[j] = 0;
|
|
|
|
return res;
|
|
|
|
}
|