summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* s4:ldap.py - enhance SAM user/groups behaviour test regarding default ↵Matthias Dieter Wallnöfer2010-09-241-5/+34
| | | | | | primary groups Signed-off-by: Andrew Bartlett <abartlet@samba.org>
* libds:flag_mapping.c - support also the default read-only DC primary groupMatthias Dieter Wallnöfer2010-09-241-1/+3
| | | | Signed-off-by: Andrew Bartlett <abartlet@samba.org>
* s4:python/samba/join.py - add a comment to point out that NCs have to be ↵Matthias Dieter Wallnöfer2010-09-241-0/+1
| | | | | | | | assigned dynamically We could also have DNS partitions (only to make one example). Signed-off-by: Andrew Bartlett <abartlet@samba.org>
* s4:python/samba/join.py - use constant for DC function levelMatthias Dieter Wallnöfer2010-09-241-1/+2
| | | | Signed-off-by: Andrew Bartlett <abartlet@samba.org>
* s4:rootdse LDB module - make more use of LDB result constantsMatthias Dieter Wallnöfer2010-09-241-17/+17
| | | | Signed-off-by: Andrew Bartlett <abartlet@samba.org>
* s4:rootdse LDB module - fix comment typoMatthias Dieter Wallnöfer2010-09-241-1/+1
| | | | Signed-off-by: Andrew Bartlett <abartlet@samba.org>
* s4:password_hash LDB module - don't assign "lp_ctx" twiceMatthias Dieter Wallnöfer2010-09-241-2/+2
| | | | Signed-off-by: Andrew Bartlett <abartlet@samba.org>
* ldb:ldb_match.c - fix counter variable typeMatthias Dieter Wallnöfer2010-09-241-1/+1
| | | | Signed-off-by: Andrew Bartlett <abartlet@samba.org>
* ldb:ldb_msg_add_linearized_dn - handle NULL DNsMatthias Dieter Wallnöfer2010-09-241-2/+8
| | | | | | Don't let the routine crash Signed-off-by: Andrew Bartlett <abartlet@samba.org>
* s4:rootdse LDB module - fix counter typesMatthias Dieter Wallnöfer2010-09-241-1/+1
| | | | Signed-off-by: Andrew Bartlett <abartlet@samba.org>
* s4:extended_dn_in LDB module - fix a counter typeMatthias Dieter Wallnöfer2010-09-241-1/+1
| | | | Signed-off-by: Andrew Bartlett <abartlet@samba.org>
* s4:drepl_out_helpers.c - fix a counter typeMatthias Dieter Wallnöfer2010-09-241-1/+1
| | | | Signed-off-by: Andrew Bartlett <abartlet@samba.org>
* s4:rpc_server/dcerpc_server.c - fix a "const" warningMatthias Dieter Wallnöfer2010-09-241-1/+1
| | | | Signed-off-by: Andrew Bartlett <abartlet@samba.org>
* s4:libcli/resolve/file.c - fix "const" warningMatthias Dieter Wallnöfer2010-09-241-1/+1
| | | | Signed-off-by: Andrew Bartlett <abartlet@samba.org>
* s3-waf: remove duplicate CONFIGFILE from dynconfig.py which caused sysconfigdirGünther Deschner2010-09-231-1/+0
| | | | | | to be ignored. Guenther
* s3-waf: fix the build of nsstest with --enable-nss-wrapper.Günther Deschner2010-09-231-0/+1
| | | | Guenther
* s4-waf: move the RPC_NDR subsystems to main librpc wscript_build.Günther Deschner2010-09-232-222/+187
| | | | Guenther
* s4/eventlog6: Add dummy implementation for calls 0x5 and 0xBAnatoliy Atanasov2010-09-231-2/+6
| | | | The code is enough to let us run all dcdiag tests against samba4 server
* s4/eventlog6: Build and hook EventLog6 RPC endpont mapper and idlAnatoliy Atanasov2010-09-236-3/+24
|
* s4/eventlog6: Add endpoint server for EventLog6 RPCAnatoliy Atanasov2010-09-231-0/+319
| | | | The file is generated using PIDL --template command.
* s4/eventlog6: Add idl for EventLog6 RPCAnatoliy Atanasov2010-09-231-0/+343
| | | | The idl is translated from [MS-EVEN6].pdf.
* pidl:NDR/Parser: fix range() for arraysStefan Metzmacher2010-09-231-1/+32
| | | | metze
* tdb: add restoreVolker Lendecke2010-09-237-2/+321
| | | | Based on an idea by Simon McVittie, largely rewritten
* selftest: Pass prefix to setup_env function.Jelmer Vernooij2010-09-231-4/+4
|
* selftest: Use variable for clientdir.Jelmer Vernooij2010-09-231-18/+20
|
* torture: Remove unused variable.Jelmer Vernooij2010-09-231-1/+0
|
* s3-waf: convert LIBMSRPC into a subsystem.Günther Deschner2010-09-231-27/+23
| | | | Guenther
* s3-waf: fix the build after rpc_server crypto changes.Günther Deschner2010-09-231-4/+8
| | | | Guenther
* s3-dcerps: check auth_typeSimo Sorce2010-09-231-0/+15
| | | | | | make sure the auth type used throught the auth operation is consistent. Signed-off-by: Günther Deschner <gd@samba.org>
* s3-dcerpc: Use spnego own sign/seal functionsSimo Sorce2010-09-231-64/+47
| | | | Signed-off-by: Günther Deschner <gd@samba.org>
* libcli: fix compile warningSimo Sorce2010-09-231-0/+2
| | | | Signed-off-by: Günther Deschner <gd@samba.org>
* s3-dcerpc: remove auth_data_free_funcSimo Sorce2010-09-233-16/+3
| | | | | | | Everything is using a talloc pointer now, no need to have an accessor function to free data anymore. Signed-off-by: Günther Deschner <gd@samba.org>
* s3-dcerpc: make auth context opaqueSimo Sorce2010-09-235-126/+189
| | | | | | | | | This way we always double check in advance that the context is of the right type with talloc_get_type_abort instead of potentially accessing random memory by addressing the wrong structure in the union. Signed-off-by: Günther Deschner <gd@samba.org>
* srv_pipe: reorganize code so that related functions are close to each otherSimo Sorce2010-09-231-253/+252
| | | | Signed-off-by: Günther Deschner <gd@samba.org>
* s3-dcerpc: finally remove the legaqcy spnego_type variable from pipe_auth_dataSimo Sorce2010-09-236-48/+13
| | | | Signed-off-by: Günther Deschner <gd@samba.org>
* s3-dcerpc: use new spnego server codeSimo Sorce2010-09-231-200/+122
| | | | Signed-off-by: Günther Deschner <gd@samba.org>
* s3-dcerpc: add spnego server helpersSimo Sorce2010-09-237-6/+542
| | | | | | squashed: add michlistMIC signature checks Signed-off-by: Günther Deschner <gd@samba.org>
* spnego: make spnego_context publicSimo Sorce2010-09-232-21/+19
| | | | Signed-off-by: Günther Deschner <gd@samba.org>
* s3-dcerpc: move client spnego stuff in /librpc/cryptoSimo Sorce2010-09-235-8/+7
| | | | Signed-off-by: Günther Deschner <gd@samba.org>
* spnego: avoid explicit dependency on dcerpc specific structuresSimo Sorce2010-09-234-47/+72
| | | | Signed-off-by: Günther Deschner <gd@samba.org>
* s3-dcesrv: use gssapi helper in srv_pipe.cSimo Sorce2010-09-231-223/+46
| | | | Signed-off-by: Günther Deschner <gd@samba.org>
* s3-dcerpc: add server helpers for gssapi authSimo Sorce2010-09-233-1/+292
| | | | Signed-off-by: Günther Deschner <gd@samba.org>
* s3-dcesrv: use ntlmssp helper in srv_pipe.cSimo Sorce2010-09-231-204/+173
| | | | Signed-off-by: Günther Deschner <gd@samba.org>
* s3-dcerpc: add server helpers for ntlmssp authSimo Sorce2010-09-233-1/+179
| | | | Signed-off-by: Günther Deschner <gd@samba.org>
* gssapi: remove unused function argumentSimo Sorce2010-09-233-7/+1
| | | | Signed-off-by: Günther Deschner <gd@samba.org>
* gssapi: avoid explicit dependency on dcerpc specific structuresSimo Sorce2010-09-235-41/+22
| | | | Signed-off-by: Günther Deschner <gd@samba.org>
* s3-dcerpc: move crypto stuff in /librpc/cryptoSimo Sorce2010-09-239-18/+19
| | | | Signed-off-by: Günther Deschner <gd@samba.org>
* s3-dsgetdcname: always pass in messaging context.Günther Deschner2010-09-2311-41/+51
| | | | | | Volker, please check. Guenther
* s3:registry: try to fix the build of reg_parse_internal on HP-UXMichael Adam2010-09-231-1/+1
| | | | The HP compiler does not seem to like {} for char[4].
* s3: fix tdbdump build on Solaris and other boxesBjörn Jacke2010-09-231-1/+1
| | | | needed to fix up aea64ef275b6e94ca7afb8fa2bb172416773abdf