コード例 #1
0
        /// <summary>
        /// Write a block of data to the archive.
        /// </summary>
        /// <param name="block">
        /// The data to write to the archive.
        /// </param>
        public void WriteBlock(byte[] block)
        {
            if (block == null)
            {
                throw new ArgumentNullException(nameof(block));
            }

            if (outputStream == null)
            {
                throw TarException.UnKnown("TarBuffer.WriteBlock - no output stream defined");
            }

            if (block.Length != BlockSize)
            {
                string errorText = string.Format("TarBuffer.WriteBlock - block to write has length '{0}' which is not the block size of '{1}'",
                                                 block.Length, BlockSize);
                throw TarException.UnKnown(errorText);
            }

            if (currentBlockIndex >= BlockFactor)
            {
                WriteRecord();
            }

            Array.Copy(block, 0, recordBuffer, (currentBlockIndex * BlockSize), BlockSize);
            currentBlockIndex++;
        }
コード例 #2
0
        /// <summary>
        /// Write an archive record to the archive, where the record may be
        /// inside of a larger array buffer. The buffer must be "offset plus
        /// record size" long.
        /// </summary>
        /// <param name="buffer">
        /// The buffer containing the record data to write.
        /// </param>
        /// <param name="offset">
        /// The offset of the record data within buffer.
        /// </param>
        public void WriteBlock(byte[] buffer, int offset)
        {
            if (buffer == null)
            {
                throw new ArgumentNullException(nameof(buffer));
            }

            if (outputStream == null)
            {
                throw TarException.UnKnown("TarBuffer.WriteBlock - no output stream stream defined");
            }

            if ((offset < 0) || (offset >= buffer.Length))
            {
                throw new ArgumentOutOfRangeException(nameof(offset));
            }

            if ((offset + BlockSize) > buffer.Length)
            {
                string errorText = string.Format("TarBuffer.WriteBlock - record has length '{0}' with offset '{1}' which is less than the record size of '{2}'",
                                                 buffer.Length, offset, recordSize);
                throw TarException.UnKnown(errorText);
            }

            if (currentBlockIndex >= BlockFactor)
            {
                WriteRecord();
            }

            Array.Copy(buffer, offset, recordBuffer, (currentBlockIndex * BlockSize), BlockSize);

            currentBlockIndex++;
        }
コード例 #3
0
        /// <summary>
        /// Write a TarBuffer record to the archive.
        /// </summary>
        void WriteRecord()
        {
            if (outputStream == null)
            {
                throw TarException.UnKnown("TarBuffer.WriteRecord no output stream defined");
            }

            outputStream.Write(recordBuffer, 0, RecordSize);
            outputStream.Flush();

            currentBlockIndex = 0;
            currentRecordIndex++;
        }
コード例 #4
0
 static void EnsureDirectoryExists(string directoryName)
 {
     if (!Directory.Exists(directoryName))
     {
         try
         {
             Directory.CreateDirectory(directoryName);
         }
         catch (Exception e)
         {
             throw TarException.CreateDir("Exception creating directory '" + directoryName + "', " + e.Message);
         }
     }
 }
コード例 #5
0
        /// <summary>
        /// WriteFinalRecord writes the current record buffer to output any unwritten data is present.
        /// </summary>
        /// <remarks>Any trailing bytes are set to zero which is by definition correct behaviour
        /// for the end of a tar stream.</remarks>
        void WriteFinalRecord()
        {
            if (outputStream == null)
            {
                throw TarException.UnKnown("TarBuffer.WriteFinalRecord no output stream defined");
            }

            if (currentBlockIndex > 0)
            {
                int dataBytes = currentBlockIndex * BlockSize;
                Array.Clear(recordBuffer, dataBytes, RecordSize - dataBytes);
                WriteRecord();
            }

            outputStream.Flush();
        }
コード例 #6
0
        /// <summary>
        /// Skip over a block on the input stream.
        /// </summary>
        public void SkipBlock()
        {
            if (inputStream == null)
            {
                throw TarException.UnKnown("no input stream defined");
            }

            if (currentBlockIndex >= BlockFactor)
            {
                if (!ReadRecord())
                {
                    throw TarException.UnKnown("Failed to read a record");
                }
            }

            currentBlockIndex++;
        }
