public inbox for linux-bluetooth@vger.kernel.org
 help / color / mirror / Atom feed
* Work-around for broken MS device
@ 2009-03-05 18:48 Bastien Nocera
  2009-03-18 17:27 ` [PATCH] " Bastien Nocera
  0 siblings, 1 reply; 8+ messages in thread
From: Bastien Nocera @ 2009-03-05 18:48 UTC (permalink / raw)
  To: BlueZ development

[-- Attachment #1: Type: text/plain, Size: 401 bytes --]

Heya,

As seen in https://bugzilla.redhat.com/show_bug.cgi?id=450081
The Microsoft Wireless Notebook Presenter Mouse 8000 has its name in
ISO-8859-1 instead of UTF-8, as required by the BT spec.

I've implemented a small work-around. This isn't very invasive, IMO, as
we already do UTF-8 checks.

In my tests, this makes the mouse show up as:
Microsoft® Wireless Notebook Presenter Mouse 8000

Cheers

[-- Attachment #2: bluez-try-utf8-harder.patch --]
[-- Type: text/x-patch, Size: 766 bytes --]

diff --git a/src/security.c b/src/security.c
index a61d75f..75908ba 100644
--- a/src/security.c
+++ b/src/security.c
@@ -600,8 +600,16 @@ static inline void remote_name_information(int dev, bdaddr_t *sba, void *ptr)
 		memcpy(name, evt->name, 248);
 		/* It's ok to cast end between const and non-const since
 		 * we know it points to inside of name which is non-const */
-		if (!g_utf8_validate(name, -1, (const char **) &end))
-			*end = '\0';
+		if (!g_utf8_validate(name, -1, (const char **) &end)) {
+			char *utf8_name;
+
+			utf8_name = g_convert(name, -1, "UTF-8", "ISO-8859-1", NULL, NULL, NULL);
+			if (utf8_name) {
+				memcpy(name, utf8_name, 248);
+				g_free(utf8_name);
+			} else
+				*end = '\0';
+		}
 		write_device_name(sba, &dba, name);
 	}
 

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2011-05-05 19:02 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-05 18:48 Work-around for broken MS device Bastien Nocera
2009-03-18 17:27 ` [PATCH] " Bastien Nocera
2009-03-14  6:21   ` Marcel Holtmann
2009-03-23 13:59     ` Bastien Nocera
2009-03-23 15:45       ` Marcel Holtmann
2011-05-05 18:02         ` Bastien Nocera
2011-05-05 18:37           ` Bastien Nocera
2011-05-05 19:02             ` Johan Hedberg

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox