2011-12-10 11:31:11 +01:00
|
|
|
#ifndef CREDENTIAL_H
|
|
|
|
#define CREDENTIAL_H
|
|
|
|
|
|
|
|
#include "string-list.h"
|
|
|
|
|
2019-11-17 22:04:53 +01:00
|
|
|
/**
|
|
|
|
* The credentials API provides an abstracted way of gathering username and
|
|
|
|
* password credentials from the user.
|
|
|
|
*
|
|
|
|
* Typical setup
|
|
|
|
* -------------
|
|
|
|
*
|
|
|
|
* ------------
|
|
|
|
* +-----------------------+
|
|
|
|
* | Git code (C) |--- to server requiring --->
|
|
|
|
* | | authentication
|
|
|
|
* |.......................|
|
|
|
|
* | C credential API |--- prompt ---> User
|
|
|
|
* +-----------------------+
|
|
|
|
* ^ |
|
|
|
|
* | pipe |
|
|
|
|
* | v
|
|
|
|
* +-----------------------+
|
|
|
|
* | Git credential helper |
|
|
|
|
* +-----------------------+
|
|
|
|
* ------------
|
|
|
|
*
|
|
|
|
* The Git code (typically a remote-helper) will call the C API to obtain
|
|
|
|
* credential data like a login/password pair (credential_fill). The
|
|
|
|
* API will itself call a remote helper (e.g. "git credential-cache" or
|
|
|
|
* "git credential-store") that may retrieve credential data from a
|
|
|
|
* store. If the credential helper cannot find the information, the C API
|
|
|
|
* will prompt the user. Then, the caller of the API takes care of
|
|
|
|
* contacting the server, and does the actual authentication.
|
|
|
|
*
|
|
|
|
* C API
|
|
|
|
* -----
|
|
|
|
*
|
|
|
|
* The credential C API is meant to be called by Git code which needs to
|
|
|
|
* acquire or store a credential. It is centered around an object
|
|
|
|
* representing a single credential and provides three basic operations:
|
|
|
|
* fill (acquire credentials by calling helpers and/or prompting the user),
|
|
|
|
* approve (mark a credential as successfully used so that it can be stored
|
|
|
|
* for later use), and reject (mark a credential as unsuccessful so that it
|
|
|
|
* can be erased from any persistent storage).
|
|
|
|
*
|
|
|
|
* Example
|
|
|
|
* ~~~~~~~
|
|
|
|
*
|
|
|
|
* The example below shows how the functions of the credential API could be
|
|
|
|
* used to login to a fictitious "foo" service on a remote host:
|
|
|
|
*
|
|
|
|
* -----------------------------------------------------------------------
|
|
|
|
* int foo_login(struct foo_connection *f)
|
|
|
|
* {
|
|
|
|
* int status;
|
|
|
|
* // Create a credential with some context; we don't yet know the
|
|
|
|
* // username or password.
|
|
|
|
*
|
|
|
|
* struct credential c = CREDENTIAL_INIT;
|
|
|
|
* c.protocol = xstrdup("foo");
|
|
|
|
* c.host = xstrdup(f->hostname);
|
|
|
|
*
|
|
|
|
* // Fill in the username and password fields by contacting
|
|
|
|
* // helpers and/or asking the user. The function will die if it
|
|
|
|
* // fails.
|
|
|
|
* credential_fill(&c);
|
|
|
|
*
|
|
|
|
* // Otherwise, we have a username and password. Try to use it.
|
|
|
|
*
|
|
|
|
* status = send_foo_login(f, c.username, c.password);
|
|
|
|
* switch (status) {
|
|
|
|
* case FOO_OK:
|
|
|
|
* // It worked. Store the credential for later use.
|
|
|
|
* credential_accept(&c);
|
|
|
|
* break;
|
|
|
|
* case FOO_BAD_LOGIN:
|
|
|
|
* // Erase the credential from storage so we don't try it again.
|
|
|
|
* credential_reject(&c);
|
|
|
|
* break;
|
|
|
|
* default:
|
|
|
|
* // Some other error occurred. We don't know if the
|
|
|
|
* // credential is good or bad, so report nothing to the
|
|
|
|
* // credential subsystem.
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
* // Free any associated resources.
|
|
|
|
* credential_clear(&c);
|
|
|
|
*
|
|
|
|
* return status;
|
|
|
|
* }
|
|
|
|
* -----------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This struct represents a single username/password combination
|
|
|
|
* along with any associated context. All string fields should be
|
|
|
|
* heap-allocated (or NULL if they are not known or not applicable).
|
|
|
|
* The meaning of the individual context fields is the same as
|
|
|
|
* their counterparts in the helper protocol.
|
|
|
|
*
|
|
|
|
* This struct should always be initialized with `CREDENTIAL_INIT` or
|
|
|
|
* `credential_init`.
|
|
|
|
*/
|
2011-12-10 11:31:11 +01:00
|
|
|
struct credential {
|
2019-11-17 22:04:53 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A `string_list` of helpers. Each string specifies an external
|
|
|
|
* helper which will be run, in order, to either acquire or store
|
|
|
|
* credentials. This list is filled-in by the API functions
|
|
|
|
* according to the corresponding configuration variables before
|
|
|
|
* consulting helpers, so there usually is no need for a caller to
|
|
|
|
* modify the helpers field at all.
|
|
|
|
*/
|
2011-12-10 11:31:11 +01:00
|
|
|
struct string_list helpers;
|
2019-11-17 22:04:53 +01:00
|
|
|
|
2011-12-10 11:31:24 +01:00
|
|
|
unsigned approved:1,
|
credential: make relevance of http path configurable
When parsing a URL into a credential struct, we carefully
record each part of the URL, including the path on the
remote host, and use the result as part of the credential
context.
This had two practical implications:
1. Credential helpers which store a credential for later
access are likely to use the "path" portion as part of
the storage key. That means that a request to
https://example.com/foo.git
would not use the same credential that was stored in an
earlier request for:
https://example.com/bar.git
2. The prompt shown to the user includes all relevant
context, including the path.
In most cases, however, users will have a single password
per host. The behavior in (1) will be inconvenient, and the
prompt in (2) will be overly long.
This patch introduces a config option to toggle the
relevance of http paths. When turned on, we use the path as
before. When turned off, we drop the path component from the
context: helpers don't see it, and it does not appear in the
prompt.
This is nothing you couldn't do with a clever credential
helper at the start of your stack, like:
[credential "http://"]
helper = "!f() { grep -v ^path= ; }; f"
helper = your_real_helper
But doing this:
[credential]
useHttpPath = false
is way easier and more readable. Furthermore, since most
users will want the "off" behavior, that is the new default.
Users who want it "on" can set the variable (either for all
credentials, or just for a subset using
credential.*.useHttpPath).
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2011-12-10 11:31:34 +01:00
|
|
|
configured:1,
|
credential: let helpers tell us to quit
When we are trying to fill a credential, we loop over the
set of defined credential-helpers, then fall back to running
askpass, and then finally prompt on the terminal. Helpers
which cannot find a credential are free to tell us nothing,
but they cannot currently ask us to stop prompting.
This patch lets them provide a "quit" attribute, which asks
us to stop the process entirely (avoiding running more
helpers, as well as the askpass/terminal prompt).
This has a few possible uses:
1. A helper which prompts the user itself (e.g., in a
dialog) can provide a "cancel" button to the user to
stop further prompts.
2. Some helpers may know that prompting cannot possibly
work. For example, if their role is to broker a ticket
from an external auth system and that auth system
cannot be contacted, there is no point in continuing
(we need a ticket to authenticate, and the user cannot
provide one by typing it in).
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2014-12-04 04:46:48 +01:00
|
|
|
quit:1,
|
credential: use the last matching username in the config
Everywhere else in the codebase, we use the rule that the last matching
configuration option is the one that takes effect. This is helpful
because it allows more specific configuration settings (e.g., per-repo
configuration) to override less specific settings (e.g., per-user
configuration).
However, in the credential code, we didn't honor this setting, and
instead picked the first setting we had, and stuck with it. This was
likely to ensure we picked the value from the URL, which we want to
honor over the configuration.
It's possible to do both, though, so let's check if the value is the one
we've gotten over our protocol connection, which if present will have
come from the URL, and keep it if so. Otherwise, let's overwrite the
value with the latest version we've got from the configuration, so we
keep the last configuration value.
Signed-off-by: brian m. carlson <bk2204@github.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2020-02-20 03:24:12 +01:00
|
|
|
use_http_path:1,
|
|
|
|
username_from_proto:1;
|
2011-12-10 11:31:11 +01:00
|
|
|
|
|
|
|
char *username;
|
|
|
|
char *password;
|
|
|
|
char *protocol;
|
|
|
|
char *host;
|
|
|
|
char *path;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define CREDENTIAL_INIT { STRING_LIST_INIT_DUP }
|
|
|
|
|
2019-11-17 22:04:53 +01:00
|
|
|
/* Initialize a credential structure, setting all fields to empty. */
|
2011-12-10 11:31:11 +01:00
|
|
|
void credential_init(struct credential *);
|
2019-11-17 22:04:53 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Free any resources associated with the credential structure, returning
|
|
|
|
* it to a pristine initialized state.
|
|
|
|
*/
|
2011-12-10 11:31:11 +01:00
|
|
|
void credential_clear(struct credential *);
|
|
|
|
|
2019-11-17 22:04:53 +01:00
|
|
|
/**
|
|
|
|
* Instruct the credential subsystem to fill the username and
|
|
|
|
* password fields of the passed credential struct by first
|
|
|
|
* consulting helpers, then asking the user. After this function
|
|
|
|
* returns, the username and password fields of the credential are
|
|
|
|
* guaranteed to be non-NULL. If an error occurs, the function will
|
|
|
|
* die().
|
|
|
|
*/
|
2011-12-10 11:31:11 +01:00
|
|
|
void credential_fill(struct credential *);
|
2019-11-17 22:04:53 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Inform the credential subsystem that the provided credentials
|
|
|
|
* were successfully used for authentication. This will cause the
|
|
|
|
* credential subsystem to notify any helpers of the approval, so
|
|
|
|
* that they may store the result to be used again. Any errors
|
|
|
|
* from helpers are ignored.
|
|
|
|
*/
|
2011-12-10 11:31:11 +01:00
|
|
|
void credential_approve(struct credential *);
|
2019-11-17 22:04:53 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Inform the credential subsystem that the provided credentials
|
|
|
|
* have been rejected. This will cause the credential subsystem to
|
|
|
|
* notify any helpers of the rejection (which allows them, for
|
|
|
|
* example, to purge the invalid credentials from storage). It
|
|
|
|
* will also free() the username and password fields of the
|
|
|
|
* credential and set them to NULL (readying the credential for
|
|
|
|
* another call to `credential_fill`). Any errors from helpers are
|
|
|
|
* ignored.
|
|
|
|
*/
|
2011-12-10 11:31:11 +01:00
|
|
|
void credential_reject(struct credential *);
|
|
|
|
|
|
|
|
int credential_read(struct credential *, FILE *);
|
2012-06-24 13:40:00 +02:00
|
|
|
void credential_write(const struct credential *, FILE *);
|
2019-11-17 22:04:53 +01:00
|
|
|
|
2020-03-12 06:31:11 +01:00
|
|
|
/*
|
|
|
|
* Parse a url into a credential struct, replacing any existing contents.
|
|
|
|
*
|
2020-03-18 02:12:01 +01:00
|
|
|
* If the url can't be parsed (e.g., a missing "proto://" component), the
|
2020-05-05 03:39:05 +02:00
|
|
|
* resulting credential will be empty and the function will return an
|
|
|
|
* error (even in the "gently" form).
|
2020-03-12 06:31:11 +01:00
|
|
|
*
|
|
|
|
* If we encounter a component which cannot be represented as a credential
|
|
|
|
* value (e.g., because it contains a newline), the "gently" form will return
|
|
|
|
* an error but leave the broken state in the credential object for further
|
|
|
|
* examination. The non-gentle form will issue a warning to stderr and return
|
|
|
|
* an empty credential.
|
|
|
|
*/
|
2011-12-10 11:31:17 +01:00
|
|
|
void credential_from_url(struct credential *, const char *url);
|
2020-03-12 06:31:11 +01:00
|
|
|
int credential_from_url_gently(struct credential *, const char *url, int quiet);
|
2019-11-17 22:04:53 +01:00
|
|
|
|
2020-05-05 03:39:06 +02:00
|
|
|
int credential_match(const struct credential *want,
|
|
|
|
const struct credential *have);
|
2011-12-10 11:31:11 +01:00
|
|
|
|
|
|
|
#endif /* CREDENTIAL_H */
|