On Mon, Jan 27, 2025 at 03:48:08PM -0800, Junio C Hamano wrote: > Christian Couder <christian.couder@xxxxxxxxx> writes: > > promisor.acceptFromServer:: > > If set to "all", a client will accept all the promisor remotes > > a server might advertise using the "promisor-remote" > > - capability. Default is "none", which means no promisor remote > > - advertised by a server will be accepted. By accepting a > > - promisor remote, the client agrees that the server might omit > > - objects that are lazily fetchable from this promisor remote > > - from its responses to "fetch" and "clone" requests from the > > - client. See linkgit:gitprotocol-v2[5]. > > + capability. If set to "knownName" the client will accept > > + promisor remotes which are already configured on the client > > + and have the same name as those advertised by the client. This > > + is not very secure, but could be used in a corporate setup > > + where servers and clients are trusted to not switch name and > > + URLs. > > I wonder if the reader needs to be told a bit more about the > security argument here. I imagine that the attack vector behind the > use of "secure" in the above paragraph is for a malicious server > that guesses a promisor remote name the client already uses, which > has a different URL from what the client expects to be associated > with the name, thereby such an acceptance means that the URL used in > future fetches would be replaced without the user's consent. Being > able to silently repoint the remote.origin.url at an evil repository > you control is indeed a powerful thing, I would guess. Of course, > in a corp environment, such a mechanism to drive the clients to a > new repository after upgrading or migrating may be extremely handy. I'm still very hesitant about letting the server-side control remote names at all, as I've already mentioned in previous review rounds. I think that it opens up the client for a whole lot of issues that should rather be avoided. Most importantly, it takes control away from the user, as they are not free anymore to name the remotes however they want to. It also casts into stone current behaviour because it is now part of the protocol. That being said, I get the point that it may make sense to be "agile" regarding the promisor remotes. But I think we can achieve that without having to compromise on either usability or security by using something like a promisor ID instead. Instead of announcing remote names, each announced promisor would have an ID. This ID is opaque and merely used to identify the promisor after the fact. It could for example be a UUID or something else that is mostly unique. The client will then create a promisor remote for each of the remote names. The name of the promisor is derived from the remote name that it is being created from. When there's a single promisor only it could for example be called "origin-promisor". When there are multiple ones they could be enumerated as "origin-promisor-1". In practice, we can even roll the dice to generate the name, even though that may not be as user friendly. These names are _not_ used to identify the promisor. Instead, we also write "remote.origin-promisor.id" and point it to the UUID that the server has advertised. Furthermore, for each promisor that gets added in this way, we'll also add "remote.origin.promisor" pointing to the promisor name. So on a subsequent fetch, we can now: 1. Look up all the promisors for the remote we're fetching from via the "remote.origin.promisor" multivalue config. 2. For each promisor, we figure out whether its ID is still being advertised by the remote server. If not, then it is a stale promisor and we can optionally remove it. 3. If the promisor ID is still being announced we double check whether the URL we have stored is still valid. If not, we can optionally update it to point to the new URL. This buys us a bunch of things: - We have promisor agility and are easily able to update URLs and prune out stale promisors. - Promisors can be renamed by the user at will, as they are identified by ID and not by remote name. We have to add logic to update the "remote.*.promisor" links, but that should be doable. - Each remote has its own set of promisors that cannot conflict with one another.