コード例 #7
0
        /// <summary>
        /// Read a record from data stream.
        /// </summary>
        /// <returns>
        /// false if End-Of-File, else true.
        /// </returns>
        bool ReadRecord()
        {
            if (inputStream == null)
            {
                throw TarException.UnKnown("no input stream stream defined");
            }

            currentBlockIndex = 0;

            int offset      = 0;
            int bytesNeeded = RecordSize;

            while (bytesNeeded > 0)
            {
                long numBytes = inputStream.Read(recordBuffer, offset, bytesNeeded);

                //
                // NOTE
                // We have found EOF, and the record is not full!
                //
                // This is a broken archive. It does not follow the standard
                // blocking algorithm. However, because we are generous, and
                // it requires little effort, we will simply ignore the error
                // and continue as if the entire record were read. This does
                // not appear to break anything upstream. We used to return
                // false in this case.
                //
                // Thanks to '*****@*****.**' for this fix.
                //
                if (numBytes <= 0)
                {
                    break;
                }

                offset      += (int)numBytes;
                bytesNeeded -= (int)numBytes;
            }

            currentRecordIndex++;
            return(true);
        }
コード例 #8
0
        /// <summary>
        /// Read a block from the input stream.
        /// </summary>
        /// <returns>
        /// The block of data read.
        /// </returns>
        public byte[] ReadBlock()
        {
            if (inputStream == null)
            {
                throw TarException.UnKnown("TarBuffer.ReadBlock - no input stream defined");
            }

            if (currentBlockIndex >= BlockFactor)
            {
                if (!ReadRecord())
                {
                    throw TarException.UnKnown("Failed to read a record");
                }
            }

            byte[] result = new byte[BlockSize];

            Array.Copy(recordBuffer, (currentBlockIndex * BlockSize), result, 0, BlockSize);
            currentBlockIndex++;
            return(result);
        }
コード例 #9
0
        /// <summary>
        /// Get the next entry in this tar archive. This will skip
        /// over any remaining data in the current entry, if there
        /// is one, and place the input stream at the header of the
        /// next entry, and read the header and instantiate a new
        /// TarEntry from the header bytes and return that entry.
        /// If there are no more entries in the archive, null will
        /// be returned to indicate that the end of the archive has
        /// been reached.
        /// </summary>
        /// <returns>
        /// The next TarEntry in the archive, or null.
        /// </returns>
        public TarEntry GetNextEntry()
        {
            if (hasHitEOF)
            {
                return(null);
            }

            if (currentEntry != null)
            {
                SkipToNextEntry();
            }

            byte[] headerBuf = tarBuffer.ReadBlock();

            if (headerBuf == null)
            {
                hasHitEOF = true;
            }
            else
            {
                hasHitEOF |= TarBuffer.IsEndOfArchiveBlock(headerBuf);
            }

            if (hasHitEOF)
            {
                currentEntry = null;
            }
            else
            {
                try
                {
                    var header = new TarHeader();
                    header.ParseBuffer(headerBuf);
                    if (!header.IsChecksumValid)
                    {
                        throw TarException.InvalidHeader("Header checksum is invalid");
                    }
                    this.entryOffset = 0;
                    this.entrySize   = header.Size;

                    StringBuilder longName = null;

                    if (header.TypeFlag == TarHeader.LF_GNU_LONGNAME)
                    {
                        byte[] nameBuffer = new byte[TarBuffer.BlockSize];
                        long   numToRead  = this.entrySize;

                        longName = new StringBuilder();

                        while (numToRead > 0)
                        {
                            int numRead = this.Read(nameBuffer, 0, (numToRead > nameBuffer.Length ? nameBuffer.Length : (int)numToRead));

                            if (numRead == -1)
                            {
                                throw TarException.UnKnown("Failed to read long name entry");
                            }

                            longName.Append(TarHeader.ParseName(nameBuffer, 0, numRead).ToString());
                            numToRead -= numRead;
                        }

                        SkipToNextEntry();
                        headerBuf = this.tarBuffer.ReadBlock();
                    }
                    else if (header.TypeFlag == TarHeader.LF_GHDR)
                    {                      // POSIX global extended header
                        // Ignore things we dont understand completely for now
                        SkipToNextEntry();
                        headerBuf = this.tarBuffer.ReadBlock();
                    }
                    else if (header.TypeFlag == TarHeader.LF_XHDR)
                    {                      // POSIX extended header
                        // Ignore things we dont understand completely for now
                        SkipToNextEntry();
                        headerBuf = this.tarBuffer.ReadBlock();
                    }
                    else if (header.TypeFlag == TarHeader.LF_GNU_VOLHDR)
                    {
                        // TODO: could show volume name when verbose
                        SkipToNextEntry();
                        headerBuf = this.tarBuffer.ReadBlock();
                    }
                    else if (header.TypeFlag != TarHeader.LF_NORMAL &&
                             header.TypeFlag != TarHeader.LF_OLDNORM &&
                             header.TypeFlag != TarHeader.LF_LINK &&
                             header.TypeFlag != TarHeader.LF_SYMLINK &&
                             header.TypeFlag != TarHeader.LF_DIR)
                    {
                        // Ignore things we dont understand completely for now
                        SkipToNextEntry();
                        headerBuf = tarBuffer.ReadBlock();
                    }

                    if (entryFactory == null)
                    {
                        currentEntry = new TarEntry(headerBuf);
                        if (longName != null)
                        {
                            currentEntry.Name = longName.ToString();
                        }
                    }
                    else
                    {
                        currentEntry = entryFactory.CreateEntry(headerBuf);
                    }

                    // Magic was checked here for 'ustar' but there are multiple valid possibilities
                    // so this is not done anymore.

                    entryOffset = 0;

                    // TODO: Review How do we resolve this discrepancy?!
                    entrySize = this.currentEntry.Size;
                }
                catch (TarException ex)
                {
                    entrySize    = 0;
                    entryOffset  = 0;
                    currentEntry = null;
                    string errorText = string.Format("Bad header in record {0} block {1} {2}",
                                                     tarBuffer.CurrentRecord, tarBuffer.CurrentBlock, ex.Message);
                    throw TarException.UnKnown(errorText);
                }
            }
            return(currentEntry);
        }
