All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.italiangrid.voms.clients.util.EffectiveUserIdProvider Maven / Gradle / Ivy

There is a newer version: 3.3.2
Show newest version
/**
 * Copyright (c) Istituto Nazionale di Fisica Nucleare, 2006-2014.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.italiangrid.voms.clients.util;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

import org.italiangrid.voms.VOMSError;

/**
 * A utility class that determines the effective user id of user running the JVM
 * process.
 * 
 * @author andreaceccanti
 *
 */
public class EffectiveUserIdProvider {

  private static final String EUID_ENV_VAR = "EUID";
  private static final String EUID_SYSTEM_PROPERTY = "effectiveUserId";
  private static final String EUID_COMMAND = "id -u";

  private static String getEUIDStringFromEnv() {

    return System.getenv(EUID_ENV_VAR);

  }

  private static String getEUIDStringFromSystemProperty() {

    return System.getProperty(EUID_SYSTEM_PROPERTY);
  }

  private static String getEUIDStringFromIdCommand() {

    String euidString = null;

    ProcessBuilder pb = new ProcessBuilder(EUID_COMMAND.split(" "));
    try {
      Process p = pb.start();
      int exitStatus = p.waitFor();

      if (exitStatus != 0)
        throw new VOMSError(
          "Cannot resolve the user effective id: error invoking the '"
            + EUID_COMMAND + "' os command!");

      BufferedReader r = new BufferedReader(new InputStreamReader(
        p.getInputStream()));

      euidString = r.readLine();
      if (euidString == null)
        throw new VOMSError(
          "Cannot resolve the user effective id: nothing was found in '"
            + EUID_COMMAND + "' standard output!");

      return euidString;

    } catch (IOException e) {
      throw new VOMSError("Cannot resolve the user effective id: "
        + e.getMessage(), e);

    } catch (InterruptedException e) {
      return null;
    }
  }

  public static int getEUID() {

    int euid = -1;

    String euidString = getEUIDStringFromEnv();

    if (euidString == null)
      euidString = getEUIDStringFromSystemProperty();

    if (euidString == null)
      euidString = getEUIDStringFromIdCommand();

    if (euidString != null) {
      euid = Integer.parseInt(euidString);
      return euid;
    }

    throw new VOMSError("Cannot resolve the user effective id!");

  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy