summaryrefslogtreecommitdiffstats
path: root/source4
Commit message (Collapse)AuthorAgeFilesLines
...
* r6545: some notes and experiments on ref ptrs, testing with midlAndrew Tridgell2007-10-101-0/+220
| | | | (This used to be commit 87d3d55bd38ddcdbf42a920c65b5cf94649ca607)
* r6544: Use common structures between SAMR, NETLGON and the Krb5 PAC.Andrew Bartlett2007-10-108-35/+98
| | | | | | | | Fill out the group list for the SamLogon reply, so clients get the supplementary groups. Andrew Bartlett (This used to be commit d9c31e60a72c345e3a23a7eb742906bcfc18721c)
* r6540: Implement a bunch more SAMR functions.Tim Potter2007-10-103-19/+139
| | | | (This used to be commit 7ab240644ec6cfd0449df7e2dfe0eb1b8a52ccdb)
* r6539: A patch from jbm:Tim Potter2007-10-101-13/+16
| | | | | | - convert rpcclient to new credential code - allow anonymous connections (This used to be commit f40977c42145e202ddfe50c9a7daad624b06cc59)
* r6538: Somehow building shared libraries was broken. Either AC_CANONICAL_HOSTTim Potter2007-10-101-0/+2
| | | | | | or AC_CANONICAL_SYSTEM needs to be called in order for $host_os to be defined. (This used to be commit d05cb53399d98804fd8590c10a3db43deb53180a)
* r6534: Patch from lieschen to fix our vital user creation tools :-)Andrew Bartlett2007-10-101-2/+2
| | | | | Andrew Bartlett (This used to be commit 1a1f0bd33c8e9ad89df0073aa9c2e42822ec7903)
* r6531: fixed gentest with new credentials codeAndrew Tridgell2007-10-101-7/+16
| | | | (This used to be commit 3e610e3952867658a59424301a6ef0573e0a0c1f)
* r6530: the server ID of a connection in the single process model should beAndrew Tridgell2007-10-101-1/+1
| | | | | | | based on the new socket fd, not the listening socket! this fixes locktest with -M single (This used to be commit 3e1b2742db818629fb79d12d40279db8dd575279)
* r6529: fixed locktest with new credentials codeAndrew Tridgell2007-10-101-8/+15
| | | | (This used to be commit 70b4a687c01a05b752438f39146ad0a240c976d5)
* r6528: - in tdb_fetch() we effectively disallowed zero length records byAndrew Tridgell2007-10-102-8/+5
| | | | | | | | | | | | | | | | | | | returning NULL/0, which is the same as we used for a failure. Having to look at tdb->ecode (which we never do) is too error prone. Instead, tdb_fetch() should behave like malloc() and talloc(), where zero length is not special and malloc(0) returns a valid pointer. - similarly in data_blob(), asking for data_blob(NULL, 0) should return a zero blob, but asking for data_blob(ptr, 0) should return a zero length blob with a valid pointer, just like talloc() and malloc() This change fixes the SummaryInformation stream stored in the tdb backend when manipulated from w2k. The w2k client was using SET_EOF_INFORMATION to create a zero-length stream, which we return STATUS_NOT_FOUND on, as the tdb_fetch() gave us back a NULL/0 blob, which we returned as not-found (This used to be commit 162bbe4402b9de6ac06103df904b9fc204fbff29)
* r6527: Resurrect getntacl utility program. At the moment we only display theTim Potter2007-10-102-3/+117
| | | | | output of ndr_print_xattr_NTACL() to stdout. (This used to be commit b32c159c384c988385f13bbb16e610d825820e18)
* r6526: Rename this RPC fault. Everybody else calls this ACCESS_DENIED, andAndrew Bartlett2007-10-103-3/+3
| | | | | | | it certainly doesn't make sense as LOGON_FAILURE. Andrew Bartlett (This used to be commit 4bec3d3f378ed8b988e00441c9bb5718b8548ba6)
* r6525: Remove incorrect comment.Andrew Bartlett2007-10-101-2/+0
| | | | | Andrew Bartlett (This used to be commit 7c8a0d86d4c486198ed2cf52fad2a878ed635c8b)
* r6524: Fix the error we print when the RPC-ECHO test fails.Andrew Bartlett2007-10-101-1/+1
| | | | | Andrew Bartlett (This used to be commit 4fc2a056cd38de7b3e2bc972958b5c104ba57ba7)
* r6523: Another string that isn't filled in. I wonder why this is, but forAndrew Bartlett2007-10-101-1/+4
| | | | | | | now don't fail the test. Andrew Bartlett (This used to be commit 437aabf15ef7c5eead4bec45eb7e10a77f392b84)
* r6522: I have no idea why this change was made, but it not only breaksAndrew Bartlett2007-10-101-2/+1
| | | | | | | | connections to Win2k3, it doesn't match the well-known behaviour from samba3. Andrew Bartlett (This used to be commit 99c9afe45a345e78d7492fe01463922460d66e99)
* r6521: Include system/network.h to fix compiler warning.Tim Potter2007-10-101-0/+1
| | | | (This used to be commit 45383f6cec3c380043be59f1e1c5bf82f3095abb)
* r6520: Fix unused variable warning.Tim Potter2007-10-101-1/+1
| | | | (This used to be commit 36de31a63189dcc6126dd0c10b1af8d183d8c235)
* r6519: move string handling functions to a seperate fileStefan Metzmacher2007-10-104-476/+501
| | | | | metze (This used to be commit a29d52817ce943c15f6896b74273df739867c8f7)
* r6518: fix formattingStefan Metzmacher2007-10-101-13/+13
| | | | | metze (This used to be commit 44f943f88111c5bb913a97e652041c701a78849a)
* r6517: this line should be removed in the last patch, (I readded it just for ↵Stefan Metzmacher2007-10-101-2/+0
| | | | | | | testing...) metze (This used to be commit 41316e7f1b8361fb7ff220e2b9faa683a4951850)
* r6516: use only one list of scalar types and make "string" just a simple ↵Stefan Metzmacher2007-10-102-77/+147
| | | | | | | scalar type (mostly) metze (This used to be commit ba1686e31a0d70a1fddabf4289d20fa8fe13b566)
* r6513: Commit talloc_free_children.Volker Lendecke2007-10-102-20/+45
| | | | | Volker (This used to be commit 9fa26d2c971a7baee64d8938e31909cac80f0e5a)
* r6512: Refactor samr torture test to use the nicer OO interface instead of theTim Potter2007-10-101-552/+88
| | | | | previous dictionary based SWIG interface (which was broken anyway). (This used to be commit 16b7e503bdbe4da96158e504790b1501a99d6db3)
* r6511: Implement GetUserPwInfo(), QueryUserInfo(), QueryUserInfo2().Tim Potter2007-10-101-5/+29
| | | | (This used to be commit f9742de617b6f1f24b75ae5af18a476f03c0b732)
* r6510: Initialise rid parameter in samr_RidToSid(). This is faulting for meTim Potter2007-10-101-4/+56
| | | | | | | on win2k - not sure why. Add dodgy implementations of QueryDisplayInfo{,2,3}() (This used to be commit 2e44402751f77fcbd9c89299d8533e91207de49f)
* r6509: fixed a crash bug found by a-jutley@microsoft.com in RPC-RAP testAndrew Tridgell2007-10-101-8/+14
| | | | | (the call freed the memory it used to fill in the result structure) (This used to be commit b352ef1a4282ddadf85e635112ff51dc3222a854)
* r6508: Fix typo - yay testsuite.Tim Potter2007-10-101-1/+1
| | | | (This used to be commit 61da936dbc491d0ec2d733d9ba155c3df01b8847)
* r6507: Fix syntax error in GetAliasMembership().Tim Potter2007-10-101-1/+11
| | | | | Implement SetDomainInfo() which got lost somehow. (This used to be commit 3055addde60687acdcf4e92dcb08e7f8dfdfb8f1)
* r6506: Rename parameter to GetDomPwInfo.Tim Potter2007-10-101-2/+2
| | | | (This used to be commit 1542a13493bb9bf33d5f09dca273957bb4333862)
* r6504: Fix incorrect value for SERVICE_STATE_ALL found by Karl Melcher.Tim Potter2007-10-101-1/+1
| | | | (This used to be commit f7051365584f536e4b4df20157019272c26d0e33)
* r6498: Add comments in line with those I already added to 3.0.Andrew Bartlett2007-10-101-0/+7
| | | | | | | Please don't re-invent security=server :-) Andrew Bartlett (This used to be commit b3a38e9c8ce9758db31aec53db29290a240868be)
* r6487: Use autoconf for standalone build of tdbJelmer Vernooij2007-10-103-1/+18
| | | | (This used to be commit 78bf8026bde34b7accc78f07c940ef1dcfc0dea7)
* r6486: Add 'make install' and pkg-config file.Jelmer Vernooij2007-10-103-1/+22
| | | | (This used to be commit e3be094fb7b0c0fec50abcb4b242414e84a9a32d)
* r6485: Move LDAP detection M4 file and use it for the standalone ldb buildJelmer Vernooij2007-10-105-274/+2
| | | | | | | | Remove a couple of unused M4 macros. The standalone LDB build will not work until I've figured out what AC_CHECK_LIB_EXT() does exactly (it's Samba-specific) (This used to be commit cc20d6bb7f06e077ebe4c366e545e187a0c79472)
* r6484: fix NTLMSSP client against w2k and w2k3Stefan Metzmacher2007-10-101-0/+4
| | | | | | | | | | | if we use lm_response = data_blob(NULL, 0); we got NT_STATUS_INVALID_PARAMETER (abartlet: we should maybe also give this error in our server code) metze (This used to be commit be5e301442c442a37bb6756d12b9f1452d634a17)
* r6483: fix anonymous connections, '-U %' or '-U ""%""' can be used for thisStefan Metzmacher2007-10-102-1/+6
| | | | | metze (This used to be commit d31b4d7df375c0d4ea962a0df1693778d56f03ec)
* r6481: change download instructions to include tdb and tallocAndrew Tridgell2007-10-101-2/+6
| | | | (This used to be commit ebe7071b2e93db93d7963211fce6ef02bc9e978e)
* r6480: fixed whitespace typoAndrew Tridgell2007-10-101-1/+1
| | | | (This used to be commit 1265c9b8a89177db94de5a8e188b666914c1d33c)
* r6479: - added a simple web pageAndrew Tridgell2007-10-103-1/+88
| | | | | - fixed configure.in ordering (This used to be commit 5a727d74d74ec23f4c33695bf5665db1ce1bc49f)
* r6478: Add 'make install' and a pkg-config fileJelmer Vernooij2007-10-103-1/+20
| | | | (This used to be commit c8e1b7542736bd674b8407872dbbe3a9941fce59)
* r6477: Remove call to autoheader as autogenerated header files are not usedJelmer Vernooij2007-10-101-1/+1
| | | | | by talloc (This used to be commit 5ca8a852067c34fed86f70be7f157714ecdd5501)
* r6474: - added a simple talloc web page at http://talloc.samba.org/Andrew Tridgell2007-10-105-16/+81
| | | | | - make it easier to seperataly build talloc for other projects (This used to be commit 27b987d267603977be8798e7e5412b91e18a316b)
* r6470: Remove ldb_search_free() it is not needed anymore.Simo Sorce2007-10-1020-118/+33
| | | | | Just use talloc_free() to release the memory after an ldb_search(). (This used to be commit 4f0948dab0aa5e8b6a4ce486f3668ca8dfae23db)
* r6469: Add CreateDomainGroup, GetAliasMembership.Tim Potter2007-10-101-4/+26
| | | | (This used to be commit acf1d0a1b554736361f38bcd74961d4e6c1b12bd)
* r6468: Fix LOCAL-NTLMSSP test with new NTLMSSP structure.Andrew Bartlett2007-10-101-15/+12
| | | | | Andrew Bartlett (This used to be commit 8d503fb153c25580c06dd13ca83df47f9e434c7a)
* r6467: keep the compiler quiet with another entry in structs.hAndrew Bartlett2007-10-101-0/+2
| | | | | Andrew Bartlett (This used to be commit 106047032fe269f02c8ef71937e9d2e4ae0a4eb7)
* r6466: Spelling.Tim Potter2007-10-101-1/+1
| | | | (This used to be commit 764b96792655be550d3c7065cb290bc6ea2b5133)
* r6465: Use talloc_zero for the gensec_ntlmssp_state structure, as the historyAndrew Bartlett2007-10-102-41/+6
| | | | | | | | | of this code has too many pre-zeroed structure assumptions. Remove unused 'stub' functions Andrew Bartlett (This used to be commit 78dc57c65513ba4c271308d84fc2a2a533f76061)
* r6464: Remove the last of the Samba3 NTLMSSP API. This removes the rudundentAndrew Bartlett2007-10-105-470/+419
| | | | | | | | | | | struct ntlmssp_state, and pushes all the member elements into struct gensec_ntlmssp_state. This also removes the 2-layer start function, caused by the previous double abstraction layer. Andrew Bartlett (This used to be commit eebbb4205b335214d24974f3be825846f6227f0c)