]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - lib/kasprintf.c
Merge tag 'wireless-drivers-for-davem-2017-08-25' of git://git.kernel.org/pub/scm...
[mirror_ubuntu-artful-kernel.git] / lib / kasprintf.c
CommitLineData
96e3e18e
SR
1/*
2 * linux/lib/kasprintf.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
6
7#include <stdarg.h>
8bc3bcc9 8#include <linux/export.h>
5a0e3ad6 9#include <linux/slab.h>
96e3e18e
SR
10#include <linux/types.h>
11#include <linux/string.h>
12
13/* Simplified asprintf. */
14char *kvasprintf(gfp_t gfp, const char *fmt, va_list ap)
15{
8e2a2bfd 16 unsigned int first, second;
96e3e18e
SR
17 char *p;
18 va_list aq;
19
20 va_copy(aq, ap);
8e2a2bfd 21 first = vsnprintf(NULL, 0, fmt, aq);
96e3e18e
SR
22 va_end(aq);
23
8e2a2bfd 24 p = kmalloc_track_caller(first+1, gfp);
96e3e18e
SR
25 if (!p)
26 return NULL;
27
8e2a2bfd
RV
28 second = vsnprintf(p, first+1, fmt, ap);
29 WARN(first != second, "different return values (%u and %u) from vsnprintf(\"%s\", ...)",
30 first, second, fmt);
96e3e18e
SR
31
32 return p;
33}
34EXPORT_SYMBOL(kvasprintf);
35
0a9df786
RV
36/*
37 * If fmt contains no % (or is exactly %s), use kstrdup_const. If fmt
38 * (or the sole vararg) points to rodata, we will then save a memory
39 * allocation and string copy. In any case, the return value should be
40 * freed using kfree_const().
41 */
42const char *kvasprintf_const(gfp_t gfp, const char *fmt, va_list ap)
43{
44 if (!strchr(fmt, '%'))
45 return kstrdup_const(fmt, gfp);
46 if (!strcmp(fmt, "%s"))
47 return kstrdup_const(va_arg(ap, const char*), gfp);
48 return kvasprintf(gfp, fmt, ap);
49}
50EXPORT_SYMBOL(kvasprintf_const);
51
96e3e18e
SR
52char *kasprintf(gfp_t gfp, const char *fmt, ...)
53{
54 va_list ap;
55 char *p;
56
57 va_start(ap, fmt);
58 p = kvasprintf(gfp, fmt, ap);
59 va_end(ap);
60
61 return p;
62}
63EXPORT_SYMBOL(kasprintf);