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

org.jvnet.libpam.PAM Maven / Gradle / Ivy

/*
 * The MIT License
 *
 * Copyright (c) 2009, Sun Microsystems, Inc.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
package org.jvnet.libpam;

import org.jvnet.libpam.impl.PAMLibrary.*;
import static org.jvnet.libpam.impl.PAMLibrary.*;
import org.jvnet.libpam.impl.PAMLibrary.pam_conv.PamCallback;
import org.jvnet.libpam.impl.CLibrary.passwd;
import static org.jvnet.libpam.impl.CLibrary.libc;
import com.sun.jna.Pointer;
import static com.sun.jna.Native.POINTER_SIZE;
import com.sun.jna.ptr.PointerByReference;
import java.util.Set;

import java.util.logging.Logger;

/**
 * PAM authenticator.
 *
 * 

* Instances are thread unsafe and non reentrant. An instace cannot be reused * to authenticate multiple users. * *

* For an overview of PAM programming, refer to the following resources: * *

* * @author Kohsuke Kawaguchi */ public class PAM { private pam_handle_t pht; private int ret; /** * Temporarily stored to pass a value from {@link #authenticate(String, String)} * to {@link pam_conv}. */ private String password; /** * Creates a new authenticator. * * @param serviceName * PAM service name. This corresponds to the service name that shows up * in the PAM configuration, */ public PAM(String serviceName) throws PAMException { pam_conv conv = new pam_conv(new PamCallback() { public int callback(int num_msg, Pointer msg, Pointer resp, Pointer _) { LOGGER.fine("pam_conv num_msg="+num_msg); if(password==null) return PAM_CONV_ERR; // allocates pam_response[num_msg]. the caller will free this Pointer m = libc.calloc(pam_response.SIZE,num_msg); resp.setPointer(0,m); for( int i=0; i getGroupsOfUser(String username) throws PAMException { return new UnixUser(username).getGroups(); } /** * After a successful authentication, call this method to obtain the effective user name. * This can be different from the user name that you passed to the {@link #authenticate(String, String)} * method. */ /** * Performs an early disposal of the object, instead of letting this GC-ed. * Since PAM may hold on to native resources that don't put pressure on Java GC, * doing this is a good idea. * *

* This method is called by {@link #finalize()}, too, so it's not required * to call this method explicitly, however. */ public void dispose() { if(pht!=null) { libpam.pam_end(pht,ret); pht=null; } } @Override protected void finalize() throws Throwable { super.finalize(); dispose(); } private static final Logger LOGGER = Logger.getLogger(PAM.class.getName()); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy