blob: 413e329b600cc7977eecbca648abfa87ab321abe [file] [log] [blame]
AKASHI Takahiro077153e2020-10-29 13:47:46 +09001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * String functions
4 *
5 * Copyright (c) 2020 AKASHI Takahiro, Linaro Limited
6 */
7
AKASHI Takahiro077153e2020-10-29 13:47:46 +09008#include <charset.h>
Heinrich Schuchardta07ee3c2021-04-21 12:39:15 +02009#include <efi_loader.h>
Paul Barker39434a92022-10-05 13:18:35 +010010#include <malloc.h>
AKASHI Takahiro077153e2020-10-29 13:47:46 +090011
12/**
13 * efi_create_indexed_name - create a string name with an index
14 * @buffer: Buffer
15 * @name: Name string
16 * @index: Index
17 *
18 * Create a utf-16 string with @name, appending @index.
Simon Glass156ccbc2022-01-23 12:55:12 -070019 * For example, u"Capsule0001"
AKASHI Takahiro077153e2020-10-29 13:47:46 +090020 *
21 * The caller must ensure that the buffer has enough space for the resulting
22 * string including the trailing L'\0'.
23 *
24 * Return: A pointer to the next position after the created string
25 * in @buffer, or NULL otherwise
26 */
Ilias Apalodimasfe179d72020-12-31 12:26:46 +020027u16 *efi_create_indexed_name(u16 *buffer, size_t buffer_size, const char *name,
28 unsigned int index)
AKASHI Takahiro077153e2020-10-29 13:47:46 +090029{
30 u16 *p = buffer;
31 char index_buf[5];
Ilias Apalodimasfe179d72020-12-31 12:26:46 +020032 size_t size;
AKASHI Takahiro077153e2020-10-29 13:47:46 +090033
Ilias Apalodimasfe179d72020-12-31 12:26:46 +020034 size = (utf8_utf16_strlen(name) * sizeof(u16) +
35 sizeof(index_buf) * sizeof(u16));
36 if (buffer_size < size)
37 return NULL;
AKASHI Takahiro077153e2020-10-29 13:47:46 +090038 utf8_utf16_strcpy(&p, name);
Ilias Apalodimasfe179d72020-12-31 12:26:46 +020039 snprintf(index_buf, sizeof(index_buf), "%04X", index);
AKASHI Takahiro077153e2020-10-29 13:47:46 +090040 utf8_utf16_strcpy(&p, index_buf);
41
42 return p;
43}
Paul Barker39434a92022-10-05 13:18:35 +010044
45/**
46 * efi_convert_string - Convert an ASCII or UTF-8 string to UTF-16
47 * @str: String to be converted
48 *
49 * Return: Converted string in UTF-16 format. The caller is responsible for
50 * freeing this string when it is no longer needed.
51 */
52efi_string_t efi_convert_string(const char *str)
53{
54 efi_string_t str_16, tmp;
55 size_t sz_16;
56
57 sz_16 = utf8_utf16_strlen(str);
58 str_16 = calloc(sz_16 + 1, sizeof(u16));
59 if (!str_16)
60 return NULL;
61
62 tmp = str_16;
63 utf8_utf16_strcpy(&tmp, str);
64
65 return str_16;
66}