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