1999-12-02 02:42:23 -05:00
|
|
|
/* Read and parse the .netrc file to get hosts, accounts, and passwords.
|
2008-01-25 08:04:01 -05:00
|
|
|
Copyright (C) 1996, 2007, 2008 Free Software Foundation, Inc.
|
1999-12-02 02:42:23 -05:00
|
|
|
|
2001-05-27 15:35:15 -04:00
|
|
|
This file is part of GNU Wget.
|
1999-12-02 02:42:23 -05:00
|
|
|
|
2001-05-27 15:35:15 -04:00
|
|
|
GNU Wget is free software; you can redistribute it and/or modify
|
1999-12-02 02:42:23 -05:00
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-07-10 01:53:22 -04:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
1999-12-02 02:42:23 -05:00
|
|
|
(at your option) any later version.
|
|
|
|
|
2001-05-27 15:35:15 -04:00
|
|
|
GNU Wget is distributed in the hope that it will be useful,
|
1999-12-02 02:42:23 -05:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2007-07-10 01:53:22 -04:00
|
|
|
along with Wget. If not, see <http://www.gnu.org/licenses/>.
|
2002-05-17 22:16:36 -04:00
|
|
|
|
2007-11-28 03:05:33 -05:00
|
|
|
Additional permission under GNU GPL version 3 section 7
|
|
|
|
|
|
|
|
If you modify this program, or any covered work, by linking or
|
|
|
|
combining it with the OpenSSL project's OpenSSL library (or a
|
|
|
|
modified version of that library), containing parts covered by the
|
|
|
|
terms of the OpenSSL or SSLeay licenses, the Free Software Foundation
|
|
|
|
grants you additional permission to convey the resulting work.
|
|
|
|
Corresponding Source for a non-source form of such a combination
|
|
|
|
shall include the source code for the parts of OpenSSL used as well
|
|
|
|
as that of the covered work. */
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
/* This file used to be kept in synch with the code in Fetchmail, but
|
|
|
|
the latter has diverged since. */
|
|
|
|
|
2007-10-18 23:50:40 -04:00
|
|
|
#include "wget.h"
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2005-06-19 18:34:58 -04:00
|
|
|
#include <string.h>
|
1999-12-02 02:42:23 -05:00
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#include "utils.h"
|
|
|
|
#include "netrc.h"
|
|
|
|
#include "init.h"
|
|
|
|
|
|
|
|
#define NETRC_FILE_NAME ".netrc"
|
|
|
|
|
2007-02-02 04:35:08 -05:00
|
|
|
acc_t *netrc_list;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
2005-06-19 18:34:58 -04:00
|
|
|
static acc_t *parse_netrc (const char *);
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
/* Return the correct user and password, given the host, user (as
|
|
|
|
given in the URL), and password (as given in the URL). May return
|
|
|
|
NULL.
|
|
|
|
|
|
|
|
If SLACK_DEFAULT is set, allow looking for a "default" account.
|
|
|
|
You will typically turn it off for HTTP. */
|
|
|
|
void
|
|
|
|
search_netrc (const char *host, const char **acc, const char **passwd,
|
2007-08-02 23:38:21 -04:00
|
|
|
int slack_default)
|
1999-12-02 02:42:23 -05:00
|
|
|
{
|
|
|
|
acc_t *l;
|
|
|
|
static int processed_netrc;
|
|
|
|
|
|
|
|
if (!opt.netrc)
|
|
|
|
return;
|
|
|
|
/* Find ~/.netrc. */
|
|
|
|
if (!processed_netrc)
|
|
|
|
{
|
2001-04-29 06:53:55 -04:00
|
|
|
char *home = home_dir ();
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
netrc_list = NULL;
|
|
|
|
processed_netrc = 1;
|
|
|
|
if (home)
|
2007-08-02 23:38:21 -04:00
|
|
|
{
|
|
|
|
int err;
|
|
|
|
struct_stat buf;
|
|
|
|
char *path = (char *)alloca (strlen (home) + 1
|
|
|
|
+ strlen (NETRC_FILE_NAME) + 1);
|
|
|
|
sprintf (path, "%s/%s", home, NETRC_FILE_NAME);
|
|
|
|
xfree (home);
|
|
|
|
err = stat (path, &buf);
|
|
|
|
if (err == 0)
|
|
|
|
netrc_list = parse_netrc (path);
|
|
|
|
}
|
1999-12-02 02:42:23 -05:00
|
|
|
}
|
|
|
|
/* If nothing to do... */
|
|
|
|
if (!netrc_list)
|
|
|
|
return;
|
|
|
|
/* Acc and password found; all OK. */
|
|
|
|
if (*acc && *passwd)
|
|
|
|
return;
|
|
|
|
/* Some data not given -- try finding the host. */
|
|
|
|
for (l = netrc_list; l; l = l->next)
|
|
|
|
{
|
|
|
|
if (!l->host)
|
2007-08-02 23:38:21 -04:00
|
|
|
continue;
|
1999-12-02 02:42:23 -05:00
|
|
|
else if (!strcasecmp (l->host, host))
|
2007-08-02 23:38:21 -04:00
|
|
|
break;
|
1999-12-02 02:42:23 -05:00
|
|
|
}
|
|
|
|
if (l)
|
|
|
|
{
|
|
|
|
if (*acc)
|
2007-08-02 23:38:21 -04:00
|
|
|
{
|
|
|
|
/* Looking for password in .netrc. */
|
|
|
|
if (!strcmp (l->acc, *acc))
|
|
|
|
*passwd = l->passwd; /* usernames match; password OK */
|
|
|
|
else
|
|
|
|
*passwd = NULL; /* usernames don't match */
|
|
|
|
}
|
|
|
|
else /* NOT *acc */
|
|
|
|
{
|
|
|
|
/* If password was given, use it. The account is l->acc. */
|
|
|
|
*acc = l->acc;
|
|
|
|
if (l->passwd)
|
|
|
|
*passwd = l->passwd;
|
|
|
|
}
|
1999-12-02 02:42:23 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!slack_default)
|
2007-08-02 23:38:21 -04:00
|
|
|
return;
|
1999-12-02 02:42:23 -05:00
|
|
|
if (*acc)
|
2007-08-02 23:38:21 -04:00
|
|
|
return;
|
1999-12-02 02:42:23 -05:00
|
|
|
/* Try looking for the default account. */
|
|
|
|
for (l = netrc_list; l; l = l->next)
|
2007-08-02 23:38:21 -04:00
|
|
|
if (!l->host)
|
|
|
|
break;
|
1999-12-02 02:42:23 -05:00
|
|
|
if (!l)
|
2007-08-02 23:38:21 -04:00
|
|
|
return;
|
1999-12-02 02:42:23 -05:00
|
|
|
*acc = l->acc;
|
|
|
|
if (!*passwd)
|
2007-08-02 23:38:21 -04:00
|
|
|
*passwd = l->passwd;
|
1999-12-02 02:42:23 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef STANDALONE
|
2001-04-29 06:53:55 -04:00
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
1999-12-02 02:42:23 -05:00
|
|
|
/* Normally, these functions would be defined by your package. */
|
|
|
|
# define xmalloc malloc
|
2000-11-22 12:00:31 -05:00
|
|
|
# define xfree free
|
1999-12-02 02:42:23 -05:00
|
|
|
# define xstrdup strdup
|
|
|
|
|
2001-04-29 06:53:55 -04:00
|
|
|
# define xrealloc realloc
|
|
|
|
|
|
|
|
/* Read a line from FP. The function reallocs the storage as needed
|
|
|
|
to accomodate for any length of the line. Reallocs are done
|
1999-12-02 02:42:23 -05:00
|
|
|
storage exponentially, doubling the storage after each overflow to
|
2001-04-29 06:53:55 -04:00
|
|
|
minimize the number of calls to realloc() and fgets(). The newline
|
|
|
|
character at the end of line is retained.
|
1999-12-02 02:42:23 -05:00
|
|
|
|
2001-04-29 06:53:55 -04:00
|
|
|
After end-of-file is encountered without anything being read, NULL
|
|
|
|
is returned. NULL is also returned on error. To distinguish
|
|
|
|
between these two cases, use the stdio function ferror(). */
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
char *
|
|
|
|
read_whole_line (FILE *fp)
|
|
|
|
{
|
2001-04-29 06:53:55 -04:00
|
|
|
int length = 0;
|
|
|
|
int bufsize = 81;
|
2005-06-19 19:03:27 -04:00
|
|
|
char *line = xmalloc (bufsize);
|
2001-04-29 06:53:55 -04:00
|
|
|
|
|
|
|
while (fgets (line + length, bufsize - length, fp))
|
1999-12-02 02:42:23 -05:00
|
|
|
{
|
2001-04-29 06:53:55 -04:00
|
|
|
length += strlen (line + length);
|
|
|
|
assert (length > 0);
|
|
|
|
if (line[length - 1] == '\n')
|
2007-08-02 23:38:21 -04:00
|
|
|
break;
|
2001-04-29 06:53:55 -04:00
|
|
|
/* fgets() guarantees to read the whole line, or to use up the
|
|
|
|
space we've given it. We can double the buffer
|
|
|
|
unconditionally. */
|
|
|
|
bufsize <<= 1;
|
|
|
|
line = xrealloc (line, bufsize);
|
1999-12-02 02:42:23 -05:00
|
|
|
}
|
2001-04-29 06:53:55 -04:00
|
|
|
if (length == 0 || ferror (fp))
|
1999-12-02 02:42:23 -05:00
|
|
|
{
|
2001-04-29 06:53:55 -04:00
|
|
|
xfree (line);
|
1999-12-02 02:42:23 -05:00
|
|
|
return NULL;
|
|
|
|
}
|
2001-04-29 06:53:55 -04:00
|
|
|
if (length + 1 < bufsize)
|
|
|
|
/* Relieve the memory from our exponential greediness. We say
|
|
|
|
`length + 1' because the terminating \0 is not included in
|
|
|
|
LENGTH. We don't need to zero-terminate the string ourselves,
|
|
|
|
though, because fgets() does that. */
|
|
|
|
line = xrealloc (line, length + 1);
|
1999-12-02 02:42:23 -05:00
|
|
|
return line;
|
|
|
|
}
|
|
|
|
#endif /* STANDALONE */
|
|
|
|
|
|
|
|
/* Maybe add NEWENTRY to the account information list, LIST. NEWENTRY is
|
|
|
|
set to a ready-to-use acc_t, in any event. */
|
|
|
|
static void
|
|
|
|
maybe_add_to_list (acc_t **newentry, acc_t **list)
|
|
|
|
{
|
|
|
|
acc_t *a, *l;
|
|
|
|
a = *newentry;
|
|
|
|
l = *list;
|
|
|
|
|
|
|
|
/* We need an account name in order to add the entry to the list. */
|
|
|
|
if (a && ! a->acc)
|
|
|
|
{
|
|
|
|
/* Free any allocated space. */
|
2004-11-15 16:13:50 -05:00
|
|
|
xfree_null (a->host);
|
|
|
|
xfree_null (a->acc);
|
|
|
|
xfree_null (a->passwd);
|
1999-12-02 02:42:23 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (a)
|
2007-08-02 23:38:21 -04:00
|
|
|
{
|
|
|
|
/* Add the current machine into our list. */
|
|
|
|
a->next = l;
|
|
|
|
l = a;
|
|
|
|
}
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
/* Allocate a new acc_t structure. */
|
2005-06-19 19:03:27 -04:00
|
|
|
a = xmalloc (sizeof (acc_t));
|
1999-12-02 02:42:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Zero the structure, so that it is ready to use. */
|
|
|
|
memset (a, 0, sizeof(*a));
|
|
|
|
|
|
|
|
/* Return the new pointers. */
|
|
|
|
*newentry = a;
|
|
|
|
*list = l;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2000-03-02 09:16:12 -05:00
|
|
|
/* Helper function for the parser, shifts contents of
|
|
|
|
null-terminated string once character to the left.
|
|
|
|
Used in processing \ and " constructs in the netrc file */
|
|
|
|
static void
|
2002-04-11 13:49:32 -04:00
|
|
|
shift_left(char *string)
|
|
|
|
{
|
2000-03-02 09:16:12 -05:00
|
|
|
char *p;
|
|
|
|
|
|
|
|
for (p=string; *p; ++p)
|
|
|
|
*p = *(p+1);
|
|
|
|
}
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
/* Parse a .netrc file (as described in the ftp(1) manual page). */
|
|
|
|
static acc_t *
|
|
|
|
parse_netrc (const char *path)
|
|
|
|
{
|
|
|
|
FILE *fp;
|
2003-12-14 08:35:27 -05:00
|
|
|
char *line, *p, *tok;
|
|
|
|
const char *premature_token;
|
1999-12-02 02:42:23 -05:00
|
|
|
acc_t *current, *retval;
|
2000-03-02 09:16:12 -05:00
|
|
|
int ln, quote;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
/* The latest token we've seen in the file. */
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
tok_nothing, tok_account, tok_login, tok_macdef, tok_machine, tok_password
|
|
|
|
} last_token = tok_nothing;
|
|
|
|
|
|
|
|
current = retval = NULL;
|
|
|
|
|
|
|
|
fp = fopen (path, "r");
|
|
|
|
if (!fp)
|
|
|
|
{
|
|
|
|
fprintf (stderr, _("%s: Cannot read %s (%s).\n"), exec_name,
|
2007-08-02 23:38:21 -04:00
|
|
|
path, strerror (errno));
|
1999-12-02 02:42:23 -05:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Initialize the file data. */
|
|
|
|
ln = 0;
|
|
|
|
premature_token = NULL;
|
|
|
|
|
|
|
|
/* While there are lines in the file... */
|
2005-05-08 12:25:42 -04:00
|
|
|
while ((line = read_whole_line (fp)) != NULL)
|
1999-12-02 02:42:23 -05:00
|
|
|
{
|
|
|
|
ln ++;
|
|
|
|
|
|
|
|
/* Parse the line. */
|
|
|
|
p = line;
|
2000-03-02 09:16:12 -05:00
|
|
|
quote = 0;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
2002-01-16 19:59:13 -05:00
|
|
|
/* Skip leading whitespace. */
|
2007-10-14 17:46:24 -04:00
|
|
|
while (*p && c_isspace (*p))
|
2007-08-02 23:38:21 -04:00
|
|
|
p ++;
|
2002-01-16 19:59:13 -05:00
|
|
|
|
1999-12-02 02:42:23 -05:00
|
|
|
/* If the line is empty, then end any macro definition. */
|
|
|
|
if (last_token == tok_macdef && !*p)
|
2007-08-02 23:38:21 -04:00
|
|
|
/* End of macro if the line is empty. */
|
|
|
|
last_token = tok_nothing;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
/* If we are defining macros, then skip parsing the line. */
|
|
|
|
while (*p && last_token != tok_macdef)
|
2007-08-02 23:38:21 -04:00
|
|
|
{
|
|
|
|
/* Skip any whitespace. */
|
2007-10-14 17:46:24 -04:00
|
|
|
while (*p && c_isspace (*p))
|
2007-08-02 23:38:21 -04:00
|
|
|
p ++;
|
|
|
|
|
|
|
|
/* Discard end-of-line comments; also, stop processing if
|
|
|
|
the above `while' merely skipped trailing whitespace. */
|
|
|
|
if (*p == '#' || !*p)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* If the token starts with quotation mark, note this fact,
|
|
|
|
and squash the quotation character */
|
|
|
|
if (*p == '"'){
|
|
|
|
quote = 1;
|
|
|
|
shift_left (p);
|
|
|
|
}
|
|
|
|
|
|
|
|
tok = p;
|
|
|
|
|
|
|
|
/* Find the end of the token, handling quotes and escapes. */
|
2007-10-14 17:46:24 -04:00
|
|
|
while (*p && (quote ? *p != '"' : !c_isspace (*p))){
|
2007-08-02 23:38:21 -04:00
|
|
|
if (*p == '\\')
|
|
|
|
shift_left (p);
|
|
|
|
p ++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If field was quoted, squash the trailing quotation mark
|
|
|
|
and reset quote flag. */
|
|
|
|
if (quote)
|
|
|
|
{
|
|
|
|
shift_left (p);
|
|
|
|
quote = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Null-terminate the token, if it isn't already. */
|
|
|
|
if (*p)
|
|
|
|
*p ++ = '\0';
|
|
|
|
|
|
|
|
switch (last_token)
|
|
|
|
{
|
|
|
|
case tok_login:
|
|
|
|
if (current)
|
|
|
|
current->acc = xstrdup (tok);
|
|
|
|
else
|
|
|
|
premature_token = "login";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case tok_machine:
|
|
|
|
/* Start a new machine entry. */
|
|
|
|
maybe_add_to_list (¤t, &retval);
|
|
|
|
current->host = xstrdup (tok);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case tok_password:
|
|
|
|
if (current)
|
|
|
|
current->passwd = xstrdup (tok);
|
|
|
|
else
|
|
|
|
premature_token = "password";
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* We handle most of tok_macdef above. */
|
|
|
|
case tok_macdef:
|
|
|
|
if (!current)
|
|
|
|
premature_token = "macdef";
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* We don't handle the account keyword at all. */
|
|
|
|
case tok_account:
|
|
|
|
if (!current)
|
|
|
|
premature_token = "account";
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* We handle tok_nothing below this switch. */
|
|
|
|
case tok_nothing:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (premature_token)
|
|
|
|
{
|
|
|
|
fprintf (stderr, _("\
|
1999-12-02 02:42:23 -05:00
|
|
|
%s: %s:%d: warning: \"%s\" token appears before any machine name\n"),
|
2007-08-02 23:38:21 -04:00
|
|
|
exec_name, path, ln, premature_token);
|
|
|
|
premature_token = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (last_token != tok_nothing)
|
|
|
|
/* We got a value, so reset the token state. */
|
|
|
|
last_token = tok_nothing;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Fetch the next token. */
|
|
|
|
if (!strcmp (tok, "account"))
|
|
|
|
last_token = tok_account;
|
|
|
|
else if (!strcmp (tok, "default"))
|
|
|
|
{
|
|
|
|
maybe_add_to_list (¤t, &retval);
|
|
|
|
}
|
|
|
|
else if (!strcmp (tok, "login"))
|
|
|
|
last_token = tok_login;
|
|
|
|
|
|
|
|
else if (!strcmp (tok, "macdef"))
|
|
|
|
last_token = tok_macdef;
|
|
|
|
|
|
|
|
else if (!strcmp (tok, "machine"))
|
|
|
|
last_token = tok_machine;
|
|
|
|
|
|
|
|
else if (!strcmp (tok, "password"))
|
|
|
|
last_token = tok_password;
|
|
|
|
|
|
|
|
else
|
|
|
|
fprintf (stderr, _("%s: %s:%d: unknown token \"%s\"\n"),
|
|
|
|
exec_name, path, ln, tok);
|
|
|
|
}
|
|
|
|
}
|
1999-12-02 02:42:23 -05:00
|
|
|
|
2000-11-22 11:58:28 -05:00
|
|
|
xfree (line);
|
1999-12-02 02:42:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fclose (fp);
|
|
|
|
|
|
|
|
/* Finalize the last machine entry we found. */
|
|
|
|
maybe_add_to_list (¤t, &retval);
|
2000-11-22 11:58:28 -05:00
|
|
|
xfree (current);
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
/* Reverse the order of the list so that it appears in file order. */
|
|
|
|
current = retval;
|
|
|
|
retval = NULL;
|
|
|
|
while (current)
|
|
|
|
{
|
|
|
|
acc_t *saved_reference;
|
|
|
|
|
|
|
|
/* Change the direction of the pointers. */
|
|
|
|
saved_reference = current->next;
|
|
|
|
current->next = retval;
|
|
|
|
|
|
|
|
/* Advance to the next node. */
|
|
|
|
retval = current;
|
|
|
|
current = saved_reference;
|
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Free a netrc list. */
|
|
|
|
void
|
|
|
|
free_netrc(acc_t *l)
|
|
|
|
{
|
|
|
|
acc_t *t;
|
|
|
|
|
|
|
|
while (l)
|
|
|
|
{
|
|
|
|
t = l->next;
|
2003-11-02 14:56:37 -05:00
|
|
|
xfree_null (l->acc);
|
|
|
|
xfree_null (l->passwd);
|
|
|
|
xfree_null (l->host);
|
2000-11-22 11:58:28 -05:00
|
|
|
xfree (l);
|
1999-12-02 02:42:23 -05:00
|
|
|
l = t;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef STANDALONE
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
int
|
|
|
|
main (int argc, char **argv)
|
|
|
|
{
|
2005-02-23 17:21:04 -05:00
|
|
|
struct_stat sb;
|
1999-12-02 02:42:23 -05:00
|
|
|
char *program_name, *file, *target;
|
|
|
|
acc_t *head, *a;
|
|
|
|
|
|
|
|
if (argc < 2 || argc > 3)
|
|
|
|
{
|
|
|
|
fprintf (stderr, _("Usage: %s NETRC [HOSTNAME]\n"), argv[0]);
|
|
|
|
exit (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
program_name = argv[0];
|
|
|
|
file = argv[1];
|
|
|
|
target = argv[2];
|
|
|
|
|
|
|
|
if (stat (file, &sb))
|
|
|
|
{
|
|
|
|
fprintf (stderr, _("%s: cannot stat %s: %s\n"), argv[0], file,
|
2007-08-02 23:38:21 -04:00
|
|
|
strerror (errno));
|
1999-12-02 02:42:23 -05:00
|
|
|
exit (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
head = parse_netrc (file);
|
|
|
|
a = head;
|
|
|
|
while (a)
|
|
|
|
{
|
|
|
|
/* Skip if we have a target and this isn't it. */
|
|
|
|
if (target && a->host && strcmp (target, a->host))
|
2007-08-02 23:38:21 -04:00
|
|
|
{
|
|
|
|
a = a->next;
|
|
|
|
continue;
|
|
|
|
}
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
if (!target)
|
2007-08-02 23:38:21 -04:00
|
|
|
{
|
|
|
|
/* Print the host name if we have no target. */
|
|
|
|
if (a->host)
|
|
|
|
fputs (a->host, stdout);
|
|
|
|
else
|
|
|
|
fputs ("DEFAULT", stdout);
|
1999-12-02 02:42:23 -05:00
|
|
|
|
2007-08-02 23:38:21 -04:00
|
|
|
fputc (' ', stdout);
|
|
|
|
}
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
/* Print the account name. */
|
|
|
|
fputs (a->acc, stdout);
|
|
|
|
|
|
|
|
if (a->passwd)
|
2007-08-02 23:38:21 -04:00
|
|
|
{
|
|
|
|
/* Print the password, if there is any. */
|
|
|
|
fputc (' ', stdout);
|
|
|
|
fputs (a->passwd, stdout);
|
|
|
|
}
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
fputc ('\n', stdout);
|
|
|
|
|
|
|
|
/* Exit if we found the target. */
|
|
|
|
if (target)
|
2007-08-02 23:38:21 -04:00
|
|
|
exit (0);
|
1999-12-02 02:42:23 -05:00
|
|
|
a = a->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Exit with failure if we had a target, success otherwise. */
|
|
|
|
if (target)
|
|
|
|
exit (1);
|
|
|
|
|
|
|
|
exit (0);
|
|
|
|
}
|
|
|
|
#endif /* STANDALONE */
|