Commit | Line | Data |
---|---|---|
6aa33f40 LT |
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 | ||
e1b10391 | 10 | static char git_default_date[50]; |
6aa33f40 | 11 | |
b0732115 | 12 | static void copy_gecos(const struct passwd *w, char *name, size_t sz) |
e9bacb4f JH |
13 | { |
14 | char *src, *dst; | |
b0732115 | 15 | size_t len, nlen; |
e9bacb4f JH |
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 | ||
0b952a98 | 46 | static void copy_email(const struct passwd *pw) |
6aa33f40 | 47 | { |
01754769 JH |
48 | /* |
49 | * Make up a fake email address | |
50 | * (name + '@' + hostname [+ '.' + domainname]) | |
51 | */ | |
b0732115 | 52 | size_t len = strlen(pw->pw_name); |
e1b10391 | 53 | if (len > sizeof(git_default_email)/2) |
7a868a84 | 54 | die("Your sysadmin must hate you!"); |
e1b10391 LT |
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, '.')) { | |
adc3dbca PB |
59 | struct hostent *he = gethostbyname(git_default_email + len); |
60 | char *domainname; | |
61 | ||
e1b10391 LT |
62 | len = strlen(git_default_email); |
63 | git_default_email[len++] = '.'; | |
adc3dbca | 64 | if (he && (domainname = strchr(he->h_name, '.'))) |
01754769 JH |
65 | strlcpy(git_default_email + len, domainname + 1, |
66 | sizeof(git_default_email) - len); | |
adc3dbca | 67 | else |
01754769 JH |
68 | strlcpy(git_default_email + len, "(none)", |
69 | sizeof(git_default_email) - len); | |
6aa33f40 | 70 | } |
01754769 JH |
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]) { | |
46f74f00 MK |
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 | } | |
01754769 JH |
98 | } |
99 | ||
6aa33f40 | 100 | /* And set the default date */ |
01754769 JH |
101 | if (!git_default_date[0]) |
102 | datestamp(git_default_date, sizeof(git_default_date)); | |
6aa33f40 LT |
103 | } |
104 | ||
b0732115 | 105 | static int add_raw(char *buf, size_t size, int offset, const char *str) |
6aa33f40 | 106 | { |
b0732115 | 107 | size_t len = strlen(str); |
6aa33f40 LT |
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 | { | |
f64c81d4 AR |
116 | return c <= 32 || |
117 | c == '.' || | |
118 | c == ',' || | |
119 | c == ':' || | |
120 | c == ';' || | |
121 | c == '<' || | |
122 | c == '>' || | |
123 | c == '"' || | |
124 | c == '\''; | |
6aa33f40 LT |
125 | } |
126 | ||
127 | /* | |
128 | * Copy over a string to the destination, but avoid special | |
129 | * characters ('\n', '<' and '>') and remove crud at the end | |
130 | */ | |
b0732115 | 131 | static int copy(char *buf, size_t size, int offset, const char *src) |
6aa33f40 | 132 | { |
b0732115 | 133 | size_t i, len; |
6aa33f40 LT |
134 | unsigned char c; |
135 | ||
136 | /* Remove crud from the beginning.. */ | |
137 | while ((c = *src) != 0) { | |
138 | if (!crud(c)) | |
139 | break; | |
140 | src++; | |
141 | } | |
142 | ||
143 | /* Remove crud from the end.. */ | |
144 | len = strlen(src); | |
145 | while (len > 0) { | |
146 | c = src[len-1]; | |
147 | if (!crud(c)) | |
148 | break; | |
149 | --len; | |
150 | } | |
151 | ||
152 | /* | |
153 | * Copy the rest to the buffer, but avoid the special | |
82f9d58a | 154 | * characters '\n' '<' and '>' that act as delimiters on |
6aa33f40 LT |
155 | * a identification line |
156 | */ | |
157 | for (i = 0; i < len; i++) { | |
158 | c = *src++; | |
159 | switch (c) { | |
160 | case '\n': case '<': case '>': | |
161 | continue; | |
162 | } | |
163 | if (offset >= size) | |
164 | return size; | |
165 | buf[offset++] = c; | |
166 | } | |
167 | return offset; | |
168 | } | |
169 | ||
749be728 JH |
170 | static const char au_env[] = "GIT_AUTHOR_NAME"; |
171 | static const char co_env[] = "GIT_COMMITTER_NAME"; | |
172 | static const char *env_hint = | |
d5cc2de9 | 173 | "\n" |
749be728 | 174 | "*** Your name cannot be determined from your system services (gecos).\n" |
d5cc2de9 HWN |
175 | "\n" |
176 | "Run\n" | |
177 | "\n" | |
8e7425da | 178 | " git config --global user.email \"you@example.com\"\n" |
180787c4 | 179 | " git config --global user.name \"Your Name\"\n" |
d5cc2de9 | 180 | "\n" |
180787c4 SP |
181 | "to set your account\'s default identity.\n" |
182 | "Omit --global to set the identity only in this repository.\n" | |
d5cc2de9 | 183 | "\n"; |
749be728 | 184 | |
d9ccfe77 JH |
185 | static const char *fmt_ident_1(const char *name, const char *email, |
186 | const char *date_str, int flag) | |
6aa33f40 LT |
187 | { |
188 | static char buffer[1000]; | |
189 | char date[50]; | |
190 | int i; | |
d9ccfe77 JH |
191 | int error_on_no_name = !!(flag & 01); |
192 | int name_addr_only = !!(flag & 02); | |
6aa33f40 | 193 | |
01754769 | 194 | setup_ident(); |
6aa33f40 | 195 | if (!name) |
e1b10391 | 196 | name = git_default_name; |
6aa33f40 | 197 | if (!email) |
e1b10391 | 198 | email = git_default_email; |
dfdd309e | 199 | |
749be728 | 200 | if (!*name) { |
cb280e10 JH |
201 | struct passwd *pw; |
202 | ||
203 | if (0 <= error_on_no_name && | |
204 | name == git_default_name && env_hint) { | |
749be728 JH |
205 | fprintf(stderr, env_hint, au_env, co_env); |
206 | env_hint = NULL; /* warn only once, for "git-var -l" */ | |
207 | } | |
cb280e10 | 208 | if (0 < error_on_no_name) |
749be728 | 209 | die("empty ident %s <%s> not allowed", name, email); |
cb280e10 JH |
210 | pw = getpwuid(getuid()); |
211 | if (!pw) | |
212 | die("You don't exist. Go away!"); | |
213 | strlcpy(git_default_name, pw->pw_name, | |
214 | sizeof(git_default_name)); | |
215 | name = git_default_name; | |
749be728 | 216 | } |
dfdd309e | 217 | |
e1b10391 | 218 | strcpy(date, git_default_date); |
d9ccfe77 | 219 | if (!name_addr_only && date_str) |
6aa33f40 LT |
220 | parse_date(date_str, date, sizeof(date)); |
221 | ||
222 | i = copy(buffer, sizeof(buffer), 0, name); | |
223 | i = add_raw(buffer, sizeof(buffer), i, " <"); | |
224 | i = copy(buffer, sizeof(buffer), i, email); | |
d9ccfe77 JH |
225 | if (!name_addr_only) { |
226 | i = add_raw(buffer, sizeof(buffer), i, "> "); | |
227 | i = copy(buffer, sizeof(buffer), i, date); | |
228 | } else { | |
229 | i = add_raw(buffer, sizeof(buffer), i, ">"); | |
230 | } | |
6aa33f40 LT |
231 | if (i >= sizeof(buffer)) |
232 | die("Impossibly long personal identifier"); | |
233 | buffer[i] = 0; | |
234 | return buffer; | |
235 | } | |
d289d136 | 236 | |
d9ccfe77 JH |
237 | const char *fmt_ident(const char *name, const char *email, |
238 | const char *date_str, int error_on_no_name) | |
239 | { | |
240 | int flag = (error_on_no_name ? 01 : 0); | |
241 | return fmt_ident_1(name, email, date_str, flag); | |
242 | } | |
243 | ||
244 | const char *fmt_name(const char *name, const char *email) | |
245 | { | |
246 | return fmt_ident_1(name, email, NULL, 03); | |
247 | } | |
248 | ||
749be728 | 249 | const char *git_author_info(int error_on_no_name) |
d289d136 | 250 | { |
798123af | 251 | return fmt_ident(getenv("GIT_AUTHOR_NAME"), |
c7d77dab | 252 | getenv("GIT_AUTHOR_EMAIL"), |
749be728 JH |
253 | getenv("GIT_AUTHOR_DATE"), |
254 | error_on_no_name); | |
d289d136 EB |
255 | } |
256 | ||
749be728 | 257 | const char *git_committer_info(int error_on_no_name) |
d289d136 | 258 | { |
798123af | 259 | return fmt_ident(getenv("GIT_COMMITTER_NAME"), |
c7d77dab | 260 | getenv("GIT_COMMITTER_EMAIL"), |
749be728 JH |
261 | getenv("GIT_COMMITTER_DATE"), |
262 | error_on_no_name); | |
d289d136 | 263 | } |