/commons-net-3.1-src/src/main/java/org/apache/commons/net/tftp/TFTPPacket.java

# · Java · 247 lines · 77 code · 26 blank · 144 comment · 2 complexity · 9f123d86762e798fad03e466ba704b19 MD5 · raw file

  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. package org.apache.commons.net.tftp;
  18. import java.net.DatagramPacket;
  19. import java.net.InetAddress;
  20. /***
  21. * TFTPPacket is an abstract class encapsulating the functionality common
  22. * to the 5 types of TFTP packets. It also provides a static factory
  23. * method that will create the correct TFTP packet instance from a
  24. * datagram. This relieves the programmer from having to figure out what
  25. * kind of TFTP packet is contained in a datagram and create it himself.
  26. * <p>
  27. * Details regarding the TFTP protocol and the format of TFTP packets can
  28. * be found in RFC 783. But the point of these classes is to keep you
  29. * from having to worry about the internals. Additionally, only very
  30. * few people should have to care about any of the TFTPPacket classes
  31. * or derived classes. Almost all users should only be concerned with the
  32. * {@link org.apache.commons.net.tftp.TFTPClient} class
  33. * {@link org.apache.commons.net.tftp.TFTPClient#receiveFile receiveFile()}
  34. * and
  35. * {@link org.apache.commons.net.tftp.TFTPClient#sendFile sendFile()}
  36. * methods.
  37. * <p>
  38. * <p>
  39. * @see TFTPPacketException
  40. * @see TFTP
  41. ***/
  42. public abstract class TFTPPacket
  43. {
  44. /***
  45. * The minimum size of a packet. This is 4 bytes. It is enough
  46. * to store the opcode and blocknumber or other required data
  47. * depending on the packet type.
  48. ***/
  49. static final int MIN_PACKET_SIZE = 4;
  50. /***
  51. * This is the actual TFTP spec
  52. * identifier and is equal to 1.
  53. * Identifier returned by {@link #getType getType()}
  54. * indicating a read request packet.
  55. ***/
  56. public static final int READ_REQUEST = 1;
  57. /***
  58. * This is the actual TFTP spec
  59. * identifier and is equal to 2.
  60. * Identifier returned by {@link #getType getType()}
  61. * indicating a write request packet.
  62. ***/
  63. public static final int WRITE_REQUEST = 2;
  64. /***
  65. * This is the actual TFTP spec
  66. * identifier and is equal to 3.
  67. * Identifier returned by {@link #getType getType()}
  68. * indicating a data packet.
  69. ***/
  70. public static final int DATA = 3;
  71. /***
  72. * This is the actual TFTP spec
  73. * identifier and is equal to 4.
  74. * Identifier returned by {@link #getType getType()}
  75. * indicating an acknowledgement packet.
  76. ***/
  77. public static final int ACKNOWLEDGEMENT = 4;
  78. /***
  79. * This is the actual TFTP spec
  80. * identifier and is equal to 5.
  81. * Identifier returned by {@link #getType getType()}
  82. * indicating an error packet.
  83. ***/
  84. public static final int ERROR = 5;
  85. /***
  86. * The TFTP data packet maximum segment size in bytes. This is 512
  87. * and is useful for those familiar with the TFTP protocol who want
  88. * to use the {@link org.apache.commons.net.tftp.TFTP}
  89. * class methods to implement their own TFTP servers or clients.
  90. ***/
  91. public static final int SEGMENT_SIZE = 512;
  92. /*** The type of packet. ***/
  93. int _type;
  94. /*** The port the packet came from or is going to. ***/
  95. int _port;
  96. /*** The host the packet is going to be sent or where it came from. ***/
  97. InetAddress _address;
  98. /***
  99. * When you receive a datagram that you expect to be a TFTP packet, you use
  100. * this factory method to create the proper TFTPPacket object
  101. * encapsulating the data contained in that datagram. This method is the
  102. * only way you can instantiate a TFTPPacket derived class from a
  103. * datagram.
  104. * <p>
  105. * @param datagram The datagram containing a TFTP packet.
  106. * @return The TFTPPacket object corresponding to the datagram.
  107. * @exception TFTPPacketException If the datagram does not contain a valid
  108. * TFTP packet.
  109. ***/
  110. public final static TFTPPacket newTFTPPacket(DatagramPacket datagram)
  111. throws TFTPPacketException
  112. {
  113. byte[] data;
  114. TFTPPacket packet = null;
  115. if (datagram.getLength() < MIN_PACKET_SIZE) {
  116. throw new TFTPPacketException(
  117. "Bad packet. Datagram data length is too short.");
  118. }
  119. data = datagram.getData();
  120. switch (data[1])
  121. {
  122. case READ_REQUEST:
  123. packet = new TFTPReadRequestPacket(datagram);
  124. break;
  125. case WRITE_REQUEST:
  126. packet = new TFTPWriteRequestPacket(datagram);
  127. break;
  128. case DATA:
  129. packet = new TFTPDataPacket(datagram);
  130. break;
  131. case ACKNOWLEDGEMENT:
  132. packet = new TFTPAckPacket(datagram);
  133. break;
  134. case ERROR:
  135. packet = new TFTPErrorPacket(datagram);
  136. break;
  137. default:
  138. throw new TFTPPacketException(
  139. "Bad packet. Invalid TFTP operator code.");
  140. }
  141. return packet;
  142. }
  143. /***
  144. * This constructor is not visible outside of the package. It is used
  145. * by subclasses within the package to initialize base data.
  146. * <p>
  147. * @param type The type of the packet.
  148. * @param address The host the packet came from or is going to be sent.
  149. * @param port The port the packet came from or is going to be sent.
  150. **/
  151. TFTPPacket(int type, InetAddress address, int port)
  152. {
  153. _type = type;
  154. _address = address;
  155. _port = port;
  156. }
  157. /***
  158. * This is an abstract method only available within the package for
  159. * implementing efficient datagram transport by elminating buffering.
  160. * It takes a datagram as an argument, and a byte buffer in which
  161. * to store the raw datagram data. Inside the method, the data
  162. * should be set as the datagram's data and the datagram returned.
  163. * <p>
  164. * @param datagram The datagram to create.
  165. * @param data The buffer to store the packet and to use in the datagram.
  166. * @return The datagram argument.
  167. ***/
  168. abstract DatagramPacket _newDatagram(DatagramPacket datagram, byte[] data);
  169. /***
  170. * Creates a UDP datagram containing all the TFTP packet
  171. * data in the proper format.
  172. * This is an abstract method, exposed to the programmer in case he
  173. * wants to implement his own TFTP client instead of using
  174. * the {@link org.apache.commons.net.tftp.TFTPClient}
  175. * class.
  176. * Under normal circumstances, you should not have a need to call this
  177. * method.
  178. * <p>
  179. * @return A UDP datagram containing the TFTP packet.
  180. ***/
  181. public abstract DatagramPacket newDatagram();
  182. /***
  183. * Returns the type of the packet.
  184. * <p>
  185. * @return The type of the packet.
  186. ***/
  187. public final int getType()
  188. {
  189. return _type;
  190. }
  191. /***
  192. * Returns the address of the host where the packet is going to be sent
  193. * or where it came from.
  194. * <p>
  195. * @return The type of the packet.
  196. ***/
  197. public final InetAddress getAddress()
  198. {
  199. return _address;
  200. }
  201. /***
  202. * Returns the port where the packet is going to be sent
  203. * or where it came from.
  204. * <p>
  205. * @return The port where the packet came from or where it is going.
  206. ***/
  207. public final int getPort()
  208. {
  209. return _port;
  210. }
  211. /*** Sets the port where the packet is going to be sent. ***/
  212. public final void setPort(int port)
  213. {
  214. _port = port;
  215. }
  216. /*** Sets the host address where the packet is going to be sent. ***/
  217. public final void setAddress(InetAddress address)
  218. {
  219. _address = address;
  220. }
  221. }