/usr/include/sbuild/sbuild-auth.h is in libsbuild-dev 1.6.10-1ubuntu3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 | /* Copyright © 2005-2007 Roger Leigh <rleigh@debian.org>
*
* 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
* <http://www.gnu.org/licenses/>.
*
*********************************************************************/
#ifndef SBUILD_AUTH_H
#define SBUILD_AUTH_H
#include <sbuild/sbuild-config.h>
#include <sbuild/sbuild-custom-error.h>
#include <sbuild/sbuild-environment.h>
#include <sbuild/sbuild-types.h>
#include <sbuild/sbuild-util.h>
#include <sbuild/sbuild-tr1types.h>
#include <string>
#include <sys/types.h>
#include <sys/wait.h>
#include <grp.h>
#include <pwd.h>
#include <unistd.h>
namespace sbuild
{
/**
* Authentication handler.
*
* auth handles user authentication, authorisation and session
* management using the Pluggable Authentication Modules (PAM)
* library. It is essentially an object-oriented wrapper around PAM.
*
* In order to use PAM correctly, it is important to call several of
* the methods in the correct order. For example, it is not possible
* to authorise a user before authenticating a user, and a session may
* not be started before either of these have occurred.
*
* A conversation handler must be specified using set_conv before
* calling any of the functions below.
*
* The correct order is
* - start
* - authenticate
* - setupenv
* - account
* - cred_establish
* - open_session
*
* After the session has finished, or if an error occurred, the
* corresponding cleanup methods should be called
* - close_session
* - cred_delete
* - stop
*/
class auth
{
public:
/// Authentication status
enum status
{
STATUS_NONE, ///< Authentication is not required.
STATUS_USER, ///< Authentication is required by the user.
STATUS_FAIL ///< Authentication has failed.
};
/// Error codes.
enum error_code
{
HOSTNAME, ///< Failed to get hostname.
USER, ///< User not found.
GROUP, ///< Group not found.
AUTHENTICATION, ///< Authentication failed.
AUTHORISATION, ///< Authorisation failed.
PAM_DOUBLE_INIT, ///< PAM was already initialised.
PAM, ///< PAM error.
PAM_END ///< PAM failed to shut down cleanly.
};
/// Exception type.
typedef custom_error<error_code> error;
/// A shared_ptr to a auth object.
typedef std::shared_ptr<auth> ptr;
protected:
/**
* 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 (std::string const& service_name);
public:
/**
* The destructor.
*/
virtual ~auth ();
/**
* Get the PAM service name.
*
* @returns the service name.
*/
std::string const&
get_service () const;
/**
* Get the uid of the user. This is the uid to run as in the *
* session.
*
* @returns a uid. This will be 0 if no user was set, or the user
* is uid 0.
*/
uid_t
get_uid () const;
/**
* Get the gid of the user. This is the gid to run as in the
* session.
*
* @returns a gid. This will be 0 if no user was set, or the user
* is gid 0.
*/
gid_t
get_gid () const;
/**
* Get the name of the user. This is the user to run as in the
* session.
*
* @returns the user's name.
*/
std::string const&
get_user () const;
/**
* Set the name of the user. This is the user to run as in the
* session.
*
* As a side effect, the uid, gid, home and shell member variables
* will also be set, so calling the corresponding get methods will
* now return meaningful values.
*
* @param uid user to set as a uid.
*/
void
set_user (uid_t uid);
/**
* Set the name of the user. This is the user to run as in the
* session.
*
* As a side effect, the uid, gid, home and shell member variables
* will also be set, so calling the corresponding get methods will
* now return meaningful values.
*
* @param user the name to set.
*/
void
set_user (std::string const& user);
protected:
/**
* Set the name of the user. This is the user to run as in the
* session.
*
* As a side effect, the uid, gid, home and shell member variables
* will also be set, so calling the corresponding get methods will
* now return meaningful values.
*
* @param pwent user to set as a passwd entry.
*/
void
set_user (passwd const& pwent);
public:
/**
* Get the command to run in the session.
*
* @returns the command as string list, each item being a separate
* argument. If no command has been specified, the list will be
* empty.
*/
string_list const&
get_command () const;
/**
* Set the command to run in the session.
*
* @param command the command to run. This is a string list, each
* item being a separate argument.
*/
void
set_command (string_list const& command);
/**
* Get the home directory. This is the $HOME to set in the session,
* if the user environment is not being preserved.
*
* @returns the home directory.
*/
std::string const&
get_home () const;
/**
* Get the working directory. This is the working directory to
* set in the session.
*
* @returns the current working directory.
*/
std::string const&
get_wd () const;
/**
* Set the working directory. This is the working directory to
* set in the session.
*
* @param wd the current working directory.
*/
void
set_wd (std::string const& wd);
/**
* Get the name of the shell. This is the shell to run in the
* session.
*
* @returns the shell. This is typically a full pathname, though
* the executable name only should also work (the caller will have
* to search for it).
*/
std::string const&
get_shell () const;
/**
* Get the user environment to use in the session.
*
* @returns an environment list (a list of key-value pairs).
*/
environment const&
get_user_environment () const;
/**
* Set the user environment to use in the session.
*
* @param environment an environ- or envp-like string vector
* containing key=value pairs.
*/
void
set_user_environment (char **environment);
/**
* Set the user environment to use in the session.
*
* @param environment an environment list.
*/
void
set_user_environment (environment const& environment);
/**
* Get the minimal environment. This is essential environment
* variables which are set if not already present.
*
* @returns an environment list.
*/
environment
get_minimal_environment () const;
/**
* Get the complete environment. This is the user environment plus
* essential environment variables which are set if not already
* present.
*
* @returns an environment list.
*/
environment
get_complete_environment () const;
/**
* Get the PAM environment. This is the environment as set by PAM
* modules.
*
* @returns an environment list.
*/
virtual environment
get_auth_environment () const = 0;
/**
* Get the "remote uid" of the user. This is the uid which is
* requesting authentication.
*
* @returns a uid.
*/
uid_t
get_ruid () const;
/**
* Get the "remote gid" of the user. This is the gid which is
* requesting authentication.
*
* @returns a gid.
*/
gid_t
get_rgid () const;
/**
* Get the "remote" name of the user. This is the user which is
* requesting authentication.
*
* @returns a user name.
*/
std::string const&
get_ruser () const;
/**
* Set the "remote" name of the user. This is the user which is
* requesting authentication.
*
* As a side effect, the uid, gid, home and shell member variables
* will also be set, so calling the corresponding get methods will
* now return meaningful values.
*
* @param ruid remote user to set as a uid.
*/
void
set_ruser (uid_t ruid);
/**
* Set the "remote" name of the user. This is the user which is
* requesting authentication.
*
* As a side effect, the uid, gid, home and shell member variables
* will also be set, so calling the corresponding get methods will
* now return meaningful values.
*
* @param ruser the remote user name to set.
*/
void
set_ruser (std::string const& ruser);
protected:
/**
* Set the "remote" name of the user. This is the user which is
* requesting authentication.
*
* As a side effect, the ruid, rgid, ruser and rgroup member
* variables will also be set, so calling the corresponding get
* methods will now return meaningful values.
*
* @param rpwent remote user to set as a passwd entry.
*/
void
set_ruser (passwd const& rpwent);
public:
/**
* Get the "remote" name of the group. This is the group which is
* requesting authentication.
*
* @returns a group name.
*/
std::string const&
get_rgroup () const;
/**
* Start the PAM system. No other PAM functions may be called before
* calling this function.
*
* An error will be thrown on failure.
*/
virtual void
start ();
/**
* Stop the PAM system. No other PAM functions may be used after
* calling this function.
*
* An error will be thrown on failure.
*/
virtual void
stop ();
/**
* Perform PAM authentication. If auth_status is set to
* AUTH_USER, the user will be prompted to authenticate
* themselves. If auth_status is AUTH_NONE, no authentication is
* required, and if AUTH_FAIL, authentication will fail.
*
* An error will be thrown on failure.
*
* @param auth_status initial authentication status.
* @todo Use sysconf(_SC_HOST_NAME_MAX) when libc in a stable
* release supports it.
*/
virtual void
authenticate (status auth_status);
/**
* Import the user environment into PAM. If no environment was
* specified with set_environment, a minimal environment will be
* created containing HOME, LOGNAME, PATH, TERM and LOGNAME.
*
* An error will be thrown on failure.
*
* Note that the environment is not sanitised in any way. This is
* the responsibility of the user.
*/
virtual void
setupenv ();
/**
* Do PAM account management (authorisation).
*
* An error will be thrown on failure.
*/
virtual void
account ();
/**
* Use PAM to establish credentials.
*
* An error will be thrown on failure.
*/
virtual void
cred_establish ();
/**
* Use PAM to delete credentials.
*
* An error will be thrown on failure.
*/
virtual void
cred_delete ();
/**
* Open a PAM session.
*
* An error will be thrown on failure.
*/
virtual void
open_session ();
/**
* Close a PAM session.
*
* An error will be thrown on failure.
*/
virtual void
close_session ();
/**
* Set new authentication status. If newauth > oldauth, newauth
* is returned, otherwise oldauth is returned. This is to ensure
* the authentication status can never be decreased (relaxed).
*
* @param oldauth the current authentication status.
* @param newauth the new authentication status.
* @returns the new authentication status.
*/
static status
change_auth (status oldauth,
status newauth)
{
/* Ensure auth level always escalates. */
if (newauth > oldauth)
return newauth;
else
return oldauth;
}
/**
* Check if PAM is initialised (i.e. start has been called).
* @returns true if initialised, otherwise false.
*/
virtual bool
is_initialised () const = 0;
protected:
/// The PAM service name.
const std::string service;
/// The uid to run as.
uid_t uid;
/// The gid to run as.
gid_t gid;
/// The user name to run as.
std::string user;
/// The command to run.
string_list command;
/// The home directory.
std::string home;
/// The directory to run in.
std::string wd;
/// The user shell to run.
std::string shell;
/// The user environment to set.
environment user_environment;
/// The uid requesting authentication.
uid_t ruid;
/// The gid requesting authentication.
gid_t rgid;
/// The user name requesting authentication.
std::string ruser;
/// The group name requesting authentication.
std::string rgroup;
};
}
#endif /* SBUILD_AUTH_H */
/*
* Local Variables:
* mode:C++
* End:
*/
|