src/jdk.jdwp.agent/share/native/libdt_socket/socketTransport.c
author ihse
Wed, 28 Mar 2018 23:56:08 +0200
changeset 49440 396ea30afbd5
parent 48978 93996c47d36f
child 54884 8a6093c186a6
child 56721 01b558efd286
permissions -rw-r--r--
8200178: Remove mapfiles for JDK native libraries Reviewed-by: erikj, alanb, mchung, prr, weijun
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
48767
0c6ce8fdb50a 8080990: libdt_socket/socket_md.c(202) : warning C4996: 'gethostbyname': Use getaddrinfo() or GetAddrInfoW()
gadams
parents: 48242
diff changeset
     2
 * Copyright (c) 1998, 2018, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3723
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3723
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3723
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3723
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3723
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
#include <stdio.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
#include <string.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
#include <errno.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
#include <stdlib.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
#include <ctype.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
49440
396ea30afbd5 8200178: Remove mapfiles for JDK native libraries
ihse
parents: 48978
diff changeset
    31
#include "jni.h"
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
#include "jdwpTransport.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
#include "sysSocket.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
24503
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
    35
#ifdef _WIN32
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
    36
 #include <winsock2.h>
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
    37
 #include <ws2tcpip.h>
47121
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
    38
#else
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
    39
 #include <arpa/inet.h>
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
    40
 #include <sys/socket.h>
24503
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
    41
