/* ==================================================================== Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==================================================================== */ package org.apache.poi.poifs.filesystem; import org.apache.poi.EncryptedDocumentException; import org.apache.poi.poifs.common.POIFSConstants; import org.apache.poi.poifs.crypt.Decryptor; import org.apache.poi.poifs.crypt.EncryptionInfo; import org.apache.poi.util.IOUtils; import java.io.FilterInputStream; import java.io.IOException; import java.io.InputStream; import java.io.PushbackInputStream; import java.security.GeneralSecurityException; /** * A small base class for the various factories, e.g. WorkbookFactory, * SlideShowFactory to combine common code here. */ public class DocumentFactoryHelper { /** * Wrap the OLE2 data in the NPOIFSFileSystem into a decrypted stream by using * the given password. * * @param fs The OLE2 stream for the document * @param password The password, null if the default password should be used * @return A stream for reading the decrypted data * @throws IOException If an error occurs while decrypting or if the password does not match */ public static InputStream getDecryptedStream(final NPOIFSFileSystem fs, String password) throws IOException { EncryptionInfo info = new EncryptionInfo(fs); Decryptor d = Decryptor.getInstance(info); try { boolean passwordCorrect = false; if (password != null && d.verifyPassword(password)) { passwordCorrect = true; } if (!passwordCorrect && d.verifyPassword(Decryptor.DEFAULT_PASSWORD)) { passwordCorrect = true; } if (passwordCorrect) { // wrap the stream in a FilterInputStream to close the NPOIFSFileSystem // as well when the resulting OPCPackage is closed return new FilterInputStream(d.getDataStream(fs.getRoot())) { @Override public void close() throws IOException { fs.close(); super.close(); } }; } else { if (password != null) throw new EncryptedDocumentException("Password incorrect"); else throw new EncryptedDocumentException("The supplied spreadsheet is protected, but no password was supplied"); } } catch (GeneralSecurityException e) { throw new IOException(e); } } /** * Checks that the supplied InputStream (which MUST * support mark and reset, or be a PushbackInputStream) * has a OOXML (zip) header at the start of it. * If your InputStream does not support mark / reset, * then wrap it in a PushBackInputStream, then be * sure to always use that, and not the original! * @param inp An InputStream which supports either mark/reset, or is a PushbackInputStream */ public static boolean hasOOXMLHeader(InputStream inp) throws IOException { // We want to peek at the first 4 bytes inp.mark(4); byte[] header = new byte[4]; int bytesRead = IOUtils.readFully(inp, header); // Wind back those 4 bytes if(inp instanceof PushbackInputStream) { PushbackInputStream pin = (PushbackInputStream)inp; pin.unread(header, 0, bytesRead); } else { inp.reset(); } // Did it match the ooxml zip signature? return ( bytesRead == 4 && header[0] == POIFSConstants.OOXML_FILE_HEADER[0] && header[1] == POIFSConstants.OOXML_FILE_HEADER[1] && header[2] == POIFSConstants.OOXML_FILE_HEADER[2] && header[3] == POIFSConstants.OOXML_FILE_HEADER[3] ); } }