e6ddf60465deb96e43be6738c5ca6a7a6168cac8 braney Sat Aug 22 15:08:59 2026 -0700 hg/lib: add an option to send the content policy as an http response header New cspWriteResponseHeader() in hg/lib/hCommon.c, gated on hg.conf's cspResponseHeader, which defaults off everywhere. The policy string itself is still built by the existing code in lib/htmshell.c, which now also knows how to format it as a response header. Both carry the same nonce, since getNonce() is one per process, so a page may safely have the header and the meta tag. Most pages pick it up from addHttpHeaders() in cart.c, the existing hook for extra response headers, which every cart based CGI already passes through. Six places build their own http header block and so call it directly: the two "too many requests" pages, the captcha and its error page, the hubApi help redirect, and the hgSearch redirect to hgTracks. Inline scripts on three of those pages now carry the nonce, and the policy allows the Cloudflare script the bot check loads, so the option works when it is turned on. The Cloudflare entry is the only part of this that takes effect with the option off. diff --git src/hg/inc/hCommon.h src/hg/inc/hCommon.h index 902fc2b3796..33c5da07015 100644 --- src/hg/inc/hCommon.h +++ src/hg/inc/hCommon.h @@ -126,16 +126,21 @@ void hVaUserAbort(char *format, va_list args); /* errAbort when a `user' error is detected. This is an error that comes * from user input. This disables the logging stack dumps. */ void hUserAbort(char *format, ...) /* errAbort when a `user' error is detected. This is an error that comes * from user input. This disables the logging stack dumps. */ #if defined(__GNUC__) __attribute__((format(printf, 1, 2))) #endif ; boolean hAllowAllTables(void); /* Return TRUE if hg.conf's hgta.disableAllTables doesn't forbid an 'all tables' menu. */ +void cspWriteResponseHeader(void); +/* Write the Content Security Policy as an http response header, if hg.conf + * turns it on. Must be called before the blank line that ends the http header + * block. Only the first call in a process writes anything. */ + #endif /* HCOMMON_H */