jdk/src/windows/native/java/net/NetworkInterface.c
author chegar
Wed, 30 Oct 2013 14:41:42 +0000
changeset 21409 246ccfb4a0f0
parent 20851 9f284cf7836b
child 22646 5fa3669fd35d
permissions -rw-r--r--
8026880: NetworkInterface native initializing code should check fieldID values Reviewed-by: alanb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
14342
8435a30053c1 7197491: update copyright year to match last edit in jdk8 jdk repository
alanb
parents: 13245
diff changeset
     2
 * Copyright (c) 2000, 2012, 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: 1247
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: 1247
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: 1247
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1247
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1247
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
#include <stdlib.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
#include <windows.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
#include <winsock2.h>           /* needed for htonl */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
#include <iprtrmib.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
#include <assert.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
#include "java_net_NetworkInterface.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
#include "jni_util.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
#include "NetworkInterface.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * Windows implementation of the java.net.NetworkInterface native methods.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * This module provides the implementations of getAll, getByName, getByIndex,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * and getByAddress.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * Interfaces and addresses are enumerated using the IP helper routines
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * GetIfTable, GetIfAddrTable resp. These routines are available on Windows
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * 98, NT SP+4, 2000, and XP. They are also available on Windows 95 if
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * IE is upgraded to 5.x.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * Windows does not have any standard for device names so we are forced
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * to use our own convention which is based on the normal Unix naming
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * convention ("lo" for the loopback, eth0, eth1, .. for ethernet devices,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * tr0, tr1, .. for token ring, and so on). This convention gives us
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * consistency across multiple Windows editions and also consistency with
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * Solaris/Linux device names. Note that we always enumerate in index
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * order and this ensures consistent device number across invocations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
/* various JNI ids */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
jclass ni_class;            /* NetworkInterface */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
jmethodID ni_ctor;          /* NetworkInterface() */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
jfieldID ni_indexID;        /* NetworkInterface.index */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
jfieldID ni_addrsID;        /* NetworkInterface.addrs */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
jfieldID ni_bindsID;        /* NetworkInterface.bindings */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
jfieldID ni_nameID;         /* NetworkInterface.name */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
jfieldID ni_displayNameID;  /* NetworkInterface.displayName */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
jfieldID ni_childsID;       /* NetworkInterface.childs */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
jclass ni_iacls;            /* InetAddress */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
jclass ni_ia4cls;           /* Inet4Address */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
jmethodID ni_ia4Ctor;       /* Inet4Address() */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
jclass ni_ia6cls;           /* Inet6Address */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
jmethodID ni_ia6ctrID;      /* Inet6Address() */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
jclass ni_ibcls;            /* InterfaceAddress */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
jmethodID ni_ibctrID;       /* InterfaceAddress() */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
jfieldID ni_ibaddressID;        /* InterfaceAddress.address */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
jfieldID ni_ibbroadcastID;      /* InterfaceAddress.broadcast */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
jfieldID ni_ibmaskID;           /* InterfaceAddress.maskLength */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 * Support routines to free netif and netaddr lists
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
void free_netif(netif *netifP) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    netif *curr = netifP;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    while (curr != NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
        if (curr->name != NULL)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
            free(curr->name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        if (curr->displayName != NULL)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
            free(curr->displayName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        if (curr->addrs != NULL)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
            free_netaddr (curr->addrs);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        netifP = netifP->next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        free(curr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
        curr = netifP;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
void free_netaddr(netaddr *netaddrP) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    netaddr *curr = netaddrP;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    while (curr != NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        netaddrP = netaddrP->next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
        free(curr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        curr = netaddrP;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
 * Returns the interface structure from the table with the matching index.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
MIB_IFROW *getIF(jint index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
    MIB_IFTABLE *tableP;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    MIB_IFROW *ifrowP, *ret = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    ULONG size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    DWORD i, count;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    jint ifindex;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * Ask the IP Helper library to enumerate the adapters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
    size = sizeof(MIB_IFTABLE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    tableP = (MIB_IFTABLE *)malloc(size);
17193
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   124
    if(tableP == NULL)
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   125
        return NULL;
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   126
9003
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   127
    count = GetIfTable(tableP, &size, TRUE);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
    if (count == ERROR_INSUFFICIENT_BUFFER || count == ERROR_BUFFER_OVERFLOW) {
17193
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   129
        MIB_IFTABLE* newTableP =  (MIB_IFTABLE *)realloc(tableP, size);
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   130
        if (newTableP == NULL) {
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   131
            free(tableP);
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   132
            return NULL;
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   133
        }
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   134
        tableP = newTableP;
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   135
9003
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   136
        count = GetIfTable(tableP, &size, TRUE);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    if (count != NO_ERROR) {
17193
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   140
        free(tableP);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
        return NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
17193
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   144
    {
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   145
    ifrowP = tableP->table;
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   146
    for (i=0; i<tableP->dwNumEntries; i++) {
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   147
    /*
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   148
     * Warning: the real index is obtained by GetFriendlyIfIndex()
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   149
    */
9003
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   150
        ifindex = GetFriendlyIfIndex(ifrowP->dwIndex);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        if (ifindex == index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
          /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
           * Create a copy of the entry so that we can free the table.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
           */
17193
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   155
            ret = (MIB_IFROW *) malloc(sizeof(MIB_IFROW));
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   156
            if (ret == NULL) {
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   157
                free(tableP);
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   158
                return NULL;
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   159
            }
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   160
            memcpy(ret, ifrowP, sizeof(MIB_IFROW));
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   161
            break;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
        /* onto the next interface */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        ifrowP++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
      }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
      free(tableP);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
    return ret;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
 * Enumerate network interfaces using IP Helper Library routine GetIfTable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
 * We use GetIfTable rather than other IP helper routines because it's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
 * available on 98 & NT SP4+.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
 * Returns the number of interfaces found or -1 if error. If no error
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
 * occurs then netifPP be returned as list of netif structures or NULL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
 * if no interfaces are found.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
 */
9003
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   181
int enumInterfaces(JNIEnv *env, netif **netifPP)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
    MIB_IFTABLE *tableP;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
    MIB_IFROW *ifrowP;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
    ULONG size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
    DWORD ret;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
    int count;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
    netif *netifP;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
    DWORD i;
14768
8800c12ef525 6512101: Incorrect encoding in NetworkInterface.getDisplayName()
dingxmin
parents: 14342
diff changeset
   190
    int lo=0, eth=0, tr=0, fddi=0, ppp=0, sl=0, wlan=0, net=0, wlen=0;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     * Ask the IP Helper library to enumerate the adapters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
    size = sizeof(MIB_IFTABLE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
    tableP = (MIB_IFTABLE *)malloc(size);
17193
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   197
    if (tableP == NULL) {
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   198
        JNU_ThrowOutOfMemoryError(env, "Native heap allocation failure");
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   199
        return -1;
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   200
    }
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   201
9003
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   202
    ret = GetIfTable(tableP, &size, TRUE);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
    if (ret == ERROR_INSUFFICIENT_BUFFER || ret == ERROR_BUFFER_OVERFLOW) {
17193
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   204
        MIB_IFTABLE * newTableP = (MIB_IFTABLE *)realloc(tableP, size);
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   205
        if (newTableP == NULL) {
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   206
            free(tableP);
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   207
            JNU_ThrowOutOfMemoryError(env, "Native heap allocation failure");
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   208
            return -1;
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   209
        }
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   210
        tableP = newTableP;
9003
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   211
        ret = GetIfTable(tableP, &size, TRUE);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
    if (ret != NO_ERROR) {
17193
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   215
        free(tableP);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
        JNU_ThrowByName(env, "java/lang/Error",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
                "IP Helper Library GetIfTable function failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
     * Iterate through the list of adapters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
    count = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
    netifP = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
    ifrowP = tableP->table;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
    for (i=0; i<tableP->dwNumEntries; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
        char dev_name[8];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
        netif *curr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
         * Generate a name for the device as Windows doesn't have any
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
         * real concept of a device name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
        switch (ifrowP->dwType) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
            case MIB_IF_TYPE_ETHERNET:
12542
31190502e9e3 7158636: InterfaceAddress.getBroadcast() returns invalid broadcast address on WLAN
khazra
parents: 10417
diff changeset
   240
                _snprintf_s(dev_name, 8, _TRUNCATE, "eth%d", eth++);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
            case MIB_IF_TYPE_TOKENRING:
12542
31190502e9e3 7158636: InterfaceAddress.getBroadcast() returns invalid broadcast address on WLAN
khazra
parents: 10417
diff changeset
   244
                _snprintf_s(dev_name, 8, _TRUNCATE, "tr%d", tr++);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
            case MIB_IF_TYPE_FDDI:
12542
31190502e9e3 7158636: InterfaceAddress.getBroadcast() returns invalid broadcast address on WLAN
khazra
parents: 10417
diff changeset
   248
                _snprintf_s(dev_name, 8, _TRUNCATE, "fddi%d", fddi++);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
            case MIB_IF_TYPE_LOOPBACK:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
                /* There should only be only IPv4 loopback address */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
                if (lo > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
                    continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
                }
12542
31190502e9e3 7158636: InterfaceAddress.getBroadcast() returns invalid broadcast address on WLAN
khazra
parents: 10417
diff changeset
   256
                strncpy_s(dev_name, 8, "lo", _TRUNCATE);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
                lo++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
            case MIB_IF_TYPE_PPP:
12542
31190502e9e3 7158636: InterfaceAddress.getBroadcast() returns invalid broadcast address on WLAN
khazra
parents: 10417
diff changeset
   261
                _snprintf_s(dev_name, 8, _TRUNCATE, "ppp%d", ppp++);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
            case MIB_IF_TYPE_SLIP:
12542
31190502e9e3 7158636: InterfaceAddress.getBroadcast() returns invalid broadcast address on WLAN
khazra
parents: 10417
diff changeset
   265
                _snprintf_s(dev_name, 8, _TRUNCATE, "sl%d", sl++);
31190502e9e3 7158636: InterfaceAddress.getBroadcast() returns invalid broadcast address on WLAN
khazra
parents: 10417
diff changeset
   266
                break;
31190502e9e3 7158636: InterfaceAddress.getBroadcast() returns invalid broadcast address on WLAN
khazra
parents: 10417
diff changeset
   267
31190502e9e3 7158636: InterfaceAddress.getBroadcast() returns invalid broadcast address on WLAN
khazra
parents: 10417
diff changeset
   268
            case IF_TYPE_IEEE80211:
31190502e9e3 7158636: InterfaceAddress.getBroadcast() returns invalid broadcast address on WLAN
khazra
parents: 10417
diff changeset
   269
                _snprintf_s(dev_name, 8, _TRUNCATE, "wlan%d", wlan++);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
            default:
12542
31190502e9e3 7158636: InterfaceAddress.getBroadcast() returns invalid broadcast address on WLAN
khazra
parents: 10417
diff changeset
   273
                _snprintf_s(dev_name, 8, _TRUNCATE, "net%d", net++);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
         * Allocate a netif structure and space for the name and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
         * display name (description in this case).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
        curr = (netif *)calloc(1, sizeof(netif));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
        if (curr != NULL) {
14768
8800c12ef525 6512101: Incorrect encoding in NetworkInterface.getDisplayName()
dingxmin
parents: 14342
diff changeset
   282
            wlen = MultiByteToWideChar(CP_OEMCP, 0, ifrowP->bDescr,
8800c12ef525 6512101: Incorrect encoding in NetworkInterface.getDisplayName()
dingxmin
parents: 14342
diff changeset
   283
                       ifrowP->dwDescrLen, NULL, 0);
8800c12ef525 6512101: Incorrect encoding in NetworkInterface.getDisplayName()
dingxmin
parents: 14342
diff changeset
   284
            if(wlen == 0) {
8800c12ef525 6512101: Incorrect encoding in NetworkInterface.getDisplayName()
dingxmin
parents: 14342
diff changeset
   285
                // MultiByteToWideChar should not fail
8800c12ef525 6512101: Incorrect encoding in NetworkInterface.getDisplayName()
dingxmin
parents: 14342
diff changeset
   286
                // But in rare case it fails, we allow 'char' to be displayed
8800c12ef525 6512101: Incorrect encoding in NetworkInterface.getDisplayName()
dingxmin
parents: 14342
diff changeset
   287
                curr->displayName = (char *)malloc(ifrowP->dwDescrLen + 1);
8800c12ef525 6512101: Incorrect encoding in NetworkInterface.getDisplayName()
dingxmin
parents: 14342
diff changeset
   288
            } else {
8800c12ef525 6512101: Incorrect encoding in NetworkInterface.getDisplayName()
dingxmin
parents: 14342
diff changeset
   289
                curr->displayName = (wchar_t *)malloc(wlen*(sizeof(wchar_t))+1);
8800c12ef525 6512101: Incorrect encoding in NetworkInterface.getDisplayName()
dingxmin
parents: 14342
diff changeset
   290
            }
8800c12ef525 6512101: Incorrect encoding in NetworkInterface.getDisplayName()
dingxmin
parents: 14342
diff changeset
   291
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
            curr->name = (char *)malloc(strlen(dev_name) + 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
            if (curr->name == NULL || curr->displayName == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
                if (curr->name) free(curr->name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
                if (curr->displayName) free(curr->displayName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
                curr = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
        if (curr == NULL) {
13245
7ab3ef5b9520 7181353: Update error message to distinguish native OOM and java OOM in net
zhouyx
parents: 12542
diff changeset
   301
            JNU_ThrowOutOfMemoryError(env, "Native heap allocation failure");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
            free_netif(netifP);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
            free(tableP);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
            return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
         * Populate the interface. Note that we need to convert the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
         * index into its "friendly" value as otherwise we will expose
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
         * 32-bit numbers as index values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
        strcpy(curr->name, dev_name);
14768
8800c12ef525 6512101: Incorrect encoding in NetworkInterface.getDisplayName()
dingxmin
parents: 14342
diff changeset
   313
        if (wlen == 0) {
8800c12ef525 6512101: Incorrect encoding in NetworkInterface.getDisplayName()
dingxmin
parents: 14342
diff changeset
   314
            // display char type in case of MultiByteToWideChar failure
8800c12ef525 6512101: Incorrect encoding in NetworkInterface.getDisplayName()
dingxmin
parents: 14342
diff changeset
   315
            strncpy(curr->displayName, ifrowP->bDescr, ifrowP->dwDescrLen);
8800c12ef525 6512101: Incorrect encoding in NetworkInterface.getDisplayName()
dingxmin
parents: 14342
diff changeset
   316
            curr->displayName[ifrowP->dwDescrLen] = '\0';
8800c12ef525 6512101: Incorrect encoding in NetworkInterface.getDisplayName()
dingxmin
parents: 14342
diff changeset
   317
        } else {
8800c12ef525 6512101: Incorrect encoding in NetworkInterface.getDisplayName()
dingxmin
parents: 14342
diff changeset
   318
            // call MultiByteToWideChar again to fill curr->displayName
8800c12ef525 6512101: Incorrect encoding in NetworkInterface.getDisplayName()
dingxmin
parents: 14342
diff changeset
   319
            // it should not fail, because we have called it once before
8800c12ef525 6512101: Incorrect encoding in NetworkInterface.getDisplayName()
dingxmin
parents: 14342
diff changeset
   320
            if (MultiByteToWideChar(CP_OEMCP, 0, ifrowP->bDescr,
8800c12ef525 6512101: Incorrect encoding in NetworkInterface.getDisplayName()
dingxmin
parents: 14342
diff changeset
   321
                   ifrowP->dwDescrLen, curr->displayName, wlen) == 0) {
8800c12ef525 6512101: Incorrect encoding in NetworkInterface.getDisplayName()
dingxmin
parents: 14342
diff changeset
   322
                JNU_ThrowByName(env, "java/lang/Error",
8800c12ef525 6512101: Incorrect encoding in NetworkInterface.getDisplayName()
dingxmin
parents: 14342
diff changeset
   323
                       "Cannot get multibyte char for interface display name");
8800c12ef525 6512101: Incorrect encoding in NetworkInterface.getDisplayName()
dingxmin
parents: 14342
diff changeset
   324
                free_netif(netifP);
8800c12ef525 6512101: Incorrect encoding in NetworkInterface.getDisplayName()
dingxmin
parents: 14342
diff changeset
   325
                free(tableP);
8800c12ef525 6512101: Incorrect encoding in NetworkInterface.getDisplayName()
dingxmin
parents: 14342
diff changeset
   326
                free(curr->name);
8800c12ef525 6512101: Incorrect encoding in NetworkInterface.getDisplayName()
dingxmin
parents: 14342
diff changeset
   327
                free(curr->displayName);
8800c12ef525 6512101: Incorrect encoding in NetworkInterface.getDisplayName()
dingxmin
parents: 14342
diff changeset
   328
                free(curr);
8800c12ef525 6512101: Incorrect encoding in NetworkInterface.getDisplayName()
dingxmin
parents: 14342
diff changeset
   329
                return -1;
8800c12ef525 6512101: Incorrect encoding in NetworkInterface.getDisplayName()
dingxmin
parents: 14342
diff changeset
   330
            } else {
8800c12ef525 6512101: Incorrect encoding in NetworkInterface.getDisplayName()
dingxmin
parents: 14342
diff changeset
   331
                curr->displayName[wlen*(sizeof(wchar_t))] = '\0';
8800c12ef525 6512101: Incorrect encoding in NetworkInterface.getDisplayName()
dingxmin
parents: 14342
diff changeset
   332
                curr->dNameIsUnicode = TRUE;
8800c12ef525 6512101: Incorrect encoding in NetworkInterface.getDisplayName()
dingxmin
parents: 14342
diff changeset
   333
            }
8800c12ef525 6512101: Incorrect encoding in NetworkInterface.getDisplayName()
dingxmin
parents: 14342
diff changeset
   334
        }
8800c12ef525 6512101: Incorrect encoding in NetworkInterface.getDisplayName()
dingxmin
parents: 14342
diff changeset
   335
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
        curr->dwIndex = ifrowP->dwIndex;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
        curr->ifType = ifrowP->dwType;
9003
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   338
        curr->index = GetFriendlyIfIndex(ifrowP->dwIndex);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
         * Put the interface at tail of list as GetIfTable(,,TRUE) is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
         * returning the interfaces in index order.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
        count++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
        if (netifP == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
            netifP = curr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
            netif *tail = netifP;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
            while (tail->next != NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
                tail = tail->next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
            tail->next = curr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
        /* onto the next interface */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
        ifrowP++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
     * Free the interface table and return the interface list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
    if (tableP) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
        free(tableP);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
    *netifPP = netifP;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
    return count;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
 * Enumerate the IP addresses on an interface using the IP helper library
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
 * routine GetIfAddrTable and matching based on the index name. There are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
 * more efficient routines but we use GetIfAddrTable because it's avaliable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
 * on 98 and NT.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
 * Returns the count of addresses, or -1 if error. If no error occurs then
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
 * netaddrPP will return a list of netaddr structures with the IP addresses.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
int enumAddresses_win(JNIEnv *env, netif *netifP, netaddr **netaddrPP)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
    MIB_IPADDRTABLE *tableP;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
    ULONG size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
    DWORD ret;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
    DWORD i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
    netaddr *netaddrP;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
    int count = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
    unsigned long mask;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
     * Use GetIpAddrTable to enumerate the IP Addresses
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
    size = sizeof(MIB_IPADDRTABLE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
    tableP = (MIB_IPADDRTABLE *)malloc(size);
17193
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   393
    if (tableP == NULL) {
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   394
        JNU_ThrowOutOfMemoryError(env, "Native heap allocation failure");
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   395
        return -1;
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   396
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
9003
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   398
    ret = GetIpAddrTable(tableP, &size, FALSE);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
    if (ret == ERROR_INSUFFICIENT_BUFFER || ret == ERROR_BUFFER_OVERFLOW) {
17193
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   400
        MIB_IPADDRTABLE * newTableP = (MIB_IPADDRTABLE *)realloc(tableP, size);
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   401
        if (newTableP == NULL) {
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   402
            free(tableP);
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   403
            JNU_ThrowOutOfMemoryError(env, "Native heap allocation failure");
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   404
            return -1;
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   405
        }
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   406
        tableP = newTableP;
8b561b7fb87a 8012108: Memory leak in jdk/src/windows/native/java/net/NetworkInterface_winXP.c
jzavgren
parents: 16870
diff changeset
   407
9003
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   408
        ret = GetIpAddrTable(tableP, &size, FALSE);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
    if (ret != NO_ERROR) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
        if (tableP) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
            free(tableP);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
        JNU_ThrowByName(env, "java/lang/Error",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
                "IP Helper Library GetIpAddrTable function failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
     * Iterate through the table to find the addresses with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
     * matching dwIndex. Ignore 0.0.0.0 addresses.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
    count = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
    netaddrP = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
    i = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
    while (i<tableP->dwNumEntries) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
        if (tableP->table[i].dwIndex == netifP->dwIndex &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
            tableP->table[i].dwAddr != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
            netaddr *curr = (netaddr *)malloc(sizeof(netaddr));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
            if (curr == NULL) {
13245
7ab3ef5b9520 7181353: Update error message to distinguish native OOM and java OOM in net
zhouyx
parents: 12542
diff changeset
   433
                JNU_ThrowOutOfMemoryError(env, "Native heap allocation failure");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
                free_netaddr(netaddrP);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
                free(tableP);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
                return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
            curr->addr.him4.sin_family = AF_INET;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
            curr->addr.him4.sin_addr.s_addr = tableP->table[i].dwAddr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
             * Get netmask / broadcast address
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
            switch (netifP->ifType) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
            case MIB_IF_TYPE_ETHERNET:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
            case MIB_IF_TYPE_TOKENRING:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
            case MIB_IF_TYPE_FDDI:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
            case MIB_IF_TYPE_LOOPBACK:
12542
31190502e9e3 7158636: InterfaceAddress.getBroadcast() returns invalid broadcast address on WLAN
khazra
parents: 10417
diff changeset
   449
            case IF_TYPE_IEEE80211:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
              /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
               * Contrary to what it seems to indicate, dwBCastAddr doesn't
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
               * contain the broadcast address but 0 or 1 depending on whether
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
               * the broadcast address should set the bits of the host part
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
               * to 0 or 1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
               * Yes, I know it's stupid, but what can I say, it's MSFTs API.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
               */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
              curr->brdcast.him4.sin_family = AF_INET;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
              if (tableP->table[i].dwBCastAddr == 1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
                curr->brdcast.him4.sin_addr.s_addr = (tableP->table[i].dwAddr & tableP->table[i].dwMask) | (0xffffffff ^ tableP->table[i].dwMask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
              else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
                curr->brdcast.him4.sin_addr.s_addr = (tableP->table[i].dwAddr & tableP->table[i].dwMask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
              mask = ntohl(tableP->table[i].dwMask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
              curr->mask = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
              while (mask) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
                mask <<= 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
                curr->mask++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
              }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
              break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
            case MIB_IF_TYPE_PPP:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
            case MIB_IF_TYPE_SLIP:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
            default:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
              /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
               * these don't have broadcast/subnet
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
               */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
              curr->mask = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
            curr->next = netaddrP;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
            netaddrP = curr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
            count++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
        i++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
    *netaddrPP = netaddrP;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
    free(tableP);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
    return count;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
 * Class:     java_net_NetworkInterface
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
 * Method:    init
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
 * Signature: ()V
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
JNIEXPORT void JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
Java_java_net_NetworkInterface_init(JNIEnv *env, jclass cls)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
     * Get the various JNI ids that we require
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
    ni_class = (*env)->NewGlobalRef(env, cls);
21409
246ccfb4a0f0 8026880: NetworkInterface native initializing code should check fieldID values
chegar
parents: 20851
diff changeset
   503
    CHECK_NULL(ni_class);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
    ni_nameID = (*env)->GetFieldID(env, ni_class, "name", "Ljava/lang/String;");
21409
246ccfb4a0f0 8026880: NetworkInterface native initializing code should check fieldID values
chegar
parents: 20851
diff changeset
   505
    CHECK_NULL(ni_nameID);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
    ni_displayNameID = (*env)->GetFieldID(env, ni_class, "displayName", "Ljava/lang/String;");
21409
246ccfb4a0f0 8026880: NetworkInterface native initializing code should check fieldID values
chegar
parents: 20851
diff changeset
   507
    CHECK_NULL(ni_displayNameID);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
    ni_indexID = (*env)->GetFieldID(env, ni_class, "index", "I");
21409
246ccfb4a0f0 8026880: NetworkInterface native initializing code should check fieldID values
chegar
parents: 20851
diff changeset
   509
    CHECK_NULL(ni_indexID);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
    ni_addrsID = (*env)->GetFieldID(env, ni_class, "addrs", "[Ljava/net/InetAddress;");
21409
246ccfb4a0f0 8026880: NetworkInterface native initializing code should check fieldID values
chegar
parents: 20851
diff changeset
   511
    CHECK_NULL(ni_addrsID);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
    ni_bindsID = (*env)->GetFieldID(env, ni_class, "bindings", "[Ljava/net/InterfaceAddress;");
21409
246ccfb4a0f0 8026880: NetworkInterface native initializing code should check fieldID values
chegar
parents: 20851
diff changeset
   513
    CHECK_NULL(ni_bindsID);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
    ni_childsID = (*env)->GetFieldID(env, ni_class, "childs", "[Ljava/net/NetworkInterface;");
21409
246ccfb4a0f0 8026880: NetworkInterface native initializing code should check fieldID values
chegar
parents: 20851
diff changeset
   515
    CHECK_NULL(ni_childsID);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
    ni_ctor = (*env)->GetMethodID(env, ni_class, "<init>", "()V");
21409
246ccfb4a0f0 8026880: NetworkInterface native initializing code should check fieldID values
chegar
parents: 20851
diff changeset
   517
    CHECK_NULL(ni_ctor);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
1094
0cb4746beb0c 6734171: java.net.NetworkInterface reports XCheck:jni warnings
chegar
parents: 910
diff changeset
   519
    ni_iacls = (*env)->FindClass(env, "java/net/InetAddress");
21409
246ccfb4a0f0 8026880: NetworkInterface native initializing code should check fieldID values
chegar
parents: 20851
diff changeset
   520
    CHECK_NULL(ni_iacls);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
    ni_iacls = (*env)->NewGlobalRef(env, ni_iacls);
21409
246ccfb4a0f0 8026880: NetworkInterface native initializing code should check fieldID values
chegar
parents: 20851
diff changeset
   522
    CHECK_NULL(ni_iacls);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
1094
0cb4746beb0c 6734171: java.net.NetworkInterface reports XCheck:jni warnings
chegar
parents: 910
diff changeset
   524
    ni_ia4cls = (*env)->FindClass(env, "java/net/Inet4Address");
21409
246ccfb4a0f0 8026880: NetworkInterface native initializing code should check fieldID values
chegar
parents: 20851
diff changeset
   525
    CHECK_NULL(ni_ia4cls);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
    ni_ia4cls = (*env)->NewGlobalRef(env, ni_ia4cls);
21409
246ccfb4a0f0 8026880: NetworkInterface native initializing code should check fieldID values
chegar
parents: 20851
diff changeset
   527
    CHECK_NULL(ni_ia4cls);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
    ni_ia4Ctor = (*env)->GetMethodID(env, ni_ia4cls, "<init>", "()V");
21409
246ccfb4a0f0 8026880: NetworkInterface native initializing code should check fieldID values
chegar
parents: 20851
diff changeset
   529
    CHECK_NULL(ni_ia4Ctor);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
    ni_ia6cls = (*env)->FindClass(env, "java/net/Inet6Address");
21409
246ccfb4a0f0 8026880: NetworkInterface native initializing code should check fieldID values
chegar
parents: 20851
diff changeset
   532
    CHECK_NULL(ni_ia6cls);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
    ni_ia6cls = (*env)->NewGlobalRef(env, ni_ia6cls);
21409
246ccfb4a0f0 8026880: NetworkInterface native initializing code should check fieldID values
chegar
parents: 20851
diff changeset
   534
    CHECK_NULL(ni_ia6cls);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
    ni_ia6ctrID = (*env)->GetMethodID(env, ni_ia6cls, "<init>", "()V");
21409
246ccfb4a0f0 8026880: NetworkInterface native initializing code should check fieldID values
chegar
parents: 20851
diff changeset
   536
    CHECK_NULL(ni_ia6ctrID);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
    ni_ibcls = (*env)->FindClass(env, "java/net/InterfaceAddress");
21409
246ccfb4a0f0 8026880: NetworkInterface native initializing code should check fieldID values
chegar
parents: 20851
diff changeset
   539
    CHECK_NULL(ni_ibcls);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
    ni_ibcls = (*env)->NewGlobalRef(env, ni_ibcls);
21409
246ccfb4a0f0 8026880: NetworkInterface native initializing code should check fieldID values
chegar
parents: 20851
diff changeset
   541
    CHECK_NULL(ni_ibcls);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
    ni_ibctrID = (*env)->GetMethodID(env, ni_ibcls, "<init>", "()V");
21409
246ccfb4a0f0 8026880: NetworkInterface native initializing code should check fieldID values
chegar
parents: 20851
diff changeset
   543
    CHECK_NULL(ni_ibctrID);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
    ni_ibaddressID = (*env)->GetFieldID(env, ni_ibcls, "address", "Ljava/net/InetAddress;");
21409
246ccfb4a0f0 8026880: NetworkInterface native initializing code should check fieldID values
chegar
parents: 20851
diff changeset
   545
    CHECK_NULL(ni_ibaddressID);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
    ni_ibbroadcastID = (*env)->GetFieldID(env, ni_ibcls, "broadcast", "Ljava/net/Inet4Address;");
21409
246ccfb4a0f0 8026880: NetworkInterface native initializing code should check fieldID values
chegar
parents: 20851
diff changeset
   547
    CHECK_NULL(ni_ibbroadcastID);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
    ni_ibmaskID = (*env)->GetFieldID(env, ni_ibcls, "maskLength", "S");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
 * Create a NetworkInterface object, populate the name and index, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
 * populate the InetAddress array based on the IP addresses for this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
 * interface.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
 */
9003
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   556
jobject createNetworkInterface
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   557
    (JNIEnv *env, netif *ifs, int netaddrCount, netaddr *netaddrP)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
    jobject netifObj;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
    jobject name, displayName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
    jobjectArray addrArr, bindsArr, childArr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
    netaddr *addrs;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
    jint addr_index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
    jint bind_index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
     * Create a NetworkInterface object and populate it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
    netifObj = (*env)->NewObject(env, ni_class, ni_ctor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
    name = (*env)->NewStringUTF(env, ifs->name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
    if (ifs->dNameIsUnicode) {
9003
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   572
        displayName = (*env)->NewString(env, (PWCHAR)ifs->displayName,
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   573
                                       (jsize)wcslen ((PWCHAR)ifs->displayName));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
        displayName = (*env)->NewStringUTF(env, ifs->displayName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
    if (netifObj == NULL || name == NULL || displayName == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
        return NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
    (*env)->SetObjectField(env, netifObj, ni_nameID, name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
    (*env)->SetObjectField(env, netifObj, ni_displayNameID, displayName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
    (*env)->SetIntField(env, netifObj, ni_indexID, ifs->index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
     * Get the IP addresses for this interface if necessary
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
     * Note that 0 is a valid number of addresses.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
    if (netaddrCount < 0) {
9003
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   589
        netaddrCount = enumAddresses_win(env, ifs, &netaddrP);
10417
947e9a7bf244 7084560: Crash in net.dll
michaelm
parents: 9003
diff changeset
   590
        if (netaddrCount == -1) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
            return NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
    addrArr = (*env)->NewObjectArray(env, netaddrCount, ni_iacls, NULL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
    if (addrArr == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
        free_netaddr(netaddrP);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
        return NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
    bindsArr = (*env)->NewObjectArray(env, netaddrCount, ni_ibcls, NULL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
    if (bindsArr == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
      free_netaddr(netaddrP);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
      return NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
    addrs = netaddrP;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
    addr_index = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
    bind_index = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
    while (addrs != NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
        jobject iaObj, ia2Obj;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
        jobject ibObj = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
        if (addrs->addr.him.sa_family == AF_INET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
            iaObj = (*env)->NewObject(env, ni_ia4cls, ni_ia4Ctor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
            if (iaObj == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
                free_netaddr(netaddrP);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
                return NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
            /* default ctor will set family to AF_INET */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
16870
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14768
diff changeset
   619
            setInetAddress_addr(env, iaObj, ntohl(addrs->addr.him4.sin_addr.s_addr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
            if (addrs->mask != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
              ibObj = (*env)->NewObject(env, ni_ibcls, ni_ibctrID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
              if (ibObj == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
                free_netaddr(netaddrP);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
                return NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
              }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
              (*env)->SetObjectField(env, ibObj, ni_ibaddressID, iaObj);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
              ia2Obj = (*env)->NewObject(env, ni_ia4cls, ni_ia4Ctor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
              if (ia2Obj == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
                free_netaddr(netaddrP);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
                return NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
              }
16870
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14768
diff changeset
   632
              setInetAddress_addr(env, ia2Obj, ntohl(addrs->brdcast.him4.sin_addr.s_addr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
              (*env)->SetObjectField(env, ibObj, ni_ibbroadcastID, ia2Obj);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
              (*env)->SetShortField(env, ibObj, ni_ibmaskID, addrs->mask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
              (*env)->SetObjectArrayElement(env, bindsArr, bind_index++, ibObj);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
        } else /* AF_INET6 */ {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
            int scope;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
            iaObj = (*env)->NewObject(env, ni_ia6cls, ni_ia6ctrID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
            if (iaObj) {
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17193
diff changeset
   641
                int ret = setInet6Address_ipaddress(env, iaObj,  (jbyte *)&(addrs->addr.him6.sin6_addr.s6_addr));
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17193
diff changeset
   642
                if (ret == JNI_FALSE) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
                    return NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
                }
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17193
diff changeset
   645
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
                scope = addrs->addr.him6.sin6_scope_id;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
                if (scope != 0) { /* zero is default value, no need to set */
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17193
diff changeset
   648
                    setInet6Address_scopeid(env, iaObj, scope);
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17193
diff changeset
   649
                    setInet6Address_scopeifname(env, iaObj, netifObj);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
                ibObj = (*env)->NewObject(env, ni_ibcls, ni_ibctrID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
                if (ibObj == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
                  free_netaddr(netaddrP);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
                  return NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
                (*env)->SetObjectField(env, ibObj, ni_ibaddressID, iaObj);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
                (*env)->SetShortField(env, ibObj, ni_ibmaskID, addrs->mask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
                (*env)->SetObjectArrayElement(env, bindsArr, bind_index++, ibObj);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
        (*env)->SetObjectArrayElement(env, addrArr, addr_index, iaObj);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
        addrs = addrs->next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
        addr_index++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
    (*env)->SetObjectField(env, netifObj, ni_addrsID, addrArr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
    (*env)->SetObjectField(env, netifObj, ni_bindsID, bindsArr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
    free_netaddr(netaddrP);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
     * Windows doesn't have virtual interfaces, so child array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
     * is always empty.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
    childArr = (*env)->NewObjectArray(env, 0, ni_class, NULL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
    if (childArr == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
      return NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
    (*env)->SetObjectField(env, netifObj, ni_childsID, childArr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
    /* return the NetworkInterface */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
    return netifObj;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
 * Class:     java_net_NetworkInterface
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
 * Method:    getByName0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
 * Signature: (Ljava/lang/String;)Ljava/net/NetworkInterface;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
JNIEXPORT jobject JNICALL Java_java_net_NetworkInterface_getByName0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
    (JNIEnv *env, jclass cls, jstring name)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
    netif *ifList, *curr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
    jboolean isCopy;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
    const char *name_utf;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
    jobject netifObj = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
9003
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   697
    // Retained for now to support IPv4 only stack, java.net.preferIPv4Stack
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   698
    if (ipv6_available()) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
        return Java_java_net_NetworkInterface_getByName0_XP (env, cls, name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
    /* get the list of interfaces */
9003
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   703
    if (enumInterfaces(env, &ifList) < 0) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
        return NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
    /* get the name as a C string */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
    name_utf = (*env)->GetStringUTFChars(env, name, &isCopy);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
    /* Search by name */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
    curr = ifList;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
    while (curr != NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
        if (strcmp(name_utf, curr->name) == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
        curr = curr->next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
    /* if found create a NetworkInterface */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
    if (curr != NULL) {;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
        netifObj = createNetworkInterface(env, curr, -1, NULL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
    /* release the UTF string */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
    (*env)->ReleaseStringUTFChars(env, name, name_utf);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
    /* release the interface list */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
    free_netif(ifList);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
    return netifObj;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
 * Class:     NetworkInterface
1097
af4930f761df 6717876: Make java.net.NetworkInterface.getIndex() public
jccollet
parents: 1094
diff changeset
   735
 * Method:    getByIndex0
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
 * Signature: (I)LNetworkInterface;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
 */
1097
af4930f761df 6717876: Make java.net.NetworkInterface.getIndex() public
jccollet
parents: 1094
diff changeset
   738
JNIEXPORT jobject JNICALL Java_java_net_NetworkInterface_getByIndex0
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
  (JNIEnv *env, jclass cls, jint index)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
    netif *ifList, *curr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
    jobject netifObj = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
9003
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   744
    // Retained for now to support IPv4 only stack, java.net.preferIPv4Stack
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   745
    if (ipv6_available()) {
1097
af4930f761df 6717876: Make java.net.NetworkInterface.getIndex() public
jccollet
parents: 1094
diff changeset
   746
        return Java_java_net_NetworkInterface_getByIndex0_XP (env, cls, index);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
    /* get the list of interfaces */
9003
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   750
    if (enumInterfaces(env, &ifList) < 0) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
        return NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
    /* search by index */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
    curr = ifList;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
    while (curr != NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
        if (index == curr->index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
        curr = curr->next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
    /* if found create a NetworkInterface */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
    if (curr != NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
        netifObj = createNetworkInterface(env, curr, -1, NULL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
    /* release the interface list */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
    free_netif(ifList);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
    return netifObj;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
 * Class:     java_net_NetworkInterface
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
 * Method:    getByInetAddress0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
 * Signature: (Ljava/net/InetAddress;)Ljava/net/NetworkInterface;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
JNIEXPORT jobject JNICALL Java_java_net_NetworkInterface_getByInetAddress0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
    (JNIEnv *env, jclass cls, jobject iaObj)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
    netif *ifList, *curr;
16870
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14768
diff changeset
   783
    jint addr = getInetAddress_addr(env, iaObj);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
    jobject netifObj = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
9003
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   786
    // Retained for now to support IPv4 only stack, java.net.preferIPv4Stack
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   787
    if (ipv6_available()) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
        return Java_java_net_NetworkInterface_getByInetAddress0_XP (env, cls, iaObj);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
    /* get the list of interfaces */
9003
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   792
    if (enumInterfaces(env, &ifList) < 0) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
        return NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
     * Enumerate the addresses on each interface until we find a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
     * matching address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
    curr = ifList;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
    while (curr != NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
        int count;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
        netaddr *addrList;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
        netaddr *addrP;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
        /* enumerate the addresses on this interface */
9003
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   807
        count = enumAddresses_win(env, curr, &addrList);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
        if (count < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
            free_netif(ifList);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
            return NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
        /* iterate through each address */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
        addrP = addrList;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
        while (addrP != NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
            if ((unsigned long)addr == ntohl(addrP->addr.him4.sin_addr.s_addr)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
            addrP = addrP->next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
         * Address matched so create NetworkInterface for this interface
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
         * and address list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
        if (addrP != NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
            /* createNetworkInterface will free addrList */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
            netifObj = createNetworkInterface(env, curr, count, addrList);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
        /* on next interface */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
        curr = curr->next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
    /* release the interface list */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
    free_netif(ifList);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
    return netifObj;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
 * Class:     java_net_NetworkInterface
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
 * Method:    getAll
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
 * Signature: ()[Ljava/net/NetworkInterface;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
JNIEXPORT jobjectArray JNICALL Java_java_net_NetworkInterface_getAll
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
    (JNIEnv *env, jclass cls)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
    int count;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
    netif *ifList, *curr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
    jobjectArray netIFArr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
    jint arr_index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
9003
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   856
    // Retained for now to support IPv4 only stack, java.net.preferIPv4Stack
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   857
    if (ipv6_available()) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
        return Java_java_net_NetworkInterface_getAll_XP (env, cls);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
     * Get list of interfaces
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
     */
9003
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   864
    count = enumInterfaces(env, &ifList);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
    if (count < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
        return NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
    /* allocate a NetworkInterface array */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
    netIFArr = (*env)->NewObjectArray(env, count, cls, NULL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
    if (netIFArr == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
        return NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
     * Iterate through the interfaces, create a NetworkInterface instance
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
     * for each array element and populate the object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
    curr = ifList;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
    arr_index = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
    while (curr != NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
        jobject netifObj;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
        netifObj = createNetworkInterface(env, curr, -1, NULL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
        if (netifObj == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
            return NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
        /* put the NetworkInterface into the array */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
        (*env)->SetObjectArrayElement(env, netIFArr, arr_index++, netifObj);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
        curr = curr->next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
    /* release the interface list */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
    free_netif(ifList);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
    return netIFArr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
 * Class:     java_net_NetworkInterface
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
 * Method:    isUp0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
 * Signature: (Ljava/lang/String;)Z
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
JNIEXPORT jboolean JNICALL Java_java_net_NetworkInterface_isUp0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
    (JNIEnv *env, jclass cls, jstring name, jint index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
  jboolean ret = JNI_FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
9003
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   910
  // Retained for now to support IPv4 only stack, java.net.preferIPv4Stack
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   911
  if (ipv6_available()) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
    return Java_java_net_NetworkInterface_isUp0_XP(env, cls, name, index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
  } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
    MIB_IFROW *ifRowP;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
    ifRowP = getIF(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
    if (ifRowP != NULL) {
19866
f5e8a8275078 6458027: Disabling IPv6 on a specific network interface causes problems
msheppar
parents: 17193
diff changeset
   917
      ret = ifRowP->dwAdminStatus == MIB_IF_ADMIN_STATUS_UP &&
9003
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   918
            (ifRowP->dwOperStatus == MIB_IF_OPER_STATUS_OPERATIONAL ||
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   919
             ifRowP->dwOperStatus == MIB_IF_OPER_STATUS_CONNECTED);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
      free(ifRowP);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
    return ret;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
 * Class:     java_net_NetworkInterface
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
 * Method:    isP2P0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
 * Signature: (Ljava/lang/String;I)Z
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
 */
9003
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   931
JNIEXPORT jboolean JNICALL Java_java_net_NetworkInterface_isP2P0
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   932
    (JNIEnv *env, jclass cls, jstring name, jint index) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
  MIB_IFROW *ifRowP;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
  jboolean ret = JNI_FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
9003
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   936
  // Retained for now to support IPv4 only stack, java.net.preferIPv4Stack
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   937
  if (ipv6_available()) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
    return Java_java_net_NetworkInterface_isP2P0_XP(env, cls, name, index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
  } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
    ifRowP = getIF(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
    if (ifRowP != NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   942
      switch(ifRowP->dwType) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
      case MIB_IF_TYPE_PPP:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
      case MIB_IF_TYPE_SLIP:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
        ret = JNI_TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
      }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
      free(ifRowP);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
  return ret;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
 * Class:     java_net_NetworkInterface
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
 * Method:    isLoopback0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
 * Signature: (Ljava/lang/String;I)Z
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
JNIEXPORT jboolean JNICALL Java_java_net_NetworkInterface_isLoopback0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
    (JNIEnv *env, jclass cls, jstring name, jint index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
  MIB_IFROW *ifRowP;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
  jboolean ret = JNI_FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
9003
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   964
  // Retained for now to support IPv4 only stack, java.net.preferIPv4Stack
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   965
  if (ipv6_available()) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
    return Java_java_net_NetworkInterface_isLoopback0_XP(env, cls, name, index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
  } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
    ifRowP = getIF(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
    if (ifRowP != NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
      if (ifRowP->dwType == MIB_IF_TYPE_LOOPBACK)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
        ret = JNI_TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
      free(ifRowP);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
    return ret;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   979
 * Class:     java_net_NetworkInterface
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
 * Method:    supportsMulticast0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
 * Signature: (Ljava/lang/String;I)Z
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
JNIEXPORT jboolean JNICALL Java_java_net_NetworkInterface_supportsMulticast0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
    (JNIEnv *env, jclass cls, jstring name, jint index) {
9003
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   985
    return Java_java_net_NetworkInterface_supportsMulticast0_XP(env, cls,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
                                                               name, index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
90ce3da70b43 Initial load
duke
parents:
diff changeset
   989
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   990
 * Class:     java_net_NetworkInterface
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
 * Method:    getMacAddr0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   992
 * Signature: ([bLjava/lang/String;I)[b
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
 */
9003
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   994
JNIEXPORT jbyteArray JNICALL Java_java_net_NetworkInterface_getMacAddr0
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
   995
    (JNIEnv *env, jclass class, jbyteArray addrArray, jstring name, jint index) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   996
  jbyteArray ret = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   997
  int len;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   998
  MIB_IFROW *ifRowP;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   999
9003
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
  1000
  // Retained for now to support IPv4 only stack, java.net.preferIPv4Stack
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
  1001
  if (ipv6_available()) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1002
    return Java_java_net_NetworkInterface_getMacAddr0_XP(env, class, name, index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1003
  } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1004
    ifRowP = getIF(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1005
    if (ifRowP != NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1006
      switch(ifRowP->dwType) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1007
      case MIB_IF_TYPE_ETHERNET:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1008
      case MIB_IF_TYPE_TOKENRING:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
      case MIB_IF_TYPE_FDDI:
12542
31190502e9e3 7158636: InterfaceAddress.getBroadcast() returns invalid broadcast address on WLAN
khazra
parents: 10417
diff changeset
  1010
      case IF_TYPE_IEEE80211:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1011
        len = ifRowP->dwPhysAddrLen;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1012
        ret = (*env)->NewByteArray(env, len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
        if (!IS_NULL(ret)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1014
          (*env)->SetByteArrayRegion(env, ret, 0, len, (jbyte *) ifRowP->bPhysAddr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1015
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1016
        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1017
      }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1018
      free(ifRowP);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1019
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1020
    return ret;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1022
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1023
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1024
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
 * Class:       java_net_NetworkInterface
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1026
 * Method:      getMTU0
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1027
 * Signature:   ([bLjava/lang/String;I)I
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1028
 */
9003
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
  1029
JNIEXPORT jint JNICALL Java_java_net_NetworkInterface_getMTU0
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
  1030
    (JNIEnv *env, jclass class, jstring name, jint index) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
  jint ret = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
  MIB_IFROW *ifRowP;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
9003
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
  1034
  // Retained for now to support IPv4 only stack, java.net.preferIPv4Stack
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
  1035
  if (ipv6_available()) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1036
    return Java_java_net_NetworkInterface_getMTU0_XP(env, class, name, index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1037
  } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1038
    ifRowP = getIF(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1039
    if (ifRowP != NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1040
      ret = ifRowP->dwMtu;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1041
      free(ifRowP);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1042
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1043
    return ret;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1044
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1045
}