summaryrefslogtreecommitdiff
path: root/TAO/utils/IOR-parser/ior-handler.cpp
blob: 929980ed9fccce5abe8d25e34cde32fb20b6f2df (plain)
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
// $Id$

#include "ior-handler.h"

IorHandler::IorHandler (void)
{
}

u_long
IorHandler::getOctet8Field (char *readPtr, int *hexCharsRead)
{
  char octet8Holder[8];

  for (int i = 0; i < 8; i++)
    octet8Holder[i] = readPtr[i];

  hexCharsRead[0] = 8;

  u_long value =
    16 * ACE::hex2byte (octet8Holder[6])
    + ACE::hex2byte (octet8Holder[7]);

  return value;
}

u_long
IorHandler::getOctet4Field (char *readPtr, int *hexCharsRead)
{
  char octet4Holder[4];

  for (int i = 0; i < 4; i++)
    octet4Holder[i] = readPtr[i];

  hexCharsRead[0] = 4;

  u_long value =
    16 * 16 * 16 * ACE::hex2byte (octet4Holder[0])
    + 16 * 16 * ACE::hex2byte (octet4Holder[1])
    + 16 * ACE::hex2byte (octet4Holder[2])
    + ACE::hex2byte (octet4Holder[3]);

  return value;
}

u_long
IorHandler::getOctet2Field (char *readPtr, int *hexCharsRead)
{
  char octet2Holder[2];

  for (int i = 0; i < 2; i++)
    octet2Holder[i] = readPtr[i];

  hexCharsRead[0] = 2;

  u_long value =
    16 * ACE::hex2byte (octet2Holder[0])
    + ACE::hex2byte (octet2Holder[1]);

  return value;
}

void
IorHandler::skipNullOctets (char *readPtr, int *hexCharsRead)
{
  char nullOctet[2];
  int offset;

  hexCharsRead[0] = 0;
  offset = 0;

  // There sometimes occurs a null padding of 2 octets after strings
  // such as the type_id in order to ensure even number of octets.

  while (1)
    {
      nullOctet[0] = readPtr[offset];
      nullOctet[1] = readPtr[offset + 1];
      if (nullOctet[0] == '0' && nullOctet[1] == '0')
        offset += 2;
      else
        break;
    }

  hexCharsRead[0] = offset;
}

char *
IorHandler::getString (char *readPtr, int givenLen)
{
  int j = 0;

  // i indexes hexChars while j indexes octet pairs

  for (int i = 0;
       i <= givenLen - 2;
       i += 2)
    {
      char octetPair[2];
      octetPair[0] = readPtr[i];
      octetPair[1] = readPtr[i + 1];

      int intEquiv =
        16 * ACE::hex2byte (octetPair[0])
        + ACE::hex2byte (octetPair[1]);

      char parsedOctetPair[2];
      sprintf (parsedOctetPair,
               "%c",
               intEquiv);

      parsedStr[j] = parsedOctetPair[0];
      j++;
    }

  return parsedStr;
}

void
IorHandler::prettyPrintIOR (IOR thisIor)
{
  ACE_DEBUG ((LM_DEBUG,
              "TypeIdLen\t: %lu bytes\n",
              thisIor.typeIdLen));
  ACE_DEBUG ((LM_DEBUG,
              "TypeId\t\t: %s\n",
              thisIor.typeId));
  ACE_DEBUG ((LM_DEBUG,
              "IDL Interface\t: %s\n",
              thisIor.idlInterface));
  ACE_DEBUG ((LM_DEBUG,
              "ProfileBodyLen\t: %lu bytes\n",
              thisIor.profileBodyLen));
  ACE_DEBUG ((LM_DEBUG,
              "HostLen\t\t: %lu bytes\n",
              thisIor.hostLen));
  ACE_DEBUG ((LM_DEBUG,
              "HostName\t: %s\n",
              thisIor.HostName));
  ACE_DEBUG ((LM_DEBUG,
              "Port Number\t: %d\n",
              thisIor.portNum));
  ACE_DEBUG ((LM_DEBUG,
              "ObjectKeyLen\t: %lu bytes\n",
              thisIor.objectKeyLen));
  ACE_DEBUG ((LM_DEBUG,
              "ObjectKey\t: %s\n",
              thisIor.objectKey));
}

