2 * Portions of this code are
3 * Copyright (c) 1985 Regents of the University of California.
6 * Redistribution and use in source and binary forms are permitted
7 * provided that the above copyright notice and this paragraph are
8 * duplicated in all such forms and that any documentation,
9 * advertising materials, and other materials related to such
10 * distribution and use acknowledge that the software was developed
11 * by the University of California, Berkeley. The name of the
12 * University may not be used to endorse or promote products derived
13 * from this software without specific prior written permission.
14 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
16 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
18 * Portions of this code are Copyright (c) 2013, by the authors of
19 * nmh. See the COPYRIGHT file in the root directory of the nmh
20 * distribution for complete copyright information.
38 #define MAX_TOKVAL_SIZE 1024 /* Including terminating NUL. */
45 static struct toktab toktabs
[] = {
47 { "default", DEFAULT
},
49 { "password", PASSWD
},
51 { "account", ACCOUNT
},
60 static int token(char *);
64 ruserpass(const char *host
, char **aname
, char **apass
, int flags
)
66 int t
, usedefault
= 0;
69 init_credentials_file ();
71 cfile
= fopen (credentials_file
, "r");
74 perror (credentials_file
);
76 char tokval
[MAX_TOKVAL_SIZE
];
79 while ((t
= token(tokval
))) {
87 if (token(tokval
) != ID
)
90 * Allow match either for user's host name.
92 if (strcasecmp(host
, tokval
) == 0)
97 while ((t
= token(tokval
)) && t
!= MACH
&& t
!= DEFAULT
) {
100 if (token(tokval
) && *aname
== 0)
101 *aname
= mh_xstrdup(tokval
);
105 if (!credentials_no_perm_check
&&
106 fstat(fileno(cfile
), &stb
) >= 0 &&
107 (stb
.st_mode
& 077) != 0) {
108 /* We make this a fatal error to force the
109 user to correct it. */
110 advise(NULL
, "group or other permissions, %#o, "
111 "forbidden: %s", stb
.st_mode
, credentials_file
);
112 adios(NULL
, "Remove password or correct file "
115 if (token(tokval
) && *apass
== 0)
116 *apass
= mh_xstrdup(tokval
);
128 "Unknown keyword %s in credentials file %s\n",
129 tokval
, credentials_file
);
138 if (!*aname
&& ! (flags
& RUSERPASS_NO_PROMPT_USER
)) {
142 if ((myname
= getlogin()) == NULL
) {
145 if ((pp
= getpwuid (getuid())) != NULL
)
146 myname
= pp
->pw_name
;
148 printf("Name (%s:%s): ", host
, myname
);
150 if (fgets(tmp
, sizeof tmp
, stdin
) == NULL
) {
151 advise ("tmp", "fgets");
153 trim_suffix_c(tmp
, '\n');
154 if (*tmp
!= '\0' || myname
== NULL
) {
158 *aname
= mh_xstrdup(myname
);
161 if (!*apass
&& ! (flags
& RUSERPASS_NO_PROMPT_PASSWORD
)) {
165 snprintf(prompt
, sizeof(prompt
), "Password (%s:%s): ", host
, *aname
);
166 mypass
= nmh_getpass(prompt
);
168 if (*mypass
== '\0') {
172 *aname
= mh_xstrdup(mypass
);
181 const char normalStop
[] = "\t\n ,"; /* Each breaks a word. */
186 if (feof(cfile
) || ferror(cfile
))
190 while ((c
= getc(cfile
)) != EOF
&& c
&& strchr(stop
, c
))
197 /* FIXME: Where is the quoted-string syntax of netrc documented?
198 * This code treats «"foo""bar"» as two tokens without further
202 /* Might be backslash. Get it again later. It's handled then. */
203 if (ungetc(c
, cfile
) == EOF
)
206 while ((c
= getc(cfile
)) != EOF
&& c
&& !strchr(stop
, c
)) {
207 if (c
== '\\' && (c
= getc(cfile
)) == EOF
)
208 return TOK_EOF
; /* Discard whole token. */
211 if (cp
- tokval
> MAX_TOKVAL_SIZE
-1) {
212 adios(NULL
, "credential tokens restricted to length %d",
213 MAX_TOKVAL_SIZE
- 1);
218 for (t
= toktabs
; t
->tokstr
; t
++)
219 if (!strcmp(t
->tokstr
, tokval
))