jdk/src/java.base/unix/native/libjava/ProcessEnvironment_md.c
author igerasim
Tue, 28 Oct 2014 15:36:27 +0300
changeset 27263 819f5f87d485
parent 25859 3317bb8137f4
permissions -rw-r--r--
8023173: FileDescriptor should respect append flag Reviewed-by: martin, alanb, rriggs
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
23010
6dadb192ad81 8029235: Update copyright year to match last edit in jdk8 jdk repository for 2013
lana
parents: 22641
diff changeset
     2
 * Copyright (c) 2003, 2013, 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: 2
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: 2
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: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
#include <stdlib.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
#include <string.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
#include "jni.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
#include "jni_util.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
    31
#ifdef __APPLE__
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
    32
#include <crt_externs.h>
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
    33
#define environ (*_NSGetEnviron())
16860
8fecebee12b0 8008118: (process) Possible null pointer dereference in jdk/src/solaris/native/java/lang/UNIXProcess_md.c
jzavgren
parents: 14342
diff changeset
    34
#else
8fecebee12b0 8008118: (process) Possible null pointer dereference in jdk/src/solaris/native/java/lang/UNIXProcess_md.c
jzavgren
parents: 14342
diff changeset
    35
/* This is one of the rare times it's more portable to declare an
8fecebee12b0 8008118: (process) Possible null pointer dereference in jdk/src/solaris/native/java/lang/UNIXProcess_md.c
jzavgren
parents: 14342
diff changeset
    36
 * external symbol explicitly, rather than via a system header.
8fecebee12b0 8008118: (process) Possible null pointer dereference in jdk/src/solaris/native/java/lang/UNIXProcess_md.c
jzavgren
parents: 14342
diff changeset
    37
 * The declaration is standardized as part of UNIX98, but there is
8fecebee12b0 8008118: (process) Possible null pointer dereference in jdk/src/solaris/native/java/lang/UNIXProcess_md.c
jzavgren
parents: 14342
diff changeset
    38
 * no standard (not even de-facto) header file where the
8fecebee12b0 8008118: (process) Possible null pointer dereference in jdk/src/solaris/native/java/lang/UNIXProcess_md.c
jzavgren
parents: 14342
diff changeset
    39
 * declaration is to be found.  See:
8fecebee12b0 8008118: (process) Possible null pointer dereference in jdk/src/solaris/native/java/lang/UNIXProcess_md.c
jzavgren
parents: 14342
diff changeset
    40
 * http://www.opengroup.org/onlinepubs/009695399/functions/environ.html
8fecebee12b0 8008118: (process) Possible null pointer dereference in jdk/src/solaris/native/java/lang/UNIXProcess_md.c
jzavgren
parents: 14342
diff changeset
    41
 * http://www.opengroup.org/onlinepubs/009695399/functions/xsh_chap02_02.html
8fecebee12b0 8008118: (process) Possible null pointer dereference in jdk/src/solaris/native/java/lang/UNIXProcess_md.c
jzavgren
parents: 14342
diff changeset
    42
 *
8fecebee12b0 8008118: (process) Possible null pointer dereference in jdk/src/solaris/native/java/lang/UNIXProcess_md.c
jzavgren
parents: 14342
diff changeset
    43
 * "All identifiers in this volume of IEEE Std 1003.1-2001, except
8fecebee12b0 8008118: (process) Possible null pointer dereference in jdk/src/solaris/native/java/lang/UNIXProcess_md.c
jzavgren
parents: 14342
diff changeset
    44
 * environ, are defined in at least one of the headers" (!)
8fecebee12b0 8008118: (process) Possible null pointer dereference in jdk/src/solaris/native/java/lang/UNIXProcess_md.c
jzavgren
parents: 14342
diff changeset
    45
 */
8fecebee12b0 8008118: (process) Possible null pointer dereference in jdk/src/solaris/native/java/lang/UNIXProcess_md.c
jzavgren
parents: 14342
diff changeset
    46
extern char **environ;
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
    47
#endif
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
    48
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
JNIEXPORT jobjectArray JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
Java_java_lang_ProcessEnvironment_environ(JNIEnv *env, jclass ign)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    jsize count = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    jsize i, j;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    jobjectArray result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    jclass byteArrCls = (*env)->FindClass(env, "[B");
22641
e47f8892133e 8033372: Check jdk/src/share/native/java/lang for JNI pending exception issues
alanb
parents: 16860
diff changeset
    56
    CHECK_NULL_RETURN(byteArrCls, NULL);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    for (i = 0; environ[i]; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
        /* Ignore corrupted environment variables */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
        if (strchr(environ[i], '=') != NULL)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
            count++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    result = (*env)->NewObjectArray(env, 2*count, byteArrCls, 0);
22641
e47f8892133e 8033372: Check jdk/src/share/native/java/lang for JNI pending exception issues
alanb
parents: 16860
diff changeset
    65
    CHECK_NULL_RETURN(result, NULL);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    for (i = 0, j = 0; environ[i]; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
        const char * varEnd = strchr(environ[i], '=');
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
        /* Ignore corrupted environment variables */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
        if (varEnd != NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
            jbyteArray var, val;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
            const char * valBeg = varEnd + 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
            jsize varLength = varEnd - environ[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
            jsize valLength = strlen(valBeg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
            var = (*env)->NewByteArray(env, varLength);
22641
e47f8892133e 8033372: Check jdk/src/share/native/java/lang for JNI pending exception issues
alanb
parents: 16860
diff changeset
    76
            CHECK_NULL_RETURN(var, NULL);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
            val = (*env)->NewByteArray(env, valLength);
22641
e47f8892133e 8033372: Check jdk/src/share/native/java/lang for JNI pending exception issues
alanb
parents: 16860
diff changeset
    78
            CHECK_NULL_RETURN(val, NULL);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
            (*env)->SetByteArrayRegion(env, var, 0, varLength,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
                                       (jbyte*) environ[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
            (*env)->SetByteArrayRegion(env, val, 0, valLength,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
                                       (jbyte*) valBeg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
            (*env)->SetObjectArrayElement(env, result, 2*j  , var);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
            (*env)->SetObjectArrayElement(env, result, 2*j+1, val);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
            (*env)->DeleteLocalRef(env, var);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
            (*env)->DeleteLocalRef(env, val);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
            j++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
}