author | dsamersoff |
Thu, 17 Oct 2013 16:08:01 +0400 | |
changeset 21069 | 728330d2593a |
parent 20177 | 8ea486a4f36e |
child 20774 | 330ea6efa3fd |
permissions | -rw-r--r-- |
2 | 1 |
# |
14342
8435a30053c1
7197491: update copyright year to match last edit in jdk8 jdk repository
alanb
parents:
12047
diff
changeset
|
2 |
# Copyright (c) 1996, 2012, Oracle and/or its affiliates. All rights reserved. |
2 | 3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
# |
|
5 |
# This code is free software; you can redistribute it and/or modify it |
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
|
5506 | 7 |
# published by the Free Software Foundation. Oracle designates this |
2 | 8 |
# particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
# by Oracle in the LICENSE file that accompanied this code. |
2 | 10 |
# |
11 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
# version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
# accompanied this code). |
|
16 |
# |
|
17 |
# You should have received a copy of the GNU General Public License version |
|
18 |
# 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
# |
|
5506 | 21 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
22 |
# or visit www.oracle.com if you need additional information or have any |
|
23 |
# questions. |
|
2 | 24 |
# |
25 |
||
26 |
BUILDDIR = ../.. |
|
27 |
PACKAGE = java.security |
|
28 |
PRODUCT = sun |
|
10709
d865c9f21240
7092375: Security Libraries don't build with javac -Werror
xuelei
parents:
10336
diff
changeset
|
29 |
JAVAC_MAX_WARNINGS = true |
d865c9f21240
7092375: Security Libraries don't build with javac -Werror
xuelei
parents:
10336
diff
changeset
|
30 |
JAVAC_LINT_OPTIONS = -Xlint:all |
10336
0bb1999251f8
7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents:
9519
diff
changeset
|
31 |
JAVAC_WARNINGS_FATAL = true |
2 | 32 |
include $(BUILDDIR)/common/Defs.gmk |
33 |
||
34 |
# |
|
35 |
# Rules |
|
36 |
# |
|
37 |
AUTO_FILES_JAVA_DIRS = java/security |
|
38 |
||
39 |
# |
|
40 |
# Directories |
|
41 |
# |
|
42 |
||
14758
d6b75b5d550e
8004188: Rename src/share/lib/security/java.security to java.security-linux
mullan
parents:
14342
diff
changeset
|
43 |
# The default security properties file is for linux |
d6b75b5d550e
8004188: Rename src/share/lib/security/java.security to java.security-linux
mullan
parents:
14342
diff
changeset
|
44 |
PROPS_SRC = $(TOPDIR)/src/share/lib/security/java.security-linux |
2 | 45 |
|
46 |
ifeq ($(PLATFORM), solaris) |
|
47 |
PROPS_SRC = $(TOPDIR)/src/share/lib/security/java.security-solaris |
|
48 |
||
12047
320a714614e9
7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
10709
diff
changeset
|
49 |
else # NOT_SOLARIS |
2 | 50 |
|
9519
a371830a963b
6931562: Support SunMSCAPI Security Provider in Windows 64-bit releases of JVM
vinnie
parents:
8583
diff
changeset
|
51 |
# Register Microsoft CryptoAPI provider only on Windows platform. |
2 | 52 |
ifeq ($(PLATFORM), windows) |
9519
a371830a963b
6931562: Support SunMSCAPI Security Provider in Windows 64-bit releases of JVM
vinnie
parents:
8583
diff
changeset
|
53 |
PROPS_SRC = $(TOPDIR)/src/share/lib/security/java.security-windows |
12047
320a714614e9
7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
10709
diff
changeset
|
54 |
|
320a714614e9
7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
10709
diff
changeset
|
55 |
else # NOT_WINDOWS |
320a714614e9
7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
10709
diff
changeset
|
56 |
|
320a714614e9
7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
10709
diff
changeset
|
57 |
ifeq ($(PLATFORM), macosx) |
320a714614e9
7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
10709
diff
changeset
|
58 |
PROPS_SRC = $(TOPDIR)/src/share/lib/security/java.security-macosx |
320a714614e9
7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
10709
diff
changeset
|
59 |
endif # MACOSX |
320a714614e9
7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
10709
diff
changeset
|
60 |
|
320a714614e9
7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
10709
diff
changeset
|
61 |
endif # NOT_WINDOWS |
320a714614e9
7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
10709
diff
changeset
|
62 |
endif # NOT_SOLARIS |
2 | 63 |
|
64 |
||
65 |
PROPS_BUILD = $(LIBDIR)/security/java.security |
|
66 |
||
67 |
POLICY_SRC = $(TOPDIR)/src/share/lib/security/java.policy |
|
68 |
POLICY_BUILD = $(LIBDIR)/security/java.policy |
|
69 |
||
70 |
CACERTS_SRC = $(CACERTS_FILE) |
|
71 |
CACERTS_BUILD = $(LIBDIR)/security/cacerts |
|
72 |
||
20177
8ea486a4f36e
8011402: Move blacklisting certificate logic from hard code to data
weijun
parents:
14758
diff
changeset
|
73 |
BLACKLISTED_CERTS_SRC = $(TOPDIR)/src/share/lib/security/blacklisted.certs |
8ea486a4f36e
8011402: Move blacklisting certificate logic from hard code to data
weijun
parents:
14758
diff
changeset
|
74 |
BLACKLISTED_CERTS_BUILD = $(LIBDIR)/security/blacklisted.certs |
8ea486a4f36e
8011402: Move blacklisting certificate logic from hard code to data
weijun
parents:
14758
diff
changeset
|
75 |
|
5996
68e11696dd2c
6782979: Add JNLPAppletLauncher (6618105) to blacklist
mullan
parents:
5506
diff
changeset
|
76 |
ifndef OPENJDK |
68e11696dd2c
6782979: Add JNLPAppletLauncher (6618105) to blacklist
mullan
parents:
5506
diff
changeset
|
77 |
BLACKLIST_SRC = $(CLOSED_SHARE_SRC)/lib/security/blacklist |
68e11696dd2c
6782979: Add JNLPAppletLauncher (6618105) to blacklist
mullan
parents:
5506
diff
changeset
|
78 |
BLACKLIST_BUILD = $(LIBDIR)/security/blacklist |
20177
8ea486a4f36e
8011402: Move blacklisting certificate logic from hard code to data
weijun
parents:
14758
diff
changeset
|
79 |
BLACKLISTED_CERTS_SRC += $(wildcard $(CLOSED_SHARE_SRC)/lib/security/blacklisted.certs) |
8387
f0fa7bbf889e
6742654: Code insertion/replacement attacks against signed jars
weijun
parents:
5996
diff
changeset
|
80 |
TRUSTEDLIBS_SRC = $(CLOSED_SHARE_SRC)/lib/security/trusted.libraries |
f0fa7bbf889e
6742654: Code insertion/replacement attacks against signed jars
weijun
parents:
5996
diff
changeset
|
81 |
TRUSTEDLIBS_BUILD = $(LIBDIR)/security/trusted.libraries |
5996
68e11696dd2c
6782979: Add JNLPAppletLauncher (6618105) to blacklist
mullan
parents:
5506
diff
changeset
|
82 |
endif |
68e11696dd2c
6782979: Add JNLPAppletLauncher (6618105) to blacklist
mullan
parents:
5506
diff
changeset
|
83 |
|
2 | 84 |
FILES_class = $(FILES_java:%.java=$(CLASSBINDIR)/%.class) |
85 |
||
86 |
# |
|
87 |
# Rules |
|
88 |
# |
|
89 |
include $(BUILDDIR)/common/Rules.gmk |
|
90 |
||
5996
68e11696dd2c
6782979: Add JNLPAppletLauncher (6618105) to blacklist
mullan
parents:
5506
diff
changeset
|
91 |
ifdef OPENJDK |
20177
8ea486a4f36e
8011402: Move blacklisting certificate logic from hard code to data
weijun
parents:
14758
diff
changeset
|
92 |
build: properties policy cacerts blacklisted-certs |
5996
68e11696dd2c
6782979: Add JNLPAppletLauncher (6618105) to blacklist
mullan
parents:
5506
diff
changeset
|
93 |
else |
20177
8ea486a4f36e
8011402: Move blacklisting certificate logic from hard code to data
weijun
parents:
14758
diff
changeset
|
94 |
build: properties policy cacerts blacklist blacklisted-certs trustedlibs |
5996
68e11696dd2c
6782979: Add JNLPAppletLauncher (6618105) to blacklist
mullan
parents:
5506
diff
changeset
|
95 |
endif |
2 | 96 |
|
97 |
install: all |
|
98 |
||
99 |
properties: classes $(PROPS_BUILD) |
|
100 |
||
101 |
policy: classes $(POLICY_BUILD) |
|
102 |
||
103 |
cacerts: classes $(CACERTS_BUILD) |
|
104 |
||
5996
68e11696dd2c
6782979: Add JNLPAppletLauncher (6618105) to blacklist
mullan
parents:
5506
diff
changeset
|
105 |
blacklist: classes $(BLACKLIST_BUILD) |
68e11696dd2c
6782979: Add JNLPAppletLauncher (6618105) to blacklist
mullan
parents:
5506
diff
changeset
|
106 |
|
20177
8ea486a4f36e
8011402: Move blacklisting certificate logic from hard code to data
weijun
parents:
14758
diff
changeset
|
107 |
blacklisted-certs: classes $(BLACKLISTED_CERTS_BUILD) |
8ea486a4f36e
8011402: Move blacklisting certificate logic from hard code to data
weijun
parents:
14758
diff
changeset
|
108 |
|
8387
f0fa7bbf889e
6742654: Code insertion/replacement attacks against signed jars
weijun
parents:
5996
diff
changeset
|
109 |
trustedlibs: classes $(TRUSTEDLIBS_BUILD) |
f0fa7bbf889e
6742654: Code insertion/replacement attacks against signed jars
weijun
parents:
5996
diff
changeset
|
110 |
|
2 | 111 |
$(PROPS_BUILD): $(PROPS_SRC) |
112 |
$(install-file) |
|
113 |
||
114 |
$(POLICY_BUILD): $(POLICY_SRC) |
|
115 |
$(install-file) |
|
116 |
||
117 |
$(CACERTS_BUILD): $(CACERTS_SRC) |
|
118 |
$(install-file) |
|
119 |
||
5996
68e11696dd2c
6782979: Add JNLPAppletLauncher (6618105) to blacklist
mullan
parents:
5506
diff
changeset
|
120 |
$(BLACKLIST_BUILD): $(BLACKLIST_SRC) |
68e11696dd2c
6782979: Add JNLPAppletLauncher (6618105) to blacklist
mullan
parents:
5506
diff
changeset
|
121 |
$(install-file) |
68e11696dd2c
6782979: Add JNLPAppletLauncher (6618105) to blacklist
mullan
parents:
5506
diff
changeset
|
122 |
|
20177
8ea486a4f36e
8011402: Move blacklisting certificate logic from hard code to data
weijun
parents:
14758
diff
changeset
|
123 |
$(BLACKLISTED_CERTS_BUILD): $(BLACKLISTED_CERTS_SRC) |
8ea486a4f36e
8011402: Move blacklisting certificate logic from hard code to data
weijun
parents:
14758
diff
changeset
|
124 |
$(MKDIR) -p $(@D) |
8ea486a4f36e
8011402: Move blacklisting certificate logic from hard code to data
weijun
parents:
14758
diff
changeset
|
125 |
$(CAT) $^ | $(SED) '/^$$/d' | $(SORT) | $(UNIQ) > $@.tmp |
8ea486a4f36e
8011402: Move blacklisting certificate logic from hard code to data
weijun
parents:
14758
diff
changeset
|
126 |
$(GREP) -i Algorithm $@.tmp > $@ |
8ea486a4f36e
8011402: Move blacklisting certificate logic from hard code to data
weijun
parents:
14758
diff
changeset
|
127 |
if [ `$(SED) -n -e "$$=" $@` != 1 ]; then \ |
8ea486a4f36e
8011402: Move blacklisting certificate logic from hard code to data
weijun
parents:
14758
diff
changeset
|
128 |
$(ECHO) "Different algorithms defined in $^"; \ |
8ea486a4f36e
8011402: Move blacklisting certificate logic from hard code to data
weijun
parents:
14758
diff
changeset
|
129 |
$(RM) $@ $@.tmp; \ |
8ea486a4f36e
8011402: Move blacklisting certificate logic from hard code to data
weijun
parents:
14758
diff
changeset
|
130 |
false; \ |
8ea486a4f36e
8011402: Move blacklisting certificate logic from hard code to data
weijun
parents:
14758
diff
changeset
|
131 |
fi |
8ea486a4f36e
8011402: Move blacklisting certificate logic from hard code to data
weijun
parents:
14758
diff
changeset
|
132 |
$(GREP) -iv Algorithm $@.tmp >> $@ |
8ea486a4f36e
8011402: Move blacklisting certificate logic from hard code to data
weijun
parents:
14758
diff
changeset
|
133 |
$(RM) $@.tmp |
8ea486a4f36e
8011402: Move blacklisting certificate logic from hard code to data
weijun
parents:
14758
diff
changeset
|
134 |
|
8387
f0fa7bbf889e
6742654: Code insertion/replacement attacks against signed jars
weijun
parents:
5996
diff
changeset
|
135 |
$(TRUSTEDLIBS_BUILD): $(TRUSTEDLIBS_SRC) |
f0fa7bbf889e
6742654: Code insertion/replacement attacks against signed jars
weijun
parents:
5996
diff
changeset
|
136 |
$(install-file) |
f0fa7bbf889e
6742654: Code insertion/replacement attacks against signed jars
weijun
parents:
5996
diff
changeset
|
137 |
|
2 | 138 |
clean clobber:: .delete.classlist |
139 |
$(RM) -r $(CLASSBINDIR)/java/security |
|
20177
8ea486a4f36e
8011402: Move blacklisting certificate logic from hard code to data
weijun
parents:
14758
diff
changeset
|
140 |
$(RM) $(PROPS_BUILD) $(POLICY_BUILD) $(CACERTS_BUILD) $(BLACKLIST_BUILD) \ |
8ea486a4f36e
8011402: Move blacklisting certificate logic from hard code to data
weijun
parents:
14758
diff
changeset
|
141 |
$(BLACKLISTED_CERTS_BUILD) $(TRUSTEDLIBS_BUILD) |
2 | 142 |
|
143 |
# Additional Rule for building sun.security.util |
|
144 |
$(CLASSBINDIR)/%.class: $(SHARE_SRC)/sun/%.java |
|
145 |
@$(ECHO) $? >> $(TEMPDIR)/.classes.list |
|
146 |