All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.appengine.api.blobstore.dev.FileBlobStorage Maven / Gradle / Ivy

Go to download

SDK for dev_appserver (local development) with some of the dependencies shaded (repackaged)

There is a newer version: 2.0.31
Show newest version
/*
 * Copyright 2021 Google LLC
 *
 * Licensed 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
 *
 *     https://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 com.google.appengine.api.blobstore.dev;

import com.google.appengine.api.blobstore.BlobKey;
import com.google.appengine.repackaged.com.google.common.annotations.VisibleForTesting;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.security.AccessController;
import java.security.PrivilegedAction;
import java.security.PrivilegedActionException;
import java.security.PrivilegedExceptionAction;

/**
 * {@code FileBlobStorage} provides durable persistence of blobs by storing blob content directly to
 * disk.
 *
 */
class FileBlobStorage implements BlobStorage {
  private final File rootDirectory;
  private final BlobInfoStorage blobInfoStorage;

  FileBlobStorage(File rootDirectory, BlobInfoStorage blobInfoStorage) {
    this.rootDirectory = rootDirectory;
    this.blobInfoStorage = blobInfoStorage;
  }

  @Override
  public boolean hasBlob(final BlobKey blobKey) {

    return AccessController.doPrivileged(
        new PrivilegedAction() {
          @Override
          public Boolean run() {
            return getFileForBlob(blobKey).exists();
          }
        });
  }

  @Override
  public OutputStream storeBlob(final BlobKey blobKey) throws IOException {
    try {
      return AccessController.doPrivileged(
          new PrivilegedExceptionAction() {
            @Override
            public FileOutputStream run() throws IOException {
              return new FileOutputStream(getFileForBlob(blobKey));
            }
          });
    } catch (PrivilegedActionException ex) {
      Throwable cause = ex.getCause();
      throw (cause instanceof IOException) ? (IOException) cause : new IOException(cause);
    }
  }

  @Override
  public InputStream fetchBlob(final BlobKey blobKey) throws IOException {
    try {
      return AccessController.doPrivileged(
          new PrivilegedExceptionAction() {
            @Override
            public FileInputStream run() throws IOException {
              return new FileInputStream(getFileForBlob(blobKey));
            }
          });
    } catch (PrivilegedActionException ex) {
      Throwable cause = ex.getCause();
      throw (cause instanceof IOException) ? (IOException) cause : new IOException(cause);
    }
  }

  @Override
  public void deleteBlob(final BlobKey blobKey) throws IOException {
    // Make sure the blob exists before deleting it. This way an unknown
    // blobkey that is compatible with the filename will not cause the
    // info storage and the directory to get out of sync. For example,
    // a valid key of XYZ has a compatible filename of /XYZ and XYZ/
    // (the former is only compatible as we add a directory prefix).
    if (blobInfoStorage.loadBlobInfo(blobKey) == null
        && blobInfoStorage.loadGsFileInfo(blobKey) == null) {
      throw new RuntimeException("Unknown blobkey: " + blobKey);
    }
    try {
      AccessController.doPrivileged(
          new PrivilegedExceptionAction() {
            @Override
            public Void run() throws IOException {
              File file = getFileForBlob(blobKey);
              if (!file.delete()) {
                throw new IOException("Could not delete: " + file);
              }
              return null;
            }
          });
    } catch (PrivilegedActionException ex) {
      Throwable cause = ex.getCause();
      throw (cause instanceof IOException) ? (IOException) cause : new IOException(cause);
    }
    blobInfoStorage.deleteBlobInfo(blobKey);
  }

  @VisibleForTesting
  File getFileForBlob(BlobKey blobKey) {
    // Blobkeys should never have the separator character in them (since
    // keys are web-safe base64 and as of this writing, no platforms that
    // I know of have the separator char in that list we are good). Doing
    // this to prevent an attack where a made up blob key accesses files
    // outside the blobstore directory.
    if (blobKey.getKeyString().contains(File.separator)) {
      throw new RuntimeException("illegal blobKey: " + blobKey.getKeyString());
    }
    File file = new File(rootDirectory, blobKey.getKeyString());
    // One last sanity check on filenames. Doing this for Windows and a key
    // name like "d:XYZ" which would get missed by the check above.
    if (!file.getAbsoluteFile().getParent().equals(rootDirectory.getAbsolutePath())) {
      throw new RuntimeException("illegal blobKey: " + blobKey.getKeyString());
    }
    return file;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy