blob: eb77c6e77cebf517c989cb0a072e9ead77fd6350 [file] [log] [blame]
Junio C Hamano7c1c6782007-04-27 00:41:15 -07001#include "cache.h"
Johannes Schindelinc455c872008-07-21 19:03:49 +01002#include "string-list.h"
Alex Riesenfe5d30b2007-05-01 00:31:52 +02003#include "mailmap.h"
Stefan Bellercbd53a22018-05-15 16:42:15 -07004#include "object-store.h"
Junio C Hamano7c1c6782007-04-27 00:41:15 -07005
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +01006#define DEBUG_MAILMAP 0
7#if DEBUG_MAILMAP
8#define debug_mm(...) fprintf(stderr, __VA_ARGS__)
Eric Sunshinefbfba7a2013-07-15 02:54:12 -04009#define debug_str(X) ((X) ? (X) : "(none)")
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +010010#else
11static inline void debug_mm(const char *format, ...) {}
Eric Sunshinefbfba7a2013-07-15 02:54:12 -040012static inline const char *debug_str(const char *s) { return s; }
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +010013#endif
14
Marius Storm-Olsend551a482009-02-08 15:34:27 +010015const char *git_mailmap_file;
Jeff King08610902012-12-12 06:04:04 -050016const char *git_mailmap_blob;
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +010017
18struct mailmap_info {
19 char *name;
20 char *email;
21};
22
23struct mailmap_entry {
24 /* name and email for the simple mail-only case */
25 char *name;
26 char *email;
27
28 /* name and email for the complex mail and name matching case */
29 struct string_list namemap;
30};
31
32static void free_mailmap_info(void *p, const char *s)
33{
34 struct mailmap_info *mi = (struct mailmap_info *)p;
Junio C Hamanobd237942013-07-15 02:54:13 -040035 debug_mm("mailmap: -- complex: '%s' -> '%s' <%s>\n",
36 s, debug_str(mi->name), debug_str(mi->email));
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +010037 free(mi->name);
38 free(mi->email);
39}
40
41static void free_mailmap_entry(void *p, const char *s)
42{
43 struct mailmap_entry *me = (struct mailmap_entry *)p;
Junio C Hamanobd237942013-07-15 02:54:13 -040044 debug_mm("mailmap: removing entries for <%s>, with %d sub-entries\n",
45 s, me->namemap.nr);
46 debug_mm("mailmap: - simple: '%s' <%s>\n",
47 debug_str(me->name), debug_str(me->email));
Eric Sunshinefbfba7a2013-07-15 02:54:12 -040048
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +010049 free(me->name);
50 free(me->email);
51
52 me->namemap.strdup_strings = 1;
53 string_list_clear_func(&me->namemap, free_mailmap_info);
54}
55
Junio C Hamanode2f95e2013-09-12 08:37:08 -070056/*
57 * On some systems (e.g. MinGW 4.0), string.h has _only_ inline
58 * definition of strcasecmp and no non-inline implementation is
59 * supplied anywhere, which is, eh, "unusual"; we cannot take an
60 * address of such a function to store it in namemap.cmp. This is
61 * here as a workaround---do not assign strcasecmp directly to
62 * namemap.cmp until we know no systems that matter have such an
63 * "unusual" string.h.
64 */
65static int namemap_cmp(const char *a, const char *b)
66{
67 return strcasecmp(a, b);
68}
69
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +010070static void add_mapping(struct string_list *map,
Junio C Hamanobd237942013-07-15 02:54:13 -040071 char *new_name, char *new_email,
72 char *old_name, char *old_email)
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +010073{
74 struct mailmap_entry *me;
Stefan Beller63226212014-11-24 19:44:14 -080075 struct string_list_item *item;
Johannes Schindelinbf637802009-03-31 02:18:36 +020076
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +010077 if (old_email == NULL) {
78 old_email = new_email;
79 new_email = NULL;
80 }
81
Stefan Beller63226212014-11-24 19:44:14 -080082 item = string_list_insert(map, old_email);
83 if (item->util) {
84 me = (struct mailmap_entry *)item->util;
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +010085 } else {
Junio C Hamano97e751b2013-07-15 02:54:08 -040086 me = xcalloc(1, sizeof(struct mailmap_entry));
87 me->namemap.strdup_strings = 1;
Junio C Hamanode2f95e2013-09-12 08:37:08 -070088 me->namemap.cmp = namemap_cmp;
Junio C Hamano97e751b2013-07-15 02:54:08 -040089 item->util = me;
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +010090 }
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +010091
92 if (old_name == NULL) {
Stefan Beller63226212014-11-24 19:44:14 -080093 debug_mm("mailmap: adding (simple) entry for '%s'\n", old_email);
94
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +010095 /* Replace current name and new email for simple entry */
Jim Meyeringd8d2eb72010-10-11 17:41:16 +020096 if (new_name) {
97 free(me->name);
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +010098 me->name = xstrdup(new_name);
Jim Meyeringd8d2eb72010-10-11 17:41:16 +020099 }
100 if (new_email) {
101 free(me->email);
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +0100102 me->email = xstrdup(new_email);
Jim Meyeringd8d2eb72010-10-11 17:41:16 +0200103 }
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +0100104 } else {
Marc-André Lureau74b531f2011-11-17 02:25:06 +0100105 struct mailmap_info *mi = xcalloc(1, sizeof(struct mailmap_info));
Stefan Beller63226212014-11-24 19:44:14 -0800106 debug_mm("mailmap: adding (complex) entry for '%s'\n", old_email);
Junio C Hamano13092a92016-10-12 11:20:23 -0700107 mi->name = xstrdup_or_null(new_name);
108 mi->email = xstrdup_or_null(new_email);
Julian Phillips78a395d2010-06-26 00:41:35 +0100109 string_list_insert(&me->namemap, old_name)->util = mi;
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +0100110 }
111
112 debug_mm("mailmap: '%s' <%s> -> '%s' <%s>\n",
Junio C Hamanobd237942013-07-15 02:54:13 -0400113 debug_str(old_name), old_email,
114 debug_str(new_name), debug_str(new_email));
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +0100115}
116
Björn Steinbrink5288dd52009-03-31 17:30:39 +0200117static char *parse_name_and_email(char *buffer, char **name,
Junio C Hamanobd237942013-07-15 02:54:13 -0400118 char **email, int allow_empty_email)
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +0100119{
120 char *left, *right, *nstart, *nend;
Linus Torvalds2af202b2009-06-18 10:28:43 -0700121 *name = *email = NULL;
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +0100122
123 if ((left = strchr(buffer, '<')) == NULL)
124 return NULL;
125 if ((right = strchr(left+1, '>')) == NULL)
126 return NULL;
Björn Steinbrink5288dd52009-03-31 17:30:39 +0200127 if (!allow_empty_email && (left+1 == right))
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +0100128 return NULL;
129
130 /* remove whitespace from beginning and end of name */
131 nstart = buffer;
132 while (isspace(*nstart) && nstart < left)
133 ++nstart;
134 nend = left-1;
Romain Francoise3174bc52012-10-28 00:49:55 +0200135 while (nend > nstart && isspace(*nend))
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +0100136 --nend;
137
Junio C Hamano8c381152013-07-15 02:54:06 -0400138 *name = (nstart <= nend ? nstart : NULL);
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +0100139 *email = left+1;
140 *(nend+1) = '\0';
141 *right++ = '\0';
142
143 return (*right == '\0' ? NULL : right);
144}
145
Ævar Arnfjörð Bjarmason4e168332021-01-12 21:18:06 +0100146static void read_mailmap_line(struct string_list *map, char *buffer)
Jeff King7c8ce302012-12-12 05:59:45 -0500147{
148 char *name1 = NULL, *email1 = NULL, *name2 = NULL, *email2 = NULL;
Jeff King7c8ce302012-12-12 05:59:45 -0500149
Ævar Arnfjörð Bjarmason4e168332021-01-12 21:18:06 +0100150 if (buffer[0] == '#')
Jeff King7c8ce302012-12-12 05:59:45 -0500151 return;
Ævar Arnfjörð Bjarmason4e168332021-01-12 21:18:06 +0100152
Jeff King7c8ce302012-12-12 05:59:45 -0500153 if ((name2 = parse_name_and_email(buffer, &name1, &email1, 0)) != NULL)
154 parse_name_and_email(name2, &name2, &email2, 1);
155
156 if (email1)
157 add_mapping(map, name1, email1, name2, email2);
158}
159
Ævar Arnfjörð Bjarmason4e168332021-01-12 21:18:06 +0100160static int read_mailmap_file(struct string_list *map, const char *filename)
Junio C Hamano7c1c6782007-04-27 00:41:15 -0700161{
162 char buffer[1024];
Jeff King938a60d2012-12-12 06:18:02 -0500163 FILE *f;
Junio C Hamano7c1c6782007-04-27 00:41:15 -0700164
Jeff King938a60d2012-12-12 06:18:02 -0500165 if (!filename)
166 return 0;
167
168 f = fopen(filename, "r");
169 if (!f) {
170 if (errno == ENOENT)
171 return 0;
Nguyễn Thái Ngọc Duy60901e42016-05-08 16:47:50 +0700172 return error_errno("unable to open mailmap at %s", filename);
Jeff King938a60d2012-12-12 06:18:02 -0500173 }
174
Jeff King7c8ce302012-12-12 05:59:45 -0500175 while (fgets(buffer, sizeof(buffer), f) != NULL)
Ævar Arnfjörð Bjarmason4e168332021-01-12 21:18:06 +0100176 read_mailmap_line(map, buffer);
Junio C Hamano7c1c6782007-04-27 00:41:15 -0700177 fclose(f);
178 return 0;
179}
180
Ævar Arnfjörð Bjarmason4e168332021-01-12 21:18:06 +0100181static void read_mailmap_string(struct string_list *map, char *buf)
Jeff King08610902012-12-12 06:04:04 -0500182{
Jeff Kingf972a162013-08-27 21:41:39 -0400183 while (*buf) {
184 char *end = strchrnul(buf, '\n');
Jeff King08610902012-12-12 06:04:04 -0500185
Jeff Kingf972a162013-08-27 21:41:39 -0400186 if (*end)
187 *end++ = '\0';
Jeff King08610902012-12-12 06:04:04 -0500188
Ævar Arnfjörð Bjarmason4e168332021-01-12 21:18:06 +0100189 read_mailmap_line(map, buf);
Jeff Kingf972a162013-08-27 21:41:39 -0400190 buf = end;
Jeff King08610902012-12-12 06:04:04 -0500191 }
192}
193
Ævar Arnfjörð Bjarmason4e168332021-01-12 21:18:06 +0100194static int read_mailmap_blob(struct string_list *map, const char *name)
Jeff King08610902012-12-12 06:04:04 -0500195{
brian m. carlson15be4a52017-07-13 23:49:27 +0000196 struct object_id oid;
Jeff King08610902012-12-12 06:04:04 -0500197 char *buf;
198 unsigned long size;
199 enum object_type type;
200
201 if (!name)
Jeff King938a60d2012-12-12 06:18:02 -0500202 return 0;
brian m. carlson15be4a52017-07-13 23:49:27 +0000203 if (get_oid(name, &oid) < 0)
Jeff King938a60d2012-12-12 06:18:02 -0500204 return 0;
Jeff King08610902012-12-12 06:04:04 -0500205
brian m. carlsonb4f5aca2018-03-12 02:27:53 +0000206 buf = read_object_file(&oid, &type, &size);
Jeff King08610902012-12-12 06:04:04 -0500207 if (!buf)
Jeff King938a60d2012-12-12 06:18:02 -0500208 return error("unable to read mailmap object at %s", name);
Jeff King08610902012-12-12 06:04:04 -0500209 if (type != OBJ_BLOB)
Jeff King938a60d2012-12-12 06:18:02 -0500210 return error("mailmap is not a blob: %s", name);
Jeff King08610902012-12-12 06:04:04 -0500211
Ævar Arnfjörð Bjarmason4e168332021-01-12 21:18:06 +0100212 read_mailmap_string(map, buf);
Jeff King08610902012-12-12 06:04:04 -0500213
214 free(buf);
215 return 0;
216}
217
Ævar Arnfjörð Bjarmason4e168332021-01-12 21:18:06 +0100218int read_mailmap(struct string_list *map)
Marius Storm-Olsend551a482009-02-08 15:34:27 +0100219{
Jeff King938a60d2012-12-12 06:18:02 -0500220 int err = 0;
Jeff King8c473ce2012-12-13 08:04:47 -0500221
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +0100222 map->strdup_strings = 1;
Junio C Hamanode2f95e2013-09-12 08:37:08 -0700223 map->cmp = namemap_cmp;
Jeff King8c473ce2012-12-13 08:04:47 -0500224
225 if (!git_mailmap_blob && is_bare_repository())
226 git_mailmap_blob = "HEAD:.mailmap";
227
Ævar Arnfjörð Bjarmason4e168332021-01-12 21:18:06 +0100228 err |= read_mailmap_file(map, ".mailmap");
Jeff King5735dc52016-03-05 17:13:29 -0500229 if (startup_info->have_repository)
Ævar Arnfjörð Bjarmason4e168332021-01-12 21:18:06 +0100230 err |= read_mailmap_blob(map, git_mailmap_blob);
231 err |= read_mailmap_file(map, git_mailmap_file);
Jeff King938a60d2012-12-12 06:18:02 -0500232 return err;
Marius Storm-Olsend551a482009-02-08 15:34:27 +0100233}
234
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +0100235void clear_mailmap(struct string_list *map)
236{
237 debug_mm("mailmap: clearing %d entries...\n", map->nr);
238 map->strdup_strings = 1;
239 string_list_clear_func(map, free_mailmap_entry);
240 debug_mm("mailmap: cleared\n");
241}
242
Junio C Hamano388c7f82013-01-05 22:26:39 +0100243/*
244 * Look for an entry in map that match string[0:len]; string[len]
245 * does not have to be NUL (but it could be).
246 */
247static struct string_list_item *lookup_prefix(struct string_list *map,
248 const char *string, size_t len)
Junio C Hamano7c1c6782007-04-27 00:41:15 -0700249{
Junio C Hamano388c7f82013-01-05 22:26:39 +0100250 int i = string_list_find_insert_index(map, string, 1);
251 if (i < 0) {
252 /* exact match */
253 i = -1 - i;
254 if (!string[len])
255 return &map->items[i];
256 /*
257 * that map entry matches exactly to the string, including
258 * the cruft at the end beyond "len". That is not a match
259 * with string[0:len] that we are looking for.
260 */
261 } else if (!string[len]) {
262 /*
263 * asked with the whole string, and got nothing. No
264 * matching entry can exist in the map.
265 */
266 return NULL;
267 }
268
269 /*
270 * i is at the exact match to an overlong key, or location the
271 * overlong key would be inserted, which must come after the
272 * real location of the key if one exists.
273 */
274 while (0 <= --i && i < map->nr) {
275 int cmp = strncasecmp(map->items[i].string, string, len);
276 if (cmp < 0)
277 /*
278 * "i" points at a key definitely below the prefix;
279 * the map does not have string[0:len] in it.
280 */
281 break;
282 else if (!cmp && !map->items[i].string[len])
283 /* found it */
284 return &map->items[i];
285 /*
286 * otherwise, the string at "i" may be string[0:len]
287 * followed by a string that sorts later than string[len:];
288 * keep trying.
289 */
290 }
291 return NULL;
292}
293
Junio C Hamano7c1c6782007-04-27 00:41:15 -0700294int map_user(struct string_list *map,
Junio C Hamanobd237942013-07-15 02:54:13 -0400295 const char **email, size_t *emaillen,
296 const char **name, size_t *namelen)
Junio C Hamano7c1c6782007-04-27 00:41:15 -0700297{
Junio C Hamano7c1c6782007-04-27 00:41:15 -0700298 struct string_list_item *item;
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +0100299 struct mailmap_entry *me;
Junio C Hamano7c1c6782007-04-27 00:41:15 -0700300
Antoine Pelisseea02ffa2013-01-05 22:26:40 +0100301 debug_mm("map_user: map '%.*s' <%.*s>\n",
Junio C Hamanobd237942013-07-15 02:54:13 -0400302 (int)*namelen, debug_str(*name),
303 (int)*emaillen, debug_str(*email));
Junio C Hamano7c1c6782007-04-27 00:41:15 -0700304
Antoine Pelisseea02ffa2013-01-05 22:26:40 +0100305 item = lookup_prefix(map, *email, *emaillen);
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +0100306 if (item != NULL) {
307 me = (struct mailmap_entry *)item->util;
308 if (me->namemap.nr) {
Junio C Hamanobd237942013-07-15 02:54:13 -0400309 /*
310 * The item has multiple items, so we'll look up on
311 * name too. If the name is not found, we choose the
312 * simple entry.
313 */
Antoine Pelisseea02ffa2013-01-05 22:26:40 +0100314 struct string_list_item *subitem;
315 subitem = lookup_prefix(&me->namemap, *name, *namelen);
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +0100316 if (subitem)
317 item = subitem;
318 }
319 }
Junio C Hamano7c1c6782007-04-27 00:41:15 -0700320 if (item != NULL) {
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +0100321 struct mailmap_info *mi = (struct mailmap_info *)item->util;
Antoine Pelisseea02ffa2013-01-05 22:26:40 +0100322 if (mi->name == NULL && mi->email == NULL) {
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +0100323 debug_mm("map_user: -- (no simple mapping)\n");
324 return 0;
325 }
Antoine Pelisseea02ffa2013-01-05 22:26:40 +0100326 if (mi->email) {
327 *email = mi->email;
328 *emaillen = strlen(*email);
329 }
330 if (mi->name) {
331 *name = mi->name;
332 *namelen = strlen(*name);
333 }
Junio C Hamanobd237942013-07-15 02:54:13 -0400334 debug_mm("map_user: to '%.*s' <%.*s>\n",
335 (int)*namelen, debug_str(*name),
336 (int)*emaillen, debug_str(*email));
Junio C Hamano7c1c6782007-04-27 00:41:15 -0700337 return 1;
338 }
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +0100339 debug_mm("map_user: --\n");
Junio C Hamano7c1c6782007-04-27 00:41:15 -0700340 return 0;
341}