2013-09-05 18:13:29 +02:00
|
|
|
/*
|
2021-01-01 19:54:25 +01:00
|
|
|
* Copyright 2003-2021 The Music Player Daemon Project
|
2013-09-05 18:13:29 +02:00
|
|
|
* http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* 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 2 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, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2017-02-08 08:26:58 +01:00
|
|
|
#include "FixString.hxx"
|
2014-01-07 23:33:46 +01:00
|
|
|
#include "util/Alloc.hxx"
|
2020-04-24 15:41:06 +02:00
|
|
|
#include "util/CharUtil.hxx"
|
2014-10-10 22:01:29 +02:00
|
|
|
#include "util/WritableBuffer.hxx"
|
2015-09-30 22:03:01 +02:00
|
|
|
#include "util/StringView.hxx"
|
2014-10-10 21:58:21 +02:00
|
|
|
#include "util/UTF8.hxx"
|
2013-09-05 18:13:29 +02:00
|
|
|
|
2020-04-24 15:40:51 +02:00
|
|
|
#include <algorithm>
|
2020-03-12 23:20:59 +01:00
|
|
|
#include <cassert>
|
|
|
|
|
2014-01-07 23:33:46 +01:00
|
|
|
#include <stdlib.h>
|
2013-09-05 18:13:29 +02:00
|
|
|
|
2014-10-10 21:58:21 +02:00
|
|
|
gcc_pure
|
|
|
|
static const char *
|
2017-05-08 14:44:49 +02:00
|
|
|
FindInvalidUTF8(const char *p, const char *const end) noexcept
|
2014-10-10 21:58:21 +02:00
|
|
|
{
|
|
|
|
while (p < end) {
|
|
|
|
const size_t s = SequenceLengthUTF8(*p);
|
|
|
|
if (p + s > end)
|
|
|
|
/* partial sequence at end of string */
|
|
|
|
return p;
|
|
|
|
|
|
|
|
/* now call the other SequenceLengthUTF8() overload
|
|
|
|
which also validates the continuations */
|
|
|
|
const size_t t = SequenceLengthUTF8(p);
|
|
|
|
if (t == 0)
|
|
|
|
return p;
|
2015-11-14 21:18:41 +01:00
|
|
|
assert(s == t);
|
2014-10-10 21:58:21 +02:00
|
|
|
|
|
|
|
p += s;
|
|
|
|
}
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
2014-02-17 22:33:10 +01:00
|
|
|
|
2013-09-05 18:13:29 +02:00
|
|
|
/**
|
|
|
|
* Replace invalid sequences with the question mark.
|
|
|
|
*/
|
2014-10-10 22:01:29 +02:00
|
|
|
static WritableBuffer<char>
|
2015-09-30 22:03:01 +02:00
|
|
|
patch_utf8(StringView src, const char *_invalid)
|
2013-09-05 18:13:29 +02:00
|
|
|
{
|
|
|
|
/* duplicate the string, and replace invalid bytes in that
|
|
|
|
buffer */
|
2015-09-30 22:03:01 +02:00
|
|
|
char *dest = (char *)xmemdup(src.data, src.size);
|
|
|
|
char *const end = dest + src.size;
|
2013-09-05 18:13:29 +02:00
|
|
|
|
2015-09-30 22:03:01 +02:00
|
|
|
char *invalid = dest + (_invalid - src.data);
|
2013-09-05 18:13:29 +02:00
|
|
|
do {
|
2014-10-10 21:58:21 +02:00
|
|
|
*invalid = '?';
|
|
|
|
|
|
|
|
const char *__invalid = FindInvalidUTF8(invalid + 1, end);
|
|
|
|
invalid = const_cast<char *>(__invalid);
|
|
|
|
} while (invalid != nullptr);
|
2013-09-05 18:13:29 +02:00
|
|
|
|
2015-09-30 22:03:01 +02:00
|
|
|
return { dest, src.size };
|
2013-09-05 18:13:29 +02:00
|
|
|
}
|
|
|
|
|
2014-10-10 22:01:29 +02:00
|
|
|
static WritableBuffer<char>
|
2015-09-30 22:03:01 +02:00
|
|
|
fix_utf8(StringView p)
|
2013-09-05 18:13:29 +02:00
|
|
|
{
|
|
|
|
/* check if the string is already valid UTF-8 */
|
2015-09-30 22:03:01 +02:00
|
|
|
const char *invalid = FindInvalidUTF8(p.begin(), p.end());
|
2014-10-10 21:58:21 +02:00
|
|
|
if (invalid == nullptr)
|
2013-09-05 18:13:29 +02:00
|
|
|
return nullptr;
|
|
|
|
|
2014-10-10 20:53:08 +02:00
|
|
|
/* no, broken - patch invalid sequences */
|
2015-09-30 22:03:01 +02:00
|
|
|
return patch_utf8(p, invalid);
|
2013-09-05 18:13:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static const char *
|
2015-09-30 22:03:01 +02:00
|
|
|
find_non_printable(StringView p)
|
2013-09-05 18:13:29 +02:00
|
|
|
{
|
2015-09-30 22:03:01 +02:00
|
|
|
for (const char &ch : p)
|
2020-04-27 13:58:02 +02:00
|
|
|
if (IsNonPrintableASCII(ch))
|
2015-09-30 22:03:01 +02:00
|
|
|
return &ch;
|
2013-09-05 18:13:29 +02:00
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Clears all non-printable characters, convert them to space.
|
|
|
|
* Returns nullptr if nothing needs to be cleared.
|
|
|
|
*/
|
2014-10-10 22:01:29 +02:00
|
|
|
static WritableBuffer<char>
|
2015-09-30 22:03:01 +02:00
|
|
|
clear_non_printable(StringView src)
|
2013-09-05 18:13:29 +02:00
|
|
|
{
|
2015-09-30 22:03:01 +02:00
|
|
|
const char *first = find_non_printable(src);
|
2013-09-05 18:13:29 +02:00
|
|
|
if (first == nullptr)
|
|
|
|
return nullptr;
|
|
|
|
|
2015-09-30 22:03:01 +02:00
|
|
|
char *dest = (char *)xmemdup(src.data, src.size);
|
2013-09-05 18:13:29 +02:00
|
|
|
|
2015-09-30 22:03:01 +02:00
|
|
|
for (size_t i = first - src.data; i < src.size; ++i)
|
2020-04-27 13:58:02 +02:00
|
|
|
if (IsNonPrintableASCII(dest[i]))
|
2013-09-05 18:13:29 +02:00
|
|
|
dest[i] = ' ';
|
|
|
|
|
2015-09-30 22:03:01 +02:00
|
|
|
return { dest, src.size };
|
2013-09-05 18:13:29 +02:00
|
|
|
}
|
|
|
|
|
2020-04-24 15:40:51 +02:00
|
|
|
gcc_pure
|
|
|
|
static bool
|
|
|
|
IsSafe(StringView s) noexcept
|
|
|
|
{
|
|
|
|
return std::all_of(s.begin(), s.end(),
|
|
|
|
[](char ch){
|
|
|
|
return IsASCII(ch) && IsPrintableASCII(ch);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2014-10-10 22:01:29 +02:00
|
|
|
WritableBuffer<char>
|
2015-09-30 22:03:01 +02:00
|
|
|
FixTagString(StringView p)
|
2013-09-05 18:13:29 +02:00
|
|
|
{
|
2020-04-24 15:40:51 +02:00
|
|
|
if (IsSafe(p))
|
|
|
|
/* optimistic optimization for the common case */
|
|
|
|
return nullptr;
|
|
|
|
|
2015-09-30 22:03:01 +02:00
|
|
|
auto utf8 = fix_utf8(p);
|
|
|
|
if (!utf8.IsNull())
|
|
|
|
p = {utf8.data, utf8.size};
|
2013-09-05 18:13:29 +02:00
|
|
|
|
2015-09-30 22:03:01 +02:00
|
|
|
WritableBuffer<char> cleared = clear_non_printable(p);
|
2014-10-10 22:01:29 +02:00
|
|
|
if (cleared.IsNull())
|
2013-09-05 18:13:29 +02:00
|
|
|
cleared = utf8;
|
|
|
|
else
|
2014-10-10 22:01:29 +02:00
|
|
|
free(utf8.data);
|
2013-09-05 18:13:29 +02:00
|
|
|
|
|
|
|
return cleared;
|
|
|
|
}
|