/usr/include/ola/base/Credentials.h is in libola-dev 0.9.8-1.
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 | /*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* Credentials.h
* Handle getting and setting a process's credentials.
* Copyright (C) 2012 Simon Newton
*/
/**
* @defgroup cred Credentials
* @brief User & Group Information.
*
* @addtogroup cred
* @{
*
* @file Credentials.h
* @brief User & Group Information
* @}
*/
#ifndef INCLUDE_OLA_BASE_CREDENTIALS_H_
#define INCLUDE_OLA_BASE_CREDENTIALS_H_
#include <unistd.h>
#include <string>
#ifdef _WIN32
#ifndef uid_t
#define uid_t int
#endif
#ifndef gid_t
#define gid_t int
#endif
#endif
namespace ola {
/**
* @addtogroup cred
* @{
*/
// These functions wrap their POSIX counterparts.
/**
* @name Get / Set User ID
* @{
* */
/**
* @brief Check whether the current platform supports User and Group IDs.
* @return true on *nix, false on Windows
*/
bool SupportsUIDs();
/**
* @brief Get the real UID of the process.
* @param uid is the variable to receive the real UID
* @return true on success, false otherwise
*/
bool GetUID(uid_t* uid);
/**
* @brief Get the effective UID of the process.
* @param euid is the variable to receive the effective UID
* @return true on success, false otherwise
*/
bool GetEUID(uid_t* euid);
/**
* @brief Set the effective UID of the process.
* @note This is a one way street, and is only valid if the current euid is 0,
* or euid == new_uid
* @param new_uid is the user id to set the processes to
* @return true on success, false otherwise
*/
bool SetUID(uid_t new_uid);
/**
* @}
*
* @name Get / Set Group ID
* @{
*/
/**
* @brief Get the real Group ID
* @param gid is the variable to receive the real Group ID
* @return true on success, false otherwise
*/
bool GetGID(gid_t* gid);
/**
* @brief Get the effective group ID
* @param egid is the variable to receive the effective Group ID
* @return true on success, false otherwise
*/
bool GetEGID(gid_t* egid);
/**
* @brief Set the effective Group ID of the process
* @note This is a one way street. Only valid if the current egid is 0, or
* egid == new_gid
* @param new_gid new Group ID to set process group to
* @return true on success, false otherwise
*/
bool SetGID(gid_t new_gid);
/**
* @}
*/
/**
* @struct PasswdEntry
* @brief Contains information about a user.
*/
typedef struct {
/** @brief name of the user */
std::string pw_name;
/** @brief Unused currently*/
std::string pw_passwd; // no passwd for now
/** @brief real User ID */
uid_t pw_uid;
/** @brief real Group ID */
gid_t pw_gid;
/** @brief user's home directory */
std::string pw_dir;
/** @brief user's shell program */
std::string pw_shell;
} PasswdEntry;
/**
* @name Lookup User Information
* @{
*/
/**
*
* @brief Lookup a user account by username.
* @note Only thread safe and reentrant if the underlying OS supports it.
* @par
* Wraps [getpwnam() / getpwnam_r()](
* http://man7.org/linux/man-pages/man3/getpwnam.3.html).
* @param[in] name username to search for.
* @param[out] passwd struct to hold information for username name
* @return true on success, false otherwise
*/
bool GetPasswdName(const std::string &name, PasswdEntry *passwd);
/**
* @brief Lookup a user account by UID.
* @note Only thread safe and reentrant if the underlying OS supports it.
* @par
* Wraps [getpwuid()/getpwuid_r()](
* http://man7.org/linux/man-pages/man3/getpwnam.3.html).
* @param[in] uid is the User ID to match against
* @param[out] passwd struct to hold information for uid
* @return true on success, false otherwise
*/
bool GetPasswdUID(uid_t uid, PasswdEntry *passwd);
/**
* @}
*/
/**
* @struct GroupEntry
* @brief Contains information about a group.
*/
typedef struct {
/** @brief name of the group */
std::string gr_name;
/**
* @brief password for the group
* @note UNUSED
*/
std::string gr_passwd; // no passwd for now
/** @brief Group ID */
gid_t gr_gid;
// vector<string> gr_mem; // no members for now
} GroupEntry;
/**
* @name Lookup Group Information.
* @{
*/
/**
* @brief Lookup a group account by name.
* @note This is only thread safe & reentrant if the underlying OS supports it.
* @par
* Wraps [getgrnam()/getgrnam_r()](
* http://man7.org/linux/man-pages/man3/getgrgid.3.html).
* @param[in] name the name of the group to match
* @param[out] passwd is a GroupEntry to be populated upon success
* @returns true on success and false otherwise
*/
bool GetGroupName(const std::string &name, GroupEntry *passwd);
/**
* @brief Lookup a group account by GID.
* @note This is only thread safe & reentrant if the underlying OS supports it.
* @par
* Wraps [getgrpid()/getgrpid_r()](
* http://man7.org/linux/man-pages/man3/getgrgid.3.html).
* @param[in] gid is the Group ID to match against
* @param[out] passwd is a GroupEntry to be populated upon success
* @returns true on success and false otherwise
*/
bool GetGroupGID(gid_t gid, GroupEntry *passwd);
/**
* @}
* @}
*/
} // namespace ola
#endif // INCLUDE_OLA_BASE_CREDENTIALS_H_
|