1 #define NO_THE_INDEX_COMPATIBILITY_MACROS
4 #include "object-store.h"
6 #include "run-command.h"
10 #include "sub-process.h"
13 * convert.c - convert a file when checking it out and checking it in.
15 * This should use the pathname to decide on whether it wants to do some
16 * more interesting conversions (automatic gzip/unzip, general format
17 * conversions etc etc), but by default it just does automatic CRLF<->LF
18 * translation when the "text" attribute or "auto_crlf" option is set.
21 /* Stat bits: When BIN is set, the txt bits are unset */
22 #define CONVERT_STAT_BITS_TXT_LF 0x1
23 #define CONVERT_STAT_BITS_TXT_CRLF 0x2
24 #define CONVERT_STAT_BITS_BIN 0x4
38 /* NUL, CR, LF and CRLF counts */
39 unsigned nul, lonecr, lonelf, crlf;
41 /* These are just approximations! */
42 unsigned printable, nonprintable;
45 static void gather_stats(const char *buf, unsigned long size, struct text_stat *stats)
49 memset(stats, 0, sizeof(*stats));
51 for (i = 0; i < size; i++) {
52 unsigned char c = buf[i];
54 if (i+1 < size && buf[i+1] == '\n') {
67 stats->nonprintable++;
70 /* BS, HT, ESC and FF */
71 case '\b': case '\t': case '\033': case '\014':
78 stats->nonprintable++;
85 /* If file ends with EOF then don't count this EOF as non-printable. */
86 if (size >= 1 && buf[size-1] == '\032')
87 stats->nonprintable--;
91 * The same heuristics as diff.c::mmfile_is_binary()
92 * We treat files with bare CR as binary
94 static int convert_is_binary(unsigned long size, const struct text_stat *stats)
100 if ((stats->printable >> 7) < stats->nonprintable)
105 static unsigned int gather_convert_stats(const char *data, unsigned long size)
107 struct text_stat stats;
111 gather_stats(data, size, &stats);
112 if (convert_is_binary(size, &stats))
113 ret |= CONVERT_STAT_BITS_BIN;
115 ret |= CONVERT_STAT_BITS_TXT_CRLF;
117 ret |= CONVERT_STAT_BITS_TXT_LF;
122 static const char *gather_convert_stats_ascii(const char *data, unsigned long size)
124 unsigned int convert_stats = gather_convert_stats(data, size);
126 if (convert_stats & CONVERT_STAT_BITS_BIN)
128 switch (convert_stats) {
129 case CONVERT_STAT_BITS_TXT_LF:
131 case CONVERT_STAT_BITS_TXT_CRLF:
133 case CONVERT_STAT_BITS_TXT_LF | CONVERT_STAT_BITS_TXT_CRLF:
140 const char *get_cached_convert_stats_ascii(const struct index_state *istate,
145 void *data = read_blob_data_from_index(istate, path, &sz);
146 ret = gather_convert_stats_ascii(data, sz);
151 const char *get_wt_convert_stats_ascii(const char *path)
153 const char *ret = "";
154 struct strbuf sb = STRBUF_INIT;
155 if (strbuf_read_file(&sb, path, 0) >= 0)
156 ret = gather_convert_stats_ascii(sb.buf, sb.len);
161 static int text_eol_is_crlf(void)
163 if (auto_crlf == AUTO_CRLF_TRUE)
165 else if (auto_crlf == AUTO_CRLF_INPUT)
167 if (core_eol == EOL_CRLF)
169 if (core_eol == EOL_UNSET && EOL_NATIVE == EOL_CRLF)
174 static enum eol output_eol(enum crlf_action crlf_action)
176 switch (crlf_action) {
181 case CRLF_TEXT_INPUT:
186 case CRLF_AUTO_INPUT:
191 return text_eol_is_crlf() ? EOL_CRLF : EOL_LF;
193 warning("Illegal crlf_action %d\n", (int)crlf_action);
197 static void check_global_conv_flags_eol(const char *path, enum crlf_action crlf_action,
198 struct text_stat *old_stats, struct text_stat *new_stats,
201 if (old_stats->crlf && !new_stats->crlf ) {
203 * CRLFs would not be restored by checkout
205 if (conv_flags & CONV_EOL_RNDTRP_DIE)
206 die(_("CRLF would be replaced by LF in %s."), path);
207 else if (conv_flags & CONV_EOL_RNDTRP_WARN)
208 warning(_("CRLF will be replaced by LF in %s.\n"
209 "The file will have its original line"
210 " endings in your working directory."), path);
211 } else if (old_stats->lonelf && !new_stats->lonelf ) {
213 * CRLFs would be added by checkout
215 if (conv_flags & CONV_EOL_RNDTRP_DIE)
216 die(_("LF would be replaced by CRLF in %s"), path);
217 else if (conv_flags & CONV_EOL_RNDTRP_WARN)
218 warning(_("LF will be replaced by CRLF in %s.\n"
219 "The file will have its original line"
220 " endings in your working directory."), path);
224 static int has_crlf_in_index(const struct index_state *istate, const char *path)
231 data = read_blob_data_from_index(istate, path, &sz);
235 crp = memchr(data, '\r', sz);
237 unsigned int ret_stats;
238 ret_stats = gather_convert_stats(data, sz);
239 if (!(ret_stats & CONVERT_STAT_BITS_BIN) &&
240 (ret_stats & CONVERT_STAT_BITS_TXT_CRLF))
247 static int will_convert_lf_to_crlf(size_t len, struct text_stat *stats,
248 enum crlf_action crlf_action)
250 if (output_eol(crlf_action) != EOL_CRLF)
252 /* No "naked" LF? Nothing to convert, regardless. */
256 if (crlf_action == CRLF_AUTO || crlf_action == CRLF_AUTO_INPUT || crlf_action == CRLF_AUTO_CRLF) {
257 /* If we have any CR or CRLF line endings, we do not touch it */
258 /* This is the new safer autocrlf-handling */
259 if (stats->lonecr || stats->crlf)
262 if (convert_is_binary(len, stats))
269 static int crlf_to_git(const struct index_state *istate,
270 const char *path, const char *src, size_t len,
272 enum crlf_action crlf_action, int conv_flags)
274 struct text_stat stats;
276 int convert_crlf_into_lf;
278 if (crlf_action == CRLF_BINARY ||
283 * If we are doing a dry-run and have no source buffer, there is
284 * nothing to analyze; we must assume we would convert.
289 gather_stats(src, len, &stats);
290 /* Optimization: No CRLF? Nothing to convert, regardless. */
291 convert_crlf_into_lf = !!stats.crlf;
293 if (crlf_action == CRLF_AUTO || crlf_action == CRLF_AUTO_INPUT || crlf_action == CRLF_AUTO_CRLF) {
294 if (convert_is_binary(len, &stats))
297 * If the file in the index has any CR in it, do not
298 * convert. This is the new safer autocrlf handling,
299 * unless we want to renormalize in a merge or
302 if ((!(conv_flags & CONV_EOL_RENORMALIZE)) &&
303 has_crlf_in_index(istate, path))
304 convert_crlf_into_lf = 0;
306 if (((conv_flags & CONV_EOL_RNDTRP_WARN) ||
307 ((conv_flags & CONV_EOL_RNDTRP_DIE) && len))) {
308 struct text_stat new_stats;
309 memcpy(&new_stats, &stats, sizeof(new_stats));
310 /* simulate "git add" */
311 if (convert_crlf_into_lf) {
312 new_stats.lonelf += new_stats.crlf;
315 /* simulate "git checkout" */
316 if (will_convert_lf_to_crlf(len, &new_stats, crlf_action)) {
317 new_stats.crlf += new_stats.lonelf;
318 new_stats.lonelf = 0;
320 check_global_conv_flags_eol(path, crlf_action, &stats, &new_stats, conv_flags);
322 if (!convert_crlf_into_lf)
326 * At this point all of our source analysis is done, and we are sure we
327 * would convert. If we are in dry-run mode, we can give an answer.
332 /* only grow if not in place */
333 if (strbuf_avail(buf) + buf->len < len)
334 strbuf_grow(buf, len - buf->len);
336 if (crlf_action == CRLF_AUTO || crlf_action == CRLF_AUTO_INPUT || crlf_action == CRLF_AUTO_CRLF) {
338 * If we guessed, we already know we rejected a file with
339 * lone CR, and we can strip a CR without looking at what
343 unsigned char c = *src++;
349 unsigned char c = *src++;
350 if (! (c == '\r' && (1 < len && *src == '\n')))
354 strbuf_setlen(buf, dst - buf->buf);
358 static int crlf_to_worktree(const char *path, const char *src, size_t len,
359 struct strbuf *buf, enum crlf_action crlf_action)
361 char *to_free = NULL;
362 struct text_stat stats;
364 if (!len || output_eol(crlf_action) != EOL_CRLF)
367 gather_stats(src, len, &stats);
368 if (!will_convert_lf_to_crlf(len, &stats, crlf_action))
371 /* are we "faking" in place editing ? */
373 to_free = strbuf_detach(buf, NULL);
375 strbuf_grow(buf, len + stats.lonelf);
377 const char *nl = memchr(src, '\n', len);
380 if (nl > src && nl[-1] == '\r') {
381 strbuf_add(buf, src, nl + 1 - src);
383 strbuf_add(buf, src, nl - src);
384 strbuf_addstr(buf, "\r\n");
389 strbuf_add(buf, src, len);
395 struct filter_params {
403 static int filter_buffer_or_fd(int in, int out, void *data)
406 * Spawn cmd and feed the buffer contents through its stdin.
408 struct child_process child_process = CHILD_PROCESS_INIT;
409 struct filter_params *params = (struct filter_params *)data;
410 int write_err, status;
411 const char *argv[] = { NULL, NULL };
413 /* apply % substitution to cmd */
414 struct strbuf cmd = STRBUF_INIT;
415 struct strbuf path = STRBUF_INIT;
416 struct strbuf_expand_dict_entry dict[] = {
421 /* quote the path to preserve spaces, etc. */
422 sq_quote_buf(&path, params->path);
423 dict[0].value = path.buf;
425 /* expand all %f with the quoted path */
426 strbuf_expand(&cmd, params->cmd, strbuf_expand_dict_cb, &dict);
427 strbuf_release(&path);
431 child_process.argv = argv;
432 child_process.use_shell = 1;
433 child_process.in = -1;
434 child_process.out = out;
436 if (start_command(&child_process)) {
437 strbuf_release(&cmd);
438 return error("cannot fork to run external filter '%s'", params->cmd);
441 sigchain_push(SIGPIPE, SIG_IGN);
444 write_err = (write_in_full(child_process.in,
445 params->src, params->size) < 0);
449 write_err = copy_fd(params->fd, child_process.in);
450 if (write_err == COPY_WRITE_ERROR && errno == EPIPE)
454 if (close(child_process.in))
457 error("cannot feed the input to external filter '%s'", params->cmd);
459 sigchain_pop(SIGPIPE);
461 status = finish_command(&child_process);
463 error("external filter '%s' failed %d", params->cmd, status);
465 strbuf_release(&cmd);
466 return (write_err || status);
469 static int apply_single_file_filter(const char *path, const char *src, size_t len, int fd,
470 struct strbuf *dst, const char *cmd)
473 * Create a pipeline to have the command filter the buffer's
476 * (child --> cmd) --> us
479 struct strbuf nbuf = STRBUF_INIT;
481 struct filter_params params;
483 memset(&async, 0, sizeof(async));
484 async.proc = filter_buffer_or_fd;
485 async.data = ¶ms;
494 if (start_async(&async))
495 return 0; /* error was already reported */
497 if (strbuf_read(&nbuf, async.out, len) < 0) {
498 err = error("read from external filter '%s' failed", cmd);
500 if (close(async.out)) {
501 err = error("read from external filter '%s' failed", cmd);
503 if (finish_async(&async)) {
504 err = error("external filter '%s' failed", cmd);
508 strbuf_swap(dst, &nbuf);
510 strbuf_release(&nbuf);
514 #define CAP_CLEAN (1u<<0)
515 #define CAP_SMUDGE (1u<<1)
516 #define CAP_DELAY (1u<<2)
519 struct subprocess_entry subprocess; /* must be the first member! */
520 unsigned int supported_capabilities;
523 static int subprocess_map_initialized;
524 static struct hashmap subprocess_map;
526 static int start_multi_file_filter_fn(struct subprocess_entry *subprocess)
528 static int versions[] = {2, 0};
529 static struct subprocess_capability capabilities[] = {
530 { "clean", CAP_CLEAN },
531 { "smudge", CAP_SMUDGE },
532 { "delay", CAP_DELAY },
535 struct cmd2process *entry = (struct cmd2process *)subprocess;
536 return subprocess_handshake(subprocess, "git-filter", versions, NULL,
538 &entry->supported_capabilities);
541 static void handle_filter_error(const struct strbuf *filter_status,
542 struct cmd2process *entry,
543 const unsigned int wanted_capability) {
544 if (!strcmp(filter_status->buf, "error"))
545 ; /* The filter signaled a problem with the file. */
546 else if (!strcmp(filter_status->buf, "abort") && wanted_capability) {
548 * The filter signaled a permanent problem. Don't try to filter
549 * files with the same command for the lifetime of the current
552 entry->supported_capabilities &= ~wanted_capability;
555 * Something went wrong with the protocol filter.
556 * Force shutdown and restart if another blob requires filtering.
558 error("external filter '%s' failed", entry->subprocess.cmd);
559 subprocess_stop(&subprocess_map, &entry->subprocess);
564 static int apply_multi_file_filter(const char *path, const char *src, size_t len,
565 int fd, struct strbuf *dst, const char *cmd,
566 const unsigned int wanted_capability,
567 struct delayed_checkout *dco)
571 struct cmd2process *entry;
572 struct child_process *process;
573 struct strbuf nbuf = STRBUF_INIT;
574 struct strbuf filter_status = STRBUF_INIT;
575 const char *filter_type;
577 if (!subprocess_map_initialized) {
578 subprocess_map_initialized = 1;
579 hashmap_init(&subprocess_map, cmd2process_cmp, NULL, 0);
582 entry = (struct cmd2process *)subprocess_find_entry(&subprocess_map, cmd);
588 entry = xmalloc(sizeof(*entry));
589 entry->supported_capabilities = 0;
591 if (subprocess_start(&subprocess_map, &entry->subprocess, cmd, start_multi_file_filter_fn)) {
596 process = &entry->subprocess.process;
598 if (!(entry->supported_capabilities & wanted_capability))
601 if (wanted_capability & CAP_CLEAN)
602 filter_type = "clean";
603 else if (wanted_capability & CAP_SMUDGE)
604 filter_type = "smudge";
606 die("unexpected filter type");
608 sigchain_push(SIGPIPE, SIG_IGN);
610 assert(strlen(filter_type) < LARGE_PACKET_DATA_MAX - strlen("command=\n"));
611 err = packet_write_fmt_gently(process->in, "command=%s\n", filter_type);
615 err = strlen(path) > LARGE_PACKET_DATA_MAX - strlen("pathname=\n");
617 error("path name too long for external filter");
621 err = packet_write_fmt_gently(process->in, "pathname=%s\n", path);
625 if ((entry->supported_capabilities & CAP_DELAY) &&
626 dco && dco->state == CE_CAN_DELAY) {
628 err = packet_write_fmt_gently(process->in, "can-delay=1\n");
633 err = packet_flush_gently(process->in);
638 err = write_packetized_from_fd(fd, process->in);
640 err = write_packetized_from_buf(src, len, process->in);
644 err = subprocess_read_status(process->out, &filter_status);
648 if (can_delay && !strcmp(filter_status.buf, "delayed")) {
649 string_list_insert(&dco->filters, cmd);
650 string_list_insert(&dco->paths, path);
652 /* The filter got the blob and wants to send us a response. */
653 err = strcmp(filter_status.buf, "success");
657 err = read_packetized_to_strbuf(process->out, &nbuf) < 0;
661 err = subprocess_read_status(process->out, &filter_status);
665 err = strcmp(filter_status.buf, "success");
669 sigchain_pop(SIGPIPE);
672 handle_filter_error(&filter_status, entry, wanted_capability);
674 strbuf_swap(dst, &nbuf);
675 strbuf_release(&nbuf);
680 int async_query_available_blobs(const char *cmd, struct string_list *available_paths)
684 struct cmd2process *entry;
685 struct child_process *process;
686 struct strbuf filter_status = STRBUF_INIT;
688 assert(subprocess_map_initialized);
689 entry = (struct cmd2process *)subprocess_find_entry(&subprocess_map, cmd);
691 error("external filter '%s' is not available anymore although "
692 "not all paths have been filtered", cmd);
695 process = &entry->subprocess.process;
696 sigchain_push(SIGPIPE, SIG_IGN);
698 err = packet_write_fmt_gently(
699 process->in, "command=list_available_blobs\n");
703 err = packet_flush_gently(process->in);
707 while ((line = packet_read_line(process->out, NULL))) {
709 if (skip_prefix(line, "pathname=", &path))
710 string_list_insert(available_paths, xstrdup(path));
712 ; /* ignore unknown keys */
715 err = subprocess_read_status(process->out, &filter_status);
719 err = strcmp(filter_status.buf, "success");
722 sigchain_pop(SIGPIPE);
725 handle_filter_error(&filter_status, entry, 0);
729 static struct convert_driver {
731 struct convert_driver *next;
736 } *user_convert, **user_convert_tail;
738 static int apply_filter(const char *path, const char *src, size_t len,
739 int fd, struct strbuf *dst, struct convert_driver *drv,
740 const unsigned int wanted_capability,
741 struct delayed_checkout *dco)
743 const char *cmd = NULL;
751 if ((wanted_capability & CAP_CLEAN) && !drv->process && drv->clean)
753 else if ((wanted_capability & CAP_SMUDGE) && !drv->process && drv->smudge)
757 return apply_single_file_filter(path, src, len, fd, dst, cmd);
758 else if (drv->process && *drv->process)
759 return apply_multi_file_filter(path, src, len, fd, dst,
760 drv->process, wanted_capability, dco);
765 static int read_convert_config(const char *var, const char *value, void *cb)
767 const char *key, *name;
769 struct convert_driver *drv;
772 * External conversion drivers are configured using
773 * "filter.<name>.variable".
775 if (parse_config_key(var, "filter", &name, &namelen, &key) < 0 || !name)
777 for (drv = user_convert; drv; drv = drv->next)
778 if (!strncmp(drv->name, name, namelen) && !drv->name[namelen])
781 drv = xcalloc(1, sizeof(struct convert_driver));
782 drv->name = xmemdupz(name, namelen);
783 *user_convert_tail = drv;
784 user_convert_tail = &(drv->next);
788 * filter.<name>.smudge and filter.<name>.clean specifies
793 * The command-line will not be interpolated in any way.
796 if (!strcmp("smudge", key))
797 return git_config_string(&drv->smudge, var, value);
799 if (!strcmp("clean", key))
800 return git_config_string(&drv->clean, var, value);
802 if (!strcmp("process", key))
803 return git_config_string(&drv->process, var, value);
805 if (!strcmp("required", key)) {
806 drv->required = git_config_bool(var, value);
813 static int count_ident(const char *cp, unsigned long size)
816 * "$Id: 0000000000000000000000000000000000000000 $" <=> "$Id$"
828 if (memcmp("Id", cp, 2))
839 * "$Id: ... "; scan up to the closing dollar sign and discard.
855 static int ident_to_git(const char *path, const char *src, size_t len,
856 struct strbuf *buf, int ident)
860 if (!ident || (src && !count_ident(src, len)))
866 /* only grow if not in place */
867 if (strbuf_avail(buf) + buf->len < len)
868 strbuf_grow(buf, len - buf->len);
871 dollar = memchr(src, '$', len);
874 memmove(dst, src, dollar + 1 - src);
875 dst += dollar + 1 - src;
876 len -= dollar + 1 - src;
879 if (len > 3 && !memcmp(src, "Id:", 3)) {
880 dollar = memchr(src + 3, '$', len - 3);
883 if (memchr(src + 3, '\n', dollar - src - 3)) {
884 /* Line break before the next dollar. */
888 memcpy(dst, "Id$", 3);
890 len -= dollar + 1 - src;
894 memmove(dst, src, len);
895 strbuf_setlen(buf, dst + len - buf->buf);
899 static int ident_to_worktree(const char *path, const char *src, size_t len,
900 struct strbuf *buf, int ident)
902 struct object_id oid;
903 char *to_free = NULL, *dollar, *spc;
909 cnt = count_ident(src, len);
913 /* are we "faking" in place editing ? */
915 to_free = strbuf_detach(buf, NULL);
916 hash_object_file(src, len, "blob", &oid);
918 strbuf_grow(buf, len + cnt * (the_hash_algo->hexsz + 3));
920 /* step 1: run to the next '$' */
921 dollar = memchr(src, '$', len);
924 strbuf_add(buf, src, dollar + 1 - src);
925 len -= dollar + 1 - src;
928 /* step 2: does it looks like a bit like Id:xxx$ or Id$ ? */
929 if (len < 3 || memcmp("Id", src, 2))
932 /* step 3: skip over Id$ or Id:xxxxx$ */
936 } else if (src[2] == ':') {
938 * It's possible that an expanded Id has crept its way into the
939 * repository, we cope with that by stripping the expansion out.
940 * This is probably not a good idea, since it will cause changes
941 * on checkout, which won't go away by stash, but let's keep it
944 dollar = memchr(src + 3, '$', len - 3);
946 /* incomplete keyword, no more '$', so just quit the loop */
950 if (memchr(src + 3, '\n', dollar - src - 3)) {
951 /* Line break before the next dollar. */
955 spc = memchr(src + 4, ' ', dollar - src - 4);
956 if (spc && spc < dollar-1) {
957 /* There are spaces in unexpected places.
958 * This is probably an id from some other
959 * versioning system. Keep it for now.
964 len -= dollar + 1 - src;
967 /* it wasn't a "Id$" or "Id:xxxx$" */
971 /* step 4: substitute */
972 strbuf_addstr(buf, "Id: ");
973 strbuf_addstr(buf, oid_to_hex(&oid));
974 strbuf_addstr(buf, " $");
976 strbuf_add(buf, src, len);
982 static enum crlf_action git_path_check_crlf(struct attr_check_item *check)
984 const char *value = check->value;
986 if (ATTR_TRUE(value))
988 else if (ATTR_FALSE(value))
990 else if (ATTR_UNSET(value))
992 else if (!strcmp(value, "input"))
993 return CRLF_TEXT_INPUT;
994 else if (!strcmp(value, "auto"))
996 return CRLF_UNDEFINED;
999 static enum eol git_path_check_eol(struct attr_check_item *check)
1001 const char *value = check->value;
1003 if (ATTR_UNSET(value))
1005 else if (!strcmp(value, "lf"))
1007 else if (!strcmp(value, "crlf"))
1012 static struct convert_driver *git_path_check_convert(struct attr_check_item *check)
1014 const char *value = check->value;
1015 struct convert_driver *drv;
1017 if (ATTR_TRUE(value) || ATTR_FALSE(value) || ATTR_UNSET(value))
1019 for (drv = user_convert; drv; drv = drv->next)
1020 if (!strcmp(value, drv->name))
1025 static int git_path_check_ident(struct attr_check_item *check)
1027 const char *value = check->value;
1029 return !!ATTR_TRUE(value);
1033 struct convert_driver *drv;
1034 enum crlf_action attr_action; /* What attr says */
1035 enum crlf_action crlf_action; /* When no attr is set, use core.autocrlf */
1039 static void convert_attrs(struct conv_attrs *ca, const char *path)
1041 static struct attr_check *check;
1044 check = attr_check_initl("crlf", "ident", "filter",
1045 "eol", "text", NULL);
1046 user_convert_tail = &user_convert;
1047 git_config(read_convert_config, NULL);
1050 if (!git_check_attr(path, check)) {
1051 struct attr_check_item *ccheck = check->items;
1052 ca->crlf_action = git_path_check_crlf(ccheck + 4);
1053 if (ca->crlf_action == CRLF_UNDEFINED)
1054 ca->crlf_action = git_path_check_crlf(ccheck + 0);
1055 ca->ident = git_path_check_ident(ccheck + 1);
1056 ca->drv = git_path_check_convert(ccheck + 2);
1057 if (ca->crlf_action != CRLF_BINARY) {
1058 enum eol eol_attr = git_path_check_eol(ccheck + 3);
1059 if (ca->crlf_action == CRLF_AUTO && eol_attr == EOL_LF)
1060 ca->crlf_action = CRLF_AUTO_INPUT;
1061 else if (ca->crlf_action == CRLF_AUTO && eol_attr == EOL_CRLF)
1062 ca->crlf_action = CRLF_AUTO_CRLF;
1063 else if (eol_attr == EOL_LF)
1064 ca->crlf_action = CRLF_TEXT_INPUT;
1065 else if (eol_attr == EOL_CRLF)
1066 ca->crlf_action = CRLF_TEXT_CRLF;
1070 ca->crlf_action = CRLF_UNDEFINED;
1074 /* Save attr and make a decision for action */
1075 ca->attr_action = ca->crlf_action;
1076 if (ca->crlf_action == CRLF_TEXT)
1077 ca->crlf_action = text_eol_is_crlf() ? CRLF_TEXT_CRLF : CRLF_TEXT_INPUT;
1078 if (ca->crlf_action == CRLF_UNDEFINED && auto_crlf == AUTO_CRLF_FALSE)
1079 ca->crlf_action = CRLF_BINARY;
1080 if (ca->crlf_action == CRLF_UNDEFINED && auto_crlf == AUTO_CRLF_TRUE)
1081 ca->crlf_action = CRLF_AUTO_CRLF;
1082 if (ca->crlf_action == CRLF_UNDEFINED && auto_crlf == AUTO_CRLF_INPUT)
1083 ca->crlf_action = CRLF_AUTO_INPUT;
1086 int would_convert_to_git_filter_fd(const char *path)
1088 struct conv_attrs ca;
1090 convert_attrs(&ca, path);
1095 * Apply a filter to an fd only if the filter is required to succeed.
1096 * We must die if the filter fails, because the original data before
1097 * filtering is not available.
1099 if (!ca.drv->required)
1102 return apply_filter(path, NULL, 0, -1, NULL, ca.drv, CAP_CLEAN, NULL);
1105 const char *get_convert_attr_ascii(const char *path)
1107 struct conv_attrs ca;
1109 convert_attrs(&ca, path);
1110 switch (ca.attr_action) {
1111 case CRLF_UNDEFINED:
1117 case CRLF_TEXT_INPUT:
1118 return "text eol=lf";
1119 case CRLF_TEXT_CRLF:
1120 return "text eol=crlf";
1123 case CRLF_AUTO_CRLF:
1124 return "text=auto eol=crlf";
1125 case CRLF_AUTO_INPUT:
1126 return "text=auto eol=lf";
1131 int convert_to_git(const struct index_state *istate,
1132 const char *path, const char *src, size_t len,
1133 struct strbuf *dst, int conv_flags)
1136 struct conv_attrs ca;
1138 convert_attrs(&ca, path);
1140 ret |= apply_filter(path, src, len, -1, dst, ca.drv, CAP_CLEAN, NULL);
1141 if (!ret && ca.drv && ca.drv->required)
1142 die("%s: clean filter '%s' failed", path, ca.drv->name);
1148 if (!(conv_flags & CONV_EOL_KEEP_CRLF)) {
1149 ret |= crlf_to_git(istate, path, src, len, dst, ca.crlf_action, conv_flags);
1155 return ret | ident_to_git(path, src, len, dst, ca.ident);
1158 void convert_to_git_filter_fd(const struct index_state *istate,
1159 const char *path, int fd, struct strbuf *dst,
1162 struct conv_attrs ca;
1163 convert_attrs(&ca, path);
1166 assert(ca.drv->clean || ca.drv->process);
1168 if (!apply_filter(path, NULL, 0, fd, dst, ca.drv, CAP_CLEAN, NULL))
1169 die("%s: clean filter '%s' failed", path, ca.drv->name);
1171 crlf_to_git(istate, path, dst->buf, dst->len, dst, ca.crlf_action, conv_flags);
1172 ident_to_git(path, dst->buf, dst->len, dst, ca.ident);
1175 static int convert_to_working_tree_internal(const char *path, const char *src,
1176 size_t len, struct strbuf *dst,
1177 int normalizing, struct delayed_checkout *dco)
1179 int ret = 0, ret_filter = 0;
1180 struct conv_attrs ca;
1182 convert_attrs(&ca, path);
1184 ret |= ident_to_worktree(path, src, len, dst, ca.ident);
1190 * CRLF conversion can be skipped if normalizing, unless there
1191 * is a smudge or process filter (even if the process filter doesn't
1192 * support smudge). The filters might expect CRLFs.
1194 if ((ca.drv && (ca.drv->smudge || ca.drv->process)) || !normalizing) {
1195 ret |= crlf_to_worktree(path, src, len, dst, ca.crlf_action);
1202 ret_filter = apply_filter(
1203 path, src, len, -1, dst, ca.drv, CAP_SMUDGE, dco);
1204 if (!ret_filter && ca.drv && ca.drv->required)
1205 die("%s: smudge filter %s failed", path, ca.drv->name);
1207 return ret | ret_filter;
1210 int async_convert_to_working_tree(const char *path, const char *src,
1211 size_t len, struct strbuf *dst,
1214 return convert_to_working_tree_internal(path, src, len, dst, 0, dco);
1217 int convert_to_working_tree(const char *path, const char *src, size_t len, struct strbuf *dst)
1219 return convert_to_working_tree_internal(path, src, len, dst, 0, NULL);
1222 int renormalize_buffer(const struct index_state *istate, const char *path,
1223 const char *src, size_t len, struct strbuf *dst)
1225 int ret = convert_to_working_tree_internal(path, src, len, dst, 1, NULL);
1230 return ret | convert_to_git(istate, path, src, len, dst, CONV_EOL_RENORMALIZE);
1233 /*****************************************************************
1235 * Streaming conversion support
1237 *****************************************************************/
1239 typedef int (*filter_fn)(struct stream_filter *,
1240 const char *input, size_t *isize_p,
1241 char *output, size_t *osize_p);
1242 typedef void (*free_fn)(struct stream_filter *);
1244 struct stream_filter_vtbl {
1249 struct stream_filter {
1250 struct stream_filter_vtbl *vtbl;
1253 static int null_filter_fn(struct stream_filter *filter,
1254 const char *input, size_t *isize_p,
1255 char *output, size_t *osize_p)
1260 return 0; /* we do not keep any states */
1262 if (*osize_p < count)
1265 memmove(output, input, count);
1272 static void null_free_fn(struct stream_filter *filter)
1274 ; /* nothing -- null instances are shared */
1277 static struct stream_filter_vtbl null_vtbl = {
1282 static struct stream_filter null_filter_singleton = {
1286 int is_null_stream_filter(struct stream_filter *filter)
1288 return filter == &null_filter_singleton;
1296 struct lf_to_crlf_filter {
1297 struct stream_filter filter;
1298 unsigned has_held:1;
1302 static int lf_to_crlf_filter_fn(struct stream_filter *filter,
1303 const char *input, size_t *isize_p,
1304 char *output, size_t *osize_p)
1306 size_t count, o = 0;
1307 struct lf_to_crlf_filter *lf_to_crlf = (struct lf_to_crlf_filter *)filter;
1310 * We may be holding onto the CR to see if it is followed by a
1311 * LF, in which case we would need to go to the main loop.
1312 * Otherwise, just emit it to the output stream.
1314 if (lf_to_crlf->has_held && (lf_to_crlf->held != '\r' || !input)) {
1315 output[o++] = lf_to_crlf->held;
1316 lf_to_crlf->has_held = 0;
1319 /* We are told to drain */
1326 if (count || lf_to_crlf->has_held) {
1330 if (lf_to_crlf->has_held) {
1332 lf_to_crlf->has_held = 0;
1335 for (i = 0; o < *osize_p && i < count; i++) {
1340 } else if (was_cr) {
1342 * Previous round saw CR and it is not followed
1343 * by a LF; emit the CR before processing the
1344 * current character.
1350 * We may have consumed the last output slot,
1351 * in which case we need to break out of this
1352 * loop; hold the current character before
1355 if (*osize_p <= o) {
1356 lf_to_crlf->has_held = 1;
1357 lf_to_crlf->held = ch;
1358 continue; /* break but increment i */
1373 if (!lf_to_crlf->has_held && was_cr) {
1374 lf_to_crlf->has_held = 1;
1375 lf_to_crlf->held = '\r';
1381 static void lf_to_crlf_free_fn(struct stream_filter *filter)
1386 static struct stream_filter_vtbl lf_to_crlf_vtbl = {
1387 lf_to_crlf_filter_fn,
1391 static struct stream_filter *lf_to_crlf_filter(void)
1393 struct lf_to_crlf_filter *lf_to_crlf = xcalloc(1, sizeof(*lf_to_crlf));
1395 lf_to_crlf->filter.vtbl = &lf_to_crlf_vtbl;
1396 return (struct stream_filter *)lf_to_crlf;
1402 #define FILTER_BUFFER 1024
1403 struct cascade_filter {
1404 struct stream_filter filter;
1405 struct stream_filter *one;
1406 struct stream_filter *two;
1407 char buf[FILTER_BUFFER];
1411 static int cascade_filter_fn(struct stream_filter *filter,
1412 const char *input, size_t *isize_p,
1413 char *output, size_t *osize_p)
1415 struct cascade_filter *cas = (struct cascade_filter *) filter;
1417 size_t sz = *osize_p;
1418 size_t to_feed, remaining;
1421 * input -- (one) --> buf -- (two) --> output
1423 while (filled < sz) {
1424 remaining = sz - filled;
1426 /* do we already have something to feed two with? */
1427 if (cas->ptr < cas->end) {
1428 to_feed = cas->end - cas->ptr;
1429 if (stream_filter(cas->two,
1430 cas->buf + cas->ptr, &to_feed,
1431 output + filled, &remaining))
1433 cas->ptr += (cas->end - cas->ptr) - to_feed;
1434 filled = sz - remaining;
1438 /* feed one from upstream and have it emit into our buffer */
1439 to_feed = input ? *isize_p : 0;
1440 if (input && !to_feed)
1442 remaining = sizeof(cas->buf);
1443 if (stream_filter(cas->one,
1445 cas->buf, &remaining))
1447 cas->end = sizeof(cas->buf) - remaining;
1450 size_t fed = *isize_p - to_feed;
1455 /* do we know that we drained one completely? */
1456 if (input || cas->end)
1459 /* tell two to drain; we have nothing more to give it */
1461 remaining = sz - filled;
1462 if (stream_filter(cas->two,
1464 output + filled, &remaining))
1466 if (remaining == (sz - filled))
1467 break; /* completely drained two */
1468 filled = sz - remaining;
1474 static void cascade_free_fn(struct stream_filter *filter)
1476 struct cascade_filter *cas = (struct cascade_filter *)filter;
1477 free_stream_filter(cas->one);
1478 free_stream_filter(cas->two);
1482 static struct stream_filter_vtbl cascade_vtbl = {
1487 static struct stream_filter *cascade_filter(struct stream_filter *one,
1488 struct stream_filter *two)
1490 struct cascade_filter *cascade;
1492 if (!one || is_null_stream_filter(one))
1494 if (!two || is_null_stream_filter(two))
1497 cascade = xmalloc(sizeof(*cascade));
1500 cascade->end = cascade->ptr = 0;
1501 cascade->filter.vtbl = &cascade_vtbl;
1502 return (struct stream_filter *)cascade;
1508 #define IDENT_DRAINING (-1)
1509 #define IDENT_SKIPPING (-2)
1510 struct ident_filter {
1511 struct stream_filter filter;
1514 char ident[GIT_MAX_HEXSZ + 5]; /* ": x40 $" */
1517 static int is_foreign_ident(const char *str)
1521 if (!skip_prefix(str, "$Id: ", &str))
1523 for (i = 0; str[i]; i++) {
1524 if (isspace(str[i]) && str[i+1] != '$')
1530 static void ident_drain(struct ident_filter *ident, char **output_p, size_t *osize_p)
1532 size_t to_drain = ident->left.len;
1534 if (*osize_p < to_drain)
1535 to_drain = *osize_p;
1537 memcpy(*output_p, ident->left.buf, to_drain);
1538 strbuf_remove(&ident->left, 0, to_drain);
1539 *output_p += to_drain;
1540 *osize_p -= to_drain;
1542 if (!ident->left.len)
1546 static int ident_filter_fn(struct stream_filter *filter,
1547 const char *input, size_t *isize_p,
1548 char *output, size_t *osize_p)
1550 struct ident_filter *ident = (struct ident_filter *)filter;
1551 static const char head[] = "$Id";
1554 /* drain upon eof */
1555 switch (ident->state) {
1557 strbuf_add(&ident->left, head, ident->state);
1559 case IDENT_SKIPPING:
1561 case IDENT_DRAINING:
1562 ident_drain(ident, &output, osize_p);
1567 while (*isize_p || (ident->state == IDENT_DRAINING)) {
1570 if (ident->state == IDENT_DRAINING) {
1571 ident_drain(ident, &output, osize_p);
1580 if (ident->state == IDENT_SKIPPING) {
1582 * Skipping until '$' or LF, but keeping them
1583 * in case it is a foreign ident.
1585 strbuf_addch(&ident->left, ch);
1586 if (ch != '\n' && ch != '$')
1588 if (ch == '$' && !is_foreign_ident(ident->left.buf)) {
1589 strbuf_setlen(&ident->left, sizeof(head) - 1);
1590 strbuf_addstr(&ident->left, ident->ident);
1592 ident->state = IDENT_DRAINING;
1596 if (ident->state < sizeof(head) &&
1597 head[ident->state] == ch) {
1603 strbuf_add(&ident->left, head, ident->state);
1604 if (ident->state == sizeof(head) - 1) {
1605 if (ch != ':' && ch != '$') {
1606 strbuf_addch(&ident->left, ch);
1612 strbuf_addch(&ident->left, ch);
1613 ident->state = IDENT_SKIPPING;
1615 strbuf_addstr(&ident->left, ident->ident);
1616 ident->state = IDENT_DRAINING;
1621 strbuf_addch(&ident->left, ch);
1622 ident->state = IDENT_DRAINING;
1627 static void ident_free_fn(struct stream_filter *filter)
1629 struct ident_filter *ident = (struct ident_filter *)filter;
1630 strbuf_release(&ident->left);
1634 static struct stream_filter_vtbl ident_vtbl = {
1639 static struct stream_filter *ident_filter(const struct object_id *oid)
1641 struct ident_filter *ident = xmalloc(sizeof(*ident));
1643 xsnprintf(ident->ident, sizeof(ident->ident),
1644 ": %s $", oid_to_hex(oid));
1645 strbuf_init(&ident->left, 0);
1646 ident->filter.vtbl = &ident_vtbl;
1648 return (struct stream_filter *)ident;
1652 * Return an appropriately constructed filter for the path, or NULL if
1653 * the contents cannot be filtered without reading the whole thing
1656 * Note that you would be crazy to set CRLF, smuge/clean or ident to a
1657 * large binary blob you would want us not to slurp into the memory!
1659 struct stream_filter *get_stream_filter(const char *path, const struct object_id *oid)
1661 struct conv_attrs ca;
1662 struct stream_filter *filter = NULL;
1664 convert_attrs(&ca, path);
1665 if (ca.drv && (ca.drv->process || ca.drv->smudge || ca.drv->clean))
1668 if (ca.crlf_action == CRLF_AUTO || ca.crlf_action == CRLF_AUTO_CRLF)
1672 filter = ident_filter(oid);
1674 if (output_eol(ca.crlf_action) == EOL_CRLF)
1675 filter = cascade_filter(filter, lf_to_crlf_filter());
1677 filter = cascade_filter(filter, &null_filter_singleton);
1682 void free_stream_filter(struct stream_filter *filter)
1684 filter->vtbl->free(filter);
1687 int stream_filter(struct stream_filter *filter,
1688 const char *input, size_t *isize_p,
1689 char *output, size_t *osize_p)
1691 return filter->vtbl->filter(filter, input, isize_p, output, osize_p);