summaryrefslogtreecommitdiffstats
path: root/src/util/safe-format-string.c
blob: 11532d42e7965cd84ed6b2b3eaa6c56639d7a238 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
/*
 * This file originated in the realmd project
 *
 * Copyright 2013 Red Hat Inc
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published
 * by the Free Software Foundation; either version 2 of the licence or (at
 * your option) any later version.
 *
 * See the included COPYING file for more information.
 *
 * Author: Stef Walter <stefw@redhat.com>
 */

/*
 * Some snippets of code from gnulib, but have since been refactored
 * to within an inch of their life...
 *
 * vsprintf with automatic memory allocation.
 * Copyright (C) 1999, 2002-2003 Free Software Foundation, Inc.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Library General Public License as published
 * by the Free Software Foundation; either version 2, or (at your option)
 * any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 */

#include "config.h"

#include "safe-format-string.h"

#include <errno.h>
#include <stdarg.h>
#include <string.h>

#ifndef MIN
#define MIN(a, b)  (((a) < (b)) ? (a) : (b))
#endif

#ifndef MAX
#define MAX(a, b)  (((a) > (b)) ? (a) : (b))
#endif

static void
safe_padding (int count,
              int *total,
              void (* copy_fn) (void *, const char *, size_t),
              void *data)
{
    char eight[] = "        ";
    int num;

    while (count > 0) {
        num = MIN (count, 8);
        copy_fn (data, eight, num);
        count -= num;
        *total += num;
    }
}

static void
dummy_copy_fn (void *data,
               const char *piece,
               size_t len)
{

}

int
safe_format_string_cb (void (* copy_fn) (void *, const char *, size_t),
                       void *data,
                       const char *format,
                       const char * const args[],
                       int num_args)
{
    int at_arg = 0;
    const char *cp;
    int precision;
    int width;
    int len;
    const char *value;
    int total;
    int left;
    int i;

    if (!copy_fn)
        copy_fn = dummy_copy_fn;

    total = 0;
    cp = format;

    while (*cp) {

        /* Piece of raw string */
        if (*cp != '%') {
            len = strcspn (cp, "%");
            copy_fn (data, cp, len);
            total += len;
            cp += len;
            continue;
        }

        cp++;

        /* An literal percent sign? */
        if (*cp == '%') {
            copy_fn (data, "%", 1);
            total++;
            cp++;
            continue;
        }

        value = NULL;
        left = 0;
        precision = -1;
        width = -1;

        /* Test for positional argument.  */
        if (*cp >= '0' && *cp <= '9') {
            /* Look-ahead parsing, otherwise skipped */
            if (cp[strspn (cp, "0123456789")] == '$') {
                unsigned int n = 0;
                for (i = 0; i < 6 && *cp >= '0' && *cp <= '9'; i++, cp++) {
                    n = 10 * n + (*cp - '0');
                }
                /* Positional argument 0 is invalid. */
                if (n == 0) {
                    errno = EINVAL;
                    return -1;
                }
                /* Positional argument N too high */
                if (n > num_args) {
                    errno = EINVAL;
                    return -1;
                }
                value = args[n - 1];
                cp++; /* $ */
            }
        }

        /* Read the supported flags. */
        for (; ; cp++) {
            if (*cp == '-')
                left = 1;
            /* Supported but ignored */
            else if (*cp != ' ')
                break;
        }

        /* Parse the width. */
        if (*cp >= '0' && *cp <= '9') {
            width = 0;
            for (i = 0; i < 6 && *cp >= '0' && *cp <= '9'; i++, cp++) {
                width = 10 * width + (*cp - '0');
            }
        }

        /* Parse the precision. */
        if (*cp == '.') {
            precision = 0;
            for (i = 0, cp++; i < 6 && *cp >= '0' && *cp <= '9'; cp++, i++) {
                precision = 10 * precision + (*cp - '0');
            }
        }

        /* Read the conversion character.  */
        switch (*cp++) {
        case 's':
            /* Non-positional argument */
            if (value == NULL) {
                /* Too many arguments used */
                if (at_arg == num_args) {
                    errno = EINVAL;
                    return -1;
                }
                value = args[at_arg++];
            }
            break;

        /* No other conversion characters are supported */
        default:
            errno = EINVAL;
            return -1;
        }

        /* How many characters are we printing? */
        len = strlen (value);
        if (precision >= 0)
            len = MIN (precision, len);

        /* Do we need padding? */
        safe_padding (left ? 0 : width - len, &total, copy_fn, data);

        /* The actual data */;
        copy_fn (data, value, len);
        total += len;

        /* Do we need padding? */
        safe_padding (left ? width - len : 0, &total, copy_fn, data);
    }

    return total;
}

static const char **
valist_to_args (va_list va,
                int *num_args)
{
    int alo_args;
    const char **args;
    const char *arg;
    void *mem;

    *num_args = alo_args = 0;
    args = NULL;

    for (;;) {
        arg = va_arg (va, const char *);
        if (arg == NULL)
            break;
        if (*num_args == alo_args) {
            alo_args += 8;
            mem = realloc (args, sizeof (const char *) * alo_args);
            if (!mem) {
                free (args);
                return NULL;
            }
            args = mem;
        }
        args[(*num_args)++] = arg;
    }

    return args;
}

struct sprintf_ctx {
    char *data;
    size_t length;
    size_t alloc;
};

static void
snprintf_copy_fn (void *data,
                  const char *piece,
                  size_t length)
{
    struct sprintf_ctx *cx = data;

    /* Don't copy if too much data */
    if (cx->length > cx->alloc)
        length = 0;
    else if (cx->length + length > cx->alloc)
        length = cx->alloc - cx->length;

    if (length > 0)
        memcpy (cx->data + cx->length, piece, length);

    /* Null termination happens later */
    cx->length += length;
}

int
safe_format_string (char *str,
                    size_t len,
                    const char *format,
                    ...)
{
    struct sprintf_ctx cx;
    int num_args;
    va_list va;
    const char **args;
    int error = 0;
    int ret;

    cx.data = str;
    cx.length = 0;
    cx.alloc = len;

    va_start (va, format);
    args = valist_to_args (va, &num_args);
    va_end (va);

    if (args == NULL) {
        errno = ENOMEM;
        return -1;
    }

    if (len)
        cx.data[0] = '\0';

    ret = safe_format_string_cb (snprintf_copy_fn, &cx, format, args, num_args);
    if (ret < 0) {
        error = errno;
    } else if (len > 0) {
        cx.data[MIN (cx.length, len - 1)] = '\0';
    }

    free (args);

    if (error)
        errno = error;
    return ret;
}