]> git.ozlabs.org Git - petitboot/blob - lib/util/util.c
discover/grub2: Allow to separate the --id argument using a space char
[petitboot] / lib / util / util.c
1 /*
2  *  Copyright (C) 2013 IBM Corporation
3  *
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation; version 2 of the License.
7  *
8  *  This program is distributed in the hope that it will be useful,
9  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
10  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  *  GNU General Public License for more details.
12  *
13  *  You should have received a copy of the GNU General Public License
14  *  along with this program; if not, write to the Free Software
15  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16  */
17
18 #include <string.h>
19 #include <assert.h>
20
21 #include <util/util.h>
22 #include <talloc/talloc.h>
23
24 static const char hex[] = { '0', '1', '2', '3', '4', '5', '6', '7',
25                             '8', '9', 'a', 'b', 'c', 'd', 'e', 'f', };
26
27 void mac_str(uint8_t *mac, unsigned int maclen, char *buf, unsigned int buflen)
28 {
29         unsigned int i;
30         char *pos;
31
32         assert(buflen > sizeof("unknown"));
33
34         if (!maclen || maclen * 3 + 1 > buflen) {
35                 strcpy(buf, "unknown");
36                 return;
37         }
38
39         pos = buf;
40
41         for (i = 0; i < maclen; i++) {
42                 *(pos++) = hex[mac[i] >> 4 & 0xf];
43                 *(pos++) = hex[mac[i] & 0xf];
44                 *(pos++) = ':';
45         }
46
47         *(pos - 1) = '\0';
48
49         return;
50 }
51
52 char *format_buffer(void *ctx, const uint8_t *buf, unsigned int len)
53 {
54         char *str;
55         unsigned int i;
56
57         if (len == 0)
58                 return "";
59
60         str = talloc_asprintf(ctx, "0x%02x%s", buf[0], len > 1 ? " " : "");
61         for (i = 1; i < len; i++)
62                 str = talloc_asprintf_append(str, "0x%02x%s", buf[i],
63                         ((i + 1) % 8 == 0 && i != len - 1) ? "\n" : " ");
64
65         return str;
66 }