summaryrefslogtreecommitdiffstats
path: root/pidl
Commit message (Collapse)AuthorAgeFilesLines
...
* pidl: update PIDL tests for uint1632 enumsAndrew Tridgell2009-10-071-1/+1
|
* pidl: get the alignment right for uint1632 enums (NDR64)Andrew Tridgell2009-10-072-1/+5
| | | | | The default enum in NDR63 is 32 bits, not 16 bits. We need a uint1632 type to get the alignment right.
* add trailer alignment to structuresRonnie Sahlberg2009-10-061-0/+14
|
* PIDL fix for using external types with wireshark backendronnie sahlberg2009-10-064-3/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | List, Please review this patch to pidl. Basically, we need to process the wireshark conformance file BEFORE we process the idl file since this file may define external types and set the alignment for them (using the TYPE directive). Otherwise pidl will default all external types to use 4byte alignment which breaks (much more often) on NDR64 regards ronnie sahlberg From 8f86903fc353d0906bd82e72ce19c5af09beb001 Mon Sep 17 00:00:00 2001 From: Ronnie Sahlberg <ronniesahlberg@gmail.com> Date: Mon, 5 Oct 2009 15:22:43 +1100 Subject: [PATCH] In the PIDL wireshark backend, we define external types in the conformance file using the TYPE directive. If we declare external types here, we must parse this file before we process the IDL file, or else these external types will all default to 4byte padding (pidl assumes all unknown types are 4byte aligned). Make sure we read the conformance file and create these new types before we parse the idl file. Signed-off-by: Ronnie Sahlberg <ronniesahlberg@gmail.com>
* pidl: added int3264 as a base typeAndrew Tridgell2009-10-032-0/+4
| | | | | This is the type used for a variable that is 32 bits for NDR32 and 64 bits for NDR64
* pidl: fixed unit tests for trailer alignmentAndrew Tridgell2009-10-021-0/+2
|
* pid: update ndr testsuite for new union alignmentAndrew Tridgell2009-10-021-1/+2
|
* ndr64: added support for trailing gap alignmentAndrew Tridgell2009-10-021-0/+4
| | | | | | | NDR64 has a 'trailing gap' alignment, which aligns the end of a structure on the overall structure alignment. This explains the discrepancy we had with the RPC-SAMR test and NDR64
* pidl: added union padding for NDR64Andrew Tridgell2009-09-292-2/+17
| | | | This fixes the problem with samr UserInfo16 when NDR64 is enabled
* pidl: Avoid using talloc_free as function pointer, since it may be aJelmer Vernooij2009-09-281-2/+2
| | | | macro.
* pidl(s4.python): Fix arguments to PyCObject_FromVoidPtr for string_array's.Jelmer Vernooij2009-09-261-1/+1
| | | | Caught by Guenther.
* pidl: update expected output for NDR64 changesAndrew Tridgell2009-09-191-1/+1
|
* ndr: split out ndr enum functionsAndrew Tridgell2009-09-171-2/+2
| | | | This allows for easier implementation of the NDR32/NDR64 split
* s4-pidl: add support for NDR64Andrew Tridgell2009-09-172-6/+9
| | | | Added support for NDR64 to the samba4 pidl generator
* Ensure we enclose the enum values in brackets to make the cast work.Jeremy Allison2009-09-171-0/+2
| | | | Jeremy.
* Fix the problem with pidl generating invalid C for enums. AccordingJeremy Allison2009-09-171-1/+9
| | | | | | | | to the C standard an enum is guarenteed to be an (int), which means for 4 byte ints specifying a type of 0x80000000 is an invalid value. The Solaris compiler complains about this. Fix by adding an (int) cast in front of the value generation. Jeremy.
* Fix string-wchar-fixed-array-03 test (when libndr is available).Jelmer Vernooij2009-09-131-2/+2
|
* Fix string-wchar-fixed-array-02 test (when libndr is available).Jelmer Vernooij2009-09-131-2/+2
|
* Fix string-wchar-fixed-array-01 test (when libndr is available).Jelmer Vernooij2009-09-131-4/+4
|
* pidl: Remove unnecessary _GNU_SOURCE define.Jelmer Vernooij2009-09-131-1/+0
|
* pidl: fix parse_idl test after idl.yp changesStefan Metzmacher2009-08-121-28/+103
| | | | | | | | We now generate 'FILE' and 'LINE' elements for each layer. This change makes the expected PIDL trees human readable:-) metze
* pidl: fix samba3-cli test after the async function were addedStefan Metzmacher2009-08-121-2/+212
| | | | metze
* when we get an NDR error in the logs, it is useful to know where it happenedAndrew Tridgell2009-08-121-5/+5
|
* pidl: parse idl 'pipe' typedefs, but print out a not supported message for nowStefan Metzmacher2009-08-073-871/+950
| | | | metze
* pidl: fix formatting in expr.ypStefan Metzmacher2009-08-072-132/+186
| | | | metze
* pidl: fix formatting in idl.ypStefan Metzmacher2009-08-072-698/+890
| | | | metze
* pidl:Samba3/ClientNDR: add support tevent_req based _send/recv() client ↵Stefan Metzmacher2009-07-311-0/+245
| | | | | | functions metze
* pidl:Samba3/ClientNDR: rename ParseFunction => ParseFunctionSync and add ↵Stefan Metzmacher2009-07-311-1/+8
| | | | | | | | ParseFunction as glue This prepares the following ParseFunctionAsync* commits. metze
* pidl:Samba3/ClientNDR: allow passing optional variable prefixes to ↵Stefan Metzmacher2009-07-311-7/+9
| | | | | | ParseOutputArgument() metze
* pidl/Samba4.pm: allow an optional prefix passed to DeclLong()Stefan Metzmacher2009-07-311-3/+4
| | | | metze
* pidl:Samba4/Python: fix mapType() => mapTypeName()Stefan Metzmacher2009-07-311-1/+1
| | | | | | | | | | | | This tries to fix commit 8eff9f9a3167eb0c2a4c00edf5a4cdbbc06c4dfd. The problem was: Undefined subroutine &Parse::Pidl::Samba4::Python::mapType called at /home/metze/master4/pidl/lib/Parse/Pidl/Samba4/Python.pm line 848. Jelmer: please check this. metze
* python: Cope with the dom_sid2 alias in pidl's python generating code.Jelmer Vernooij2009-07-301-2/+6
| | | | | This fixes some problems in the samr Python bindings that pidl was (correctly) warning about.
* DCE/RPC(Python): Rename py_talloc_import to py_talloc_steal.Jelmer Vernooij2009-07-301-1/+1
| | | | | Use py_talloc_reference in DCE/RPC code, fixes access to SAMR pipe.
* pidl: import a patch to pidl made in the wireshark reporitory.Ronnie Sahlberg2009-07-281-5/+19
| | | | | | | | | | | Original commit message in wireshark SVN (rev 28961): ==== From Kovarththanan Rajaratnam: More "Cleanup header_field_info definitions" ==== Signed-off-by: Ronnie Sahlberg <ronniesahlberg@gmail.com> Signed-off-by: Stefan Metzmacher <metze@samba.org>
* pidl: allow foo being on the wire after [length_is(foo)] uint8 *bufferStefan Metzmacher2009-07-271-0/+4
| | | | metze
* pidl: add support for [string] on fixed size arrays.Stefan Metzmacher2009-07-273-2/+117
| | | | | | | | | | | | | | | | | | midl also supports this: struct { long l1; [string] wchar_t str[16]; long l2; }; Where the wire size of str is encoded like a length_is() header: 4-byte offset == 0; 4-byte array length; The strings are zero terminated. metze
* pidl: Print actual type names in errors about unknown origins rather than ↵Jelmer Vernooij2009-07-192-17/+20
| | | | 'HASH(0x....)'.
* pidl: Print proper errors when arrays don't have a specified size rather ↵Jelmer Vernooij2009-07-192-7/+18
| | | | than spewing pages of perl warnings.
* pidl: Don't run compile tests inside the tree, won't work yet.Jelmer Vernooij2009-07-031-4/+8
|
* pidl Fix samba4.pidl.typelist test after addition of 'double'Andrew Bartlett2009-06-051-0/+1
|
* Add support for double type in pidl.Brad Hards2009-06-024-2/+11
| | | | Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
* Revert "pidl/python: Add explicit casts, fixing implicit cast warnings."Andrew Bartlett2009-04-211-1/+1
| | | | | | It was creating new objects with bogus data. This reverts commit 210830392999691469a55f4f5e2032abcdb20b8a.
* pidl:Samba4/client: fix dcerpc_ndr_request_send() callersStefan Metzmacher2009-04-201-2/+3
| | | | | | | | | For samba4 you need one of this: samba/source4# make full_idl samba/source4# make clean samba# git clean -x -f metze
* pidl:Samba4/client: use dcerpc_ndr_request() for sync requestsStefan Metzmacher2009-04-201-5/+7
| | | | metze
* Move tdr to top-level.Jelmer Vernooij2009-03-141-1/+1
|
* Update instructions for checking out pidl.Brad Hards2009-03-101-2/+3
|
* pidl: Don't generate variables declarations for pointless array counters.Tim Prouty2009-03-041-1/+19
| | | | | | | | | | | Code isn't generated to iterate over arrays of length 0, but the variable declarations still are. The result is 'unused variable' warnings. This only seems to be happening in one place right now, so I targeted the fix to this case, but refactoring could be done to make all variable declarations do this zero length check. Making it the default would be a much more invasive fix. Jelmer, please check!
* Don't generate array iterators when the length of the array is always 0.Jelmer Vernooij2009-03-011-2/+8
| | | | (bug #6140)
* Only define _GNU_SOURCE if it's not defined yet.Jelmer Vernooij2009-02-251-0/+2
|
* Include header with NTSTATUS, as some IDL files use it.Jelmer Vernooij2009-02-251-0/+3
|