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
|
/*
* SNMP Package
*
* Copyright (C) 2004, Jonathan Sevy <jsevy@mcs.drexel.edu>
*
* This is free software. Redistribution and use in source and binary forms, with
* or without modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* 3. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
* EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
* OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
package snmp;
import java.io.*;
/**
* SNMPBERCodec defines methods for converting from ASN.1 BER encoding to SNMPObject subclasses. The extraction
* process usually produces a tree structure of objects with an SNMPSequence object at the root; this
* is the usual behavior when a received encoded message is received from an SNMP device.
*/
public class SNMPBERCodec
{
public static final byte SNMPINTEGER = 0x02;
public static final byte SNMPBITSTRING = 0x03;
public static final byte SNMPOCTETSTRING = 0x04;
public static final byte SNMPNULL = 0x05;
public static final byte SNMPOBJECTIDENTIFIER = 0x06;
public static final byte SNMPSEQUENCE = 0x30;
public static final byte SNMPIPADDRESS = (byte)0x40;
public static final byte SNMPCOUNTER32 = (byte)0x41;
public static final byte SNMPGAUGE32 = (byte)0x42;
public static final byte SNMPTIMETICKS = (byte)0x43;
public static final byte SNMPOPAQUE = (byte)0x44;
public static final byte SNMPNSAPADDRESS = (byte)0x45;
public static final byte SNMPCOUNTER64 = (byte)0x46;
public static final byte SNMPUINTEGER32 = (byte)0x47;
public static final byte SNMPGETREQUEST = (byte)0xA0;
public static final byte SNMPGETNEXTREQUEST = (byte)0xA1;
public static final byte SNMPGETRESPONSE = (byte)0xA2;
public static final byte SNMPSETREQUEST = (byte)0xA3;
public static final byte SNMPTRAP = (byte)0xA4;
// SNMPv2 constants
public static final byte SNMPv2pCOMMUNICATION = (byte)0xA2;
public static final byte SNMPv2pAUTHORIZEDMESSAGE = (byte)0xA1;
public static final byte SNMPv2pENCRYPTEDMESSAGE = (byte)0xA1;
public static final byte SNMPv2BULKREQUEST = (byte)0xA5;
public static final byte SNMPv2INFORMREQUEST = (byte)0xA6;
public static final byte SNMPv2TRAP = (byte)0xA7;
public static final byte SNMPv2pENCRYPTEDDATA = (byte)0xA1;
public static final byte SNMPUNKNOWNOBJECT = 0x00;
/**
* Extracts an SNMP object given its type, length, value triple as an SNMPTLV object.
* Called by SNMPObject subclass constructors.
* @throws SNMPBadValueException Indicates byte array in value field is uninterprettable for
* specified SNMP object type.
*/
public static SNMPObject extractEncoding(SNMPTLV theTLV)
throws SNMPBadValueException
{
switch (theTLV.tag)
{
case SNMPINTEGER:
{
return new SNMPInteger(theTLV.value);
}
case SNMPSEQUENCE:
{
return new SNMPSequence(theTLV.value);
}
case SNMPOBJECTIDENTIFIER:
{
return new SNMPObjectIdentifier(theTLV.value);
}
case SNMPOCTETSTRING:
{
return new SNMPOctetString(theTLV.value);
}
case SNMPBITSTRING:
{
return new SNMPBitString(theTLV.value);
}
case SNMPIPADDRESS:
{
return new SNMPIPAddress(theTLV.value);
}
case SNMPCOUNTER32:
{
return new SNMPCounter32(theTLV.value);
}
case SNMPGAUGE32:
{
return new SNMPGauge32(theTLV.value);
}
case SNMPTIMETICKS:
{
return new SNMPTimeTicks(theTLV.value);
}
case SNMPNSAPADDRESS:
{
return new SNMPNSAPAddress(theTLV.value);
}
case SNMPCOUNTER64:
{
return new SNMPCounter64(theTLV.value);
}
case SNMPUINTEGER32:
{
return new SNMPUInteger32(theTLV.value);
}
case SNMPGETREQUEST:
case SNMPGETNEXTREQUEST:
case SNMPGETRESPONSE:
case SNMPSETREQUEST:
{
return new SNMPPDU(theTLV.value, theTLV.tag);
}
case SNMPTRAP:
{
return new SNMPv1TrapPDU(theTLV.value);
}
case SNMPv2TRAP:
{
return new SNMPv2TrapPDU(theTLV.value);
}
case SNMPv2INFORMREQUEST:
{
return new SNMPv2InformRequestPDU(theTLV.value);
}
case SNMPNULL:
case SNMPOPAQUE:
{
return new SNMPNull();
}
default:
{
//System.out.println("Unrecognized tag");
//return new SNMPOctetString(theTLV.value);
return new SNMPUnknownObject(theTLV.value);
}
}
}
/**
* Extracts the type, length and value of the SNMP object whose BER encoding begins at the
* specified position in the given byte array. Throws an SNMPBadValueException if there's
* any problem with the extraction.
*/
public static SNMPTLV extractNextTLV(byte[] enc, int position)
throws SNMPBadValueException
{
SNMPTLV nextTLV = new SNMPTLV();
int currentPos = position;
try
{
// get tag
/*
if ((enc[currentPos] % 32) < 31)
{
// single byte tag; extract value
nextTLV.tag = (int)(enc[currentPos]);
}
else
{
// multiple byte tag; for now, just return value in subsequent bytes ...
// but need to think about universal / application fields, etc...
nextTLV.tag = 0;
do
{
currentPos++;
nextTLV.tag = nextTLV.tag * 128 + (int)(enc[currentPos] % 128);
}
while ((enc[currentPos]/128) >= 1);
}
*/
// single byte tag; extract value
nextTLV.tag = enc[currentPos];
currentPos++; // now at start of length info
// get length of data
int dataLength;
int unsignedValue = enc[currentPos];
if (unsignedValue < 0)
unsignedValue += 256;
if ((unsignedValue / 128) < 1)
{
// single byte length; extract value
dataLength = unsignedValue;
}
else
{
// multiple byte length; first byte's value (minus first bit) is # of length bytes
int numBytes = (unsignedValue % 128);
dataLength = 0;
for (int i = 0; i < numBytes; i++)
{
currentPos++;
unsignedValue = enc[currentPos];
if (unsignedValue < 0)
unsignedValue += 256;
dataLength = dataLength * 256 + unsignedValue;
}
}
currentPos++; // now at start of data
// set total length
nextTLV.totalLength = currentPos - position + dataLength;
// extract data portion
ByteArrayOutputStream outBytes = new ByteArrayOutputStream();
outBytes.write(enc, currentPos, dataLength);
nextTLV.value = outBytes.toByteArray();
return nextTLV;
}
catch (IndexOutOfBoundsException e)
{
// whatever the exception, throw an SNMPBadValueException
throw new SNMPBadValueException("Problem while decoding SNMP: packet truncated or corrupt");
}
catch (Exception e)
{
// whatever the exception, throw an SNMPBadValueException
throw new SNMPBadValueException("Problem while decoding SNMP");
}
}
/**
* Utility function for encoding a length as a BER byte sequence
*/
public static byte[] encodeLength(int length)
{
ByteArrayOutputStream outBytes = new ByteArrayOutputStream();
// see if can be represented in single byte
// don't forget the first bit is the "long field test" bit!!
if (length < 128)
{
byte[] len = {(byte)length};
outBytes.write(len, 0, 1);
}
else
{
// too big for one byte
// see how many are needed:
int numBytes = 0;
int temp = length;
while (temp > 0)
{
++numBytes;
temp = (int)Math.floor(temp / 256);
}
byte num = (byte)numBytes;
num += 128; // set the "long format" bit
outBytes.write(num);
byte[] len = new byte[numBytes];
for (int i = numBytes-1; i >= 0; --i)
{
len[i] = (byte)(length % 256);
length = (int)Math.floor(length / 256);
}
outBytes.write(len, 0, numBytes);
}
return outBytes.toByteArray();
}
}
|