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 		static @Nullable ProtocolVersion parse(@Nullable String name) {
110 			if (name == null) {
111 				return null;
112 			}
113 			for (ProtocolVersion v : ProtocolVersion.values()) {
114 				if (v.name.equals(name)) {
115 					return v;
116 				}
117 			}
118 			return null;
119 		}
120 	}
121 
122 	private final boolean fetchFsck;
123 	private final boolean receiveFsck;
124 	private final String fsckSkipList;
125 	private final EnumSet<ObjectChecker.ErrorType> ignore;
126 	private final boolean allowInvalidPersonIdent;
127 	private final boolean safeForWindows;
128 	private final boolean safeForMacOS;
129 	private final boolean allowRefInWant;
130 	private final boolean allowTipSha1InWant;
131 	private final boolean allowReachableSha1InWant;
132 	private final boolean allowFilter;
133 	final @Nullable ProtocolVersion protocolVersion;
134 	final String[] hideRefs;
135 
136 	TransferConfig(Repository db) {
137 		this(db.getConfig());
138 	}
139 
140 	@SuppressWarnings("nls")
141 	TransferConfig(Config rc) {
142 		boolean fsck = rc.getBoolean("transfer", "fsckobjects", false);
143 		fetchFsck = rc.getBoolean("fetch", "fsckobjects", fsck);
144 		receiveFsck = rc.getBoolean("receive", "fsckobjects", fsck);
145 		fsckSkipList = rc.getString(FSCK, null, "skipList");
146 		allowInvalidPersonIdent = rc.getBoolean(FSCK, "allowInvalidPersonIdent",
147 				false);
148 		safeForWindows = rc.getBoolean(FSCK, "safeForWindows",
149 						SystemReader.getInstance().isWindows());
150 		safeForMacOS = rc.getBoolean(FSCK, "safeForMacOS",
151 						SystemReader.getInstance().isMacOS());
152 
153 		ignore = EnumSet.noneOf(ObjectChecker.ErrorType.class);
154 		EnumSet<ObjectChecker.ErrorType> set = EnumSet
155 				.noneOf(ObjectChecker.ErrorType.class);
156 		for (String key : rc.getNames(FSCK)) {
157 			if (equalsIgnoreCase(key, "skipList")
158 					|| equalsIgnoreCase(key, "allowLeadingZeroFileMode")
159 					|| equalsIgnoreCase(key, "allowInvalidPersonIdent")
160 					|| equalsIgnoreCase(key, "safeForWindows")
161 					|| equalsIgnoreCase(key, "safeForMacOS")) {
162 				continue;
163 			}
164 
165 			ObjectChecker.ErrorType id = FsckKeyNameHolder.parse(key);
166 			if (id != null) {
167 				switch (rc.getEnum(FSCK, null, key, FsckMode.ERROR)) {
168 				case ERROR:
169 					ignore.remove(id);
170 					break;
171 				case WARN:
172 				case IGNORE:
173 					ignore.add(id);
174 					break;
175 				}
176 				set.add(id);
177 			}
178 		}
179 		if (!set.contains(ObjectChecker.ErrorType.ZERO_PADDED_FILEMODE)
180 				&& rc.getBoolean(FSCK, "allowLeadingZeroFileMode", false)) {
181 			ignore.add(ObjectChecker.ErrorType.ZERO_PADDED_FILEMODE);
182 		}
183 
184 		allowRefInWant = rc.getBoolean("uploadpack", "allowrefinwant", false);
185 		allowTipSha1InWant = rc.getBoolean(
186 				"uploadpack", "allowtipsha1inwant", false);
187 		allowReachableSha1InWant = rc.getBoolean(
188 				"uploadpack", "allowreachablesha1inwant", false);
189 		allowFilter = rc.getBoolean(
190 				"uploadpack", "allowfilter", false);
191 		protocolVersion = ProtocolVersion.parse(rc.getString("protocol", null, "version"));
192 		hideRefs = rc.getStringList("uploadpack", null, "hiderefs");
193 	}
194 
195 	/**
196 	 * Create checker to verify fetched objects
197 	 *
198 	 * @return checker to verify fetched objects, or null if checking is not
199 	 *         enabled in the repository configuration.
200 	 * @since 3.6
201 	 */
202 	@Nullable
203 	public ObjectChecker newObjectChecker() {
204 		return newObjectChecker(fetchFsck);
205 	}
206 
207 	/**
208 	 * Create checker to verify objects pushed into this repository
209 	 *
210 	 * @return checker to verify objects pushed into this repository, or null if
211 	 *         checking is not enabled in the repository configuration.
212 	 * @since 4.2
213 	 */
214 	@Nullable
215 	public ObjectChecker newReceiveObjectChecker() {
216 		return newObjectChecker(receiveFsck);
217 	}
218 
219 	private ObjectChecker newObjectChecker(boolean check) {
220 		if (!check) {
221 			return null;
222 		}
223 		return new ObjectChecker()
224 			.setIgnore(ignore)
225 			.setAllowInvalidPersonIdent(allowInvalidPersonIdent)
226 			.setSafeForWindows(safeForWindows)
227 			.setSafeForMacOS(safeForMacOS)
228 			.setSkipList(skipList());
229 	}
230 
231 	private ObjectIdSet skipList() {
232 		if (fsckSkipList != null && !fsckSkipList.isEmpty()) {
233 			return new LazyObjectIdSetFile(new File(fsckSkipList));
234 		}
235 		return null;
236 	}
237 
238 	/**
239 	 * Whether to allow clients to request non-advertised tip SHA-1s
240 	 *
241 	 * @return allow clients to request non-advertised tip SHA-1s?
242 	 * @since 3.1
243 	 */
244 	public boolean isAllowTipSha1InWant() {
245 		return allowTipSha1InWant;
246 	}
247 
248 	/**
249 	 * Whether to allow clients to request non-tip SHA-1s
250 	 *
251 	 * @return allow clients to request non-tip SHA-1s?
252 	 * @since 4.1
253 	 */
254 	public boolean isAllowReachableSha1InWant() {
255 		return allowReachableSha1InWant;
256 	}
257 
258 	/**
259 	 * @return true if clients are allowed to specify a "filter" line
260 	 * @since 5.0
261 	 */
262 	public boolean isAllowFilter() {
263 		return allowFilter;
264 	}
265 
266 	/**
267 	 * @return true if clients are allowed to specify a "want-ref" line
268 	 * @since 5.1
269 	 */
270 	public boolean isAllowRefInWant() {
271 		return allowRefInWant;
272 	}
273 
274 	/**
275 	 * Get {@link org.eclipse.jgit.transport.RefFilter} respecting configured
276 	 * hidden refs.
277 	 *
278 	 * @return {@link org.eclipse.jgit.transport.RefFilter} respecting
279 	 *         configured hidden refs.
280 	 * @since 3.1
281 	 */
282 	public RefFilter getRefFilter() {
283 		if (hideRefs.length == 0)
284 			return RefFilter.DEFAULT;
285 
286 		return new RefFilter() {
287 			@Override
288 			public Map<String, Ref> filter(Map<String, Ref> refs) {
289 				Map<String, Ref> result = new HashMap<>();
290 				for (Map.Entry<String, Ref> e : refs.entrySet()) {
291 					boolean add = true;
292 					for (String hide : hideRefs) {
293 						if (e.getKey().equals(hide) || prefixMatch(hide, e.getKey())) {
294 							add = false;
295 							break;
296 						}
297 					}
298 					if (add)
299 						result.put(e.getKey(), e.getValue());
300 				}
301 				return result;
302 			}
303 
304 			private boolean prefixMatch(String p, String s) {
305 				return p.charAt(p.length() - 1) == '/' && s.startsWith(p);
306 			}
307 		};
308 	}
309 
310 	static class FsckKeyNameHolder {
311 		private static final Map<String, ObjectChecker.ErrorType> errors;
312 
313 		static {
314 			errors = new HashMap<>();
315 			for (ObjectChecker.ErrorType m : ObjectChecker.ErrorType.values()) {
316 				errors.put(keyNameFor(m.name()), m);
317 			}
318 		}
319 
320 		@Nullable
321 		static ObjectChecker.ErrorType parse(String key) {
322 			return errors.get(toLowerCase(key));
323 		}
324 
325 		private static String keyNameFor(String name) {
326 			StringBuilder r = new StringBuilder(name.length());
327 			for (int i = 0; i < name.length(); i++) {
328 				char c = name.charAt(i);
329 				if (c != '_') {
330 					r.append(c);
331 				}
332 			}
333 			return toLowerCase(r.toString());
334 		}
335 
336 		private FsckKeyNameHolder() {
337 		}
338 	}
339 }