blob: bacf7b83ccf0ee6bdc14902bfd400a72b265b5cd [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Sam Ravnborg96e3e182007-07-31 00:38:13 -07002/*
3 * linux/lib/kasprintf.c
4 *
5 * Copyright (C) 1991, 1992 Linus Torvalds
6 */
7
8#include <stdarg.h>
Paul Gortmaker8bc3bcc2011-11-16 21:29:17 -05009#include <linux/export.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090010#include <linux/slab.h>
Sam Ravnborg96e3e182007-07-31 00:38:13 -070011#include <linux/types.h>
12#include <linux/string.h>
13
14/* Simplified asprintf. */
15char *kvasprintf(gfp_t gfp, const char *fmt, va_list ap)
16{
Rasmus Villemoes8e2a2bf2016-01-15 16:58:47 -080017 unsigned int first, second;
Sam Ravnborg96e3e182007-07-31 00:38:13 -070018 char *p;
19 va_list aq;
20
21 va_copy(aq, ap);
Rasmus Villemoes8e2a2bf2016-01-15 16:58:47 -080022 first = vsnprintf(NULL, 0, fmt, aq);
Sam Ravnborg96e3e182007-07-31 00:38:13 -070023 va_end(aq);
24
Rasmus Villemoes8e2a2bf2016-01-15 16:58:47 -080025 p = kmalloc_track_caller(first+1, gfp);
Sam Ravnborg96e3e182007-07-31 00:38:13 -070026 if (!p)
27 return NULL;
28
Rasmus Villemoes8e2a2bf2016-01-15 16:58:47 -080029 second = vsnprintf(p, first+1, fmt, ap);
30 WARN(first != second, "different return values (%u and %u) from vsnprintf(\"%s\", ...)",
31 first, second, fmt);
Sam Ravnborg96e3e182007-07-31 00:38:13 -070032
33 return p;
34}
35EXPORT_SYMBOL(kvasprintf);
36
Rasmus Villemoes0a9df782015-11-06 16:31:20 -080037/*
38 * If fmt contains no % (or is exactly %s), use kstrdup_const. If fmt
39 * (or the sole vararg) points to rodata, we will then save a memory
40 * allocation and string copy. In any case, the return value should be
41 * freed using kfree_const().
42 */
43const char *kvasprintf_const(gfp_t gfp, const char *fmt, va_list ap)
44{
45 if (!strchr(fmt, '%'))
46 return kstrdup_const(fmt, gfp);
47 if (!strcmp(fmt, "%s"))
48 return kstrdup_const(va_arg(ap, const char*), gfp);
49 return kvasprintf(gfp, fmt, ap);
50}
51EXPORT_SYMBOL(kvasprintf_const);
52
Sam Ravnborg96e3e182007-07-31 00:38:13 -070053char *kasprintf(gfp_t gfp, const char *fmt, ...)
54{
55 va_list ap;
56 char *p;
57
58 va_start(ap, fmt);
59 p = kvasprintf(gfp, fmt, ap);
60 va_end(ap);
61
62 return p;
63}
64EXPORT_SYMBOL(kasprintf);