Coverage Report

Created: 2026-09-01 07:00

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.06k
{
42
8.06k
  struct Curl_creds *creds = NULL;
43
8.06k
  size_t ulen = user ? strlen(user) : 0;
44
8.06k
  size_t plen = passwd ? strlen(passwd) : 0;
45
8.06k
  size_t olen = oauth_bearer ? strlen(oauth_bearer) : 0;
46
8.06k
  size_t salen = sasl_authzid ? strlen(sasl_authzid) : 0;
47
8.06k
  size_t sslen = sasl_service ? strlen(sasl_service) : 0;
48
8.06k
  char *s, *buf;
49
8.06k
  size_t bufsize;
50
8.06k
  CURLcode result = CURLE_OK;
51
52
8.06k
  Curl_creds_unlink(pcreds);
53
54
  /* Everything empty/NULL, this is the NULL credential */
55
8.06k
  if(!user && !passwd && !olen && !salen && !sslen)
56
6.50k
    goto out;
57
58
1.56k
  if((ulen > CURL_MAX_INPUT_LENGTH) ||
59
1.56k
     (plen > CURL_MAX_INPUT_LENGTH) ||
60
1.56k
     (olen > CURL_MAX_INPUT_LENGTH) ||
61
1.56k
     (salen > CURL_MAX_INPUT_LENGTH) ||
62
1.56k
     (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.56k
  bufsize = ulen + plen + 1 + olen + 1 + salen + 1 + sslen + 1;
69
1.56k
  creds = curlx_calloc(1, sizeof(*creds) + bufsize);
70
1.56k
  if(!creds) {
71
0
    result = CURLE_OUT_OF_MEMORY;
72
0
    goto out;
73
0
  }
74
75
1.56k
  creds->bufsize = bufsize;
76
1.56k
  creds->refcount = 1;
77
1.56k
  creds->source = source;
78
  /* Some compilers try to be too smart about our dynamic struct size */
79
1.56k
  buf = ((char *)creds) + offsetof(struct Curl_creds, buf);
80
1.56k
  creds->user = s = buf;
81
1.56k
  if(ulen)
82
1.03k
    memcpy(s, user, ulen + 1);
83
1.56k
  creds->passwd = s = buf + ulen + 1;
84
1.56k
  if(plen)
85
187
    memcpy(s, passwd, plen + 1);
86
1.56k
  creds->oauth_bearer = s = buf + ulen + 1 + plen + 1;
87
1.56k
  if(olen)
88
86
    memcpy(s, oauth_bearer, olen + 1);
89
1.56k
  creds->sasl_authzid = s = buf + ulen + 1 + plen + 1 + olen + 1;
90
1.56k
  if(salen)
91
30
    memcpy(s, sasl_authzid, salen + 1);
92
1.56k
  creds->sasl_service = s = buf + ulen + 1 + plen + 1 + olen + 1 + salen + 1;
93
1.56k
  if(sslen)
94
30
    memcpy(s, sasl_service, sslen + 1);
95
96
8.06k
out:
97
8.06k
  if(!result)
98
8.06k
    *pcreds = creds;
99
0
  else
100
0
    Curl_creds_unlink(&creds);
101
8.06k
  return result;
102
1.56k
}
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.49k
{
110
7.49k
  struct Curl_creds *creds_out = NULL;
111
7.49k
  CURLcode result;
112
113
7.49k
  if(!creds_in) {
114
7.36k
    result = Curl_creds_create(user, passwd, NULL, NULL, NULL,
115
7.36k
                               source, &creds_out);
116
7.36k
  }
117
126
  else {
118
126
    result = Curl_creds_create(user ? user : Curl_creds_user(creds_in),
119
126
                               passwd ? passwd : Curl_creds_passwd(creds_in),
120
126
                               Curl_creds_oauth_bearer(creds_in),
121
126
                               Curl_creds_sasl_authzid(creds_in),
122
126
                               Curl_creds_sasl_service(creds_in),
123
126
                               source, &creds_out);
124
126
  }
125
7.49k
  Curl_creds_link(pcreds_out, creds_out);
126
7.49k
  Curl_creds_unlink(&creds_out);
127
7.49k
  return result;
128
7.49k
}
129
130
void Curl_creds_link(struct Curl_creds **pdest, struct Curl_creds *src)
131
15.8k
{
132
15.8k
  if(*pdest != src) {
133
3.57k
    Curl_creds_unlink(pdest);
134
3.57k
    *pdest = src;
135
3.57k
    if(src) {
136
3.57k
      DEBUGASSERT(src->refcount < UINT32_MAX);
137
3.57k
      src->refcount++;
138
3.57k
    }
139
3.57k
  }
140
15.8k
}
141
142
void Curl_creds_unlink(struct Curl_creds **pcreds)
143
145k
{
144
145k
  if(*pcreds) {
145
5.13k
    struct Curl_creds *creds = *pcreds;
146
147
5.13k
    DEBUGASSERT(creds->refcount);
148
5.13k
    *pcreds = NULL;
149
5.13k
    if(creds->refcount)
150
5.13k
      creds->refcount--;
151
5.13k
    if(!creds->refcount) {
152
1.56k
      curlx_memzero(creds, sizeof(*creds) + creds->bufsize);
153
1.56k
      curlx_free(creds);
154
1.56k
    }
155
5.13k
  }
156
145k
}
157
158
bool Curl_creds_same(struct Curl_creds *c1, struct Curl_creds *c2)
159
7.79k
{
160
7.79k
  return (c1 == c2) ||
161
1.31k
         (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.79k
}
168
169
bool Curl_creds_equal(struct Curl_creds *c1, struct Curl_creds *c2)
170
7.79k
{
171
7.79k
  return Curl_creds_same(c1, c2) &&
172
6.48k
         ((c1 == c2) || (c1 && c2 && (c1->source == c2->source)));
173
7.79k
}
174
175
#ifdef CURLVERBOSE
176
void Curl_creds_trace(struct Curl_easy *data, struct Curl_creds *creds,
177
                      const char *msg)
178
7.79k
{
179
7.79k
  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.79k
  else
190
7.79k
    CURL_TRC_M(data, "%s: -", msg);
191
7.79k
}
192
#endif