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 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522
|
/*
* Copyright (c) 2001, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code 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
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package nsk.share.jdwp;
import nsk.share.*;
import java.util.Vector;
import java.io.*;
/**
* This class represents a JDWP packet.
*/
public class Packet extends ByteBuffer {
/** JDWP packet flags constant. */
// public final static byte flNoFlags = (byte)0x0;
/** JDWP packet flags constant. */
// public final static byte flReply = (byte)0x80;
/** Offset of "length" field of JDWP packet. */
public final static int LengthOffset = 0;
/** Offset of "id" field of JDWP packet. */
public final static int IdOffset = LengthOffset + 4;
/** Offset of "flags" field of JDWP packet. */
public final static int FlagsOffset = IdOffset + 4;
/** Offset of full "command" field of JDWP packet. */
public final static int FullCommandOffset = FlagsOffset + 1;
/** Offset of "command" field of JDWP command packet. */
public final static int CommandSetOffset = FullCommandOffset;
/** Offset of "command" field of JDWP command packet. */
public final static int CommandOffset = CommandSetOffset + 1;
/** Offset of "error" field of JDWP reply packet. */
public final static int ErrorCodeOffset = FlagsOffset + 1;
/** Offset of "data" section of JDWP packet. */
public final static int DataOffset = FullCommandOffset + 2;
/** Size of JDWP packet header. */
public final static int PacketHeaderSize = DataOffset;
/**
* Makes empty JDWP packet.
*/
public Packet() {
super();
resetBuffer();
}
/**
* Makes JDWP packet with data from the specified byte buffer.
*/
// public Packet(ByteBuffer packet) {
public Packet(Packet packet) {
super(packet);
resetPosition();
}
/**
* Clear buffer of the packet.
*/
public void resetBuffer() {
super.resetBuffer();
while (length() < PacketHeaderSize)
addByte((byte) 0);
setLength();
resetPosition();
}
/**
* Return current position from begin of packet data area.
*/
public int currentDataPosition() {
return currentPosition() - PacketHeaderSize;
}
/**
* Return value to the "length" field of JDWP packet.
*/
public int getLength() {
try {
return getInt(LengthOffset);
}
catch (BoundException e) {
throw new Failure("Caught unexpected exception while getting packet length value from header:\n\t"
+ e);
}
}
/**
* Assign specified value to the "length" field of JDWP packet.
*/
public void setLength(int length) {
try {
putInt(LengthOffset, length);
}
catch (BoundException e) {
throw new Failure("Caught unexpected exception while setting packet length value into header:\n\t"
+ e);
}
}
/**
* Assign packet length value to the "length" field of JDWP packet.
*/
public void setLength() {
setLength(length());
}
/**
* Return value of the "id" field of JDWP packet.
*/
public int getPacketID() {
try {
return getInt(IdOffset);
}
catch (BoundException e) {
throw new Failure("Caught unexpected exception while getting packet ID value from header:\n\t"
+ e);
}
}
/**
* Assign value to the "id" field of JDWP packet.
*/
public void setPacketID(int Id) {
try {
putInt(IdOffset, Id);
}
catch (BoundException e) {
throw new Failure("Caught unexpected exception while setting packet ID value into header:\n\t"
+ e);
}
}
/**
* Return value of the "flags" field of JDWP packet.
*/
public byte getFlags() {
try {
return getByte(FlagsOffset);
}
catch (BoundException e) {
throw new Failure("Caught unexpected exception while getting packet flags value from header:\n\t"
+ e);
}
}
/**
* Assign value to the "flags" field of JDWP packet.
*/
public void setFlags(byte flags) {
try {
putByte(FlagsOffset, flags);
}
catch (BoundException e) {
throw new Failure("Caught unexpected exception while setting packet flags value into header:\n\t"
+ e);
}
}
/**
* Sets the current parser position to "data" field of JDWP packet.
*/
public void resetPosition() {
resetPosition(PacketHeaderSize);
}
/**
* Return size of the "data" part of JDWP packet.
*/
public int getDataSize() {
return length() - PacketHeaderSize;
}
//////////////////////////////////////////////////////////////////////////
/**
* Append fieldID to the end of this buffer.
*/
public void addFieldID(long b) {
addID(b, JDWP.TypeSize.FIELD_ID);
}
/**
* Append methodID to the end of this buffer.
*/
public void addMethodID(long b) {
addID(b, JDWP.TypeSize.METHOD_ID);
}
/**
* Append objectID to the end of this buffer.
*/
public void addObjectID(long b) {
addID(b, JDWP.TypeSize.OBJECT_ID);
}
/**
* Append referenceID to the end of this buffer.
*/
public void addReferenceTypeID(long b) {
addID(b, JDWP.TypeSize.REFERENCE_TYPE_ID);
}
/**
* Append frameID to the end of this buffer.
*/
public void addFrameID(long b) {
addID(b, JDWP.TypeSize.FRAME_ID);
}
/**
* Append string value (an UTF-8 encoded string, not zero terminated,
* preceded by a four-byte integer length) to the end of this buffer.
*/
public void addString(String value) {
final int count = JDWP.TypeSize.INT + value.length();
addInt(value.length());
try {
addBytes(value.getBytes("UTF-8"), 0, value.length());
} catch (UnsupportedEncodingException e) {
throw new Failure("Unsupported UTF-8 ecnoding while adding string value to JDWP packet:\n\t"
+ e);
}
}
/**
* Append location value to the end of this buffer.
*/
public void addLocation(JDWP.Location location) {
addBytes(location.getBytes(), 0, location.length());
}
/**
* Append untagged value to the end of this buffer.
*/
public void addUntaggedValue(JDWP.UntaggedValue value, byte tag) {
value.addValueTo(this, tag);
}
/**
* Append tagged value to the end of this buffer.
*/
public void addValue(JDWP.Value value) {
value.addValueTo(this);
}
//////////////////////////////////////////////////////////////////////////
// get packet data
//////////////////////////////////////////////////////////////////////////
/**
* Read a fieldID value from byte buffer at the current parser position.
*
* @throws BoundException if there is no valid value bytes at the given position
*/
public long getFieldID() throws BoundException {
return getID(JDWP.TypeSize.FIELD_ID);
}
/**
* Read a methodID value from byte buffer at the current parser position.
*
* @throws BoundException if there is no valid value bytes at the given position
*/
public long getMethodID() throws BoundException {
return getID(JDWP.TypeSize.METHOD_ID);
}
/**
* Read an objectID value from byte buffer at the current parser position.
*
* @throws BoundException if there is no valid value bytes at the given position
*/
public long getObjectID() throws BoundException {
return getID(JDWP.TypeSize.OBJECT_ID);
}
/**
* Read a referenceTypeID value from byte buffer at the current parser position.
*
* @throws BoundException if there is no valid value bytes at the given position
*/
public long getReferenceTypeID() throws BoundException {
return getID(JDWP.TypeSize.REFERENCE_TYPE_ID);
}
/**
* Read a frameID value from byte buffer at the current parser position.
*
* @throws BoundException if there is no valid value bytes at the given position
*/
public long getFrameID() throws BoundException {
return getID(JDWP.TypeSize.FRAME_ID);
}
/**
* Read from this buffer a string value at the current parser
* position and returns this value.
*
* @throws BoundException if there are no valid string bytes in the buffer
*/
public String getString() throws BoundException {
final int count = JDWP.TypeSize.INT;
int available = length() - currentPosition();
if (count > available) {
throw new BoundException("Unable to get " + count + " bytes of string length value at " +
offsetString() + " (available bytes: " + available + ")" );
}
int len = getInt();
if (len < 0)
throw new BoundException("Negative length of string to get: " + len);
if (len == 0)
return "";
available = length() - currentPosition();
if (len > available) {
throw new BoundException("Unable to get " + len + " bytes of string value at " +
offsetString() + " (available bytes: " + available + ")" );
}
byte[] s = new byte[len];
for (int i = 0; i < len; i++)
s[i] = getByte();
try {
return new String(s, "UTF-8");
} catch (UnsupportedEncodingException e) {
throw new Failure("Unsupported UTF-8 ecnoding while extracting string value from JDWP packet:\n\t"
+ e);
}
}
/**
* Reads from this buffer an location value at the current parser
* position and returns this value.
*
* @throws BoundException if there are no enough bytes in the buffer
*/
public JDWP.Location getLocation() throws BoundException {
final int count = JDWP.TypeSize.LOCATION;
final int available = length() - currentPosition();
if (count > available) {
throw new BoundException("Unable to get " + count + " bytes of location value at " +
offsetString() + " (available bytes: " + available + ")" );
}
JDWP.Location location = new JDWP.Location();
try {
for (int i = 0; i < JDWP.TypeSize.LOCATION; i++) {
location.putByte(i, getByte());
}
}
catch (BoundException e) {
throw new TestBug("Caught unexpected bound exception while getting " +
count + " bytes of location value:\n\t" + e);
};
return location;
}
/**
* Reads from this buffer an untagged value at the current parser
* position and returns this value.
*
* @throws BoundException if there are no enough bytes in the buffer
*/
public JDWP.UntaggedValue getUntaggedValue(byte tag) throws BoundException {
JDWP.UntaggedValue value = new JDWP.UntaggedValue();
try {
value.getValueFrom(this, tag);
}
catch (BoundException e) {
throw new TestBug("Caught unexpected bound exception while getting " +
" bytes of a value:\n\t" + e);
};
return value;
}
/**
* Reads from this buffer a tagged value at the current parser
* position and returns this value.
*
* @throws BoundException if there are no enough bytes in the buffer
*/
public JDWP.Value getValue() throws BoundException {
JDWP.Value value = new JDWP.Value();
try {
value.getValueFrom(this);
}
catch (BoundException e) {
throw new TestBug("Caught unexpected bound exception while getting " +
" bytes of a value:\n\t" + e);
};
return value;
}
////////////////////////////////////////////////////////////////
/**
* Read packet bytes from the stream.
*
* @throws IOException if error occured when reading bytes
*/
public void readFrom(Transport transport) throws IOException {
resetBuffer();
// System.err.println("Reading packet header");
try {
for (int i = 0; i < PacketHeaderSize; i++) {
byte b = transport.read();
putByte(i, b);
}
}
catch (BoundException e) {
throw new TestBug(e);
}
int length = getLength();
checkSpace(length - PacketHeaderSize);
// System.err.println("Packet size: " + length);
for (int i = PacketHeaderSize; i < length; i++) {
byte b = transport.read();
addByte(b);
}
// System.err.println("Packet read successfully");
}
/**
* Write packet bytes to the stream.
*
* @throws IOException if error occured when reading bytes
*/
public void writeTo(Transport transport) throws IOException {
setLength();
// System.err.println("Writing packet bytes: " + length());
transport.write(bytes, 0, length());
}
/**
* Check packet header.
* This method check if packet has valid values in header fields.
*
* @throws PacketFormatException if packet header fields has error or invalid values
*/
public void checkHeader() throws PacketFormatException {
if (getLength() != length()) {
throw new PacketFormatException("Unexpected packet length value in the header:"
+ getLength());
}
}
/**
* Check if packet is parsed totally and no trailing bytes left unparsed.
* This method check if packet has valid values in header fields.
*
* @throws PacketFormatException if there are trailing bytes left unparsed
*/
public void checkParsed() throws PacketFormatException {
if (! isParsed()) {
throw new PacketFormatException("Extra trailing bytes found in the packet at: "
+ offsetString());
}
}
/**
* Return string representation of the packet header.
*/
public String headerToString() {
return "Packet header (" + PacketHeaderSize + " bytes):" + "\n"
+ " " + toHexString(LengthOffset, 4) + " (length) : 0x" + toHexDecString(getLength(), 8) + "\n"
+ " " + toHexString(IdOffset, 4) + " (id) : 0x" + toHexDecString(getPacketID(), 8) + "\n"
+ " " + toHexString(FlagsOffset, 4) + " (flags) : 0x" + toHexDecString(getFlags(), 2) + "\n";
}
/**
* Return string representation of the packet.
*/
public String toString() {
return headerToString()
+ "Entire packet (" + length() + " bytes): " + "\n"
+ super.toString(0)
+ "Packet end";
}
/**
* Exception indicated that packet has an ivnalid structure.
*/
class PacketFormatException extends BoundException {
PacketFormatException(String message) {
super(message);
}
}
}
|