about summary refs log tree commit homepage
path: root/lib/PublicInbox/Config.pm
diff options
context:
space:
mode:
authorEric Wong <e@yhbt.net>2020-07-17 06:07:10 +0000
committerEric Wong <e@yhbt.net>2020-07-17 18:54:53 +0000
commitd87dd0e6795870439422ee4f0039d0d76d1974b3 (patch)
tree6f548bc6a49623cb183e387ba12d39a1e5f3ce3f /lib/PublicInbox/Config.pm
parent95d17835014ece9d53791a07ddf294ad2986abf9 (diff)
downloadpublic-inbox-d87dd0e6795870439422ee4f0039d0d76d1974b3.tar.gz
"\n" and other characters requiring quoting and/or escaping in
in $GIT_DIR/objects/info/alternates was not supported in git 2.11
and earlier; nor does it seem supported at all in libgit2.

This will allow us to support sharing git-cat-file or similar
endpoints across multiple inboxes via alternates.

This breaks an existing use case for anybody wacky
enough to put `\n' in the `inboxdir' pathname; but I doubt
this affects anybody.
Diffstat (limited to 'lib/PublicInbox/Config.pm')
-rw-r--r--lib/PublicInbox/Config.pm5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/PublicInbox/Config.pm b/lib/PublicInbox/Config.pm
index c0e2cc57..67199bb3 100644
--- a/lib/PublicInbox/Config.pm
+++ b/lib/PublicInbox/Config.pm
@@ -393,7 +393,10 @@ sub _fill {
 
         # backwards compatibility:
         $ibx->{inboxdir} //= $self->{"$pfx.mainrepo"};
-
+        if (($ibx->{inboxdir} // '') =~ /\n/s) {
+                warn "E: `$ibx->{inboxdir}' must not contain `\\n'\n";
+                return;
+        }
         foreach my $k (qw(obfuscate)) {
                 my $v = $self->{"$pfx.$k"};
                 defined $v or next;