summaryrefslogblamecommitdiffstats
path: root/private/rpc/ndrdbg/array.cxx
blob: 5c39ec851154dc0b22e31e151f1e3143f7eb0b17 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489








































































































































































































































































































































































































































































































                                                                                 
/*++

Copyright (c) 1994  Microsoft Corporation

Module Name:

    array.cxx

Abstract:


Author:

    David Kays  (dkays)     August 1 1994

Revision History:

    Ryszardk    Sep  1, 94     Conformant arrays, arrays of struct
    Ryszardk    Sep 12, 94     Bogus arrays, embedded structs
    Ryszardk    Nov 12, 94     Array of unions, pointer issues

--*/

#include <sysinc.h>
#include <rpc.h>
#include <rpcndr.h>

#include <ntsdexts.h>
#include <ntdbg.h>

extern "C" {
#include <ndrtypes.h>
#include <ndrp.h>
}

#include "bufout.hxx"

extern  long    ArrPrintCount;

long
GetXmittedOffset( long FO );

void
ARRAY::Output()
{
    uchar   Format[1024];
    NDR *   Member;
    long    ReadBytes;
    long    CurrentFormatOffset,  PointerLayoutOffset;
    long    Elements, Offset, Length;

    if ( fOutputLimitReached )
        return;

    PrintIndent();
    Print( "Array\n" );

    //
    // Offsets from the beginning of the array's description.
    //
    CurrentFormatOffset = 0;
    PointerLayoutOffset = 0;

    //
    // Read in the description up to any possible pointer layout.
    //

    FormatString->Read( FormatOffset, &Format[0], 1 );

    switch ( Format[0] )
        {
        case FC_SMFARRAY :
            ReadBytes = 4;
            break;
        case FC_LGFARRAY :
            ReadBytes = 6;
            break;
        case FC_CARRAY :
            ReadBytes = 8;
            break;
        case FC_CVARRAY :
            ReadBytes = 12;
            break;
        case FC_SMVARRAY :
            ReadBytes = 12;
            break;
        case FC_LGVARRAY :
            ReadBytes = 16;
            break;
        case FC_BOGUS_ARRAY :
            ReadBytes = 12;
            break;
        default :
            Print( "ARRAY::Output error\n" );
        }

    //
    // Read one byte past the base description so we can check for a pointer
    // layout.
    //
    FormatString->Read( FormatOffset, &Format[0], ReadBytes + 1 );

    CurrentFormatOffset = (ReadBytes + 1) - 1;

    //
    // Check for pointer layout.
    //
    if ( Format[CurrentFormatOffset] == FC_PP )
        {
        uchar   Type;
        long    NumberOfPointers;

        CurrentFormatOffset += 2;
        PointerLayoutOffset = CurrentFormatOffset;

        //
        // Get the pointer layout type, either FC_FIXED_REPEAT or 
        // FC_VARIABLE_REPEAT.
        //
        FormatString->Read( 
                FormatOffset + CurrentFormatOffset, 
                &Type, 
                sizeof(char) );

        ReadBytes = (Type == FC_FIXED_REPEAT) ? 10 : 8;

        //
        // Read general repeat pointer info.
        //

        FormatString->Read( 
                FormatOffset + CurrentFormatOffset, 
                &Format[CurrentFormatOffset], 
                ReadBytes );

        CurrentFormatOffset += ReadBytes;

        NumberOfPointers = *((ushort *)&Format[CurrentFormatOffset - 2]);

        //
        // Read in pointer descriptions plus the trailing FC_END.
        //

        FormatString->Read( 
                FormatOffset + CurrentFormatOffset, 
                &Format[CurrentFormatOffset],
                (NumberOfPointers * 8) + 1 );

        CurrentFormatOffset += (NumberOfPointers * 8) + 1;
        }

    //
    // Get the element's type.
    //
    FormatString->Read( 
        FormatOffset + CurrentFormatOffset, 
        &Format[CurrentFormatOffset], 
        sizeof(char) );

    //
    // Get element size.
    //

    BOOL  fBogusConf = 0;

    switch ( Format[0] )
        {
        case FC_SMFARRAY :
        case FC_LGFARRAY :
            {
            long    TotalSize;
            long    ElementSize;

            ElementSize = 0;

            if ( Format[0] == FC_SMFARRAY )
                TotalSize = *((ushort *)&Format[2]);
            else
                TotalSize = *((ulong *)&Format[2]);

            if ( IS_SIMPLE_TYPE(Format[CurrentFormatOffset]) )
                {
                ElementSize = SIMPLE_TYPE_MEMSIZE(Format[CurrentFormatOffset]);
                }
            else if ( IS_STRUCT(Format[CurrentFormatOffset]) )
                {
                // Read struct's size.
                FormatString->Read( 
                    FormatOffset + CurrentFormatOffset + 2, 
                    (uchar *)&ElementSize, 
                    sizeof(short) );
                }
            else
                ABORT( "Can't do multi-D fixed arrays\n" );

            Elements = TotalSize / ElementSize;
            }
            break;
    
        case FC_CARRAY :
        case FC_CVARRAY :
            //
            // Check if we have conformance.
            //
            if ( ParentNdr->GetID() == ID_STRUCT )
                Elements =  ((STRUCTURE *)ParentNdr)->GetConfSize();
            else
                {
                Buffer->Align( 0x3 );
                Buffer->Read( (char *) &Elements, sizeof(long) );
                }
            break;

        case FC_SMVARRAY :
            Elements = *((ushort *)&Format[4]);
            break;
        case FC_LGVARRAY :
            Elements = *((ulong *)&Format[6]);
            break;

        case FC_BOGUS_ARRAY :
            //
            // Check if we have conformance.
            //
            Elements = GET_USHORT( Format + 2 );
            if ( Elements != 0 )
                break;

            // else this is a conformant array.

            fBogusConf = 1;

            if ( ParentNdr->GetID() == ID_STRUCT )
                Elements =  ((STRUCTURE *)ParentNdr)->GetConfSize();
            else
                {
                Buffer->Align( 0x3 );
                Buffer->Read( (char *) &Elements, sizeof(long) );
                }
            break;
        }

    // Get the variance info.

    BOOL  fBogusVar = 0;

    switch ( Format[0] )
        {
        case FC_BOGUS_ARRAY:
            if ( GET_ULONG( Format + 8 ) == -1 )
                break;

            fBogusVar = 1;

            //  fall through.

        case FC_CVARRAY:
        case FC_SMVARRAY:
        case FC_LGVARRAY:
            Buffer->Align( 0x3 );
            Buffer->Read( (char *) &Offset, sizeof(long) );
            Buffer->Read( (char *) &Length, sizeof(long) );
            break;
        }

    PrintIndent();

    switch ( Format[0] ) 
        {
        case FC_SMFARRAY :
        case FC_LGFARRAY :
            Print( "Fixed array (%d elements) : \n", Elements );
            break;
        case FC_CARRAY :
            Print( "Conformant array (%d elements) : \n", Elements );
            break;
        case FC_CVARRAY :
            Print( "Conf-var. array" );
            Print( "\t(size= %d, offset= %d, length= %d) : \n",
                          Elements, Offset, Length );
            Elements = Length;
            break;
        case FC_SMVARRAY :
        case FC_LGVARRAY :
            Print( "Varying array\n" );
            Print( "\t(size = %d, offset = %d, length = %d) : \n",
                          Elements, Offset, Length );
            Elements = Length;
            break;
        case FC_BOGUS_ARRAY :
            Print( "Bogus array (%d elements)", Elements );
            if ( fBogusConf )
                Print(" Conf.");
            if ( fBogusVar )
                Print(" -Var.: offset = %d, length = %d", Offset, Length );
            Print(" :\n" );
            break;
        }

    IndentInc();

    if ( Format[0] != FC_BOGUS_ARRAY )
        {
        if ( PointerLayoutOffset == 0 )
            {
            //
            // No pointers, this kind is easy.
            //
            Member = Create( FormatOffset + CurrentFormatOffset, this );
    
            for ( ; Elements--; )
                Member->Output();
    
            ArrPrintCount = -1;
    
            delete Member;

            Print("\n");
            IndentDec();
            PrintIndent();
            Print("Array done\n");
            return;
            }
        }

    // We eliminated all non-bogus without pointers.
    // Hence we can safely check for array of pointers, regardless
    // whether it's bogus or not.
    //
    // First, see if xmit as complicates things.

    uchar   XmittedType;
    long XmittedOffset = GetXmittedOffset( FormatOffset + CurrentFormatOffset );

    if ( XmittedOffset != -1 )
        {

        PrintIndent();
        Print( "Array of Xmit types\n" );

        FormatString->Read( XmittedOffset, &XmittedType, 1 );

        if ( IS_ARRAY( XmittedType ) )
            ABORT2( "Arrays of Xmitted %s=0x%x not supported\n",
                    FormatString->GetFormatCharName( XmittedType ),
                    XmittedType );
        }

    // We've read everything up to 1 byte of member layout.
    // CurrentPointer indicates the member.
    //

    if ( (Format[0] != FC_BOGUS_ARRAY  &&
             Format[CurrentFormatOffset] == FC_LONG)  ||
         (Format[0] == FC_BOGUS_ARRAY  &&
             ( IS_POINTER_TYPE( Format[CurrentFormatOffset] ) ||
               XmittedOffset == -1  &&  IS_POINTER_TYPE( XmittedType ) ) )
       )
        {
        //
        // Array of pointers.
        //
    
        long    OffsetToWireId;
        long    n;

        if ( Format[0] == FC_BOGUS_ARRAY )
            if ( XmittedOffset == -1 )
                PointerLayoutOffset = CurrentFormatOffset;
            else
                PointerLayoutOffset = XmittedOffset - FormatOffset;
        else
            {
            //
            // Increment to the pointer's description.
            //
            PointerLayoutOffset += 
                    (Format[PointerLayoutOffset] == FC_FIXED_REPEAT) ? 10 : 8;
            PointerLayoutOffset += 4;
            }
    
        Buffer->Align( 0x3 );
    
        if ( Format[PointerLayoutOffset] != FC_RP )
            {
            //
            // Omit printing out of the pointers themselves.
            //
            OffsetToWireId = Buffer->GetCurrentOffset();
            Buffer->Increment( Elements * sizeof(void *) );

            PrintIndent();
            Print( "Printout of %d ", Elements );
            Print( "%s pointers omitted\n", 
                    (Format[PointerLayoutOffset] == FC_UP) ? "unique"
                                                           : "full" );
            }
    
        for ( n = 0; n < Elements; n++ )
            {
            //
            // Always pass an OffsetToWireId.  It's just ignored for ref
            // pointers.
            //
            Member = new POINTER( this,
                                  FormatOffset + PointerLayoutOffset,
                                  OffsetToWireId );

            PointerDict.Register( OffsetToWireId, (POINTER *)Member );
    
            OffsetToWireId += sizeof(void *);
            }

        PointerDict.OutputPointees( this );

        IndentDec();
        PrintIndent();
        Print("Array done\n");
        return;
        }
        
    // What's left at this point is:
    //      - a bogus array
    //      - a non-bogus array with elements that have pointers
    //      - but not an array of pointers
    //
    // We will serve anything but arrays of arrays.
    //
    // We are at a FC_EMBEDDED_COMPLEX

    if ( Format[ CurrentFormatOffset] != FC_EMBEDDED_COMPLEX )
        {
        ABORT2( "FC_EMBEDDED_COMPLEX expected, %s=0x%x found\n",
                 FormatString->GetFormatCharName( Format[ CurrentFormatOffset] ),
                 Format[ CurrentFormatOffset] );
        }

    uchar       ElementType;
    long        ElementOffset;

    if ( XmittedOffset != -1 )
        ElementOffset = XmittedOffset;
    else
        {

        // Read the FC_EMBEDED_COMPLEX element description.

        FormatString->Read( 
            FormatOffset + CurrentFormatOffset, 
            &Format[CurrentFormatOffset],
            4 );

        CurrentFormatOffset += 2;
        ElementOffset = FormatOffset + CurrentFormatOffset + 
                       *((short *)&Format[CurrentFormatOffset]);
        }

    FormatString->Read( ElementOffset, &ElementType, sizeof(char) );

    if ( ! IS_ARRAY( ElementType ) )
        {
        NDR * Element = NULL;

        //
        // Tell each structure to print out everything but its pointers, 
        // and then print out just its pointees.
        //

        for (int i = 0; i < Elements; i++)
            {
            Element = Create( ElementOffset, this );
            Element->Output();
            delete Element;
            }

        PointerDict.OutputPointees( this );

        }
    else
        ABORT2( "Array of %s=0x%x not supported\n",
                 FormatString->GetFormatCharName( ElementType ),
                 ElementType );

    IndentDec();
    PrintIndent();
    Print("Array done\n");
    ArrPrintCount = -1;
}