[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: svn commit: r32132 - in trunk/subversion: include include/private libsvn_auth_gnome_keyring libsvn_ra libsvn_ra_neon libsvn_subr

From: Karl Fogel <kfogel_at_red-bean.com>
Date: Tue, 15 Jul 2008 16:36:51 -0400

Daniel Shahaf <d.s_at_daniel.shahaf.name> writes:
>> + /* Don't store passphrase in any form if the user has told
>> + us not to do so. */
>> + if (! dont_store_passphrase)
>> + {
>> + svn_boolean_t may_save_passphrase = FALSE;
>> +
>> + /* If the passphrase is going to be stored encrypted, go right
>> + ahead and store it to disk. Else determine whether saving
>> + in plaintext is OK. */
>> + if (strcmp(passtype, SVN_AUTH__GNOME_KEYRING_PASSWORD_TYPE) == 0)
>> + {
>
> Why do we special-case gnome here? In simple_providers.c we have four
> providers listed here:
>
> /* If the password is going to be stored encrypted, go right
> * ahead and store it to disk. Else determine whether saving
> * in plaintext is OK. */
> if (strcmp(passtype, SVN_AUTH__WINCRYPT_PASSWORD_TYPE) == 0
> || strcmp(passtype, SVN_AUTH__KEYCHAIN_PASSWORD_TYPE) == 0
> || strcmp(passtype, SVN_AUTH__KWALLET_PASSWORD_TYPE) == 0
> || strcmp(passtype, SVN_AUTH__GNOME_KEYRING_PASSWORD_TYPE) == 0)
>
> And, indeed, this function and the simple_providers.c functions (e.g.
> svn_auth__simple_save_creds_helper) seem very similar, almost duplicates
> of each other. (I said that on IRC, but repeating here for completion.)

Thanks. Yes, as I mentioned in my mail (sent just a few moments ago,
http://subversion.tigris.org/servlets/ReadMsg?list=dev&msgNo=141076),
there's a lot of opportunity for abstraction/unification here.

I assumed there was some difference between a password and a client-cert
passphrase -- like: Gnome Keyring has some way of string the latter,
whereas perhaps other systems don't, or have to do it by overloading
their regular password-storage mechanism, which results in some kind of
UI weirdness?

But I don't know for sure. I have this sneaking memory that Senthil
actually antcipated this question and told me the reason, too, but I
can't remember it now. Senthil?

-Karl

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe_at_subversion.tigris.org
For additional commands, e-mail: dev-help_at_subversion.tigris.org
Received on 2008-07-15 22:37:15 CEST

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.