Hi, On 10/5/10 9:56 PM, Max Kellermann wrote:
Don't allow patches with invalid names. For example, a patch with a slash in the name will cause the underlying git command to fail, and stgit doesn't handle this error condition properly. --- stgit/commands/new.py | 3 +++ stgit/commands/rename.py | 3 +++ stgit/utils.py | 6 ++++++ 3 files changed, 12 insertions(+), 0 deletions(-)
It would be nice to mention about what's updated when revising patches, even though it's even +1 line. And we'd also like to have a sign within Subject:, e.g., [stgit PATCH v2] will suffice.
diff --git a/stgit/utils.py b/stgit/utils.py index 2955adf..a41457b 100644 --- a/stgit/utils.py +++ b/stgit/utils.py @@ -241,6 +241,12 @@ def make_patch_name(msg, unacceptable, default_name = 'patch'): patchname = default_name return find_patch_name(patchname, unacceptable) +def check_patch_name(name): + """Checks if the specified name is a valid patch name. For + technical reasons, we cannot allow a slash and other characters.""" + return len(name)> 0 and name[0] not in '.-' and '/' not in name and \ + '..' not in name and re.search(r'[\x00-\x20]', name) is None + # any and all functions are builtin in Python 2.5 and higher, but not # in 2.4. if not 'any' in dir(__builtins__):
".." is now taken care, too. That's nice. By the way, you're not the first person encountered this issue, and we already have corresponding bug# at gna.org, you might be interested in: * https://gna.org/bugs/?10919 sanity check patch names * https://gna.org/bugs/?15654 stg new when path contains slash stops stg from doing everything I don't speak Python, so couldn't help the patch itself. Catalin and Karl hopefully will guide you (they seem to busy these days, or just failed to find this thread). -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html