summaryrefslogtreecommitdiffstats
path: root/contrib/cvs/src/login.c
blob: 4ffce36d0fd954b2b7982d7007432d768d65e145 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
/*
 * Copyright (c) 1995, Cyclic Software, Bloomington, IN, USA
 * 
 * You may distribute under the terms of the GNU General Public License as
 * specified in the README file that comes with CVS.
 * 
 * Allow user to log in for an authenticating server.
 */

#include "cvs.h"
#include "getline.h"

#ifdef AUTH_CLIENT_SUPPORT   /* This covers the rest of the file. */

/* There seems to be very little agreement on which system header
   getpass is declared in.  With a lot of fancy autoconfiscation,
   we could perhaps detect this, but for now we'll just rely on
   _CRAY, since Cray is perhaps the only system on which our own
   declaration won't work (some Crays declare the 2#$@% thing as
   varadic, believe it or not).  On Cray, getpass will be declared
   in either stdlib.h or unistd.h.  */
#ifndef _CRAY
extern char *getpass ();
#endif

#ifndef CVS_PASSWORD_FILE 
#define CVS_PASSWORD_FILE ".cvspass"
#endif

/* If non-NULL, get_cvs_password() will just return this. */
static char *cvs_password = NULL;

static char *construct_cvspass_filename PROTO ((void));

/* The return value will need to be freed. */
static char *
construct_cvspass_filename ()
{
    char *homedir;
    char *passfile;

    /* Environment should override file. */
    if ((passfile = getenv ("CVS_PASSFILE")) != NULL)
	return xstrdup (passfile);

    /* Construct absolute pathname to user's password file. */
    /* todo: does this work under OS/2 ? */
    homedir = get_homedir ();
    if (! homedir)
    {
	error (1, errno, "could not find out home directory");
	return (char *) NULL;
    }

    passfile =
	(char *) xmalloc (strlen (homedir) + strlen (CVS_PASSWORD_FILE) + 3);
    strcpy (passfile, homedir);
#ifndef NO_SLASH_AFTER_HOME
    /* NO_SLASH_AFTER_HOME is defined for VMS, where foo:[bar]/.cvspass is not
       a legal filename but foo:[bar].cvspass is.  A more clean solution would
       be something more along the lines of a "join a directory to a filename"
       kind of thing....  */
    strcat (passfile, "/");
#endif
    strcat (passfile, CVS_PASSWORD_FILE);

    /* Safety first and last, Scouts. */
    if (isfile (passfile))
	/* xchmod() is too polite. */
	chmod (passfile, 0600);

    return passfile;
}

static const char *const login_usage[] =
{
    "Usage: %s %s\n",
    "(Specify the --help global option for a list of other help options)\n",
    NULL
};

/* Prompt for a password, and store it in the file "CVS/.cvspass".
 *
 * Because the user might be accessing multiple repositories, with
 * different passwords for each one, the format of ~/.cvspass is:
 *
 * user@host:/path Acleartext_password
 * user@host:/path Acleartext_password
 * ...
 *
 * Of course, the "user@" might be left off -- it's just based on the
 * value of CVSroot.
 *
 * The "A" before "cleartext_password" is a literal capital A.  It's a
 * version number indicating which form of scrambling we're doing on
 * the password -- someday we might provide something more secure than
 * the trivial encoding we do now, and when that day comes, it would
 * be nice to remain backward-compatible.
 *
 * Like .netrc, the file's permissions are the only thing preventing
 * it from being read by others.  Unlike .netrc, we will not be
 * fascist about it, at most issuing a warning, and never refusing to
 * work.
 */
