net_utils.c 604 B

123456789101112131415161718192021222324252627
  1. #include <linux/string.h>
  2. #include <linux/if_ether.h>
  3. #include <linux/ctype.h>
  4. #include <linux/kernel.h>
  5. bool mac_pton(const char *s, u8 *mac)
  6. {
  7. int i;
  8. /* XX:XX:XX:XX:XX:XX */
  9. if (strlen(s) < 3 * ETH_ALEN - 1)
  10. return false;
  11. /* Don't dirty result unless string is valid MAC. */
  12. for (i = 0; i < ETH_ALEN; i++) {
  13. if (!isxdigit(s[i * 3]) || !isxdigit(s[i * 3 + 1]))
  14. return false;
  15. if (i != ETH_ALEN - 1 && s[i * 3 + 2] != ':')
  16. return false;
  17. }
  18. for (i = 0; i < ETH_ALEN; i++) {
  19. mac[i] = (hex_to_bin(s[i * 3]) << 4) | hex_to_bin(s[i * 3 + 1]);
  20. }
  21. return true;
  22. }
  23. EXPORT_SYMBOL(mac_pton);