src/jdk.jdwp.agent/share/native/libdt_socket/socketTransport.c
author erikj
Tue, 12 Sep 2017 19:03:39 +0200
changeset 47216 71c04702a3d5
parent 47121 jdk/src/jdk.jdwp.agent/share/native/libdt_socket/socketTransport.c@3aceb4fc0e84
child 48242 61e60548c0cf
permissions -rw-r--r--
8187443: Forest Consolidation: Move files to unified layout Reviewed-by: darcy, ihse
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
46091
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
     2
 * Copyright (c) 1998, 2017, 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
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
#include "jdwpTransport.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
#include "sysSocket.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
24503
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
    34
#ifdef _WIN32
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
    35
 #include <winsock2.h>
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
    36
 #include <ws2tcpip.h>
47121
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
    37
#else
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
    38
 #include <arpa/inet.h>
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
    39
 #include <sys/socket.h>
24503
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
    40
#endif
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
    41
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * The Socket Transport Library.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * This module is an implementation of the Java Debug Wire Protocol Transport
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * Service Provider Interface - see src/share/javavm/export/jdwpTransport.h.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
static int serverSocketFD;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
static int socketFD = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
static jdwpTransportCallback *callback;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
static JavaVM *jvm;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
static int tlsIndex;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
static jboolean initialized;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
static struct jdwpTransportNativeInterface_ interface;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
static jdwpTransportEnv single_env = (jdwpTransportEnv)&interface;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
#define RETURN_ERROR(err, msg) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
        if (1==1) { \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
            setLastError(err, msg); \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
            return err; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
#define RETURN_IO_ERROR(msg)    RETURN_ERROR(JDWPTRANSPORT_ERROR_IO_ERROR, msg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
#define RETURN_RECV_ERROR(n) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
        if (n == 0) { \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
            RETURN_ERROR(JDWPTRANSPORT_ERROR_IO_ERROR, "premature EOF"); \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
        } else { \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
            RETURN_IO_ERROR("recv error"); \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
#define HEADER_SIZE     11
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;
24503
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   232
    int err;
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   233
24514
2440b44952d7 8043716: JDI test com/sun/jdi/ProcessAttachTest.sh and other 3 jdi tests failed in nightly
dsamersoff
parents: 24503
diff changeset
   234
    // 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
   235
    memset((void *)&hints, 0, sizeof(hints));
24503
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   236
    hints.ai_family = AF_INET;
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   237
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   238
    err = getaddrinfo("localhost", NULL, &hints, &res);
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   239
    if (err < 0 || res == NULL) {
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   240
        return dbgsysHostToNetworkLong(INADDR_LOOPBACK);
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   241
    }
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
    // getaddrinfo might return more than one address
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   244
    // but we are using first one only
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   245
    return ((struct sockaddr_in *)(res->ai_addr))->sin_addr.s_addr;
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   246
}
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   247
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   248
static int
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   249
getPortNumber(const char *s_port) {
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   250
    u_long n;
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   251
    char *eptr;
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   252
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   253
    if (*s_port == 0) {
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   254
        // 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
   255
        return -1;
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   256
    }
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   257
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   258
    n = strtoul(s_port, &eptr, 10);
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   259
    if (eptr != s_port + strlen(s_port)) {
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   260
        // incomplete conversion - port number contains non-digit
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   261
        return -1;
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   262
    }
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   263
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   264
    if (n > (u_short) -1) {
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   265
        // 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
   266
        // maximum possible u_short value (65535) and
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   267
        // will not be truncated later.
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   268
        return -1;
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   269
    }
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   270
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   271
    return n;
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
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
static jdwpTransportError
24503
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   275
parseAddress(const char *address, struct sockaddr_in *sa) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
    char *colon;
24503
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   277
    int port;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
47121
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   279
    memset((void *)sa, 0, sizeof(struct sockaddr_in));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
    sa->sin_family = AF_INET;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
    /* check for host:port or port */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
    colon = strchr(address, ':');
24503
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   284
    port = getPortNumber((colon == NULL) ? address : colon +1);
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   285
    if (port < 0) {
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   286
        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
   287
    }
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   288
    sa->sin_port = dbgsysHostToNetworkShort((u_short)port);
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   289
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
    if (colon == NULL) {
24503
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   291
        // 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
   292
        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
   293
    } 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
   294
        // optimize for common case
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   295
        sa->sin_addr.s_addr = getLocalHostAddress();
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   296
    } else if (*address == '*' && *(address+1) == ':') {
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   297
        // 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
   298
        // has no meaning for client.
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   299
        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
   300
     } else {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
        char *buf;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
        char *hostname;
896
5c02031316bf 6725543: Compiler warnings in serviceability native code
ohair
parents: 2
diff changeset
   303
        uint32_t addr;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
47121
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   305
        buf = (*callback->alloc)((int)strlen(address) + 1);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
        if (buf == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
            RETURN_ERROR(JDWPTRANSPORT_ERROR_OUT_OF_MEMORY, "out of memory");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
        strcpy(buf, address);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
        buf[colon - address] = '\0';
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
        hostname = buf;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
         * First see if the host is a literal IP address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
         * If not then try to resolve it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
        addr = dbgsysInetAddr(hostname);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
        if (addr == 0xffffffff) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
            struct hostent *hp = dbgsysGetHostByName(hostname);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
            if (hp == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
                /* don't use RETURN_IO_ERROR as unknown host is normal */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
                setLastError(0, "gethostbyname: unknown host");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
                (*callback->free)(buf);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
                return JDWPTRANSPORT_ERROR_IO_ERROR;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
            /* lookup was successful */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
            memcpy(&(sa->sin_addr), hp->h_addr_list[0], hp->h_length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
            sa->sin_addr.s_addr = addr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
        (*callback->free)(buf);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
    return JDWPTRANSPORT_ERROR_NONE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
47121
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   339
static const char *
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   340
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
   341
    // 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
   342
    // 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
   343
    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
   344
    const char *s = instr;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   345
    int i = 0;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   346
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   347
    while (1) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   348
        if (*s == '.') {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   349
            ++i;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   350
            ++s;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   351
            continue;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   352
        }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   353
        if (*s == 0 || *s == '+' || *s == '/') {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   354
            break;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   355
        }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   356
        if (*s < '0' || *s > '9') {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   357
            return instr;
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
        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
   360
        ++s;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   361
    }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   362
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   363
    *ip = *(uint32_t*)(t);
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   364
    return s;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   365
}
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   366
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   367
static const char *
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   368
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
   369
    // 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
   370
    // 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
   371
    unsigned char m = 0;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   372
    const char *s = instr;
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
    while (1) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   375
        if (*s == 0 || *s == '+') {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   376
            break;
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
        if (*s < '0' || *s > '9') {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   379
            return instr;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   380
        }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   381
        m = (m * 10) + (*s - '0');
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   382
        ++s;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   383
    }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   384
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   385
    if (m == 0 || m > 32) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   386
       // Drop invalid input
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   387
       return instr;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   388
    }
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
    *mask = htonl(-1 << (32 - m));
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   391
    return s;
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
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   394
static int
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   395
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
   396
    return (ipaddr & mask) == subnet;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   397
}
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   398
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   399
static jdwpTransportError
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   400
parseAllowedPeers(const char *allowed_peers) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   401
    // 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
   402
    // 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
   403
    const char *s = NULL;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   404
    const char *p = allowed_peers;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   405
    uint32_t   ip = 0;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   406
    uint32_t mask = 0xFFFFFFFF;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   407
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   408
    while (1) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   409
        s = ip_s2u(p, &ip);
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   410
        if (s == p) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   411
            _peers_cnt = 0;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   412
            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
   413
            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
   414
                         "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
   415
        }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   416
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   417
        if (*s == '/') {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   418
            // netmask specified
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   419
            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
   420
            if (*(s - 1) == '/') {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   421
                // 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
   422
                _peers_cnt = 0;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   423
                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
   424
                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
   425
                             "invalid netmask in allow option");
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   426
            }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   427
        } else {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   428
            // reset netmask
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   429
            mask = 0xFFFFFFFF;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   430
        }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   431
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   432
        if (*s == '+' || *s == 0) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   433
            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
   434
                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
   435
                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
   436
                             "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
   437
            }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   438
            _peers[_peers_cnt].subnet = ip;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   439
            _peers[_peers_cnt].netmask = mask;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   440
            _peers_cnt++;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   441
            if (*s == 0) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   442
                // end of options
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   443
                break;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   444
            }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   445
            // advance to next IP block
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   446
            p = s + 1;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   447
        }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   448
    }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   449
    return JDWPTRANSPORT_ERROR_NONE;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   450
}
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   451
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   452
static int
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   453
isPeerAllowed(struct sockaddr_in *peer) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   454
    int i;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   455
    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
   456
        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
   457
        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
   458
            return 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
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   462
    return 0;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   463
}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
static jdwpTransportError JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
socketTransport_getCapabilities(jdwpTransportEnv* env,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
        JDWPTransportCapabilities* capabilitiesPtr)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
    JDWPTransportCapabilities result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
    memset(&result, 0, sizeof(result));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
    result.can_timeout_attach = JNI_TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
    result.can_timeout_accept = JNI_TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
    result.can_timeout_handshake = JNI_TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
    *capabilitiesPtr = result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
    return JDWPTRANSPORT_ERROR_NONE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
