Coverage Report

Created: 2026-09-04 07:16

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