/* Copyright © 2005-2007 Roger Leigh * * schroot is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * schroot is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see * . * *********************************************************************/ #ifndef SBUILD_AUTH_PAM_H #define SBUILD_AUTH_PAM_H #include #include #include namespace sbuild { /** * Authentication handler. * * auth_pam handles user authentication, authorisation and session * management using the Pluggable Authentication Modules (PAM) * library. It is essentially an object-oriented wrapper around PAM. */ class auth_pam : public auth { private: /** * The constructor. * * @param service_name the PAM service name. This should be a * hard-coded constant string literal for safety and security. * This is passed to pam_start() when initialising PAM, and is * used to load the correct configuration file from /etc/pam.d. */ auth_pam (std::string const& service_name); public: /** * The destructor. */ virtual ~auth_pam (); /** * Create an auth_pam object. * * @param service_name the PAM service name. This should be a * hard-coded constant string literal for safety and security. * This is passed to pam_start() when initialising PAM, and is * used to load the correct configuration file from /etc/pam.d. */ static auth::ptr create (std::string const& service_name); virtual environment get_auth_environment () const; auth_pam_conv::ptr& get_conv (); void set_conv (auth_pam_conv::ptr& conv); virtual void start (); virtual void stop (); virtual void authenticate (status auth_status); virtual void setupenv (); virtual void account (); virtual void cred_establish (); virtual void cred_delete (); virtual void open_session (); virtual void close_session (); /** * Check if PAM is initialised (i.e. start has been called). * @returns true if initialised, otherwise false. */ virtual bool is_initialised () const; private: /** * Get a description of a PAM error. * * @param pam_error the PAM error number. * @returns the description. */ const char * pam_strerror (int pam_error); /// The PAM handle. pam_handle_t *pam; /// The PAM conversation handler. auth_pam_conv::ptr conv; }; } #endif /* SBUILD_AUTH_PAM_H */ /* * Local Variables: * mode:C++ * End: */