3 Commits

4 changed files with 25 additions and 41 deletions

View File

@ -1,4 +1,3 @@
# File for excluding block devices from being written to # File for excluding block devices from being written to
# Write one device per line, shell-style globs are accepted i.e. /dev/sda* # One rule per line, regular expressions are accepted i.e. /dev/sda[0-9]?
# Brace expansion is not supported
# Lines beginning with "#" and ";" are ignored # Lines beginning with "#" and ";" are ignored

View File

@ -2,7 +2,7 @@
"""Wrapper script for using dd to write to a USB drive.""" """Wrapper script for using dd to write to a USB drive."""
import argparse import argparse
import glob import os
import pathlib import pathlib
import re import re
import subprocess import subprocess
@ -11,6 +11,10 @@ import subprocess
COMMENT_PATTERN = "^[#;]" COMMENT_PATTERN = "^[#;]"
EXCLUDE_FILE = "/etc/helper-scripts/ddusb-exclude.conf" EXCLUDE_FILE = "/etc/helper-scripts/ddusb-exclude.conf"
E_BLOCKDEVICE_ERROR = 1
E_EXCLUDE_ERROR = 2
E_DD_ERROR = 3
# ========== Functions ========== # ========== Functions ==========
def read_exclude_file(exclude_file): def read_exclude_file(exclude_file):
@ -33,23 +37,6 @@ def read_exclude_file(exclude_file):
return lines return lines
def expand_globs(*globs):
"""For each glob given, expand these globs and return a list
containing each glob expanded.
:param globs: patterns to expand
:type globs: str
:returns: all expanded globs aggregated together
:rtype: list
"""
expanded_globs = []
for line in globs:
expanded_globs.extend(glob.glob(line, recursive=True))
return expanded_globs
# ========== Main Script ========== # ========== Main Script ==========
parser = argparse.ArgumentParser() parser = argparse.ArgumentParser()
parser.add_argument("-b", "--bs", default=512, help="block size", metavar="bs") parser.add_argument("-b", "--bs", default=512, help="block size", metavar="bs")
@ -59,23 +46,23 @@ args = parser.parse_args()
block_size = args.bs block_size = args.bs
input_file = args.input_file input_file = args.input_file
block_device = args.output_file block_path = args.output_file
# Ensure that block_device is really a block device # Ensure that block_path is really a block device
if not pathlib.Path(block_device).is_block_device(): if not pathlib.Path(block_path).is_block_device():
print(f'Error: "{block_device}" is not a block device') print(f'Error: "{block_path}" is not a block device')
exit(1) exit(E_BLOCKDEVICE_ERROR)
# Check if block_device is excluded # Check if block_path is excluded
exclude_patterns = read_exclude_file(EXCLUDE_FILE) exclude_patterns = read_exclude_file(EXCLUDE_FILE)
device_blacklist = expand_globs(*exclude_patterns)
if block_device in device_blacklist: for pattern in exclude_patterns:
print(f'Error: "{block_device}" is blacklisted from running dd') if re.fullmatch(pattern, block_path):
exit(2) print(f'Error: "{block_path}" is blacklisted from running dd')
exit(E_EXCLUDE_ERROR)
print(f"Input file: {input_file}") print(f"Input file: {input_file}")
print(f"Block device: {block_device}") print(f"Block device: {block_path}")
print(f"Block size: {block_size}") print(f"Block size: {block_size}")
try: try:
@ -83,13 +70,13 @@ try:
[ [
"dd", "dd",
f"if={input_file}", f"if={input_file}",
f"of={block_device}", f"of={block_path}",
f"bs={block_size}", f"bs={block_size}",
"status=progress", "status=progress",
], ],
check=True, check=True,
) )
except subprocess.CalledProcessError: except subprocess.CalledProcessError:
exit(3) exit(E_DD_ERROR)
else: else:
subprocess.run("sync") os.sync()

View File

@ -1,7 +1,6 @@
#compdef ddusb #compdef ddusb
# zsh completions for 'ddusb' # zsh completions for 'ddusb'
# automatically generated with http://github.com/RobSis/zsh-completion-generator
local arguments local arguments
arguments=( arguments=(

View File

@ -2,7 +2,6 @@
local arguments local arguments
arguments=( arguments=(
$argument_list
{-h,--help}'[show this help message and exit]' {-h,--help}'[show this help message and exit]'
{-b,--boot}'[edit a file in /boot]' {-b,--boot}'[edit a file in /boot]'
{-d,--dir}'[edit a file in a given directory]' {-d,--dir}'[edit a file in a given directory]'