summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2008-11-10s4-netlogon: change parameters string to lsa_BinaryString.Günther Deschner3-3/+16
Guenther
2008-11-10s4-dsdb: add samdb_msg_add_parameters.Günther Deschner1-0/+11
Guenther
2008-11-10s4-dsdb: add samdb_result_parameters.Günther Deschner1-0/+22
Guenther
2008-11-10nterrors: add NT_STATUS_DS_BUSY.Günther Deschner3-0/+3
Guenther
2008-11-10[s3]build: prevent make errors for picky makes when $(EXTRA_ALL_TARGETS) is ↵Michael Adam1-1/+3
empty picky make implementations don't like lines with only tabs in rules or dependencie Michael
2008-11-10[s3]build: build cifs.upcall at build time instead of at install time.Michael Adam1-1/+2
This is to prevent problems with packaging scripts that pass CFLAGS to make but not to make install... Based on a patch for v3-2 by Martin Schwenke <martin@meltin.net>. Michael
2008-11-10ntlm_auth: Put huge NTLMv2 blobs into extra_data on CRAP auth.Kai Blin3-11/+36
This fixes bug #5865
2008-11-08Remove debug code added in error.Jeremy Allison1-13/+2
Jeremy.
2008-11-08Fix a subtle logic bug in the adaption of se_create_child_secdesc(), pass ↵Jeremy Allison3-6/+41
RAW-ACL inheritance tests. Only access masks for SD get/set left to fix. Jeremy.
2008-11-08Make "construct_reply_common" staticVolker Lendecke2-2/+3
2008-11-08Do not write into inbuf for the transs requestVolker Lendecke4-19/+23
Instead, fix up the outbuf in send_xx_reply. In those routines, we know what we are returning.
2008-11-08Remove direct inbuf refs from send_trans_replyVolker Lendecke1-37/+35
2008-11-08change CHECK_READ to use smb_request instead of inbufVolker Lendecke2-5/+5
2008-11-08Remove a direct inbuf reference from reply_nttrans()Volker Lendecke1-2/+1
2008-11-08Remove a direct inbuf reference (should have been removed with 8987641d...)Volker Lendecke1-1/+1
2008-11-08Remove the change to the user context in process_blocking_lock_queue()Volker Lendecke1-76/+8
2008-11-08Converting notify.c to store a request, not an inbufVolker Lendecke3-58/+32
2008-11-08s3: add missing librpc/gen_ndr/ndr_dom_sid.hStefan Metzmacher1-0/+10
metze
2008-11-08s4: dsdb/schema: fix the equality and comment of DN+String syntaxStefan Metzmacher1-3/+2
metze
2008-11-08s3: make idlStefan Metzmacher4-30/+17
metze
2008-11-08security.idl: sometimes ACEs have some padding at the endStefan Metzmacher2-1/+31
metze
2008-11-08s4: use toplevel security.idlStefan Metzmacher2-377/+1
metze
2008-11-08s3: security.idl: split of dom_sid stuff into dom_sid.idlStefan Metzmacher10-176/+104
And use the toplevel ndr_sec_helper.c metze
2008-11-08s4: fix samba4.samba3sam.python testStefan Metzmacher2-5/+10
metze
2008-11-07librpc/ndr: move ndr_sec_helper.c to the toplevelStefan Metzmacher2-1/+1
metze
2008-11-07s4: ndr_sec_helper: remove unused includeStefan Metzmacher1-1/+0
metze
2008-11-07s4: security.idl: for now move server_id also to dom_sid.idlStefan Metzmacher2-7/+8
We should move server_id somewhere else... metze
2008-11-07s4: security.idl: split of dom_sid stuff into dom_sid.idlStefan Metzmacher5-221/+260
This prepares having a shared security.idl file metze
2008-11-06If we didn't inherit any ACE's the ACE pointer should be NULL.Jeremy Allison1-4/+6
Jeremy.
2008-11-06Make us clean under valgrind --leak-check=full by using ↵Jeremy Allison14-50/+24
talloc_autofree_context() instead of NULL. Remove the code in memcache that does a TALLOC_FREE on stored pointers. That's a disaster waiting to happen. If you're storing talloc'ed pointers, you can't know their lifecycle and they should be deleted when their parent context is deleted, so freeing them at some arbitrary point later will be a double-free. Jeremy.
2008-11-06Convert to use VFS layer.Herb Lewis1-1/+1
2008-11-06Add wrapper str_list_make_v3() to replace the old S3 behavior ofJeremy Allison9-19/+36
str_list_make(). From Dan Sledz <dan.sledz@isilon.com>: In samba 3.2 passing NULL or an empty string returned NULL. In master, it now returns a list of length 1 with the first string set to NULL (an empty list). Jeremy.
2008-11-06s4-test: skip netr_DatabaseRedo test.Günther Deschner1-0/+1
Guenther
2008-11-06For proxied named pipes, connect to np/<pipe_name> and send auth infoVolker Lendecke1-2/+107
Signed-off-by: Stefan Metzmacher <metze@samba.org>
2008-11-06s3: build ndr_named_pipe_auth.cStefan Metzmacher4-1/+357
metze
2008-11-06s3: rpc: let serverinfo_to_SamInfo3() work with no pipe_session_keyStefan Metzmacher3-5/+18
metze
2008-11-06s4: rpc_server: listen on named_pipesStefan Metzmacher1-26/+10
metze
2008-11-06s4: smbd: implement stream_socket_named_pipe()Stefan Metzmacher2-1/+368
For now implement just a very simple protocol to negotiate the transport session info. We may need to pass more info later, e.g. client ip or name... metze
2008-11-06librpc/idl: Add named_pipe_auth.idl to Samba4Stefan Metzmacher2-1/+50
metze
2008-11-06mount.cifs: use lock/unlock_mtab scheme from util-linux-ng mount progJeff Layton5-69/+311
The util-linux-ng sources have a good, but rather complex scheme for locking the mtab before updating it. Mount helpers need to follow the same scheme. Advisory locking only works if everyone is using the same locking scheme. Copy the routines we need from util-linux-ng into a separate source file and then have mount.cifs and umount.cifs link in this object. The long term goal is to have these routines in a separate helper library (libmount). Mount helpers can then dynamically link in that lib. Until that happens, this should serve as a suitable stopgap solution. Signed-off-by: Jeff Layton <jlayton@redhat.com>
2008-11-06s4-smbtorture: add test for netr_DatabaseRedo.Günther Deschner1-0/+535
Guenther
2008-11-06s3-rpcclient: add database_redo command.Günther Deschner1-0/+67
Guenther
2008-11-06s3-build: rerun make samba3-idl.Günther Deschner6-23/+240
Guenther
2008-11-06netlogon: use 8bit SamDatabaseID and DeltaEnum in netr_ChangeLogEntry.Günther Deschner1-2/+2
Guenther
2008-11-06netlogon: add 8bit varients of netr_SamDatabaseID8Bit and netr_DeltaEnum.Günther Deschner6-2/+102
Guenther
2008-11-06netlogon-idl: use netr_ChangeLogEntry subcontext in netr_DatabaseRedo.Günther Deschner1-3/+3
Guenther
2008-11-06netlogon-idl: add netr_ChangeLogObject union.Günther Deschner1-3/+7
Guenther
2008-11-06netlogon-idl: add netr_ChangeLogFlags.Günther Deschner1-1/+9
Guenther
2008-11-06netlogon-idl: add netr_ChangeLogEntry.Günther Deschner1-0/+12
Guenther
2008-11-06Fix bug #5825 - Account locking out doesnt work with an LDAP backend.Based ↵Jeremy Allison1-1/+3
on a problem found by Boyang. Only the pdb_nds backend implements login attempts so this was broken for tdbsam and ldap. Jeremy.