]> git.ipfire.org Git - thirdparty/git.git/blame - ident.c
Add script for importing bits-and-pieces to Git.
[thirdparty/git.git] / ident.c
CommitLineData
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 10static char git_default_date[50];
6aa33f40 11
b0732115 12static 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 46static 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
73static 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 105static 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
114static 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 == '"' ||
d404bf02 124 c == '\\' ||
f64c81d4 125 c == '\'';
6aa33f40
LT
126}
127
128/*
129 * Copy over a string to the destination, but avoid special
130 * characters ('\n', '<' and '>') and remove crud at the end
131 */
b0732115 132static int copy(char *buf, size_t size, int offset, const char *src)
6aa33f40 133{
b0732115 134 size_t i, len;
6aa33f40
LT
135 unsigned char c;
136
137 /* Remove crud from the beginning.. */
138 while ((c = *src) != 0) {
139 if (!crud(c))
140 break;
141 src++;
142 }
143
144 /* Remove crud from the end.. */
145 len = strlen(src);
146 while (len > 0) {
147 c = src[len-1];
148 if (!crud(c))
149 break;
150 --len;
151 }
152
153 /*
154 * Copy the rest to the buffer, but avoid the special
82f9d58a 155 * characters '\n' '<' and '>' that act as delimiters on
790296fd 156 * an identification line
6aa33f40
LT
157 */
158 for (i = 0; i < len; i++) {
159 c = *src++;
160 switch (c) {
161 case '\n': case '<': case '>':
162 continue;
163 }
164 if (offset >= size)
165 return size;
166 buf[offset++] = c;
167 }
168 return offset;
169}
170
749be728
JH
171static const char au_env[] = "GIT_AUTHOR_NAME";
172static const char co_env[] = "GIT_COMMITTER_NAME";
173static const char *env_hint =
d5cc2de9 174"\n"
6c293d40 175"*** Please tell me who you are.\n"
d5cc2de9
HWN
176"\n"
177"Run\n"
178"\n"
8e7425da 179" git config --global user.email \"you@example.com\"\n"
180787c4 180" git config --global user.name \"Your Name\"\n"
d5cc2de9 181"\n"
180787c4
SP
182"to set your account\'s default identity.\n"
183"Omit --global to set the identity only in this repository.\n"
d5cc2de9 184"\n";
749be728 185
774751a8
JH
186const char *fmt_ident(const char *name, const char *email,
187 const char *date_str, int flag)
6aa33f40
LT
188{
189 static char buffer[1000];
190 char date[50];
191 int i;
774751a8
JH
192 int error_on_no_name = (flag & IDENT_ERROR_ON_NO_NAME);
193 int warn_on_no_name = (flag & IDENT_WARN_ON_NO_NAME);
194 int name_addr_only = (flag & IDENT_NO_DATE);
6aa33f40 195
01754769 196 setup_ident();
6aa33f40 197 if (!name)
e1b10391 198 name = git_default_name;
6aa33f40 199 if (!email)
e1b10391 200 email = git_default_email;
dfdd309e 201
749be728 202 if (!*name) {
cb280e10
JH
203 struct passwd *pw;
204
774751a8 205 if ((warn_on_no_name || error_on_no_name) &&
cb280e10 206 name == git_default_name && env_hint) {
749be728 207 fprintf(stderr, env_hint, au_env, co_env);
5354a56f 208 env_hint = NULL; /* warn only once, for "git var -l" */
749be728 209 }
774751a8 210 if (error_on_no_name)
749be728 211 die("empty ident %s <%s> not allowed", name, email);
cb280e10
JH
212 pw = getpwuid(getuid());
213 if (!pw)
214 die("You don't exist. Go away!");
215 strlcpy(git_default_name, pw->pw_name,
216 sizeof(git_default_name));
217 name = git_default_name;
749be728 218 }
dfdd309e 219
e1b10391 220 strcpy(date, git_default_date);
d9ccfe77 221 if (!name_addr_only && date_str)
6aa33f40
LT
222 parse_date(date_str, date, sizeof(date));
223
224 i = copy(buffer, sizeof(buffer), 0, name);
225 i = add_raw(buffer, sizeof(buffer), i, " <");
226 i = copy(buffer, sizeof(buffer), i, email);
d9ccfe77
JH
227 if (!name_addr_only) {
228 i = add_raw(buffer, sizeof(buffer), i, "> ");
229 i = copy(buffer, sizeof(buffer), i, date);
230 } else {
231 i = add_raw(buffer, sizeof(buffer), i, ">");
232 }
6aa33f40
LT
233 if (i >= sizeof(buffer))
234 die("Impossibly long personal identifier");
235 buffer[i] = 0;
236 return buffer;
237}
d289d136 238
d9ccfe77
JH
239const char *fmt_name(const char *name, const char *email)
240{
774751a8 241 return fmt_ident(name, email, NULL, IDENT_ERROR_ON_NO_NAME | IDENT_NO_DATE);
d9ccfe77
JH
242}
243
774751a8 244const char *git_author_info(int flag)
d289d136 245{
798123af 246 return fmt_ident(getenv("GIT_AUTHOR_NAME"),
c7d77dab 247 getenv("GIT_AUTHOR_EMAIL"),
749be728 248 getenv("GIT_AUTHOR_DATE"),
774751a8 249 flag);
d289d136
EB
250}
251
774751a8 252const char *git_committer_info(int flag)
d289d136 253{
bb1ae3f6
SB
254 if (getenv("GIT_COMMITTER_NAME") &&
255 getenv("GIT_COMMITTER_EMAIL"))
256 user_ident_explicitly_given = 1;
798123af 257 return fmt_ident(getenv("GIT_COMMITTER_NAME"),
c7d77dab 258 getenv("GIT_COMMITTER_EMAIL"),
749be728 259 getenv("GIT_COMMITTER_DATE"),
774751a8 260 flag);
d289d136 261}