1 /* ruserpass.c -- parse .netrc-format file.
3 * Portions of this code are
4 * Copyright (c) 1985 Regents of the University of California.
7 * Redistribution and use in source and binary forms are permitted
8 * provided that the above copyright notice and this paragraph are
9 * duplicated in all such forms and that any documentation,
10 * advertising materials, and other materials related to such
11 * distribution and use acknowledge that the software was developed
12 * by the University of California, Berkeley. The name of the
13 * University may not be used to endorse or promote products derived
14 * from this software without specific prior written permission.
15 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
17 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
19 * Portions of this code are Copyright (c) 2013, by the authors of
20 * nmh. See the COPYRIGHT file in the root directory of the nmh
21 * distribution for complete copyright information.
39 #define MAX_TOKVAL_SIZE 1024 /* Including terminating NUL. */
46 static struct toktab toktabs
[] = {
48 { "default", DEFAULT
},
50 { "password", PASSWD
},
52 { "account", ACCOUNT
},
61 static int token(char *);
65 ruserpass(const char *host
, char **aname
, char **apass
, int flags
)
67 int t
, usedefault
= 0;
70 init_credentials_file ();
72 cfile
= fopen (credentials_file
, "r");
75 perror (credentials_file
);
77 char tokval
[MAX_TOKVAL_SIZE
];
80 while ((t
= token(tokval
))) {
88 if (token(tokval
) != ID
)
91 * Allow match either for user's host name.
93 if (strcasecmp(host
, tokval
) == 0)
98 while ((t
= token(tokval
)) && t
!= MACH
&& t
!= DEFAULT
) {
101 if (token(tokval
) && *aname
== 0)
102 *aname
= mh_xstrdup(tokval
);
106 if (!credentials_no_perm_check
&&
107 fstat(fileno(cfile
), &stb
) >= 0 &&
108 (stb
.st_mode
& 077) != 0) {
109 /* We make this a fatal error to force the
110 user to correct it. */
111 inform("group or other permissions, %#o, "
112 "forbidden: %s", stb
.st_mode
, credentials_file
);
113 adios(NULL
, "Remove password or correct file "
116 if (token(tokval
) && *apass
== 0)
117 *apass
= mh_xstrdup(tokval
);
129 "Unknown keyword %s in credentials file %s\n",
130 tokval
, credentials_file
);
139 if (!*aname
&& ! (flags
& RUSERPASS_NO_PROMPT_USER
)) {
143 if ((myname
= getlogin()) == NULL
) {
146 if ((pp
= getpwuid (getuid())) != NULL
)
147 myname
= pp
->pw_name
;
149 printf("Name (%s:%s): ", host
, myname
);
151 if (fgets(tmp
, sizeof tmp
, stdin
) == NULL
) {
152 advise ("tmp", "fgets");
154 trim_suffix_c(tmp
, '\n');
155 if (*tmp
!= '\0' || myname
== NULL
) {
159 *aname
= mh_xstrdup(myname
);
162 if (!*apass
&& ! (flags
& RUSERPASS_NO_PROMPT_PASSWORD
)) {
166 snprintf(prompt
, sizeof(prompt
), "Password (%s:%s): ", host
, *aname
);
167 mypass
= nmh_getpass(prompt
);
169 if (*mypass
== '\0') {
173 *aname
= mh_xstrdup(mypass
);
182 const char normalStop
[] = "\t\n ,"; /* Each breaks a word. */
187 if (feof(cfile
) || ferror(cfile
))
191 while ((c
= getc(cfile
)) != EOF
&& c
&& strchr(stop
, c
))
198 /* FIXME: Where is the quoted-string syntax of netrc documented?
199 * This code treats «"foo""bar"» as two tokens without further
203 /* Might be backslash. Get it again later. It's handled then. */
204 if (ungetc(c
, cfile
) == EOF
)
207 while ((c
= getc(cfile
)) != EOF
&& c
&& !strchr(stop
, c
)) {
208 if (c
== '\\' && (c
= getc(cfile
)) == EOF
)
209 return TOK_EOF
; /* Discard whole token. */
212 if (cp
- tokval
> MAX_TOKVAL_SIZE
-1) {
213 adios(NULL
, "credential tokens restricted to length %d",
214 MAX_TOKVAL_SIZE
- 1);
219 for (t
= toktabs
; t
->tokstr
; t
++)
220 if (!strcmp(t
->tokstr
, tokval
))