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
|
/*
* Change queuing and queue checking.
*
* For some of the changes done by this plugin, we want to queue the change if
* it failed rather than simply failing the operation. These functions
* implement that queuing. Before making a change, we also need to check
* whether conflicting changes are already queued, and if so, either queue our
* operation as well or fail our operation so that correct changes won't be
* undone.
*
* Written by Russ Allbery <eagle@eyrie.org>
* Copyright 2006, 2007, 2010, 2013
* The Board of Trustees of the Leland Stanford Junior University
*
* See LICENSE for licensing terms.
*/
#include <config.h>
#include <portable/krb5.h>
#include <portable/system.h>
#include <dirent.h>
#include <errno.h>
#include <fcntl.h>
#include <sys/file.h>
#include <time.h>
#include <plugin/internal.h>
/*
* Maximum number of queue files we will permit for a given user and action
* within a given timestamp, and longest string representation of the count.
*/
#define MAX_QUEUE 100
#define MAX_QUEUE_STR "99"
/* Write out a string, checking that all of it was written. */
#define WRITE_CHECK(fd, s) \
do { \
ssize_t result; \
result = write((fd), (s), strlen(s)); \
if (result < 0 || (size_t) result != strlen(s)) { \
code = sync_error_system(ctx, "cannot write queue file"); \
goto fail; \
} \
} while (0)
/*
* Lock the queue directory and stores the file descriptor of the lock in the
* secon argument. This must be passed into unlock_queue when the queue
* should be unlocked. Returns a Kerberos status code.
*
* We have to use flock for compatibility with the Perl krb5-sync-backend
* script. Perl makes it very annoying to use fcntl locking on Linux.
*/
static krb5_error_code
lock_queue(kadm5_hook_modinfo *config, krb5_context ctx, int *result)
{
char *lockpath = NULL;
int fd = -1;
krb5_error_code code;
if (asprintf(&lockpath, "%s/.lock", config->queue_dir) < 0)
return sync_error_system(ctx, "cannot allocate memory");
fd = open(lockpath, O_RDWR | O_CREAT, 0644);
if (fd < 0) {
code = sync_error_system(ctx, "cannot open lock file %s", lockpath);
goto fail;
}
if (flock(fd, LOCK_EX) < 0) {
code = sync_error_system(ctx, "cannot flock lock file %s", lockpath);
goto fail;
}
free(lockpath);
*result = fd;
return 0;
fail:
free(lockpath);
if (fd >= 0)
close(fd);
return code;
}
/*
* Unlock the queue directory. Takes the file descriptor of the open lock
* file, returned by lock_queue. We assume that this function will never
* fail.
*/
static void
unlock_queue(int fd)
{
close(fd);
}
/*
* Given a Kerberos principal, a context, and an operation, generate the
* prefix for queue files as a newly allocated string. Returns a Kerberos
* status code.
*/
static krb5_error_code
queue_prefix(krb5_context ctx, krb5_principal principal,
const char *operation, char **prefix)
{
char *user = NULL;
char *p;
int oerrno;
krb5_error_code code;
/* Enable and disable should go into the same queue. */
if (strcmp(operation, "disable") == 0)
operation = "enable";
/*
* The first part of the queue file is the principal with the realm
* stripped and any slashes converted to periods.
*/
code = krb5_unparse_name_flags(ctx, principal,
KRB5_PRINCIPAL_UNPARSE_NO_REALM, &user);
if (code != 0)
return code;
while ((p = strchr(user, '/')) != NULL)
*p = '.';
/*
* Add to that the domain and operation. The domain is currently always
* forced to ad (afs used to be possible, but that support was dropped),
* but retained for possible future use.
*/
if (asprintf(prefix, "%s-ad-%s-", user, operation) < 0) {
oerrno = errno;
krb5_free_unparsed_name(ctx, user);
errno = oerrno;
return sync_error_system(ctx, "cannot create queue prefix");
}
krb5_free_unparsed_name(ctx, user);
return 0;
}
/*
* Generate a timestamp from the current date and store it in the argument.
* Uses the ISO timestamp format. Returns a Kerberos status code.
*/
static krb5_error_code
queue_timestamp(krb5_context ctx, char **timestamp)
{
struct tm now;
time_t seconds;
int status;
seconds = time(NULL);
if (seconds == (time_t) -1)
return sync_error_system(ctx, "cannot get current time");
if (gmtime_r(&seconds, &now) == NULL)
return sync_error_system(ctx, "cannot get broken-down time");
now.tm_mon++;
now.tm_year += 1900;
status = asprintf(timestamp, "%04d%02d%02dT%02d%02d%02dZ", now.tm_year,
now.tm_mon, now.tm_mday, now.tm_hour, now.tm_min,
now.tm_sec);
if (status < 0)
return sync_error_system(ctx, "cannot create timestamp");
else
return 0;
}
/*
* Given a Kerberos context, a principal (assumed to have no instance), and an
* operation, check whether there are any existing queued actions for that
* combination, storing the result in the final boolean variable. Returns a
* Kerberos status code.
*/
krb5_error_code
sync_queue_conflict(kadm5_hook_modinfo *config, krb5_context ctx,
krb5_principal principal, const char *operation,
bool *conflict)
{
int lock = -1;
char *prefix = NULL;
DIR *queue = NULL;
struct dirent *entry;
krb5_error_code code;
if (config->queue_dir == NULL)
return sync_error_config(ctx, "configuration setting queue_dir"
" missing");
code = queue_prefix(ctx, principal, operation, &prefix);
if (code != 0)
return code;
code = lock_queue(config, ctx, &lock);
if (code != 0)
goto fail;
queue = opendir(config->queue_dir);
if (queue == NULL) {
code = sync_error_system(ctx, "cannot open %s", config->queue_dir);
goto fail;
}
*conflict = false;
while ((entry = readdir(queue)) != NULL) {
if (strncmp(prefix, entry->d_name, strlen(prefix)) == 0) {
*conflict = true;
break;
}
}
unlock_queue(lock);
closedir(queue);
free(prefix);
return 0;
fail:
if (lock >= 0)
unlock_queue(lock);
if (queue != NULL)
closedir(queue);
free(prefix);
return code;
}
/*
* Queue an action. Takes the plugin configuration, the Kerberos context, the
* principal, the operation, and a password (which may be NULL for enable and
* disable). Returns a Kerberos error code.
*/
krb5_error_code
sync_queue_write(kadm5_hook_modinfo *config, krb5_context ctx,
krb5_principal principal, const char *operation,
const char *password)
{
char *prefix = NULL, *timestamp = NULL, *path = NULL, *user = NULL;
unsigned int i;
krb5_error_code code;
int lock = -1, fd = -1;
if (config->queue_dir == NULL)
return sync_error_config(ctx, "configuration setting queue_dir"
" missing");
code = queue_prefix(ctx, principal, operation, &prefix);
if (code != 0)
return code;
/*
* Lock the queue before the timestamp so that another writer coming up
* at the same time can't get an earlier timestamp.
*/
code = lock_queue(config, ctx, &lock);
if (code != 0)
goto fail;
code = queue_timestamp(ctx, ×tamp);
if (code != 0)
goto fail;
/* Find a unique filename for the queue file. */
for (i = 0; i < MAX_QUEUE; i++) {
free(path);
path = NULL;
code = asprintf(&path, "%s/%s%s-%02d", config->queue_dir, prefix,
timestamp, i);
if (code < 0) {
code = sync_error_system(ctx, "cannot create queue file name");
goto fail;
}
fd = open(path, O_WRONLY | O_CREAT | O_EXCL, 0600);
if (fd >= 0)
break;
}
/* Get the username from the principal without the realm. */
code = krb5_unparse_name_flags(ctx, principal,
KRB5_PRINCIPAL_UNPARSE_NO_REALM, &user);
if (code != 0)
goto fail;
/* Write out the queue data (with hard-coded "ad" domain). */
WRITE_CHECK(fd, user);
WRITE_CHECK(fd, "\nad\n");
WRITE_CHECK(fd, operation);
WRITE_CHECK(fd, "\n");
if (password != NULL) {
WRITE_CHECK(fd, password);
WRITE_CHECK(fd, "\n");
}
/* We're done. */
close(fd);
unlock_queue(lock);
krb5_free_unparsed_name(ctx, user);
free(prefix);
free(timestamp);
free(path);
return 0;
fail:
if (fd >= 0) {
if (path != NULL)
unlink(path);
close(fd);
}
if (lock >= 0)
unlock_queue(lock);
if (user != NULL)
krb5_free_unparsed_name(ctx, user);
free(prefix);
free(timestamp);
free(path);
return code;
}
|