attr.con commit Merge branch 'ms/commit-cc-option-helpstring' into maint (f1f509c)
   1/*
   2 * Handle git attributes.  See gitattributes(5) for a description of
   3 * the file syntax, and Documentation/technical/api-gitattributes.txt
   4 * for a description of the API.
   5 *
   6 * One basic design decision here is that we are not going to support
   7 * an insanely large number of attributes.
   8 */
   9
  10#define NO_THE_INDEX_COMPATIBILITY_MACROS
  11#include "cache.h"
  12#include "exec_cmd.h"
  13#include "attr.h"
  14#include "dir.h"
  15
  16const char git_attr__true[] = "(builtin)true";
  17const char git_attr__false[] = "\0(builtin)false";
  18static const char git_attr__unknown[] = "(builtin)unknown";
  19#define ATTR__TRUE git_attr__true
  20#define ATTR__FALSE git_attr__false
  21#define ATTR__UNSET NULL
  22#define ATTR__UNKNOWN git_attr__unknown
  23
  24/* This is a randomly chosen prime. */
  25#define HASHSIZE 257
  26
  27#ifndef DEBUG_ATTR
  28#define DEBUG_ATTR 0
  29#endif
  30
  31struct git_attr {
  32        struct git_attr *next;
  33        unsigned h;
  34        int attr_nr;
  35        char name[FLEX_ARRAY];
  36};
  37static int attr_nr;
  38
  39static struct git_attr_check *check_all_attr;
  40static struct git_attr *(git_attr_hash[HASHSIZE]);
  41
  42char *git_attr_name(struct git_attr *attr)
  43{
  44        return attr->name;
  45}
  46
  47static unsigned hash_name(const char *name, int namelen)
  48{
  49        unsigned val = 0, c;
  50
  51        while (namelen--) {
  52                c = *name++;
  53                val = ((val << 7) | (val >> 22)) ^ c;
  54        }
  55        return val;
  56}
  57
  58static int invalid_attr_name(const char *name, int namelen)
  59{
  60        /*
  61         * Attribute name cannot begin with '-' and must consist of
  62         * characters from [-A-Za-z0-9_.].
  63         */
  64        if (namelen <= 0 || *name == '-')
  65                return -1;
  66        while (namelen--) {
  67                char ch = *name++;
  68                if (! (ch == '-' || ch == '.' || ch == '_' ||
  69                       ('0' <= ch && ch <= '9') ||
  70                       ('a' <= ch && ch <= 'z') ||
  71                       ('A' <= ch && ch <= 'Z')) )
  72                        return -1;
  73        }
  74        return 0;
  75}
  76
  77static struct git_attr *git_attr_internal(const char *name, int len)
  78{
  79        unsigned hval = hash_name(name, len);
  80        unsigned pos = hval % HASHSIZE;
  81        struct git_attr *a;
  82
  83        for (a = git_attr_hash[pos]; a; a = a->next) {
  84                if (a->h == hval &&
  85                    !memcmp(a->name, name, len) && !a->name[len])
  86                        return a;
  87        }
  88
  89        if (invalid_attr_name(name, len))
  90                return NULL;
  91
  92        a = xmalloc(sizeof(*a) + len + 1);
  93        memcpy(a->name, name, len);
  94        a->name[len] = 0;
  95        a->h = hval;
  96        a->next = git_attr_hash[pos];
  97        a->attr_nr = attr_nr++;
  98        git_attr_hash[pos] = a;
  99
 100        check_all_attr = xrealloc(check_all_attr,
 101                                  sizeof(*check_all_attr) * attr_nr);
 102        check_all_attr[a->attr_nr].attr = a;
 103        check_all_attr[a->attr_nr].value = ATTR__UNKNOWN;
 104        return a;
 105}
 106
 107struct git_attr *git_attr(const char *name)
 108{
 109        return git_attr_internal(name, strlen(name));
 110}
 111
 112/* What does a matched pattern decide? */
 113struct attr_state {
 114        struct git_attr *attr;
 115        const char *setto;
 116};
 117
 118/*
 119 * One rule, as from a .gitattributes file.
 120 *
 121 * If is_macro is true, then u.attr is a pointer to the git_attr being
 122 * defined.
 123 *
 124 * If is_macro is false, then u.pattern points at the filename pattern
 125 * to which the rule applies.  (The memory pointed to is part of the
 126 * memory block allocated for the match_attr instance.)
 127 *
 128 * In either case, num_attr is the number of attributes affected by
 129 * this rule, and state is an array listing them.  The attributes are
 130 * listed as they appear in the file (macros unexpanded).
 131 */
 132struct match_attr {
 133        union {
 134                char *pattern;
 135                struct git_attr *attr;
 136        } u;
 137        char is_macro;
 138        unsigned num_attr;
 139        struct attr_state state[FLEX_ARRAY];
 140};
 141
 142static const char blank[] = " \t\r\n";
 143
 144/*
 145 * Parse a whitespace-delimited attribute state (i.e., "attr",
 146 * "-attr", "!attr", or "attr=value") from the string starting at src.
 147 * If e is not NULL, write the results to *e.  Return a pointer to the
 148 * remainder of the string (with leading whitespace removed), or NULL
 149 * if there was an error.
 150 */
 151static const char *parse_attr(const char *src, int lineno, const char *cp,
 152                              struct attr_state *e)
 153{
 154        const char *ep, *equals;
 155        int len;
 156
 157        ep = cp + strcspn(cp, blank);
 158        equals = strchr(cp, '=');
 159        if (equals && ep < equals)
 160                equals = NULL;
 161        if (equals)
 162                len = equals - cp;
 163        else
 164                len = ep - cp;
 165        if (!e) {
 166                if (*cp == '-' || *cp == '!') {
 167                        cp++;
 168                        len--;
 169                }
 170                if (invalid_attr_name(cp, len)) {
 171                        fprintf(stderr,
 172                                "%.*s is not a valid attribute name: %s:%d\n",
 173                                len, cp, src, lineno);
 174                        return NULL;
 175                }
 176        } else {
 177                if (*cp == '-' || *cp == '!') {
 178                        e->setto = (*cp == '-') ? ATTR__FALSE : ATTR__UNSET;
 179                        cp++;
 180                        len--;
 181                }
 182                else if (!equals)
 183                        e->setto = ATTR__TRUE;
 184                else {
 185                        e->setto = xmemdupz(equals + 1, ep - equals - 1);
 186                }
 187                e->attr = git_attr_internal(cp, len);
 188        }
 189        return ep + strspn(ep, blank);
 190}
 191
 192static struct match_attr *parse_attr_line(const char *line, const char *src,
 193                                          int lineno, int macro_ok)
 194{
 195        int namelen;
 196        int num_attr, i;
 197        const char *cp, *name, *states;
 198        struct match_attr *res = NULL;
 199        int is_macro;
 200
 201        cp = line + strspn(line, blank);
 202        if (!*cp || *cp == '#')
 203                return NULL;
 204        name = cp;
 205        namelen = strcspn(name, blank);
 206        if (strlen(ATTRIBUTE_MACRO_PREFIX) < namelen &&
 207            !prefixcmp(name, ATTRIBUTE_MACRO_PREFIX)) {
 208                if (!macro_ok) {
 209                        fprintf(stderr, "%s not allowed: %s:%d\n",
 210                                name, src, lineno);
 211                        return NULL;
 212                }
 213                is_macro = 1;
 214                name += strlen(ATTRIBUTE_MACRO_PREFIX);
 215                name += strspn(name, blank);
 216                namelen = strcspn(name, blank);
 217                if (invalid_attr_name(name, namelen)) {
 218                        fprintf(stderr,
 219                                "%.*s is not a valid attribute name: %s:%d\n",
 220                                namelen, name, src, lineno);
 221                        return NULL;
 222                }
 223        }
 224        else
 225                is_macro = 0;
 226
 227        states = name + namelen;
 228        states += strspn(states, blank);
 229
 230        /* First pass to count the attr_states */
 231        for (cp = states, num_attr = 0; *cp; num_attr++) {
 232                cp = parse_attr(src, lineno, cp, NULL);
 233                if (!cp)
 234                        return NULL;
 235        }
 236
 237        res = xcalloc(1,
 238                      sizeof(*res) +
 239                      sizeof(struct attr_state) * num_attr +
 240                      (is_macro ? 0 : namelen + 1));
 241        if (is_macro)
 242                res->u.attr = git_attr_internal(name, namelen);
 243        else {
 244                res->u.pattern = (char *)&(res->state[num_attr]);
 245                memcpy(res->u.pattern, name, namelen);
 246                res->u.pattern[namelen] = 0;
 247        }
 248        res->is_macro = is_macro;
 249        res->num_attr = num_attr;
 250
 251        /* Second pass to fill the attr_states */
 252        for (cp = states, i = 0; *cp; i++) {
 253                cp = parse_attr(src, lineno, cp, &(res->state[i]));
 254        }
 255
 256        return res;
 257}
 258
 259/*
 260 * Like info/exclude and .gitignore, the attribute information can
 261 * come from many places.
 262 *
 263 * (1) .gitattribute file of the same directory;
 264 * (2) .gitattribute file of the parent directory if (1) does not have
 265 *      any match; this goes recursively upwards, just like .gitignore.
 266 * (3) $GIT_DIR/info/attributes, which overrides both of the above.
 267 *
 268 * In the same file, later entries override the earlier match, so in the
 269 * global list, we would have entries from info/attributes the earliest
 270 * (reading the file from top to bottom), .gitattribute of the root
 271 * directory (again, reading the file from top to bottom) down to the
 272 * current directory, and then scan the list backwards to find the first match.
 273 * This is exactly the same as what excluded() does in dir.c to deal with
 274 * .gitignore
 275 */
 276
 277static struct attr_stack {
 278        struct attr_stack *prev;
 279        char *origin;
 280        unsigned num_matches;
 281        unsigned alloc;
 282        struct match_attr **attrs;
 283} *attr_stack;
 284
 285static void free_attr_elem(struct attr_stack *e)
 286{
 287        int i;
 288        free(e->origin);
 289        for (i = 0; i < e->num_matches; i++) {
 290                struct match_attr *a = e->attrs[i];
 291                int j;
 292                for (j = 0; j < a->num_attr; j++) {
 293                        const char *setto = a->state[j].setto;
 294                        if (setto == ATTR__TRUE ||
 295                            setto == ATTR__FALSE ||
 296                            setto == ATTR__UNSET ||
 297                            setto == ATTR__UNKNOWN)
 298                                ;
 299                        else
 300                                free((char *) setto);
 301                }
 302                free(a);
 303        }
 304        free(e);
 305}
 306
 307static const char *builtin_attr[] = {
 308        "[attr]binary -diff -text",
 309        NULL,
 310};
 311
 312static void handle_attr_line(struct attr_stack *res,
 313                             const char *line,
 314                             const char *src,
 315                             int lineno,
 316                             int macro_ok)
 317{
 318        struct match_attr *a;
 319
 320        a = parse_attr_line(line, src, lineno, macro_ok);
 321        if (!a)
 322                return;
 323        if (res->alloc <= res->num_matches) {
 324                res->alloc = alloc_nr(res->num_matches);
 325                res->attrs = xrealloc(res->attrs,
 326                                      sizeof(struct match_attr *) *
 327                                      res->alloc);
 328        }
 329        res->attrs[res->num_matches++] = a;
 330}
 331
 332static struct attr_stack *read_attr_from_array(const char **list)
 333{
 334        struct attr_stack *res;
 335        const char *line;
 336        int lineno = 0;
 337
 338        res = xcalloc(1, sizeof(*res));
 339        while ((line = *(list++)) != NULL)
 340                handle_attr_line(res, line, "[builtin]", ++lineno, 1);
 341        return res;
 342}
 343
 344static enum git_attr_direction direction;
 345static struct index_state *use_index;
 346
 347static struct attr_stack *read_attr_from_file(const char *path, int macro_ok)
 348{
 349        FILE *fp = fopen(path, "r");
 350        struct attr_stack *res;
 351        char buf[2048];
 352        int lineno = 0;
 353
 354        if (!fp)
 355                return NULL;
 356        res = xcalloc(1, sizeof(*res));
 357        while (fgets(buf, sizeof(buf), fp))
 358                handle_attr_line(res, buf, path, ++lineno, macro_ok);
 359        fclose(fp);
 360        return res;
 361}
 362
 363static void *read_index_data(const char *path)
 364{
 365        int pos, len;
 366        unsigned long sz;
 367        enum object_type type;
 368        void *data;
 369        struct index_state *istate = use_index ? use_index : &the_index;
 370
 371        len = strlen(path);
 372        pos = index_name_pos(istate, path, len);
 373        if (pos < 0) {
 374                /*
 375                 * We might be in the middle of a merge, in which
 376                 * case we would read stage #2 (ours).
 377                 */
 378                int i;
 379                for (i = -pos - 1;
 380                     (pos < 0 && i < istate->cache_nr &&
 381                      !strcmp(istate->cache[i]->name, path));
 382                     i++)
 383                        if (ce_stage(istate->cache[i]) == 2)
 384                                pos = i;
 385        }
 386        if (pos < 0)
 387                return NULL;
 388        data = read_sha1_file(istate->cache[pos]->sha1, &type, &sz);
 389        if (!data || type != OBJ_BLOB) {
 390                free(data);
 391                return NULL;
 392        }
 393        return data;
 394}
 395
 396static struct attr_stack *read_attr_from_index(const char *path, int macro_ok)
 397{
 398        struct attr_stack *res;
 399        char *buf, *sp;
 400        int lineno = 0;
 401
 402        buf = read_index_data(path);
 403        if (!buf)
 404                return NULL;
 405
 406        res = xcalloc(1, sizeof(*res));
 407        for (sp = buf; *sp; ) {
 408                char *ep;
 409                int more;
 410                for (ep = sp; *ep && *ep != '\n'; ep++)
 411                        ;
 412                more = (*ep == '\n');
 413                *ep = '\0';
 414                handle_attr_line(res, sp, path, ++lineno, macro_ok);
 415                sp = ep + more;
 416        }
 417        free(buf);
 418        return res;
 419}
 420
 421static struct attr_stack *read_attr(const char *path, int macro_ok)
 422{
 423        struct attr_stack *res;
 424
 425        if (direction == GIT_ATTR_CHECKOUT) {
 426                res = read_attr_from_index(path, macro_ok);
 427                if (!res)
 428                        res = read_attr_from_file(path, macro_ok);
 429        }
 430        else if (direction == GIT_ATTR_CHECKIN) {
 431                res = read_attr_from_file(path, macro_ok);
 432                if (!res)
 433                        /*
 434                         * There is no checked out .gitattributes file there, but
 435                         * we might have it in the index.  We allow operation in a
 436                         * sparsely checked out work tree, so read from it.
 437                         */
 438                        res = read_attr_from_index(path, macro_ok);
 439        }
 440        else
 441                res = read_attr_from_index(path, macro_ok);
 442        if (!res)
 443                res = xcalloc(1, sizeof(*res));
 444        return res;
 445}
 446
 447#if DEBUG_ATTR
 448static void debug_info(const char *what, struct attr_stack *elem)
 449{
 450        fprintf(stderr, "%s: %s\n", what, elem->origin ? elem->origin : "()");
 451}
 452static void debug_set(const char *what, const char *match, struct git_attr *attr, const void *v)
 453{
 454        const char *value = v;
 455
 456        if (ATTR_TRUE(value))
 457                value = "set";
 458        else if (ATTR_FALSE(value))
 459                value = "unset";
 460        else if (ATTR_UNSET(value))
 461                value = "unspecified";
 462
 463        fprintf(stderr, "%s: %s => %s (%s)\n",
 464                what, attr->name, (char *) value, match);
 465}
 466#define debug_push(a) debug_info("push", (a))
 467#define debug_pop(a) debug_info("pop", (a))
 468#else
 469#define debug_push(a) do { ; } while (0)
 470#define debug_pop(a) do { ; } while (0)
 471#define debug_set(a,b,c,d) do { ; } while (0)
 472#endif
 473
 474static void drop_attr_stack(void)
 475{
 476        while (attr_stack) {
 477                struct attr_stack *elem = attr_stack;
 478                attr_stack = elem->prev;
 479                free_attr_elem(elem);
 480        }
 481}
 482
 483static const char *git_etc_gitattributes(void)
 484{
 485        static const char *system_wide;
 486        if (!system_wide)
 487                system_wide = system_path(ETC_GITATTRIBUTES);
 488        return system_wide;
 489}
 490
 491static int git_attr_system(void)
 492{
 493        return !git_env_bool("GIT_ATTR_NOSYSTEM", 0);
 494}
 495
 496static void bootstrap_attr_stack(void)
 497{
 498        if (!attr_stack) {
 499                struct attr_stack *elem;
 500
 501                elem = read_attr_from_array(builtin_attr);
 502                elem->origin = NULL;
 503                elem->prev = attr_stack;
 504                attr_stack = elem;
 505
 506                if (git_attr_system()) {
 507                        elem = read_attr_from_file(git_etc_gitattributes(), 1);
 508                        if (elem) {
 509                                elem->origin = NULL;
 510                                elem->prev = attr_stack;
 511                                attr_stack = elem;
 512                        }
 513                }
 514
 515                if (git_attributes_file) {
 516                        elem = read_attr_from_file(git_attributes_file, 1);
 517                        if (elem) {
 518                                elem->origin = NULL;
 519                                elem->prev = attr_stack;
 520                                attr_stack = elem;
 521                        }
 522                }
 523
 524                if (!is_bare_repository() || direction == GIT_ATTR_INDEX) {
 525                        elem = read_attr(GITATTRIBUTES_FILE, 1);
 526                        elem->origin = xstrdup("");
 527                        elem->prev = attr_stack;
 528                        attr_stack = elem;
 529                        debug_push(elem);
 530                }
 531
 532                elem = read_attr_from_file(git_path(INFOATTRIBUTES_FILE), 1);
 533                if (!elem)
 534                        elem = xcalloc(1, sizeof(*elem));
 535                elem->origin = NULL;
 536                elem->prev = attr_stack;
 537                attr_stack = elem;
 538        }
 539}
 540
 541static void prepare_attr_stack(const char *path)
 542{
 543        struct attr_stack *elem, *info;
 544        int dirlen, len;
 545        const char *cp;
 546
 547        cp = strrchr(path, '/');
 548        if (!cp)
 549                dirlen = 0;
 550        else
 551                dirlen = cp - path;
 552
 553        /*
 554         * At the bottom of the attribute stack is the built-in
 555         * set of attribute definitions, followed by the contents
 556         * of $(prefix)/etc/gitattributes and a file specified by
 557         * core.attributesfile.  Then, contents from
 558         * .gitattribute files from directories closer to the
 559         * root to the ones in deeper directories are pushed
 560         * to the stack.  Finally, at the very top of the stack
 561         * we always keep the contents of $GIT_DIR/info/attributes.
 562         *
 563         * When checking, we use entries from near the top of the
 564         * stack, preferring $GIT_DIR/info/attributes, then
 565         * .gitattributes in deeper directories to shallower ones,
 566         * and finally use the built-in set as the default.
 567         */
 568        bootstrap_attr_stack();
 569
 570        /*
 571         * Pop the "info" one that is always at the top of the stack.
 572         */
 573        info = attr_stack;
 574        attr_stack = info->prev;
 575
 576        /*
 577         * Pop the ones from directories that are not the prefix of
 578         * the path we are checking.
 579         */
 580        while (attr_stack && attr_stack->origin) {
 581                int namelen = strlen(attr_stack->origin);
 582
 583                elem = attr_stack;
 584                if (namelen <= dirlen &&
 585                    !strncmp(elem->origin, path, namelen))
 586                        break;
 587
 588                debug_pop(elem);
 589                attr_stack = elem->prev;
 590                free_attr_elem(elem);
 591        }
 592
 593        /*
 594         * Read from parent directories and push them down
 595         */
 596        if (!is_bare_repository() || direction == GIT_ATTR_INDEX) {
 597                struct strbuf pathbuf = STRBUF_INIT;
 598
 599                while (1) {
 600                        len = strlen(attr_stack->origin);
 601                        if (dirlen <= len)
 602                                break;
 603                        cp = memchr(path + len + 1, '/', dirlen - len - 1);
 604                        if (!cp)
 605                                cp = path + dirlen;
 606                        strbuf_add(&pathbuf, path, cp - path);
 607                        strbuf_addch(&pathbuf, '/');
 608                        strbuf_addstr(&pathbuf, GITATTRIBUTES_FILE);
 609                        elem = read_attr(pathbuf.buf, 0);
 610                        strbuf_setlen(&pathbuf, cp - path);
 611                        elem->origin = strbuf_detach(&pathbuf, NULL);
 612                        elem->prev = attr_stack;
 613                        attr_stack = elem;
 614                        debug_push(elem);
 615                }
 616
 617                strbuf_release(&pathbuf);
 618        }
 619
 620        /*
 621         * Finally push the "info" one at the top of the stack.
 622         */
 623        info->prev = attr_stack;
 624        attr_stack = info;
 625}
 626
 627static int path_matches(const char *pathname, int pathlen,
 628                        const char *pattern,
 629                        const char *base, int baselen)
 630{
 631        if (!strchr(pattern, '/')) {
 632                /* match basename */
 633                const char *basename = strrchr(pathname, '/');
 634                basename = basename ? basename + 1 : pathname;
 635                return (fnmatch_icase(pattern, basename, 0) == 0);
 636        }
 637        /*
 638         * match with FNM_PATHNAME; the pattern has base implicitly
 639         * in front of it.
 640         */
 641        if (*pattern == '/')
 642                pattern++;
 643        if (pathlen < baselen ||
 644            (baselen && pathname[baselen] != '/') ||
 645            strncmp(pathname, base, baselen))
 646                return 0;
 647        if (baselen != 0)
 648                baselen++;
 649        return fnmatch_icase(pattern, pathname + baselen, FNM_PATHNAME) == 0;
 650}
 651
 652static int macroexpand_one(int attr_nr, int rem);
 653
 654static int fill_one(const char *what, struct match_attr *a, int rem)
 655{
 656        struct git_attr_check *check = check_all_attr;
 657        int i;
 658
 659        for (i = a->num_attr - 1; 0 < rem && 0 <= i; i--) {
 660                struct git_attr *attr = a->state[i].attr;
 661                const char **n = &(check[attr->attr_nr].value);
 662                const char *v = a->state[i].setto;
 663
 664                if (*n == ATTR__UNKNOWN) {
 665                        debug_set(what,
 666                                  a->is_macro ? a->u.attr->name : a->u.pattern,
 667                                  attr, v);
 668                        *n = v;
 669                        rem--;
 670                        rem = macroexpand_one(attr->attr_nr, rem);
 671                }
 672        }
 673        return rem;
 674}
 675
 676static int fill(const char *path, int pathlen, struct attr_stack *stk, int rem)
 677{
 678        int i;
 679        const char *base = stk->origin ? stk->origin : "";
 680
 681        for (i = stk->num_matches - 1; 0 < rem && 0 <= i; i--) {
 682                struct match_attr *a = stk->attrs[i];
 683                if (a->is_macro)
 684                        continue;
 685                if (path_matches(path, pathlen,
 686                                 a->u.pattern, base, strlen(base)))
 687                        rem = fill_one("fill", a, rem);
 688        }
 689        return rem;
 690}
 691
 692static int macroexpand_one(int attr_nr, int rem)
 693{
 694        struct attr_stack *stk;
 695        struct match_attr *a = NULL;
 696        int i;
 697
 698        if (check_all_attr[attr_nr].value != ATTR__TRUE)
 699                return rem;
 700
 701        for (stk = attr_stack; !a && stk; stk = stk->prev)
 702                for (i = stk->num_matches - 1; !a && 0 <= i; i--) {
 703                        struct match_attr *ma = stk->attrs[i];
 704                        if (!ma->is_macro)
 705                                continue;
 706                        if (ma->u.attr->attr_nr == attr_nr)
 707                                a = ma;
 708                }
 709
 710        if (a)
 711                rem = fill_one("expand", a, rem);
 712
 713        return rem;
 714}
 715
 716/*
 717 * Collect all attributes for path into the array pointed to by
 718 * check_all_attr.
 719 */
 720static void collect_all_attrs(const char *path)
 721{
 722        struct attr_stack *stk;
 723        int i, pathlen, rem;
 724
 725        prepare_attr_stack(path);
 726        for (i = 0; i < attr_nr; i++)
 727                check_all_attr[i].value = ATTR__UNKNOWN;
 728
 729        pathlen = strlen(path);
 730        rem = attr_nr;
 731        for (stk = attr_stack; 0 < rem && stk; stk = stk->prev)
 732                rem = fill(path, pathlen, stk, rem);
 733}
 734
 735int git_check_attr(const char *path, int num, struct git_attr_check *check)
 736{
 737        int i;
 738
 739        collect_all_attrs(path);
 740
 741        for (i = 0; i < num; i++) {
 742                const char *value = check_all_attr[check[i].attr->attr_nr].value;
 743                if (value == ATTR__UNKNOWN)
 744                        value = ATTR__UNSET;
 745                check[i].value = value;
 746        }
 747
 748        return 0;
 749}
 750
 751int git_all_attrs(const char *path, int *num, struct git_attr_check **check)
 752{
 753        int i, count, j;
 754
 755        collect_all_attrs(path);
 756
 757        /* Count the number of attributes that are set. */
 758        count = 0;
 759        for (i = 0; i < attr_nr; i++) {
 760                const char *value = check_all_attr[i].value;
 761                if (value != ATTR__UNSET && value != ATTR__UNKNOWN)
 762                        ++count;
 763        }
 764        *num = count;
 765        *check = xmalloc(sizeof(**check) * count);
 766        j = 0;
 767        for (i = 0; i < attr_nr; i++) {
 768                const char *value = check_all_attr[i].value;
 769                if (value != ATTR__UNSET && value != ATTR__UNKNOWN) {
 770                        (*check)[j].attr = check_all_attr[i].attr;
 771                        (*check)[j].value = value;
 772                        ++j;
 773                }
 774        }
 775
 776        return 0;
 777}
 778
 779void git_attr_set_direction(enum git_attr_direction new, struct index_state *istate)
 780{
 781        enum git_attr_direction old = direction;
 782
 783        if (is_bare_repository() && new != GIT_ATTR_INDEX)
 784                die("BUG: non-INDEX attr direction in a bare repo");
 785
 786        direction = new;
 787        if (new != old)
 788                drop_attr_stack();
 789        use_index = istate;
 790}