-
Notifications
You must be signed in to change notification settings - Fork 15
/
xoauth2_str.c
90 lines (83 loc) · 2.89 KB
/
xoauth2_str.c
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
/*
* Copyright (c) 2016 Moriyoshi Koizumi
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
* sell copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <string.h>
#include "xoauth2_plugin.h"
const char empty_string[] = "";
int xoauth2_plugin_str_init(const sasl_utils_t *utils, xoauth2_plugin_str_t *s)
{
s->size = 0;
s->len = 0;
s->buf = (char *)empty_string;
return SASL_OK;
}
int xoauth2_plugin_str_alloc(const sasl_utils_t *utils, xoauth2_plugin_str_t *s, unsigned req_len)
{
if (req_len >= s->size) {
char *new_buf = s->buf == empty_string ? NULL: s->buf;
unsigned new_size = s->size + 16;
if (new_size < s->size) {
return SASL_NOMEM;
}
while (new_size < req_len) {
unsigned _new_size = new_size + (new_size >> 1);
if (_new_size < new_size) {
SASL_log((utils->conn, SASL_LOG_ERR, "failed to allocate %u bytes", req_len));
return SASL_NOMEM;
}
new_size = _new_size;
}
new_buf = utils->realloc(new_buf, new_size);
if (!new_buf) {
return SASL_NOMEM;
}
s->buf = new_buf;
s->size = new_size;
}
return SASL_OK;
}
int xoauth2_plugin_str_append(const sasl_utils_t *utils, xoauth2_plugin_str_t *s, const char *v, unsigned vlen)
{
int err;
unsigned req_len = s->len + vlen + 1;
if (req_len < s->len) {
return SASL_NOMEM;
}
err = xoauth2_plugin_str_alloc(utils, s, req_len);
if (err != SASL_OK) {
return err;
}
memcpy(s->buf + s->len, v, vlen);
s->len += vlen;
s->buf[s->len] = '\0';
return SASL_OK;
}
void xoauth2_plugin_str_free(const sasl_utils_t *utils, xoauth2_plugin_str_t *s)
{
if (s->buf && s->buf != empty_string) {
SASL_free(s->buf);
s->buf = (char *)empty_string;
s->len = s->size = 0;
}
}