summaryrefslogtreecommitdiffstats
path: root/src/util/open_as.c
blob: 0fa84b797c7cc0786599318e4496dd6e089e9be5 (plain)
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
/*++
/* NAME
/*	open_as 3
/* SUMMARY
/*	open file as user
/* SYNOPSIS
/*	#include <fcntl.h>
/*	#include <open_as.h>
/*
/*	int	open_as(path, flags, mode, euid, egid)
/*	const char *path;
/*	int	mode;
/*	uid_t	euid;
/*	gid_t	egid;
/* DESCRIPTION
/*	open_as() opens the named \fIpath\fR with the named \fIflags\fR
/*	and \fImode\fR, and with the effective rights specified by \fIeuid\fR
/*	and \fIegid\fR.  A -1 result means the open failed.
/* DIAGNOSTICS
/*	Fatal error: no permission to change privilege level.
/* SEE ALSO
/*	set_eugid(3) switch effective rights
/* LICENSE
/* .ad
/* .fi
/*	The Secure Mailer license must be distributed with this software.
/* AUTHOR(S)
/*	Wietse Venema
/*	IBM T.J. Watson Research
/*	P.O. Box 704
/*	Yorktown Heights, NY 10598, USA
/*--*/

/* System library. */

#include <sys_defs.h>
#include <fcntl.h>
#include <unistd.h>

/* Utility library. */

#include "msg.h"
#include "set_eugid.h"
#include "open_as.h"

/* open_as - open file as user */

int     open_as(const char *path, int flags, int mode, uid_t euid, gid_t egid)
{
    uid_t   saved_euid = geteuid();
    gid_t   saved_egid = getegid();
    int     fd;

    /*
     * Switch to the target user privileges.
     */
    set_eugid(euid, egid);

    /*
     * Open that file.
     */
    fd = open(path, flags, mode);

    /*
     * Restore saved privileges.
     */
    set_eugid(saved_euid, saved_egid);

    return (fd);
}