void
IorHandler::interpretIor (char *thisIor, IOR *thisIorInfo)
{
  int numCharsToSkip;

  // Skip the prefix "IOR:"
  int numHexCharsRead = 4;

  skipNullOctets ((char *) (thisIor + numHexCharsRead), &numCharsToSkip);
  numHexCharsRead += numCharsToSkip;

  int ulongValue = getOctet2Field ((char *) (thisIor + numHexCharsRead),
                                   &numCharsToSkip);

  // Read the length of the type_id field
  if (ulongValue == 0)
    {
      ACE_DEBUG ((LM_DEBUG,
                  "<%d hexChars read>: type_id len seems to be NULL \n",
                  numHexCharsRead));
      ACE_OS::exit (1);
    }

  numHexCharsRead += numCharsToSkip;
  thisIorInfo->typeIdLen = ulongValue;

  // Read the type_id and store it
  ACE_OS::strncpy (thisIorInfo->typeId,
                   getString ((char *) (thisIor + numHexCharsRead),
                              2 * thisIorInfo->typeIdLen),
                   thisIorInfo->typeIdLen);
  numHexCharsRead += 2 * thisIorInfo->typeIdLen;

  // While we have the type_id, we may as well extract the IDL
  // interface name from it.
  ACE_OS::strcpy (thisIorInfo->idlInterface,
                  getIdlInterface (thisIorInfo->typeId));
  ACE_DEBUG ((LM_DEBUG,
              "\nTypeId\t\t: %s \n",
              thisIorInfo->typeId));
  ACE_DEBUG ((LM_DEBUG,
              "IDL Interface\t: %s\n",
              thisIorInfo->idlInterface));

  skipNullOctets ((char *) (thisIor + numHexCharsRead), &numCharsToSkip);
  numHexCharsRead += numCharsToSkip;

  ulongValue = getOctet2Field ((char *) (thisIor + numHexCharsRead),
                               &numCharsToSkip);

  // Read the 4 octets, which should equal 1 (numTaggedProfiles = 1)
  if (ulongValue != 1)
    {
      ACE_DEBUG ((LM_DEBUG,
                  "<%d hexChars read>: numTaggedProfiles != 1\n",
                  numHexCharsRead));
      ACE_OS::exit (1);
    }
  numHexCharsRead += numCharsToSkip;

  ulongValue = getOctet8Field ((char *) (thisIor + numHexCharsRead),
                               &numCharsToSkip);

  // Read the 4 octets, which should equal 0 (TAG_INTERNET_IOP = 0)

  if (ulongValue != 0)
    {
      ACE_DEBUG ((LM_DEBUG,
                  "<%d hexChars read>: TAG_INTERNET_IOP != 0\n",
                  numHexCharsRead));
      ACE_OS::exit (1);
    }
  numHexCharsRead += numCharsToSkip;

  skipNullOctets ((char *) (thisIor + numHexCharsRead),
                  &numCharsToSkip);
  numHexCharsRead += numCharsToSkip;

  // Since the object_key and the hostname are part of the ProfileBody
  // field of the IOR, and this is the part that needs to be changed,
  // the IOR should be cut here typically if we want to fake it.
  cutAndPasteHere = numHexCharsRead;

  ulongValue = getOctet2Field ((char *) (thisIor + numHexCharsRead),
                               &numCharsToSkip);

  // Read the 4 octets, which represent the length of the ProfileBody
  if (ulongValue == 0)
    {
      ACE_DEBUG ((LM_DEBUG,
                  "<%d hexChars read>: ProfileBody len equals NULL\n",
                  numHexCharsRead));
      ACE_OS::exit (1);
    }

  numHexCharsRead += numCharsToSkip;
  thisIorInfo->profileBodyLen = ulongValue;

  ACE_DEBUG ((LM_DEBUG,
              "\nTAG_INTERNET_IOP Profile:\n"));

  ulongValue = getOctet4Field ((char *) (thisIor + numHexCharsRead),
                               &numCharsToSkip);

  // Read the 4 octets, which represent the IIOP version number = 1
  if (ulongValue != 1)
    {
      ACE_DEBUG ((LM_DEBUG,
                  "<%d hexChars read>: IIOP version != 1\n",
                  numHexCharsRead));
      ACE_OS::exit (1);
    }
  numHexCharsRead += numCharsToSkip;

  skipNullOctets ((char *) (thisIor + numHexCharsRead), &numCharsToSkip);
  numHexCharsRead += numCharsToSkip;

  ulongValue = getOctet2Field ((char *) (thisIor + numHexCharsRead),
                               &numCharsToSkip);

  // Read the 2 octets, which represent the length of the hostname
  if (ulongValue == 0)
    {
      ACE_DEBUG ((LM_DEBUG,
                  "<%d hexChars read>: hostLen equals NULL\n",
                  numHexCharsRead));
      ACE_OS::exit (1);
    }
  numHexCharsRead += numCharsToSkip;
  thisIorInfo->hostLen = ulongValue;

  // Read the hostname and store it
  ACE_OS::strncpy (thisIorInfo->HostName,
                   getString ((char *) (thisIor + numHexCharsRead),
                              2 * thisIorInfo->hostLen),
                   thisIorInfo->hostLen);
  numHexCharsRead += 2 * thisIorInfo->hostLen;

  ACE_DEBUG ((LM_DEBUG,
              "    HostName   : %s\n",
              thisIorInfo->HostName));

  skipNullOctets ((char *) (thisIor + numHexCharsRead),
                  &numCharsToSkip);
  numHexCharsRead += numCharsToSkip;

  ulongValue = getOctet4Field ((char *) (thisIor + numHexCharsRead),
                               &numCharsToSkip);

  // Read the port number and store it
  if (ulongValue == 0)
    {
      ACE_DEBUG ((LM_DEBUG,
                  "<%d hexChars read>: port number equals NULL\n",
                  numHexCharsRead));
      ACE_OS::exit (1);
    }
  numHexCharsRead += numCharsToSkip;
  thisIorInfo->portNum = ulongValue;
  ACE_DEBUG ((LM_DEBUG,
              "    Port Number: %d\n",
              thisIorInfo->portNum));

  skipNullOctets ((char *) (thisIor + numHexCharsRead),
                  &numCharsToSkip);
  numHexCharsRead += numCharsToSkip;

  ulongValue = getOctet2Field ((char *) (thisIor + numHexCharsRead),
                               &numCharsToSkip);

  // Read the object key length and store it
  if (ulongValue == 0)
    {
      ACE_DEBUG ((LM_DEBUG,
                  "<%d hexChars read>: objectKeyLen equals NULL\n",
                  numHexCharsRead));
      ACE_OS::exit (1);
    }
  numHexCharsRead += numCharsToSkip;
  thisIorInfo->objectKeyLen = ulongValue;

  // Read the object_key and store it
  ACE_OS::strncpy (thisIorInfo->objectKey,
                   getString ((char *) (thisIor + numHexCharsRead),
                              2 * thisIorInfo->objectKeyLen),
                   thisIorInfo->objectKeyLen);
  numHexCharsRead += 2 * thisIorInfo->objectKeyLen;

  ACE_DEBUG ((LM_DEBUG,
              "    ObjectKey  : %s \n\n",
              thisIorInfo->objectKey));

  // Pretty print the IOR with more debugging information
  // prettyPrintIOR (*thisIorInfo);
}