static jdwpTransportError JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
socketTransport_startListening(jdwpTransportEnv* env, const char* address,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
                               char** actualAddress)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
    struct sockaddr_in sa;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
    int err;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
    memset((void *)&sa,0,sizeof(struct sockaddr_in));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
    sa.sin_family = AF_INET;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
    /* no address provided */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
    if ((address == NULL) || (address[0] == '\0')) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
        address = "0";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
24503
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   497
    err = parseAddress(address, &sa);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
    if (err != JDWPTRANSPORT_ERROR_NONE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
        return err;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
    serverSocketFD = dbgsysSocket(AF_INET, SOCK_STREAM, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
    if (serverSocketFD < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
        RETURN_IO_ERROR("socket creation failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
46091
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   507
    err = setOptionsCommon(serverSocketFD);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
    if (err) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
        return err;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
    }
46091
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   511
    if (sa.sin_port != 0) {
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   512
        /*
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   513
         * 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
   514
         * start seeing EADDRINUSE due to collisions in free ports
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   515
         * then we should retry the dbgsysBind() a few times.
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   516
         */
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   517
        err = setReuseAddrOption(serverSocketFD);
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   518
        if (err) {
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   519
            return err;
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   520
        }
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   521
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
    err = dbgsysBind(serverSocketFD, (struct sockaddr *)&sa, sizeof(sa));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
    if (err < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
        RETURN_IO_ERROR("bind failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
    err = dbgsysListen(serverSocketFD, 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
    if (err < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
        RETURN_IO_ERROR("listen failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
        char buf[20];
15274
a77cdd5ea6e3 8005120: Compiler warnings in socket transport native code
jzavgren
parents: 14342
diff changeset
   535
        socklen_t len = sizeof(sa);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
        jint portNum;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
        err = dbgsysGetSocketName(serverSocketFD,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
                               (struct sockaddr *)&sa, &len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
        portNum = dbgsysNetworkToHostShort(sa.sin_port);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
        sprintf(buf, "%d", portNum);
896
5c02031316bf 6725543: Compiler warnings in serviceability native code
ohair
parents: 2
diff changeset
   541
        *actualAddress = (*callback->alloc)((int)strlen(buf) + 1);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
        if (*actualAddress == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
            RETURN_ERROR(JDWPTRANSPORT_ERROR_OUT_OF_MEMORY, "out of memory");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
            strcpy(*actualAddress, buf);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
    return JDWPTRANSPORT_ERROR_NONE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
static jdwpTransportError JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
socketTransport_accept(jdwpTransportEnv* env, jlong acceptTimeout, jlong handshakeTimeout)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
{
15274
a77cdd5ea6e3 8005120: Compiler warnings in socket transport native code
jzavgren
parents: 14342
diff changeset
   555
    socklen_t socketLen;
47121
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   556
    int err = JDWPTRANSPORT_ERROR_NONE;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
    struct sockaddr_in socket;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
    jlong startTime = (jlong)0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
     * Use a default handshake timeout if not specified - this avoids an indefinite
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
     * hang in cases where something other than a debugger connects to our port.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
    if (handshakeTimeout == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
        handshakeTimeout = 2000;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
    do {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
         * If there is an accept timeout then we put the socket in non-blocking
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
         * mode and poll for a connection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
        if (acceptTimeout > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
            int rv;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
            dbgsysConfigureBlocking(serverSocketFD, JNI_FALSE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
            startTime = dbgsysCurrentTimeMillis();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
            rv = dbgsysPoll(serverSocketFD, JNI_TRUE, JNI_FALSE, (long)acceptTimeout);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
            if (rv <= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
                /* set the last error here as could be overridden by configureBlocking */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
                if (rv == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
                    setLastError(JDWPTRANSPORT_ERROR_IO_ERROR, "poll failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
                /* restore blocking state */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
                dbgsysConfigureBlocking(serverSocketFD, JNI_TRUE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
                if (rv == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
                    RETURN_ERROR(JDWPTRANSPORT_ERROR_TIMEOUT, "timed out waiting for connection");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
                    return JDWPTRANSPORT_ERROR_IO_ERROR;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
         * Accept the connection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
        memset((void *)&socket,0,sizeof(struct sockaddr_in));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
        socketLen = sizeof(socket);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
        socketFD = dbgsysAccept(serverSocketFD,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
                                (struct sockaddr *)&socket,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
                                &socketLen);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
        /* set the last error here as could be overridden by configureBlocking */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
        if (socketFD < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
            setLastError(JDWPTRANSPORT_ERROR_IO_ERROR, "accept failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
         * Restore the blocking state - note that the accepted socket may be in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
         * blocking or non-blocking mode (platform dependent). However as there
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
         * is a handshake timeout set then it will go into non-blocking mode
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
         * anyway for the handshake.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
        if (acceptTimeout > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
            dbgsysConfigureBlocking(serverSocketFD, JNI_TRUE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
        if (socketFD < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
            return JDWPTRANSPORT_ERROR_IO_ERROR;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
47121
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   618
        /*
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   619
         * version >= JDWPTRANSPORT_VERSION_1_1:
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   620
         * 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
   621
         */
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   622
        if (_peers_cnt > 0) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   623
            if (!isPeerAllowed(&socket)) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   624
                char ebuf[64] = { 0 };
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   625
                char buf[INET_ADDRSTRLEN] = { 0 };
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   626
                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
   627
                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
   628
                        (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
   629
                dbgsysSocketClose(socketFD);
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   630
                socketFD = -1;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   631
                err = JDWPTRANSPORT_ERROR_ILLEGAL_ARGUMENT;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   632
                setLastError(err, ebuf);
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
        }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   635
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   636
        if (socketFD > 0) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   637
          /* handshake with the debugger */
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   638
          err = handshake(socketFD, handshakeTimeout);
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   639
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
         * If the handshake fails then close the connection. If there if an accept
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
         * timeout then we must adjust the timeout for the next poll.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
         */
47121
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   645
        if (err != JDWPTRANSPORT_ERROR_NONE) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
            fprintf(stderr, "Debugger failed to attach: %s\n", getLastError());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
            dbgsysSocketClose(socketFD);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
            socketFD = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
            if (acceptTimeout > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
                long endTime = dbgsysCurrentTimeMillis();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
                acceptTimeout -= (endTime - startTime);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
                if (acceptTimeout <= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
                    setLastError(JDWPTRANSPORT_ERROR_IO_ERROR,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
                        "timeout waiting for debugger to connect");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
                    return JDWPTRANSPORT_ERROR_IO_ERROR;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
    } while (socketFD < 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
    return JDWPTRANSPORT_ERROR_NONE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
static jdwpTransportError JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
socketTransport_stopListening(jdwpTransportEnv *env)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
    if (serverSocketFD < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
        RETURN_ERROR(JDWPTRANSPORT_ERROR_ILLEGAL_STATE, "connection not open");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
    if (dbgsysSocketClose(serverSocketFD) < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
        RETURN_IO_ERROR("close failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
    serverSocketFD = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
    return JDWPTRANSPORT_ERROR_NONE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
static jdwpTransportError JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
socketTransport_attach(jdwpTransportEnv* env, const char* addressString, jlong attachTimeout,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
                       jlong handshakeTimeout)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
    struct sockaddr_in sa;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
    int err;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
    if (addressString == NULL || addressString[0] == '\0') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
        RETURN_ERROR(JDWPTRANSPORT_ERROR_ILLEGAL_ARGUMENT, "address is missing");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
24503
fe24408289d7 8041435: Make JDWP socket connector accept only local connections by default
dsamersoff
parents: 23010
diff changeset
   688
    err = parseAddress(addressString, &sa);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
    if (err != JDWPTRANSPORT_ERROR_NONE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
        return err;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
    socketFD = dbgsysSocket(AF_INET, SOCK_STREAM, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
    if (socketFD < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
        RETURN_IO_ERROR("unable to create socket");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
46091
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   698
    err = setOptionsCommon(socketFD);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
    if (err) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
        return err;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
    /*
46091
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   704
     * We don't call setReuseAddrOption() for the non-server socket
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   705
     * 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
   706
     * ports then we should retry the dbgsysConnect() a few times.
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   707
     */
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   708
a6f2dc91ba56 8182757: JDWP: Socket Transport handshake hangs on Solaris
gthornbr
parents: 36134
diff changeset
   709
    /*
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
     * To do a timed connect we make the socket non-blocking
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
     * and poll with a timeout;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
    if (attachTimeout > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
        dbgsysConfigureBlocking(socketFD, JNI_FALSE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
    err = dbgsysConnect(socketFD, (struct sockaddr *)&sa, sizeof(sa));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
    if (err == DBG_EINPROGRESS && attachTimeout > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
        err = dbgsysFinishConnect(socketFD, (long)attachTimeout);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
        if (err == DBG_ETIMEOUT) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
            dbgsysConfigureBlocking(socketFD, JNI_TRUE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
            RETURN_ERROR(JDWPTRANSPORT_ERROR_TIMEOUT, "connect timed out");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
    if (err < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
        RETURN_IO_ERROR("connect failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
    if (attachTimeout > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
        dbgsysConfigureBlocking(socketFD, JNI_TRUE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
    err = handshake(socketFD, handshakeTimeout);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
    if (err) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
        dbgsysSocketClose(socketFD);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
        socketFD = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
        return err;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
    return JDWPTRANSPORT_ERROR_NONE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
static jboolean JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
socketTransport_isOpen(jdwpTransportEnv* env)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
    if (socketFD >= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
        return JNI_TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
        return JNI_FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
static jdwpTransportError JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
socketTransport_close(jdwpTransportEnv* env)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
    int fd = socketFD;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
    socketFD = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
    if (fd < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
        return JDWPTRANSPORT_ERROR_NONE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
    }
22605
dba3d6b22818 8031581: PPC64: Addons and fixes for AIX to pass the jdk regression tests
simonis
parents: 15274
diff changeset
   763
#ifdef _AIX
dba3d6b22818 8031581: PPC64: Addons and fixes for AIX to pass the jdk regression tests
simonis
parents: 15274
diff changeset
   764
    /*
dba3d6b22818 8031581: PPC64: Addons and fixes for AIX to pass the jdk regression tests
simonis
parents: 15274
diff changeset
   765
      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
   766
      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
   767
      ...
dba3d6b22818 8031581: PPC64: Addons and fixes for AIX to pass the jdk regression tests
simonis
parents: 15274
diff changeset
   768
      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
   769
      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
   770
      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
   771
      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
   772
      ...
dba3d6b22818 8031581: PPC64: Addons and fixes for AIX to pass the jdk regression tests
simonis
parents: 15274
diff changeset
   773
    */
dba3d6b22818 8031581: PPC64: Addons and fixes for AIX to pass the jdk regression tests
simonis
parents: 15274
diff changeset
   774
    shutdown(fd, 2);
dba3d6b22818 8031581: PPC64: Addons and fixes for AIX to pass the jdk regression tests
simonis
parents: 15274
diff changeset
   775
#endif
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
    if (dbgsysSocketClose(fd) < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
         * 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
   779
         * any subsequent close will likely fail as well.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
        RETURN_IO_ERROR("close failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
    return JDWPTRANSPORT_ERROR_NONE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
static jdwpTransportError JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
socketTransport_writePacket(jdwpTransportEnv* env, const jdwpPacket *packet)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
    jint len, data_len, id;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
     * room for header and up to MAX_DATA_SIZE data bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
    char header[HEADER_SIZE + MAX_DATA_SIZE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
    jbyte *data;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
    /* packet can't be null */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
    if (packet == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
        RETURN_ERROR(JDWPTRANSPORT_ERROR_ILLEGAL_ARGUMENT, "packet is NULL");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
    len = packet->type.cmd.len;         /* includes header */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
    data_len = len - HEADER_SIZE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
    /* bad packet */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
    if (data_len < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
        RETURN_ERROR(JDWPTRANSPORT_ERROR_ILLEGAL_ARGUMENT, "invalid length");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
    /* prepare the header for transmission */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
    len = (jint)dbgsysHostToNetworkLong(len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
    id = (jint)dbgsysHostToNetworkLong(packet->type.cmd.id);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
    memcpy(header + 0, &len, 4);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
    memcpy(header + 4, &id, 4);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
    header[8] = packet->type.cmd.flags;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
    if (packet->type.cmd.flags & JDWPTRANSPORT_FLAGS_REPLY) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
        jshort errorCode =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
            dbgsysHostToNetworkShort(packet->type.reply.errorCode);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
        memcpy(header + 9, &errorCode, 2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
        header[9] = packet->type.cmd.cmdSet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
        header[10] = packet->type.cmd.cmd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
    data = packet->type.cmd.data;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
    /* Do one send for short packets, two for longer ones */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
    if (data_len <= MAX_DATA_SIZE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
        memcpy(header + HEADER_SIZE, data, data_len);
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
   829
        if (send_fully(socketFD, (char *)&header, HEADER_SIZE + data_len) !=
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
            HEADER_SIZE + data_len) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
            RETURN_IO_ERROR("send failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
        memcpy(header + HEADER_SIZE, data, MAX_DATA_SIZE);
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
   835
        if (send_fully(socketFD, (char *)&header, HEADER_SIZE + MAX_DATA_SIZE) !=
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
            HEADER_SIZE + MAX_DATA_SIZE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
            RETURN_IO_ERROR("send failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
        /* 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
   840
        if (send_fully(socketFD, (char *)data + MAX_DATA_SIZE,
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
   841
                       data_len - MAX_DATA_SIZE) != data_len - MAX_DATA_SIZE) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
            RETURN_IO_ERROR("send failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
    return JDWPTRANSPORT_ERROR_NONE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
static jint
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
recv_fully(int f, char *buf, int len)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
    int nbytes = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
    while (nbytes < len) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
        int res = dbgsysRecv(f, buf + nbytes, len - nbytes, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
        if (res < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
            return res;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
        } else if (res == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
            break; /* eof, return nbytes which is less than len */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
        nbytes += res;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
    return nbytes;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
   865
jint
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
   866
send_fully(int f, char *buf, int len)
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
   867
{
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
   868
    int nbytes = 0;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
   869
    while (nbytes < len) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
   870
        int res = dbgsysSend(f, buf + nbytes, len - nbytes, 0);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
   871
        if (res < 0) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
   872
            return res;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
   873
        } else if (res == 0) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
   874
            break; /* eof, return nbytes which is less than len */
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
   875
        }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
   876
        nbytes += res;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
   877
    }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
   878
    return nbytes;
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
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
static jdwpTransportError JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
socketTransport_readPacket(jdwpTransportEnv* env, jdwpPacket* packet) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
    jint length, data_len;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
    jint n;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
    /* packet can't be null */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
    if (packet == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
        RETURN_ERROR(JDWPTRANSPORT_ERROR_ILLEGAL_ARGUMENT, "packet is null");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
    /* read the length field */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
    n = recv_fully(socketFD, (char *)&length, sizeof(jint));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
    /* check for EOF */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
    if (n == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
        packet->type.cmd.len = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
        return JDWPTRANSPORT_ERROR_NONE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
    if (n != sizeof(jint)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
        RETURN_RECV_ERROR(n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
    length = (jint)dbgsysNetworkToHostLong(length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
    packet->type.cmd.len = length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
47121
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   907
    n = recv_fully(socketFD,(char *)&(packet->type.cmd.id), sizeof(jint));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
    if (n < (int)sizeof(jint)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
        RETURN_RECV_ERROR(n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
    packet->type.cmd.id = (jint)dbgsysNetworkToHostLong(packet->type.cmd.id);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
47121
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   914
    n = recv_fully(socketFD,(char *)&(packet->type.cmd.flags), sizeof(jbyte));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
    if (n < (int)sizeof(jbyte)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
        RETURN_RECV_ERROR(n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
    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
   920
        n = recv_fully(socketFD,(char *)&(packet->type.reply.errorCode), sizeof(jbyte));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
        if (n < (int)sizeof(jshort)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
            RETURN_RECV_ERROR(n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
        /* FIXME - should the error be converted to host order?? */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
    } else {
47121
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   929
        n = recv_fully(socketFD,(char *)&(packet->type.cmd.cmdSet), sizeof(jbyte));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
        if (n < (int)sizeof(jbyte)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
            RETURN_RECV_ERROR(n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
47121
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   934
        n = recv_fully(socketFD,(char *)&(packet->type.cmd.cmd), sizeof(jbyte));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
        if (n < (int)sizeof(jbyte)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
            RETURN_RECV_ERROR(n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
    data_len = length - ((sizeof(jint) * 2) + (sizeof(jbyte) * 3));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
90ce3da70b43 Initial load
duke
parents:
diff changeset
   942
    if (data_len < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
        setLastError(0, "Badly formed packet received - invalid length");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
        return JDWPTRANSPORT_ERROR_IO_ERROR;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
    } else if (data_len == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
        packet->type.cmd.data = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
        packet->type.cmd.data= (*callback->alloc)(data_len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
        if (packet->type.cmd.data == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
            RETURN_ERROR(JDWPTRANSPORT_ERROR_OUT_OF_MEMORY, "out of memory");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
        n = recv_fully(socketFD,(char *)packet->type.cmd.data, data_len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
        if (n < data_len) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
            (*callback->free)(packet->type.cmd.data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
            RETURN_RECV_ERROR(n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
    return JDWPTRANSPORT_ERROR_NONE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
static jdwpTransportError JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
socketTransport_getLastError(jdwpTransportEnv* env, char** msgP) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
    char *msg = (char *)dbgsysTlsGet(tlsIndex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
    if (msg == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
        return JDWPTRANSPORT_ERROR_MSG_NOT_AVAILABLE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
    }
896
5c02031316bf 6725543: Compiler warnings in serviceability native code
ohair
parents: 2
diff changeset
   970
    *msgP = (*callback->alloc)((int)strlen(msg)+1);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
    if (*msgP == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
        return JDWPTRANSPORT_ERROR_OUT_OF_MEMORY;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
    strcpy(*msgP, msg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
    return JDWPTRANSPORT_ERROR_NONE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
47121
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   978
static jdwpTransportError JNICALL
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   979
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
   980
    const char* allowed_peers = NULL;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   981
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   982
    if (cfg == NULL) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   983
        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
   984
                     "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
   985
    }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   986
    allowed_peers = cfg->allowed_peers;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   987
    _peers_cnt = 0;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   988
    if (allowed_peers != NULL) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   989
        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
   990
        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
   991
            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
   992
            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
   993
                         "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
   994
        } else if (*allowed_peers == '*') {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   995
            if (len != 1) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   996
                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
   997
                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
   998
                             "allow option '*' cannot be expanded");
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
   999
            }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1000
        } else {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1001
            int err = parseAllowedPeers(allowed_peers);
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1002
            if (err != JDWPTRANSPORT_ERROR_NONE) {
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1003
                return err;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1004
            }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1005
        }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1006
    }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1007
    return JDWPTRANSPORT_ERROR_NONE;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1008
}
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1009
36134
63514f38c74c 8150497: 32 jshell tests failed on Windows 32 bit
erikj
parents: 25859
diff changeset
  1010
jint JNICALL
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1011
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
  1012
                     jint version, jdwpTransportEnv** env)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
{
47121
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1014
    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
  1015
        version > JDWPTRANSPORT_VERSION_1_1) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1016
        return JNI_EVERSION;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1017
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1018
    if (initialized) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1019
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1020
         * This library doesn't support multiple environments (yet)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1022
        return JNI_EEXIST;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1023
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1024
    initialized = JNI_TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
    jvm = vm;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1026
    callback = cbTablePtr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1027
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1028
    /* initialize interface table */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1029
    interface.GetCapabilities = &socketTransport_getCapabilities;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1030
    interface.Attach = &socketTransport_attach;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
    interface.StartListening = &socketTransport_startListening;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
    interface.StopListening = &socketTransport_stopListening;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
    interface.Accept = &socketTransport_accept;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
    interface.IsOpen = &socketTransport_isOpen;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1035
    interface.Close = &socketTransport_close;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1036
    interface.ReadPacket = &socketTransport_readPacket;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1037
    interface.WritePacket = &socketTransport_writePacket;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1038
    interface.GetLastError = &socketTransport_getLastError;
47121
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1039
    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
  1040
        interface.SetTransportConfiguration = &socketTransport_setConfiguration;
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1041
    }
3aceb4fc0e84 8061228: Allow JDWP socket connector to accept connections from certain ip addresses only
dsamersoff
parents: 46091
diff changeset
  1042
    *env = &single_env;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1043
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1044
    /* initialized TLS */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1045
    tlsIndex = dbgsysTlsAlloc();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1046
    return JNI_OK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1047
}