El jue 07 feb 2013 16:32:55 CLST, Cristian Rodríguez escribió:
El 07/02/13 11:52, Robert Milasan escribió:
Hi, seems that using some strange usb devices with really bogus serial
numbers usb_id creates links with junk strings in it:
Could be added to usb_id and then use it to validated serial_str and
serial.
Something like this is IMHO better
static bool is_valid_usb_id(const char *serial)
{
regex_t preg;
int rc;
if(!serial) return false;
rc = regcomp(&preg, "^[a-zA-Z0-9_-]+$", RULE_REGEX_FLAGS);
if(rc != 0) return false;
if (regexec(&preg, serial, 0, NULL, 0) != 0) {
regfree(&preg);
return false;
}
regfree(&preg);
return true;
}
But.. should the kernel just reject bogus usb ids ??
rule regex flags are (REG_EXTENDED | REG_ICASE | REG_NOSUB |
REG_NEWLINE) of course ;)
_______________________________________________
systemd-devel mailing list
systemd-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/systemd-devel