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
)
70 init_credentials_file ();
72 cfile
= fopen (credentials_file
, "r");
75 perror (credentials_file
);
77 char tokval
[MAX_TOKVAL_SIZE
];
80 bool usedefault
= false;
81 while ((t
= token(tokval
))) {
89 if (token(tokval
) != ID
)
92 * Allow match either for user's host name.
94 if (strcasecmp(host
, tokval
) == 0)
99 while ((t
= token(tokval
)) && t
!= MACH
&& t
!= DEFAULT
) {
102 if (token(tokval
) && *aname
== 0)
103 *aname
= mh_xstrdup(tokval
);
107 if (!credentials_no_perm_check
&&
108 fstat(fileno(cfile
), &stb
) >= 0 &&
109 (stb
.st_mode
& 077) != 0) {
110 /* We make this a fatal error to force the
111 user to correct it. */
112 inform("group or other permissions, %#o, "
113 "forbidden: %s", stb
.st_mode
, credentials_file
);
114 die("Remove password or correct file "
117 if (token(tokval
) && *apass
== 0)
118 *apass
= mh_xstrdup(tokval
);
130 "Unknown keyword %s in credentials file %s\n",
131 tokval
, credentials_file
);
140 if (!*aname
&& ! (flags
& RUSERPASS_NO_PROMPT_USER
)) {
144 if ((myname
= getlogin()) == NULL
) {
147 if ((pp
= getpwuid (getuid())) != NULL
)
148 myname
= pp
->pw_name
;
150 printf("Name (%s:%s): ", host
, myname
);
152 if (fgets(tmp
, sizeof tmp
, stdin
) == NULL
) {
153 advise ("tmp", "fgets");
155 trim_suffix_c(tmp
, '\n');
156 if (*tmp
!= '\0' || myname
== NULL
) {
160 *aname
= mh_xstrdup(myname
);
163 if (!*apass
&& ! (flags
& RUSERPASS_NO_PROMPT_PASSWORD
)) {
167 snprintf(prompt
, sizeof(prompt
), "Password (%s:%s): ", host
, *aname
);
168 mypass
= nmh_getpass(prompt
);
170 if (*mypass
== '\0') {
174 *aname
= mh_xstrdup(mypass
);
183 const char normalStop
[] = "\t\n ,"; /* Each breaks a word. */
188 if (feof(cfile
) || ferror(cfile
))
192 while ((c
= getc(cfile
)) != EOF
&& c
&& strchr(stop
, c
))
199 /* FIXME: Where is the quoted-string syntax of netrc documented?
200 * This code treats «"foo""bar"» as two tokens without further
204 /* Might be backslash. Get it again later. It's handled then. */
205 if (ungetc(c
, cfile
) == EOF
)
208 while ((c
= getc(cfile
)) != EOF
&& c
&& !strchr(stop
, c
)) {
209 if (c
== '\\' && (c
= getc(cfile
)) == EOF
)
210 return TOK_EOF
; /* Discard whole token. */
213 if (cp
- tokval
> MAX_TOKVAL_SIZE
-1) {
214 die("credential tokens restricted to length %d",
215 MAX_TOKVAL_SIZE
- 1);
220 for (t
= toktabs
; t
->tokstr
; t
++)
221 if (!strcmp(t
->tokstr
, tokval
))