Skip to content

Commit 00a6d07

Browse files
kanavint8m
authored andcommitted
ssl_sess.c: deprecate SSL_SESSION_get_time/SSL_SESSION_set_time
Adjust the manpages at the same time so that only the new functions are being presented. Fixes: openssl#23648 Signed-off-by: Alexander Kanavin <[email protected]> Reviewed-by: Matt Caswell <[email protected]> Reviewed-by: Neil Horman <[email protected]> Reviewed-by: Tomas Mraz <[email protected]> (Merged from openssl#24307)
1 parent 86c9bb1 commit 00a6d07

8 files changed

+40
-25
lines changed

doc/man3/SSL_CTX_set_ct_validation_callback.pod

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ otherwise.
101101
When SCT processing is enabled, OCSP stapling will be enabled. This is because
102102
one possible source of SCTs is the OCSP response from a server.
103103

104-
The time returned by SSL_SESSION_get_time() will be used to evaluate whether any
104+
The time returned by SSL_SESSION_get_time_ex() will be used to evaluate whether any
105105
presented SCTs have timestamps that are in the future (and therefore invalid).
106106

107107
=head1 RESTRICTIONS

doc/man3/SSL_SESSION_get_time.pod

+17-11
Original file line numberDiff line numberDiff line change
@@ -11,26 +11,31 @@ SSL_get_time, SSL_set_time, SSL_get_timeout, SSL_set_timeout
1111

1212
#include <openssl/ssl.h>
1313

14-
long SSL_SESSION_get_time(const SSL_SESSION *s);
15-
long SSL_SESSION_set_time(SSL_SESSION *s, long tm);
1614
long SSL_SESSION_get_timeout(const SSL_SESSION *s);
1715
long SSL_SESSION_set_timeout(SSL_SESSION *s, long tm);
1816

19-
long SSL_get_time(const SSL_SESSION *s);
20-
long SSL_set_time(SSL_SESSION *s, long tm);
2117
long SSL_get_timeout(const SSL_SESSION *s);
2218
long SSL_set_timeout(SSL_SESSION *s, long tm);
2319

2420
time_t SSL_SESSION_get_time_ex(const SSL_SESSION *s);
2521
time_t SSL_SESSION_set_time_ex(SSL_SESSION *s, time_t tm);
2622

23+
The following functions have been deprecated since OpenSSL 3.4, and can be
24+
hidden entirely by defining B<OPENSSL_API_COMPAT> with a suitable version value,
25+
see L<openssl_user_macros(7)>:
26+
27+
long SSL_SESSION_get_time(const SSL_SESSION *s);
28+
long SSL_SESSION_set_time(SSL_SESSION *s, long tm);
29+
long SSL_get_time(const SSL_SESSION *s);
30+
long SSL_set_time(SSL_SESSION *s, long tm);
31+
2732
=head1 DESCRIPTION
2833

29-
SSL_SESSION_get_time() returns the time at which the session B<s> was
34+
SSL_SESSION_get_time_ex() returns the time at which the session B<s> was
3035
established. The time is given in seconds since the Epoch and therefore
3136
compatible to the time delivered by the time() call.
3237

33-
SSL_SESSION_set_time() replaces the creation time of the session B<s> with
38+
SSL_SESSION_set_time_ex() replaces the creation time of the session B<s> with
3439
the chosen value B<tm>.
3540

3641
SSL_SESSION_get_timeout() returns the timeout value set for session B<s>
@@ -39,9 +44,10 @@ in seconds.
3944
SSL_SESSION_set_timeout() sets the timeout value for session B<s> in seconds
4045
to B<tm>.
4146

42-
SSL_SESSION_get_time_ex() and SSL_SESSION_set_time_ex() extended functions use
43-
the time_t datatype instead of long to fix the Y2038 problem on systems with
44-
64 bit time_t type.
47+
SSL_SESSION_get_time() and SSL_SESSION_set_time() functions use
48+
the long datatype instead of time_t and are therefore deprecated due to not
49+
being Y2038-safe on 32 bit systems. Note that such systems still need
50+
to be configured to use 64 bit time_t to be able to avoid overflow in system time.
4551

4652
The SSL_get_time(), SSL_set_time(), SSL_get_timeout(), and SSL_set_timeout()
4753
functions are synonyms for the SSL_SESSION_*() counterparts.
@@ -57,10 +63,10 @@ of the session.
5763

5864
=head1 RETURN VALUES
5965

60-
SSL_SESSION_get_time() and SSL_SESSION_get_timeout() return the currently
66+
SSL_SESSION_get_time_ex() and SSL_SESSION_get_timeout() return the currently
6167
valid values.
6268

