cdrtools/libschily/fchownat.c

63 lines
1.9 KiB
C
Raw Permalink Normal View History

2025-06-15 04:19:58 +08:00
/* @(#)fchownat.c 1.2 13/10/30 Copyright 2013 J. Schilling */
/*
* Emulate the behavior of fchownat(int fd, const char *name,
* uid_t owner, gid_t group, int flag)
*
* Note that emulation methods that do not use the /proc filesystem are
* not MT safe. In the non-MT-safe case, we do:
*
* savewd()/fchdir()/open(name)/restorewd()
*
* Errors may force us to abort the program as our caller is not expected
* to know that we do more than a simple open() here and that the
* working directory may be changed by us.
*
* Copyright (c) 2013 J. Schilling
*/
/*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* See the file CDDL.Schily.txt in this distribution for details.
* A copy of the CDDL is also available via the Internet at
* http://www.opensource.org/licenses/cddl1.txt
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file CDDL.Schily.txt from this distribution.
*/
#include <schily/unistd.h>
#include <schily/types.h>
#include <schily/fcntl.h>
#include <schily/maxpath.h>
#include <schily/errno.h>
#include <schily/standard.h>
#include <schily/schily.h>
#include "at-defs.h"
#ifndef HAVE_FCHOWNAT
#ifndef HAVE_LCHOWN
#define lchown chown
#endif
/* CSTYLED */
#define PROTO_DECL , uid_t owner, gid_t group, int flag
#define KR_DECL uid_t owner; gid_t group; int flag;
/* CSTYLED */
#define KR_ARGS , owner, group, flag
#define FUNC_CALL(n) (flag & AT_SYMLINK_NOFOLLOW ? \
lchown(n, owner, group) : chown(n, owner, group))
#define FLAG_CHECK() if (flag & ~(AT_SYMLINK_NOFOLLOW)) { \
seterrno(EINVAL); \
return (-1); \
}
#define FUNC_NAME fchownat
#define FUNC_RESULT int
#include "at-base.c"
#endif /* HAVE_FCHOWNAT */