1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-22 16:23:49 +03:00
Commit Graph

144 Commits

Author SHA1 Message Date
Andrew Tridgell
81d6181172 automatically generate ndr_print_*() functions for every IDL
structure. This allows easy debug and test tool writing without having
to write functions that print every element of complex structures.
-
Andrew Tridgell
5b2d577969 started adding support for lsa_QueryInfoPolicy -
Andrew Tridgell
54613574bc - added support for the pull side of unions
- don't generate parse functions for pull/push functions that are not
  used
-
Andrew Tridgell
c742227ec3 added idl and test code for lsa_LookupPrivName() -
Andrew Tridgell
447c5f13d4 added IDL and test for lsa_EnumAccountRights()
interestingly, win2000 doesn't return the same list of rights via
lsa_EnumAccountRights() and lsa_EnumPrivsAccount()
-
Andrew Tridgell
f8bbce69bf added IDL and test for lsa_EnumPrivsAccount() -
Andrew Tridgell
4df59bcff5 much cleaner handling of the different types of variables -
Jelmer Vernooij
4c0226c718 Add make rule for smbiconv -
Jelmer Vernooij
db68d642d6 Remove check for SAM, which has already been removed -
Jelmer Vernooij
00807119ee Add iconv test utility -
Jelmer Vernooij
e92e04b889 Add check for precompiled headers -
Andrew Tridgell
e5d93cf996 - fixed lsa_EnumTrustDom
- added lsa_OpenAccount

- handle STATUS_SOME_UNMAPPED
-
Andrew Tridgell
ef60a70912 added lsa_EnumTrustDom -
Andrew Tridgell
fe12f81ba4 added lsa_EnumPrivs idl and test code -
Andrew Tridgell
dbadbbf1a7 added a test for lsa_Close() -
Andrew Tridgell
6c50589a9c i forgot to commit the rpcecho idl file -
Andrew Tridgell
8e52381313 - added the rest of the LSA calls as stubs
- auto-generate the client calls with 'make idl'
-
Andrew Tridgell
566476b3ff added a module for auto-generating the client calls. We can now go
from IDL file to working Samba4 RPC client library in a completely
automated fashion.
-
Andrew Tridgell
1b7a7bc464 converted the rpcecho pipe to use IDL -
Andrew Tridgell
33d9b75783 - handle void functions
- bettenicer handling of PROPERTIES

- handle size_is() on an out variable that refers to an in variable
-
Andrew Tridgell
9946532f97 use a more consistent style for the client stubs -
Andrew Tridgell
6151e5a214 get rid of some prototypes that aren't needed any more -
Andrew Tridgell
fba3a7ad22 lsa_LookupNames now works -
Andrew Tridgell
7bb45a21ae added support for arrays as function arguments and for unistr_noterm -
Andrew Tridgell
9aacdb5b8a check for pidl.pl in path, not $HOME/pidl/ -
Andrew Tridgell
afa1ff5f08 added idl, generated code and test code for lsa_LookupSids -
Andrew Tridgell
25be8dafda added fixes for the pushing of arrays and handling non-ref pointers in
function arguments
-
Andrew Tridgell
cba9df9aa4 - include includes.h
- fix ref ptrs in push

- add NTSTATUS return
-
Andrew Tridgell
47a17e5a08 - more generation fixes
- added auto-generation from the Makefile. Only called when you run "make idl"
-
Andrew Tridgell
3983b2aee7 - corrected some lsa idl
- updated lsa parse code from pidl
-
Andrew Tridgell
96e269fefe - generate both the pull and push side
- fixed lots of bugs
-
Andrew Tridgell
8e865508a6 a bit of a tidy up before I add the ndr_pull_*() side of things -
Andrew Tridgell
6b222d3b65 another major bit of restructuring of rpc in Samba4. Mostly moving
files around, but also added the first bits of auto-generated code for
the lsa pipe.

I haven't updated the Makefile to call pidl yet, so for now the code
was cut-and-pasted into librpc/ndr/ndr_lsa.c manually
-
Andrew Tridgell
42cd6904f5 updated pidl to auto-generate the ndr_push_*() functions for the
Samba4 rpc framework

not complete, but sufficient for a number of lsa functions
-
Andrew Tridgell
9476dd5620 allow qfsinfo to continue with just 10 levels supported in the server -
Andrew Tridgell
6a8f297c45 finished off the ndr_sec.c module -
Andrew Tridgell
4368eaa523 fixed another error found by valgrind -
Andrew Tridgell
ca5f0ccb6c fixed some error found by valgrind -
Andrew Tridgell
25a8692fed lsa_EnumSids() now works -
Andrew Tridgell
9cf479873f lsa_OpenPolicy2 now works -
Andrew Tridgell
f5bd301ff7 yipee! we can now do lsaOpenPolicy() via the new interfaces, without
using any of the old lsa code
-
Andrew Tridgell
f51a216136 added support for fragmented sends -
Andrew Tridgell
a9aa7954fe added fragmentation support on receive for dcerpc packets. I have
successfully used SourceData with 200M of data in rpcecho
-
Andrew Tridgell
7c356350e6 added SinkData and SourceData tests for rpcecho -
Andrew Tridgell
9c7e4db471 added rpcecho EchoData test -
Andrew Tridgell
717803848a actually use the passed parameters! -
Andrew Tridgell
a8feb80438 added a helper function to make building rpc functions a bit easier -
Andrew Tridgell
8cff335dab started adding RPC-ECHO torture cases -
Andrew Tridgell
95fa15cdcf we only want the per-call stub data -
Andrew Tridgell
e925c315f5 a major revamp of the low level dcerpc code in samba4, We can now do a
successful LSA OpenPolicy using smbtorture
-