int
login (argc, argv)
    int argc;
    char **argv;
{
    char *passfile;
    FILE *fp;
    char *typed_password, *found_password;
    char *linebuf = (char *) NULL;
    size_t linebuf_len;
    int root_len, already_entered = 0;
    int line_length;

    if (argc < 0)
	usage (login_usage);

    if (CVSroot_method != pserver_method)
    {
	error (0, 0, "can only use pserver method with `login' command");
	error (1, 0, "CVSROOT: %s", CVSroot_original);
    }

    if (! CVSroot_username)
    {
	error (0, 0, "CVSROOT \"%s\" is not fully-qualified.",
	       CVSroot_original);
	error (1, 0, "Please make sure to specify \"user@host\"!");
    }

    printf ("(Logging in to %s@%s)\n", CVSroot_username, CVSroot_hostname);
    fflush (stdout);

    passfile = construct_cvspass_filename ();
    typed_password = getpass ("CVS password: ");
    typed_password = scramble (typed_password);

    /* Force get_cvs_password() to use this one (when the client
     * confirms the new password with the server), instead of
     * consulting the file.  We make a new copy because cvs_password
     * will get zeroed by connect_to_server().  */

    cvs_password = xstrdup (typed_password);

    connect_to_pserver (NULL, NULL, 1, 0);

    /* IF we have a password for this "[user@]host:/path" already
     *  THEN
     *    IF it's the same as the password we read from the prompt
     *     THEN 
     *       do nothing
     *     ELSE
     *       replace the old password with the new one
     *  ELSE
     *    append new entry to the end of the file.
     */

    root_len = strlen (CVSroot_original);

    /* Yes, the method below reads the user's password file twice.  It's
       inefficient, but we're not talking about a gig of data here. */

    fp = CVS_FOPEN (passfile, "r");
    /* FIXME: should be printing a message if fp == NULL and not
       existence_error (errno).  */
    if (fp != NULL)
    {
	/* Check each line to see if we have this entry already. */
	while ((line_length = getline (&linebuf, &linebuf_len, fp)) >= 0)
        {
          if (strncmp (CVSroot_original, linebuf, root_len) == 0)
            {
		already_entered = 1;
		break;
            }
        }
	if (fclose (fp) < 0)
	    error (0, errno, "cannot close %s", passfile);
    }
    else if (!existence_error (errno))
	error (0, errno, "cannot open %s", passfile);

    if (already_entered)
    {
	/* This user/host has a password in the file already. */

	strtok (linebuf, " ");
	found_password = strtok (NULL, "\n");
	if (strcmp (found_password, typed_password))
        {
	    /* typed_password and found_password don't match, so we'll
	     * have to update passfile.  We replace the old password
	     * with the new one by writing a tmp file whose contents are
	     * exactly the same as passfile except that this one entry
	     * gets typed_password instead of found_password.  Then we
	     * rename the tmp file on top of passfile.
	     */
	    char *tmp_name;
	    FILE *tmp_fp;

	    tmp_name = cvs_temp_name ();
	    if ((tmp_fp = CVS_FOPEN (tmp_name, "w")) == NULL)
            {
		error (1, errno, "unable to open temp file %s", tmp_name);
		return 1;
            }
	    chmod (tmp_name, 0600);

	    fp = CVS_FOPEN (passfile, "r");
	    if (fp == NULL)
            {
		error (1, errno, "unable to open %s", passfile);
		if (linebuf)
		    free (linebuf);
		return 1;
            }
	    /* I'm not paranoid, they really ARE out to get me: */
	    chmod (passfile, 0600);

	    while ((line_length = getline (&linebuf, &linebuf_len, fp)) >= 0)
            {
		if (strncmp (CVSroot_original, linebuf, root_len))
		{
		    if (fprintf (tmp_fp, "%s", linebuf) == EOF)
			error (0, errno, "cannot write %s", tmp_name);
		}
		else
		{
		    if (fprintf (tmp_fp, "%s %s\n", CVSroot_original,
				 typed_password) == EOF)
			error (0, errno, "cannot write %s", tmp_name);
		}
            }
	    if (line_length < 0 && !feof (fp))
		error (0, errno, "cannot read %s", passfile);
            if (linebuf)
                free (linebuf);
	    if (fclose (tmp_fp) < 0)
		error (0, errno, "cannot close %s", tmp_name);
	    if (fclose (fp) < 0)
		error (0, errno, "cannot close %s", passfile);

	    /* FIXME: rename_file would make more sense (e.g. almost
	       always faster).  */
	    copy_file (tmp_name, passfile);
	    unlink_file (tmp_name);
	    chmod (passfile, 0600);

	    free (tmp_name);
        }
    }
    else
    {
	if (linebuf)
	    free (linebuf);
	if ((fp = CVS_FOPEN (passfile, "a")) == NULL)
        {
	    error (1, errno, "could not open %s", passfile);
	    free (passfile);
	    return 1;
        }

	if (fprintf (fp, "%s %s\n", CVSroot_original, typed_password) == EOF)
	    error (0, errno, "cannot write %s", passfile);
	if (fclose (fp) < 0)
	    error (0, errno, "cannot close %s", passfile);
    }

    /* Utter, total, raving paranoia, I know. */
    chmod (passfile, 0600);
    memset (typed_password, 0, strlen (typed_password));
    free (typed_password);

    free (passfile);
    free (cvs_password);
    cvs_password = NULL;
    return 0;
}

/* Returns the _scrambled_ password.  The server must descramble
   before hashing and comparing. */
