Skip to content

Commit d3a7ac2

Browse files
committedJan 13, 2025
8346383: Cannot use DllMain in libdt_socket for static builds
Reviewed-by: dholmes, sspitsyn
1 parent 13a1775 commit d3a7ac2

File tree

4 files changed

+29
-23
lines changed

4 files changed

+29
-23
lines changed
 

‎src/jdk.jdwp.agent/share/native/libdt_socket/socketTransport.c

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1998, 2024, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1998, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -1345,6 +1345,10 @@ jdwpTransport_OnLoad(JavaVM *vm, jdwpTransportCallback* cbTablePtr,
13451345
jvm = vm;
13461346
callback = cbTablePtr;
13471347

1348+
if (dbgsysPlatformInit() != 0) {
1349+
return JNI_ERR;
1350+
}
1351+
13481352
/* initialize interface table */
13491353
interface.GetCapabilities = &socketTransport_getCapabilities;
13501354
interface.Attach = &socketTransport_attach;

‎src/jdk.jdwp.agent/share/native/libdt_socket/sysSocket.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1998, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1998, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -38,6 +38,7 @@
3838
typedef int socklen_t;
3939
#endif
4040

41+
int dbgsysPlatformInit();
4142
int dbgsysSocketClose(int fd);
4243
int dbgsysConnect(int fd, struct sockaddr *him, socklen_t len);
4344
int dbgsysFinishConnect(int fd, int timeout);

‎src/jdk.jdwp.agent/unix/native/libdt_socket/socket_md.c

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1998, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1998, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -39,6 +39,15 @@
3939
#include "socket_md.h"
4040
#include "sysSocket.h"
4141

42+
/* Perform platform specific initialization.
43+
* Returns 0 on success, non-0 on failure */
44+
int
45+
dbgsysPlatformInit()
46+
{
47+
// Not needed on unix
48+
return 0;
49+
}
50+
4251
int
4352
dbgsysListen(int fd, int backlog) {
4453
return listen(fd, backlog);

‎src/jdk.jdwp.agent/windows/native/libdt_socket/socket_md.c

+12-20
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1998, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1998, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -22,6 +22,7 @@
2222
* or visit www.oracle.com if you need additional information or have any
2323
* questions.
2424
*/
25+
#include <stdlib.h>
2526
#include <windows.h>
2627
#include <winsock2.h>
2728
#include <ws2tcpip.h>
@@ -88,30 +89,21 @@ static struct {
8889
{ WSA_OPERATION_ABORTED, "Overlapped operation aborted" },
8990
};
9091

92+
static void dbgsysAtExitCallback(void)
93+
{
94+
WSACleanup();
95+
}
9196

92-
/*
93-
* Initialize Windows Sockets API support
94-
*/
95-
BOOL WINAPI
96-
DllMain(HINSTANCE hinst, DWORD reason, LPVOID reserved)
97+
/* Perform platform specific initialization.
98+
* Returns 0 on success, non-0 on failure */
99+
int
100+
dbgsysPlatformInit()
97101
{
98102
WSADATA wsadata;
99103

100-
switch (reason) {
101-
case DLL_PROCESS_ATTACH:
102-
if (WSAStartup(MAKEWORD(2,2), &wsadata) != 0) {
103-
return FALSE;
104-
}
105-
break;
106-
107-
case DLL_PROCESS_DETACH:
108-
WSACleanup();
109-
break;
104+
atexit(dbgsysAtExitCallback);
110105

111-
default:
112-
break;
113-
}
114-
return TRUE;
106+
return WSAStartup(MAKEWORD(2,2), &wsadata);
115107
}
116108

117109
/*

0 commit comments

Comments
 (0)
Please sign in to comment.