View Javadoc
1   /*
2    * Copyright (C) 2008-2009, Google Inc.
3    * and other copyright owners as documented in the project's IP log.
4    *
5    * This program and the accompanying materials are made available
6    * under the terms of the Eclipse Distribution License v1.0 which
7    * accompanies this distribution, is reproduced below, and is
8    * available at http://www.eclipse.org/org/documents/edl-v10.php
9    *
10   * All rights reserved.
11   *
12   * Redistribution and use in source and binary forms, with or
13   * without modification, are permitted provided that the following
14   * conditions are met:
15   *
16   * - Redistributions of source code must retain the above copyright
17   *   notice, this list of conditions and the following disclaimer.
18   *
19   * - Redistributions in binary form must reproduce the above
20   *   copyright notice, this list of conditions and the following
21   *   disclaimer in the documentation and/or other materials provided
22   *   with the distribution.
23   *
24   * - Neither the name of the Eclipse Foundation, Inc. nor the
25   *   names of its contributors may be used to endorse or promote
26   *   products derived from this software without specific prior
27   *   written permission.
28   *
29   * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
30   * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
31   * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32   * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
33   * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
34   * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
35   * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
36   * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
37   * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
38   * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39   * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
40   * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
41   * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
42   */
43  
44  package org.eclipse.jgit.transport;
45  
46  import static org.eclipse.jgit.util.StringUtils.equalsIgnoreCase;
47  import static org.eclipse.jgit.util.StringUtils.toLowerCase;
48  
49  import java.io.File;
50  import java.util.EnumSet;
51  import java.util.HashMap;
52  import java.util.Map;
53  
54  import org.eclipse.jgit.annotations.Nullable;
55  import org.eclipse.jgit.internal.storage.file.LazyObjectIdSetFile;
56  import org.eclipse.jgit.lib.Config;
57  import org.eclipse.jgit.lib.Config.SectionParser;
58  import org.eclipse.jgit.lib.ObjectChecker;
59  import org.eclipse.jgit.lib.ObjectIdSet;
60  import org.eclipse.jgit.lib.Ref;
61  import org.eclipse.jgit.lib.Repository;
62  import org.eclipse.jgit.util.SystemReader;
63  
64  /**
65   * The standard "transfer", "fetch", "protocol", "receive", and "uploadpack"
66   * configuration parameters.
67   */
68  public class TransferConfig {
69  	private static final String FSCK = "fsck"; //$NON-NLS-1$
70  
71  	/** Key for {@link Config#get(SectionParser)}. */
72  	public static final Config.SectionParser<TransferConfig> KEY =
73  			TransferConfig::new;
74  
75  	/**
76  	 * A git configuration value for how to handle a fsck failure of a particular kind.
77  	 * Used in e.g. fsck.missingEmail.
78  	 * @since 4.9
79  	 */
80  	public enum FsckMode {
81  		/**
82  		 * Treat it as an error (the default).
83  		 */
84  		ERROR,
85  		/**
86  		 * Issue a warning (in fact, jgit treats this like IGNORE, but git itself does warn).
87  		 */
88  		WARN,
89  		/**
90  		 * Ignore the error.
91  		 */
92  		IGNORE;
93  	}
94  
95  	/**
96  	 * A git configuration variable for which versions of the Git protocol to prefer.
97  	 * Used in protocol.version.
98  	 */
99  	enum ProtocolVersion {
100 		V0("0"), //$NON-NLS-1$
101 		V2("2"); //$NON-NLS-1$
102 
103 		final String name;
104 
105 		ProtocolVersion(String name) {
106 			this.name = name;
107 		}
108 
109 		@Nullable
110 		static ProtocolVersion parse(@Nullable String name) {
111 			if (name == null) {
112 				return null;
113 			}
114 			for (ProtocolVersion v : ProtocolVersion.values()) {
115 				if (v.name.equals(name)) {
116 					return v;
117 				}
118 			}
119 			return null;
120 		}
121 	}
122 
123 	private final boolean fetchFsck;
124 	private final boolean receiveFsck;
125 	private final String fsckSkipList;
126 	private final EnumSet<ObjectChecker.ErrorType> ignore;
127 	private final boolean allowInvalidPersonIdent;
128 	private final boolean safeForWindows;
129 	private final boolean safeForMacOS;
130 	private final boolean allowRefInWant;
131 	private final boolean allowTipSha1InWant;
132 	private final boolean allowReachableSha1InWant;
133 	private final boolean allowFilter;
134 	private final boolean allowSidebandAll;
135 	final @Nullable ProtocolVersion protocolVersion;
136 	final String[] hideRefs;
137 
138 	/**
139 	 * Create a configuration honoring the repository's settings.
140 	 *
141 	 * @param db
142 	 *            the repository to read settings from. The repository is not
143 	 *            retained by the new configuration, instead its settings are
144 	 *            copied during the constructor.
145 	 * @since 5.1.4
146 	 */
147 	public TransferConfig(Repository db) {
148 		this(db.getConfig());
149 	}
150 
151 	/**
152 	 * Create a configuration honoring settings in a
153 	 * {@link org.eclipse.jgit.lib.Config}.
154 	 *
155 	 * @param rc
156 	 *            the source to read settings from. The source is not retained
157 	 *            by the new configuration, instead its settings are copied
158 	 *            during the constructor.
159 	 * @since 5.1.4
160 	 */
161 	@SuppressWarnings("nls")
162 	public TransferConfig(Config rc) {
163 		boolean fsck = rc.getBoolean("transfer", "fsckobjects", false);
164 		fetchFsck = rc.getBoolean("fetch", "fsckobjects", fsck);
165 		receiveFsck = rc.getBoolean("receive", "fsckobjects", fsck);
166 		fsckSkipList = rc.getString(FSCK, null, "skipList");
167 		allowInvalidPersonIdent = rc.getBoolean(FSCK, "allowInvalidPersonIdent",
168 				false);
169 		safeForWindows = rc.getBoolean(FSCK, "safeForWindows",
170 						SystemReader.getInstance().isWindows());
171 		safeForMacOS = rc.getBoolean(FSCK, "safeForMacOS",
172 						SystemReader.getInstance().isMacOS());
173 
174 		ignore = EnumSet.noneOf(ObjectChecker.ErrorType.class);
175 		EnumSet<ObjectChecker.ErrorType> set = EnumSet
176 				.noneOf(ObjectChecker.ErrorType.class);
177 		for (String key : rc.getNames(FSCK)) {
178 			if (equalsIgnoreCase(key, "skipList")
179 					|| equalsIgnoreCase(key, "allowLeadingZeroFileMode")
180 					|| equalsIgnoreCase(key, "allowInvalidPersonIdent")
181 					|| equalsIgnoreCase(key, "safeForWindows")
182 					|| equalsIgnoreCase(key, "safeForMacOS")) {
183 				continue;
184 			}
185 
186 			ObjectChecker.ErrorType id = FsckKeyNameHolder.parse(key);
187 			if (id != null) {
188 				switch (rc.getEnum(FSCK, null, key, FsckMode.ERROR)) {
189 				case ERROR:
190 					ignore.remove(id);
191 					break;
192 				case WARN:
193 				case IGNORE:
194 					ignore.add(id);
195 					break;
196 				}
197 				set.add(id);
198 			}
199 		}
200 		if (!set.contains(ObjectChecker.ErrorType.ZERO_PADDED_FILEMODE)
201 				&& rc.getBoolean(FSCK, "allowLeadingZeroFileMode", false)) {
202 			ignore.add(ObjectChecker.ErrorType.ZERO_PADDED_FILEMODE);
203 		}
204 
205 		allowRefInWant = rc.getBoolean("uploadpack", "allowrefinwant", false);
206 		allowTipSha1InWant = rc.getBoolean(
207 				"uploadpack", "allowtipsha1inwant", false);
208 		allowReachableSha1InWant = rc.getBoolean(
209 				"uploadpack", "allowreachablesha1inwant", false);
210 		allowFilter = rc.getBoolean(
211 				"uploadpack", "allowfilter", false);
212 		protocolVersion = ProtocolVersion.parse(rc.getString("protocol", null, "version"));
213 		hideRefs = rc.getStringList("uploadpack", null, "hiderefs");
214 		allowSidebandAll = rc.getBoolean(
215 				"uploadpack", "allowsidebandall", false);
216 	}
217 
218 	/**
219 	 * Create checker to verify fetched objects
220 	 *
221 	 * @return checker to verify fetched objects, or null if checking is not
222 	 *         enabled in the repository configuration.
223 	 * @since 3.6
224 	 */
225 	@Nullable
226 	public ObjectChecker newObjectChecker() {
227 		return newObjectChecker(fetchFsck);
228 	}
229 
230 	/**
231 	 * Create checker to verify objects pushed into this repository
232 	 *
233 	 * @return checker to verify objects pushed into this repository, or null if
234 	 *         checking is not enabled in the repository configuration.
235 	 * @since 4.2
236 	 */
237 	@Nullable
238 	public ObjectChecker newReceiveObjectChecker() {
239 		return newObjectChecker(receiveFsck);
240 	}
241 
242 	private ObjectChecker newObjectChecker(boolean check) {
243 		if (!check) {
244 			return null;
245 		}
246 		return new ObjectChecker()
247 			.setIgnore(ignore)
248 			.setAllowInvalidPersonIdent(allowInvalidPersonIdent)
249 			.setSafeForWindows(safeForWindows)
250 			.setSafeForMacOS(safeForMacOS)
251 			.setSkipList(skipList());
252 	}
253 
254 	private ObjectIdSet skipList() {
255 		if (fsckSkipList != null && !fsckSkipList.isEmpty()) {
256 			return new LazyObjectIdSetFile(new File(fsckSkipList));
257 		}
258 		return null;
259 	}
260 
261 	/**
262 	 * Whether to allow clients to request non-advertised tip SHA-1s
263 	 *
264 	 * @return allow clients to request non-advertised tip SHA-1s?
265 	 * @since 3.1
266 	 */
267 	public boolean isAllowTipSha1InWant() {
268 		return allowTipSha1InWant;
269 	}
270 
271 	/**
272 	 * Whether to allow clients to request non-tip SHA-1s
273 	 *
274 	 * @return allow clients to request non-tip SHA-1s?
275 	 * @since 4.1
276 	 */
277 	public boolean isAllowReachableSha1InWant() {
278 		return allowReachableSha1InWant;
279 	}
280 
281 	/**
282 	 * @return true if clients are allowed to specify a "filter" line
283 	 * @since 5.0
284 	 */
285 	public boolean isAllowFilter() {
286 		return allowFilter;
287 	}
288 
289 	/**
290 	 * @return true if clients are allowed to specify a "want-ref" line
291 	 * @since 5.1
292 	 */
293 	public boolean isAllowRefInWant() {
294 		return allowRefInWant;
295 	}
296 
297 	/**
298 	 * @return true if clients are allowed to specify a "sideband-all" line
299 	 * @since 5.5
300 	 */
301 	public boolean isAllowSidebandAll() {
302 		return allowSidebandAll;
303 	}
304 
305 	/**
306 	 * Get {@link org.eclipse.jgit.transport.RefFilter} respecting configured
307 	 * hidden refs.
308 	 *
309 	 * @return {@link org.eclipse.jgit.transport.RefFilter} respecting
310 	 *         configured hidden refs.
311 	 * @since 3.1
312 	 */
313 	public RefFilter getRefFilter() {
314 		if (hideRefs.length == 0)
315 			return RefFilter.DEFAULT;
316 
317 		return new RefFilter() {
318 			@Override
319 			public Map<String, Ref> filter(Map<String, Ref> refs) {
320 				Map<String, Ref> result = new HashMap<>();
321 				for (Map.Entry<String, Ref> e : refs.entrySet()) {
322 					boolean add = true;
323 					for (String hide : hideRefs) {
324 						if (e.getKey().equals(hide) || prefixMatch(hide, e.getKey())) {
325 							add = false;
326 							break;
327 						}
328 					}
329 					if (add)
330 						result.put(e.getKey(), e.getValue());
331 				}
332 				return result;
333 			}
334 
335 			private boolean prefixMatch(String p, String s) {
336 				return p.charAt(p.length() - 1) == '/' && s.startsWith(p);
337 			}
338 		};
339 	}
340 
341 	/**
342 	 * Like {@code getRefFilter() == RefFilter.DEFAULT}, but faster.
343 	 *
344 	 * @return {@code true} if no ref filtering is needed because there
345 	 *         are no configured hidden refs.
346 	 */
347 	boolean hasDefaultRefFilter() {
348 		return hideRefs.length == 0;
349 	}
350 
351 	static class FsckKeyNameHolder {
352 		private static final Map<String, ObjectChecker.ErrorType> errors;
353 
354 		static {
355 			errors = new HashMap<>();
356 			for (ObjectChecker.ErrorType m : ObjectChecker.ErrorType.values()) {
357 				errors.put(keyNameFor(m.name()), m);
358 			}
359 		}
360 
361 		@Nullable
362 		static ObjectChecker.ErrorType parse(String key) {
363 			return errors.get(toLowerCase(key));
364 		}
365 
366 		private static String keyNameFor(String name) {
367 			StringBuilder r = new StringBuilder(name.length());
368 			for (int i = 0; i < name.length(); i++) {
369 				char c = name.charAt(i);
370 				if (c != '_') {
371 					r.append(c);
372 				}
373 			}
374 			return toLowerCase(r.toString());
375 		}
376 
377 		private FsckKeyNameHolder() {
378 		}
379 	}
380 }