char *
get_cvs_password ()
{
    int found_it = 0;
    int root_len;
    char *password;
    char *linebuf = (char *) NULL;
    size_t linebuf_len;
    FILE *fp;
    char *passfile;
    int line_length;

    /* If someone (i.e., login()) is calling connect_to_pserver() out of
       context, then assume they have supplied the correct, scrambled
       password. */
    if (cvs_password)
	return cvs_password;

    if (getenv ("CVS_PASSWORD") != NULL)
    {
	/* In previous versions of CVS one could specify a password in
	   CVS_PASSWORD.  This is a bad idea, because in BSD variants
	   of unix anyone can see the environment variable with 'ps'.
	   But for users who were using that feature we want to at
	   least let them know what is going on.  After printing this
	   warning, we should fall through to the regular error where
	   we tell them to run "cvs login" (unless they already ran
	   it, of course).  */
	error (0, 0, "CVS_PASSWORD is no longer supported; ignored");
    }

    /* Else get it from the file.  First make sure that the CVSROOT
       variable has the appropriate fields filled in. */

    if (CVSroot_method != pserver_method)
    {
	error (0, 0, "can only call GET_CVS_PASSWORD  with pserver method");
	error (1, 0, "CVSROOT: %s", CVSroot_original);
    }

    if (! CVSroot_username)
    {
	error (0, 0, "CVSROOT \"%s\" is not fully-qualified.",
	       CVSroot_original);
	error (1, 0, "Please make sure to specify \"user@host\"!");
    }

    passfile = construct_cvspass_filename ();
    fp = CVS_FOPEN (passfile, "r");
    if (fp == NULL)
    {
	error (0, errno, "could not open %s", passfile);
	free (passfile);
	error (1, 0, "use \"cvs login\" to log in first");
    }

    root_len = strlen (CVSroot_original);

    /* Check each line to see if we have this entry already. */
    while ((line_length = getline (&linebuf, &linebuf_len, fp)) >= 0)
    {
	if (strncmp (CVSroot_original, linebuf, root_len) == 0)
        {
	    /* This is it!  So break out and deal with linebuf. */
	    found_it = 1;
	    break;
        }
    }
    if (line_length < 0 && !feof (fp))
	error (0, errno, "cannot read %s", passfile);
    if (fclose (fp) < 0)
	error (0, errno, "cannot close %s", passfile);

    if (found_it)
    {
	/* linebuf now contains the line with the password. */
	char *tmp;

	strtok (linebuf, " ");
	password = strtok (NULL, "\n");

	/* Give it permanent storage. */
	tmp = xstrdup (password);
	memset (password, 0, strlen (password));
	free (linebuf);
	return tmp;
    }
    else
    {
        if (linebuf)
            free (linebuf);
	error (0, 0, "cannot find password");
	error (1, 0, "use \"cvs login\" to log in first");
    }
    /* NOTREACHED */
    return NULL;
}

static const char *const logout_usage[] =
{
    "Usage: %s %s\n",
    "(Specify the --help global option for a list of other help options)\n",
    NULL
};

/* Remove any entry for the CVSRoot repository found in "CVS/.cvspass". */
int
logout (argc, argv)
    int argc;
    char **argv;
{
    char *passfile;
    FILE *fp;
    char *tmp_name;
    FILE *tmp_fp;
    char *linebuf = (char *) NULL;
    size_t linebuf_len;
    int root_len, found = 0;
    int line_length;

    if (argc < 0)
	usage (logout_usage);

    if (CVSroot_method != pserver_method)
    {
	error (0, 0, "can only use pserver method with `logout' command");
	error (1, 0, "CVSROOT: %s", CVSroot_original);
    }
    
    if (! CVSroot_username)
    {
	error (0, 0, "CVSROOT \"%s\" is not fully-qualified.",
	       CVSroot_original);
	error (1, 0, "Please make sure to specify \"user@host\"!");
    }

    /* Hmm.  Do we want a variant of this command which deletes _all_
       the entries from the current .cvspass?  Might be easier to
       remember than "rm ~/.cvspass" but then again if people are
       mucking with HOME (common in Win95 as the system doesn't set
       it), then this variant of "cvs logout" might give a false sense
       of security, in that it wouldn't delete entries from any
       .cvspass files but the current one.  */

    printf ("(Logging out of %s@%s)\n", CVSroot_username, CVSroot_hostname);
    fflush (stdout);

    /* IF we have a password for this "[user@]host:/path" already
     *  THEN
     *    drop the entry
     *  ELSE
     *    do nothing
     */

    passfile = construct_cvspass_filename ();
    tmp_name = cvs_temp_name ();
    if ((tmp_fp = CVS_FOPEN (tmp_name, "w")) == NULL)
    {
	error (1, errno, "unable to open temp file %s", tmp_name);
	return 1;
    }
    chmod (tmp_name, 0600);

    root_len = strlen (CVSroot_original);

    fp = CVS_FOPEN (passfile, "r");
    if (fp == NULL)
        error (1, errno, "Error opening %s", passfile);

    /* Check each line to see if we have this entry. */
    /* Copy only those lines that do not match this entry */
    while ((line_length = getline (&linebuf, &linebuf_len, fp)) >= 0)
    {
	if (strncmp (CVSroot_original, linebuf, root_len))
	{
	    if (fprintf (tmp_fp, "%s", linebuf) == EOF)
		error (0, errno, "cannot write %s", tmp_name);
	}
	else
	    found = 1;
    }
    if (line_length < 0 && !feof (fp))
	error (0, errno, "cannot read %s", passfile);

    if (linebuf)
        free (linebuf);
    if (fclose (fp) < 0)
	error (0, errno, "cannot close %s", passfile);
    if (fclose (tmp_fp) < 0)
	error (0, errno, "cannot close %s", tmp_name);

    if (! found) 
    {
	printf ("Entry not found for %s\n", CVSroot_original);
	unlink_file (tmp_name);
    }
    else
    {
	/* FIXME: rename_file would make more sense (e.g. almost
	   always faster).  */
	copy_file (tmp_name, passfile);
	unlink_file (tmp_name);
	chmod (passfile, 0600);
    }
    return 0;
}

#endif /* AUTH_CLIENT_SUPPORT from beginning of file. */
OpenPOWER on IntegriCloud