@@ -189,19 +189,6 @@ static const struct SASLproto saslsmtp = {
189
189
SASL_FLAG_BASE64 /* Configuration flags */
190
190
};
191
191
192
- #ifdef USE_SSL
193
- static void smtp_to_smtps (struct connectdata * conn )
194
- {
195
- /* Change the connection handler */
196
- conn -> handler = & Curl_handler_smtps ;
197
-
198
- /* Set the connection's upgraded to TLS flag */
199
- conn -> bits .tls_upgraded = TRUE;
200
- }
201
- #else
202
- #define smtp_to_smtps (x ) Curl_nop_stmt
203
- #endif
204
-
205
192
/***********************************************************************
206
193
*
207
194
* smtp_endofresp()
@@ -402,25 +389,31 @@ static CURLcode smtp_perform_upgrade_tls(struct Curl_easy *data)
402
389
CURLcode result ;
403
390
bool ssldone = FALSE;
404
391
392
+ #ifdef USE_SSL
393
+ DEBUGASSERT (smtpc -> state == SMTP_UPGRADETLS );
405
394
if (!Curl_conn_is_ssl (conn , FIRSTSOCKET )) {
406
395
result = Curl_ssl_cfilter_add (data , conn , FIRSTSOCKET );
407
396
if (result )
408
397
goto out ;
398
+ /* Change the connection handler and SMTP state */
399
+ conn -> handler = & Curl_handler_smtps ;
400
+ conn -> bits .tls_upgraded = TRUE;
409
401
}
410
402
403
+ DEBUGASSERT (!smtpc -> ssldone );
411
404
result = Curl_conn_connect (data , FIRSTSOCKET , FALSE, & ssldone );
412
- if (!result ) {
405
+ DEBUGF (infof (data , "smtp_perform_upgrade_tls, connect -> %d, %d" ,
406
+ result , ssldone ));
407
+ if (!result && ssldone ) {
413
408
smtpc -> ssldone = ssldone ;
414
- if (smtpc -> state != SMTP_UPGRADETLS )
415
- smtp_state (data , SMTP_UPGRADETLS );
416
-
417
- if (smtpc -> ssldone ) {
418
- smtp_to_smtps (conn );
419
- result = smtp_perform_ehlo (data );
420
- }
409
+ /* perform EHLO now, changes smpt->state out of SMTP_UPGRADETLS */
410
+ result = smtp_perform_ehlo (data );
421
411
}
422
412
out :
423
413
return result ;
414
+ #else
415
+ return CURLE_NOT_BUILT_IN ;
416
+ #endif
424
417
}
425
418
426
419
/***********************************************************************
@@ -875,7 +868,7 @@ static CURLcode smtp_state_starttls_resp(struct Curl_easy *data,
875
868
result = smtp_perform_authentication (data );
876
869
}
877
870
else
878
- result = smtp_perform_upgrade_tls (data );
871
+ smtp_state (data , SMTP_UPGRADETLS );
879
872
880
873
return result ;
881
874
}
@@ -1204,8 +1197,11 @@ static CURLcode smtp_statemachine(struct Curl_easy *data,
1204
1197
1205
1198
/* Busy upgrading the connection; right now all I/O is SSL/TLS, not SMTP */
1206
1199
upgrade_tls :
1207
- if (smtpc -> state == SMTP_UPGRADETLS )
1208
- return smtp_perform_upgrade_tls (data );
1200
+ if (smtpc -> state == SMTP_UPGRADETLS ) {
1201
+ result = smtp_perform_upgrade_tls (data );
1202
+ if (result || (smtpc -> state == SMTP_UPGRADETLS ))
1203
+ return result ;
1204
+ }
1209
1205
1210
1206
/* Flush any data that needs to be sent */
1211
1207
if (pp -> sendleft )
@@ -1288,14 +1284,6 @@ static CURLcode smtp_multi_statemach(struct Curl_easy *data, bool *done)
1288
1284
struct connectdata * conn = data -> conn ;
1289
1285
struct smtp_conn * smtpc = & conn -> proto .smtpc ;
1290
1286
1291
- if (Curl_conn_is_ssl (conn , FIRSTSOCKET ) && !smtpc -> ssldone ) {
1292
- bool ssldone = FALSE;
1293
- result = Curl_conn_connect (data , FIRSTSOCKET , FALSE, & ssldone );
1294
- smtpc -> ssldone = ssldone ;
1295
- if (result || !smtpc -> ssldone )
1296
- return result ;
1297
- }
1298
-
1299
1287
result = Curl_pp_statemach (data , & smtpc -> pp , FALSE, FALSE);
1300
1288
* done = (smtpc -> state == SMTP_STOP );
1301
1289
0 commit comments