diff --git a/core/modules/book/book.views.inc b/core/modules/book/book.views.inc
new file mode 100644
index 0000000..e4a5159
--- /dev/null
+++ b/core/modules/book/book.views.inc
@@ -0,0 +1,108 @@
+<?php
+
+/**
+ * @file
+ * Provide views data for book.module.
+ *
+ * @ingroup views_module_handlers
+ */
+
+/**
+ * Implements hook_views_data().
+ */
+function book_views_data() {
+
+  $data['book']['table']['group']  = t('Book');
+  $data['book']['table']['join'] = array(
+    'node' => array(
+      'left_field' => 'nid',
+      'field' => 'nid',
+    ),
+  );
+
+  $data['book']['bid'] = array(
+    'title' => t('Top level book'),
+    'help' => t('The book the node is in.'),
+    'relationship' => array(
+      'base' => 'node',
+      'id' => 'standard',
+      'label' => t('Book'),
+    ),
+  );
+
+  // menu_links table -- this is aliased so we can get just book relations
+
+  $data['book_menu_links']['table']['group'] = t('Book');
+  $data['book_menu_links']['table']['join'] = array(
+    'node' => array(
+      'table' => 'menu_links',
+      'left_table' => 'book',
+      'left_field' => 'mlid',
+      'field' => 'mlid',
+    ),
+  );
+
+  $data['book_menu_links']['weight'] = array(
+    'title' => t('Weight'),
+    'help' => t('The weight of the book page.'),
+    'field' => array(
+      'id' => 'numeric',
+      'click sortable' => TRUE,
+    ),
+    'sort' => array(
+      'id' => 'standard',
+    ),
+  );
+
+  $data['book_menu_links']['depth'] = array(
+    'title' => t('Depth'),
+    'help' => t('The depth of the book page in the hierarchy; top level books have a depth of 1.'),
+    'field' => array(
+      'id' => 'numeric',
+      'click sortable' => TRUE,
+    ),
+    'sort' => array(
+      'id' => 'standard',
+    ),
+    'filter' => array(
+      'id' => 'numeric',
+    ),
+    'argument' => array(
+      'id' => 'standard',
+    ),
+  );
+
+  $data['book_menu_links']['p'] = array(
+    'title' => t('Hierarchy'),
+    'help' => t('The order of pages in the book hierarchy.'),
+    'sort' => array(
+      'id' => 'menu_hierarchy',
+    ),
+  );
+
+  // book_parent table -- this is an alias of the book table which
+  // represents the parent book.
+
+  $data['book_parent']['table']['group'] = t('Book');
+  $data['book_parent']['table']['join'] = array(
+    'node' => array(
+      'table' => 'book',
+      'left_table' => 'book_menu_links',
+      'left_field' => 'plid',
+      'field' => 'mlid',
+    ),
+  );
+
+  $data['book_parent']['nid'] = array(
+    'title' => t('Parent'),
+    'help' => t('The parent book node.'),
+    'relationship' => array(
+      'base' => 'node',
+      'base field' => 'nid',
+      'id' => 'standard',
+      'label' => t('Book parent'),
+    ),
+  );
+
+  return $data;
+}
diff --git a/core/modules/book/lib/Drupal/book/Plugin/views/argument_default/Root.php b/core/modules/book/lib/Drupal/book/Plugin/views/argument_default/Root.php
new file mode 100644
index 0000000..e15dd8b
--- /dev/null
+++ b/core/modules/book/lib/Drupal/book/Plugin/views/argument_default/Root.php
@@ -0,0 +1,72 @@
+<?php
+
+/**
+ * @file
+ * Contains Drupal\book\Plugin\views\argument_default\Root.
+ */
+
+namespace Drupal\book\Plugin\views\argument_default;
+
+use Drupal\Component\Annotation\Plugin;
+use Drupal\Core\Annotation\Translation;
+use Drupal\Core\Entity\EntityStorageControllerInterface;
+use Drupal\node\Plugin\views\argument_default\Node;
+
+/**
+ * Default argument plugin to get the current node's book root.
+ *
+ * @Plugin(
+ *   id = "book_root",
+ *   module = "book",
+ *   title = @Translation("Book root from current node")
+ * )
+ */
+class Root extends Node {
+
+  /**
+   * The node storage controller.
+   *
+   * @var \Drupal\Core\Entity\EntityStorageControllerInterface
+   */
+  protected $nodeStorage;
+
+  /**
+   * Constructs a Drupal\Component\Plugin\PluginBase object.
+   *
+   * @param array $configuration
+   *   A configuration array containing information about the plugin instance.
+   * @param string $plugin_id
+   *   The plugin_id for the plugin instance.
+   * @param array $plugin_definition
+   *   The plugin implementation definition.
+   * @param \Drupal\Core\Entity\EntityStorageControllerInterface $node_storage
+   *   The node storage controller.
+   */
+  public function __construct(array $configuration, $plugin_id, array $plugin_definition, EntityStorageControllerInterface $node_storage) {
+    parent::__construct($configuration, $plugin_id, $plugin_definition);
+    $this->nodeStorage = $node_storage;
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public static function create(ContainerInterface $container, array $configuration, $plugin_id, array $plugin_definition) {
+    return new static($configuration, $plugin_id, $plugin_definition, $container->get('plugin.manager.entity')->getStorageController('node'));
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  function getArgument() {
+    // Use the argument_default_node plugin to get the nid argument.
+    $nid = parent::getArgument();
+    if (!empty($nid)) {
+      $nodes = $this->nodeStorage->load(array($nid));
+      $node = reset($nodes);
+      if (isset($node->book['bid'])) {
+        return $node->book['bid'];
+      }
+    }
+  }
+
+}
