blob: af525353395d679001d98f73d1411e2d0dbbecda [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Andy Shevchenko4cd57732013-06-04 19:46:26 +03002#include <linux/string.h>
3#include <linux/if_ether.h>
4#include <linux/ctype.h>
5#include <linux/kernel.h>
6
Joe Perchesa69f5ed2014-06-24 11:20:48 -07007bool mac_pton(const char *s, u8 *mac)
Andy Shevchenko4cd57732013-06-04 19:46:26 +03008{
9 int i;
10
11 /* XX:XX:XX:XX:XX:XX */
12 if (strlen(s) < 3 * ETH_ALEN - 1)
Joe Perchesa69f5ed2014-06-24 11:20:48 -070013 return false;
Andy Shevchenko4cd57732013-06-04 19:46:26 +030014
15 /* Don't dirty result unless string is valid MAC. */
16 for (i = 0; i < ETH_ALEN; i++) {
17 if (!isxdigit(s[i * 3]) || !isxdigit(s[i * 3 + 1]))
Joe Perchesa69f5ed2014-06-24 11:20:48 -070018 return false;
Andy Shevchenko4cd57732013-06-04 19:46:26 +030019 if (i != ETH_ALEN - 1 && s[i * 3 + 2] != ':')
Joe Perchesa69f5ed2014-06-24 11:20:48 -070020 return false;
Andy Shevchenko4cd57732013-06-04 19:46:26 +030021 }
22 for (i = 0; i < ETH_ALEN; i++) {
23 mac[i] = (hex_to_bin(s[i * 3]) << 4) | hex_to_bin(s[i * 3 + 1]);
24 }
Joe Perchesa69f5ed2014-06-24 11:20:48 -070025 return true;
Andy Shevchenko4cd57732013-06-04 19:46:26 +030026}
27EXPORT_SYMBOL(mac_pton);