63-
SSL_SESSION_set_time() and SSL_SESSION_set_timeout() return 1 on success.
69+
SSL_SESSION_set_time_ex() and SSL_SESSION_set_timeout() return 1 on success.
6470

6571
If any of the function is passed the NULL pointer for the session B<s>,
6672
0 is returned.

include/openssl/ssl.h.in

+5
Original file line numberDiff line numberDiff line change
@@ -1685,8 +1685,13 @@ __owur const char *SSL_state_string(const SSL *s);
16851685
__owur const char *SSL_rstate_string(const SSL *s);
16861686
__owur const char *SSL_state_string_long(const SSL *s);
16871687
__owur const char *SSL_rstate_string_long(const SSL *s);
1688+
1689+
#ifndef OPENSSL_NO_DEPRECATED_3_4
1690+
OSSL_DEPRECATEDIN_3_4_FOR("not Y2038-safe, replace with SSL_SESSION_get_time_ex()")
16881691
__owur long SSL_SESSION_get_time(const SSL_SESSION *s);
1692+
OSSL_DEPRECATEDIN_3_4_FOR("not Y2038-safe, replace with SSL_SESSION_set_time_ex()")
16891693
__owur long SSL_SESSION_set_time(SSL_SESSION *s, long t);
1694+
#endif
16901695
__owur long SSL_SESSION_get_timeout(const SSL_SESSION *s);
16911696
__owur long SSL_SESSION_set_timeout(SSL_SESSION *s, long t);
16921697
__owur int SSL_SESSION_get_protocol_version(const SSL_SESSION *s);

ssl/ssl_lib.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -6363,7 +6363,7 @@ int ssl_validate_ct(SSL_CONNECTION *s)
63636363
CT_POLICY_EVAL_CTX_set_shared_CTLOG_STORE(ctx,
63646364
SSL_CONNECTION_GET_CTX(s)->ctlog_store);
63656365
CT_POLICY_EVAL_CTX_set_time(
6366-
ctx, (uint64_t)SSL_SESSION_get_time(s->session) * 1000);
6366+
ctx, (uint64_t)SSL_SESSION_get_time_ex(s->session) * 1000);
63676367

63686368
scts = SSL_get0_peer_scts(SSL_CONNECTION_GET_SSL(s));
63696369

ssl/ssl_sess.c

+4
Original file line numberDiff line numberDiff line change
@@ -941,10 +941,12 @@ long SSL_SESSION_get_timeout(const SSL_SESSION *s)
941941
return (long)ossl_time_to_time_t(s->timeout);
942942
}
943943

944+
#ifndef OPENSSL_NO_DEPRECATED_3_4
944945
long SSL_SESSION_get_time(const SSL_SESSION *s)
945946
{
946947
return (long) SSL_SESSION_get_time_ex(s);
947948
}
949+
#endif
948950

949951
time_t SSL_SESSION_get_time_ex(const SSL_SESSION *s)
950952
{
@@ -973,10 +975,12 @@ time_t SSL_SESSION_set_time_ex(SSL_SESSION *s, time_t t)
973975
return t;
974976
}
975977

978+
#ifndef OPENSSL_NO_DEPRECATED_3_4
976979
long SSL_SESSION_set_time(SSL_SESSION *s, long t)
977980
{
978981
return (long) SSL_SESSION_set_time_ex(s, (time_t) t);
979982
}
983+
#endif
980984