char *
IorHandler::getIdlInterface (char *typeId)
{
  int lenInterface;

  char *readStart = strchr (typeId, ':');

   // A sample type_id for an IDL interface name "EchoTests" is
   // IDL:EchoTests:1.0 => the trick is to isolate the parts between
   // the two colons.

  if (readStart == NULL)
    {
      ACE_DEBUG ((LM_DEBUG,
                  "getIdlInterface: type_id contains no starting :\n"));
      ACE_OS::exit (1);
    }

  char *readEnd = strrchr (typeId, ':');

  if (readEnd == NULL)
    {
      ACE_DEBUG ((LM_DEBUG,
                  "getIdlInterface: type_id contains no ending:\n"));
      ACE_OS::exit (1);
    }

  // Now, count the number of bytes between the two colons.
  lenInterface = readEnd - readStart - 1;

  // Copy the IDL interface part of the type_id.
  ACE_OS::strncpy ((char *) idlInterface,
                   readStart + 1,
                   lenInterface);
  idlInterface[lenInterface] = '\0';

  return (char *) idlInterface;
}

void
IorHandler::readIorFromFile (char *filename)
{
  FILE *fp = ACE_OS::fopen (filename, "r");

  // Read the real IOR from the file REAL_IOR_FILE.
  if (fp == NULL)
    {
      ACE_ERROR ((LM_ERROR,
                  "%p\n",
                  "Unable to open file"));
      ACE_OS::exit (1);
    }

  fscanf (fp,
          "%s",
          stringRealIOR);
  ACE_OS::fclose (fp);

  interpretIor (stringRealIOR, &parsedRealIOR);
}