Thread (1 message) 1 message, 1 author, 2016-06-15

Re: [PATCH v2 19/19] signed push: fortify against replay attacks

From: Junio C Hamano <hidden>
Date: 2016-06-15 23:02:25

Stefan Beller [off-list ref] writes:
On 22.08.2014 22:30, Junio C Hamano wrote:
quoted
@@ -1226,12 +1232,28 @@ static int delete_only(struct command *commands)
 	return 1;
 }
 
+static char *prepare_push_cert_nonce(const char *sitename, const char *dir)
+{
+	struct strbuf buf = STRBUF_INIT;
+	unsigned char sha1[20];
+
+	if (!sitename) {
+		static char buf[1024];
+		gethostname(buf, sizeof(buf));
+		sitename = buf;
+	}
+	strbuf_addf(&buf, "%s:%s:%lu", sitename, dir, time(NULL));
+	hash_sha1_file(buf.buf, buf.len, "blob", sha1);
+	return xstrdup(sha1_to_hex(sha1));
+}
+
On every other use of gethostname within git.git we're
checking the return code. And if gethostname fails, we're
either copying in 'localhost' or 'unknown' instead.

Does that make sense here as well?
It does, but I think this code will have to change quite a lot
before it gets ready even for 'next'.

Thanks.
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help