コード例 #10
0
        /// <summary>
        /// Reads bytes from the current tar archive entry.
        ///
        /// This method is aware of the boundaries of the current
        /// entry in the archive and will deal with them appropriately
        /// </summary>
        /// <param name="buffer">
        /// The buffer into which to place bytes read.
        /// </param>
        /// <param name="offset">
        /// The offset at which to place bytes read.
        /// </param>
        /// <param name="count">
        /// The number of bytes to read.
        /// </param>
        /// <returns>
        /// The number of bytes read, or 0 at end of stream/EOF.
        /// </returns>
        public override int Read(byte[] buffer, int offset, int count)
        {
            if (buffer == null)
            {
                throw new ArgumentNullException(nameof(buffer));
            }

            int totalRead = 0;

            if (entryOffset >= entrySize)
            {
                return(0);
            }

            long numToRead = count;

            if ((numToRead + entryOffset) > entrySize)
            {
                numToRead = entrySize - entryOffset;
            }

            if (readBuffer != null)
            {
                int sz = (numToRead > readBuffer.Length) ? readBuffer.Length : (int)numToRead;

                Array.Copy(readBuffer, 0, buffer, offset, sz);

                if (sz >= readBuffer.Length)
                {
                    readBuffer = null;
                }
                else
                {
                    int    newLen = readBuffer.Length - sz;
                    byte[] newBuf = new byte[newLen];
                    Array.Copy(readBuffer, sz, newBuf, 0, newLen);
                    readBuffer = newBuf;
                }

                totalRead += sz;
                numToRead -= sz;
                offset    += sz;
            }

            while (numToRead > 0)
            {
                byte[] rec = tarBuffer.ReadBlock();
                if (rec == null)
                {
                    // Unexpected EOF!
                    throw TarException.UnexpectedEnd("unexpected EOF with " + numToRead + " bytes unread");
                }

                var sz     = (int)numToRead;
                int recLen = rec.Length;

                if (recLen > sz)
                {
                    Array.Copy(rec, 0, buffer, offset, sz);
                    readBuffer = new byte[recLen - sz];
                    Array.Copy(rec, sz, readBuffer, 0, recLen - sz);
                }
                else
                {
                    sz = recLen;
                    Array.Copy(rec, 0, buffer, offset, recLen);
                }

                totalRead += sz;
                numToRead -= sz;
                offset    += sz;
            }

            entryOffset += totalRead;

            return(totalRead);
        }
コード例 #11
0
 /// <summary>
 /// Set the streams position.  This operation is not supported and will throw a NotSupportedException
 /// </summary>
 /// <param name="offset">The offset relative to the origin to seek to.</param>
 /// <param name="origin">The <see cref="SeekOrigin"/> to start seeking from.</param>
 /// <returns>The new position in the stream.</returns>
 /// <exception cref="TarException">Any access</exception>
 public override long Seek(long offset, SeekOrigin origin)
 {
     throw TarException.NotSupportse("TarInputStream Seek not supported");
 }