#endif
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
    42
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * The Socket Transport Library.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * This module is an implementation of the Java Debug Wire Protocol Transport
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * Service Provider Interface - see src/share/javavm/export/jdwpTransport.h.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
static int serverSocketFD;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
static int socketFD = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
static jdwpTransportCallback *callback;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
static JavaVM *jvm;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
static int tlsIndex;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
static jboolean initialized;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
static struct jdwpTransportNativeInterface_ interface;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
static jdwpTransportEnv single_env = (jdwpTransportEnv)&interface;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
#define RETURN_ERROR(err, msg) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
        if (1==1) { \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
            setLastError(err, msg); \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
            return err; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
#define RETURN_IO_ERROR(msg)    RETURN_ERROR(JDWPTRANSPORT_ERROR_IO_ERROR, msg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
#define RETURN_RECV_ERROR(n) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
        if (n == 0) { \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
            RETURN_ERROR(JDWPTRANSPORT_ERROR_IO_ERROR, "premature EOF"); \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
        } else { \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
            RETURN_IO_ERROR("recv error"); \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
#define MAX_DATA_SIZE 1000
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
    76
static jint recv_fully(int, char *, int);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
    77
static jint send_fully(int, char *, int);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
    78
47121
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
    79
/* version >= JDWPTRANSPORT_VERSION_1_1 */
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
    80
typedef struct {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
    81
    uint32_t subnet;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
    82
    uint32_t netmask;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
    83
} AllowedPeerInfo;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
    84
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
    85
#define STR(x) #x
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
    86
#define MAX_PEER_ENTRIES 32
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
    87
#define MAX_PEERS_STR STR(MAX_PEER_ENTRIES)
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
    88
static AllowedPeerInfo _peers[MAX_PEER_ENTRIES];
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
    89
static int _peers_cnt = 0;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
    90
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
    91
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
 * Record the last error for this thread.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
static void
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
setLastError(jdwpTransportError err, char *newmsg) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    char buf[255];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    char *msg;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    /* get any I/O first in case any system calls override errno */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    if (err == JDWPTRANSPORT_ERROR_IO_ERROR) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
        dbgsysGetLastIOError(buf, sizeof(buf));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    msg = (char *)dbgsysTlsGet(tlsIndex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    if (msg != NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
        (*callback->free)(msg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    if (err == JDWPTRANSPORT_ERROR_IO_ERROR) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
        char *join_str = ": ";
896
5c02031316bf 6725543: Compiler warnings in serviceability native code
ohair
parents: 2
diff changeset
   112
        int msg_len = (int)strlen(newmsg) + (int)strlen(join_str) +
5c02031316bf 6725543: Compiler warnings in serviceability native code
ohair
parents: 2
diff changeset
   113
                      (int)strlen(buf) + 3;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
        msg = (*callback->alloc)(msg_len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        if (msg != NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
            strcpy(msg, newmsg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
            strcat(msg, join_str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
            strcat(msg, buf);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
    } else {
896
5c02031316bf 6725543: Compiler warnings in serviceability native code
ohair
parents: 2
diff changeset
   121
        msg = (*callback->alloc)((int)strlen(newmsg)+1);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
        if (msg != NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
            strcpy(msg, newmsg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    dbgsysTlsPut(tlsIndex, msg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
 * Return the last error for this thread (may be NULL)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
static char*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
getLastError() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
    return (char *)dbgsysTlsGet(tlsIndex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
46091
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   138
/* Set options common to client and server sides */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
static jdwpTransportError
46091
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   140
setOptionsCommon(int fd)
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   141
{
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   142
    jvalue dontcare;
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   143
    int err;
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   144
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   145
    dontcare.i = 0;  /* keep compiler happy */
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   146
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   147
    err = dbgsysSetSocketOption(fd, TCP_NODELAY, JNI_TRUE, dontcare);
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   148
    if (err < 0) {
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   149
        RETURN_IO_ERROR("setsockopt TCPNODELAY failed");
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   150
    }
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   151
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   152
    return JDWPTRANSPORT_ERROR_NONE;
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   153
}
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   154
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   155
/* Set the SO_REUSEADDR option */
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   156
static jdwpTransportError
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   157
setReuseAddrOption(int fd)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
    jvalue dontcare;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
    int err;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    dontcare.i = 0;  /* keep compiler happy */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    err = dbgsysSetSocketOption(fd, SO_REUSEADDR, JNI_TRUE, dontcare);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
    if (err < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
        RETURN_IO_ERROR("setsockopt SO_REUSEADDR failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
    return JDWPTRANSPORT_ERROR_NONE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
static jdwpTransportError
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
handshake(int fd, jlong timeout) {
3723
a27278866f80 6432567: PIT : com/sun/jdi/BadHandshakeTest.java fails due to java.net.ConnectException
alanb
parents: 1247
diff changeset
   174
    const char *hello = "JDWP-Handshake";
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
    char b[16];
3723
a27278866f80 6432567: PIT : com/sun/jdi/BadHandshakeTest.java fails due to java.net.ConnectException
alanb
parents: 1247
diff changeset
   176
    int rv, helloLen, received;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    if (timeout > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
        dbgsysConfigureBlocking(fd, JNI_FALSE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
    }
3723
a27278866f80 6432567: PIT : com/sun/jdi/BadHandshakeTest.java fails due to java.net.ConnectException
alanb
parents: 1247
diff changeset
   181
    helloLen = (int)strlen(hello);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
    received = 0;
3723
a27278866f80 6432567: PIT : com/sun/jdi/BadHandshakeTest.java fails due to java.net.ConnectException
alanb
parents: 1247
diff changeset
   183
    while (received < helloLen) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
        int n;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        char *buf;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
        if (timeout > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
            rv = dbgsysPoll(fd, JNI_TRUE, JNI_FALSE, (long)timeout);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
            if (rv <= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
                setLastError(0, "timeout during handshake");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
                return JDWPTRANSPORT_ERROR_IO_ERROR;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
        buf = b;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        buf += received;
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
   195
        n = recv_fully(fd, buf, helloLen-received);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
        if (n == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
            setLastError(0, "handshake failed - connection prematurally closed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
            return JDWPTRANSPORT_ERROR_IO_ERROR;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
        if (n < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
            RETURN_IO_ERROR("recv failed during handshake");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
        received += n;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
    if (timeout > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
        dbgsysConfigureBlocking(fd, JNI_TRUE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
    }
3723
a27278866f80 6432567: PIT : com/sun/jdi/BadHandshakeTest.java fails due to java.net.ConnectException
alanb
parents: 1247
diff changeset
   208
    if (strncmp(b, hello, received) != 0) {
a27278866f80 6432567: PIT : com/sun/jdi/BadHandshakeTest.java fails due to java.net.ConnectException
alanb
parents: 1247
diff changeset
   209
        char msg[80+2*16];
a27278866f80 6432567: PIT : com/sun/jdi/BadHandshakeTest.java fails due to java.net.ConnectException
alanb
parents: 1247
diff changeset
   210
        b[received] = '\0';
a27278866f80 6432567: PIT : com/sun/jdi/BadHandshakeTest.java fails due to java.net.ConnectException
alanb
parents: 1247
diff changeset
   211
        /*
a27278866f80 6432567: PIT : com/sun/jdi/BadHandshakeTest.java fails due to java.net.ConnectException
alanb
parents: 1247
diff changeset
   212
         * We should really use snprintf here but it's not available on Windows.
a27278866f80 6432567: PIT : com/sun/jdi/BadHandshakeTest.java fails due to java.net.ConnectException
alanb
parents: 1247
diff changeset
   213
         * We can't use jio_snprintf without linking the transport against the VM.
a27278866f80 6432567: PIT : com/sun/jdi/BadHandshakeTest.java fails due to java.net.ConnectException
alanb
parents: 1247
diff changeset
   214
         */
a27278866f80 6432567: PIT : com/sun/jdi/BadHandshakeTest.java fails due to java.net.ConnectException
alanb
parents: 1247
diff changeset
   215
        sprintf(msg, "handshake failed - received >%s< - expected >%s<", b, hello);
a27278866f80 6432567: PIT : com/sun/jdi/BadHandshakeTest.java fails due to java.net.ConnectException
alanb
parents: 1247
diff changeset
   216
        setLastError(0, msg);
a27278866f80 6432567: PIT : com/sun/jdi/BadHandshakeTest.java fails due to java.net.ConnectException
alanb
parents: 1247
diff changeset
   217
        return JDWPTRANSPORT_ERROR_IO_ERROR;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
   220
    if (send_fully(fd, (char*)hello, helloLen) != helloLen) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
        RETURN_IO_ERROR("send failed during handshake");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
    return JDWPTRANSPORT_ERROR_NONE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
24503
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   226
static uint32_t
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   227
getLocalHostAddress() {
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   228
    // Simple routine to guess localhost address.
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   229
    // it looks up "localhost" and returns 127.0.0.1 if lookup
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   230
    // fails.
24514
2440b44952d7 8043716: JDI test com/sun/jdi/ProcessAttachTest.sh and other 3 jdi tests failed in nightly
dsamersoff
parents: 24503
diff changeset
   231
    struct addrinfo hints, *res = NULL;
48767
0c6ce8fdb50a 8080990: libdt_socket/socket_md.c(202) : warning C4996: 'gethostbyname': Use getaddrinfo() or GetAddrInfoW()
gadams
parents: 48242
diff changeset
   232
    uint32_t addr;
24503
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   233
    int err;
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   234
24514
2440b44952d7 8043716: JDI test com/sun/jdi/ProcessAttachTest.sh and other 3 jdi tests failed in nightly
dsamersoff
parents: 24503
diff changeset
   235
    // Use portable way to initialize the structure
2440b44952d7 8043716: JDI test com/sun/jdi/ProcessAttachTest.sh and other 3 jdi tests failed in nightly
dsamersoff
parents: 24503
diff changeset
   236
    memset((void *)&hints, 0, sizeof(hints));
24503
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   237
    hints.ai_family = AF_INET;
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   238
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   239
    err = getaddrinfo("localhost", NULL, &hints, &res);
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   240
    if (err < 0 || res == NULL) {
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   241
        return dbgsysHostToNetworkLong(INADDR_LOOPBACK);
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   242
    }
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   243
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   244
    // getaddrinfo might return more than one address
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   245
    // but we are using first one only
48767
0c6ce8fdb50a 8080990: libdt_socket/socket_md.c(202) : warning C4996: 'gethostbyname': Use getaddrinfo() or GetAddrInfoW()
gadams
parents: 48242
diff changeset
   246
    addr = ((struct sockaddr_in *)(res->ai_addr))->sin_addr.s_addr;
0c6ce8fdb50a 8080990: libdt_socket/socket_md.c(202) : warning C4996: 'gethostbyname': Use getaddrinfo() or GetAddrInfoW()
gadams
parents: 48242
diff changeset
   247
    freeaddrinfo(res);
0c6ce8fdb50a 8080990: libdt_socket/socket_md.c(202) : warning C4996: 'gethostbyname': Use getaddrinfo() or GetAddrInfoW()
gadams
parents: 48242
diff changeset
   248
    return addr;
24503
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   249
}
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   250
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   251
static int
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   252
getPortNumber(const char *s_port) {
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   253
    u_long n;
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   254
    char *eptr;
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   255
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   256
    if (*s_port == 0) {
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   257
        // bad address - colon with no port number in parameters
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   258
        return -1;
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   259
    }
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   260
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   261
    n = strtoul(s_port, &eptr, 10);
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   262
    if (eptr != s_port + strlen(s_port)) {
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   263
        // incomplete conversion - port number contains non-digit
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   264
        return -1;
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   265
    }
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   266
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   267
    if (n > (u_short) -1) {
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   268
        // check that value supplied by user is less than
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   269
        // maximum possible u_short value (65535) and
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   270
        // will not be truncated later.
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   271
        return -1;
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   272
    }
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   273
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   274
    return n;
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   275
}
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   276
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
static jdwpTransportError
24503
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   278
parseAddress(const char *address, struct sockaddr_in *sa) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
    char *colon;
24503
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   280
    int port;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
47121
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   282
    memset((void *)sa, 0, sizeof(struct sockaddr_in));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
    sa->sin_family = AF_INET;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
    /* check for host:port or port */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
    colon = strchr(address, ':');
24503
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   287
    port = getPortNumber((colon == NULL) ? address : colon +1);
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   288
    if (port < 0) {
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   289
        RETURN_ERROR(JDWPTRANSPORT_ERROR_ILLEGAL_ARGUMENT, "invalid port number specified");
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   290
    }
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   291
    sa->sin_port = dbgsysHostToNetworkShort((u_short)port);
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   292
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
    if (colon == NULL) {
24503
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   294
        // bind to localhost only if no address specified
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   295
        sa->sin_addr.s_addr = getLocalHostAddress();
47121
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   296
    } else if (strncmp(address, "localhost:", 10) == 0) {
24503
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   297
        // optimize for common case
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   298
        sa->sin_addr.s_addr = getLocalHostAddress();
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   299
    } else if (*address == '*' && *(address+1) == ':') {
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   300
        // we are explicitly asked to bind server to all available IP addresses
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   301
        // has no meaning for client.
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   302
        sa->sin_addr.s_addr = dbgsysHostToNetworkLong(INADDR_ANY);
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   303
     } else {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
        char *buf;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
        char *hostname;
896
5c02031316bf 6725543: Compiler warnings in serviceability native code
ohair
parents: 2
diff changeset
   306
        uint32_t addr;
48767
0c6ce8fdb50a 8080990: libdt_socket/socket_md.c(202) : warning C4996: 'gethostbyname': Use getaddrinfo() or GetAddrInfoW()
gadams
parents: 48242
diff changeset
   307
        int ai;
47121
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   308
        buf = (*callback->alloc)((int)strlen(address) + 1);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
        if (buf == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
            RETURN_ERROR(JDWPTRANSPORT_ERROR_OUT_OF_MEMORY, "out of memory");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
        strcpy(buf, address);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
        buf[colon - address] = '\0';
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
        hostname = buf;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
         * First see if the host is a literal IP address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
         * If not then try to resolve it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
        addr = dbgsysInetAddr(hostname);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
        if (addr == 0xffffffff) {
48767
0c6ce8fdb50a 8080990: libdt_socket/socket_md.c(202) : warning C4996: 'gethostbyname': Use getaddrinfo() or GetAddrInfoW()
gadams
parents: 48242
diff changeset
   322
            struct addrinfo hints;
0c6ce8fdb50a 8080990: libdt_socket/socket_md.c(202) : warning C4996: 'gethostbyname': Use getaddrinfo() or GetAddrInfoW()
gadams
parents: 48242
diff changeset
   323
            struct addrinfo *results = NULL;
0c6ce8fdb50a 8080990: libdt_socket/socket_md.c(202) : warning C4996: 'gethostbyname': Use getaddrinfo() or GetAddrInfoW()
gadams
parents: 48242
diff changeset
   324
            memset (&hints, 0, sizeof(hints));
0c6ce8fdb50a 8080990: libdt_socket/socket_md.c(202) : warning C4996: 'gethostbyname': Use getaddrinfo() or GetAddrInfoW()
gadams
parents: 48242
diff changeset
   325
            hints.ai_family = AF_INET;
0c6ce8fdb50a 8080990: libdt_socket/socket_md.c(202) : warning C4996: 'gethostbyname': Use getaddrinfo() or GetAddrInfoW()
gadams
parents: 48242
diff changeset
   326
            hints.ai_socktype = SOCK_STREAM;
0c6ce8fdb50a 8080990: libdt_socket/socket_md.c(202) : warning C4996: 'gethostbyname': Use getaddrinfo() or GetAddrInfoW()
gadams
parents: 48242
diff changeset
   327
            hints.ai_protocol = IPPROTO_TCP;
0c6ce8fdb50a 8080990: libdt_socket/socket_md.c(202) : warning C4996: 'gethostbyname': Use getaddrinfo() or GetAddrInfoW()
gadams
parents: 48242
diff changeset
   328
0c6ce8fdb50a 8080990: libdt_socket/socket_md.c(202) : warning C4996: 'gethostbyname': Use getaddrinfo() or GetAddrInfoW()
gadams
parents: 48242
diff changeset
   329
            ai = dbgsysGetAddrInfo(hostname, NULL, &hints, &results);
0c6ce8fdb50a 8080990: libdt_socket/socket_md.c(202) : warning C4996: 'gethostbyname': Use getaddrinfo() or GetAddrInfoW()
gadams
parents: 48242
diff changeset
   330
0c6ce8fdb50a 8080990: libdt_socket/socket_md.c(202) : warning C4996: 'gethostbyname': Use getaddrinfo() or GetAddrInfoW()
gadams
parents: 48242
diff changeset
   331
            if (ai != 0) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
                /* don't use RETURN_IO_ERROR as unknown host is normal */
48767
0c6ce8fdb50a 8080990: libdt_socket/socket_md.c(202) : warning C4996: 'gethostbyname': Use getaddrinfo() or GetAddrInfoW()
gadams
parents: 48242
diff changeset
   333
                setLastError(0, "getaddrinfo: unknown host");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
                (*callback->free)(buf);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
                return JDWPTRANSPORT_ERROR_IO_ERROR;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
            /* lookup was successful */
48767
0c6ce8fdb50a 8080990: libdt_socket/socket_md.c(202) : warning C4996: 'gethostbyname': Use getaddrinfo() or GetAddrInfoW()
gadams
parents: 48242
diff changeset
   339
            sa->sin_addr =  ((struct sockaddr_in *)results->ai_addr)->sin_addr;
0c6ce8fdb50a 8080990: libdt_socket/socket_md.c(202) : warning C4996: 'gethostbyname': Use getaddrinfo() or GetAddrInfoW()
gadams
parents: 48242
diff changeset
   340
            freeaddrinfo(results);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
            sa->sin_addr.s_addr = addr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
        (*callback->free)(buf);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
    return JDWPTRANSPORT_ERROR_NONE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
47121
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   351
static const char *
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   352
ip_s2u(const char *instr, uint32_t *ip) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   353
    // Convert string representation of ip to integer
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   354
    // in network byte order (big-endian)
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   355
    char t[4] = { 0, 0, 0, 0 };
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   356
    const char *s = instr;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   357
    int i = 0;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   358
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   359
    while (1) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   360
        if (*s == '.') {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   361
            ++i;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   362
            ++s;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   363
            continue;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   364
        }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   365
        if (*s == 0 || *s == '+' || *s == '/') {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   366
            break;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   367
        }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   368
        if (*s < '0' || *s > '9') {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   369
            return instr;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   370
        }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   371
        t[i] = (t[i] * 10) + (*s - '0');
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   372
        ++s;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   373
    }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   374
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   375
    *ip = *(uint32_t*)(t);
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   376
    return s;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   377
}
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   378
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   379
static const char *
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   380
mask_s2u(const char *instr, uint32_t *mask) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   381
    // Convert the number of bits to a netmask
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   382
    // in network byte order (big-endian)
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   383
    unsigned char m = 0;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   384
    const char *s = instr;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   385
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   386
    while (1) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   387
        if (*s == 0 || *s == '+') {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   388
            break;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   389
        }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   390
        if (*s < '0' || *s > '9') {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   391
            return instr;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   392
        }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   393
        m = (m * 10) + (*s - '0');
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   394
        ++s;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   395
    }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   396
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   397
    if (m == 0 || m > 32) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   398
       // Drop invalid input
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   399
       return instr;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   400
    }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   401
48978
93996c47d36f 8196909: gcc 7.2.1 compiler warning in libdt_socket
cjplummer
parents: 48767
diff changeset
   402
    *mask = htonl((uint32_t)(~0) << (32 - m));
47121
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   403
    return s;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   404
}
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   405
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   406
static int
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   407
ip_in_subnet(uint32_t subnet, uint32_t mask, uint32_t ipaddr) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   408
    return (ipaddr & mask) == subnet;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   409
}
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   410
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   411
static jdwpTransportError
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   412
parseAllowedPeers(const char *allowed_peers) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   413
    // Build a list of allowed peers from char string
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   414
    // of format 192.168.0.10+192.168.0.0/24
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   415
    const char *s = NULL;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   416
    const char *p = allowed_peers;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   417
    uint32_t   ip = 0;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   418
    uint32_t mask = 0xFFFFFFFF;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   419
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   420
    while (1) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   421
        s = ip_s2u(p, &ip);
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   422
        if (s == p) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   423
            _peers_cnt = 0;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   424
            fprintf(stderr, "Error in allow option: '%s'\n", s);
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   425
            RETURN_ERROR(JDWPTRANSPORT_ERROR_ILLEGAL_ARGUMENT,
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   426
                         "invalid IP address in allow option");
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   427
        }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   428
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   429
        if (*s == '/') {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   430
            // netmask specified
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   431
            s = mask_s2u(s + 1, &mask);
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   432
            if (*(s - 1) == '/') {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   433
                // Input is not consumed, something bad happened
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   434
                _peers_cnt = 0;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   435
                fprintf(stderr, "Error in allow option: '%s'\n", s);
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   436
                RETURN_ERROR(JDWPTRANSPORT_ERROR_ILLEGAL_ARGUMENT,
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   437
                             "invalid netmask in allow option");
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   438
            }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   439
        } else {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   440
            // reset netmask
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   441
            mask = 0xFFFFFFFF;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   442
        }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   443
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   444
        if (*s == '+' || *s == 0) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   445
            if (_peers_cnt >= MAX_PEER_ENTRIES) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   446
                fprintf(stderr, "Error in allow option: '%s'\n", allowed_peers);
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   447
                RETURN_ERROR(JDWPTRANSPORT_ERROR_ILLEGAL_ARGUMENT,
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   448
                             "exceeded max number of allowed peers: " MAX_PEERS_STR);
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   449
            }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   450
            _peers[_peers_cnt].subnet = ip;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   451
            _peers[_peers_cnt].netmask = mask;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   452
            _peers_cnt++;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   453
            if (*s == 0) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   454
                // end of options
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   455
                break;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   456
            }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   457
            // advance to next IP block
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   458
            p = s + 1;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   459
        }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   460
    }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   461
    return JDWPTRANSPORT_ERROR_NONE;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   462
}
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   463
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   464
static int
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   465
isPeerAllowed(struct sockaddr_in *peer) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   466
    int i;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   467
    for (i = 0; i < _peers_cnt; ++i) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   468
        int peer_ip = peer->sin_addr.s_addr;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   469
        if (ip_in_subnet(_peers[i].subnet, _peers[i].netmask, peer_ip)) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   470
            return 1;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   471
        }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   472
    }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   473
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   474
    return 0;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   475
}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
static jdwpTransportError JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
socketTransport_getCapabilities(jdwpTransportEnv* env,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
        JDWPTransportCapabilities* capabilitiesPtr)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
    JDWPTransportCapabilities result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
    memset(&result, 0, sizeof(result));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
    result.can_timeout_attach = JNI_TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
    result.can_timeout_accept = JNI_TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
    result.can_timeout_handshake = JNI_TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
    *capabilitiesPtr = result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
    return JDWPTRANSPORT_ERROR_NONE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
static jdwpTransportError JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
socketTransport_startListening(jdwpTransportEnv* env, const char* address,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
                               char** actualAddress)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
    struct sockaddr_in sa;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
    int err;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
    memset((void *)&sa,0,sizeof(struct sockaddr_in));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
    sa.sin_family = AF_INET;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
    /* no address provided */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
    if ((address == NULL) || (address[0] == '\0')) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
        address = "0";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
24503
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   509
    err = parseAddress(address, &sa);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
    if (err != JDWPTRANSPORT_ERROR_NONE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
        return err;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
    serverSocketFD = dbgsysSocket(AF_INET, SOCK_STREAM, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
    if (serverSocketFD < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
        RETURN_IO_ERROR("socket creation failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
46091
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   519
    err = setOptionsCommon(serverSocketFD);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
    if (err) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
        return err;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
    }
46091
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   523
    if (sa.sin_port != 0) {
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   524
        /*
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   525
         * Only need SO_REUSEADDR if we're using a fixed port. If we
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   526
         * start seeing EADDRINUSE due to collisions in free ports
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   527
         * then we should retry the dbgsysBind() a few times.
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   528
         */
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   529
        err = setReuseAddrOption(serverSocketFD);
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   530
        if (err) {
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   531
            return err;
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   532
        }
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   533
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
    err = dbgsysBind(serverSocketFD, (struct sockaddr *)&sa, sizeof(sa));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
    if (err < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
        RETURN_IO_ERROR("bind failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
    err = dbgsysListen(serverSocketFD, 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
    if (err < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
        RETURN_IO_ERROR("listen failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
        char buf[20];
15274
a77cdd5ea6e3 8005120: Compiler warnings in socket transport native code
jzavgren
parents: 14342
diff changeset
   547
        socklen_t len = sizeof(sa);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
        jint portNum;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
        err = dbgsysGetSocketName(serverSocketFD,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
                               (struct sockaddr *)&sa, &len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
        portNum = dbgsysNetworkToHostShort(sa.sin_port);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
        sprintf(buf, "%d", portNum);
896
5c02031316bf 6725543: Compiler warnings in serviceability native code
ohair
parents: 2
diff changeset
   553
        *actualAddress = (*callback->alloc)((int)strlen(buf) + 1);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
        if (*actualAddress == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
            RETURN_ERROR(JDWPTRANSPORT_ERROR_OUT_OF_MEMORY, "out of memory");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
            strcpy(*actualAddress, buf);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
    return JDWPTRANSPORT_ERROR_NONE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
static jdwpTransportError JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
socketTransport_accept(jdwpTransportEnv* env, jlong acceptTimeout, jlong handshakeTimeout)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
{
15274
a77cdd5ea6e3 8005120: Compiler warnings in socket transport native code
jzavgren
parents: 14342
diff changeset
   567
    socklen_t socketLen;
47121
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   568
    int err = JDWPTRANSPORT_ERROR_NONE;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
    struct sockaddr_in socket;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
    jlong startTime = (jlong)0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
     * Use a default handshake timeout if not specified - this avoids an indefinite
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
     * hang in cases where something other than a debugger connects to our port.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
    if (handshakeTimeout == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
        handshakeTimeout = 2000;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
    do {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
         * If there is an accept timeout then we put the socket in non-blocking
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
         * mode and poll for a connection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
        if (acceptTimeout > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
            int rv;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
            dbgsysConfigureBlocking(serverSocketFD, JNI_FALSE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
            startTime = dbgsysCurrentTimeMillis();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
            rv = dbgsysPoll(serverSocketFD, JNI_TRUE, JNI_FALSE, (long)acceptTimeout);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
            if (rv <= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
                /* set the last error here as could be overridden by configureBlocking */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
                if (rv == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
                    setLastError(JDWPTRANSPORT_ERROR_IO_ERROR, "poll failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
                /* restore blocking state */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
                dbgsysConfigureBlocking(serverSocketFD, JNI_TRUE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
                if (rv == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
                    RETURN_ERROR(JDWPTRANSPORT_ERROR_TIMEOUT, "timed out waiting for connection");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
                    return JDWPTRANSPORT_ERROR_IO_ERROR;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
         * Accept the connection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
        memset((void *)&socket,0,sizeof(struct sockaddr_in));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
        socketLen = sizeof(socket);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
        socketFD = dbgsysAccept(serverSocketFD,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
                                (struct sockaddr *)&socket,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
                                &socketLen);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
        /* set the last error here as could be overridden by configureBlocking */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
        if (socketFD < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
            setLastError(JDWPTRANSPORT_ERROR_IO_ERROR, "accept failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
         * Restore the blocking state - note that the accepted socket may be in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
         * blocking or non-blocking mode (platform dependent). However as there
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
         * is a handshake timeout set then it will go into non-blocking mode
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
         * anyway for the handshake.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
        if (acceptTimeout > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
            dbgsysConfigureBlocking(serverSocketFD, JNI_TRUE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
        if (socketFD < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
            return JDWPTRANSPORT_ERROR_IO_ERROR;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
47121
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   630
        /*
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   631
         * version >= JDWPTRANSPORT_VERSION_1_1:
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   632
         * Verify that peer is allowed to connect.
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   633
         */
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   634
        if (_peers_cnt > 0) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   635
            if (!isPeerAllowed(&socket)) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   636
                char ebuf[64] = { 0 };
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   637
                char buf[INET_ADDRSTRLEN] = { 0 };
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   638
                const char* addr_str = inet_ntop(AF_INET, &(socket.sin_addr), buf, INET_ADDRSTRLEN);
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   639
                sprintf(ebuf, "ERROR: Peer not allowed to connect: %s\n",
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   640
                        (addr_str == NULL) ? "<bad address>" : addr_str);
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   641
                dbgsysSocketClose(socketFD);
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   642
                socketFD = -1;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   643
                err = JDWPTRANSPORT_ERROR_ILLEGAL_ARGUMENT;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   644
                setLastError(err, ebuf);
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   645
            }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   646
        }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   647
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   648
        if (socketFD > 0) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   649
          /* handshake with the debugger */
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   650
          err = handshake(socketFD, handshakeTimeout);
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   651
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
         * If the handshake fails then close the connection. If there if an accept
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
         * timeout then we must adjust the timeout for the next poll.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
         */
47121
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   657
        if (err != JDWPTRANSPORT_ERROR_NONE) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
            fprintf(stderr, "Debugger failed to attach: %s\n", getLastError());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
            dbgsysSocketClose(socketFD);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
            socketFD = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
            if (acceptTimeout > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
                long endTime = dbgsysCurrentTimeMillis();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
                acceptTimeout -= (endTime - startTime);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
                if (acceptTimeout <= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
                    setLastError(JDWPTRANSPORT_ERROR_IO_ERROR,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
                        "timeout waiting for debugger to connect");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
                    return JDWPTRANSPORT_ERROR_IO_ERROR;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
    } while (socketFD < 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
    return JDWPTRANSPORT_ERROR_NONE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
static jdwpTransportError JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
socketTransport_stopListening(jdwpTransportEnv *env)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
    if (serverSocketFD < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
        RETURN_ERROR(JDWPTRANSPORT_ERROR_ILLEGAL_STATE, "connection not open");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
    if (dbgsysSocketClose(serverSocketFD) < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
        RETURN_IO_ERROR("close failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
    serverSocketFD = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
    return JDWPTRANSPORT_ERROR_NONE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
static jdwpTransportError JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
socketTransport_attach(jdwpTransportEnv* env, const char* addressString, jlong attachTimeout,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
                       jlong handshakeTimeout)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
    struct sockaddr_in sa;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
    int err;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
    if (addressString == NULL || addressString[0] == '\0') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
        RETURN_ERROR(JDWPTRANSPORT_ERROR_ILLEGAL_ARGUMENT, "address is missing");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
24503
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   700
    err = parseAddress(addressString, &sa);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
    if (err != JDWPTRANSPORT_ERROR_NONE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
        return err;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
    socketFD = dbgsysSocket(AF_INET, SOCK_STREAM, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
    if (socketFD < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
        RETURN_IO_ERROR("unable to create socket");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
46091
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   710
    err = setOptionsCommon(socketFD);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
    if (err) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
        return err;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
    /*
46091
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   716
     * We don't call setReuseAddrOption() for the non-server socket
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   717
     * case. If we start seeing EADDRINUSE due to collisions in free
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   718
     * ports then we should retry the dbgsysConnect() a few times.
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   719
     */
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   720
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   721
    /*
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
     * To do a timed connect we make the socket non-blocking
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
     * and poll with a timeout;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
    if (attachTimeout > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
        dbgsysConfigureBlocking(socketFD, JNI_FALSE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
    err = dbgsysConnect(socketFD, (struct sockaddr *)&sa, sizeof(sa));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
    if (err == DBG_EINPROGRESS && attachTimeout > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
        err = dbgsysFinishConnect(socketFD, (long)attachTimeout);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
        if (err == DBG_ETIMEOUT) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
            dbgsysConfigureBlocking(socketFD, JNI_TRUE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
            RETURN_ERROR(JDWPTRANSPORT_ERROR_TIMEOUT, "connect timed out");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
    if (err < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
        RETURN_IO_ERROR("connect failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
    if (attachTimeout > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
        dbgsysConfigureBlocking(socketFD, JNI_TRUE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
    err = handshake(socketFD, handshakeTimeout);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
    if (err) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
        dbgsysSocketClose(socketFD);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
        socketFD = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
        return err;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
    return JDWPTRANSPORT_ERROR_NONE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
static jboolean JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
socketTransport_isOpen(jdwpTransportEnv* env)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
    if (socketFD >= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
        return JNI_TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
        return JNI_FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
static jdwpTransportError JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
socketTransport_close(jdwpTransportEnv* env)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
    int fd = socketFD;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
    socketFD = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
    if (fd < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
        return JDWPTRANSPORT_ERROR_NONE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
    }
22605
dba3d6b22818 8031581: PPC64: Addons and fixes for AIX to pass the jdk regression tests
simonis
parents: 15274
diff changeset
   775
#ifdef _AIX
dba3d6b22818 8031581: PPC64: Addons and fixes for AIX to pass the jdk regression tests
simonis
parents: 15274
diff changeset
   776
    /*
dba3d6b22818 8031581: PPC64: Addons and fixes for AIX to pass the jdk regression tests
simonis
parents: 15274
diff changeset
   777
      AIX needs a workaround for I/O cancellation, see:
dba3d6b22818 8031581: PPC64: Addons and fixes for AIX to pass the jdk regression tests
simonis
parents: 15274
diff changeset
   778
      http://publib.boulder.ibm.com/infocenter/pseries/v5r3/index.jsp?topic=/com.ibm.aix.basetechref/doc/basetrf1/close.htm
dba3d6b22818 8031581: PPC64: Addons and fixes for AIX to pass the jdk regression tests
simonis
parents: 15274
diff changeset
   779
      ...
dba3d6b22818 8031581: PPC64: Addons and fixes for AIX to pass the jdk regression tests
simonis
parents: 15274
diff changeset
   780
      The close subroutine is blocked until all subroutines which use the file
dba3d6b22818 8031581: PPC64: Addons and fixes for AIX to pass the jdk regression tests
simonis
parents: 15274
diff changeset
   781
      descriptor return to usr space. For example, when a thread is calling close
dba3d6b22818 8031581: PPC64: Addons and fixes for AIX to pass the jdk regression tests
simonis
parents: 15274
diff changeset
   782
      and another thread is calling select with the same file descriptor, the
dba3d6b22818 8031581: PPC64: Addons and fixes for AIX to pass the jdk regression tests
simonis
parents: 15274
diff changeset
   783
      close subroutine does not return until the select call returns.
dba3d6b22818 8031581: PPC64: Addons and fixes for AIX to pass the jdk regression tests
simonis
parents: 15274
diff changeset
   784
      ...
dba3d6b22818 8031581: PPC64: Addons and fixes for AIX to pass the jdk regression tests
simonis
parents: 15274
diff changeset
   785
    */
dba3d6b22818 8031581: PPC64: Addons and fixes for AIX to pass the jdk regression tests
simonis
parents: 15274
diff changeset
   786
    shutdown(fd, 2);
dba3d6b22818 8031581: PPC64: Addons and fixes for AIX to pass the jdk regression tests
simonis
parents: 15274
diff changeset
   787
#endif
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
    if (dbgsysSocketClose(fd) < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
         * close failed - it's pointless to restore socketFD here because
15274
a77cdd5ea6e3 8005120: Compiler warnings in socket transport native code
jzavgren
parents: 14342
diff changeset
   791
         * any subsequent close will likely fail as well.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
        RETURN_IO_ERROR("close failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
    return JDWPTRANSPORT_ERROR_NONE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
static jdwpTransportError JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
socketTransport_writePacket(jdwpTransportEnv* env, const jdwpPacket *packet)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
    jint len, data_len, id;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
     * room for header and up to MAX_DATA_SIZE data bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
     */
48242
61e60548c0cf 8193258: Better usage of JDWP HEADER SIZE
clanger
parents: 47216
diff changeset
   805
    char header[JDWP_HEADER_SIZE + MAX_DATA_SIZE];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
    jbyte *data;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
    /* packet can't be null */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
    if (packet == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
        RETURN_ERROR(JDWPTRANSPORT_ERROR_ILLEGAL_ARGUMENT, "packet is NULL");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
    len = packet->type.cmd.len;         /* includes header */
48242
61e60548c0cf 8193258: Better usage of JDWP HEADER SIZE
clanger
parents: 47216
diff changeset
   814
    data_len = len - JDWP_HEADER_SIZE;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
    /* bad packet */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
    if (data_len < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
        RETURN_ERROR(JDWPTRANSPORT_ERROR_ILLEGAL_ARGUMENT, "invalid length");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
    /* prepare the header for transmission */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
    len = (jint)dbgsysHostToNetworkLong(len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
    id = (jint)dbgsysHostToNetworkLong(packet->type.cmd.id);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
    memcpy(header + 0, &len, 4);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
    memcpy(header + 4, &id, 4);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
    header[8] = packet->type.cmd.flags;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
    if (packet->type.cmd.flags & JDWPTRANSPORT_FLAGS_REPLY) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
        jshort errorCode =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
            dbgsysHostToNetworkShort(packet->type.reply.errorCode);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
        memcpy(header + 9, &errorCode, 2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
        header[9] = packet->type.cmd.cmdSet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
        header[10] = packet->type.cmd.cmd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
    data = packet->type.cmd.data;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
    /* Do one send for short packets, two for longer ones */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
    if (data_len <= MAX_DATA_SIZE) {
48242
61e60548c0cf 8193258: Better usage of JDWP HEADER SIZE
clanger
parents: 47216
diff changeset
   840
        memcpy(header + JDWP_HEADER_SIZE, data, data_len);
61e60548c0cf 8193258: Better usage of JDWP HEADER SIZE
clanger
parents: 47216
diff changeset
   841
        if (send_fully(socketFD, (char *)&header, JDWP_HEADER_SIZE + data_len) !=
61e60548c0cf 8193258: Better usage of JDWP HEADER SIZE
clanger
parents: 47216
diff changeset
   842
            JDWP_HEADER_SIZE + data_len) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
            RETURN_IO_ERROR("send failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
    } else {
48242
61e60548c0cf 8193258: Better usage of JDWP HEADER SIZE
clanger
parents: 47216
diff changeset
   846
        memcpy(header + JDWP_HEADER_SIZE, data, MAX_DATA_SIZE);
61e60548c0cf 8193258: Better usage of JDWP HEADER SIZE
clanger
parents: 47216
diff changeset
   847
        if (send_fully(socketFD, (char *)&header, JDWP_HEADER_SIZE + MAX_DATA_SIZE) !=
61e60548c0cf 8193258: Better usage of JDWP HEADER SIZE
clanger
parents: 47216
diff changeset
   848
            JDWP_HEADER_SIZE + MAX_DATA_SIZE) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
            RETURN_IO_ERROR("send failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
        /* Send the remaining data bytes right out of the data area. */
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
   852
        if (send_fully(socketFD, (char *)data + MAX_DATA_SIZE,
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
   853
                       data_len - MAX_DATA_SIZE) != data_len - MAX_DATA_SIZE) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
            RETURN_IO_ERROR("send failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
    return JDWPTRANSPORT_ERROR_NONE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
static jint
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
recv_fully(int f, char *buf, int len)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
    int nbytes = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
    while (nbytes < len) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
        int res = dbgsysRecv(f, buf + nbytes, len - nbytes, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
        if (res < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
            return res;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
        } else if (res == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
            break; /* eof, return nbytes which is less than len */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
        nbytes += res;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
    return nbytes;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
   877
jint
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
   878
send_fully(int f, char *buf, int len)
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
   879
{
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
   880
    int nbytes = 0;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
   881
    while (nbytes < len) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
   882
        int res = dbgsysSend(f, buf + nbytes, len - nbytes, 0);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
   883
        if (res < 0) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
   884
            return res;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
   885
        } else if (res == 0) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
   886
            break; /* eof, return nbytes which is less than len */
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
   887
        }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
   888
        nbytes += res;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
   889
    }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
   890
    return nbytes;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
   891
}
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
   892
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
static jdwpTransportError JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
socketTransport_readPacket(jdwpTransportEnv* env, jdwpPacket* packet) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
    jint length, data_len;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
    jint n;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
    /* packet can't be null */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
    if (packet == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
        RETURN_ERROR(JDWPTRANSPORT_ERROR_ILLEGAL_ARGUMENT, "packet is null");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
    /* read the length field */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
    n = recv_fully(socketFD, (char *)&length, sizeof(jint));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
    /* check for EOF */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
    if (n == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
        packet->type.cmd.len = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
        return JDWPTRANSPORT_ERROR_NONE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
    if (n != sizeof(jint)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
        RETURN_RECV_ERROR(n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
    length = (jint)dbgsysNetworkToHostLong(length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
    packet->type.cmd.len = length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
47121
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   919
    n = recv_fully(socketFD,(char *)&(packet->type.cmd.id), sizeof(jint));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
    if (n < (int)sizeof(jint)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
        RETURN_RECV_ERROR(n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
    packet->type.cmd.id = (jint)dbgsysNetworkToHostLong(packet->type.cmd.id);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
47121
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   926
    n = recv_fully(socketFD,(char *)&(packet->type.cmd.flags), sizeof(jbyte));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
    if (n < (int)sizeof(jbyte)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
        RETURN_RECV_ERROR(n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
    if (packet->type.cmd.flags & JDWPTRANSPORT_FLAGS_REPLY) {
47121
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   932
        n = recv_fully(socketFD,(char *)&(packet->type.reply.errorCode), sizeof(jbyte));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
        if (n < (int)sizeof(jshort)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
            RETURN_RECV_ERROR(n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
        /* FIXME - should the error be converted to host order?? */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
    } else {
47121
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   941
        n = recv_fully(socketFD,(char *)&(packet->type.cmd.cmdSet), sizeof(jbyte));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   942
        if (n < (int)sizeof(jbyte)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
            RETURN_RECV_ERROR(n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
47121
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   946
        n = recv_fully(socketFD,(char *)&(packet->type.cmd.cmd), sizeof(jbyte));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
        if (n < (int)sizeof(jbyte)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
            RETURN_RECV_ERROR(n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
    data_len = length - ((sizeof(jint) * 2) + (sizeof(jbyte) * 3));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
    if (data_len < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
        setLastError(0, "Badly formed packet received - invalid length");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
        return JDWPTRANSPORT_ERROR_IO_ERROR;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
    } else if (data_len == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
        packet->type.cmd.data = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
        packet->type.cmd.data= (*callback->alloc)(data_len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
        if (packet->type.cmd.data == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
            RETURN_ERROR(JDWPTRANSPORT_ERROR_OUT_OF_MEMORY, "out of memory");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
        n = recv_fully(socketFD,(char *)packet->type.cmd.data, data_len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
        if (n < data_len) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
            (*callback->free)(packet->type.cmd.data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
            RETURN_RECV_ERROR(n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
    return JDWPTRANSPORT_ERROR_NONE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
static jdwpTransportError JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
socketTransport_getLastError(jdwpTransportEnv* env, char** msgP) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
    char *msg = (char *)dbgsysTlsGet(tlsIndex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   979
    if (msg == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
        return JDWPTRANSPORT_ERROR_MSG_NOT_AVAILABLE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
    }
896
5c02031316bf 6725543: Compiler warnings in serviceability native code
ohair
parents: 2
diff changeset
   982
    *msgP = (*callback->alloc)((int)strlen(msg)+1);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
    if (*msgP == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
        return JDWPTRANSPORT_ERROR_OUT_OF_MEMORY;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
    strcpy(*msgP, msg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
    return JDWPTRANSPORT_ERROR_NONE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   989
47121
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   990
static jdwpTransportError JNICALL
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   991
socketTransport_setConfiguration(jdwpTransportEnv* env, jdwpTransportConfiguration* cfg) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   992
    const char* allowed_peers = NULL;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   993
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   994
    if (cfg == NULL) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   995
        RETURN_ERROR(JDWPTRANSPORT_ERROR_ILLEGAL_ARGUMENT,
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   996
                     "NULL pointer to transport configuration is invalid");
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   997
    }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   998
    allowed_peers = cfg->allowed_peers;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   999
    _peers_cnt = 0;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1000
    if (allowed_peers != NULL) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1001
        size_t len = strlen(allowed_peers);
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1002
        if (len == 0) { /* Impossible: parseOptions() would reject it */
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1003
            fprintf(stderr, "Error in allow option: '%s'\n", allowed_peers);
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1004
            RETURN_ERROR(JDWPTRANSPORT_ERROR_ILLEGAL_ARGUMENT,
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1005
                         "allow option should not be empty");
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1006
        } else if (*allowed_peers == '*') {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1007
            if (len != 1) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1008
                fprintf(stderr, "Error in allow option: '%s'\n", allowed_peers);
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1009
                RETURN_ERROR(JDWPTRANSPORT_ERROR_ILLEGAL_ARGUMENT,
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1010
                             "allow option '*' cannot be expanded");
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1011
            }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1012
        } else {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1013
            int err = parseAllowedPeers(allowed_peers);
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1014
            if (err != JDWPTRANSPORT_ERROR_NONE) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1015
                return err;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1016
            }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1017
        }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1018
    }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1019
    return JDWPTRANSPORT_ERROR_NONE;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1020
}
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1021
49440
396ea30afbd5 8200178: Remove mapfiles for JDK native libraries
ihse
parents: 48978
diff changeset
  1022
JNIEXPORT jint JNICALL
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1023
jdwpTransport_OnLoad(JavaVM *vm, jdwpTransportCallback* cbTablePtr,
47121
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1024
                     jint version, jdwpTransportEnv** env)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
{
47121
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1026
    if (version < JDWPTRANSPORT_VERSION_1_0 ||
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1027
        version > JDWPTRANSPORT_VERSION_1_1) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1028
        return JNI_EVERSION;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1029
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1030
    if (initialized) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
         * This library doesn't support multiple environments (yet)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
        return JNI_EEXIST;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1035
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1036
    initialized = JNI_TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1037
    jvm = vm;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1038
    callback = cbTablePtr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1039
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1040
    /* initialize interface table */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1041
    interface.GetCapabilities = &socketTransport_getCapabilities;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1042
    interface.Attach = &socketTransport_attach;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1043
    interface.StartListening = &socketTransport_startListening;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1044
    interface.StopListening = &socketTransport_stopListening;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1045
    interface.Accept = &socketTransport_accept;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1046
    interface.IsOpen = &socketTransport_isOpen;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1047
    interface.Close = &socketTransport_close;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1048
    interface.ReadPacket = &socketTransport_readPacket;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1049
    interface.WritePacket = &socketTransport_writePacket;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1050
    interface.GetLastError = &socketTransport_getLastError;
47121
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1051
    if (version >= JDWPTRANSPORT_VERSION_1_1) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1052
        interface.SetTransportConfiguration = &socketTransport_setConfiguration;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1053
    }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1054
    *env = &single_env;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1055
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1056
    /* initialized TLS */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1057
    tlsIndex = dbgsysTlsAlloc();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1058
    return JNI_OK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1059
}