Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-02-25 | Fix up debug info on smb2_rename code. | Jeremy Allison | 1 | -9/+3 | |
Jeremy. | |||||
2010-02-25 | Implement rename/move in SMB2 from Windows7. | Jeremy Allison | 3 | -1/+112 | |
Jeremy. | |||||
2010-02-25 | s3-nltest: fix uninitialized query level. | Günther Deschner | 1 | -1/+1 | |
Guenther | |||||
2010-02-25 | s4-smbtorture: define environment in one place in RPC-SPOOLSS test. | Günther Deschner | 1 | -26/+38 | |
Guenther | |||||
2010-02-25 | s4:kdc add mit plugin code | Simo Sorce | 3 | -0/+459 | |
2010-02-25 | s4:kdc make function static | Simo Sorce | 2 | -6/+1 | |
2010-02-25 | s3-spoolss: Save entire devicemode. | Günther Deschner | 1 | -13/+10 | |
found by RPC-SPOOLSS-PRINTER torture test. Guenther | |||||
2010-02-25 | s4-smbtorture: try to set every single devicemode component in ↵ | Günther Deschner | 1 | -0/+103 | |
RPC-SPOOLSS-PRINTER. Guenther | |||||
2010-02-25 | s4-smbtorture: move ChangeID test to the list of tests we run against ↵ | Günther Deschner | 1 | -4/+4 | |
created printers. Guenther | |||||
2010-02-24 | Make conn_close_all() safe to call from SMB2 sessions (fix crash bug). | Jeremy Allison | 2 | -10/+23 | |
Ensure we don't call close_cnum() with SMB2, also talloc_move the compat_conn pointer from the NULL context onto the tcon context in SMB2 as it's conceptually owned by that pointer. Jeremy. | |||||
2010-02-25 | s4:ldb Fix segfault in ldbsearch store_referral callback | Andrew Bartlett | 1 | -6/+1 | |
sctx->refs_store was not initialised, and that made talloc_realloc grumpy once we started actually returning referrals regularly from Samba4's partitions module (0be57c747825737fa9d64411223e693b055b5f8f by mdw). We now just use talloc_zero() and forget about this manual initialisation work. Tracking down use of uninitialised variables with valgrind was the grand idea when this started, but in practice we just get segfaults in unusual places. Andrew Bartlett | |||||
2010-02-24 | Change the credential handling so that we start with maxmux creds, | Jeremy Allison | 1 | -7/+10 | |
and then return to the client the number of credits per operation that they asked for. This is a more sensible algorithm than just blindly returning "20" on every reply, although we will probably still need more changes to this going forward. Jeremy. | |||||
2010-02-24 | idl:lsa change string type | Simo Sorce | 3 | -7/+7 | |
comapring win<-> traces it looks like this is an lsa_StringLarge | |||||
2010-02-24 | s4:lsa use the correct way to store a domain sid | Simo Sorce | 1 | -7/+5 | |
Converting the sid to a string and then storing a string does not save the sid in the right format. Causing following retrievals to fail to read back a sid with samdb_result_dom_sid(). | |||||
2010-02-24 | s4:lsa avoid confusing ourselves over sam_ldb | Simo Sorce | 1 | -39/+41 | |
Do not use policy_state->sam_ldb and trusted_domain_state->policy->sam_ldb interchangeably all over the place. Just use sam_ldb everywhere and make the code slightly more readable. | |||||
2010-02-24 | s4:lsa cleanup trailing spaces and tabs | Simo Sorce | 1 | -35/+35 | |
2010-02-24 | Revert "s4-smb: Migrate named_pipe_server to tsocket." | Simo Sorce | 2 | -279/+211 | |
This reverts commit 69d5cea2e59162f19460e7ce4b6382fc5fdd6ca0. This commit causes issues with the RPC server, revert it until we find the exact issue and possibly have a torture test to avoid it happening again. Found playing with w2k8r2 and forest trusts. | |||||
2010-02-25 | s4:install Fix bug #7149 reported by JHT. | Andrew Bartlett | 1 | -0/+2 | |
We need to install named.conf.update for provision to succeed from the installed setup file. Andrew Bartlett | |||||
2010-02-25 | s4:scripting/devel Allow tmpfs script to be re-run | Andrew Bartlett | 1 | -1/+4 | |
By doing the unmount, we can avoid double-mounting st and bin | |||||
2010-02-25 | s4:DNS update - change "i" to be unsigned | Matthias Dieter Wallnöfer | 1 | -1/+2 | |
Signed-off-by: Andrew Bartlett <abartlet@samba.org> | |||||
2010-02-25 | s4:ldap_server - make it "signed-safe" | Matthias Dieter Wallnöfer | 3 | -7/+8 | |
Signed-off-by: Andrew Bartlett <abartlet@samba.org> | |||||
2010-02-25 | s4:auth - make some parts "signed-safe" | Matthias Dieter Wallnöfer | 2 | -7/+8 | |
Signed-off-by: Andrew Bartlett <abartlet@samba.org> | |||||
2010-02-25 | s4:cldap_server - make it "signed-safe" | Matthias Dieter Wallnöfer | 2 | -2/+2 | |
Signed-off-by: Andrew Bartlett <abartlet@samba.org> | |||||
2010-02-25 | s4:torture/ldap/basic.c - add a basic test for referral return | Matthias Dieter Wallnöfer | 1 | -3/+219 | |
I implemented this referral test in C since the LDB python API isn't capable to extract referrals from search result sets (there the result sets are simple lists which contain only the matching entries). First I enhanced the RootDSE test to return all partition base DNs in a new null-terminated list "partitions". Then I used this in my referrals test which I've implemented in the LDB api since I needed some certain DN functions. | |||||
2010-02-25 | s4:partition DSDB module - Generate basic referrals | Matthias Dieter Wallnöfer | 2 | -47/+144 | |
This is a first, very basic implementation of the referrals (more informations at MS-ADTS 3.1.1.4.6 and 3.1.1.3.4.1.12). To have the full referral support (and to always point to the right host) the full implementation using DNS will be needed (at the moment we always point to the main DC which is referenceable through the DNS domainname). Signed-off-by: Andrew Bartlett <abartlet@samba.org> | |||||
2010-02-25 | s4:partition DSDB module - change the search and domain scope control handling | Matthias Dieter Wallnöfer | 1 | -35/+22 | |
The domain scope control is always removed, from the search one only the two interesting flags (which are handled) and it is marked as non-critical. Signed-off-by: Andrew Bartlett <abartlet@samba.org> | |||||
2010-02-25 | s4:LDAP server - Enable support for returning referrals through it | Matthias Dieter Wallnöfer | 1 | -0/+22 | |
This is needed for my work regarding the referrals when the domain scope control isn't specified. Signed-off-by: Andrew Bartlett <abartlet@samba.org> | |||||
2010-02-25 | s4:SAMLDB module - ignore referrals | Matthias Dieter Wallnöfer | 1 | -5/+6 | |
They don't cause any harm to our functionality - so ignore them were not needed. Signed-off-by: Andrew Bartlett <abartlet@samba.org> | |||||
2010-02-24 | s4:netlogon remove wrong ZERO_STRUCT of output | Simo Sorce | 1 | -6/+0 | |
This was causing marshalling faults when we returned errors. | |||||
2010-02-24 | s3: Make connections_fetch_record() static | Volker Lendecke | 2 | -4/+2 | |
2010-02-24 | python: ntacls, fix a leftover that is not in the try/except branch | Matthieu Patou | 1 | -1/+0 | |
Signed-off-by: Matthias Dieter Wallnöfer <mwallnoefer@yahoo.de> | |||||
2010-02-24 | dsdb: Add a more explicit error message for constructed attributes | Matthieu Patou | 1 | -0/+1 | |
Signed-off-by: Matthias Dieter Wallnöfer <mwallnoefer@yahoo.de> | |||||
2010-02-24 | s4/drs_util: 'net drs showrepl' command implementation | Kamen Mazdrashki | 3 | -1/+613 | |
2010-02-24 | s4/idl: Regenerate IDL for DRSUAPI interface | Kamen Mazdrashki | 2 | -58/+58 | |
2010-02-24 | s4/drs: Propagate drsuapi_DsReplicaGetInfoRequest2 changes in source code | Kamen Mazdrashki | 2 | -6/+6 | |
2010-02-24 | s4/idl: drsuapi_DsReplicaGetInfoRequest2 - 'string2' to 'value_dn_str' | Kamen Mazdrashki | 1 | -1/+1 | |
2010-02-24 | s4/idl: drsuapi_DsReplicaGetInfoRequest2 - 'string1' to 'attribute_name' | Kamen Mazdrashki | 1 | -1/+1 | |
2010-02-24 | s4/drs: Propagate drsuapi_DsReplicaGetInfoRequest... changes into source code | Kamen Mazdrashki | 3 | -6/+6 | |
2010-02-24 | s4/idl: rename 'guid1' to 'source_dsa_guid' in ↵ | Kamen Mazdrashki | 1 | -2/+2 | |
drsuapi_DsReplicaGetInfoRequest description | |||||
2010-02-24 | s4/drs_util: 'net drs replicate' command implementation | Kamen Mazdrashki | 3 | -4/+254 | |
2010-02-24 | s4/drs_util: Add public function for binding to a DC | Kamen Mazdrashki | 1 | -0/+48 | |
2010-02-24 | s4/drs_util: Refactor code to use net_drs_connection object for DRSUAPI ↵ | Kamen Mazdrashki | 3 | -34/+44 | |
connecitons | |||||
2010-02-24 | s4/drs_util: Move DRSUAPI connection data into separate object | Kamen Mazdrashki | 1 | -8/+18 | |
We need this so we can create independent DRS connections to different DCs. | |||||
2010-02-24 | s4/net_drs: Utility macros for conditions checking | Kamen Mazdrashki | 1 | -0/+20 | |
2010-02-24 | s4/drs: Propagate drsuapi_DsReplicaSync changes in source base | Kamen Mazdrashki | 3 | -9/+16 | |
2010-02-24 | s4/drs: Propagate drsuapi_DsReplicaSyncRequest1 changes in source base | Kamen Mazdrashki | 1 | -1/+1 | |
2010-02-24 | s4/idl: Regenerate IDL for DRSUAPI interface | Kamen Mazdrashki | 4 | -56/+66 | |
2010-02-24 | s4/idl: drsuapi.idl fix drsuapi_DsReplicaSync definition | Kamen Mazdrashki | 1 | -3/+3 | |
- Function should accept pointer to drsuapi_DsReplicaSyncRequest. While this doesn't generate essentially different code for NDR parser, using pointer will make drsuapi_DsReplicaSync descritpin with the rest of the functions in DRSUAPI interface. Another benefit is that this way we could create Wireshark dissector directly from Samba's verions for drsuapi.idl - 'level' and thus the switch_type() should be uint32 | |||||
2010-02-24 | s4/idl: drsuapi.idl fix drsuapi_DsReplicaSyncRequest1 description | Kamen Mazdrashki | 1 | -2/+2 | |
- pointer to naming_context should be [ref] pointer (i.e. not NULL pointer) - other_info is actually the DNS name for Source DSA and is used if DRSUAPI_DRS_SYNC_BYNAME is passed ref: [MS-DRSR] 5.39 | |||||
2010-02-24 | s3:selftest: handle spaces in test names | Stefan Metzmacher | 1 | -1/+2 | |
metze |