Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 157809 Details for
Bug 209294
openrc fails pppoe (password problems)
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
passwordfd-read-early.patch
passwordfd-read-early.patch (text/plain), 1.93 KB, created by
Alin Năstac (RETIRED)
on 2008-06-20 18:34:06 UTC
(
hide
)
Description:
passwordfd-read-early.patch
Filename:
MIME Type:
Creator:
Alin Năstac (RETIRED)
Created:
2008-06-20 18:34:06 UTC
Size:
1.93 KB
patch
obsolete
>diff -Nru ppp-2.4.4.orig/pppd/plugins/passwordfd.c ppp-2.4.4/pppd/plugins/passwordfd.c >--- ppp-2.4.4.orig/pppd/plugins/passwordfd.c 2002-02-12 01:55:25.000000000 +0100 >+++ ppp-2.4.4/pppd/plugins/passwordfd.c 2008-06-20 20:26:30.000000000 +0200 >@@ -16,11 +16,11 @@ > > char pppd_version[] = VERSION; > >-static int passwdfd = -1; > static char save_passwd[MAXSECRETLEN]; > >+static int readpassword __P((char **)); > static option_t options[] = { >- { "passwordfd", o_int, &passwdfd, >+ { "passwordfd", o_special, (void *)readpassword, > "Receive password on this file descriptor" }, > { NULL } > }; >@@ -30,43 +30,38 @@ > return 1; > } > >-static int pwfd_passwd (char *user, char *passwd) >+static int readpassword(char **argv) > { >- int readgood, red; >- >- if (passwdfd == -1) >- return -1; >- >- if (passwd == NULL) >- return 1; >- >- if (passwdfd == -2) { >- strcpy (passwd, save_passwd); >- return 1; >+ char *arg = *argv; >+ int passwdfd = -1; >+ int chunk, len; >+ >+ if (sscanf(arg, "%d", &passwdfd) != 1 || passwdfd < 0) >+ { >+ error ("\"%s\" is not a valid file descriptor number", arg); >+ return 0; > } > >- readgood = 0; >+ len = 0; > do { >- red = read (passwdfd, passwd + readgood, MAXSECRETLEN - 1 - readgood); >- if (red == 0) >- break; >- if (red < 0) { >- error ("Can't read secret from fd\n"); >- readgood = -1; >+ chunk = read (passwdfd, save_passwd + len, MAXSECRETLEN - 1 - len); >+ if (chunk == 0) > break; >+ if (chunk < 0) { >+ error ("Can't read secret from fd %d", passwdfd); >+ return 0; > } >- readgood += red; >- } while (readgood < MAXSECRETLEN - 1); >- >+ len += chunk; >+ } while (len < MAXSECRETLEN - 1); >+ save_passwd[len] = 0; > close (passwdfd); > >- if (readgood < 0) >- return 0; >- >- passwd[readgood] = 0; >- strcpy (save_passwd, passwd); >- passwdfd = -2; >+ return 1; >+} > >+static int pwfd_passwd (char *user, char *passwd) >+{ >+ strcpy (passwd, save_passwd); > return 1; > } >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 209294
:
142962
|
156991
|
157049
| 157809