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

io.trino.client.auth.kerberos.AbstractUnconstrainedContextProvider Maven / Gradle / Ivy

There is a newer version: 464
Show newest version
/*
 * 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 io.trino.client.auth.kerberos;

import org.ietf.jgss.GSSContext;
import org.ietf.jgss.GSSCredential;
import org.ietf.jgss.GSSException;

import javax.security.auth.Subject;

import java.security.Principal;
import java.security.PrivilegedActionException;
import java.security.PrivilegedExceptionAction;

import static com.google.common.base.Throwables.throwIfInstanceOf;
import static com.google.common.base.Throwables.throwIfUnchecked;
import static java.util.concurrent.TimeUnit.SECONDS;
import static org.ietf.jgss.GSSCredential.DEFAULT_LIFETIME;
import static org.ietf.jgss.GSSCredential.INITIATE_ONLY;
import static org.ietf.jgss.GSSName.NT_USER_NAME;

public abstract class AbstractUnconstrainedContextProvider
        extends BaseGSSContextProvider
{
    private GSSCredential clientCredential;

    @Override
    public GSSContext getContext(String servicePrincipal)
            throws GSSException
    {
        if ((clientCredential == null) || clientCredential.getRemainingLifetime() < MIN_CREDENTIAL_LIFETIME.getValue(SECONDS)) {
            clientCredential = createGssCredential();
        }

        return doAs(getSubject(), () -> createContext(servicePrincipal, clientCredential));
    }

    private GSSCredential createGssCredential()
            throws GSSException
    {
        refresh();
        Subject subject = getSubject();
        Principal clientPrincipal = subject.getPrincipals().iterator().next();
        return doAs(subject, () -> GSS_MANAGER.createCredential(
                GSS_MANAGER.createName(clientPrincipal.getName(), NT_USER_NAME),
                DEFAULT_LIFETIME,
                KERBEROS_OID,
                INITIATE_ONLY));
    }

    public abstract void refresh()
            throws GSSException;

    protected abstract Subject getSubject();

    interface GssSupplier
    {
        T get()
                throws GSSException;
    }

    static  T doAs(Subject subject, GssSupplier action)
            throws GSSException
    {
        try {
            return Subject.doAs(subject, (PrivilegedExceptionAction) action::get);
        }
        catch (PrivilegedActionException e) {
            Throwable t = e.getCause();
            throwIfInstanceOf(t, GSSException.class);
            throwIfUnchecked(t);
            throw new RuntimeException(t);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy