Coverage Report

Created: 2026-09-14 07:07

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/curl/lib/creds.c
Line
Count
Source
1
/***************************************************************************
2
 *                                  _   _ ____  _
3
 *  Project                     ___| | | |  _ \| |
4
 *                             / __| | | | |_) | |
5
 *                            | (__| |_| |  _ <| |___
6
 *                             \___|\___/|_| \_\_____|
7
 *
8
 * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
9
 *
10
 * This software is licensed as described in the file COPYING, which
11
 * you should have received as part of this distribution. The terms
12
 * are also available at https://curl.se/docs/copyright.html.
13
 *
14
 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15
 * copies of the Software, and permit persons to whom the Software is
16
 * furnished to do so, under the terms of the COPYING file.
17
 *
18
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19
 * KIND, either express or implied.
20
 *
21
 * SPDX-License-Identifier: curl
22
 *
23
 ***************************************************************************/
24
#include "curl_setup.h"
25
26
#include <stddef.h>  /* for offsetof() */
27
28
#include "creds.h"
29
#include "curl_trc.h"
30
#include "strcase.h"
31
#include "urldata.h"
32
33
34
CURLcode Curl_creds_create(const char *user,
35
                           const char *passwd,
36
                           const char *oauth_bearer,
37
                           const char *sasl_authzid,
38
                           const char *sasl_service,
39
                           uint8_t source,
40
                           struct Curl_creds **pcreds)
41
8.22k
{
42
8.22k
  struct Curl_creds *creds = NULL;
43
8.22k
  size_t ulen = user ? strlen(user) : 0;
44
8.22k
  size_t plen = passwd ? strlen(passwd) : 0;
45
8.22k
  size_t olen = oauth_bearer ? strlen(oauth_bearer) : 0;
46
8.22k
  size_t salen = sasl_authzid ? strlen(sasl_authzid) : 0;
47
8.22k
  size_t sslen = sasl_service ? strlen(sasl_service) : 0;
48
8.22k
  char *s, *buf;
49
8.22k
  size_t bufsize;
50
8.22k
  CURLcode result = CURLE_OK;
51
52
8.22k
  Curl_creds_unlink(pcreds);
53
54
  /* Everything empty/NULL, this is the NULL credential */
55
8.22k
  if(!user && !passwd && !olen && !salen && !sslen)
56
6.34k
    goto out;
57
58
1.88k
  if((ulen > CURL_MAX_INPUT_LENGTH) ||
59
1.88k
     (plen > CURL_MAX_INPUT_LENGTH) ||
60
1.88k
     (olen > CURL_MAX_INPUT_LENGTH) ||
61
1.88k
     (salen > CURL_MAX_INPUT_LENGTH) ||
62
1.88k
     (sslen > CURL_MAX_INPUT_LENGTH)) {
63
0
    result = CURLE_BAD_FUNCTION_ARGUMENT;
64
0
    goto out;
65
0
  }
66
67
  /* null-terminator for user already part of struct */
68
1.88k
  bufsize = ulen + plen + 1 + olen + 1 + salen + 1 + sslen + 1;
69
1.88k
  creds = curlx_calloc(1, sizeof(*creds) + bufsize);
70
1.88k
  if(!creds) {
71
0
    result = CURLE_OUT_OF_MEMORY;
72
0
    goto out;
73
0
  }
74
75
1.88k
  creds->bufsize = bufsize;
76
1.88k
  creds->refcount = 1;
77
1.88k
  creds->source = source;
78
  /* Some compilers try to be too smart about our dynamic struct size */
79
1.88k
  buf = ((char *)creds) + offsetof(struct Curl_creds, buf);
80
1.88k
  creds->user = s = buf;
81
1.88k
  if(ulen)
82
714
    memcpy(s, user, ulen + 1);
83
1.88k
  creds->passwd = s = buf + ulen + 1;
84
1.88k
  if(plen)
85
280
    memcpy(s, passwd, plen + 1);
86
1.88k
  creds->oauth_bearer = s = buf + ulen + 1 + plen + 1;
87
1.88k
  if(olen)
88
56
    memcpy(s, oauth_bearer, olen + 1);
89
1.88k
  creds->sasl_authzid = s = buf + ulen + 1 + plen + 1 + olen + 1;
90
1.88k
  if(salen)
91
61
    memcpy(s, sasl_authzid, salen + 1);
92
1.88k
  creds->sasl_service = s = buf + ulen + 1 + plen + 1 + olen + 1 + salen + 1;
93
1.88k
  if(sslen)
94
73
    memcpy(s, sasl_service, sslen + 1);
95
96
8.22k
out:
97
8.22k
  if(!result)
98
8.22k
    *pcreds = creds;
99
0
  else
100
0
    Curl_creds_unlink(&creds);
101
8.22k
  return result;
102
1.88k
}
103
104
CURLcode Curl_creds_merge(const char *user,
105
                          const char *passwd,
106
                          struct Curl_creds *creds_in,
107
                          uint8_t source,
108
                          struct Curl_creds **pcreds_out)
