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