summaryrefslogtreecommitdiffstats
path: root/source3
Commit message (Collapse)AuthorAgeFilesLines
...
* We need to split things up into a new helper function ↵Andrew Bartlett2012-05-171-172/+184
| | | | | | | | | | add_current_ace_to_acl() in order for there to be more posix ACL elements than NT ACL elements (so a group SID can own a file, but also get the group permissions that will be honoured) Andrew Bartlett Slightly modified by Jeremy to reduce diff size. Signed-off-by: Jeremy Allison <jra@samba.org>
* This covers a case where an ID_TYPE_BOTH mapping creates group permissions, ↵Jeremy Allison2012-05-171-2/+5
| | | | but must own the file. Based on an original patch by Andrew Bartlett.
* s3-smbd: Do not merge UID ACE values with GID ACE values for posix ACLAndrew Bartlett2012-05-171-5/+12
| | | | | | | | This might happen when we get a SID mapped to IDMAP_BOTH. Andrew Bartlett Signed-off-by: Jeremy Allison <jra@samba.org>
* s3:onefs: remove all onefs related code as it not maintained anymoreStefan Metzmacher2012-05-1623-10395/+2
| | | | | | | | | | See https://lists.samba.org/archive/samba-technical/2012-May/083631.html for the discussion. metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Wed May 16 11:23:05 CEST 2012 on sn-devel-104
* Fix the overwriting of errno before use in a DEBUG statement and use the ↵Richard Sharpe2012-05-162-5/+8
| | | | | | | return value from store_acl_blob_fsp rather than ignoring it. Autobuild-User: Richard Sharpe <sharpe@samba.org> Autobuild-Date: Wed May 16 03:43:41 CEST 2012 on sn-devel-104
* s3: Fix Coverity ID 242710 Untrusted pointer readVolker Lendecke2012-05-151-1/+1
| | | | | | According to susv3 we have to make sure that we call isupper with values only in the range of an unsigned char. This is best achieved by automatic narrowing through assignment.
* libcli/smb: move smb2cli_ioctl.c from source3 to the toplevelBjörn Baumbach2012-05-154-374/+1
| | | | | | | Signed-off-by: Stefan Metzmacher <metze@samba.org> Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Tue May 15 20:17:01 CEST 2012 on sn-devel-104
* libcli/smb: move smb2cli_query_directory.c from source3 to the toplevelBjörn Baumbach2012-05-154-244/+2
| | | | Signed-off-by: Stefan Metzmacher <metze@samba.org>
* libcli/smb: move smb2cli_query_info.c from source3 to the toplevelBjörn Baumbach2012-05-154-288/+1
| | | | Signed-off-by: Stefan Metzmacher <metze@samba.org>
* libcli/smb: move smb2cli_set_info.c from source3 to the toplevelBjörn Baumbach2012-05-154-211/+1
| | | | Signed-off-by: Stefan Metzmacher <metze@samba.org>
* libcli/smb: move smb2cli_flush.c from source3 to the toplevelBjörn Baumbach2012-05-154-151/+1
| | | | Signed-off-by: Stefan Metzmacher <metze@samba.org>
* libcli/smb: move smb2cli_write.c from source3 to the toplevelBjörn Baumbach2012-05-154-191/+1
| | | | Signed-off-by: Stefan Metzmacher <metze@samba.org>
* libcli/smb: move smb2cli_read.c from source3 to the toplevelBjörn Baumbach2012-05-154-219/+1
| | | | Signed-off-by: Stefan Metzmacher <metze@samba.org>
* libcli/smb: move smb2cli_close.c from source3 to the toplevelStefan Metzmacher2012-05-154-157/+1
| | | | metze
* libcli/smb: move smb2cli_create.c from source3 to the toplevelStefan Metzmacher2012-05-154-318/+1
| | | | metze
* s3:libsmb: avoid interpret_long_date() in smb2cli_createStefan Metzmacher2012-05-151-8/+8
| | | | metze
* s3:cli_np_tstream: include smbXcli_base.h, because we'll use functions from ↵Stefan Metzmacher2012-05-151-0/+1
| | | | | | there metze
* s3: Remove some unused codeVolker Lendecke2012-05-151-14/+0
| | | | | Autobuild-User: Volker Lendecke <vl@samba.org> Autobuild-Date: Tue May 15 18:24:10 CEST 2012 on sn-devel-104
* s3: Fix a likely cut&paste errorVolker Lendecke2012-05-151-1/+1
|
* s3-auth: Rename to init_system_session_info().Andreas Schneider2012-05-154-4/+4
| | | | | Autobuild-User: Andreas Schneider <asn@cryptomilk.org> Autobuild-Date: Tue May 15 13:56:00 CEST 2012 on sn-devel-104
* s3-auth: Don't lookup the system user in pdb.Andreas Schneider2012-05-151-4/+95
| | | | | This fixes bug #8944, ldapsam:trusted and ipasam. It is an additional fix for bug #8567 (0528cb5f3a15b72dcb34ece21a3ffb3e7b8d6eb9).
* s3:auth: remove unused auth_server.cStefan Metzmacher2012-05-156-508/+1
| | | | metze
* s3-auth: remove "security=server" (depricated since 3.6)Stefan Metzmacher2012-05-153-14/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | "security=server" has a lot of problems in the world with modern security (ntlmv2 and krb5). It was also not very reliable, as it needed a stable connection to the password server for the lifetime of the whole client connection! Please use "security=domain" or "security=ads" is you authentication against remote servers (domain controllers). metze -------------- / \ / REST \ / IN \ / PEACE \ / \ | SEC_SERVER | | security=server | | | | | | 12 May | | | | 2012 | *| * * * | * _________)/\\_//(\/(/\)/\//\/\///|_)_______
* selftest: Remove tests for security=serverAndrew Bartlett2012-05-151-4/+1
| | | | Signed-off-by: Stefan Metzmacher <metze@samba.org>
* s3: talloc_zero is not needed for structs we ndr_pull intoVolker Lendecke2012-05-141-1/+1
| | | | | Autobuild-User: Volker Lendecke <vl@samba.org> Autobuild-Date: Mon May 14 18:59:07 CEST 2012 on sn-devel-104
* libcli/smb: move smb2cli_logoff_* from source3 to the top levelStefan Metzmacher2012-05-144-142/+0
| | | | | | | metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Mon May 14 17:02:46 CEST 2012 on sn-devel-104
* libcli/smb: git mv smb2_session.c smb2cli_session.cStefan Metzmacher2012-05-141-1/+1
| | | | metze
* s3:libsmb: s/\<event_context/tevent_context/gc in smb2cli_write.cStefan Metzmacher2012-05-141-2/+2
| | | | metze
* s3:libsmb: s/\<event_context/tevent_context/gc in smb2cli_session.cStefan Metzmacher2012-05-141-2/+2
| | | | metze
* s3:libsmb: s/\<event_context/tevent_context/gc in smb2cli_read.cStefan Metzmacher2012-05-141-2/+2
| | | | metze
* s3:libsmb: s/\<event_context/tevent_context/gc in smb2cli_query_directory.cStefan Metzmacher2012-05-141-2/+2
| | | | metze
* s3:libsmb: s/\<event_context/tevent_context/gc in smb2cli_ioctl.cStefan Metzmacher2012-05-141-1/+1
| | | | metze
* s3:libsmb: s/\<event_context/tevent_context/gc in smb2cli_flush.cStefan Metzmacher2012-05-141-2/+2
| | | | metze
* s3:libsmb: s/\<event_context/tevent_context/gc in smb2cli_create.cStefan Metzmacher2012-05-141-2/+2
| | | | metze
* s3:libsmb: s/\<event_context/tevent_context/gc in smb2cli_close.cStefan Metzmacher2012-05-141-2/+2
| | | | metze
* s3:libsmb: s/\<event_context/tevent_context/gc in smb2cli_tcon.cStefan Metzmacher2012-05-141-4/+4
| | | | metze
* lib/util: move tevent_req_poll_ntstatus() to tevent_ntstatus.cStefan Metzmacher2012-05-142-14/+0
| | | | metze
* s3:torture: add #include "lib/util/tevent_ntstatus.h" to test_addrchange.cStefan Metzmacher2012-05-141-0/+1
| | | | metze
* s3:lib/util: use map_nt_error_from_unix_common() in tevent_req_poll_ntstatus()Stefan Metzmacher2012-05-141-1/+1
| | | | metze
* s3:smb2_close: make the top level code async usingStefan Metzmacher2012-05-141-39/+66
| | | | metze
* s3:smb2_close: add add smbd_smb2_close_send/recv as wrapperStefan Metzmacher2012-05-141-0/+99
| | | | metze
* s3:smb2_close: don't do any marshalling in smbd_smb2_close() let the caller ↵Stefan Metzmacher2012-05-141-19/+71
| | | | | | to it metze
* s3:smb2_tcon: make the top level code async usingStefan Metzmacher2012-05-141-24/+58
| | | | metze
* s3:smb2_tcon: add smbd_smb2_tree_connect_send/recv as wrapperStefan Metzmacher2012-05-141-0/+79
| | | | metze
* s3: Fix Coverity ID 241320 Array compared against 0Volker Lendecke2012-05-141-1/+1
| | | | | | | domain->alt_name is an array, not a pointer Autobuild-User: Volker Lendecke <vl@samba.org> Autobuild-Date: Mon May 14 15:11:47 CEST 2012 on sn-devel-104
* s3: Make SMB_QUERY_FILE_UNIX_BASIC's devno work for filesVolker Lendecke2012-05-141-2/+9
| | | | | According to susv3, st_rdev is valid exactly for char and block devices. Normal files have st_dev set.
* move the dbwrap library to the top levelMichael Adam2012-05-1416-2822/+7
| | | | | Autobuild-User: Michael Adam <obnox@samba.org> Autobuild-Date: Mon May 14 04:04:55 CEST 2012 on sn-devel-104
* s3:build: move lib/dbwrap/dbwrap_util.o to the other dbwrap objects...Michael Adam2012-05-141-2/+3
|
* s3:lib:dbwrap: use [u]int[num]_t consistently in dbwrap_tdb.cMichael Adam2012-05-131-1/+1
|
* s3:lib:dbwrap: use [u]int[num]_t consistently in dbwrap_rbt.cMichael Adam2012-05-131-2/+2
|