1998-05-19 23:06:49 +08:00
|
|
|
/* Provide a stub lchown function for systems that lack it.
|
2004-05-03 20:50:24 +08:00
|
|
|
Copyright (C) 1998, 1999, 2002, 2004 Free Software Foundation, Inc.
|
1998-05-19 23:06:49 +08:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software Foundation,
|
2005-05-14 15:58:06 +08:00
|
|
|
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
|
1998-05-19 23:06:49 +08:00
|
|
|
|
|
|
|
/* written by Jim Meyering */
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <errno.h>
|
2004-08-03 06:41:37 +08:00
|
|
|
|
1998-07-17 07:25:29 +08:00
|
|
|
#include "lchown.h"
|
2004-06-19 20:26:53 +08:00
|
|
|
#include "stat-macros.h"
|
1999-09-20 00:46:50 +08:00
|
|
|
|
1999-01-31 22:46:08 +08:00
|
|
|
/* Declare chown to avoid a warning. Don't include unistd.h,
|
|
|
|
because it may have a conflicting prototype for lchown. */
|
|
|
|
int chown ();
|
|
|
|
|
1998-05-19 23:06:49 +08:00
|
|
|
/* Work just like chown, except when FILE is a symbolic link.
|
2004-06-08 20:01:38 +08:00
|
|
|
In that case, set errno to EOPNOTSUPP and return -1.
|
2004-05-03 20:50:24 +08:00
|
|
|
But if autoconf tests determined that chown modifies
|
|
|
|
symlinks, then just call chown. */
|
1998-05-19 23:06:49 +08:00
|
|
|
|
|
|
|
int
|
1998-05-24 21:41:57 +08:00
|
|
|
lchown (const char *file, uid_t uid, gid_t gid)
|
1998-05-19 23:06:49 +08:00
|
|
|
{
|
2004-06-08 20:01:38 +08:00
|
|
|
#if ! CHOWN_MODIFIES_SYMLINK
|
1998-05-19 23:06:49 +08:00
|
|
|
struct stat stats;
|
|
|
|
|
1998-05-24 22:00:03 +08:00
|
|
|
if (lstat (file, &stats) == 0 && S_ISLNK (stats.st_mode))
|
1998-05-19 23:06:49 +08:00
|
|
|
{
|
2004-06-08 20:01:38 +08:00
|
|
|
errno = EOPNOTSUPP;
|
1998-05-19 23:06:49 +08:00
|
|
|
return -1;
|
|
|
|
}
|
2004-06-08 20:01:38 +08:00
|
|
|
#endif
|
1998-05-19 23:06:49 +08:00
|
|
|
|
|
|
|
return chown (file, uid, gid);
|
|
|
|
}
|