Displaying 20 results from an estimated 46 matches for "sysacls".
2019 Aug 06
1
[Bug 14076] New: 3.13 - lib/sysacls.h:118:13: error: array type has incomplete element type 'struct acl'
https://bugzilla.samba.org/show_bug.cgi?id=14076
Bug ID: 14076
Summary: 3.13 - lib/sysacls.h:118:13: error: array type has
incomplete element type 'struct acl'
Product: rsync
Version: 3.1.3
Hardware: x64
OS: All
Status: NEW
Severity: normal
Priority: P5
Component: core...
2006 May 09
3
3.0.23pre1 does not compile on HP-UX 11i
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Just attempted to build 3.0.23pre1 on HP-UX 11.11 today, preparing for a
planned move to a later version of 3.0.x (we're currently down at
3.0.11). Configure ran fine, but make eventually failed here:
Compiling lib/sysacls.c
cc: warning 422: Unknown option "fPIE" ignored.
cc: "lib/sysacls.c", line 1277: warning 611: Type conversion loses
"const" qualifier.
cc: "lib/sysacls.c", line 1321: error 1588: "oldtext" undefined.
cc: "lib/sysacls.c", line 1321: warnin...
2005 Apr 15
17
still ACL bug in 3.0.14a
Sparc Solaris / UFS file system. I have some ACL's set up for a handful
of users and its all worked flawlessly with every incarnation of Samba
I've used over the past couple years, which would be most.
Last Friday evening I upgraded from 3.0.11 to 3.0.13 and some of the users
I have some ACL's set up for promptly found Monday that they couldn't save
new Excel files, they'd be
2005 Aug 23
0
[Bug 3029] New: rsync 2.6.6 with acl patch compile fails
...Severity: normal
Priority: P3
Component: core
AssignedTo: wayned@samba.org
ReportedBy: darin.perusich@cognigencorp.com
QAContact: rsync-qa@samba.org
after applying the acl patch rsync fails to compile and fails with error
"acls.c:23:25: lib/sysacls.h: No such file or directory", sysacl.h resides in
the source root. when sysacl.h is moved to the lib/ directory make configues but
then fails on compile of rsync executable with error "gcc: lib/sysacls.o: No
such file or directory". sysacls.c is also in the source root directory but...
2005 Jun 09
0
[Bug 2780] New: fix acl patch
...diff 2005-06-09 09:10:29.628842558 +0200
@@ -21,7 +21,7 @@
+HEADERS=byteorder.h config.h errcode.h proto.h rsync.h smb_acls.h lib/pool_alloc.h
LIBOBJ=lib/wildmatch.o lib/compat.o lib/snprintf.o lib/mdfour.o \
- lib/permstring.o lib/pool_alloc.o @LIBOBJS@
-+ lib/permstring.o lib/pool_alloc.o lib/sysacls.o @LIBOBJS@
++ lib/permstring.o lib/pool_alloc.o sysacls.o @LIBOBJS@
ZLIBOBJ=zlib/deflate.o zlib/infblock.o zlib/infcodes.o zlib/inffast.o \
zlib/inflate.o zlib/inftrees.o zlib/infutil.o zlib/trees.o \
zlib/zutil.o zlib/adler32.o
@@ -58,7 +58,7 @@
+/* handle passing ACLs between systems */...
2010 Dec 14
7
DO NOT REPLY [Bug 7865] New: files or dirs with more than 16 ACLs are not rsynced correctly
...nc-server logfile (used flags: -axA)
2010/12/08 09:40:06 [21974] rsync: get_acl: sys_acl_get_file(rsynctest/abc/123,
ACL_TYPE_ACCESS): Invalid argument (22)
2010/12/08 09:41:00 [23863] rsync on patdb/rsynctest from xy123 (10.190.81.189)
After changing INITIAL_ACL_SIZE to 128 (in both lines) in lib/sysacls.c the
binary is able to rsync our ACL-topscorer with 115 ACLs.
Maybe, someone can get the dynamic things using ACL_GET after ACL_CNT work
correctly, after the initial ACL_GET using 16 as INITIAL_ACL_SIZE is not
successfull.
--
Configure bugmail: https://bugzilla.samba.org/userprefs.cgi?tab=emai...
2006 Oct 26
1
Rsync 2.6.9pre3 released
I've just released rsync 2.6.9pre3. This should be the last version
before the final 2.6.9 release, and I don't foresee any significant
changes between it and the final release.
Please test this out and email the rsync mailing list with any
questions, comments, bug reports, etc. Thanks!
Here are direct links for the tar file and its signature:
2006 Oct 26
1
Rsync 2.6.9pre3 released
I've just released rsync 2.6.9pre3. This should be the last version
before the final 2.6.9 release, and I don't foresee any significant
changes between it and the final release.
Please test this out and email the rsync mailing list with any
questions, comments, bug reports, etc. Thanks!
Here are direct links for the tar file and its signature:
2006 Nov 01
2
unsuccessful configure with 2.6.8 and acls and extended attributes...
...ut...when I try to 'make' :
(snip)
gcc -I. -I. -g -O2 -DHAVE_CONFIG_H -Wall -W -I./popt -c clientname.c -o
clientname.o
gcc -I. -I. -g -O2 -DHAVE_CONFIG_H -Wall -W -I./popt -c chmod.c -o
chmod.o
gcc -I. -I. -g -O2 -DHAVE_CONFIG_H -Wall -W -I./popt -c acls.c -o acls.o
acls.c:25:25: lib/sysacls.h: No such file or directory
acls.c: In function `unpack_smb_acl':
(snip)
acls.c:1253: warning: assignment makes pointer from integer without a cast
*** Error code 1
Stop in /tmp/rsync-2.6.8.
In the list archives, I see someone has this exact same problem with
2.6.6:
http://lists.samba.or...
2009 May 14
1
patches to enable rsync 3.0.6 compile on AIX 3.2
...o small changes enable 3.0.6 to compile and link on AIX 3.2:
diff -r rsync-3.0.6/lib/getaddrinfo.c rsync-3.0.6-new/lib/getaddrinfo.c
298c298
< if (!inet_aton(node, &ip)) {
---
> if (!inet_pton(AF_INET, node, &ip)) {
diff -r rsync-3.0.6/lib/sysacls.c rsync-3.0.6-new/lib/sysacls.c
1817a1818
> #if defined(ENOTSUP)
1818a1820,1822
> #else
> errno = EINVAL;
> #endif
As has been noted elsewhere, running ./configure with "ksh" works better
than with the default /bin/sh.
--
| Ian! D. Allen - idallen@idallen.ca...
2010 Dec 23
1
DO NOT REPLY [Bug 7884] New: Workaround for ACL problem with ZFS under FreeBSD
...ENOTSUP:
#endif
case ENOSYS:
+#ifdef __FreeBSD__
+ /* Workaround for improper NFSv4 ACL handling in rsync. */
+ case EINVAL:
+#endif
/* No ACLs are available. */
break;
case ENOENT:
--- lib/sysacls.c.orig 2010-12-23 10:47:02.945461082 +0100
+++ lib/sysacls.c 2010-12-23 10:44:52.000000000 +0100
@@ -2771,6 +2771,13 @@ int no_acl_syscall_error(int err)
if (err == ENOENT)
return 1; /* Weird problem with directory ACLs. */
#endif
+#ifdef __FreeBSD__
+ if (err...
2010 Sep 21
1
Old FreeBSD4.11 build.
...r.h... yes
...
checking whether to support extended attributes... Using FreeBSD
extattrs
I then run make where I get the following error:
...
gcc -I. -I. -static -DHAVE_CONFIG_H -Wall -W -I./popt -c
lib/pool_alloc.c -o lib/pool_alloc.o
gcc -I. -I. -static -DHAVE_CONFIG_H -Wall -W -I./popt -c lib/sysacls.c
-o lib/sysacls.o
gcc -I. -I. -static -DHAVE_CONFIG_H -Wall -W -I./popt -c
lib/sysxattrs.c -o lib/sysxattrs.o
lib/sysxattrs.c: In function `sys_lgetxattr':
lib/sysxattrs.c:85: warning: implicit declaration of function
`extattr_get_link'
lib/sysxattrs.c:85: `EXTATTR_NAMESPACE_USER' und...
2002 Jun 24
1
problem compiling samba 2.2.5 on rh 7.3
...2.c
Compiling smbd/uid.c
Compiling smbd/dosmode.c
Compiling smbd/filename.c
Compiling smbd/open.c
Compiling smbd/close.c
Compiling smbd/blocking.c
Compiling smbd/sec_ctx.c
Compiling smbd/vfs.c
Compiling smbd/vfs-wrap.c
Compiling smbd/statcache.c
Compiling smbd/posix_acls.c
Compiling lib/sysacls.c
Compiling smbd/process.c
Compiling smbd/service.c
Compiling smbd/error.c
Compiling printing/printfsp.c
Compiling lib/util_seaccess.c
Compiling libsmb/cli_pipe_util.c
Compiling msdfs/msdfs.c
Compiling param/loadparm.c
Compiling param/params.c
Compiling libsmb/clientgen.c
Compiling libsm...
2004 Oct 19
0
samba 3.0.7 make check fails in function strstr_m
...OK
TimeoutArg OK
ConfigFileArg OK
BogusArg OK
snprintf_Test OK
...............................
also "make" produced a bunch of really frightening warnings:
..............................
lib/sysacls.c: In function `sys_acl_to_text':
lib/sysacls.c:647: warning: assignment discards qualifiers from pointer
target type
passdb/pdb_ldap.c: In function `ldapsam_alias_memberships':
passdb/pdb_ldap.c:2649: warning: passing arg 5 of `smbldap_search' from
incompatible pointer type
lib/sendfil...
2001 Mar 23
5
Samba 2.2 alpha3 released
...e next alpha.
The POSIX ACL mapping feature has been rewritten and now
supports Linux (using the patch at http://acl.bestbits.at/),
Solaris and UnixWare. IRIX is being worked on for the next
release. Implementations for other platforms (AIX, HPUX, True64
etc.) are welcome - look at the code in lib/sysacls.c for
the interface needed.
The documentation has been converted from yodl to DocBook
(thanks Gerald and the documentation authors) but there are
still a few missing parameters.
This code has been running under memory overrun/leak detectors
for weeks now without problems.
Having said that - *ple...
2005 May 16
2
[Bug 2706] An option to transfer POSIX ACLs
https://bugzilla.samba.org/show_bug.cgi?id=2706
wayned@samba.org changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |ASSIGNED
------- Additional Comments From wayned@samba.org 2005-05-16 10:01 -------
There is the acls.diff file in the patches directory
2008 Feb 14
0
unable to compile samba 3.0.28 on Centos 5 64-bit
...xtracted samba-3.0.28.tar.gz and went to
samba-3.0.28/packaging/RHEL and ran sh makerpms.sh and it compiles for a
while and then I get the following error. Any ideas on what to try?
The server is X86_64 running CentOS 5 X64.
Compiling smbd/statcache.c
Compiling smbd/posix_acls.c
Compiling lib/sysacls.c
Compiling lib/server_mutex.c
Compiling smbd/process.c
Compiling smbd/service.c
/tmp/ccdi39IS.s: Assembler messages:
/tmp/ccdi39IS.s:124: Error: Incorrect register `%rax' used with `l' suffix
The following command failed:
gcc -I. -I/usr/src/redhat/BUILD/samba-3.0.28/source -O2 -g
-D_GNU_...
2002 Sep 20
0
ACLs and DACLs not propagated to owner of file/directory
...l when tom creates an
excel spreadsheet or other document under alpha, then jane edits and saves
it. Since the Office products delete a file before saving, the ownership of
the file immediately changes to jane and tom loses access to his own file.
I believe the bug is in sys_acl_set_file() in lib/sysacls.c. Or at
least, a fix could be applied in this call by creating a default ACL and a
user access ACL for the owner (and group) of the file.
I've tested this with samba 2.2.3a and samba 2.2.5 on linux kernels
2.4.17 with linux acl/ea patches from the 0.7 series as well as 2.4.19 with
xattr+acl...
2002 Sep 14
1
Freebsd make problems
...g smbd/trans2.c
Compiling smbd/uid.c
Compiling smbd/dosmode.c
Compiling smbd/filename.c
Compiling smbd/open.c
Compiling smbd/close.c
Compiling smbd/blocking.c
Compiling smbd/sec_ctx.c
Compiling smbd/vfs.c
Compiling smbd/vfs-wrap.c
Compiling smbd/statcache.c
Compiling smbd/posix_acls.c
Compiling lib/sysacls.c
Compiling smbd/process.c
Compiling smbd/service.c
Compiling smbd/error.c
Compiling printing/printfsp.c
Compiling lib/util_seaccess.c
Compiling libsmb/cli_pipe_util.c
Compiling msdfs/msdfs.c
Compiling param/loadparm.c
Compiling param/params.c
Compiling libsmb/clientgen.c
Compiling libsmb/cliconnec...
2003 Apr 02
2
[Acl-Devel] mask ACL
Hello Eric,
I am taking Buck and the rsync mailing list into the CC. Buck is the author of
the rsync patch, he may know more on that problem.
On Wednesday 02 April 2003 00:16, Eric Chen wrote:
> From my understanding, the effecive rights mask 'limits the effective
> rights granted to all groups and to named users', so if you getfacl on a
> file, the group permissions will be