]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/common/chown.c
update
[l4.git] / l4 / pkg / uclibc / lib / contrib / uclibc / libc / sysdeps / linux / common / chown.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * chown() for uClibc
4  *
5  * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
6  *
7  * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
8  */
9
10 #include <sys/syscall.h>
11 #include <unistd.h>
12 #include <bits/wordsize.h>
13
14 #if defined __NR_fchownat && !defined __NR_chown
15 # include <fcntl.h>
16 int chown(const char *path, uid_t owner, gid_t group)
17 {
18         return fchownat(AT_FDCWD, path, owner, group, 0);
19 }
20
21 #else
22
23 # if (__WORDSIZE == 32 && defined(__NR_chown32)) || __WORDSIZE == 64
24 #  ifdef __NR_chown32
25 #   undef __NR_chown
26 #   define __NR_chown __NR_chown32
27 #  endif
28
29 _syscall3(int, chown, const char *, path, uid_t, owner, gid_t, group)
30
31 # else
32
33 #  define __NR___syscall_chown __NR_chown
34 static __inline__ _syscall3(int, __syscall_chown, const char *, path,
35                 __kernel_uid_t, owner, __kernel_gid_t, group)
36
37 int chown(const char *path, uid_t owner, gid_t group)
38 {
39         if (((owner + 1) > (uid_t) ((__kernel_uid_t) - 1U))
40                 || ((group + 1) > (gid_t) ((__kernel_gid_t) - 1U))) {
41                 __set_errno(EINVAL);
42                 return -1;
43         }
44         return (__syscall_chown(path, owner, group));
45 }
46 # endif
47
48 #endif
49 libc_hidden_def(chown)