mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
b852a3494a
The generated size actually does not include the size of the binary itself. Guenther
282 lines
10 KiB
C
282 lines
10 KiB
C
/*
|
|
Unix SMB/CIFS implementation.
|
|
|
|
routines for printing some linked list structs in DRSUAPI
|
|
|
|
Copyright (C) Stefan (metze) Metzmacher 2005
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
|
|
#include "includes.h"
|
|
#include "librpc/gen_ndr/ndr_drsuapi.h"
|
|
#include "librpc/gen_ndr/ndr_misc.h"
|
|
#include "../lib/util/asn1.h"
|
|
#include "librpc/ndr/ndr_compression.h"
|
|
/* We don't need multibyte if we're just comparing to 'ff' */
|
|
#undef strncasecmp
|
|
|
|
void ndr_print_drsuapi_DsReplicaObjectListItem(struct ndr_print *ndr, const char *name,
|
|
const struct drsuapi_DsReplicaObjectListItem *r)
|
|
{
|
|
ndr_print_struct(ndr, name, "drsuapi_DsReplicaObjectListItem");
|
|
ndr->depth++;
|
|
ndr_print_ptr(ndr, "next_object", r->next_object);
|
|
ndr_print_drsuapi_DsReplicaObject(ndr, "object", &r->object);
|
|
ndr->depth--;
|
|
if (r->next_object) {
|
|
ndr_print_drsuapi_DsReplicaObjectListItem(ndr, "next_object", r->next_object);
|
|
}
|
|
}
|
|
|
|
void ndr_print_drsuapi_DsReplicaObjectListItemEx(struct ndr_print *ndr, const char *name, const struct drsuapi_DsReplicaObjectListItemEx *r)
|
|
{
|
|
ndr_print_struct(ndr, name, "drsuapi_DsReplicaObjectListItemEx");
|
|
ndr->depth++;
|
|
ndr_print_ptr(ndr, "next_object", r->next_object);
|
|
ndr_print_drsuapi_DsReplicaObject(ndr, "object", &r->object);
|
|
ndr_print_uint32(ndr, "is_nc_prefix", r->is_nc_prefix);
|
|
ndr_print_ptr(ndr, "parent_object_guid", r->parent_object_guid);
|
|
ndr->depth++;
|
|
if (r->parent_object_guid) {
|
|
ndr_print_GUID(ndr, "parent_object_guid", r->parent_object_guid);
|
|
}
|
|
ndr->depth--;
|
|
ndr_print_ptr(ndr, "meta_data_ctr", r->meta_data_ctr);
|
|
ndr->depth++;
|
|
if (r->meta_data_ctr) {
|
|
ndr_print_drsuapi_DsReplicaMetaDataCtr(ndr, "meta_data_ctr", r->meta_data_ctr);
|
|
}
|
|
ndr->depth--;
|
|
ndr->depth--;
|
|
if (r->next_object) {
|
|
ndr_print_drsuapi_DsReplicaObjectListItemEx(ndr, "next_object", r->next_object);
|
|
}
|
|
}
|
|
|
|
#define _OID_PUSH_CHECK(call) do { \
|
|
bool _status; \
|
|
_status = call; \
|
|
if (_status != true) { \
|
|
return ndr_push_error(ndr, NDR_ERR_SUBCONTEXT, "OID Conversion Error: %s\n", __location__); \
|
|
} \
|
|
} while (0)
|
|
|
|
#define _OID_PULL_CHECK(call) do { \
|
|
bool _status; \
|
|
_status = call; \
|
|
if (_status != true) { \
|
|
return ndr_pull_error(ndr, NDR_ERR_SUBCONTEXT, "OID Conversion Error: %s\n", __location__); \
|
|
} \
|
|
} while (0)
|
|
|
|
_PUBLIC_ void ndr_print_drsuapi_DsReplicaOID(struct ndr_print *ndr, const char *name, const struct drsuapi_DsReplicaOID *r)
|
|
{
|
|
ndr_print_struct(ndr, name, "drsuapi_DsReplicaOID");
|
|
ndr->depth++;
|
|
ndr_print_uint32(ndr, "length", r->length);
|
|
ndr->print(ndr, "%-25s: length=%u", "oid", r->length);
|
|
if (r->binary_oid) {
|
|
char *partial_oid = NULL;
|
|
DATA_BLOB oid_blob = data_blob_const(r->binary_oid, r->length);
|
|
char *hex_str = data_blob_hex_string_upper(ndr, &oid_blob);
|
|
ber_read_partial_OID_String(ndr, oid_blob, (const char **)&partial_oid);
|
|
ndr->depth++;
|
|
ndr->print(ndr, "%-25s: 0x%s (%s)", "binary_oid", hex_str, partial_oid);
|
|
ndr->depth--;
|
|
talloc_free(hex_str);
|
|
talloc_free(partial_oid);
|
|
}
|
|
ndr->depth--;
|
|
}
|
|
|
|
enum ndr_err_code ndr_push_drsuapi_DsGetNCChangesMSZIPCtr1(struct ndr_push *ndr, int ndr_flags, const struct drsuapi_DsGetNCChangesMSZIPCtr1 *r)
|
|
{
|
|
if (ndr_flags & NDR_SCALARS) {
|
|
uint32_t decompressed_length = 0;
|
|
uint32_t compressed_length = 0;
|
|
if (r->ts) {
|
|
{
|
|
struct ndr_push *_ndr_ts;
|
|
NDR_CHECK(ndr_push_subcontext_start(ndr, &_ndr_ts, 4, -1));
|
|
{
|
|
struct ndr_push *_ndr_ts_compressed;
|
|
NDR_CHECK(ndr_push_compression_start(_ndr_ts, &_ndr_ts_compressed, NDR_COMPRESSION_MSZIP, -1));
|
|
NDR_CHECK(ndr_push_drsuapi_DsGetNCChangesCtr1TS(_ndr_ts_compressed, NDR_SCALARS|NDR_BUFFERS, r->ts));
|
|
decompressed_length = _ndr_ts_compressed->offset;
|
|
NDR_CHECK(ndr_push_compression_end(_ndr_ts, _ndr_ts_compressed, NDR_COMPRESSION_MSZIP, -1));
|
|
}
|
|
compressed_length = _ndr_ts->offset;
|
|
talloc_free(_ndr_ts);
|
|
}
|
|
}
|
|
NDR_CHECK(ndr_push_align(ndr, 4));
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, decompressed_length));
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, compressed_length));
|
|
NDR_CHECK(ndr_push_unique_ptr(ndr, r->ts));
|
|
}
|
|
if (ndr_flags & NDR_BUFFERS) {
|
|
if (r->ts) {
|
|
{
|
|
struct ndr_push *_ndr_ts;
|
|
NDR_CHECK(ndr_push_subcontext_start(ndr, &_ndr_ts, 4, -1));
|
|
{
|
|
struct ndr_push *_ndr_ts_compressed;
|
|
NDR_CHECK(ndr_push_compression_start(_ndr_ts, &_ndr_ts_compressed, NDR_COMPRESSION_MSZIP, -1));
|
|
NDR_CHECK(ndr_push_drsuapi_DsGetNCChangesCtr1TS(_ndr_ts_compressed, NDR_SCALARS|NDR_BUFFERS, r->ts));
|
|
NDR_CHECK(ndr_push_compression_end(_ndr_ts, _ndr_ts_compressed, NDR_COMPRESSION_MSZIP, -1));
|
|
}
|
|
NDR_CHECK(ndr_push_subcontext_end(ndr, _ndr_ts, 4, -1));
|
|
}
|
|
}
|
|
}
|
|
return NDR_ERR_SUCCESS;
|
|
}
|
|
|
|
enum ndr_err_code ndr_push_drsuapi_DsGetNCChangesMSZIPCtr6(struct ndr_push *ndr, int ndr_flags, const struct drsuapi_DsGetNCChangesMSZIPCtr6 *r)
|
|
{
|
|
if (ndr_flags & NDR_SCALARS) {
|
|
uint32_t decompressed_length = 0;
|
|
uint32_t compressed_length = 0;
|
|
if (r->ts) {
|
|
{
|
|
struct ndr_push *_ndr_ts;
|
|
NDR_CHECK(ndr_push_subcontext_start(ndr, &_ndr_ts, 4, -1));
|
|
{
|
|
struct ndr_push *_ndr_ts_compressed;
|
|
NDR_CHECK(ndr_push_compression_start(_ndr_ts, &_ndr_ts_compressed, NDR_COMPRESSION_MSZIP, -1));
|
|
NDR_CHECK(ndr_push_drsuapi_DsGetNCChangesCtr6TS(_ndr_ts_compressed, NDR_SCALARS|NDR_BUFFERS, r->ts));
|
|
decompressed_length = _ndr_ts_compressed->offset;
|
|
NDR_CHECK(ndr_push_compression_end(_ndr_ts, _ndr_ts_compressed, NDR_COMPRESSION_MSZIP, -1));
|
|
}
|
|
compressed_length = _ndr_ts->offset;
|
|
talloc_free(_ndr_ts);
|
|
}
|
|
}
|
|
NDR_CHECK(ndr_push_align(ndr, 4));
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, decompressed_length));
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, compressed_length));
|
|
NDR_CHECK(ndr_push_unique_ptr(ndr, r->ts));
|
|
}
|
|
if (ndr_flags & NDR_BUFFERS) {
|
|
if (r->ts) {
|
|
{
|
|
struct ndr_push *_ndr_ts;
|
|
NDR_CHECK(ndr_push_subcontext_start(ndr, &_ndr_ts, 4, -1));
|
|
{
|
|
struct ndr_push *_ndr_ts_compressed;
|
|
NDR_CHECK(ndr_push_compression_start(_ndr_ts, &_ndr_ts_compressed, NDR_COMPRESSION_MSZIP, -1));
|
|
NDR_CHECK(ndr_push_drsuapi_DsGetNCChangesCtr6TS(_ndr_ts_compressed, NDR_SCALARS|NDR_BUFFERS, r->ts));
|
|
NDR_CHECK(ndr_push_compression_end(_ndr_ts, _ndr_ts_compressed, NDR_COMPRESSION_MSZIP, -1));
|
|
}
|
|
NDR_CHECK(ndr_push_subcontext_end(ndr, _ndr_ts, 4, -1));
|
|
}
|
|
}
|
|
}
|
|
return NDR_ERR_SUCCESS;
|
|
}
|
|
|
|
enum ndr_err_code ndr_push_drsuapi_DsGetNCChangesXPRESSCtr1(struct ndr_push *ndr, int ndr_flags, const struct drsuapi_DsGetNCChangesXPRESSCtr1 *r)
|
|
{
|
|
if (ndr_flags & NDR_SCALARS) {
|
|
uint32_t decompressed_length = 0;
|
|
uint32_t compressed_length = 0;
|
|
if (r->ts) {
|
|
{
|
|
struct ndr_push *_ndr_ts;
|
|
NDR_CHECK(ndr_push_subcontext_start(ndr, &_ndr_ts, 4, -1));
|
|
{
|
|
struct ndr_push *_ndr_ts_compressed;
|
|
NDR_CHECK(ndr_push_compression_start(_ndr_ts, &_ndr_ts_compressed, NDR_COMPRESSION_XPRESS, -1));
|
|
NDR_CHECK(ndr_push_drsuapi_DsGetNCChangesCtr1TS(_ndr_ts_compressed, NDR_SCALARS|NDR_BUFFERS, r->ts));
|
|
decompressed_length = _ndr_ts_compressed->offset;
|
|
NDR_CHECK(ndr_push_compression_end(_ndr_ts, _ndr_ts_compressed, NDR_COMPRESSION_XPRESS, -1));
|
|
}
|
|
compressed_length = _ndr_ts->offset;
|
|
talloc_free(_ndr_ts);
|
|
}
|
|
}
|
|
NDR_CHECK(ndr_push_align(ndr, 4));
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, decompressed_length));
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, compressed_length));
|
|
NDR_CHECK(ndr_push_unique_ptr(ndr, r->ts));
|
|
}
|
|
if (ndr_flags & NDR_BUFFERS) {
|
|
if (r->ts) {
|
|
{
|
|
struct ndr_push *_ndr_ts;
|
|
NDR_CHECK(ndr_push_subcontext_start(ndr, &_ndr_ts, 4, -1));
|
|
{
|
|
struct ndr_push *_ndr_ts_compressed;
|
|
NDR_CHECK(ndr_push_compression_start(_ndr_ts, &_ndr_ts_compressed, NDR_COMPRESSION_XPRESS, -1));
|
|
NDR_CHECK(ndr_push_drsuapi_DsGetNCChangesCtr1TS(_ndr_ts_compressed, NDR_SCALARS|NDR_BUFFERS, r->ts));
|
|
NDR_CHECK(ndr_push_compression_end(_ndr_ts, _ndr_ts_compressed, NDR_COMPRESSION_XPRESS, -1));
|
|
}
|
|
NDR_CHECK(ndr_push_subcontext_end(ndr, _ndr_ts, 4, -1));
|
|
}
|
|
}
|
|
}
|
|
return NDR_ERR_SUCCESS;
|
|
}
|
|
|
|
enum ndr_err_code ndr_push_drsuapi_DsGetNCChangesXPRESSCtr6(struct ndr_push *ndr, int ndr_flags, const struct drsuapi_DsGetNCChangesXPRESSCtr6 *r)
|
|
{
|
|
if (ndr_flags & NDR_SCALARS) {
|
|
uint32_t decompressed_length = 0;
|
|
uint32_t compressed_length = 0;
|
|
if (r->ts) {
|
|
{
|
|
struct ndr_push *_ndr_ts;
|
|
NDR_CHECK(ndr_push_subcontext_start(ndr, &_ndr_ts, 4, -1));
|
|
{
|
|
struct ndr_push *_ndr_ts_compressed;
|
|
NDR_CHECK(ndr_push_compression_start(_ndr_ts, &_ndr_ts_compressed, NDR_COMPRESSION_XPRESS, -1));
|
|
NDR_CHECK(ndr_push_drsuapi_DsGetNCChangesCtr6TS(_ndr_ts_compressed, NDR_SCALARS|NDR_BUFFERS, r->ts));
|
|
decompressed_length = _ndr_ts_compressed->offset;
|
|
NDR_CHECK(ndr_push_compression_end(_ndr_ts, _ndr_ts_compressed, NDR_COMPRESSION_XPRESS, -1));
|
|
}
|
|
compressed_length = _ndr_ts->offset;
|
|
talloc_free(_ndr_ts);
|
|
}
|
|
}
|
|
NDR_CHECK(ndr_push_align(ndr, 4));
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, decompressed_length));
|
|
NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, compressed_length));
|
|
NDR_CHECK(ndr_push_unique_ptr(ndr, r->ts));
|
|
}
|
|
if (ndr_flags & NDR_BUFFERS) {
|
|
if (r->ts) {
|
|
{
|
|
struct ndr_push *_ndr_ts;
|
|
NDR_CHECK(ndr_push_subcontext_start(ndr, &_ndr_ts, 4, -1));
|
|
{
|
|
struct ndr_push *_ndr_ts_compressed;
|
|
NDR_CHECK(ndr_push_compression_start(_ndr_ts, &_ndr_ts_compressed, NDR_COMPRESSION_XPRESS, -1));
|
|
NDR_CHECK(ndr_push_drsuapi_DsGetNCChangesCtr6TS(_ndr_ts_compressed, NDR_SCALARS|NDR_BUFFERS, r->ts));
|
|
NDR_CHECK(ndr_push_compression_end(_ndr_ts, _ndr_ts_compressed, NDR_COMPRESSION_XPRESS, -1));
|
|
}
|
|
NDR_CHECK(ndr_push_subcontext_end(ndr, _ndr_ts, 4, -1));
|
|
}
|
|
}
|
|
}
|
|
return NDR_ERR_SUCCESS;
|
|
}
|
|
|
|
_PUBLIC_ size_t ndr_size_drsuapi_DsReplicaObjectIdentifier3Binary_without_Binary(const struct drsuapi_DsReplicaObjectIdentifier3Binary *r, struct smb_iconv_convenience *ic, int flags)
|
|
{
|
|
return ndr_size_struct((const struct drsuapi_DsReplicaObjectIdentifier3 *)r, flags, (ndr_push_flags_fn_t)ndr_push_drsuapi_DsReplicaObjectIdentifier3, ic);
|
|
}
|
|
|