bb1158f7d2a76d08a7a4398b2d25a0632fd081a1
   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
  10static char git_default_date[50];
  11
  12#ifdef NO_GECOS_IN_PWENT
  13#define get_gecos(ignored) "&"
  14#else
  15#define get_gecos(struct_passwd) ((struct_passwd)->pw_gecos)
  16#endif
  17
  18static void copy_gecos(const struct passwd *w, char *name, size_t sz)
  19{
  20        char *src, *dst;
  21        size_t len, nlen;
  22
  23        nlen = strlen(w->pw_name);
  24
  25        /* Traditionally GECOS field had office phone numbers etc, separated
  26         * with commas.  Also & stands for capitalized form of the login name.
  27         */
  28
  29        for (len = 0, dst = name, src = get_gecos(w); len < sz; src++) {
  30                int ch = *src;
  31                if (ch != '&') {
  32                        *dst++ = ch;
  33                        if (ch == 0 || ch == ',')
  34                                break;
  35                        len++;
  36                        continue;
  37                }
  38                if (len + nlen < sz) {
  39                        /* Sorry, Mr. McDonald... */
  40                        *dst++ = toupper(*w->pw_name);
  41                        memcpy(dst, w->pw_name + 1, nlen - 1);
  42                        dst += nlen - 1;
  43                        len += nlen;
  44                }
  45        }
  46        if (len < sz)
  47                name[len] = 0;
  48        else
  49                die("Your parents must have hated you!");
  50
  51}
  52
  53static int add_mailname_host(char *buf, size_t len)
  54{
  55        FILE *mailname;
  56
  57        mailname = fopen("/etc/mailname", "r");
  58        if (!mailname) {
  59                if (errno != ENOENT)
  60                        warning("cannot open /etc/mailname: %s",
  61                                strerror(errno));
  62                return -1;
  63        }
  64        if (!fgets(buf, len, mailname)) {
  65                if (ferror(mailname))
  66                        warning("cannot read /etc/mailname: %s",
  67                                strerror(errno));
  68                fclose(mailname);
  69                return -1;
  70        }
  71        /* success! */
  72        fclose(mailname);
  73        return 0;
  74}
  75
  76static void add_domainname(char *buf, size_t len)
  77{
  78        struct hostent *he;
  79        size_t namelen;
  80        const char *domainname;
  81
  82        if (gethostname(buf, len)) {
  83                warning("cannot get host name: %s", strerror(errno));
  84                strlcpy(buf, "(none)", len);
  85                return;
  86        }
  87        namelen = strlen(buf);
  88        if (memchr(buf, '.', namelen))
  89                return;
  90
  91        he = gethostbyname(buf);
  92        buf[namelen++] = '.';
  93        buf += namelen;
  94        len -= namelen;
  95        if (he && (domainname = strchr(he->h_name, '.')))
  96                strlcpy(buf, domainname + 1, len);
  97        else
  98                strlcpy(buf, "(none)", len);
  99}
 100
 101static void copy_email(const struct passwd *pw)
 102{
 103        /*
 104         * Make up a fake email address
 105         * (name + '@' + hostname [+ '.' + domainname])
 106         */
 107        size_t len = strlen(pw->pw_name);
 108        if (len > sizeof(git_default_email)/2)
 109                die("Your sysadmin must hate you!");
 110        memcpy(git_default_email, pw->pw_name, len);
 111        git_default_email[len++] = '@';
 112
 113        if (!add_mailname_host(git_default_email + len,
 114                                sizeof(git_default_email) - len))
 115                return; /* read from "/etc/mailname" (Debian) */
 116        add_domainname(git_default_email + len,
 117                        sizeof(git_default_email) - len);
 118}
 119
 120const char *ident_default_name(void)
 121{
 122        if (!git_default_name[0]) {
 123                struct passwd *pw = getpwuid(getuid());
 124                if (!pw)
 125                        die("You don't exist. Go away!");
 126                copy_gecos(pw, git_default_name, sizeof(git_default_name));
 127        }
 128        return git_default_name;
 129}
 130
 131const char *ident_default_email(void)
 132{
 133        if (!git_default_email[0]) {
 134                const char *email = getenv("EMAIL");
 135
 136                if (email && email[0]) {
 137                        strlcpy(git_default_email, email,
 138                                sizeof(git_default_email));
 139                        user_ident_explicitly_given |= IDENT_MAIL_GIVEN;
 140                } else {
 141                        struct passwd *pw = getpwuid(getuid());
 142                        if (!pw)
 143                                die("You don't exist. Go away!");
 144                        copy_email(pw);
 145                }
 146        }
 147        return git_default_email;
 148}
 149
 150const char *ident_default_date(void)
 151{
 152        if (!git_default_date[0])
 153                datestamp(git_default_date, sizeof(git_default_date));
 154        return git_default_date;
 155}
 156
 157static int add_raw(char *buf, size_t size, int offset, const char *str)
 158{
 159        size_t len = strlen(str);
 160        if (offset + len > size)
 161                return size;
 162        memcpy(buf + offset, str, len);
 163        return offset + len;
 164}
 165
 166static int crud(unsigned char c)
 167{
 168        return  c <= 32  ||
 169                c == '.' ||
 170                c == ',' ||
 171                c == ':' ||
 172                c == ';' ||
 173                c == '<' ||
 174                c == '>' ||
 175                c == '"' ||
 176                c == '\\' ||
 177                c == '\'';
 178}
 179
 180/*
 181 * Copy over a string to the destination, but avoid special
 182 * characters ('\n', '<' and '>') and remove crud at the end
 183 */
 184static int copy(char *buf, size_t size, int offset, const char *src)
 185{
 186        size_t i, len;
 187        unsigned char c;
 188
 189        /* Remove crud from the beginning.. */
 190        while ((c = *src) != 0) {
 191                if (!crud(c))
 192                        break;
 193                src++;
 194        }
 195
 196        /* Remove crud from the end.. */
 197        len = strlen(src);
 198        while (len > 0) {
 199                c = src[len-1];
 200                if (!crud(c))
 201                        break;
 202                --len;
 203        }
 204
 205        /*
 206         * Copy the rest to the buffer, but avoid the special
 207         * characters '\n' '<' and '>' that act as delimiters on
 208         * an identification line
 209         */
 210        for (i = 0; i < len; i++) {
 211                c = *src++;
 212                switch (c) {
 213                case '\n': case '<': case '>':
 214                        continue;
 215                }
 216                if (offset >= size)
 217                        return size;
 218                buf[offset++] = c;
 219        }
 220        return offset;
 221}
 222
 223/*
 224 * Reverse of fmt_ident(); given an ident line, split the fields
 225 * to allow the caller to parse it.
 226 * Signal a success by returning 0, but date/tz fields of the result
 227 * can still be NULL if the input line only has the name/email part
 228 * (e.g. reading from a reflog entry).
 229 */
 230int split_ident_line(struct ident_split *split, const char *line, int len)
 231{
 232        const char *cp;
 233        size_t span;
 234        int status = -1;
 235
 236        memset(split, 0, sizeof(*split));
 237
 238        split->name_begin = line;
 239        for (cp = line; *cp && cp < line + len; cp++)
 240                if (*cp == '<') {
 241                        split->mail_begin = cp + 1;
 242                        break;
 243                }
 244        if (!split->mail_begin)
 245                return status;
 246
 247        for (cp = split->mail_begin - 2; line < cp; cp--)
 248                if (!isspace(*cp)) {
 249                        split->name_end = cp + 1;
 250                        break;
 251                }
 252        if (!split->name_end)
 253                return status;
 254
 255        for (cp = split->mail_begin; cp < line + len; cp++)
 256                if (*cp == '>') {
 257                        split->mail_end = cp;
 258                        break;
 259                }
 260        if (!split->mail_end)
 261                return status;
 262
 263        for (cp = split->mail_end + 1; cp < line + len && isspace(*cp); cp++)
 264                ;
 265        if (line + len <= cp)
 266                goto person_only;
 267        split->date_begin = cp;
 268        span = strspn(cp, "0123456789");
 269        if (!span)
 270                goto person_only;
 271        split->date_end = split->date_begin + span;
 272        for (cp = split->date_end; cp < line + len && isspace(*cp); cp++)
 273                ;
 274        if (line + len <= cp || (*cp != '+' && *cp != '-'))
 275                goto person_only;
 276        split->tz_begin = cp;
 277        span = strspn(cp + 1, "0123456789");
 278        if (!span)
 279                goto person_only;
 280        split->tz_end = split->tz_begin + 1 + span;
 281        return 0;
 282
 283person_only:
 284        split->date_begin = NULL;
 285        split->date_end = NULL;
 286        split->tz_begin = NULL;
 287        split->tz_end = NULL;
 288        return 0;
 289}
 290
 291static const char *env_hint =
 292"\n"
 293"*** Please tell me who you are.\n"
 294"\n"
 295"Run\n"
 296"\n"
 297"  git config --global user.email \"you@example.com\"\n"
 298"  git config --global user.name \"Your Name\"\n"
 299"\n"
 300"to set your account\'s default identity.\n"
 301"Omit --global to set the identity only in this repository.\n"
 302"\n";
 303
 304const char *fmt_ident(const char *name, const char *email,
 305                      const char *date_str, int flag)
 306{
 307        static char buffer[1000];
 308        char date[50];
 309        int i;
 310        int error_on_no_name = (flag & IDENT_ERROR_ON_NO_NAME);
 311        int warn_on_no_name = (flag & IDENT_WARN_ON_NO_NAME);
 312        int name_addr_only = (flag & IDENT_NO_DATE);
 313
 314        if (!name)
 315                name = ident_default_name();
 316        if (!email)
 317                email = ident_default_email();
 318
 319        if (!*name) {
 320                struct passwd *pw;
 321
 322                if ((warn_on_no_name || error_on_no_name) &&
 323                    name == git_default_name && env_hint) {
 324                        fputs(env_hint, stderr);
 325                        env_hint = NULL; /* warn only once */
 326                }
 327                if (error_on_no_name)
 328                        die("empty ident %s <%s> not allowed", name, email);
 329                pw = getpwuid(getuid());
 330                if (!pw)
 331                        die("You don't exist. Go away!");
 332                strlcpy(git_default_name, pw->pw_name,
 333                        sizeof(git_default_name));
 334                name = git_default_name;
 335        }
 336
 337        strcpy(date, ident_default_date());
 338        if (!name_addr_only && date_str && date_str[0]) {
 339                if (parse_date(date_str, date, sizeof(date)) < 0)
 340                        die("invalid date format: %s", date_str);
 341        }
 342
 343        i = copy(buffer, sizeof(buffer), 0, name);
 344        i = add_raw(buffer, sizeof(buffer), i, " <");
 345        i = copy(buffer, sizeof(buffer), i, email);
 346        if (!name_addr_only) {
 347                i = add_raw(buffer, sizeof(buffer), i,  "> ");
 348                i = copy(buffer, sizeof(buffer), i, date);
 349        } else {
 350                i = add_raw(buffer, sizeof(buffer), i, ">");
 351        }
 352        if (i >= sizeof(buffer))
 353                die("Impossibly long personal identifier");
 354        buffer[i] = 0;
 355        return buffer;
 356}
 357
 358const char *fmt_name(const char *name, const char *email)
 359{
 360        return fmt_ident(name, email, NULL, IDENT_ERROR_ON_NO_NAME | IDENT_NO_DATE);
 361}
 362
 363const char *git_author_info(int flag)
 364{
 365        return fmt_ident(getenv("GIT_AUTHOR_NAME"),
 366                         getenv("GIT_AUTHOR_EMAIL"),
 367                         getenv("GIT_AUTHOR_DATE"),
 368                         flag);
 369}
 370
 371const char *git_committer_info(int flag)
 372{
 373        if (getenv("GIT_COMMITTER_NAME"))
 374                user_ident_explicitly_given |= IDENT_NAME_GIVEN;
 375        if (getenv("GIT_COMMITTER_EMAIL"))
 376                user_ident_explicitly_given |= IDENT_MAIL_GIVEN;
 377        return fmt_ident(getenv("GIT_COMMITTER_NAME"),
 378                         getenv("GIT_COMMITTER_EMAIL"),
 379                         getenv("GIT_COMMITTER_DATE"),
 380                         flag);
 381}
 382
 383int user_ident_sufficiently_given(void)
 384{
 385#ifndef WINDOWS
 386        return (user_ident_explicitly_given & IDENT_MAIL_GIVEN);
 387#else
 388        return (user_ident_explicitly_given == IDENT_ALL_GIVEN);
 389#endif
 390}
 391
 392int git_ident_config(const char *var, const char *value, void *data)
 393{
 394        if (!strcmp(var, "user.name")) {
 395                if (!value)
 396                        return config_error_nonbool(var);
 397                strlcpy(git_default_name, value, sizeof(git_default_name));
 398                user_ident_explicitly_given |= IDENT_NAME_GIVEN;
 399                return 0;
 400        }
 401
 402        if (!strcmp(var, "user.email")) {
 403                if (!value)
 404                        return config_error_nonbool(var);
 405                strlcpy(git_default_email, value, sizeof(git_default_email));
 406                user_ident_explicitly_given |= IDENT_MAIL_GIVEN;
 407                return 0;
 408        }
 409
 410        return 0;
 411}