summaryrefslogtreecommitdiff
path: root/source3
AgeCommit message (Collapse)AuthorFilesLines
2011-06-01Remove the char * argument from the SMB_VFS_GETWD() call. Now alwaysJeremy Allison7-26/+27
returns malloc'ed memory. Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Wed Jun 1 04:06:12 CEST 2011 on sn-devel-104
2011-06-01Change sys_getcd() to take no arguments and always return malloc'ed memory ↵Jeremy Allison5-20/+50
(or NULL). Part of the efforts to remove PATH_MAX on modern systems.
2011-06-01Add check for the getcwd function being able to take NULL,0 arguments.Jeremy Allison2-0/+21
2011-06-01Split the ACE flag mapping between nfs4 and WindowsJeremy Allison1-14/+59
into two separate functions rather than trying to do it inline. Allows us to carefully control what flags are mapped to what in one place. Modification to bug #8191 - vfs_gpfs dosn't honor ACE_FLAG_INHERITED_ACE
2011-06-01s3:idmap_ldap: allow creation of ldap stored mappings for explicitly ↵Michael Adam1-1/+1
configured domains. After the preparations, this is achieved by using idmap_ldap_allocate_id_internal() as get_new_id rw method instead of idmap_ldap_allocate_id().
2011-06-01s3:idmap_ldap: rename idmap_ldap_get_new_id to idmap_ldap_allocate_idMichael Adam1-6/+6
This is in preparation of allowing allocating ldap based domain-specific configs.
2011-06-01s3:idmap_ldap: rename idmap_ldap_allocate_id to idmap_ldap_allocate_id_internalMichael Adam1-3/+3
This is in preparation of allowing allocating ldap based domain-specific configs.
2011-06-01s3: fix more -Wunused-but-set-variable build warnings.Günther Deschner4-10/+2
Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Wed Jun 1 00:29:30 CEST 2011 on sn-devel-104
2011-05-31struct make "struct shadow_copy_data" its own talloc contextVolker Lendecke4-19/+7
2011-05-31s3: Remove SHADOW_COPY_DATA typedefVolker Lendecke8-11/+19
2011-05-31s3: Mark sockets in error state writableVolker Lendecke1-0/+23
Without this patch, when a socket only has a write event pending, we will never detect an error condition. I've seen winbind doing 12:19:13.659964 gettimeofday({1306837153, 659984}, NULL) = 0 <0.000016> 12:19:13.660109 poll([{fd=35, events=POLLOUT}, {fd=32, events=POLLIN|POLLHUP}], 2, 9996) = 1 ([{fd=35, revents=POLLERR|POLLHUP}]) <0.000015> 12:19:13.660253 gettimeofday({1306837153, 660269}, NULL) = 0 <0.000013> 12:19:13.660298 poll([{fd=35, events=POLLOUT}, {fd=32, events=POLLIN|POLLHUP}], 2, 9996) = 1 ([{fd=35, revents=POLLERR|POLLHUP}]) <0.000015> for a while when trying to connect to a DC when the socket had died already. Volker Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Tue May 31 20:59:10 CEST 2011 on sn-devel-104
2011-05-31s3:passdb: add GPL/copyright header to machine_sid.hMichael Adam1-0/+21
2011-05-31s3:nmbd: add _NMBD_NMBD_H_ guard to nmbd.hMichael Adam1-0/+5
2011-05-31s3:nmbd: add GPL/Copyright header to nmbd.hMichael Adam1-0/+20
2011-05-31s3:rpc_server: add _RPC_SERVER_SRV_ACCESS_CHECK_H_ guard to srv_access_check.hMichael Adam1-0/+5
2011-05-31s3:rpc_server: add GPL/Copyright header to rpc_server/srv_access_check.hMichael Adam1-0/+29
2011-05-31s3: add _LIB_IDMAP_CACHE_H_ guard to lib/idmap_cache.hMichael Adam1-0/+5
2011-05-31s3: add GPL/Copyright header to lib/idmap_cache.hMichael Adam1-0/+20
2011-05-31s3:librpc: remove unused file librpc/ndr/util.hMichael Adam1-4/+0
Autobuild-User: Michael Adam <obnox@samba.org> Autobuild-Date: Tue May 31 15:19:46 CEST 2011 on sn-devel-104
2011-05-31s3:winbindd_nrd: include ../librpc/ndr/libndr.h instead of librpc/ndr/util.hMichael Adam1-1/+1
2011-05-31s3:libads/ndr: include ../librpc/ndr/libndr.h instead of librpc/ndr/util.hMichael Adam1-1/+1
2011-05-31s3: Support shadow copy display over SMB2Volker Lendecke1-0/+121
Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Tue May 31 12:53:10 CEST 2011 on sn-devel-104
2011-05-31s3:lib/eventlog/proto.h: add _LIB_EVENTLOG_PROTO_H_ guardMichael Adam1-0/+5
2011-05-31s3:lib/eventlog/proto.h: add GPL/Copyright headerMichael Adam1-0/+22
2011-05-31s3-libsmb remove ldap_err2string() as common nterrs[] has the constantsAndrew Bartlett1-6/+0
Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Tue May 31 08:58:00 CEST 2011 on sn-devel-104
2011-05-31s3-build Don't allow undefined symbols in pam_smbpass.soAndrew Bartlett1-0/+1
2011-05-31s3-utils: fix another -Wunused-but-set-variable build warning.Günther Deschner1-3/+0
Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Tue May 31 05:18:42 CEST 2011 on sn-devel-104
2011-05-31s3-libsmb: fix build warning of cli_qfilename().Günther Deschner1-1/+1
Guenther
2011-05-31s3-build Put memcache in a standalone libraryAndrew Bartlett1-2/+7
Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Tue May 31 04:08:08 CEST 2011 on sn-devel-104
2011-05-31s3-lib Move source3-specific malloc replacements into a seperate fileAndrew Bartlett4-145/+179
This will make it easier to create a dep tree for otherwise simple libraries. Andrew Bartlett
2011-05-31lib/util Move sys_memalign into lib/util/system.cAndrew Bartlett2-37/+0
2011-05-31s3-smbd Fix conn_msg.c: Cannot return in a void functionAndrew Bartlett1-1/+1
2011-05-31s3-lib Improve indentation of errmap_unixAndrew Bartlett1-36/+36
This also makes it easier to compare and contrast with the source4 version, because the differences here matter, and need to be resolved with care. Andrew Bartlett
2011-05-31s3-lib: Use ARRAY_SIZE() to walk the error mapping tablesAndrew Bartlett1-6/+4
This gives a constant termination condition, and may help the compiler. Andrew Bartlett
2011-05-31s3:libgpo/gpo_proto.h: add _LIBGPO_GPO_PROTO_H_ guardMichael Adam1-0/+5
2011-05-31s3:libgpo/gpo_proto.h: add GPL/Copyright headerMichael Adam1-0/+19
2011-05-31s3:libads/kerberos_proto.h: add _LIBADS_KERBEROS_PROTO_H_ guardMichael Adam1-0/+5
2011-05-31s3:libads/kerberos_proto.h: add GPL/Copyright headerMichael Adam1-0/+29
2011-05-31s3:libads/ads_proto.h: add _LIBADS_ADS_PROTO_H_ guardMichael Adam1-0/+5
2011-05-31s3:libads/ads_proto.h: add GPL/Copyright headerMichael Adam1-0/+31
2011-05-31s3:nmbd/nmbd_proto.h: add GPL/Copyright headerMichael Adam1-0/+25
2011-05-31s3:winbindd/idmap_proto.h: add _WINBINDD_IDMAP_PROTO_H_ guardMichael Adam1-0/+4
2011-05-31s3:winbindd/idmap_proto.h: add GPL/Copyright headerMichael Adam1-0/+25
2011-05-31s3:groupdb/proto.h: add _GROUPDB_PROTO_H_ guardMichael Adam1-0/+5
2011-05-31s3:groupdb/proto.h: add GPL/Copyright headerMichael Adam1-0/+22
2011-05-31s3:smbd/proto.h: add _SMBD_PROTO_H_ guardMichael Adam1-0/+5
2011-05-31s3:smbd/proto.h: add GPL/Copyright headerMichael Adam1-0/+44
2011-05-31s3:locking/proto.h: add _LOCKING_PROTO_H_ guardMichael Adam1-0/+5
2011-05-31s3:locking/proto.h: add GPL/Copyright headerMichael Adam1-0/+21
2011-05-31s3:auth/proto.h: add _AUTH_PROTO_H_ guardMichael Adam1-0/+5