Linus Torvalds | 6aa33f4 | 2005-07-12 11:49:27 -0700 | [diff] [blame] | 1 | /* |
| 2 | * ident.c |
| 3 | * |
| 4 | * create git identifier lines of the form "name <email> date" |
| 5 | * |
| 6 | * Copyright (C) 2005 Linus Torvalds |
| 7 | */ |
| 8 | #include "cache.h" |
| 9 | |
Linus Torvalds | e1b1039 | 2005-10-11 18:47:34 -0700 | [diff] [blame] | 10 | static char git_default_date[50]; |
Linus Torvalds | 6aa33f4 | 2005-07-12 11:49:27 -0700 | [diff] [blame] | 11 | |
Luiz Fernando N. Capitulino | b073211 | 2007-04-15 15:51:29 -0300 | [diff] [blame] | 12 | static void copy_gecos(const struct passwd *w, char *name, size_t sz) |
Junio C Hamano | e9bacb4 | 2005-09-19 16:06:56 -0700 | [diff] [blame] | 13 | { |
| 14 | char *src, *dst; |
Luiz Fernando N. Capitulino | b073211 | 2007-04-15 15:51:29 -0300 | [diff] [blame] | 15 | size_t len, nlen; |
Junio C Hamano | e9bacb4 | 2005-09-19 16:06:56 -0700 | [diff] [blame] | 16 | |
| 17 | nlen = strlen(w->pw_name); |
| 18 | |
| 19 | /* Traditionally GECOS field had office phone numbers etc, separated |
| 20 | * with commas. Also & stands for capitalized form of the login name. |
| 21 | */ |
| 22 | |
| 23 | for (len = 0, dst = name, src = w->pw_gecos; len < sz; src++) { |
| 24 | int ch = *src; |
| 25 | if (ch != '&') { |
| 26 | *dst++ = ch; |
| 27 | if (ch == 0 || ch == ',') |
| 28 | break; |
| 29 | len++; |
| 30 | continue; |
| 31 | } |
| 32 | if (len + nlen < sz) { |
| 33 | /* Sorry, Mr. McDonald... */ |
| 34 | *dst++ = toupper(*w->pw_name); |
| 35 | memcpy(dst, w->pw_name + 1, nlen - 1); |
| 36 | dst += nlen - 1; |
| 37 | } |
| 38 | } |
| 39 | if (len < sz) |
| 40 | name[len] = 0; |
| 41 | else |
| 42 | die("Your parents must have hated you!"); |
| 43 | |
| 44 | } |
| 45 | |
Luiz Fernando N. Capitulino | 0b952a9 | 2007-04-15 18:40:31 -0300 | [diff] [blame] | 46 | static void copy_email(const struct passwd *pw) |
Linus Torvalds | 6aa33f4 | 2005-07-12 11:49:27 -0700 | [diff] [blame] | 47 | { |
Junio C Hamano | 0175476 | 2007-01-28 00:50:53 -0800 | [diff] [blame] | 48 | /* |
| 49 | * Make up a fake email address |
| 50 | * (name + '@' + hostname [+ '.' + domainname]) |
| 51 | */ |
Luiz Fernando N. Capitulino | b073211 | 2007-04-15 15:51:29 -0300 | [diff] [blame] | 52 | size_t len = strlen(pw->pw_name); |
Linus Torvalds | e1b1039 | 2005-10-11 18:47:34 -0700 | [diff] [blame] | 53 | if (len > sizeof(git_default_email)/2) |
Eric W. Biederman | 7a868a8 | 2005-07-14 18:52:31 -0600 | [diff] [blame] | 54 | die("Your sysadmin must hate you!"); |
Linus Torvalds | e1b1039 | 2005-10-11 18:47:34 -0700 | [diff] [blame] | 55 | memcpy(git_default_email, pw->pw_name, len); |
| 56 | git_default_email[len++] = '@'; |
| 57 | gethostname(git_default_email + len, sizeof(git_default_email) - len); |
| 58 | if (!strchr(git_default_email+len, '.')) { |
Petr Baudis | adc3dbc | 2005-10-21 03:57:39 +0200 | [diff] [blame] | 59 | struct hostent *he = gethostbyname(git_default_email + len); |
| 60 | char *domainname; |
| 61 | |
Linus Torvalds | e1b1039 | 2005-10-11 18:47:34 -0700 | [diff] [blame] | 62 | len = strlen(git_default_email); |
| 63 | git_default_email[len++] = '.'; |
Petr Baudis | adc3dbc | 2005-10-21 03:57:39 +0200 | [diff] [blame] | 64 | if (he && (domainname = strchr(he->h_name, '.'))) |
Junio C Hamano | 0175476 | 2007-01-28 00:50:53 -0800 | [diff] [blame] | 65 | strlcpy(git_default_email + len, domainname + 1, |
| 66 | sizeof(git_default_email) - len); |
Petr Baudis | adc3dbc | 2005-10-21 03:57:39 +0200 | [diff] [blame] | 67 | else |
Junio C Hamano | 0175476 | 2007-01-28 00:50:53 -0800 | [diff] [blame] | 68 | strlcpy(git_default_email + len, "(none)", |
| 69 | sizeof(git_default_email) - len); |
Linus Torvalds | 6aa33f4 | 2005-07-12 11:49:27 -0700 | [diff] [blame] | 70 | } |
Junio C Hamano | 0175476 | 2007-01-28 00:50:53 -0800 | [diff] [blame] | 71 | } |
| 72 | |
| 73 | static void setup_ident(void) |
| 74 | { |
| 75 | struct passwd *pw = NULL; |
| 76 | |
| 77 | /* Get the name ("gecos") */ |
| 78 | if (!git_default_name[0]) { |
| 79 | pw = getpwuid(getuid()); |
| 80 | if (!pw) |
| 81 | die("You don't exist. Go away!"); |
| 82 | copy_gecos(pw, git_default_name, sizeof(git_default_name)); |
| 83 | } |
| 84 | |
| 85 | if (!git_default_email[0]) { |
Matt Kraai | 46f74f0 | 2007-07-05 17:29:41 -0700 | [diff] [blame] | 86 | const char *email = getenv("EMAIL"); |
| 87 | |
| 88 | if (email && email[0]) |
| 89 | strlcpy(git_default_email, email, |
| 90 | sizeof(git_default_email)); |
| 91 | else { |
| 92 | if (!pw) |
| 93 | pw = getpwuid(getuid()); |
| 94 | if (!pw) |
| 95 | die("You don't exist. Go away!"); |
| 96 | copy_email(pw); |
| 97 | } |
Junio C Hamano | 0175476 | 2007-01-28 00:50:53 -0800 | [diff] [blame] | 98 | } |
| 99 | |
Linus Torvalds | 6aa33f4 | 2005-07-12 11:49:27 -0700 | [diff] [blame] | 100 | /* And set the default date */ |
Junio C Hamano | 0175476 | 2007-01-28 00:50:53 -0800 | [diff] [blame] | 101 | if (!git_default_date[0]) |
| 102 | datestamp(git_default_date, sizeof(git_default_date)); |
Linus Torvalds | 6aa33f4 | 2005-07-12 11:49:27 -0700 | [diff] [blame] | 103 | } |
| 104 | |
Luiz Fernando N. Capitulino | b073211 | 2007-04-15 15:51:29 -0300 | [diff] [blame] | 105 | static int add_raw(char *buf, size_t size, int offset, const char *str) |
Linus Torvalds | 6aa33f4 | 2005-07-12 11:49:27 -0700 | [diff] [blame] | 106 | { |
Luiz Fernando N. Capitulino | b073211 | 2007-04-15 15:51:29 -0300 | [diff] [blame] | 107 | size_t len = strlen(str); |
Linus Torvalds | 6aa33f4 | 2005-07-12 11:49:27 -0700 | [diff] [blame] | 108 | if (offset + len > size) |
| 109 | return size; |
| 110 | memcpy(buf + offset, str, len); |
| 111 | return offset + len; |
| 112 | } |
| 113 | |
| 114 | static int crud(unsigned char c) |
| 115 | { |
Jason Riedy | fb2af03 | 2005-08-23 13:52:52 -0700 | [diff] [blame] | 116 | static char crud_array[256]; |
| 117 | static int crud_array_initialized = 0; |
| 118 | |
| 119 | if (!crud_array_initialized) { |
| 120 | int k; |
| 121 | |
| 122 | for (k = 0; k <= 31; ++k) crud_array[k] = 1; |
| 123 | crud_array[' '] = 1; |
| 124 | crud_array['.'] = 1; |
| 125 | crud_array[','] = 1; |
| 126 | crud_array[':'] = 1; |
| 127 | crud_array[';'] = 1; |
| 128 | crud_array['<'] = 1; |
| 129 | crud_array['>'] = 1; |
| 130 | crud_array['"'] = 1; |
| 131 | crud_array['\''] = 1; |
| 132 | crud_array_initialized = 1; |
| 133 | } |
Linus Torvalds | 6aa33f4 | 2005-07-12 11:49:27 -0700 | [diff] [blame] | 134 | return crud_array[c]; |
| 135 | } |
| 136 | |
| 137 | /* |
| 138 | * Copy over a string to the destination, but avoid special |
| 139 | * characters ('\n', '<' and '>') and remove crud at the end |
| 140 | */ |
Luiz Fernando N. Capitulino | b073211 | 2007-04-15 15:51:29 -0300 | [diff] [blame] | 141 | static int copy(char *buf, size_t size, int offset, const char *src) |
Linus Torvalds | 6aa33f4 | 2005-07-12 11:49:27 -0700 | [diff] [blame] | 142 | { |
Luiz Fernando N. Capitulino | b073211 | 2007-04-15 15:51:29 -0300 | [diff] [blame] | 143 | size_t i, len; |
Linus Torvalds | 6aa33f4 | 2005-07-12 11:49:27 -0700 | [diff] [blame] | 144 | unsigned char c; |
| 145 | |
| 146 | /* Remove crud from the beginning.. */ |
| 147 | while ((c = *src) != 0) { |
| 148 | if (!crud(c)) |
| 149 | break; |
| 150 | src++; |
| 151 | } |
| 152 | |
| 153 | /* Remove crud from the end.. */ |
| 154 | len = strlen(src); |
| 155 | while (len > 0) { |
| 156 | c = src[len-1]; |
| 157 | if (!crud(c)) |
| 158 | break; |
| 159 | --len; |
| 160 | } |
| 161 | |
| 162 | /* |
| 163 | * Copy the rest to the buffer, but avoid the special |
Junio C Hamano | 82f9d58 | 2005-12-29 01:30:08 -0800 | [diff] [blame] | 164 | * characters '\n' '<' and '>' that act as delimiters on |
Linus Torvalds | 6aa33f4 | 2005-07-12 11:49:27 -0700 | [diff] [blame] | 165 | * a identification line |
| 166 | */ |
| 167 | for (i = 0; i < len; i++) { |
| 168 | c = *src++; |
| 169 | switch (c) { |
| 170 | case '\n': case '<': case '>': |
| 171 | continue; |
| 172 | } |
| 173 | if (offset >= size) |
| 174 | return size; |
| 175 | buf[offset++] = c; |
| 176 | } |
| 177 | return offset; |
| 178 | } |
| 179 | |
Junio C Hamano | 749be72 | 2006-02-18 20:31:05 -0800 | [diff] [blame] | 180 | static const char au_env[] = "GIT_AUTHOR_NAME"; |
| 181 | static const char co_env[] = "GIT_COMMITTER_NAME"; |
| 182 | static const char *env_hint = |
Han-Wen Nienhuys | d5cc2de | 2006-11-28 11:27:39 +0100 | [diff] [blame] | 183 | "\n" |
Junio C Hamano | 749be72 | 2006-02-18 20:31:05 -0800 | [diff] [blame] | 184 | "*** Your name cannot be determined from your system services (gecos).\n" |
Han-Wen Nienhuys | d5cc2de | 2006-11-28 11:27:39 +0100 | [diff] [blame] | 185 | "\n" |
| 186 | "Run\n" |
| 187 | "\n" |
David Symonds | 8e7425d | 2007-12-07 10:36:45 +1100 | [diff] [blame^] | 188 | " git config --global user.email \"you@example.com\"\n" |
Steffen Prohaska | 180787c | 2007-08-14 00:05:50 +0200 | [diff] [blame] | 189 | " git config --global user.name \"Your Name\"\n" |
Han-Wen Nienhuys | d5cc2de | 2006-11-28 11:27:39 +0100 | [diff] [blame] | 190 | "\n" |
Steffen Prohaska | 180787c | 2007-08-14 00:05:50 +0200 | [diff] [blame] | 191 | "to set your account\'s default identity.\n" |
| 192 | "Omit --global to set the identity only in this repository.\n" |
Han-Wen Nienhuys | d5cc2de | 2006-11-28 11:27:39 +0100 | [diff] [blame] | 193 | "\n"; |
Junio C Hamano | 749be72 | 2006-02-18 20:31:05 -0800 | [diff] [blame] | 194 | |
Junio C Hamano | 798123a | 2007-02-04 17:50:14 -0800 | [diff] [blame] | 195 | const char *fmt_ident(const char *name, const char *email, |
| 196 | const char *date_str, int error_on_no_name) |
Linus Torvalds | 6aa33f4 | 2005-07-12 11:49:27 -0700 | [diff] [blame] | 197 | { |
| 198 | static char buffer[1000]; |
| 199 | char date[50]; |
| 200 | int i; |
| 201 | |
Junio C Hamano | 0175476 | 2007-01-28 00:50:53 -0800 | [diff] [blame] | 202 | setup_ident(); |
Linus Torvalds | 6aa33f4 | 2005-07-12 11:49:27 -0700 | [diff] [blame] | 203 | if (!name) |
Linus Torvalds | e1b1039 | 2005-10-11 18:47:34 -0700 | [diff] [blame] | 204 | name = git_default_name; |
Linus Torvalds | 6aa33f4 | 2005-07-12 11:49:27 -0700 | [diff] [blame] | 205 | if (!email) |
Linus Torvalds | e1b1039 | 2005-10-11 18:47:34 -0700 | [diff] [blame] | 206 | email = git_default_email; |
Junio C Hamano | dfdd309 | 2006-02-07 13:19:10 -0800 | [diff] [blame] | 207 | |
Junio C Hamano | 749be72 | 2006-02-18 20:31:05 -0800 | [diff] [blame] | 208 | if (!*name) { |
Junio C Hamano | cb280e1 | 2007-01-25 19:05:01 -0800 | [diff] [blame] | 209 | struct passwd *pw; |
| 210 | |
| 211 | if (0 <= error_on_no_name && |
| 212 | name == git_default_name && env_hint) { |
Junio C Hamano | 749be72 | 2006-02-18 20:31:05 -0800 | [diff] [blame] | 213 | fprintf(stderr, env_hint, au_env, co_env); |
| 214 | env_hint = NULL; /* warn only once, for "git-var -l" */ |
| 215 | } |
Junio C Hamano | cb280e1 | 2007-01-25 19:05:01 -0800 | [diff] [blame] | 216 | if (0 < error_on_no_name) |
Junio C Hamano | 749be72 | 2006-02-18 20:31:05 -0800 | [diff] [blame] | 217 | die("empty ident %s <%s> not allowed", name, email); |
Junio C Hamano | cb280e1 | 2007-01-25 19:05:01 -0800 | [diff] [blame] | 218 | pw = getpwuid(getuid()); |
| 219 | if (!pw) |
| 220 | die("You don't exist. Go away!"); |
| 221 | strlcpy(git_default_name, pw->pw_name, |
| 222 | sizeof(git_default_name)); |
| 223 | name = git_default_name; |
Junio C Hamano | 749be72 | 2006-02-18 20:31:05 -0800 | [diff] [blame] | 224 | } |
Junio C Hamano | dfdd309 | 2006-02-07 13:19:10 -0800 | [diff] [blame] | 225 | |
Linus Torvalds | e1b1039 | 2005-10-11 18:47:34 -0700 | [diff] [blame] | 226 | strcpy(date, git_default_date); |
Linus Torvalds | 6aa33f4 | 2005-07-12 11:49:27 -0700 | [diff] [blame] | 227 | if (date_str) |
| 228 | parse_date(date_str, date, sizeof(date)); |
| 229 | |
| 230 | i = copy(buffer, sizeof(buffer), 0, name); |
| 231 | i = add_raw(buffer, sizeof(buffer), i, " <"); |
| 232 | i = copy(buffer, sizeof(buffer), i, email); |
| 233 | i = add_raw(buffer, sizeof(buffer), i, "> "); |
| 234 | i = copy(buffer, sizeof(buffer), i, date); |
| 235 | if (i >= sizeof(buffer)) |
| 236 | die("Impossibly long personal identifier"); |
| 237 | buffer[i] = 0; |
| 238 | return buffer; |
| 239 | } |
Eric W. Biederman | d289d13 | 2005-07-14 18:50:33 -0600 | [diff] [blame] | 240 | |
Junio C Hamano | 749be72 | 2006-02-18 20:31:05 -0800 | [diff] [blame] | 241 | const char *git_author_info(int error_on_no_name) |
Eric W. Biederman | d289d13 | 2005-07-14 18:50:33 -0600 | [diff] [blame] | 242 | { |
Junio C Hamano | 798123a | 2007-02-04 17:50:14 -0800 | [diff] [blame] | 243 | return fmt_ident(getenv("GIT_AUTHOR_NAME"), |
Junio C Hamano | c7d77da | 2005-11-21 23:44:35 -0800 | [diff] [blame] | 244 | getenv("GIT_AUTHOR_EMAIL"), |
Junio C Hamano | 749be72 | 2006-02-18 20:31:05 -0800 | [diff] [blame] | 245 | getenv("GIT_AUTHOR_DATE"), |
| 246 | error_on_no_name); |
Eric W. Biederman | d289d13 | 2005-07-14 18:50:33 -0600 | [diff] [blame] | 247 | } |
| 248 | |
Junio C Hamano | 749be72 | 2006-02-18 20:31:05 -0800 | [diff] [blame] | 249 | const char *git_committer_info(int error_on_no_name) |
Eric W. Biederman | d289d13 | 2005-07-14 18:50:33 -0600 | [diff] [blame] | 250 | { |
Junio C Hamano | 798123a | 2007-02-04 17:50:14 -0800 | [diff] [blame] | 251 | return fmt_ident(getenv("GIT_COMMITTER_NAME"), |
Junio C Hamano | c7d77da | 2005-11-21 23:44:35 -0800 | [diff] [blame] | 252 | getenv("GIT_COMMITTER_EMAIL"), |
Junio C Hamano | 749be72 | 2006-02-18 20:31:05 -0800 | [diff] [blame] | 253 | getenv("GIT_COMMITTER_DATE"), |
| 254 | error_on_no_name); |
Eric W. Biederman | d289d13 | 2005-07-14 18:50:33 -0600 | [diff] [blame] | 255 | } |