2 Unix SMB/CIFS implementation.
4 Copyright (C) Andrew Tridgell 1992-1998
5 Copyright (C) Jeremy Allison 1998-2005
6 Copyright (C) Timur Bakeyev 2005
7 Copyright (C) Bjoern Jacke 2006-2007
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
25 #ifdef HAVE_SYS_PRCTL_H
26 #include <sys/prctl.h>
30 The idea is that this file will eventually have wrappers around all
31 important system calls in samba. The aims are:
33 - to enable easier porting by putting OS dependent stuff in here
35 - to allow for hooks into other "pseudo-filesystems"
37 - to allow easier integration of things like the japanese extensions
39 - to support the philosophy of Samba to expose the features of
40 the OS within the SMB model. In general whatever file/printer/variable
41 expansions/etc make sense to the OS should be acceptable to Samba.
46 /*******************************************************************
47 A wrapper for memalign
48 ********************************************************************/
50 void *sys_memalign( size_t align
, size_t size
)
52 #if defined(HAVE_POSIX_MEMALIGN)
54 int ret
= posix_memalign( &p
, align
, size
);
59 #elif defined(HAVE_MEMALIGN)
60 return memalign( align
, size
);
62 /* On *BSD systems memaligns doesn't exist, but memory will
63 * be aligned on allocations of > pagesize. */
64 #if defined(SYSCONF_SC_PAGESIZE)
65 size_t pagesize
= (size_t)sysconf(_SC_PAGESIZE
);
66 #elif defined(HAVE_GETPAGESIZE)
67 size_t pagesize
= (size_t)getpagesize();
69 size_t pagesize
= (size_t)-1;
71 if (pagesize
== (size_t)-1) {
72 DEBUG(0,("memalign functionalaity not available on this platform!\n"));
75 if (size
< pagesize
) {
78 return SMB_MALLOC(size
);
82 /*******************************************************************
83 A wrapper for usleep in case we don't have one.
84 ********************************************************************/
86 int sys_usleep(long usecs
)
93 * We need this braindamage as the glibc usleep
94 * is not SPEC1170 complient... grumble... JRA.
97 if(usecs
< 0 || usecs
> 1000000) {
105 #else /* HAVE_USLEEP */
107 * Fake it with select...
110 tval
.tv_usec
= usecs
/1000;
111 select(0,NULL
,NULL
,NULL
,&tval
);
113 #endif /* HAVE_USLEEP */
116 /*******************************************************************
117 A read wrapper that will deal with EINTR.
118 ********************************************************************/
120 ssize_t
sys_read(int fd
, void *buf
, size_t count
)
125 ret
= read(fd
, buf
, count
);
126 } while (ret
== -1 && errno
== EINTR
);
130 /*******************************************************************
131 A write wrapper that will deal with EINTR.
132 ********************************************************************/
134 ssize_t
sys_write(int fd
, const void *buf
, size_t count
)
139 ret
= write(fd
, buf
, count
);
140 } while (ret
== -1 && errno
== EINTR
);
144 /*******************************************************************
145 A pread wrapper that will deal with EINTR and 64-bit file offsets.
146 ********************************************************************/
148 #if defined(HAVE_PREAD) || defined(HAVE_PREAD64)
149 ssize_t
sys_pread(int fd
, void *buf
, size_t count
, SMB_OFF_T off
)
154 #if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_OFF64_T) && defined(HAVE_PREAD64)
155 ret
= pread64(fd
, buf
, count
, off
);
157 ret
= pread(fd
, buf
, count
, off
);
159 } while (ret
== -1 && errno
== EINTR
);
164 /*******************************************************************
165 A write wrapper that will deal with EINTR and 64-bit file offsets.
166 ********************************************************************/
168 #if defined(HAVE_PWRITE) || defined(HAVE_PWRITE64)
169 ssize_t
sys_pwrite(int fd
, const void *buf
, size_t count
, SMB_OFF_T off
)
174 #if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_OFF64_T) && defined(HAVE_PWRITE64)
175 ret
= pwrite64(fd
, buf
, count
, off
);
177 ret
= pwrite(fd
, buf
, count
, off
);
179 } while (ret
== -1 && errno
== EINTR
);
184 /*******************************************************************
185 A send wrapper that will deal with EINTR.
186 ********************************************************************/
188 ssize_t
sys_send(int s
, const void *msg
, size_t len
, int flags
)
193 ret
= send(s
, msg
, len
, flags
);
194 } while (ret
== -1 && errno
== EINTR
);
198 /*******************************************************************
199 A sendto wrapper that will deal with EINTR.
200 ********************************************************************/
202 ssize_t
sys_sendto(int s
, const void *msg
, size_t len
, int flags
, const struct sockaddr
*to
, socklen_t tolen
)
207 ret
= sendto(s
, msg
, len
, flags
, to
, tolen
);
208 } while (ret
== -1 && errno
== EINTR
);
212 /*******************************************************************
213 A recv wrapper that will deal with EINTR.
214 ********************************************************************/
216 ssize_t
sys_recv(int fd
, void *buf
, size_t count
, int flags
)
221 ret
= recv(fd
, buf
, count
, flags
);
222 } while (ret
== -1 && errno
== EINTR
);
226 /*******************************************************************
227 A recvfrom wrapper that will deal with EINTR.
228 ********************************************************************/
230 ssize_t
sys_recvfrom(int s
, void *buf
, size_t len
, int flags
, struct sockaddr
*from
, socklen_t
*fromlen
)
235 ret
= recvfrom(s
, buf
, len
, flags
, from
, fromlen
);
236 } while (ret
== -1 && errno
== EINTR
);
240 /*******************************************************************
241 A fcntl wrapper that will deal with EINTR.
242 ********************************************************************/
244 int sys_fcntl_ptr(int fd
, int cmd
, void *arg
)
249 ret
= fcntl(fd
, cmd
, arg
);
250 } while (ret
== -1 && errno
== EINTR
);
254 /*******************************************************************
255 A fcntl wrapper that will deal with EINTR.
256 ********************************************************************/
258 int sys_fcntl_long(int fd
, int cmd
, long arg
)
263 ret
= fcntl(fd
, cmd
, arg
);
264 } while (ret
== -1 && errno
== EINTR
);
268 /*******************************************************************
269 A stat() wrapper that will deal with 64 bit filesizes.
270 ********************************************************************/
272 int sys_stat(const char *fname
,SMB_STRUCT_STAT
*sbuf
)
275 #if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_OFF64_T) && defined(HAVE_STAT64)
276 ret
= stat64(fname
, sbuf
);
278 ret
= stat(fname
, sbuf
);
280 /* we always want directories to appear zero size */
281 if (ret
== 0 && S_ISDIR(sbuf
->st_mode
)) sbuf
->st_size
= 0;
285 /*******************************************************************
286 An fstat() wrapper that will deal with 64 bit filesizes.
287 ********************************************************************/
289 int sys_fstat(int fd
,SMB_STRUCT_STAT
*sbuf
)
292 #if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_OFF64_T) && defined(HAVE_FSTAT64)
293 ret
= fstat64(fd
, sbuf
);
295 ret
= fstat(fd
, sbuf
);
297 /* we always want directories to appear zero size */
298 if (ret
== 0 && S_ISDIR(sbuf
->st_mode
)) sbuf
->st_size
= 0;
302 /*******************************************************************
303 An lstat() wrapper that will deal with 64 bit filesizes.
304 ********************************************************************/
306 int sys_lstat(const char *fname
,SMB_STRUCT_STAT
*sbuf
)
309 #if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_OFF64_T) && defined(HAVE_LSTAT64)
310 ret
= lstat64(fname
, sbuf
);
312 ret
= lstat(fname
, sbuf
);
314 /* we always want directories to appear zero size */
315 if (ret
== 0 && S_ISDIR(sbuf
->st_mode
)) sbuf
->st_size
= 0;
319 /*******************************************************************
320 An ftruncate() wrapper that will deal with 64 bit filesizes.
321 ********************************************************************/
323 int sys_ftruncate(int fd
, SMB_OFF_T offset
)
325 #if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_OFF64_T) && defined(HAVE_FTRUNCATE64)
326 return ftruncate64(fd
, offset
);
328 return ftruncate(fd
, offset
);
332 /*******************************************************************
333 An lseek() wrapper that will deal with 64 bit filesizes.
334 ********************************************************************/
336 SMB_OFF_T
sys_lseek(int fd
, SMB_OFF_T offset
, int whence
)
338 #if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_OFF64_T) && defined(HAVE_LSEEK64)
339 return lseek64(fd
, offset
, whence
);
341 return lseek(fd
, offset
, whence
);
345 /*******************************************************************
346 An fseek() wrapper that will deal with 64 bit filesizes.
347 ********************************************************************/
349 int sys_fseek(FILE *fp
, SMB_OFF_T offset
, int whence
)
351 #if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(LARGE_SMB_OFF_T) && defined(HAVE_FSEEK64)
352 return fseek64(fp
, offset
, whence
);
353 #elif defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(LARGE_SMB_OFF_T) && defined(HAVE_FSEEKO64)
354 return fseeko64(fp
, offset
, whence
);
356 return fseek(fp
, offset
, whence
);
360 /*******************************************************************
361 An ftell() wrapper that will deal with 64 bit filesizes.
362 ********************************************************************/
364 SMB_OFF_T
sys_ftell(FILE *fp
)
366 #if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(LARGE_SMB_OFF_T) && defined(HAVE_FTELL64)
367 return (SMB_OFF_T
)ftell64(fp
);
368 #elif defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(LARGE_SMB_OFF_T) && defined(HAVE_FTELLO64)
369 return (SMB_OFF_T
)ftello64(fp
);
371 return (SMB_OFF_T
)ftell(fp
);
375 /*******************************************************************
376 A creat() wrapper that will deal with 64 bit filesizes.
377 ********************************************************************/
379 int sys_creat(const char *path
, mode_t mode
)
381 #if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_CREAT64)
382 return creat64(path
, mode
);
385 * If creat64 isn't defined then ensure we call a potential open64.
388 return sys_open(path
, O_WRONLY
| O_CREAT
| O_TRUNC
, mode
);
392 /*******************************************************************
393 An open() wrapper that will deal with 64 bit filesizes.
394 ********************************************************************/
396 int sys_open(const char *path
, int oflag
, mode_t mode
)
398 #if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_OPEN64)
399 return open64(path
, oflag
, mode
);
401 return open(path
, oflag
, mode
);
405 /*******************************************************************
406 An fopen() wrapper that will deal with 64 bit filesizes.
407 ********************************************************************/
409 FILE *sys_fopen(const char *path
, const char *type
)
411 #if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_FOPEN64)
412 return fopen64(path
, type
);
414 return fopen(path
, type
);
419 /*******************************************************************
420 A flock() wrapper that will perform the kernel flock.
421 ********************************************************************/
423 void kernel_flock(int fd
, uint32 share_mode
)
425 #if HAVE_KERNEL_SHARE_MODES
427 if (share_mode
== FILE_SHARE_WRITE
) {
428 kernel_mode
= LOCK_MAND
|LOCK_WRITE
;
429 } else if (share_mode
== FILE_SHARE_READ
) {
430 kernel_mode
= LOCK_MAND
|LOCK_READ
;
431 } else if (share_mode
== FILE_SHARE_NONE
) {
432 kernel_mode
= LOCK_MAND
;
435 flock(fd
, kernel_mode
);
443 /*******************************************************************
444 An opendir wrapper that will deal with 64 bit filesizes.
445 ********************************************************************/
447 SMB_STRUCT_DIR
*sys_opendir(const char *name
)
449 #if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_OPENDIR64)
450 return opendir64(name
);
452 return opendir(name
);
456 /*******************************************************************
457 A readdir wrapper that will deal with 64 bit filesizes.
458 ********************************************************************/
460 SMB_STRUCT_DIRENT
*sys_readdir(SMB_STRUCT_DIR
*dirp
)
462 #if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_READDIR64)
463 return readdir64(dirp
);
465 return readdir(dirp
);
469 /*******************************************************************
470 A seekdir wrapper that will deal with 64 bit filesizes.
471 ********************************************************************/
473 void sys_seekdir(SMB_STRUCT_DIR
*dirp
, long offset
)
475 #if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_SEEKDIR64)
476 seekdir64(dirp
, offset
);
478 seekdir(dirp
, offset
);
482 /*******************************************************************
483 A telldir wrapper that will deal with 64 bit filesizes.
484 ********************************************************************/
486 long sys_telldir(SMB_STRUCT_DIR
*dirp
)
488 #if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_TELLDIR64)
489 return (long)telldir64(dirp
);
491 return (long)telldir(dirp
);
495 /*******************************************************************
496 A rewinddir wrapper that will deal with 64 bit filesizes.
497 ********************************************************************/
499 void sys_rewinddir(SMB_STRUCT_DIR
*dirp
)
501 #if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_REWINDDIR64)
508 /*******************************************************************
509 A close wrapper that will deal with 64 bit filesizes.
510 ********************************************************************/
512 int sys_closedir(SMB_STRUCT_DIR
*dirp
)
514 #if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_CLOSEDIR64)
515 return closedir64(dirp
);
517 return closedir(dirp
);
521 /*******************************************************************
522 An mknod() wrapper that will deal with 64 bit filesizes.
523 ********************************************************************/
525 int sys_mknod(const char *path
, mode_t mode
, SMB_DEV_T dev
)
527 #if defined(HAVE_MKNOD) || defined(HAVE_MKNOD64)
528 #if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_MKNOD64) && defined(HAVE_DEV64_T)
529 return mknod64(path
, mode
, dev
);
531 return mknod(path
, mode
, dev
);
534 /* No mknod system call. */
540 /*******************************************************************
541 Wrapper for realpath.
542 ********************************************************************/
544 char *sys_realpath(const char *path
, char *resolved_path
)
546 #if defined(HAVE_REALPATH)
547 return realpath(path
, resolved_path
);
549 /* As realpath is not a system call we can't return ENOSYS. */
555 /*******************************************************************
556 The wait() calls vary between systems
557 ********************************************************************/
559 int sys_waitpid(pid_t pid
,int *status
,int options
)
562 return waitpid(pid
,status
,options
);
563 #else /* HAVE_WAITPID */
564 return wait4(pid
, status
, options
, NULL
);
565 #endif /* HAVE_WAITPID */
568 /*******************************************************************
569 System wrapper for getwd
570 ********************************************************************/
572 char *sys_getwd(char *s
)
576 wd
= (char *)getcwd(s
, PATH_MAX
);
578 wd
= (char *)getwd(s
);
583 /*******************************************************************
584 system wrapper for symlink
585 ********************************************************************/
587 int sys_symlink(const char *oldpath
, const char *newpath
)
593 return symlink(oldpath
, newpath
);
597 /*******************************************************************
598 system wrapper for readlink
599 ********************************************************************/
601 int sys_readlink(const char *path
, char *buf
, size_t bufsiz
)
603 #ifndef HAVE_READLINK
607 return readlink(path
, buf
, bufsiz
);
611 /*******************************************************************
612 system wrapper for link
613 ********************************************************************/
615 int sys_link(const char *oldpath
, const char *newpath
)
621 return link(oldpath
, newpath
);
625 /*******************************************************************
626 chown isn't used much but OS/2 doesn't have it
627 ********************************************************************/
629 int sys_chown(const char *fname
,uid_t uid
,gid_t gid
)
634 DEBUG(1,("WARNING: no chown!\n"));
640 return(chown(fname
,uid
,gid
));
644 /*******************************************************************
646 ********************************************************************/
648 int sys_lchown(const char *fname
,uid_t uid
,gid_t gid
)
653 DEBUG(1,("WARNING: no lchown!\n"));
659 return(lchown(fname
,uid
,gid
));
663 /*******************************************************************
664 os/2 also doesn't have chroot
665 ********************************************************************/
666 int sys_chroot(const char *dname
)
671 DEBUG(1,("WARNING: no chroot!\n"));
677 return(chroot(dname
));
681 #if defined(HAVE_POSIX_CAPABILITIES)
683 /**************************************************************************
684 Try and abstract process capabilities (for systems that have them).
685 ****************************************************************************/
687 /* Set the POSIX capabilities needed for the given purpose into the effective
688 * capability set of the current process. Make sure they are always removed
689 * from the inheritable set, because there is no circumstance in which our
690 * children should inherit our elevated privileges.
692 static bool set_process_capability(enum smbd_capability capability
,
695 cap_value_t cap_vals
[2] = {0};
696 int num_cap_vals
= 0;
700 #if defined(HAVE_PRCTL) && defined(PR_GET_KEEPCAPS) && defined(PR_SET_KEEPCAPS)
701 /* On Linux, make sure that any capabilities we grab are sticky
702 * across UID changes. We expect that this would allow us to keep both
703 * the effective and permitted capability sets, but as of circa 2.6.16,
704 * only the permitted set is kept. It is a bug (which we work around)
705 * that the effective set is lost, but we still require the effective
708 if (!prctl(PR_GET_KEEPCAPS
)) {
709 prctl(PR_SET_KEEPCAPS
, 1);
713 cap
= cap_get_proc();
715 DEBUG(0,("set_process_capability: cap_get_proc failed: %s\n",
720 switch (capability
) {
721 case KERNEL_OPLOCK_CAPABILITY
:
722 #ifdef CAP_NETWORK_MGT
723 /* IRIX has CAP_NETWORK_MGT for oplocks. */
724 cap_vals
[num_cap_vals
++] = CAP_NETWORK_MGT
;
727 case DMAPI_ACCESS_CAPABILITY
:
728 #ifdef CAP_DEVICE_MGT
729 /* IRIX has CAP_DEVICE_MGT for DMAPI access. */
730 cap_vals
[num_cap_vals
++] = CAP_DEVICE_MGT
;
732 /* Linux has CAP_MKNOD for DMAPI access. */
733 cap_vals
[num_cap_vals
++] = CAP_MKNOD
;
736 case LEASE_CAPABILITY
:
738 cap_vals
[num_cap_vals
++] = CAP_LEASE
;
743 SMB_ASSERT(num_cap_vals
<= ARRAY_SIZE(cap_vals
));
745 if (num_cap_vals
== 0) {
750 cap_set_flag(cap
, CAP_EFFECTIVE
, num_cap_vals
, cap_vals
,
751 enable
? CAP_SET
: CAP_CLEAR
);
753 /* We never want to pass capabilities down to our children, so make
754 * sure they are not inherited.
756 cap_set_flag(cap
, CAP_INHERITABLE
, num_cap_vals
, cap_vals
, CAP_CLEAR
);
758 if (cap_set_proc(cap
) == -1) {
759 DEBUG(0, ("set_process_capability: cap_set_proc failed: %s\n",
769 #endif /* HAVE_POSIX_CAPABILITIES */
771 /****************************************************************************
772 Gain the oplock capability from the kernel if possible.
773 ****************************************************************************/
775 void set_effective_capability(enum smbd_capability capability
)
777 #if defined(HAVE_POSIX_CAPABILITIES)
778 set_process_capability(capability
, True
);
779 #endif /* HAVE_POSIX_CAPABILITIES */
782 void drop_effective_capability(enum smbd_capability capability
)
784 #if defined(HAVE_POSIX_CAPABILITIES)
785 set_process_capability(capability
, False
);
786 #endif /* HAVE_POSIX_CAPABILITIES */
789 /**************************************************************************
790 Wrapper for random().
791 ****************************************************************************/
793 long sys_random(void)
795 #if defined(HAVE_RANDOM)
796 return (long)random();
797 #elif defined(HAVE_RAND)
800 DEBUG(0,("Error - no random function available !\n"));
805 /**************************************************************************
806 Wrapper for srandom().
807 ****************************************************************************/
809 void sys_srandom(unsigned int seed
)
811 #if defined(HAVE_SRANDOM)
813 #elif defined(HAVE_SRAND)
816 DEBUG(0,("Error - no srandom function available !\n"));
821 /**************************************************************************
822 Returns equivalent to NGROUPS_MAX - using sysconf if needed.
823 ****************************************************************************/
827 #if defined(SYSCONF_SC_NGROUPS_MAX)
828 int ret
= sysconf(_SC_NGROUPS_MAX
);
829 return (ret
== -1) ? NGROUPS_MAX
: ret
;
835 /**************************************************************************
836 Wrap setgroups and getgroups for systems that declare getgroups() as
837 returning an array of gid_t, but actuall return an array of int.
838 ****************************************************************************/
840 #if defined(HAVE_BROKEN_GETGROUPS)
841 static int sys_broken_getgroups(int setlen
, gid_t
*gidset
)
848 return getgroups(setlen
, &gid
);
852 * Broken case. We need to allocate a
853 * GID_T array of size setlen.
862 setlen
= groups_max();
864 if((group_list
= SMB_MALLOC_ARRAY(GID_T
, setlen
)) == NULL
) {
865 DEBUG(0,("sys_getgroups: Malloc fail.\n"));
869 if((ngroups
= getgroups(setlen
, group_list
)) < 0) {
870 int saved_errno
= errno
;
871 SAFE_FREE(group_list
);
876 for(i
= 0; i
< ngroups
; i
++)
877 gidset
[i
] = (gid_t
)group_list
[i
];
879 SAFE_FREE(group_list
);
883 static int sys_broken_setgroups(int setlen
, gid_t
*gidset
)
891 if (setlen
< 0 || setlen
> groups_max()) {
897 * Broken case. We need to allocate a
898 * GID_T array of size setlen.
901 if((group_list
= SMB_MALLOC_ARRAY(GID_T
, setlen
)) == NULL
) {
902 DEBUG(0,("sys_setgroups: Malloc fail.\n"));
906 for(i
= 0; i
< setlen
; i
++)
907 group_list
[i
] = (GID_T
) gidset
[i
];
909 if(setgroups(setlen
, group_list
) != 0) {
910 int saved_errno
= errno
;
911 SAFE_FREE(group_list
);
916 SAFE_FREE(group_list
);
920 #endif /* HAVE_BROKEN_GETGROUPS */
922 /* This is a list of systems that require the first GID passed to setgroups(2)
923 * to be the effective GID. If your system is one of these, add it here.
925 #if defined (FREEBSD) || defined (DARWINOS)
926 #define USE_BSD_SETGROUPS
929 #if defined(USE_BSD_SETGROUPS)
930 /* Depending on the particular BSD implementation, the first GID that is
931 * passed to setgroups(2) will either be ignored or will set the credential's
932 * effective GID. In either case, the right thing to do is to guarantee that
933 * gidset[0] is the effective GID.
935 static int sys_bsd_setgroups(gid_t primary_gid
, int setlen
, const gid_t
*gidset
)
937 gid_t
*new_gidset
= NULL
;
941 /* setgroups(2) will fail with EINVAL if we pass too many groups. */
944 /* No group list, just make sure we are setting the efective GID. */
946 return setgroups(1, &primary_gid
);
949 /* If the primary gid is not the first array element, grow the array
950 * and insert it at the front.
952 if (gidset
[0] != primary_gid
) {
953 new_gidset
= SMB_MALLOC_ARRAY(gid_t
, setlen
+ 1);
954 if (new_gidset
== NULL
) {
958 memcpy(new_gidset
+ 1, gidset
, (setlen
* sizeof(gid_t
)));
959 new_gidset
[0] = primary_gid
;
964 DEBUG(3, ("forced to truncate group list from %d to %d\n",
969 #if defined(HAVE_BROKEN_GETGROUPS)
970 ret
= sys_broken_setgroups(setlen
, new_gidset
? new_gidset
: gidset
);
972 ret
= setgroups(setlen
, new_gidset
? new_gidset
: gidset
);
977 SAFE_FREE(new_gidset
);
984 #endif /* USE_BSD_SETGROUPS */
986 /**************************************************************************
987 Wrapper for getgroups. Deals with broken (int) case.
988 ****************************************************************************/
990 int sys_getgroups(int setlen
, gid_t
*gidset
)
992 #if defined(HAVE_BROKEN_GETGROUPS)
993 return sys_broken_getgroups(setlen
, gidset
);
995 return getgroups(setlen
, gidset
);
999 /**************************************************************************
1000 Wrapper for setgroups. Deals with broken (int) case and BSD case.
1001 ****************************************************************************/
1003 int sys_setgroups(gid_t
UNUSED(primary_gid
), int setlen
, gid_t
*gidset
)
1005 #if !defined(HAVE_SETGROUPS)
1008 #endif /* HAVE_SETGROUPS */
1010 #if defined(USE_BSD_SETGROUPS)
1011 return sys_bsd_setgroups(primary_gid
, setlen
, gidset
);
1012 #elif defined(HAVE_BROKEN_GETGROUPS)
1013 return sys_broken_setgroups(setlen
, gidset
);
1015 return setgroups(setlen
, gidset
);
1019 /**************************************************************************
1020 Wrappers for setpwent(), getpwent() and endpwent()
1021 ****************************************************************************/
1023 void sys_setpwent(void)
1028 struct passwd
*sys_getpwent(void)
1033 void sys_endpwent(void)
1038 /**************************************************************************
1039 Wrappers for getpwnam(), getpwuid(), getgrnam(), getgrgid()
1040 ****************************************************************************/
1043 struct passwd
*sys_getpwnam(const char *name
)
1045 return getpwnam(name
);
1048 struct passwd
*sys_getpwuid(uid_t uid
)
1050 return getpwuid(uid
);
1053 struct group
*sys_getgrnam(const char *name
)
1055 return getgrnam(name
);
1058 struct group
*sys_getgrgid(gid_t gid
)
1060 return getgrgid(gid
);
1063 /**************************************************************************
1064 Extract a command into an arg list.
1065 ****************************************************************************/
1067 static char **extract_args(TALLOC_CTX
*mem_ctx
, const char *command
)
1076 if (!(trunc_cmd
= talloc_strdup(mem_ctx
, command
))) {
1077 DEBUG(0, ("talloc failed\n"));
1081 if(!(ptr
= strtok_r(trunc_cmd
, " \t", &saveptr
))) {
1082 TALLOC_FREE(trunc_cmd
);
1091 for( argcl
= 1; ptr
; ptr
= strtok_r(NULL
, " \t", &saveptr
))
1094 TALLOC_FREE(trunc_cmd
);
1096 if (!(argl
= TALLOC_ARRAY(mem_ctx
, char *, argcl
+ 1))) {
1101 * Now do the extraction.
1104 if (!(trunc_cmd
= talloc_strdup(mem_ctx
, command
))) {
1108 ptr
= strtok_r(trunc_cmd
, " \t", &saveptr
);
1111 if (!(argl
[i
++] = talloc_strdup(argl
, ptr
))) {
1115 while((ptr
= strtok_r(NULL
, " \t", &saveptr
)) != NULL
) {
1117 if (!(argl
[i
++] = talloc_strdup(argl
, ptr
))) {
1126 DEBUG(0, ("talloc failed\n"));
1127 TALLOC_FREE(trunc_cmd
);
1133 /**************************************************************************
1134 Wrapper for fork. Ensures that mypid is reset. Used so we can write
1135 a sys_getpid() that only does a system call *once*.
1136 ****************************************************************************/
1138 static pid_t mypid
= (pid_t
)-1;
1140 pid_t
sys_fork(void)
1142 pid_t forkret
= fork();
1144 if (forkret
== (pid_t
)0) /* Child - reset mypid so sys_getpid does a system call. */
1150 /**************************************************************************
1151 Wrapper for getpid. Ensures we only do a system call *once*.
1152 ****************************************************************************/
1154 pid_t
sys_getpid(void)
1156 if (mypid
== (pid_t
)-1)
1162 /**************************************************************************
1163 Wrapper for popen. Safer as it doesn't search a path.
1164 Modified from the glibc sources.
1165 modified by tridge to return a file descriptor. We must kick our FILE* habit
1166 ****************************************************************************/
1168 typedef struct _popen_list
1172 struct _popen_list
*next
;
1175 static popen_list
*popen_chain
;
1177 int sys_popen(const char *command
)
1179 int parent_end
, child_end
;
1181 popen_list
*entry
= NULL
;
1184 if (pipe(pipe_fds
) < 0)
1187 parent_end
= pipe_fds
[0];
1188 child_end
= pipe_fds
[1];
1195 if((entry
= SMB_MALLOC_P(popen_list
)) == NULL
)
1198 ZERO_STRUCTP(entry
);
1201 * Extract the command and args into a NULL terminated array.
1204 if(!(argl
= extract_args(NULL
, command
)))
1207 entry
->child_pid
= sys_fork();
1209 if (entry
->child_pid
== -1) {
1213 if (entry
->child_pid
== 0) {
1219 int child_std_end
= STDOUT_FILENO
;
1223 if (child_end
!= child_std_end
) {
1224 dup2 (child_end
, child_std_end
);
1229 * POSIX.2: "popen() shall ensure that any streams from previous
1230 * popen() calls that remain open in the parent process are closed
1231 * in the new child process."
1234 for (p
= popen_chain
; p
; p
= p
->next
)
1237 execv(argl
[0], argl
);
1248 /* Link into popen_chain. */
1249 entry
->next
= popen_chain
;
1250 popen_chain
= entry
;
1251 entry
->fd
= parent_end
;
1264 /**************************************************************************
1265 Wrapper for pclose. Modified from the glibc sources.
1266 ****************************************************************************/
1268 int sys_pclose(int fd
)
1271 popen_list
**ptr
= &popen_chain
;
1272 popen_list
*entry
= NULL
;
1276 /* Unlink from popen_chain. */
1277 for ( ; *ptr
!= NULL
; ptr
= &(*ptr
)->next
) {
1278 if ((*ptr
)->fd
== fd
) {
1280 *ptr
= (*ptr
)->next
;
1286 if (status
< 0 || close(entry
->fd
) < 0)
1290 * As Samba is catching and eating child process
1291 * exits we don't really care about the child exit
1292 * code, a -1 with errno = ECHILD will do fine for us.
1296 wait_pid
= sys_waitpid (entry
->child_pid
, &wstatus
, 0);
1297 } while (wait_pid
== -1 && errno
== EINTR
);
1306 /**************************************************************************
1307 Wrappers for dlopen, dlsym, dlclose.
1308 ****************************************************************************/
1310 void *sys_dlopen(const char *name
, int flags
)
1312 #if defined(HAVE_DLOPEN)
1313 return dlopen(name
, flags
);
1319 void *sys_dlsym(void *handle
, const char *symbol
)
1321 #if defined(HAVE_DLSYM)
1322 return dlsym(handle
, symbol
);
1328 int sys_dlclose (void *handle
)
1330 #if defined(HAVE_DLCLOSE)
1331 return dlclose(handle
);
1337 const char *sys_dlerror(void)
1339 #if defined(HAVE_DLERROR)
1346 int sys_dup2(int oldfd
, int newfd
)
1348 #if defined(HAVE_DUP2)
1349 return dup2(oldfd
, newfd
);
1356 /**************************************************************************
1357 Wrapper for Admin Logs.
1358 ****************************************************************************/
1360 void sys_adminlog(int priority
, const char *format_str
, ...)
1364 char *msgbuf
= NULL
;
1366 va_start( ap
, format_str
);
1367 ret
= vasprintf( &msgbuf
, format_str
, ap
);
1373 #if defined(HAVE_SYSLOG)
1374 syslog( priority
, "%s", msgbuf
);
1376 DEBUG(0,("%s", msgbuf
));
1381 /******** Solaris EA helper function prototypes ********/
1382 #ifdef HAVE_ATTROPEN
1383 #define SOLARIS_ATTRMODE S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP
1384 static int solaris_write_xattr(int attrfd
, const char *value
, size_t size
);
1385 static ssize_t
solaris_read_xattr(int attrfd
, void *value
, size_t size
);
1386 static ssize_t
solaris_list_xattr(int attrdirfd
, char *list
, size_t size
);
1387 static int solaris_unlinkat(int attrdirfd
, const char *name
);
1388 static int solaris_attropen(const char *path
, const char *attrpath
, int oflag
, mode_t mode
);
1389 static int solaris_openat(int fildes
, const char *path
, int oflag
, mode_t mode
);
1392 /**************************************************************************
1393 Wrappers for extented attribute calls. Based on the Linux package with
1394 support for IRIX and (Net|Free)BSD also. Expand as other systems have them.
1395 ****************************************************************************/
1397 ssize_t
sys_getxattr (const char *path
, const char *name
, void *value
, size_t size
)
1399 #if defined(HAVE_GETXATTR)
1400 #ifndef XATTR_ADD_OPT
1401 return getxattr(path
, name
, value
, size
);
1404 return getxattr(path
, name
, value
, size
, 0, options
);
1406 #elif defined(HAVE_GETEA)
1407 return getea(path
, name
, value
, size
);
1408 #elif defined(HAVE_EXTATTR_GET_FILE)
1411 int attrnamespace
= (strncmp(name
, "system", 6) == 0) ?
1412 EXTATTR_NAMESPACE_SYSTEM
: EXTATTR_NAMESPACE_USER
;
1413 const char *attrname
= ((s
=strchr_m(name
, '.')) == NULL
) ? name
: s
+ 1;
1415 * The BSD implementation has a nasty habit of silently truncating
1416 * the returned value to the size of the buffer, so we have to check
1417 * that the buffer is large enough to fit the returned value.
1419 if((retval
=extattr_get_file(path
, attrnamespace
, attrname
, NULL
, 0)) >= 0) {
1424 if((retval
=extattr_get_file(path
, attrnamespace
, attrname
, value
, size
)) >= 0)
1428 DEBUG(10,("sys_getxattr: extattr_get_file() failed with: %s\n", strerror(errno
)));
1430 #elif defined(HAVE_ATTR_GET)
1431 int retval
, flags
= 0;
1432 int valuelength
= (int)size
;
1433 char *attrname
= strchr(name
,'.') + 1;
1435 if (strncmp(name
, "system", 6) == 0) flags
|= ATTR_ROOT
;
1437 retval
= attr_get(path
, attrname
, (char *)value
, &valuelength
, flags
);
1439 return retval
? retval
: valuelength
;
1440 #elif defined(HAVE_ATTROPEN)
1442 int attrfd
= solaris_attropen(path
, name
, O_RDONLY
, 0);
1444 ret
= solaris_read_xattr(attrfd
, value
, size
);
1454 ssize_t
sys_lgetxattr (const char *path
, const char *name
, void *value
, size_t size
)
1456 #if defined(HAVE_LGETXATTR)
1457 return lgetxattr(path
, name
, value
, size
);
1458 #elif defined(HAVE_GETXATTR) && defined(XATTR_ADD_OPT)
1459 int options
= XATTR_NOFOLLOW
;
1460 return getxattr(path
, name
, value
, size
, 0, options
);
1461 #elif defined(HAVE_LGETEA)
1462 return lgetea(path
, name
, value
, size
);
1463 #elif defined(HAVE_EXTATTR_GET_LINK)
1466 int attrnamespace
= (strncmp(name
, "system", 6) == 0) ?
1467 EXTATTR_NAMESPACE_SYSTEM
: EXTATTR_NAMESPACE_USER
;
1468 const char *attrname
= ((s
=strchr_m(name
, '.')) == NULL
) ? name
: s
+ 1;
1470 if((retval
=extattr_get_link(path
, attrnamespace
, attrname
, NULL
, 0)) >= 0) {
1475 if((retval
=extattr_get_link(path
, attrnamespace
, attrname
, value
, size
)) >= 0)
1479 DEBUG(10,("sys_lgetxattr: extattr_get_link() failed with: %s\n", strerror(errno
)));
1481 #elif defined(HAVE_ATTR_GET)
1482 int retval
, flags
= ATTR_DONTFOLLOW
;
1483 int valuelength
= (int)size
;
1484 char *attrname
= strchr(name
,'.') + 1;
1486 if (strncmp(name
, "system", 6) == 0) flags
|= ATTR_ROOT
;
1488 retval
= attr_get(path
, attrname
, (char *)value
, &valuelength
, flags
);
1490 return retval
? retval
: valuelength
;
1491 #elif defined(HAVE_ATTROPEN)
1493 int attrfd
= solaris_attropen(path
, name
, O_RDONLY
|AT_SYMLINK_NOFOLLOW
, 0);
1495 ret
= solaris_read_xattr(attrfd
, value
, size
);
1505 ssize_t
sys_fgetxattr (int filedes
, const char *name
, void *value
, size_t size
)
1507 #if defined(HAVE_FGETXATTR)
1508 #ifndef XATTR_ADD_OPT
1509 return fgetxattr(filedes
, name
, value
, size
);
1512 return fgetxattr(filedes
, name
, value
, size
, 0, options
);
1514 #elif defined(HAVE_FGETEA)
1515 return fgetea(filedes
, name
, value
, size
);
1516 #elif defined(HAVE_EXTATTR_GET_FD)
1519 int attrnamespace
= (strncmp(name
, "system", 6) == 0) ?
1520 EXTATTR_NAMESPACE_SYSTEM
: EXTATTR_NAMESPACE_USER
;
1521 const char *attrname
= ((s
=strchr_m(name
, '.')) == NULL
) ? name
: s
+ 1;
1523 if((retval
=extattr_get_fd(filedes
, attrnamespace
, attrname
, NULL
, 0)) >= 0) {
1528 if((retval
=extattr_get_fd(filedes
, attrnamespace
, attrname
, value
, size
)) >= 0)
1532 DEBUG(10,("sys_fgetxattr: extattr_get_fd() failed with: %s\n", strerror(errno
)));
1534 #elif defined(HAVE_ATTR_GETF)
1535 int retval
, flags
= 0;
1536 int valuelength
= (int)size
;
1537 char *attrname
= strchr(name
,'.') + 1;
1539 if (strncmp(name
, "system", 6) == 0) flags
|= ATTR_ROOT
;
1541 retval
= attr_getf(filedes
, attrname
, (char *)value
, &valuelength
, flags
);
1543 return retval
? retval
: valuelength
;
1544 #elif defined(HAVE_ATTROPEN)
1546 int attrfd
= solaris_openat(filedes
, name
, O_RDONLY
|O_XATTR
, 0);
1548 ret
= solaris_read_xattr(attrfd
, value
, size
);
1558 #if defined(HAVE_EXTATTR_LIST_FILE)
1560 #define EXTATTR_PREFIX(s) (s), (sizeof((s))-1)
1568 { EXTATTR_NAMESPACE_SYSTEM
, EXTATTR_PREFIX("system.") },
1569 { EXTATTR_NAMESPACE_USER
, EXTATTR_PREFIX("user.") },
1577 static ssize_t
bsd_attr_list (int type
, extattr_arg arg
, char *list
, size_t size
)
1579 ssize_t list_size
, total_size
= 0;
1582 /* Iterate through extattr(2) namespaces */
1583 for(t
= 0; t
< (sizeof(extattr
)/sizeof(extattr
[0])); t
++) {
1585 #if defined(HAVE_EXTATTR_LIST_FILE)
1587 list_size
= extattr_list_file(arg
.path
, extattr
[t
].space
, list
, size
);
1590 #if defined(HAVE_EXTATTR_LIST_LINK)
1592 list_size
= extattr_list_link(arg
.path
, extattr
[t
].space
, list
, size
);
1595 #if defined(HAVE_EXTATTR_LIST_FD)
1597 list_size
= extattr_list_fd(arg
.filedes
, extattr
[t
].space
, list
, size
);
1604 /* Some error happend. Errno should be set by the previous call */
1610 /* XXX: Call with an empty buffer may be used to calculate
1611 necessary buffer size. Unfortunately, we can't say, how
1612 many attributes were returned, so here is the potential
1613 problem with the emulation.
1616 /* Take the worse case of one char attribute names -
1617 two bytes per name plus one more for sanity.
1619 total_size
+= list_size
+ (list_size
/2 + 1)*extattr
[t
].len
;
1622 /* Count necessary offset to fit namespace prefixes */
1624 for(i
= 0; i
< list_size
; i
+= list
[i
] + 1)
1625 len
+= extattr
[t
].len
;
1627 total_size
+= list_size
+ len
;
1628 /* Buffer is too small to fit the results */
1629 if(total_size
> size
) {
1633 /* Shift results back, so we can prepend prefixes */
1634 buf
= memmove(list
+ len
, list
, list_size
);
1636 for(i
= 0; i
< list_size
; i
+= len
+ 1) {
1638 strncpy(list
, extattr
[t
].name
, extattr
[t
].len
+ 1);
1639 list
+= extattr
[t
].len
;
1640 strncpy(list
, buf
+ i
+ 1, len
);
1651 #if defined(HAVE_ATTR_LIST) && defined(HAVE_SYS_ATTRIBUTES_H)
1652 static char attr_buffer
[ATTR_MAX_VALUELEN
];
1654 static ssize_t
irix_attr_list(const char *path
, int filedes
, char *list
, size_t size
, int flags
)
1656 int retval
= 0, index
;
1657 attrlist_cursor_t
*cursor
= 0;
1659 attrlist_t
* al
= (attrlist_t
*)attr_buffer
;
1661 size_t ent_size
, left
= size
;
1666 retval
= attr_listf(filedes
, attr_buffer
, ATTR_MAX_VALUELEN
, flags
, cursor
);
1668 retval
= attr_list(path
, attr_buffer
, ATTR_MAX_VALUELEN
, flags
, cursor
);
1670 for (index
= 0; index
< al
->al_count
; index
++) {
1671 ae
= ATTR_ENTRY(attr_buffer
, index
);
1672 ent_size
= strlen(ae
->a_name
) + sizeof("user.");
1673 if (left
>= ent_size
) {
1674 strncpy(bp
, "user.", sizeof("user."));
1675 strncat(bp
, ae
->a_name
, ent_size
- sizeof("user."));
1683 total_size
+= ent_size
;
1685 if (al
->al_more
== 0) break;
1692 retval
= attr_listf(filedes
, attr_buffer
, ATTR_MAX_VALUELEN
, flags
, cursor
);
1694 retval
= attr_list(path
, attr_buffer
, ATTR_MAX_VALUELEN
, flags
, cursor
);
1696 for (index
= 0; index
< al
->al_count
; index
++) {
1697 ae
= ATTR_ENTRY(attr_buffer
, index
);
1698 ent_size
= strlen(ae
->a_name
) + sizeof("system.");
1699 if (left
>= ent_size
) {
1700 strncpy(bp
, "system.", sizeof("system."));
1701 strncat(bp
, ae
->a_name
, ent_size
- sizeof("system."));
1709 total_size
+= ent_size
;
1711 if (al
->al_more
== 0) break;
1714 return (ssize_t
)(retval
? retval
: total_size
);
1719 ssize_t
sys_listxattr (const char *path
, char *list
, size_t size
)
1721 #if defined(HAVE_LISTXATTR)
1722 #ifndef XATTR_ADD_OPT
1723 return listxattr(path
, list
, size
);
1726 return listxattr(path
, list
, size
, options
);
1728 #elif defined(HAVE_LISTEA)
1729 return listea(path
, list
, size
);
1730 #elif defined(HAVE_EXTATTR_LIST_FILE)
1733 return bsd_attr_list(0, arg
, list
, size
);
1734 #elif defined(HAVE_ATTR_LIST) && defined(HAVE_SYS_ATTRIBUTES_H)
1735 return irix_attr_list(path
, 0, list
, size
, 0);
1736 #elif defined(HAVE_ATTROPEN)
1738 int attrdirfd
= solaris_attropen(path
, ".", O_RDONLY
, 0);
1739 if (attrdirfd
>= 0) {
1740 ret
= solaris_list_xattr(attrdirfd
, list
, size
);
1750 ssize_t
sys_llistxattr (const char *path
, char *list
, size_t size
)
1752 #if defined(HAVE_LLISTXATTR)
1753 return llistxattr(path
, list
, size
);
1754 #elif defined(HAVE_LISTXATTR) && defined(XATTR_ADD_OPT)
1755 int options
= XATTR_NOFOLLOW
;
1756 return listxattr(path
, list
, size
, options
);
1757 #elif defined(HAVE_LLISTEA)
1758 return llistea(path
, list
, size
);
1759 #elif defined(HAVE_EXTATTR_LIST_LINK)
1762 return bsd_attr_list(1, arg
, list
, size
);
1763 #elif defined(HAVE_ATTR_LIST) && defined(HAVE_SYS_ATTRIBUTES_H)
1764 return irix_attr_list(path
, 0, list
, size
, ATTR_DONTFOLLOW
);
1765 #elif defined(HAVE_ATTROPEN)
1767 int attrdirfd
= solaris_attropen(path
, ".", O_RDONLY
|AT_SYMLINK_NOFOLLOW
, 0);
1768 if (attrdirfd
>= 0) {
1769 ret
= solaris_list_xattr(attrdirfd
, list
, size
);
1779 ssize_t
sys_flistxattr (int filedes
, char *list
, size_t size
)
1781 #if defined(HAVE_FLISTXATTR)
1782 #ifndef XATTR_ADD_OPT
1783 return flistxattr(filedes
, list
, size
);
1786 return flistxattr(filedes
, list
, size
, options
);
1788 #elif defined(HAVE_FLISTEA)
1789 return flistea(filedes
, list
, size
);
1790 #elif defined(HAVE_EXTATTR_LIST_FD)
1792 arg
.filedes
= filedes
;
1793 return bsd_attr_list(2, arg
, list
, size
);
1794 #elif defined(HAVE_ATTR_LISTF)
1795 return irix_attr_list(NULL
, filedes
, list
, size
, 0);
1796 #elif defined(HAVE_ATTROPEN)
1798 int attrdirfd
= solaris_openat(filedes
, ".", O_RDONLY
|O_XATTR
, 0);
1799 if (attrdirfd
>= 0) {
1800 ret
= solaris_list_xattr(attrdirfd
, list
, size
);
1810 int sys_removexattr (const char *path
, const char *name
)
1812 #if defined(HAVE_REMOVEXATTR)
1813 #ifndef XATTR_ADD_OPT
1814 return removexattr(path
, name
);
1817 return removexattr(path
, name
, options
);
1819 #elif defined(HAVE_REMOVEEA)
1820 return removeea(path
, name
);
1821 #elif defined(HAVE_EXTATTR_DELETE_FILE)
1823 int attrnamespace
= (strncmp(name
, "system", 6) == 0) ?
1824 EXTATTR_NAMESPACE_SYSTEM
: EXTATTR_NAMESPACE_USER
;
1825 const char *attrname
= ((s
=strchr_m(name
, '.')) == NULL
) ? name
: s
+ 1;
1827 return extattr_delete_file(path
, attrnamespace
, attrname
);
1828 #elif defined(HAVE_ATTR_REMOVE)
1830 char *attrname
= strchr(name
,'.') + 1;
1832 if (strncmp(name
, "system", 6) == 0) flags
|= ATTR_ROOT
;
1834 return attr_remove(path
, attrname
, flags
);
1835 #elif defined(HAVE_ATTROPEN)
1837 int attrdirfd
= solaris_attropen(path
, ".", O_RDONLY
, 0);
1838 if (attrdirfd
>= 0) {
1839 ret
= solaris_unlinkat(attrdirfd
, name
);
1849 int sys_lremovexattr (const char *path
, const char *name
)
1851 #if defined(HAVE_LREMOVEXATTR)
1852 return lremovexattr(path
, name
);
1853 #elif defined(HAVE_REMOVEXATTR) && defined(XATTR_ADD_OPT)
1854 int options
= XATTR_NOFOLLOW
;
1855 return removexattr(path
, name
, options
);
1856 #elif defined(HAVE_LREMOVEEA)
1857 return lremoveea(path
, name
);
1858 #elif defined(HAVE_EXTATTR_DELETE_LINK)
1860 int attrnamespace
= (strncmp(name
, "system", 6) == 0) ?
1861 EXTATTR_NAMESPACE_SYSTEM
: EXTATTR_NAMESPACE_USER
;
1862 const char *attrname
= ((s
=strchr_m(name
, '.')) == NULL
) ? name
: s
+ 1;
1864 return extattr_delete_link(path
, attrnamespace
, attrname
);
1865 #elif defined(HAVE_ATTR_REMOVE)
1866 int flags
= ATTR_DONTFOLLOW
;
1867 char *attrname
= strchr(name
,'.') + 1;
1869 if (strncmp(name
, "system", 6) == 0) flags
|= ATTR_ROOT
;
1871 return attr_remove(path
, attrname
, flags
);
1872 #elif defined(HAVE_ATTROPEN)
1874 int attrdirfd
= solaris_attropen(path
, ".", O_RDONLY
|AT_SYMLINK_NOFOLLOW
, 0);
1875 if (attrdirfd
>= 0) {
1876 ret
= solaris_unlinkat(attrdirfd
, name
);
1886 int sys_fremovexattr (int filedes
, const char *name
)
1888 #if defined(HAVE_FREMOVEXATTR)
1889 #ifndef XATTR_ADD_OPT
1890 return fremovexattr(filedes
, name
);
1893 return fremovexattr(filedes
, name
, options
);
1895 #elif defined(HAVE_FREMOVEEA)
1896 return fremoveea(filedes
, name
);
1897 #elif defined(HAVE_EXTATTR_DELETE_FD)
1899 int attrnamespace
= (strncmp(name
, "system", 6) == 0) ?
1900 EXTATTR_NAMESPACE_SYSTEM
: EXTATTR_NAMESPACE_USER
;
1901 const char *attrname
= ((s
=strchr_m(name
, '.')) == NULL
) ? name
: s
+ 1;
1903 return extattr_delete_fd(filedes
, attrnamespace
, attrname
);
1904 #elif defined(HAVE_ATTR_REMOVEF)
1906 char *attrname
= strchr(name
,'.') + 1;
1908 if (strncmp(name
, "system", 6) == 0) flags
|= ATTR_ROOT
;
1910 return attr_removef(filedes
, attrname
, flags
);
1911 #elif defined(HAVE_ATTROPEN)
1913 int attrdirfd
= solaris_openat(filedes
, ".", O_RDONLY
|O_XATTR
, 0);
1914 if (attrdirfd
>= 0) {
1915 ret
= solaris_unlinkat(attrdirfd
, name
);
1925 int sys_setxattr (const char *path
, const char *name
, const void *value
, size_t size
, int flags
)
1927 #if defined(HAVE_SETXATTR)
1928 #ifndef XATTR_ADD_OPT
1929 return setxattr(path
, name
, value
, size
, flags
);
1932 return setxattr(path
, name
, value
, size
, 0, options
);
1934 #elif defined(HAVE_SETEA)
1935 return setea(path
, name
, value
, size
, flags
);
1936 #elif defined(HAVE_EXTATTR_SET_FILE)
1939 int attrnamespace
= (strncmp(name
, "system", 6) == 0) ?
1940 EXTATTR_NAMESPACE_SYSTEM
: EXTATTR_NAMESPACE_USER
;
1941 const char *attrname
= ((s
=strchr_m(name
, '.')) == NULL
) ? name
: s
+ 1;
1943 /* Check attribute existence */
1944 retval
= extattr_get_file(path
, attrnamespace
, attrname
, NULL
, 0);
1946 /* REPLACE attribute, that doesn't exist */
1947 if (flags
& XATTR_REPLACE
&& errno
== ENOATTR
) {
1951 /* Ignore other errors */
1954 /* CREATE attribute, that already exists */
1955 if (flags
& XATTR_CREATE
) {
1961 retval
= extattr_set_file(path
, attrnamespace
, attrname
, value
, size
);
1962 return (retval
< 0) ? -1 : 0;
1963 #elif defined(HAVE_ATTR_SET)
1965 char *attrname
= strchr(name
,'.') + 1;
1967 if (strncmp(name
, "system", 6) == 0) myflags
|= ATTR_ROOT
;
1968 if (flags
& XATTR_CREATE
) myflags
|= ATTR_CREATE
;
1969 if (flags
& XATTR_REPLACE
) myflags
|= ATTR_REPLACE
;
1971 return attr_set(path
, attrname
, (const char *)value
, size
, myflags
);
1972 #elif defined(HAVE_ATTROPEN)
1974 int myflags
= O_RDWR
;
1976 if (flags
& XATTR_CREATE
) myflags
|= O_EXCL
;
1977 if (!(flags
& XATTR_REPLACE
)) myflags
|= O_CREAT
;
1978 attrfd
= solaris_attropen(path
, name
, myflags
, (mode_t
) SOLARIS_ATTRMODE
);
1980 ret
= solaris_write_xattr(attrfd
, value
, size
);
1990 int sys_lsetxattr (const char *path
, const char *name
, const void *value
, size_t size
, int flags
)
1992 #if defined(HAVE_LSETXATTR)
1993 return lsetxattr(path
, name
, value
, size
, flags
);
1994 #elif defined(HAVE_SETXATTR) && defined(XATTR_ADD_OPT)
1995 int options
= XATTR_NOFOLLOW
;
1996 return setxattr(path
, name
, value
, size
, 0, options
);
1997 #elif defined(LSETEA)
1998 return lsetea(path
, name
, value
, size
, flags
);
1999 #elif defined(HAVE_EXTATTR_SET_LINK)
2002 int attrnamespace
= (strncmp(name
, "system", 6) == 0) ?
2003 EXTATTR_NAMESPACE_SYSTEM
: EXTATTR_NAMESPACE_USER
;
2004 const char *attrname
= ((s
=strchr_m(name
, '.')) == NULL
) ? name
: s
+ 1;
2006 /* Check attribute existence */
2007 retval
= extattr_get_link(path
, attrnamespace
, attrname
, NULL
, 0);
2009 /* REPLACE attribute, that doesn't exist */
2010 if (flags
& XATTR_REPLACE
&& errno
== ENOATTR
) {
2014 /* Ignore other errors */
2017 /* CREATE attribute, that already exists */
2018 if (flags
& XATTR_CREATE
) {
2025 retval
= extattr_set_link(path
, attrnamespace
, attrname
, value
, size
);
2026 return (retval
< 0) ? -1 : 0;
2027 #elif defined(HAVE_ATTR_SET)
2028 int myflags
= ATTR_DONTFOLLOW
;
2029 char *attrname
= strchr(name
,'.') + 1;
2031 if (strncmp(name
, "system", 6) == 0) myflags
|= ATTR_ROOT
;
2032 if (flags
& XATTR_CREATE
) myflags
|= ATTR_CREATE
;
2033 if (flags
& XATTR_REPLACE
) myflags
|= ATTR_REPLACE
;
2035 return attr_set(path
, attrname
, (const char *)value
, size
, myflags
);
2036 #elif defined(HAVE_ATTROPEN)
2038 int myflags
= O_RDWR
| AT_SYMLINK_NOFOLLOW
;
2040 if (flags
& XATTR_CREATE
) myflags
|= O_EXCL
;
2041 if (!(flags
& XATTR_REPLACE
)) myflags
|= O_CREAT
;
2042 attrfd
= solaris_attropen(path
, name
, myflags
, (mode_t
) SOLARIS_ATTRMODE
);
2044 ret
= solaris_write_xattr(attrfd
, value
, size
);
2054 int sys_fsetxattr (int filedes
, const char *name
, const void *value
, size_t size
, int flags
)
2056 #if defined(HAVE_FSETXATTR)
2057 #ifndef XATTR_ADD_OPT
2058 return fsetxattr(filedes
, name
, value
, size
, flags
);
2061 return fsetxattr(filedes
, name
, value
, size
, 0, options
);
2063 #elif defined(HAVE_FSETEA)
2064 return fsetea(filedes
, name
, value
, size
, flags
);
2065 #elif defined(HAVE_EXTATTR_SET_FD)
2068 int attrnamespace
= (strncmp(name
, "system", 6) == 0) ?
2069 EXTATTR_NAMESPACE_SYSTEM
: EXTATTR_NAMESPACE_USER
;
2070 const char *attrname
= ((s
=strchr_m(name
, '.')) == NULL
) ? name
: s
+ 1;
2072 /* Check attribute existence */
2073 retval
= extattr_get_fd(filedes
, attrnamespace
, attrname
, NULL
, 0);
2075 /* REPLACE attribute, that doesn't exist */
2076 if (flags
& XATTR_REPLACE
&& errno
== ENOATTR
) {
2080 /* Ignore other errors */
2083 /* CREATE attribute, that already exists */
2084 if (flags
& XATTR_CREATE
) {
2090 retval
= extattr_set_fd(filedes
, attrnamespace
, attrname
, value
, size
);
2091 return (retval
< 0) ? -1 : 0;
2092 #elif defined(HAVE_ATTR_SETF)
2094 char *attrname
= strchr(name
,'.') + 1;
2096 if (strncmp(name
, "system", 6) == 0) myflags
|= ATTR_ROOT
;
2097 if (flags
& XATTR_CREATE
) myflags
|= ATTR_CREATE
;
2098 if (flags
& XATTR_REPLACE
) myflags
|= ATTR_REPLACE
;
2100 return attr_setf(filedes
, attrname
, (const char *)value
, size
, myflags
);
2101 #elif defined(HAVE_ATTROPEN)
2103 int myflags
= O_RDWR
| O_XATTR
;
2105 if (flags
& XATTR_CREATE
) myflags
|= O_EXCL
;
2106 if (!(flags
& XATTR_REPLACE
)) myflags
|= O_CREAT
;
2107 attrfd
= solaris_openat(filedes
, name
, myflags
, (mode_t
) SOLARIS_ATTRMODE
);
2109 ret
= solaris_write_xattr(attrfd
, value
, size
);
2119 /**************************************************************************
2120 helper functions for Solaris' EA support
2121 ****************************************************************************/
2122 #ifdef HAVE_ATTROPEN
2123 static ssize_t
solaris_read_xattr(int attrfd
, void *value
, size_t size
)
2127 if (fstat(attrfd
, &sbuf
) == -1) {
2132 /* This is to return the current size of the named extended attribute */
2134 return sbuf
.st_size
;
2137 /* check size and read xattr */
2138 if (sbuf
.st_size
> size
) {
2143 return read(attrfd
, value
, sbuf
.st_size
);
2146 static ssize_t
solaris_list_xattr(int attrdirfd
, char *list
, size_t size
)
2152 int newfd
= dup(attrdirfd
);
2153 /* CAUTION: The originating file descriptor should not be
2154 used again following the call to fdopendir().
2155 For that reason we dup() the file descriptor
2156 here to make things more clear. */
2157 dirp
= fdopendir(newfd
);
2159 while ((de
= readdir(dirp
))) {
2160 size_t listlen
= strlen(de
->d_name
);
2161 if (!strcmp(de
->d_name
, ".") || !strcmp(de
->d_name
, "..")) {
2162 /* we don't want "." and ".." here: */
2163 DEBUG(10,("skipped EA %s\n",de
->d_name
));
2168 /* return the current size of the list of extended attribute names*/
2171 /* check size and copy entrieѕ + nul into list. */
2172 if ((len
+ listlen
+ 1) > size
) {
2177 safe_strcpy(list
+ len
, de
->d_name
, listlen
);
2185 if (closedir(dirp
) == -1) {
2186 DEBUG(0,("closedir dirp failed: %s\n",strerror(errno
)));
2192 static int solaris_unlinkat(int attrdirfd
, const char *name
)
2194 if (unlinkat(attrdirfd
, name
, 0) == -1) {
2195 if (errno
== ENOENT
) {
2203 static int solaris_attropen(const char *path
, const char *attrpath
, int oflag
, mode_t mode
)
2205 int filedes
= attropen(path
, attrpath
, oflag
, mode
);
2206 if (filedes
== -1) {
2207 DEBUG(10,("attropen FAILED: path: %s, name: %s, errno: %s\n",path
,attrpath
,strerror(errno
)));
2208 if (errno
== EINVAL
) {
2217 static int solaris_openat(int fildes
, const char *path
, int oflag
, mode_t mode
)
2219 int filedes
= openat(fildes
, path
, oflag
, mode
);
2220 if (filedes
== -1) {
2221 DEBUG(10,("openat FAILED: fd: %s, path: %s, errno: %s\n",filedes
,path
,strerror(errno
)));
2222 if (errno
== EINVAL
) {
2231 static int solaris_write_xattr(int attrfd
, const char *value
, size_t size
)
2233 if ((ftruncate(attrfd
, 0) == 0) && (write(attrfd
, value
, size
) == size
)) {
2236 DEBUG(10,("solaris_write_xattr FAILED!\n"));
2240 #endif /*HAVE_ATTROPEN*/
2243 /****************************************************************************
2244 Return the major devicenumber for UNIX extensions.
2245 ****************************************************************************/
2247 uint32
unix_dev_major(SMB_DEV_T dev
)
2249 #if defined(HAVE_DEVICE_MAJOR_FN)
2250 return (uint32
)major(dev
);
2252 return (uint32
)(dev
>> 8);
2256 /****************************************************************************
2257 Return the minor devicenumber for UNIX extensions.
2258 ****************************************************************************/
2260 uint32
unix_dev_minor(SMB_DEV_T dev
)
2262 #if defined(HAVE_DEVICE_MINOR_FN)
2263 return (uint32
)minor(dev
);
2265 return (uint32
)(dev
& 0xff);
2269 #if defined(WITH_AIO)
2271 /*******************************************************************
2272 An aio_read wrapper that will deal with 64-bit sizes.
2273 ********************************************************************/
2275 int sys_aio_read(SMB_STRUCT_AIOCB
*aiocb
)
2277 #if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_AIOCB64) && defined(HAVE_AIO_READ64)
2278 return aio_read64(aiocb
);
2279 #elif defined(HAVE_AIO_READ)
2280 return aio_read(aiocb
);
2287 /*******************************************************************
2288 An aio_write wrapper that will deal with 64-bit sizes.
2289 ********************************************************************/
2291 int sys_aio_write(SMB_STRUCT_AIOCB
*aiocb
)
2293 #if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_AIOCB64) && defined(HAVE_AIO_WRITE64)
2294 return aio_write64(aiocb
);
2295 #elif defined(HAVE_AIO_WRITE)
2296 return aio_write(aiocb
);
2303 /*******************************************************************
2304 An aio_return wrapper that will deal with 64-bit sizes.
2305 ********************************************************************/
2307 ssize_t
sys_aio_return(SMB_STRUCT_AIOCB
*aiocb
)
2309 #if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_AIOCB64) && defined(HAVE_AIO_RETURN64)
2310 return aio_return64(aiocb
);
2311 #elif defined(HAVE_AIO_RETURN)
2312 return aio_return(aiocb
);
2319 /*******************************************************************
2320 An aio_cancel wrapper that will deal with 64-bit sizes.
2321 ********************************************************************/
2323 int sys_aio_cancel(int fd
, SMB_STRUCT_AIOCB
*aiocb
)
2325 #if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_AIOCB64) && defined(HAVE_AIO_CANCEL64)
2326 return aio_cancel64(fd
, aiocb
);
2327 #elif defined(HAVE_AIO_CANCEL)
2328 return aio_cancel(fd
, aiocb
);
2335 /*******************************************************************
2336 An aio_error wrapper that will deal with 64-bit sizes.
2337 ********************************************************************/
2339 int sys_aio_error(const SMB_STRUCT_AIOCB
*aiocb
)
2341 #if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_AIOCB64) && defined(HAVE_AIO_ERROR64)
2342 return aio_error64(aiocb
);
2343 #elif defined(HAVE_AIO_ERROR)
2344 return aio_error(aiocb
);
2351 /*******************************************************************
2352 An aio_fsync wrapper that will deal with 64-bit sizes.
2353 ********************************************************************/
2355 int sys_aio_fsync(int op
, SMB_STRUCT_AIOCB
*aiocb
)
2357 #if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_AIOCB64) && defined(HAVE_AIO_FSYNC64)
2358 return aio_fsync64(op
, aiocb
);
2359 #elif defined(HAVE_AIO_FSYNC)
2360 return aio_fsync(op
, aiocb
);
2367 /*******************************************************************
2368 An aio_fsync wrapper that will deal with 64-bit sizes.
2369 ********************************************************************/
2371 int sys_aio_suspend(const SMB_STRUCT_AIOCB
* const cblist
[], int n
, const struct timespec
*timeout
)
2373 #if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_AIOCB64) && defined(HAVE_AIO_SUSPEND64)
2374 return aio_suspend64(cblist
, n
, timeout
);
2375 #elif defined(HAVE_AIO_FSYNC)
2376 return aio_suspend(cblist
, n
, timeout
);
2382 #else /* !WITH_AIO */
2384 int sys_aio_read(SMB_STRUCT_AIOCB
*aiocb
)
2390 int sys_aio_write(SMB_STRUCT_AIOCB
*aiocb
)
2396 ssize_t
sys_aio_return(SMB_STRUCT_AIOCB
*aiocb
)
2402 int sys_aio_cancel(int fd
, SMB_STRUCT_AIOCB
*aiocb
)
2408 int sys_aio_error(const SMB_STRUCT_AIOCB
*aiocb
)
2414 int sys_aio_fsync(int op
, SMB_STRUCT_AIOCB
*aiocb
)
2420 int sys_aio_suspend(const SMB_STRUCT_AIOCB
* const cblist
[], int n
, const struct timespec
*timeout
)
2425 #endif /* WITH_AIO */
2427 int sys_getpeereid( int s
, uid_t
*uid
)
2429 #if defined(HAVE_PEERCRED)
2431 socklen_t cred_len
= sizeof(struct ucred
);
2434 ret
= getsockopt(s
, SOL_SOCKET
, SO_PEERCRED
, (void *)&cred
, &cred_len
);
2439 if (cred_len
!= sizeof(struct ucred
)) {
2452 int sys_getnameinfo(const struct sockaddr
*psa
,
2461 * For Solaris we must make sure salen is the
2462 * correct length for the incoming sa_family.
2465 if (salen
== sizeof(struct sockaddr_storage
)) {
2466 salen
= sizeof(struct sockaddr_in
);
2467 #if defined(HAVE_IPV6)
2468 if (psa
->sa_family
== AF_INET6
) {
2469 salen
= sizeof(struct sockaddr_in6
);
2473 return getnameinfo(psa
, salen
, host
, hostlen
, service
, servlen
, flags
);
2476 int sys_connect(int fd
, const struct sockaddr
* addr
)
2478 socklen_t salen
= -1;
2480 if (addr
->sa_family
== AF_INET
) {
2481 salen
= sizeof(struct sockaddr_in
);
2482 } else if (addr
->sa_family
== AF_UNIX
) {
2483 salen
= sizeof(struct sockaddr_un
);
2485 #if defined(HAVE_IPV6)
2486 else if (addr
->sa_family
== AF_INET6
) {
2487 salen
= sizeof(struct sockaddr_in6
);
2491 return connect(fd
, addr
, salen
);