blob: 96ff931e169ea1120247db3797c928ecb10e121c [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
5 * Created: Sat Sep 9 01:56:14 1995 ylo
6 * Code for uid-swapping.
7 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10008
9#include "includes.h"
Damien Millercaf6dd62000-08-29 11:33:50 +110010RCSID("$OpenBSD: uidswap.c,v 1.8 2000/08/28 03:50:54 deraadt Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100011
12#include "ssh.h"
13#include "uidswap.h"
Damien Miller91606b12000-06-28 08:22:29 +100014#ifdef WITH_IRIX_AUDIT
15#include <sat.h>
16#endif /* WITH_IRIX_AUDIT */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100017
Damien Miller95def091999-11-25 00:26:21 +110018/*
19 * Note: all these functions must work in all of the following cases:
20 * 1. euid=0, ruid=0
21 * 2. euid=0, ruid!=0
22 * 3. euid!=0, ruid!=0
23 * Additionally, they must work regardless of whether the system has
24 * POSIX saved uids or not.
25 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100026
27#ifdef _POSIX_SAVED_IDS
28/* Lets assume that posix saved ids also work with seteuid, even though that
29 is not part of the posix specification. */
30#define SAVED_IDS_WORK_WITH_SETEUID
Damien Millerd4a8b7e1999-10-27 13:42:43 +100031
32/* Saved effective uid. */
33static uid_t saved_euid = 0;
34
Damien Milleree1c0b32000-01-21 00:18:15 +110035#endif /* _POSIX_SAVED_IDS */
36
Damien Miller95def091999-11-25 00:26:21 +110037/*
38 * Temporarily changes to the given uid. If the effective user
39 * id is not root, this does nothing. This call cannot be nested.
40 */
Damien Miller4af51302000-04-16 11:18:38 +100041void
Damien Miller95def091999-11-25 00:26:21 +110042temporarily_use_uid(uid_t uid)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100043{
44#ifdef SAVED_IDS_WORK_WITH_SETEUID
Damien Miller95def091999-11-25 00:26:21 +110045 /* Save the current euid. */
46 saved_euid = geteuid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +100047
Damien Miller95def091999-11-25 00:26:21 +110048 /* Set the effective uid to the given (unprivileged) uid. */
49 if (seteuid(uid) == -1)
Damien Millercaf6dd62000-08-29 11:33:50 +110050 debug("seteuid %u: %.100s", (u_int) uid, strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +100051#else /* SAVED_IDS_WORK_WITH_SETUID */
Damien Miller95def091999-11-25 00:26:21 +110052 /* Propagate the privileged uid to all of our uids. */
53 if (setuid(geteuid()) < 0)
Damien Millercaf6dd62000-08-29 11:33:50 +110054 debug("setuid %u: %.100s", (u_int) geteuid(), strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +100055
Damien Miller95def091999-11-25 00:26:21 +110056 /* Set the effective uid to the given (unprivileged) uid. */
57 if (seteuid(uid) == -1)
Damien Millercaf6dd62000-08-29 11:33:50 +110058 debug("seteuid %u: %.100s", (u_int) uid, strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +100059#endif /* SAVED_IDS_WORK_WITH_SETEUID */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100060}
61
Damien Miller95def091999-11-25 00:26:21 +110062/*
63 * Restores to the original uid.
64 */
Damien Miller4af51302000-04-16 11:18:38 +100065void
Damien Miller95def091999-11-25 00:26:21 +110066restore_uid()
Damien Millerd4a8b7e1999-10-27 13:42:43 +100067{
68#ifdef SAVED_IDS_WORK_WITH_SETEUID
Damien Miller95def091999-11-25 00:26:21 +110069 /* Set the effective uid back to the saved uid. */
70 if (seteuid(saved_euid) < 0)
Damien Millercaf6dd62000-08-29 11:33:50 +110071 debug("seteuid %u: %.100s", (u_int) saved_euid, strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +100072#else /* SAVED_IDS_WORK_WITH_SETEUID */
Damien Miller5428f641999-11-25 11:54:57 +110073 /*
74 * We are unable to restore the real uid to its unprivileged value.
75 * Propagate the real uid (usually more privileged) to effective uid
76 * as well.
77 */
Damien Miller95def091999-11-25 00:26:21 +110078 setuid(getuid());
Damien Millerd4a8b7e1999-10-27 13:42:43 +100079#endif /* SAVED_IDS_WORK_WITH_SETEUID */
80}
81
Damien Miller95def091999-11-25 00:26:21 +110082/*
83 * Permanently sets all uids to the given uid. This cannot be
84 * called while temporarily_use_uid is effective.
85 */
Damien Miller4af51302000-04-16 11:18:38 +100086void
Damien Miller95def091999-11-25 00:26:21 +110087permanently_set_uid(uid_t uid)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100088{
Damien Miller91606b12000-06-28 08:22:29 +100089#ifdef WITH_IRIX_AUDIT
90 if (sysconf(_SC_AUDIT)) {
91 debug("Setting sat id to %d", (int) uid);
92 if (satsetid(uid))
Damien Millerc83aa832000-08-15 10:08:00 +100093 debug("error setting satid: %.100s", strerror(errno));
Damien Miller91606b12000-06-28 08:22:29 +100094 }
95#endif /* WITH_IRIX_AUDIT */
96
Damien Miller95def091999-11-25 00:26:21 +110097 if (setuid(uid) < 0)
Damien Millercaf6dd62000-08-29 11:33:50 +110098 debug("setuid %u: %.100s", (u_int) uid, strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +100099}