981985
int SSL_SESSION_get_protocol_version(const SSL_SESSION *s)
982986
{

test/clienthellotest.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ static int test_client_hello(int currtest)
164164
* We reset the creation time so that we don't discard the session as
165165
* too old.
166166
*/
167-
if (!TEST_true(SSL_SESSION_set_time(sess, (long)time(NULL)))
167+
if (!TEST_true(SSL_SESSION_set_time_ex(sess, time(NULL)))
168168
|| !TEST_true(SSL_set_session(con, sess)))
169169
goto end;
170170
}

test/sslapitest.c

+9-9
Original file line numberDiff line numberDiff line change
@@ -2330,9 +2330,9 @@ static int execute_test_session(int maxprot, int use_int_cache,
23302330
*/
23312331

23322332
/* Make sess1 expire before sess2 */
2333-
if (!TEST_long_gt(SSL_SESSION_set_time(sess1, 1000), 0)
2333+
if (!TEST_time_t_gt(SSL_SESSION_set_time_ex(sess1, 1000), 0)
23342334
|| !TEST_long_gt(SSL_SESSION_set_timeout(sess1, 1000), 0)
2335-
|| !TEST_long_gt(SSL_SESSION_set_time(sess2, 2000), 0)
2335+
|| !TEST_time_t_gt(SSL_SESSION_set_time_ex(sess2, 2000), 0)
23362336
|| !TEST_long_gt(SSL_SESSION_set_timeout(sess2, 2000), 0))
23372337
goto end;
23382338

@@ -3991,7 +3991,7 @@ static int early_data_skip_helper(int testtype, int cipher, int idx)
39913991
* time. It could be any value as long as it is not within tolerance.
39923992
* This should mean the ticket is rejected.
39933993
*/
3994-
if (!TEST_true(SSL_SESSION_set_time(sess, (long)(time(NULL) - 20))))
3994+
if (!TEST_true(SSL_SESSION_set_time_ex(sess, time(NULL) - 20)))
39953995
goto end;
39963996
}
39973997

@@ -9325,7 +9325,7 @@ static int test_session_timeout(int test)
93259325
SSL_SESSION *late = NULL;
93269326
SSL_CTX *ctx;
93279327
int testresult = 0;
9328-
long now = (long)time(NULL);
9328+
time_t now = time(NULL);
93299329
#define TIMEOUT 10
93309330

93319331
if (!TEST_ptr(ctx = SSL_CTX_new_ex(libctx, NULL, TLS_method()))
@@ -9353,9 +9353,9 @@ static int test_session_timeout(int test)
93539353
|| !TEST_ptr(late->prev))
93549354
goto end;
93559355

9356-
if (!TEST_int_ne(SSL_SESSION_set_time(early, now - 10), 0)
9357-
|| !TEST_int_ne(SSL_SESSION_set_time(middle, now), 0)
9358-
|| !TEST_int_ne(SSL_SESSION_set_time(late, now + 10), 0))
9356+
if (!TEST_time_t_ne(SSL_SESSION_set_time_ex(early, now - 10), 0)
9357+
|| !TEST_time_t_ne(SSL_SESSION_set_time_ex(middle, now), 0)
9358+
|| !TEST_time_t_ne(SSL_SESSION_set_time_ex(late, now + 10), 0))
93599359
goto end;
93609360

93619361
if (!TEST_int_ne(SSL_SESSION_set_timeout(early, TIMEOUT), 0)
@@ -9421,9 +9421,9 @@ static int test_session_timeout(int test)
94219421

94229422
/* make sure |now| is NOT equal to the current time */
94239423
now -= 10;
9424-
if (!TEST_int_ne(SSL_SESSION_set_time(early, now), 0)
9424+
if (!TEST_time_t_ne(SSL_SESSION_set_time_ex(early, now), 0)
94259425
|| !TEST_int_eq(SSL_CTX_add_session(ctx, early), 1)
9426-
|| !TEST_long_ne(SSL_SESSION_get_time(early), now))
9426+
|| !TEST_time_t_ne(SSL_SESSION_get_time_ex(early), now))
94279427
goto end;
94289428

94299429
testresult = 1;

util/libssl.num

+2-2
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ SSL_set_security_callback 147 3_0_0 EXIST::FUNCTION:
147147
SSL_SRP_CTX_init 148 3_0_0 EXIST::FUNCTION:DEPRECATEDIN_3_0,SRP
148148
ERR_load_SSL_strings 149 3_0_0 EXIST::FUNCTION:DEPRECATEDIN_3_0
149149
SSL_CTX_SRP_CTX_init 150 3_0_0 EXIST::FUNCTION:DEPRECATEDIN_3_0,SRP
150-
SSL_SESSION_set_time 151 3_0_0 EXIST::FUNCTION:
150+
SSL_SESSION_set_time 151 3_0_0 EXIST::FUNCTION:DEPRECATEDIN_3_4
151151
i2d_SSL_SESSION 152 3_0_0 EXIST::FUNCTION:
152152
SSL_SESSION_get_master_key 153 3_0_0 EXIST::FUNCTION:
153153
SSL_COMP_get_compression_methods 154 3_0_0 EXIST::FUNCTION:
@@ -246,7 +246,7 @@ SSL_get_verify_mode 246 3_0_0 EXIST::FUNCTION:
246246
SSL_CIPHER_get_id 247 3_0_0 EXIST::FUNCTION:
247247
SSL_SESSION_print_keylog 248 3_0_0 EXIST::FUNCTION:
248248
SSL_CTX_set_psk_client_callback 249 3_0_0 EXIST::FUNCTION:PSK
249-
SSL_SESSION_get_time 250 3_0_0 EXIST::FUNCTION:
249+
SSL_SESSION_get_time 250 3_0_0 EXIST::FUNCTION:DEPRECATEDIN_3_4
250250
SSL_set_debug 251 3_0_0 EXIST::FUNCTION:DEPRECATEDIN_1_1_0
251251
SSL_get_security_level 252 3_0_0 EXIST::FUNCTION:
252252
SSL_CIPHER_description 253 3_0_0 EXIST::FUNCTION:

0 commit comments

Comments
 (0)