]> git.proxmox.com Git - libgit2.git/blob - src/tree.c
Merge branch 'pr/3809'
[libgit2.git] / src / tree.c
1 /*
2 * Copyright (C) the libgit2 contributors. All rights reserved.
3 *
4 * This file is part of libgit2, distributed under the GNU GPL v2 with
5 * a Linking Exception. For full terms see the included COPYING file.
6 */
7
8 #include "common.h"
9 #include "commit.h"
10 #include "tree.h"
11 #include "git2/repository.h"
12 #include "git2/object.h"
13 #include "fileops.h"
14 #include "tree-cache.h"
15 #include "index.h"
16
17 #define DEFAULT_TREE_SIZE 16
18 #define MAX_FILEMODE_BYTES 6
19
20 #define TREE_ENTRY_CHECK_NAMELEN(n) \
21 if (n > UINT16_MAX) { giterr_set(GITERR_INVALID, "tree entry path too long"); }
22
23 GIT__USE_STRMAP
24
25 static bool valid_filemode(const int filemode)
26 {
27 return (filemode == GIT_FILEMODE_TREE
28 || filemode == GIT_FILEMODE_BLOB
29 || filemode == GIT_FILEMODE_BLOB_EXECUTABLE
30 || filemode == GIT_FILEMODE_LINK
31 || filemode == GIT_FILEMODE_COMMIT);
32 }
33
34 GIT_INLINE(git_filemode_t) normalize_filemode(git_filemode_t filemode)
35 {
36 /* Tree bits set, but it's not a commit */
37 if (GIT_MODE_TYPE(filemode) == GIT_FILEMODE_TREE)
38 return GIT_FILEMODE_TREE;
39
40 /* If any of the x bits are set */
41 if (GIT_PERMS_IS_EXEC(filemode))
42 return GIT_FILEMODE_BLOB_EXECUTABLE;
43
44 /* 16XXXX means commit */
45 if (GIT_MODE_TYPE(filemode) == GIT_FILEMODE_COMMIT)
46 return GIT_FILEMODE_COMMIT;
47
48 /* 12XXXX means symlink */
49 if (GIT_MODE_TYPE(filemode) == GIT_FILEMODE_LINK)
50 return GIT_FILEMODE_LINK;
51
52 /* Otherwise, return a blob */
53 return GIT_FILEMODE_BLOB;
54 }
55
56 static int valid_entry_name(git_repository *repo, const char *filename)
57 {
58 return *filename != '\0' &&
59 git_path_isvalid(repo, filename,
60 GIT_PATH_REJECT_TRAVERSAL | GIT_PATH_REJECT_DOT_GIT | GIT_PATH_REJECT_SLASH);
61 }
62
63 static int entry_sort_cmp(const void *a, const void *b)
64 {
65 const git_tree_entry *e1 = (const git_tree_entry *)a;
66 const git_tree_entry *e2 = (const git_tree_entry *)b;
67
68 return git_path_cmp(
69 e1->filename, e1->filename_len, git_tree_entry__is_tree(e1),
70 e2->filename, e2->filename_len, git_tree_entry__is_tree(e2),
71 git__strncmp);
72 }
73
74 int git_tree_entry_cmp(const git_tree_entry *e1, const git_tree_entry *e2)
75 {
76 return entry_sort_cmp(e1, e2);
77 }
78
79 int git_tree_entry_icmp(const git_tree_entry *e1, const git_tree_entry *e2)
80 {
81 return git_path_cmp(
82 e1->filename, e1->filename_len, git_tree_entry__is_tree(e1),
83 e2->filename, e2->filename_len, git_tree_entry__is_tree(e2),
84 git__strncasecmp);
85 }
86
87 /**
88 * Allocate a new self-contained entry, with enough space after it to
89 * store the filename and the id.
90 */
91 static git_tree_entry *alloc_entry(const char *filename, size_t filename_len, const git_oid *id)
92 {
93 git_tree_entry *entry = NULL;
94 size_t tree_len;
95
96 TREE_ENTRY_CHECK_NAMELEN(filename_len);
97
98 if (GIT_ADD_SIZET_OVERFLOW(&tree_len, sizeof(git_tree_entry), filename_len) ||
99 GIT_ADD_SIZET_OVERFLOW(&tree_len, tree_len, 1) ||
100 GIT_ADD_SIZET_OVERFLOW(&tree_len, tree_len, GIT_OID_RAWSZ))
101 return NULL;
102
103 entry = git__calloc(1, tree_len);
104 if (!entry)
105 return NULL;
106
107 {
108 char *filename_ptr;
109 void *id_ptr;
110
111 filename_ptr = ((char *) entry) + sizeof(git_tree_entry);
112 memcpy(filename_ptr, filename, filename_len);
113 entry->filename = filename_ptr;
114
115 id_ptr = filename_ptr + filename_len + 1;
116 git_oid_cpy(id_ptr, id);
117 entry->oid = id_ptr;
118 }
119
120 entry->filename_len = (uint16_t)filename_len;
121
122 return entry;
123 }
124
125 struct tree_key_search {
126 const char *filename;
127 uint16_t filename_len;
128 };
129
130 static int homing_search_cmp(const void *key, const void *array_member)
131 {
132 const struct tree_key_search *ksearch = key;
133 const git_tree_entry *entry = array_member;
134
135 const uint16_t len1 = ksearch->filename_len;
136 const uint16_t len2 = entry->filename_len;
137
138 return memcmp(
139 ksearch->filename,
140 entry->filename,
141 len1 < len2 ? len1 : len2
142 );
143 }
144
145 /*
146 * Search for an entry in a given tree.
147 *
148 * Note that this search is performed in two steps because
149 * of the way tree entries are sorted internally in git:
150 *
151 * Entries in a tree are not sorted alphabetically; two entries
152 * with the same root prefix will have different positions
153 * depending on whether they are folders (subtrees) or normal files.
154 *
155 * Consequently, it is not possible to find an entry on the tree
156 * with a binary search if you don't know whether the filename
157 * you're looking for is a folder or a normal file.
158 *
159 * To work around this, we first perform a homing binary search
160 * on the tree, using the minimal length root prefix of our filename.
161 * Once the comparisons for this homing search start becoming
162 * ambiguous because of folder vs file sorting, we look linearly
163 * around the area for our target file.
164 */
165 static int tree_key_search(
166 size_t *at_pos,
167 const git_tree *tree,
168 const char *filename,
169 size_t filename_len)
170 {
171 struct tree_key_search ksearch;
172 const git_tree_entry *entry;
173 size_t homing, i;
174
175 TREE_ENTRY_CHECK_NAMELEN(filename_len);
176
177 ksearch.filename = filename;
178 ksearch.filename_len = (uint16_t)filename_len;
179
180 /* Initial homing search; find an entry on the tree with
181 * the same prefix as the filename we're looking for */
182
183 if (git_array_search(&homing,
184 tree->entries, &homing_search_cmp, &ksearch) < 0)
185 return GIT_ENOTFOUND; /* just a signal error; not passed back to user */
186
187 /* We found a common prefix. Look forward as long as
188 * there are entries that share the common prefix */
189 for (i = homing; i < tree->entries.size; ++i) {
190 entry = git_array_get(tree->entries, i);
191
192 if (homing_search_cmp(&ksearch, entry) < 0)
193 break;
194
195 if (entry->filename_len == filename_len &&
196 memcmp(filename, entry->filename, filename_len) == 0) {
197 if (at_pos)
198 *at_pos = i;
199
200 return 0;
201 }
202 }
203
204 /* If we haven't found our filename yet, look backwards
205 * too as long as we have entries with the same prefix */
206 if (homing > 0) {
207 i = homing - 1;
208
209 do {
210 entry = git_array_get(tree->entries, i);
211
212 if (homing_search_cmp(&ksearch, entry) > 0)
213 break;
214
215 if (entry->filename_len == filename_len &&
216 memcmp(filename, entry->filename, filename_len) == 0) {
217 if (at_pos)
218 *at_pos = i;
219
220 return 0;
221 }
222 } while (i-- > 0);
223 }
224
225 /* The filename doesn't exist at all */
226 return GIT_ENOTFOUND;
227 }
228
229 void git_tree_entry_free(git_tree_entry *entry)
230 {
231 if (entry == NULL)
232 return;
233
234 git__free(entry);
235 }
236
237 int git_tree_entry_dup(git_tree_entry **dest, const git_tree_entry *source)
238 {
239 git_tree_entry *cpy;
240
241 assert(source);
242
243 cpy = alloc_entry(source->filename, source->filename_len, source->oid);
244 if (cpy == NULL)
245 return -1;
246
247 cpy->attr = source->attr;
248
249 *dest = cpy;
250 return 0;
251 }
252
253 void git_tree__free(void *_tree)
254 {
255 git_tree *tree = _tree;
256
257 git_odb_object_free(tree->odb_obj);
258 git_array_clear(tree->entries);
259 git__free(tree);
260 }
261
262 git_filemode_t git_tree_entry_filemode(const git_tree_entry *entry)
263 {
264 return normalize_filemode(entry->attr);
265 }
266
267 git_filemode_t git_tree_entry_filemode_raw(const git_tree_entry *entry)
268 {
269 return entry->attr;
270 }
271
272 const char *git_tree_entry_name(const git_tree_entry *entry)
273 {
274 assert(entry);
275 return entry->filename;
276 }
277
278 const git_oid *git_tree_entry_id(const git_tree_entry *entry)
279 {
280 assert(entry);
281 return entry->oid;
282 }
283
284 git_otype git_tree_entry_type(const git_tree_entry *entry)
285 {
286 assert(entry);
287
288 if (S_ISGITLINK(entry->attr))
289 return GIT_OBJ_COMMIT;
290 else if (S_ISDIR(entry->attr))
291 return GIT_OBJ_TREE;
292 else
293 return GIT_OBJ_BLOB;
294 }
295
296 int git_tree_entry_to_object(
297 git_object **object_out,
298 git_repository *repo,
299 const git_tree_entry *entry)
300 {
301 assert(entry && object_out);
302 return git_object_lookup(object_out, repo, entry->oid, GIT_OBJ_ANY);
303 }
304
305 static const git_tree_entry *entry_fromname(
306 const git_tree *tree, const char *name, size_t name_len)
307 {
308 size_t idx;
309
310 if (tree_key_search(&idx, tree, name, name_len) < 0)
311 return NULL;
312
313 return git_array_get(tree->entries, idx);
314 }
315
316 const git_tree_entry *git_tree_entry_byname(
317 const git_tree *tree, const char *filename)
318 {
319 assert(tree && filename);
320
321 return entry_fromname(tree, filename, strlen(filename));
322 }
323
324 const git_tree_entry *git_tree_entry_byindex(
325 const git_tree *tree, size_t idx)
326 {
327 assert(tree);
328 return git_array_get(tree->entries, idx);
329 }
330
331 const git_tree_entry *git_tree_entry_byid(
332 const git_tree *tree, const git_oid *id)
333 {
334 size_t i;
335 const git_tree_entry *e;
336
337 assert(tree);
338
339 git_array_foreach(tree->entries, i, e) {
340 if (memcmp(&e->oid->id, &id->id, sizeof(id->id)) == 0)
341 return e;
342 }
343
344 return NULL;
345 }
346
347 int git_tree__prefix_position(const git_tree *tree, const char *path)
348 {
349 struct tree_key_search ksearch;
350 size_t at_pos, path_len;
351
352 if (!path)
353 return 0;
354
355 path_len = strlen(path);
356 TREE_ENTRY_CHECK_NAMELEN(path_len);
357
358 ksearch.filename = path;
359 ksearch.filename_len = (uint16_t)path_len;
360
361 /* Find tree entry with appropriate prefix */
362 git_array_search(
363 &at_pos, tree->entries, &homing_search_cmp, &ksearch);
364
365 for (; at_pos < tree->entries.size; ++at_pos) {
366 const git_tree_entry *entry = git_array_get(tree->entries, at_pos);
367 if (homing_search_cmp(&ksearch, entry) < 0)
368 break;
369 }
370
371 for (; at_pos > 0; --at_pos) {
372 const git_tree_entry *entry =
373 git_array_get(tree->entries, at_pos - 1);
374
375 if (homing_search_cmp(&ksearch, entry) > 0)
376 break;
377 }
378
379 return (int)at_pos;
380 }
381
382 size_t git_tree_entrycount(const git_tree *tree)
383 {
384 assert(tree);
385 return tree->entries.size;
386 }
387
388 unsigned int git_treebuilder_entrycount(git_treebuilder *bld)
389 {
390 assert(bld);
391
392 return git_strmap_num_entries(bld->map);
393 }
394
395 static int tree_error(const char *str, const char *path)
396 {
397 if (path)
398 giterr_set(GITERR_TREE, "%s - %s", str, path);
399 else
400 giterr_set(GITERR_TREE, "%s", str);
401 return -1;
402 }
403
404 static int parse_mode(unsigned int *modep, const char *buffer, const char **buffer_out)
405 {
406 unsigned char c;
407 unsigned int mode = 0;
408
409 if (*buffer == ' ')
410 return -1;
411
412 while ((c = *buffer++) != ' ') {
413 if (c < '0' || c > '7')
414 return -1;
415 mode = (mode << 3) + (c - '0');
416 }
417 *modep = mode;
418 *buffer_out = buffer;
419
420 return 0;
421 }
422
423 int git_tree__parse(void *_tree, git_odb_object *odb_obj)
424 {
425 git_tree *tree = _tree;
426 const char *buffer;
427 const char *buffer_end;
428
429 if (git_odb_object_dup(&tree->odb_obj, odb_obj) < 0)
430 return -1;
431
432 buffer = git_odb_object_data(tree->odb_obj);
433 buffer_end = buffer + git_odb_object_size(tree->odb_obj);
434
435 git_array_init_to_size(tree->entries, DEFAULT_TREE_SIZE);
436 GITERR_CHECK_ARRAY(tree->entries);
437
438 while (buffer < buffer_end) {
439 git_tree_entry *entry;
440 size_t filename_len;
441 const char *nul;
442 unsigned int attr;
443
444 if (parse_mode(&attr, buffer, &buffer) < 0 || !buffer)
445 return tree_error("Failed to parse tree. Can't parse filemode", NULL);
446
447 if ((nul = memchr(buffer, 0, buffer_end - buffer)) == NULL)
448 return tree_error("Failed to parse tree. Object is corrupted", NULL);
449
450 if ((filename_len = nul - buffer) == 0)
451 return tree_error("Failed to parse tree. Can't parse filename", NULL);
452
453 if ((buffer_end - (nul + 1)) < GIT_OID_RAWSZ)
454 return tree_error("Failed to parse tree. Can't parse OID", NULL);
455
456 /* Allocate the entry */
457 {
458 entry = git_array_alloc(tree->entries);
459 GITERR_CHECK_ALLOC(entry);
460
461 entry->attr = attr;
462 entry->filename_len = filename_len;
463 entry->filename = buffer;
464 entry->oid = (git_oid *) ((char *) buffer + filename_len + 1);
465 }
466
467 buffer += filename_len + 1;
468 buffer += GIT_OID_RAWSZ;
469 }
470
471 return 0;
472 }
473
474 static size_t find_next_dir(const char *dirname, git_index *index, size_t start)
475 {
476 size_t dirlen, i, entries = git_index_entrycount(index);
477
478 dirlen = strlen(dirname);
479 for (i = start; i < entries; ++i) {
480 const git_index_entry *entry = git_index_get_byindex(index, i);
481 if (strlen(entry->path) < dirlen ||
482 memcmp(entry->path, dirname, dirlen) ||
483 (dirlen > 0 && entry->path[dirlen] != '/')) {
484 break;
485 }
486 }
487
488 return i;
489 }
490
491 static int append_entry(
492 git_treebuilder *bld,
493 const char *filename,
494 const git_oid *id,
495 git_filemode_t filemode)
496 {
497 git_tree_entry *entry;
498 int error = 0;
499
500 if (!valid_entry_name(bld->repo, filename))
501 return tree_error("Failed to insert entry. Invalid name for a tree entry", filename);
502
503 entry = alloc_entry(filename, strlen(filename), id);
504 GITERR_CHECK_ALLOC(entry);
505
506 entry->attr = (uint16_t)filemode;
507
508 git_strmap_insert(bld->map, entry->filename, entry, error);
509 if (error < 0) {
510 git_tree_entry_free(entry);
511 giterr_set(GITERR_TREE, "failed to append entry %s to the tree builder", filename);
512 return -1;
513 }
514
515 return 0;
516 }
517
518 static int write_tree(
519 git_oid *oid,
520 git_repository *repo,
521 git_index *index,
522 const char *dirname,
523 size_t start)
524 {
525 git_treebuilder *bld = NULL;
526 size_t i, entries = git_index_entrycount(index);
527 int error;
528 size_t dirname_len = strlen(dirname);
529 const git_tree_cache *cache;
530
531 cache = git_tree_cache_get(index->tree, dirname);
532 if (cache != NULL && cache->entry_count >= 0){
533 git_oid_cpy(oid, &cache->oid);
534 return (int)find_next_dir(dirname, index, start);
535 }
536
537 if ((error = git_treebuilder_new(&bld, repo, NULL)) < 0 || bld == NULL)
538 return -1;
539
540 /*
541 * This loop is unfortunate, but necessary. The index doesn't have
542 * any directores, so we need to handle that manually, and we
543 * need to keep track of the current position.
544 */
545 for (i = start; i < entries; ++i) {
546 const git_index_entry *entry = git_index_get_byindex(index, i);
547 const char *filename, *next_slash;
548
549 /*
550 * If we've left our (sub)tree, exit the loop and return. The
551 * first check is an early out (and security for the
552 * third). The second check is a simple prefix comparison. The
553 * third check catches situations where there is a directory
554 * win32/sys and a file win32mmap.c. Without it, the following
555 * code believes there is a file win32/mmap.c
556 */
557 if (strlen(entry->path) < dirname_len ||
558 memcmp(entry->path, dirname, dirname_len) ||
559 (dirname_len > 0 && entry->path[dirname_len] != '/')) {
560 break;
561 }
562
563 filename = entry->path + dirname_len;
564 if (*filename == '/')
565 filename++;
566 next_slash = strchr(filename, '/');
567 if (next_slash) {
568 git_oid sub_oid;
569 int written;
570 char *subdir, *last_comp;
571
572 subdir = git__strndup(entry->path, next_slash - entry->path);
573 GITERR_CHECK_ALLOC(subdir);
574
575 /* Write out the subtree */
576 written = write_tree(&sub_oid, repo, index, subdir, i);
577 if (written < 0) {
578 git__free(subdir);
579 goto on_error;
580 } else {
581 i = written - 1; /* -1 because of the loop increment */
582 }
583
584 /*
585 * We need to figure out what we want toinsert
586 * into this tree. If we're traversing
587 * deps/zlib/, then we only want to write
588 * 'zlib' into the tree.
589 */
590 last_comp = strrchr(subdir, '/');
591 if (last_comp) {
592 last_comp++; /* Get rid of the '/' */
593 } else {
594 last_comp = subdir;
595 }
596
597 error = append_entry(bld, last_comp, &sub_oid, S_IFDIR);
598 git__free(subdir);
599 if (error < 0)
600 goto on_error;
601 } else {
602 error = append_entry(bld, filename, &entry->id, entry->mode);
603 if (error < 0)
604 goto on_error;
605 }
606 }
607
608 if (git_treebuilder_write(oid, bld) < 0)
609 goto on_error;
610
611 git_treebuilder_free(bld);
612 return (int)i;
613
614 on_error:
615 git_treebuilder_free(bld);
616 return -1;
617 }
618
619 int git_tree__write_index(
620 git_oid *oid, git_index *index, git_repository *repo)
621 {
622 int ret;
623 git_tree *tree;
624 bool old_ignore_case = false;
625
626 assert(oid && index && repo);
627
628 if (git_index_has_conflicts(index)) {
629 giterr_set(GITERR_INDEX,
630 "Cannot create a tree from a not fully merged index.");
631 return GIT_EUNMERGED;
632 }
633
634 if (index->tree != NULL && index->tree->entry_count >= 0) {
635 git_oid_cpy(oid, &index->tree->oid);
636 return 0;
637 }
638
639 /* The tree cache didn't help us; we'll have to write
640 * out a tree. If the index is ignore_case, we must
641 * make it case-sensitive for the duration of the tree-write
642 * operation. */
643
644 if (index->ignore_case) {
645 old_ignore_case = true;
646 git_index__set_ignore_case(index, false);
647 }
648
649 ret = write_tree(oid, repo, index, "", 0);
650
651 if (old_ignore_case)
652 git_index__set_ignore_case(index, true);
653
654 index->tree = NULL;
655
656 if (ret < 0)
657 return ret;
658
659 git_pool_clear(&index->tree_pool);
660
661 if ((ret = git_tree_lookup(&tree, repo, oid)) < 0)
662 return ret;
663
664 /* Read the tree cache into the index */
665 ret = git_tree_cache_read_tree(&index->tree, tree, &index->tree_pool);
666 git_tree_free(tree);
667
668 return ret;
669 }
670
671 int git_treebuilder_new(
672 git_treebuilder **builder_p,
673 git_repository *repo,
674 const git_tree *source)
675 {
676 git_treebuilder *bld;
677 size_t i;
678
679 assert(builder_p && repo);
680
681 bld = git__calloc(1, sizeof(git_treebuilder));
682 GITERR_CHECK_ALLOC(bld);
683
684 bld->repo = repo;
685
686 if (git_strmap_alloc(&bld->map) < 0) {
687 git__free(bld);
688 return -1;
689 }
690
691 if (source != NULL) {
692 git_tree_entry *entry_src;
693
694 git_array_foreach(source->entries, i, entry_src) {
695 if (append_entry(
696 bld, entry_src->filename,
697 entry_src->oid,
698 entry_src->attr) < 0)
699 goto on_error;
700 }
701 }
702
703 *builder_p = bld;
704 return 0;
705
706 on_error:
707 git_treebuilder_free(bld);
708 return -1;
709 }
710
711 static git_otype otype_from_mode(git_filemode_t filemode)
712 {
713 switch (filemode) {
714 case GIT_FILEMODE_TREE:
715 return GIT_OBJ_TREE;
716 case GIT_FILEMODE_COMMIT:
717 return GIT_OBJ_COMMIT;
718 default:
719 return GIT_OBJ_BLOB;
720 }
721 }
722
723 int git_treebuilder_insert(
724 const git_tree_entry **entry_out,
725 git_treebuilder *bld,
726 const char *filename,
727 const git_oid *id,
728 git_filemode_t filemode)
729 {
730 git_tree_entry *entry;
731 int error;
732 git_strmap_iter pos;
733
734 assert(bld && id && filename);
735
736 if (!valid_filemode(filemode))
737 return tree_error("Failed to insert entry. Invalid filemode for file", filename);
738
739 if (!valid_entry_name(bld->repo, filename))
740 return tree_error("Failed to insert entry. Invalid name for a tree entry", filename);
741
742 if (filemode != GIT_FILEMODE_COMMIT &&
743 !git_object__is_valid(bld->repo, id, otype_from_mode(filemode)))
744 return tree_error("Failed to insert entry; invalid object specified", filename);
745
746 pos = git_strmap_lookup_index(bld->map, filename);
747 if (git_strmap_valid_index(bld->map, pos)) {
748 entry = git_strmap_value_at(bld->map, pos);
749 git_oid_cpy((git_oid *) entry->oid, id);
750 } else {
751 entry = alloc_entry(filename, strlen(filename), id);
752 GITERR_CHECK_ALLOC(entry);
753
754 git_strmap_insert(bld->map, entry->filename, entry, error);
755
756 if (error < 0) {
757 git_tree_entry_free(entry);
758 giterr_set(GITERR_TREE, "failed to insert %s", filename);
759 return -1;
760 }
761 }
762
763 entry->attr = filemode;
764
765 if (entry_out)
766 *entry_out = entry;
767
768 return 0;
769 }
770
771 static git_tree_entry *treebuilder_get(git_treebuilder *bld, const char *filename)
772 {
773 git_tree_entry *entry = NULL;
774 git_strmap_iter pos;
775
776 assert(bld && filename);
777
778 pos = git_strmap_lookup_index(bld->map, filename);
779 if (git_strmap_valid_index(bld->map, pos))
780 entry = git_strmap_value_at(bld->map, pos);
781
782 return entry;
783 }
784
785 const git_tree_entry *git_treebuilder_get(git_treebuilder *bld, const char *filename)
786 {
787 return treebuilder_get(bld, filename);
788 }
789
790 int git_treebuilder_remove(git_treebuilder *bld, const char *filename)
791 {
792 git_tree_entry *entry = treebuilder_get(bld, filename);
793
794 if (entry == NULL)
795 return tree_error("Failed to remove entry. File isn't in the tree", filename);
796
797 git_strmap_delete(bld->map, filename);
798 git_tree_entry_free(entry);
799
800 return 0;
801 }
802
803 int git_treebuilder_write(git_oid *oid, git_treebuilder *bld)
804 {
805 int error = 0;
806 size_t i, entrycount;
807 git_buf tree = GIT_BUF_INIT;
808 git_odb *odb;
809 git_tree_entry *entry;
810 git_vector entries;
811
812 assert(bld);
813
814 entrycount = git_strmap_num_entries(bld->map);
815 if (git_vector_init(&entries, entrycount, entry_sort_cmp) < 0)
816 return -1;
817
818 git_strmap_foreach_value(bld->map, entry, {
819 if (git_vector_insert(&entries, entry) < 0)
820 return -1;
821 });
822
823 git_vector_sort(&entries);
824
825 /* Grow the buffer beforehand to an estimated size */
826 error = git_buf_grow(&tree, entrycount * 72);
827
828 for (i = 0; i < entries.length && !error; ++i) {
829 git_tree_entry *entry = git_vector_get(&entries, i);
830
831 git_buf_printf(&tree, "%o ", entry->attr);
832 git_buf_put(&tree, entry->filename, entry->filename_len + 1);
833 git_buf_put(&tree, (char *)entry->oid->id, GIT_OID_RAWSZ);
834
835 if (git_buf_oom(&tree))
836 error = -1;
837 }
838
839
840 if (!error &&
841 !(error = git_repository_odb__weakptr(&odb, bld->repo)))
842 error = git_odb_write(oid, odb, tree.ptr, tree.size, GIT_OBJ_TREE);
843
844 git_buf_free(&tree);
845 git_vector_free(&entries);
846
847 return error;
848 }
849
850 void git_treebuilder_filter(
851 git_treebuilder *bld,
852 git_treebuilder_filter_cb filter,
853 void *payload)
854 {
855 const char *filename;
856 git_tree_entry *entry;
857
858 assert(bld && filter);
859
860 git_strmap_foreach(bld->map, filename, entry, {
861 if (filter(entry, payload)) {
862 git_strmap_delete(bld->map, filename);
863 git_tree_entry_free(entry);
864 }
865 });
866 }
867
868 void git_treebuilder_clear(git_treebuilder *bld)
869 {
870 git_tree_entry *e;
871
872 assert(bld);
873
874 git_strmap_foreach_value(bld->map, e, git_tree_entry_free(e));
875 git_strmap_clear(bld->map);
876 }
877
878 void git_treebuilder_free(git_treebuilder *bld)
879 {
880 if (bld == NULL)
881 return;
882
883 git_treebuilder_clear(bld);
884 git_strmap_free(bld->map);
885 git__free(bld);
886 }
887
888 static size_t subpath_len(const char *path)
889 {
890 const char *slash_pos = strchr(path, '/');
891 if (slash_pos == NULL)
892 return strlen(path);
893
894 return slash_pos - path;
895 }
896
897 int git_tree_entry_bypath(
898 git_tree_entry **entry_out,
899 const git_tree *root,
900 const char *path)
901 {
902 int error = 0;
903 git_tree *subtree;
904 const git_tree_entry *entry;
905 size_t filename_len;
906
907 /* Find how long is the current path component (i.e.
908 * the filename between two slashes */
909 filename_len = subpath_len(path);
910
911 if (filename_len == 0) {
912 giterr_set(GITERR_TREE, "Invalid tree path given");
913 return GIT_ENOTFOUND;
914 }
915
916 entry = entry_fromname(root, path, filename_len);
917
918 if (entry == NULL) {
919 giterr_set(GITERR_TREE,
920 "the path '%.*s' does not exist in the given tree", filename_len, path);
921 return GIT_ENOTFOUND;
922 }
923
924 switch (path[filename_len]) {
925 case '/':
926 /* If there are more components in the path...
927 * then this entry *must* be a tree */
928 if (!git_tree_entry__is_tree(entry)) {
929 giterr_set(GITERR_TREE,
930 "the path '%.*s' exists but is not a tree", filename_len, path);
931 return GIT_ENOTFOUND;
932 }
933
934 /* If there's only a slash left in the path, we
935 * return the current entry; otherwise, we keep
936 * walking down the path */
937 if (path[filename_len + 1] != '\0')
938 break;
939
940 case '\0':
941 /* If there are no more components in the path, return
942 * this entry */
943 return git_tree_entry_dup(entry_out, entry);
944 }
945
946 if (git_tree_lookup(&subtree, root->object.repo, entry->oid) < 0)
947 return -1;
948
949 error = git_tree_entry_bypath(
950 entry_out,
951 subtree,
952 path + filename_len + 1
953 );
954
955 git_tree_free(subtree);
956 return error;
957 }
958
959 static int tree_walk(
960 const git_tree *tree,
961 git_treewalk_cb callback,
962 git_buf *path,
963 void *payload,
964 bool preorder)
965 {
966 int error = 0;
967 size_t i;
968 const git_tree_entry *entry;
969
970 git_array_foreach(tree->entries, i, entry) {
971 if (preorder) {
972 error = callback(path->ptr, entry, payload);
973 if (error < 0) { /* negative value stops iteration */
974 giterr_set_after_callback_function(error, "git_tree_walk");
975 break;
976 }
977 if (error > 0) { /* positive value skips this entry */
978 error = 0;
979 continue;
980 }
981 }
982
983 if (git_tree_entry__is_tree(entry)) {
984 git_tree *subtree;
985 size_t path_len = git_buf_len(path);
986
987 error = git_tree_lookup(&subtree, tree->object.repo, entry->oid);
988 if (error < 0)
989 break;
990
991 /* append the next entry to the path */
992 git_buf_puts(path, entry->filename);
993 git_buf_putc(path, '/');
994
995 if (git_buf_oom(path))
996 error = -1;
997 else
998 error = tree_walk(subtree, callback, path, payload, preorder);
999
1000 git_tree_free(subtree);
1001 if (error != 0)
1002 break;
1003
1004 git_buf_truncate(path, path_len);
1005 }
1006
1007 if (!preorder) {
1008 error = callback(path->ptr, entry, payload);
1009 if (error < 0) { /* negative value stops iteration */
1010 giterr_set_after_callback_function(error, "git_tree_walk");
1011 break;
1012 }
1013 error = 0;
1014 }
1015 }
1016
1017 return error;
1018 }
1019
1020 int git_tree_walk(
1021 const git_tree *tree,
1022 git_treewalk_mode mode,
1023 git_treewalk_cb callback,
1024 void *payload)
1025 {
1026 int error = 0;
1027 git_buf root_path = GIT_BUF_INIT;
1028
1029 if (mode != GIT_TREEWALK_POST && mode != GIT_TREEWALK_PRE) {
1030 giterr_set(GITERR_INVALID, "Invalid walking mode for tree walk");
1031 return -1;
1032 }
1033
1034 error = tree_walk(
1035 tree, callback, &root_path, payload, (mode == GIT_TREEWALK_PRE));
1036
1037 git_buf_free(&root_path);
1038
1039 return error;
1040 }
1041
1042 static int compare_entries(const void *_a, const void *_b)
1043 {
1044 const git_tree_update *a = (git_tree_update *) _a;
1045 const git_tree_update *b = (git_tree_update *) _b;
1046
1047 return strcmp(a->path, b->path);
1048 }
1049
1050 static int on_dup_entry(void **old, void *new)
1051 {
1052 GIT_UNUSED(old); GIT_UNUSED(new);
1053
1054 giterr_set(GITERR_TREE, "duplicate entries given for update");
1055 return -1;
1056 }
1057
1058 /*
1059 * We keep the previous tree and the new one at each level of the
1060 * stack. When we leave a level we're done with that tree and we can
1061 * write it out to the odb.
1062 */
1063 typedef struct {
1064 git_treebuilder *bld;
1065 git_tree *tree;
1066 char *name;
1067 } tree_stack_entry;
1068
1069 /** Count how many slashes (i.e. path components) there are in this string */
1070 GIT_INLINE(size_t) count_slashes(const char *path)
1071 {
1072 size_t count = 0;
1073 const char *slash;
1074
1075 while ((slash = strchr(path, '/')) != NULL) {
1076 count++;
1077 path = slash + 1;
1078 }
1079
1080 return count;
1081 }
1082
1083 static bool next_component(git_buf *out, const char *in)
1084 {
1085 const char *slash = strchr(in, '/');
1086
1087 git_buf_clear(out);
1088
1089 if (slash)
1090 git_buf_put(out, in, slash - in);
1091
1092 return !!slash;
1093 }
1094
1095 static int create_popped_tree(tree_stack_entry *current, tree_stack_entry *popped, git_buf *component)
1096 {
1097 int error;
1098 git_oid new_tree;
1099
1100 git_tree_free(popped->tree);
1101
1102 /* If the tree would be empty, remove it from the one higher up */
1103 if (git_treebuilder_entrycount(popped->bld) == 0) {
1104 git_treebuilder_free(popped->bld);
1105 error = git_treebuilder_remove(current->bld, popped->name);
1106 git__free(popped->name);
1107 return error;
1108 }
1109
1110 error = git_treebuilder_write(&new_tree, popped->bld);
1111 git_treebuilder_free(popped->bld);
1112
1113 if (error < 0) {
1114 git__free(popped->name);
1115 return error;
1116 }
1117
1118 /* We've written out the tree, now we have to put the new value into its parent */
1119 git_buf_clear(component);
1120 git_buf_puts(component, popped->name);
1121 git__free(popped->name);
1122
1123 GITERR_CHECK_ALLOC(component->ptr);
1124
1125 /* Error out if this would create a D/F conflict in this update */
1126 if (current->tree) {
1127 const git_tree_entry *to_replace;
1128 to_replace = git_tree_entry_byname(current->tree, component->ptr);
1129 if (to_replace && git_tree_entry_type(to_replace) != GIT_OBJ_TREE) {
1130 giterr_set(GITERR_TREE, "D/F conflict when updating tree");
1131 return -1;
1132 }
1133 }
1134
1135 return git_treebuilder_insert(NULL, current->bld, component->ptr, &new_tree, GIT_FILEMODE_TREE);
1136 }
1137
1138 int git_tree_create_updated(git_oid *out, git_repository *repo, git_tree *baseline, size_t nupdates, const git_tree_update *updates)
1139 {
1140 git_array_t(tree_stack_entry) stack = GIT_ARRAY_INIT;
1141 tree_stack_entry *root_elem;
1142 git_vector entries;
1143 int error;
1144 size_t i;
1145 git_buf component = GIT_BUF_INIT;
1146
1147 if ((error = git_vector_init(&entries, nupdates, compare_entries)) < 0)
1148 return error;
1149
1150 /* Sort the entries for treversal */
1151 for (i = 0 ; i < nupdates; i++) {
1152 if ((error = git_vector_insert_sorted(&entries, (void *) &updates[i], on_dup_entry)) < 0)
1153 goto cleanup;
1154 }
1155
1156 root_elem = git_array_alloc(stack);
1157 GITERR_CHECK_ALLOC(root_elem);
1158 memset(root_elem, 0, sizeof(*root_elem));
1159
1160 if (baseline && (error = git_tree_dup(&root_elem->tree, baseline)) < 0)
1161 goto cleanup;
1162
1163 if ((error = git_treebuilder_new(&root_elem->bld, repo, root_elem->tree)) < 0)
1164 goto cleanup;
1165
1166 for (i = 0; i < nupdates; i++) {
1167 const git_tree_update *last_update = i == 0 ? NULL : &updates[i-1];
1168 const git_tree_update *update = &updates[i];
1169 size_t common_prefix = 0, steps_up, j;
1170 const char *path;
1171
1172 /* Figure out how much we need to change from the previous tree */
1173 if (last_update)
1174 common_prefix = git_path_common_dirlen(last_update->path, update->path);
1175
1176 /*
1177 * The entries are sorted, so when we find we're no
1178 * longer in the same directory, we need to abandon
1179 * the old tree (steps up) and dive down to the next
1180 * one.
1181 */
1182 steps_up = last_update == NULL ? 0 : count_slashes(&last_update->path[common_prefix]);
1183
1184 for (j = 0; j < steps_up; j++) {
1185 tree_stack_entry *current, *popped = git_array_pop(stack);
1186 assert(popped);
1187
1188 current = git_array_last(stack);
1189 assert(current);
1190
1191 if ((error = create_popped_tree(current, popped, &component)) < 0)
1192 goto cleanup;
1193 }
1194
1195 /* Now that we've created the trees we popped from the stack, let's go back down */
1196 path = &update->path[common_prefix];
1197 while (next_component(&component, path)) {
1198 tree_stack_entry *last, *new_entry;
1199 const git_tree_entry *entry;
1200
1201 last = git_array_last(stack);
1202 entry = last->tree ? git_tree_entry_byname(last->tree, component.ptr) : NULL;
1203 if (entry && git_tree_entry_type(entry) != GIT_OBJ_TREE) {
1204 giterr_set(GITERR_TREE, "D/F conflict when updating tree");
1205 error = -1;
1206 goto cleanup;
1207 }
1208
1209 new_entry = git_array_alloc(stack);
1210 GITERR_CHECK_ALLOC(new_entry);
1211 memset(new_entry, 0, sizeof(*new_entry));
1212
1213 new_entry->tree = NULL;
1214 if (entry && (error = git_tree_lookup(&new_entry->tree, repo, git_tree_entry_id(entry))) < 0)
1215 goto cleanup;
1216
1217 if ((error = git_treebuilder_new(&new_entry->bld, repo, new_entry->tree)) < 0)
1218 goto cleanup;
1219
1220 new_entry->name = git__strdup(component.ptr);
1221 GITERR_CHECK_ALLOC(new_entry->name);
1222
1223 /* Get to the start of the next component */
1224 path += component.size + 1;
1225 }
1226
1227 /* After all that, we're finally at the place where we want to perform the update */
1228 switch (update->action) {
1229 case GIT_TREE_UPDATE_UPSERT:
1230 {
1231 /* Make sure we're replacing something of the same type */
1232 tree_stack_entry *last = git_array_last(stack);
1233 char *basename = git_path_basename(update->path);
1234 const git_tree_entry *e = git_treebuilder_get(last->bld, basename);
1235 if (e && git_tree_entry_type(e) != git_object__type_from_filemode(update->filemode)) {
1236 git__free(basename);
1237 giterr_set(GITERR_TREE, "Cannot replace '%s' with '%s' at '%s'",
1238 git_object_type2string(git_tree_entry_type(e)),
1239 git_object_type2string(git_object__type_from_filemode(update->filemode)),
1240 update->path);
1241 error = -1;
1242 goto cleanup;
1243 }
1244
1245 error = git_treebuilder_insert(NULL, last->bld, basename, &update->id, update->filemode);
1246 git__free(basename);
1247 break;
1248 }
1249 case GIT_TREE_UPDATE_REMOVE:
1250 {
1251 char *basename = git_path_basename(update->path);
1252 error = git_treebuilder_remove(git_array_last(stack)->bld, basename);
1253 git__free(basename);
1254 break;
1255 }
1256 default:
1257 giterr_set(GITERR_TREE, "unkown action for update");
1258 error = -1;
1259 goto cleanup;
1260 }
1261
1262 if (error < 0)
1263 goto cleanup;
1264 }
1265
1266 /* We're done, go up the stack again and write out the tree */
1267 {
1268 tree_stack_entry *current = NULL, *popped = NULL;
1269 while ((popped = git_array_pop(stack)) != NULL) {
1270 current = git_array_last(stack);
1271 /* We've reached the top, current is the root tree */
1272 if (!current)
1273 break;
1274
1275 if ((error = create_popped_tree(current, popped, &component)) < 0)
1276 goto cleanup;
1277 }
1278
1279 /* Write out the root tree */
1280 git__free(popped->name);
1281 git_tree_free(popped->tree);
1282
1283 error = git_treebuilder_write(out, popped->bld);
1284 git_treebuilder_free(popped->bld);
1285 if (error < 0)
1286 goto cleanup;
1287 }
1288
1289 cleanup:
1290 {
1291 tree_stack_entry *e;
1292 while ((e = git_array_pop(stack)) != NULL) {
1293 git_treebuilder_free(e->bld);
1294 git_tree_free(e->tree);
1295 git__free(e->name);
1296 }
1297 }
1298
1299 git_buf_free(&component);
1300 git_array_clear(stack);
1301 git_vector_free(&entries);
1302 return error;
1303 }