blob: 870b191fc255e1d2577f8725fac3aadf40ab02c1 [file] [log] [blame]
Kristian Monsen5ab50182010-05-14 18:53:44 +01001/***************************************************************************
2 * _ _ ____ _
3 * Project ___| | | | _ \| |
4 * / __| | | | |_) | |
5 * | (__| |_| | _ <| |___
6 * \___|\___/|_| \_\_____|
7 *
Alex Deymo486467e2017-12-19 19:04:07 +01008 * Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
Kristian Monsen5ab50182010-05-14 18:53:44 +01009 *
10 * This software is licensed as described in the file COPYING, which
11 * you should have received as part of this distribution. The terms
Alex Deymod15eaac2016-06-28 14:49:26 -070012 * are also available at https://curl.haxx.se/docs/copyright.html.
Kristian Monsen5ab50182010-05-14 18:53:44 +010013 *
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 ***************************************************************************/
22
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070023#include "curl_setup.h"
24
Kristian Monsen5ab50182010-05-14 18:53:44 +010025#include <curl/curl.h>
26#include "urldata.h"
27#include "share.h"
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070028#include "vtls/vtls.h"
Kristian Monsen5ab50182010-05-14 18:53:44 +010029#include "curl_memory.h"
30
31/* The last #include file should be: */
32#include "memdebug.h"
33
Alex Deymoe3149cc2016-10-05 11:18:42 -070034struct Curl_share *
Kristian Monsen5ab50182010-05-14 18:53:44 +010035curl_share_init(void)
36{
37 struct Curl_share *share = calloc(1, sizeof(struct Curl_share));
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070038 if(share) {
Kristian Monsen5ab50182010-05-14 18:53:44 +010039 share->specifier |= (1<<CURL_LOCK_DATA_SHARE);
40
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070041 if(Curl_mk_dnscache(&share->hostcache)) {
42 free(share);
43 return NULL;
44 }
45 }
46
Kristian Monsen5ab50182010-05-14 18:53:44 +010047 return share;
48}
49
50#undef curl_share_setopt
51CURLSHcode
Alex Deymoe3149cc2016-10-05 11:18:42 -070052curl_share_setopt(struct Curl_share *share, CURLSHoption option, ...)
Kristian Monsen5ab50182010-05-14 18:53:44 +010053{
Kristian Monsen5ab50182010-05-14 18:53:44 +010054 va_list param;
55 int type;
56 curl_lock_function lockfunc;
57 curl_unlock_function unlockfunc;
58 void *ptr;
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070059 CURLSHcode res = CURLSHE_OK;
Kristian Monsen5ab50182010-05-14 18:53:44 +010060
61 if(share->dirty)
62 /* don't allow setting options while one or more handles are already
63 using this share */
64 return CURLSHE_IN_USE;
65
66 va_start(param, option);
67
68 switch(option) {
69 case CURLSHOPT_SHARE:
70 /* this is a type this share will share */
71 type = va_arg(param, int);
72 share->specifier |= (1<<type);
Alex Deymod15eaac2016-06-28 14:49:26 -070073 switch(type) {
Kristian Monsen5ab50182010-05-14 18:53:44 +010074 case CURL_LOCK_DATA_DNS:
Kristian Monsen5ab50182010-05-14 18:53:44 +010075 break;
76
Kristian Monsen5ab50182010-05-14 18:53:44 +010077 case CURL_LOCK_DATA_COOKIE:
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070078#if !defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_COOKIES)
Kristian Monsen5ab50182010-05-14 18:53:44 +010079 if(!share->cookies) {
Alex Deymod15eaac2016-06-28 14:49:26 -070080 share->cookies = Curl_cookie_init(NULL, NULL, NULL, TRUE);
Kristian Monsen5ab50182010-05-14 18:53:44 +010081 if(!share->cookies)
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070082 res = CURLSHE_NOMEM;
Kristian Monsen5ab50182010-05-14 18:53:44 +010083 }
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070084#else /* CURL_DISABLE_HTTP */
85 res = CURLSHE_NOT_BUILT_IN;
86#endif
Kristian Monsen5ab50182010-05-14 18:53:44 +010087 break;
Kristian Monsen5ab50182010-05-14 18:53:44 +010088
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070089 case CURL_LOCK_DATA_SSL_SESSION:
90#ifdef USE_SSL
91 if(!share->sslsession) {
92 share->max_ssl_sessions = 8;
93 share->sslsession = calloc(share->max_ssl_sessions,
94 sizeof(struct curl_ssl_session));
95 share->sessionage = 0;
96 if(!share->sslsession)
97 res = CURLSHE_NOMEM;
98 }
99#else
100 res = CURLSHE_NOT_BUILT_IN;
101#endif
102 break;
103
Kristian Monsen5ab50182010-05-14 18:53:44 +0100104 case CURL_LOCK_DATA_CONNECT: /* not supported (yet) */
Alex Deymo486467e2017-12-19 19:04:07 +0100105 if(Curl_conncache_init(&share->conn_cache, 103))
106 res = CURLSHE_NOMEM;
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700107 break;
Kristian Monsen5ab50182010-05-14 18:53:44 +0100108
109 default:
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700110 res = CURLSHE_BAD_OPTION;
Kristian Monsen5ab50182010-05-14 18:53:44 +0100111 }
112 break;
113
114 case CURLSHOPT_UNSHARE:
115 /* this is a type this share will no longer share */
116 type = va_arg(param, int);
117 share->specifier &= ~(1<<type);
Alex Deymod15eaac2016-06-28 14:49:26 -0700118 switch(type) {
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700119 case CURL_LOCK_DATA_DNS:
120 break;
Kristian Monsen5ab50182010-05-14 18:53:44 +0100121
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700122 case CURL_LOCK_DATA_COOKIE:
Kristian Monsen5ab50182010-05-14 18:53:44 +0100123#if !defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_COOKIES)
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700124 if(share->cookies) {
125 Curl_cookie_cleanup(share->cookies);
126 share->cookies = NULL;
127 }
128#else /* CURL_DISABLE_HTTP */
129 res = CURLSHE_NOT_BUILT_IN;
130#endif
131 break;
Kristian Monsen5ab50182010-05-14 18:53:44 +0100132
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700133 case CURL_LOCK_DATA_SSL_SESSION:
134#ifdef USE_SSL
135 Curl_safefree(share->sslsession);
136#else
137 res = CURLSHE_NOT_BUILT_IN;
138#endif
139 break;
Kristian Monsen5ab50182010-05-14 18:53:44 +0100140
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700141 case CURL_LOCK_DATA_CONNECT:
142 break;
Kristian Monsen5ab50182010-05-14 18:53:44 +0100143
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700144 default:
145 res = CURLSHE_BAD_OPTION;
146 break;
Kristian Monsen5ab50182010-05-14 18:53:44 +0100147 }
148 break;
149
150 case CURLSHOPT_LOCKFUNC:
151 lockfunc = va_arg(param, curl_lock_function);
152 share->lockfunc = lockfunc;
153 break;
154
155 case CURLSHOPT_UNLOCKFUNC:
156 unlockfunc = va_arg(param, curl_unlock_function);
157 share->unlockfunc = unlockfunc;
158 break;
159
160 case CURLSHOPT_USERDATA:
161 ptr = va_arg(param, void *);
162 share->clientdata = ptr;
163 break;
164
165 default:
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700166 res = CURLSHE_BAD_OPTION;
167 break;
Kristian Monsen5ab50182010-05-14 18:53:44 +0100168 }
169
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700170 va_end(param);
171
172 return res;
Kristian Monsen5ab50182010-05-14 18:53:44 +0100173}
174
175CURLSHcode
Alex Deymoe3149cc2016-10-05 11:18:42 -0700176curl_share_cleanup(struct Curl_share *share)
Kristian Monsen5ab50182010-05-14 18:53:44 +0100177{
Kristian Monsen5ab50182010-05-14 18:53:44 +0100178 if(share == NULL)
179 return CURLSHE_INVALID;
180
181 if(share->lockfunc)
182 share->lockfunc(NULL, CURL_LOCK_DATA_SHARE, CURL_LOCK_ACCESS_SINGLE,
183 share->clientdata);
184
185 if(share->dirty) {
186 if(share->unlockfunc)
187 share->unlockfunc(NULL, CURL_LOCK_DATA_SHARE, share->clientdata);
188 return CURLSHE_IN_USE;
189 }
190
Alex Deymo486467e2017-12-19 19:04:07 +0100191 Curl_conncache_close_all_connections(&share->conn_cache);
192 Curl_conncache_destroy(&share->conn_cache);
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700193 Curl_hash_destroy(&share->hostcache);
Kristian Monsen5ab50182010-05-14 18:53:44 +0100194
195#if !defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_COOKIES)
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700196 Curl_cookie_cleanup(share->cookies);
197#endif
198
199#ifdef USE_SSL
200 if(share->sslsession) {
201 size_t i;
202 for(i = 0; i < share->max_ssl_sessions; i++)
203 Curl_ssl_kill_session(&(share->sslsession[i]));
204 free(share->sslsession);
205 }
206#endif
Kristian Monsen5ab50182010-05-14 18:53:44 +0100207
208 if(share->unlockfunc)
209 share->unlockfunc(NULL, CURL_LOCK_DATA_SHARE, share->clientdata);
210 free(share);
211
212 return CURLSHE_OK;
213}
214
215
216CURLSHcode
Alex Deymoe3149cc2016-10-05 11:18:42 -0700217Curl_share_lock(struct Curl_easy *data, curl_lock_data type,
Kristian Monsen5ab50182010-05-14 18:53:44 +0100218 curl_lock_access accesstype)
219{
220 struct Curl_share *share = data->share;
221
222 if(share == NULL)
223 return CURLSHE_INVALID;
224
225 if(share->specifier & (1<<type)) {
226 if(share->lockfunc) /* only call this if set! */
227 share->lockfunc(data, type, accesstype, share->clientdata);
228 }
229 /* else if we don't share this, pretend successful lock */
230
231 return CURLSHE_OK;
232}
233
234CURLSHcode
Alex Deymoe3149cc2016-10-05 11:18:42 -0700235Curl_share_unlock(struct Curl_easy *data, curl_lock_data type)
Kristian Monsen5ab50182010-05-14 18:53:44 +0100236{
237 struct Curl_share *share = data->share;
238
239 if(share == NULL)
240 return CURLSHE_INVALID;
241
242 if(share->specifier & (1<<type)) {
243 if(share->unlockfunc) /* only call this if set! */
244 share->unlockfunc (data, type, share->clientdata);
245 }
246
247 return CURLSHE_OK;
248}