aboutsummaryrefslogtreecommitdiff
blob: 7d908e7fe2b5a6230a36e9791ece118b83e322ff (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
/*
 * creat.c
 *
 * creat() wrapper.
 *
 * Copyright 1999-2008 Gentoo Foundation
 * Licensed under the GPL-2
 *
 *  Partly Copyright (C) 1998-9 Pancrazio `Ezio' de Mauro <p@demauro.net>,
 *  as some of the InstallWatch code was used.
 */

extern int EXTERN_NAME(const char *, mode_t);
/* XXX: We use the open() call to simulate create() */
/* static int (*WRAPPER_TRUE_NAME) (const char *, mode_t) = NULL; */

int WRAPPER_NAME(const char *pathname, mode_t mode)
{
	int result = -1;

	if FUNCTION_SANDBOX_SAFE("creat", pathname) {
		check_dlsym(true_open_DEFAULT, symname_open_DEFAULT,
			    symver_open_DEFAULT);
		result = true_open_DEFAULT(pathname, O_CREAT | O_WRONLY | O_TRUNC, mode);
	}

	return result;
}