109
7.46k
{
110
7.46k
  struct Curl_creds *creds_out = NULL;
111
7.46k
  CURLcode result;
112
113
7.46k
  if(!creds_in) {
114
7.07k
    result = Curl_creds_create(user, passwd, NULL, NULL, NULL,
115
7.07k
                               source, &creds_out);
116
7.07k
  }
117
388
  else {
118
388
    result = Curl_creds_create(user ? user : Curl_creds_user(creds_in),
119
388
                               passwd ? passwd : Curl_creds_passwd(creds_in),
120
388
                               Curl_creds_oauth_bearer(creds_in),
121
388
                               Curl_creds_sasl_authzid(creds_in),
122
388
                               Curl_creds_sasl_service(creds_in),
123
388
                               source, &creds_out);
124
388
  }
125
7.46k
  Curl_creds_link(pcreds_out, creds_out);
126
7.46k
  Curl_creds_unlink(&creds_out);
127
7.46k
  return result;
128
7.46k
}
129
130
void Curl_creds_link(struct Curl_creds **pdest, struct Curl_creds *src)
131
15.4k
{
132
15.4k
  if(*pdest != src) {
133
3.53k
    Curl_creds_unlink(pdest);
134
3.53k
    *pdest = src;
135
3.53k
    if(src) {
136
3.53k
      DEBUGASSERT(src->refcount < UINT32_MAX);
137
3.53k
      src->refcount++;
138
3.53k
    }
139
3.53k
  }
140
15.4k
}
141
142
void Curl_creds_unlink(struct Curl_creds **pcreds)
143
143k
{
144
143k
  if(*pcreds) {
145
5.41k
    struct Curl_creds *creds = *pcreds;
146
147
5.41k
    DEBUGASSERT(creds->refcount);
148
5.41k
    *pcreds = NULL;
149
5.41k
    if(creds->refcount)
150
5.41k
      creds->refcount--;
151
5.41k
    if(!creds->refcount) {
152
1.88k
      curlx_memzero(creds, sizeof(*creds) + creds->bufsize);
153
1.88k
      curlx_free(creds);
154
1.88k
    }
155
5.41k
  }
156
143k
}
157
158
bool Curl_creds_same(struct Curl_creds *c1, struct Curl_creds *c2)
159
7.57k
{
160
7.57k
  return (c1 == c2) ||
161
1.24k
         (c1 && c2 &&
162
0
          !Curl_timestrcmp(c1->user, c2->user) &&
163
0
          !Curl_timestrcmp(c1->passwd, c2->passwd) &&
164
0
          !Curl_timestrcmp(c1->oauth_bearer, c2->oauth_bearer) &&
165
0
          !Curl_timestrcmp(c1->sasl_authzid, c2->sasl_authzid) &&
166
0
          !Curl_timestrcmp(c1->sasl_service, c2->sasl_service));
167
7.57k
}
168
169
bool Curl_creds_equal(struct Curl_creds *c1, struct Curl_creds *c2)
170
7.57k
{
171
7.57k
  return Curl_creds_same(c1, c2) &&
172
6.33k
         ((c1 == c2) || (c1 && c2 && (c1->source == c2->source)));
173
7.57k
}
174
175
#ifdef CURLVERBOSE
176
void Curl_creds_trace(struct Curl_easy *data, struct Curl_creds *creds,
177
                      const char *msg)
178
7.57k
{
179
7.57k
  if(creds) {
180
0
    CURL_TRC_M(data, "%s: user=%s, passwd=%s, "
181
0
               "sasl_authzid=%s, oauth_bearer=%s, source=%d",
182
0
               msg,
183
0
               Curl_creds_user(creds),
184
0
               Curl_creds_has_passwd(creds) ? "***" : "",
185
0
               Curl_creds_sasl_authzid(creds),
186
0
               Curl_creds_has_oauth_bearer(creds) ? "***" : "",
187
0
               creds->source);
188
0
  }
189
7.57k
  else
190
7.57k
    CURL_TRC_M(data, "%s: -", msg);
191
7.57k
}
192
#endif