blob: cb921b4db676e3db918ee16f419cd2b78e0bf57e [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"
Junio C Hamano7c1c6782007-04-27 00:41:15 -07004
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +01005#define DEBUG_MAILMAP 0
6#if DEBUG_MAILMAP
7#define debug_mm(...) fprintf(stderr, __VA_ARGS__)
Eric Sunshinefbfba7a2013-07-15 02:54:12 -04008#define debug_str(X) ((X) ? (X) : "(none)")
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +01009#else
10static inline void debug_mm(const char *format, ...) {}
Eric Sunshinefbfba7a2013-07-15 02:54:12 -040011static inline const char *debug_str(const char *s) { return s; }
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +010012#endif
13
Marius Storm-Olsend551a482009-02-08 15:34:27 +010014const char *git_mailmap_file;
Jeff King08610902012-12-12 06:04:04 -050015const char *git_mailmap_blob;
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +010016
17struct mailmap_info {
18 char *name;
19 char *email;
20};
21
22struct mailmap_entry {
23 /* name and email for the simple mail-only case */
24 char *name;
25 char *email;
26
27 /* name and email for the complex mail and name matching case */
28 struct string_list namemap;
29};
30
31static void free_mailmap_info(void *p, const char *s)
32{
33 struct mailmap_info *mi = (struct mailmap_info *)p;
Junio C Hamanobd237942013-07-15 02:54:13 -040034 debug_mm("mailmap: -- complex: '%s' -> '%s' <%s>\n",
35 s, debug_str(mi->name), debug_str(mi->email));
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +010036 free(mi->name);
37 free(mi->email);
38}
39
40static void free_mailmap_entry(void *p, const char *s)
41{
42 struct mailmap_entry *me = (struct mailmap_entry *)p;
Junio C Hamanobd237942013-07-15 02:54:13 -040043 debug_mm("mailmap: removing entries for <%s>, with %d sub-entries\n",
44 s, me->namemap.nr);
45 debug_mm("mailmap: - simple: '%s' <%s>\n",
46 debug_str(me->name), debug_str(me->email));
Eric Sunshinefbfba7a2013-07-15 02:54:12 -040047
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +010048 free(me->name);
49 free(me->email);
50
51 me->namemap.strdup_strings = 1;
52 string_list_clear_func(&me->namemap, free_mailmap_info);
53}
54
Junio C Hamanode2f95e2013-09-12 08:37:08 -070055/*
56 * On some systems (e.g. MinGW 4.0), string.h has _only_ inline
57 * definition of strcasecmp and no non-inline implementation is
58 * supplied anywhere, which is, eh, "unusual"; we cannot take an
59 * address of such a function to store it in namemap.cmp. This is
60 * here as a workaround---do not assign strcasecmp directly to
61 * namemap.cmp until we know no systems that matter have such an
62 * "unusual" string.h.
63 */
64static int namemap_cmp(const char *a, const char *b)
65{
66 return strcasecmp(a, b);
67}
68
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +010069static void add_mapping(struct string_list *map,
Junio C Hamanobd237942013-07-15 02:54:13 -040070 char *new_name, char *new_email,
71 char *old_name, char *old_email)
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +010072{
73 struct mailmap_entry *me;
Stefan Beller63226212014-11-24 19:44:14 -080074 struct string_list_item *item;
Johannes Schindelinbf637802009-03-31 02:18:36 +020075
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +010076 if (old_email == NULL) {
77 old_email = new_email;
78 new_email = NULL;
79 }
80
Stefan Beller63226212014-11-24 19:44:14 -080081 item = string_list_insert(map, old_email);
82 if (item->util) {
83 me = (struct mailmap_entry *)item->util;
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +010084 } else {
Junio C Hamano97e751b2013-07-15 02:54:08 -040085 me = xcalloc(1, sizeof(struct mailmap_entry));
86 me->namemap.strdup_strings = 1;
Junio C Hamanode2f95e2013-09-12 08:37:08 -070087 me->namemap.cmp = namemap_cmp;
Junio C Hamano97e751b2013-07-15 02:54:08 -040088 item->util = me;
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +010089 }
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +010090
91 if (old_name == NULL) {
Stefan Beller63226212014-11-24 19:44:14 -080092 debug_mm("mailmap: adding (simple) entry for '%s'\n", old_email);
93
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +010094 /* Replace current name and new email for simple entry */
Jim Meyeringd8d2eb72010-10-11 17:41:16 +020095 if (new_name) {
96 free(me->name);
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +010097 me->name = xstrdup(new_name);
Jim Meyeringd8d2eb72010-10-11 17:41:16 +020098 }
99 if (new_email) {
100 free(me->email);
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +0100101 me->email = xstrdup(new_email);
Jim Meyeringd8d2eb72010-10-11 17:41:16 +0200102 }
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +0100103 } else {
Marc-André Lureau74b531f2011-11-17 02:25:06 +0100104 struct mailmap_info *mi = xcalloc(1, sizeof(struct mailmap_info));
Stefan Beller63226212014-11-24 19:44:14 -0800105 debug_mm("mailmap: adding (complex) entry for '%s'\n", old_email);
Junio C Hamano13092a92016-10-12 11:20:23 -0700106 mi->name = xstrdup_or_null(new_name);
107 mi->email = xstrdup_or_null(new_email);
Julian Phillips78a395d2010-06-26 00:41:35 +0100108 string_list_insert(&me->namemap, old_name)->util = mi;
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +0100109 }
110
111 debug_mm("mailmap: '%s' <%s> -> '%s' <%s>\n",
Junio C Hamanobd237942013-07-15 02:54:13 -0400112 debug_str(old_name), old_email,
113 debug_str(new_name), debug_str(new_email));
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +0100114}
115
Björn Steinbrink5288dd52009-03-31 17:30:39 +0200116static char *parse_name_and_email(char *buffer, char **name,
Junio C Hamanobd237942013-07-15 02:54:13 -0400117 char **email, int allow_empty_email)
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +0100118{
119 char *left, *right, *nstart, *nend;
Linus Torvalds2af202b2009-06-18 10:28:43 -0700120 *name = *email = NULL;
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +0100121
122 if ((left = strchr(buffer, '<')) == NULL)
123 return NULL;
124 if ((right = strchr(left+1, '>')) == NULL)
125 return NULL;
Björn Steinbrink5288dd52009-03-31 17:30:39 +0200126 if (!allow_empty_email && (left+1 == right))
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +0100127 return NULL;
128
129 /* remove whitespace from beginning and end of name */
130 nstart = buffer;
131 while (isspace(*nstart) && nstart < left)
132 ++nstart;
133 nend = left-1;
Romain Francoise3174bc52012-10-28 00:49:55 +0200134 while (nend > nstart && isspace(*nend))
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +0100135 --nend;
136
Junio C Hamano8c381152013-07-15 02:54:06 -0400137 *name = (nstart <= nend ? nstart : NULL);
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +0100138 *email = left+1;
139 *(nend+1) = '\0';
140 *right++ = '\0';
141
142 return (*right == '\0' ? NULL : right);
143}
144
Jeff King7c8ce302012-12-12 05:59:45 -0500145static void read_mailmap_line(struct string_list *map, char *buffer,
146 char **repo_abbrev)
147{
148 char *name1 = NULL, *email1 = NULL, *name2 = NULL, *email2 = NULL;
149 if (buffer[0] == '#') {
150 static const char abbrev[] = "# repo-abbrev:";
151 int abblen = sizeof(abbrev) - 1;
152 int len = strlen(buffer);
153
154 if (!repo_abbrev)
155 return;
156
157 if (len && buffer[len - 1] == '\n')
158 buffer[--len] = 0;
159 if (!strncmp(buffer, abbrev, abblen)) {
160 char *cp;
161
Stefan Bellerc9ba31f2013-08-20 16:18:00 +0200162 free(*repo_abbrev);
Jeff King7c8ce302012-12-12 05:59:45 -0500163
164 for (cp = buffer + abblen; isspace(*cp); cp++)
165 ; /* nothing */
Jeff Kingc9786102015-09-24 17:07:16 -0400166 *repo_abbrev = xstrdup(cp);
Jeff King7c8ce302012-12-12 05:59:45 -0500167 }
168 return;
169 }
170 if ((name2 = parse_name_and_email(buffer, &name1, &email1, 0)) != NULL)
171 parse_name_and_email(name2, &name2, &email2, 1);
172
173 if (email1)
174 add_mapping(map, name1, email1, name2, email2);
175}
176
177static int read_mailmap_file(struct string_list *map, const char *filename,
178 char **repo_abbrev)
Junio C Hamano7c1c6782007-04-27 00:41:15 -0700179{
180 char buffer[1024];
Jeff King938a60d2012-12-12 06:18:02 -0500181 FILE *f;
Junio C Hamano7c1c6782007-04-27 00:41:15 -0700182
Jeff King938a60d2012-12-12 06:18:02 -0500183 if (!filename)
184 return 0;
185
186 f = fopen(filename, "r");
187 if (!f) {
188 if (errno == ENOENT)
189 return 0;
Nguyễn Thái Ngọc Duy60901e42016-05-08 16:47:50 +0700190 return error_errno("unable to open mailmap at %s", filename);
Jeff King938a60d2012-12-12 06:18:02 -0500191 }
192
Jeff King7c8ce302012-12-12 05:59:45 -0500193 while (fgets(buffer, sizeof(buffer), f) != NULL)
194 read_mailmap_line(map, buffer, repo_abbrev);
Junio C Hamano7c1c6782007-04-27 00:41:15 -0700195 fclose(f);
196 return 0;
197}
198
Jeff Kingf972a162013-08-27 21:41:39 -0400199static void read_mailmap_string(struct string_list *map, char *buf,
200 char **repo_abbrev)
Jeff King08610902012-12-12 06:04:04 -0500201{
Jeff Kingf972a162013-08-27 21:41:39 -0400202 while (*buf) {
203 char *end = strchrnul(buf, '\n');
Jeff King08610902012-12-12 06:04:04 -0500204
Jeff Kingf972a162013-08-27 21:41:39 -0400205 if (*end)
206 *end++ = '\0';
Jeff King08610902012-12-12 06:04:04 -0500207
Jeff Kingf972a162013-08-27 21:41:39 -0400208 read_mailmap_line(map, buf, repo_abbrev);
209 buf = end;
Jeff King08610902012-12-12 06:04:04 -0500210 }
211}
212
213static int read_mailmap_blob(struct string_list *map,
214 const char *name,
215 char **repo_abbrev)
216{
brian m. carlson15be4a52017-07-13 23:49:27 +0000217 struct object_id oid;
Jeff King08610902012-12-12 06:04:04 -0500218 char *buf;
219 unsigned long size;
220 enum object_type type;
221
222 if (!name)
Jeff King938a60d2012-12-12 06:18:02 -0500223 return 0;
brian m. carlson15be4a52017-07-13 23:49:27 +0000224 if (get_oid(name, &oid) < 0)
Jeff King938a60d2012-12-12 06:18:02 -0500225 return 0;
Jeff King08610902012-12-12 06:04:04 -0500226
brian m. carlson15be4a52017-07-13 23:49:27 +0000227 buf = read_sha1_file(oid.hash, &type, &size);
Jeff King08610902012-12-12 06:04:04 -0500228 if (!buf)
Jeff King938a60d2012-12-12 06:18:02 -0500229 return error("unable to read mailmap object at %s", name);
Jeff King08610902012-12-12 06:04:04 -0500230 if (type != OBJ_BLOB)
Jeff King938a60d2012-12-12 06:18:02 -0500231 return error("mailmap is not a blob: %s", name);
Jeff King08610902012-12-12 06:04:04 -0500232
Jeff Kingf972a162013-08-27 21:41:39 -0400233 read_mailmap_string(map, buf, repo_abbrev);
Jeff King08610902012-12-12 06:04:04 -0500234
235 free(buf);
236 return 0;
237}
238
Marius Storm-Olsend551a482009-02-08 15:34:27 +0100239int read_mailmap(struct string_list *map, char **repo_abbrev)
240{
Jeff King938a60d2012-12-12 06:18:02 -0500241 int err = 0;
Jeff King8c473ce2012-12-13 08:04:47 -0500242
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +0100243 map->strdup_strings = 1;
Junio C Hamanode2f95e2013-09-12 08:37:08 -0700244 map->cmp = namemap_cmp;
Jeff King8c473ce2012-12-13 08:04:47 -0500245
246 if (!git_mailmap_blob && is_bare_repository())
247 git_mailmap_blob = "HEAD:.mailmap";
248
Jeff King938a60d2012-12-12 06:18:02 -0500249 err |= read_mailmap_file(map, ".mailmap", repo_abbrev);
Jeff King5735dc52016-03-05 17:13:29 -0500250 if (startup_info->have_repository)
251 err |= read_mailmap_blob(map, git_mailmap_blob, repo_abbrev);
Jeff King938a60d2012-12-12 06:18:02 -0500252 err |= read_mailmap_file(map, git_mailmap_file, repo_abbrev);
253 return err;
Marius Storm-Olsend551a482009-02-08 15:34:27 +0100254}
255
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +0100256void clear_mailmap(struct string_list *map)
257{
258 debug_mm("mailmap: clearing %d entries...\n", map->nr);
259 map->strdup_strings = 1;
260 string_list_clear_func(map, free_mailmap_entry);
261 debug_mm("mailmap: cleared\n");
262}
263
Junio C Hamano388c7f82013-01-05 22:26:39 +0100264/*
265 * Look for an entry in map that match string[0:len]; string[len]
266 * does not have to be NUL (but it could be).
267 */
268static struct string_list_item *lookup_prefix(struct string_list *map,
269 const char *string, size_t len)
Junio C Hamano7c1c6782007-04-27 00:41:15 -0700270{
Junio C Hamano388c7f82013-01-05 22:26:39 +0100271 int i = string_list_find_insert_index(map, string, 1);
272 if (i < 0) {
273 /* exact match */
274 i = -1 - i;
275 if (!string[len])
276 return &map->items[i];
277 /*
278 * that map entry matches exactly to the string, including
279 * the cruft at the end beyond "len". That is not a match
280 * with string[0:len] that we are looking for.
281 */
282 } else if (!string[len]) {
283 /*
284 * asked with the whole string, and got nothing. No
285 * matching entry can exist in the map.
286 */
287 return NULL;
288 }
289
290 /*
291 * i is at the exact match to an overlong key, or location the
292 * overlong key would be inserted, which must come after the
293 * real location of the key if one exists.
294 */
295 while (0 <= --i && i < map->nr) {
296 int cmp = strncasecmp(map->items[i].string, string, len);
297 if (cmp < 0)
298 /*
299 * "i" points at a key definitely below the prefix;
300 * the map does not have string[0:len] in it.
301 */
302 break;
303 else if (!cmp && !map->items[i].string[len])
304 /* found it */
305 return &map->items[i];
306 /*
307 * otherwise, the string at "i" may be string[0:len]
308 * followed by a string that sorts later than string[len:];
309 * keep trying.
310 */
311 }
312 return NULL;
313}
314
Junio C Hamano7c1c6782007-04-27 00:41:15 -0700315int map_user(struct string_list *map,
Junio C Hamanobd237942013-07-15 02:54:13 -0400316 const char **email, size_t *emaillen,
317 const char **name, size_t *namelen)
Junio C Hamano7c1c6782007-04-27 00:41:15 -0700318{
Junio C Hamano7c1c6782007-04-27 00:41:15 -0700319 struct string_list_item *item;
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +0100320 struct mailmap_entry *me;
Junio C Hamano7c1c6782007-04-27 00:41:15 -0700321
Antoine Pelisseea02ffa2013-01-05 22:26:40 +0100322 debug_mm("map_user: map '%.*s' <%.*s>\n",
Junio C Hamanobd237942013-07-15 02:54:13 -0400323 (int)*namelen, debug_str(*name),
324 (int)*emaillen, debug_str(*email));
Junio C Hamano7c1c6782007-04-27 00:41:15 -0700325
Antoine Pelisseea02ffa2013-01-05 22:26:40 +0100326 item = lookup_prefix(map, *email, *emaillen);
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +0100327 if (item != NULL) {
328 me = (struct mailmap_entry *)item->util;
329 if (me->namemap.nr) {
Junio C Hamanobd237942013-07-15 02:54:13 -0400330 /*
331 * The item has multiple items, so we'll look up on
332 * name too. If the name is not found, we choose the
333 * simple entry.
334 */
Antoine Pelisseea02ffa2013-01-05 22:26:40 +0100335 struct string_list_item *subitem;
336 subitem = lookup_prefix(&me->namemap, *name, *namelen);
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +0100337 if (subitem)
338 item = subitem;
339 }
340 }
Junio C Hamano7c1c6782007-04-27 00:41:15 -0700341 if (item != NULL) {
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +0100342 struct mailmap_info *mi = (struct mailmap_info *)item->util;
Antoine Pelisseea02ffa2013-01-05 22:26:40 +0100343 if (mi->name == NULL && mi->email == NULL) {
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +0100344 debug_mm("map_user: -- (no simple mapping)\n");
345 return 0;
346 }
Antoine Pelisseea02ffa2013-01-05 22:26:40 +0100347 if (mi->email) {
348 *email = mi->email;
349 *emaillen = strlen(*email);
350 }
351 if (mi->name) {
352 *name = mi->name;
353 *namelen = strlen(*name);
354 }
Junio C Hamanobd237942013-07-15 02:54:13 -0400355 debug_mm("map_user: to '%.*s' <%.*s>\n",
356 (int)*namelen, debug_str(*name),
357 (int)*emaillen, debug_str(*email));
Junio C Hamano7c1c6782007-04-27 00:41:15 -0700358 return 1;
359 }
Marius Storm-Olsen0925ce42009-02-08 15:34:29 +0100360 debug_mm("map_user: --\n");
Junio C Hamano7c1c6782007-04-27 00:41:15 -0700361 return 0;
362}