blob: ee745359320c6520a55fef8ad1a6a5c346403a76 [file] [log] [blame]
/* Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*
* Header file for mount helpers.
*/
#ifndef _MOUNT_HELPERS_H_
#define _MOUNT_HELPERS_H_
/* General utility functions. */
size_t get_sectors(const char *device);
int remove_tree(const char *tree);
int runcmd(const gchar *argv[], gchar **output);
int same_vfs(const char *mnt_a, const char *mnt_b);
char *stringify_hex(uint8_t *binary, size_t length);
uint8_t *hexify_string(char *string, uint8_t *binary, size_t length);
/* Loopback device attach/detach helpers. */
gchar *loop_attach(int fd, const char *name);
int loop_detach(const gchar *loopback);
int loop_detach_name(const char *name);
/* Encrypted device mapper setup/teardown. */
int dm_setup(size_t sectors, const gchar *encryption_key, const char *name,
const gchar *device, const char *path, int discard);
int dm_teardown(const gchar *device);
char *dm_get_key(const gchar *device);
/* Sparse file creation. */
int sparse_create(const char *path, size_t size);
/* Filesystem creation. */
int filesystem_build(const char *device, size_t block_bytes, size_t blocks_min,
size_t blocks_max);
int filesystem_resize(const char *device, size_t blocks, size_t blocks_max);
/* Encrypted keyfile handling. */
char *keyfile_read(const char *keyfile, uint8_t *system_key);
int keyfile_write(const char *keyfile, uint8_t *system_key, char *plain);
#endif /* _MOUNT_HELPERS_H_ */