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