安全HDFS客户端初始化方式
Posted 厚积_薄发
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安全HDFS客户端初始化方式相关的知识,希望对你有一定的参考价值。
转自:https://community.hortonworks.com/articles/56702/a-secure-hdfs-client-example.html
Short Description:
Explaining the creation of a secure HDFS client in JavaArticle
It takes about 3 lines of Java code to write a simple HDFS client that can further be used to upload, read or list files. Here is an example:
- Configuration conf = new Configuration();
- conf.set("fs.defaultFS","hdfs://one.hdp:8020");
- FileSystem fs = FileSystem.get(conf);
This file system API gives the developer a generic interface to (any supported) file system depending on the protocol being use, in this case hdfs. This is enough to alter data on the Hadoop Distributed Filesystem, for example to list all the files under the root folder:
- FileStatus[] fsStatus = fs.listStatus(new Path("/"));
- for(int i = 0; i < fsStatus.length; i++)
- System.out.println(fsStatus[i].getPath().toString());
For a secured environment this is not enough, because you would need to consider these further aspects:
- A secure protocol
- Authentication with Kerberos
- Impersonation (proxy user), if designed as a service
What we discuss here for a sample HDFS client can in variance also be applied to other Hadoop clients.
A Secure HDFS Protocol
One way to secure the communication between clients and Hadoop services in general is to use SSL encryption for all RPC calls. This does have a sever impact on the overall cluster performance in general. To avoid this and still ensure a secure communication it can be enough to just encrypt HTTP endpoints. If doing so swebhdfs (SSL+webhdfs) can be used as the protocol. Example:
- Configuration conf = new Configuration();
- conf.set("fs.defaultFS","swebhdfs://one.hdp:50470");
- FileSystem fs = FileSystem.get(conf);
Authentication with Kerberos
A secure client would need to use Kerberos, which is the only authentication method currently supported by Hadoop. Kerberos does require very thoughtful configuration but rewards it's users with an almost completely transparent authentication implementation that simply works.
Making use of Kerberos authentication in Java is provided by the Java Authentication and Authorization Service (JAAS)which is a pluggable authentication method similar to PAM supporting multiple authentication methods. In this case the authentication method being used is GSS-API for Kerberos.
For JAAS a proper configuration of GSS would be needed in addition to being in possession of proper credentials, obviously. Some credentials can be created with MIT Kerberos like this:
- (as root)
- $ kadmin.local -q "addprinc -pw hadoop hdfs-user"
- $ kadmin.local -q "xst -k /home/hdfs-user/hdfs-user.keytab hdfs-user@MYCORP.NET"
- (Creating a keytab will make the existing password invalid. To change your password back to hadoop use as root:)
- $ kadmin.local -q "cpw -pw hadoop hdfs-user"
The last line is not necessarily needed as it creates us a so called keytab - basically an encrypted password of the user - that can be used for password less authentication for example for automated services. We will make use of that here as well.
Additionally we create a JAAS configuration, we can use for authentication:
- com.sun.security.jgss.krb5.initiate
- com.sun.security.auth.module.Krb5LoginModule required
- doNotPrompt=true
- principal="hdfs-user@MYCORP.NET"
- useKeyTab=true
- keyTab="/home/hdfs-user/hdfs-user.keytab"
- storeKey=true;
- ;
We now have multiple ways to use authentication and here I will start with probably the most simple approach regarding required code changes:
1. Authentication with Keytab
Authentication web based access to HDFS with a keytab requires almost no code changes despite the use of (s)webhdfs protocol and change of authentication method:
- conf.set("fs.defaultFS", "webhdfs://one.hdp:50070");
- conf.set("hadoop.security.authentication", "kerberos");
- FileSystem fs = FileSystem.get(conf);
- FileStatus[] fsStatus = fs.listStatus(new Path("/"));
- for(int i = 0; i < fsStatus.length; i++)
- System.out.println(fsStatus[i].getPath().toString());
The above is enough if executed in a JAAS context. Creating the secure context can be done be using the above JAAS and keytab.
- java -Djava.security.auth.login.config=/home/hdfs-user/jaas.conf \\
- -Djava.security.krb5.conf=/etc/krb5.conf \\
- -Djavax.security.auth.useSubjectCredsOnly=false \\
- -cp "./hdfs-sample-1.0-SNAPSHOT.jar:/usr/hdp/current/hadoop-client/lib/*:/usr/hdp/current/hadoop-hdfs-client/*:/usr/hdp/current/hadoop-client/*" \\
- hdfs.sample.HdfsMain
- webhdfs://one.hdp:50070/app-logs
- webhdfs://one.hdp:50070/apps
- webhdfs://one.hdp:50070/ats
- webhdfs://one.hdp:50070/hdp
- webhdfs://one.hdp:50070/mapred
- webhdfs://one.hdp:50070/mr-history
- webhdfs://one.hdp:50070/tmp
- webhdfs://one.hdp:50070/user
For authentication in Hadoop there exists a wrapper class around a JAAS Subject to provide methods for user login. The UserGroupInformation wrapper without a specific setup uses the system security context, in case of Kerberos this exist in the ticket cache (klist shows the existing security context of a user). This is demonstrated under "With Existing Security Context"below. Further a custom security context can be used for login, either with by using a keytab file or even with credentials. Both approaches are also demonstrated here under "Providing Credentials from Login" and "Via Keytab".
With Existing Security Context
First we would need to authenticate and make sure we have a proper security context:
- $ kinit
- Password for hdfs-user@MYCORP.NET:
- $ klist
- Ticket cache: FILE:/tmp/krb5cc_1013
- Default principal: hdfs-user@MYCORP.NET
- Valid starting Expires Service principal
- 02/14/2016 14:54:32 02/15/2016 14:54:32 krbtgt/MYCORP.NET@MYCORP.NET
With this the following can HDFS client implementation can be used in a secured environment:
- Configuration conf = new Configuration();
- conf.set("fs.defaultFS", "hdfs://one.hdp:8020");
- conf.set("hadoop.security.authentication", "kerberos");
- UserGroupInformation.setConfiguration(conf);
- // Subject is taken from current user context
- UserGroupInformation.loginUserFromSubject(null);
- FileSystem fs = FileSystem.get(conf);
- FileStatus[] fsStatus = fs.listStatus(new Path("/"));
- for(int i = 0; i <= fsStatus.length; i++)
- System.out.println(fsStatus[i].getPath().toString());
Creating the JAAS context during run-time the client could be executed like this:
- java -cp "./hdfs-sample-1.0-SNAPSHOT.jar:/usr/hdp/current/hadoop-client/lib/*:/usr/hdp/current/hadoop-hdfs-client/*:/usr/hdp/current/hadoop-client/*" \\
- hdfs.sample.HdfsMain
- hdfs://one.hdp:8020/app-logs
- hdfs://one.hdp:8020/apps
- hdfs://one.hdp:8020/ats
- hdfs://one.hdp:8020/hdp
- hdfs://one.hdp:8020/mapred
- hdfs://one.hdp:8020/mr-history
- hdfs://one.hdp:8020/tmp
- hdfs://one.hdp:8020/user
Providing login credentials at execution requires the creation of a javax.security.auth.Subject with username and password. This means that we will have to use the GSS-API to do a kinit like this:
- private static String username = "hdfs-user";
- private static char[] password = "hadoop".toCharArray();
- public static LoginContext kinit() throws LoginException
- LoginContext lc = new LoginContext(HdfsMain.class.getSimpleName(), new CallbackHandler()
- public void handle(Callback[] callbacks) throws IOException, UnsupportedCallbackException
- for(Callback c : callbacks)
- if(c instanceof NameCallback)
- ((NameCallback) c).setName(username);
- if(c instanceof PasswordCallback)
- ((PasswordCallback) c).setPassword(password);
- );
- lc.login();
- return lc;
We still have to configure the JAAS login module referenced by the name that we provide in the above implementation. The name applied in the example above is set to be HdfsMain.class.getSimpleName(), so our module configuration should look like this:
- HdfsMain
- com.sun.security.auth.module.Krb5LoginModule required client=TRUE;
- ;
Having this in place we can now login with username and password:
- Configuration conf = new Configuration();
- conf.set("fs.defaultFS", "hdfs://one.hdp:8020");
- conf.set("hadoop.security.authentication", "kerberos");
- UserGroupInformation.setConfiguration(conf);
- LoginContext lc = kinit();
- UserGroupInformation.loginUserFromSubject(lc.getSubject());
- FileSystem fs = FileSystem.get(conf);
- FileStatus[] fsStatus = fs.listStatus(new 以上是关于安全HDFS客户端初始化方式的主要内容,如果未能解决你的问题,请参考以下文章