2008-08-06 08:53:50 +00:00
|
|
|
/* ui-plain.c: functions for output of plain blobs by path
|
|
|
|
*
|
2014-01-08 14:10:49 +00:00
|
|
|
* Copyright (C) 2006-2014 cgit Development Team <cgit@lists.zx2c4.com>
|
2008-08-06 08:53:50 +00:00
|
|
|
*
|
|
|
|
* Licensed under GNU General Public License v2
|
|
|
|
* (see COPYING for full license text)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "cgit.h"
|
2013-04-06 10:37:59 +00:00
|
|
|
#include "ui-plain.h"
|
2008-08-06 08:53:50 +00:00
|
|
|
#include "html.h"
|
|
|
|
#include "ui-shared.h"
|
|
|
|
|
2013-03-03 16:27:54 +00:00
|
|
|
struct walk_tree_context {
|
|
|
|
int match_baselen;
|
|
|
|
int match;
|
|
|
|
};
|
2008-08-06 08:53:50 +00:00
|
|
|
|
2018-06-04 16:49:28 +00:00
|
|
|
static int print_object(const struct object_id *oid, const char *path)
|
2008-08-06 08:53:50 +00:00
|
|
|
{
|
|
|
|
enum object_type type;
|
2015-08-16 12:53:52 +00:00
|
|
|
char *buf, *mimetype;
|
Fix some warnings to allow -Werror
The type used to declare the st_size field of a 'struct stat' can
be a 32- or 64-bit sized type, which can vary from one platform to
another, or even from one compilation to another. In particular,
on linux, if you include the following define:
#define _FILE_OFFSET_BITS 64
prior to including certain system header files, then the type used
for the st_size field will be __off64_t, otherwise it will be an
__off_t. Note that the above define is included at the top of
git-compat-util.h.
In cache.c, the "%zd" format specifier expects a "signed size_t",
another type which can vary, when an __off64_t or a __off_t is
provided. To supress the warning, use the PRIuMAX format specifier
and cast the st_size field to uintmax_t. This should work an any
platform for which git currently compiles.
In ui-plain.c, the size parameter of sha1_object_info() and
read_sha1_file() is defined to be "unsigned long *" not "size_t *".
So, to supress the warning, simply declare size with the correct type.
Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk>
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
2008-11-04 19:22:08 +00:00
|
|
|
unsigned long size;
|
2008-08-06 08:53:50 +00:00
|
|
|
|
2018-06-04 16:49:28 +00:00
|
|
|
type = oid_object_info(the_repository, oid, &size);
|
2008-08-06 08:53:50 +00:00
|
|
|
if (type == OBJ_BAD) {
|
2015-08-14 11:47:04 +00:00
|
|
|
cgit_print_error_page(404, "Not found", "Not found");
|
2013-03-03 16:10:19 +00:00
|
|
|
return 0;
|
2008-08-06 08:53:50 +00:00
|
|
|
}
|
|
|
|
|
2018-06-04 16:49:28 +00:00
|
|
|
buf = read_object_file(oid, &type, &size);
|
2008-08-06 08:53:50 +00:00
|
|
|
if (!buf) {
|
2015-08-14 11:47:04 +00:00
|
|
|
cgit_print_error_page(404, "Not found", "Not found");
|
2013-03-03 16:10:19 +00:00
|
|
|
return 0;
|
2008-08-06 08:53:50 +00:00
|
|
|
}
|
2015-08-16 12:53:52 +00:00
|
|
|
|
|
|
|
mimetype = get_mimetype_for_filename(path);
|
|
|
|
ctx.page.mimetype = mimetype;
|
|
|
|
|
2016-01-14 13:53:28 +00:00
|
|
|
if (!ctx.repo->enable_html_serving) {
|
|
|
|
html("X-Content-Type-Options: nosniff\n");
|
|
|
|
html("Content-Security-Policy: default-src 'none'\n");
|
|
|
|
if (mimetype) {
|
|
|
|
/* Built-in white list allows PDF and everything that isn't text/ and application/ */
|
|
|
|
if ((!strncmp(mimetype, "text/", 5) || !strncmp(mimetype, "application/", 12)) && strcmp(mimetype, "application/pdf"))
|
|
|
|
ctx.page.mimetype = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-13 19:43:30 +00:00
|
|
|
if (!ctx.page.mimetype) {
|
2013-10-06 11:14:41 +00:00
|
|
|
if (buffer_is_binary(buf, size)) {
|
2009-02-13 19:43:30 +00:00
|
|
|
ctx.page.mimetype = "application/octet-stream";
|
2013-10-06 11:14:41 +00:00
|
|
|
ctx.page.charset = NULL;
|
|
|
|
} else {
|
2009-02-13 19:43:30 +00:00
|
|
|
ctx.page.mimetype = "text/plain";
|
2013-10-06 11:14:41 +00:00
|
|
|
}
|
2009-02-13 19:43:30 +00:00
|
|
|
}
|
2013-04-06 09:49:22 +00:00
|
|
|
ctx.page.filename = path;
|
2008-08-06 08:53:50 +00:00
|
|
|
ctx.page.size = size;
|
2018-06-04 16:49:28 +00:00
|
|
|
ctx.page.etag = oid_to_hex(oid);
|
2014-01-15 20:53:15 +00:00
|
|
|
cgit_print_http_headers();
|
2008-08-06 08:53:50 +00:00
|
|
|
html_raw(buf, size);
|
2015-08-16 12:53:52 +00:00
|
|
|
free(mimetype);
|
2015-10-09 12:55:49 +00:00
|
|
|
free(buf);
|
2013-03-03 16:10:19 +00:00
|
|
|
return 1;
|
2008-08-06 08:53:50 +00:00
|
|
|
}
|
|
|
|
|
2011-06-12 20:49:35 +00:00
|
|
|
static char *buildpath(const char *base, int baselen, const char *path)
|
2010-01-31 19:25:03 +00:00
|
|
|
{
|
2011-06-12 20:49:35 +00:00
|
|
|
if (path[0])
|
2013-04-06 09:28:57 +00:00
|
|
|
return fmtalloc("%.*s%s/", baselen, base, path);
|
2010-01-31 19:25:03 +00:00
|
|
|
else
|
2013-04-06 09:28:57 +00:00
|
|
|
return fmtalloc("%.*s/", baselen, base);
|
2011-06-12 20:49:35 +00:00
|
|
|
}
|
|
|
|
|
2018-06-04 16:49:28 +00:00
|
|
|
static void print_dir(const struct object_id *oid, const char *base,
|
2011-06-12 20:49:35 +00:00
|
|
|
int baselen, const char *path)
|
|
|
|
{
|
|
|
|
char *fullpath, *slash;
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
fullpath = buildpath(base, baselen, path);
|
|
|
|
slash = (fullpath[0] == '/' ? "" : "/");
|
2018-06-04 16:49:28 +00:00
|
|
|
ctx.page.etag = oid_to_hex(oid);
|
2014-01-15 20:53:15 +00:00
|
|
|
cgit_print_http_headers();
|
2011-06-12 20:49:35 +00:00
|
|
|
htmlf("<html><head><title>%s", slash);
|
|
|
|
html_txt(fullpath);
|
|
|
|
htmlf("</title></head>\n<body>\n<h2>%s", slash);
|
|
|
|
html_txt(fullpath);
|
|
|
|
html("</h2>\n<ul>\n");
|
|
|
|
len = strlen(fullpath);
|
|
|
|
if (len > 1) {
|
|
|
|
fullpath[len - 1] = 0;
|
|
|
|
slash = strrchr(fullpath, '/');
|
|
|
|
if (slash)
|
|
|
|
*(slash + 1) = 0;
|
2015-10-09 12:55:50 +00:00
|
|
|
else {
|
|
|
|
free(fullpath);
|
2011-06-12 20:49:35 +00:00
|
|
|
fullpath = NULL;
|
2015-10-09 12:55:50 +00:00
|
|
|
}
|
2011-06-12 20:49:35 +00:00
|
|
|
html("<li>");
|
2020-10-20 21:32:45 +00:00
|
|
|
cgit_plain_link("../", NULL, NULL, ctx.qry.head, ctx.qry.oid,
|
2011-06-12 20:49:35 +00:00
|
|
|
fullpath);
|
|
|
|
html("</li>\n");
|
|
|
|
}
|
2013-04-06 09:28:57 +00:00
|
|
|
free(fullpath);
|
2010-01-31 19:25:03 +00:00
|
|
|
}
|
|
|
|
|
2018-06-04 16:49:28 +00:00
|
|
|
static void print_dir_entry(const struct object_id *oid, const char *base,
|
2011-06-12 20:49:35 +00:00
|
|
|
int baselen, const char *path, unsigned mode)
|
2010-01-31 19:25:03 +00:00
|
|
|
{
|
2011-06-12 20:49:35 +00:00
|
|
|
char *fullpath;
|
|
|
|
|
|
|
|
fullpath = buildpath(base, baselen, path);
|
2011-06-15 08:10:41 +00:00
|
|
|
if (!S_ISDIR(mode) && !S_ISGITLINK(mode))
|
2011-06-12 20:49:35 +00:00
|
|
|
fullpath[strlen(fullpath) - 1] = 0;
|
|
|
|
html(" <li>");
|
2011-06-15 08:10:41 +00:00
|
|
|
if (S_ISGITLINK(mode)) {
|
2018-06-04 16:49:28 +00:00
|
|
|
cgit_submodule_link(NULL, fullpath, oid_to_hex(oid));
|
2011-06-15 08:10:41 +00:00
|
|
|
} else
|
2020-10-20 21:32:45 +00:00
|
|
|
cgit_plain_link(path, NULL, NULL, ctx.qry.head, ctx.qry.oid,
|
2011-06-15 08:10:41 +00:00
|
|
|
fullpath);
|
2011-06-12 20:49:35 +00:00
|
|
|
html("</li>\n");
|
2013-04-06 09:28:57 +00:00
|
|
|
free(fullpath);
|
2010-01-31 19:25:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void print_dir_tail(void)
|
|
|
|
{
|
|
|
|
html(" </ul>\n</body></html>\n");
|
|
|
|
}
|
|
|
|
|
2018-06-04 16:49:28 +00:00
|
|
|
static int walk_tree(const struct object_id *oid, struct strbuf *base,
|
2021-05-18 20:49:13 +00:00
|
|
|
const char *pathname, unsigned mode, void *cbdata)
|
2008-08-06 08:53:50 +00:00
|
|
|
{
|
2013-03-03 16:27:54 +00:00
|
|
|
struct walk_tree_context *walk_tree_ctx = cbdata;
|
|
|
|
|
2015-02-07 13:18:28 +00:00
|
|
|
if (base->len == walk_tree_ctx->match_baselen) {
|
2017-03-06 23:27:23 +00:00
|
|
|
if (S_ISREG(mode) || S_ISLNK(mode)) {
|
2018-06-04 16:49:28 +00:00
|
|
|
if (print_object(oid, pathname))
|
2013-03-03 16:27:54 +00:00
|
|
|
walk_tree_ctx->match = 1;
|
2013-03-03 16:10:19 +00:00
|
|
|
} else if (S_ISDIR(mode)) {
|
2018-06-04 16:49:28 +00:00
|
|
|
print_dir(oid, base->buf, base->len, pathname);
|
2013-03-03 16:27:54 +00:00
|
|
|
walk_tree_ctx->match = 2;
|
2010-01-31 19:25:03 +00:00
|
|
|
return READ_TREE_RECURSIVE;
|
|
|
|
}
|
2016-02-22 17:45:53 +00:00
|
|
|
} else if (base->len < INT_MAX && (int)base->len > walk_tree_ctx->match_baselen) {
|
2018-06-04 16:49:28 +00:00
|
|
|
print_dir_entry(oid, base->buf, base->len, pathname, mode);
|
2013-03-03 16:27:54 +00:00
|
|
|
walk_tree_ctx->match = 2;
|
2013-03-03 16:10:19 +00:00
|
|
|
} else if (S_ISDIR(mode)) {
|
2008-08-06 08:53:50 +00:00
|
|
|
return READ_TREE_RECURSIVE;
|
2013-03-03 16:10:19 +00:00
|
|
|
}
|
2008-08-06 08:53:50 +00:00
|
|
|
|
2010-01-31 06:07:41 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2008-08-06 08:53:50 +00:00
|
|
|
|
2010-01-31 06:07:41 +00:00
|
|
|
static int basedir_len(const char *path)
|
|
|
|
{
|
|
|
|
char *p = strrchr(path, '/');
|
|
|
|
if (p)
|
|
|
|
return p - path + 1;
|
2008-08-06 08:53:50 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-01-15 20:53:15 +00:00
|
|
|
void cgit_print_plain(void)
|
2008-08-06 08:53:50 +00:00
|
|
|
{
|
2020-10-20 21:32:45 +00:00
|
|
|
const char *rev = ctx.qry.oid;
|
2016-09-29 20:08:19 +00:00
|
|
|
struct object_id oid;
|
2008-08-06 08:53:50 +00:00
|
|
|
struct commit *commit;
|
2013-03-02 12:32:11 +00:00
|
|
|
struct pathspec_item path_items = {
|
2014-01-15 20:53:15 +00:00
|
|
|
.match = ctx.qry.path,
|
|
|
|
.len = ctx.qry.path ? strlen(ctx.qry.path) : 0
|
2013-03-02 12:32:11 +00:00
|
|
|
};
|
|
|
|
struct pathspec paths = {
|
|
|
|
.nr = 1,
|
|
|
|
.items = &path_items
|
|
|
|
};
|
2013-03-03 16:27:54 +00:00
|
|
|
struct walk_tree_context walk_tree_ctx = {
|
|
|
|
.match = 0
|
|
|
|
};
|
2008-08-06 08:53:50 +00:00
|
|
|
|
|
|
|
if (!rev)
|
2014-01-15 20:53:15 +00:00
|
|
|
rev = ctx.qry.head;
|
2008-08-06 08:53:50 +00:00
|
|
|
|
2016-09-29 20:08:19 +00:00
|
|
|
if (get_oid(rev, &oid)) {
|
2015-08-14 11:47:04 +00:00
|
|
|
cgit_print_error_page(404, "Not found", "Not found");
|
2008-08-06 08:53:50 +00:00
|
|
|
return;
|
|
|
|
}
|
2018-08-28 16:27:00 +00:00
|
|
|
commit = lookup_commit_reference(the_repository, &oid);
|
2008-08-06 08:53:50 +00:00
|
|
|
if (!commit || parse_commit(commit)) {
|
2015-08-14 11:47:04 +00:00
|
|
|
cgit_print_error_page(404, "Not found", "Not found");
|
2008-08-06 08:53:50 +00:00
|
|
|
return;
|
|
|
|
}
|
2013-03-02 12:32:11 +00:00
|
|
|
if (!path_items.match) {
|
|
|
|
path_items.match = "";
|
2013-03-03 16:27:54 +00:00
|
|
|
walk_tree_ctx.match_baselen = -1;
|
2020-03-13 02:52:35 +00:00
|
|
|
print_dir(get_commit_tree_oid(commit), "", 0, "");
|
2013-03-03 16:27:54 +00:00
|
|
|
walk_tree_ctx.match = 2;
|
2010-01-31 19:25:03 +00:00
|
|
|
}
|
|
|
|
else
|
2013-03-03 16:27:54 +00:00
|
|
|
walk_tree_ctx.match_baselen = basedir_len(path_items.match);
|
2021-05-18 20:49:13 +00:00
|
|
|
read_tree(the_repository, repo_get_commit_tree(the_repository, commit),
|
|
|
|
&paths, walk_tree, &walk_tree_ctx);
|
2013-03-03 16:27:54 +00:00
|
|
|
if (!walk_tree_ctx.match)
|
2015-08-14 11:47:04 +00:00
|
|
|
cgit_print_error_page(404, "Not found", "Not found");
|
2013-03-03 16:27:54 +00:00
|
|
|
else if (walk_tree_ctx.match == 2)
|
2010-01-31 19:25:03 +00:00
|
|
|
print_dir_tail();
|
2008-08-06 08:53:50 +00:00
|
|
|
}
|