You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by zh...@apache.org on 2020/08/28 07:46:35 UTC

[shardingsphere] branch master updated: Fix PostgreSQL authentication NullPointerException (#7076)

This is an automated email from the ASF dual-hosted git repository.

zhangyonglun pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere.git


The following commit(s) were added to refs/heads/master by this push:
     new 48237c8  Fix PostgreSQL authentication NullPointerException (#7076)
48237c8 is described below

commit 48237c83fefe02562083f66963f88b20297522e1
Author: sandynz <42...@users.noreply.github.com>
AuthorDate: Fri Aug 28 15:46:15 2020 +0800

    Fix PostgreSQL authentication NullPointerException (#7076)
    
    * Fix PostgreSQL authentication NPE
    
    * Add PostgreSQL unit test cases
    
    * Add PostgreSQL unit test cases
    
    * Update import
---
 .../auth/PostgreSQLAuthenticationEngine.java       |   3 +-
 .../auth/PostgreSQLAuthenticationEngineTest.java   | 145 +++++++++++++++++++++
 2 files changed, 147 insertions(+), 1 deletion(-)

diff --git a/shardingsphere-proxy/shardingsphere-proxy-frontend/shardingsphere-proxy-frontend-postgresql/src/main/java/org/apache/shardingsphere/proxy/frontend/postgresql/auth/PostgreSQLAuthenticationEngine.java b/shardingsphere-proxy/shardingsphere-proxy-frontend/shardingsphere-proxy-frontend-postgresql/src/main/java/org/apache/shardingsphere/proxy/frontend/postgresql/auth/PostgreSQLAuthenticationEngine.java
index 47c10dc..6f25694 100644
--- a/shardingsphere-proxy/shardingsphere-proxy-frontend/shardingsphere-proxy-frontend-postgresql/src/main/java/org/apache/shardingsphere/proxy/frontend/postgresql/auth/PostgreSQLAuthenticationEngine.java
+++ b/shardingsphere-proxy/shardingsphere-proxy-frontend/shardingsphere-proxy-frontend-postgresql/src/main/java/org/apache/shardingsphere/proxy/frontend/postgresql/auth/PostgreSQLAuthenticationEngine.java
@@ -91,7 +91,8 @@ public final class PostgreSQLAuthenticationEngine implements AuthenticationEngin
             }
             md5Salt = PostgreSQLRandomGenerator.getInstance().generateRandomBytes(4);
             context.writeAndFlush(new PostgreSQLAuthenticationMD5PasswordPacket(md5Salt));
-            return AuthenticationResult.continued(username, databaseName);
+            currentAuthResult = AuthenticationResult.continued(username, databaseName);
+            return currentAuthResult;
         } else {
             char messageType = (char) ((PostgreSQLPacketPayload) payload).readInt1();
             if ('p' != messageType) {
diff --git a/shardingsphere-proxy/shardingsphere-proxy-frontend/shardingsphere-proxy-frontend-postgresql/src/test/java/org/apache/shardingsphere/proxy/frontend/postgresql/auth/PostgreSQLAuthenticationEngineTest.java b/shardingsphere-proxy/shardingsphere-proxy-frontend/shardingsphere-proxy-frontend-postgresql/src/test/java/org/apache/shardingsphere/proxy/frontend/postgresql/auth/PostgreSQLAuthenticationEngineTest.java
new file mode 100644
index 0000000..ca3841f
--- /dev/null
+++ b/shardingsphere-proxy/shardingsphere-proxy-frontend/shardingsphere-proxy-frontend-postgresql/src/test/java/org/apache/shardingsphere/proxy/frontend/postgresql/auth/PostgreSQLAuthenticationEngineTest.java
@@ -0,0 +1,145 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.shardingsphere.proxy.frontend.postgresql.auth;
+
+import io.netty.buffer.ByteBuf;
+import io.netty.buffer.UnpooledByteBufAllocator;
+import io.netty.buffer.UnpooledHeapByteBuf;
+import io.netty.channel.ChannelHandlerContext;
+import java.lang.reflect.Field;
+import java.lang.reflect.Method;
+import lombok.SneakyThrows;
+import org.apache.shardingsphere.db.protocol.payload.PacketPayload;
+import org.apache.shardingsphere.db.protocol.postgresql.packet.command.query.binary.BinaryStatementRegistry;
+import org.apache.shardingsphere.db.protocol.postgresql.packet.handshake.PostgreSQLAuthenticationMD5PasswordPacket;
+import org.apache.shardingsphere.db.protocol.postgresql.payload.PostgreSQLPacketPayload;
+import org.apache.shardingsphere.infra.auth.ProxyUser;
+import org.apache.shardingsphere.kernel.context.impl.StandardSchemaContexts;
+import org.apache.shardingsphere.proxy.backend.schema.ProxySchemaContexts;
+import org.apache.shardingsphere.proxy.frontend.engine.AuthenticationResult;
+import org.junit.Test;
+import org.mockito.ArgumentCaptor;
+
+import static org.hamcrest.CoreMatchers.is;
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertThat;
+import static org.mockito.Mockito.mock;
+import static org.mockito.Mockito.verify;
+
+public final class PostgreSQLAuthenticationEngineTest {
+    
+    private final String username = "root";
+    
+    private final String password = "sharding";
+    
+    @Test
+    public void assertHandshake() {
+        int connectionId = new PostgreSQLAuthenticationEngine().handshake(mock(ChannelHandlerContext.class));
+        assertNotNull(BinaryStatementRegistry.getInstance().get(connectionId));
+    }
+    
+    private ByteBuf createByteBuf(final int initialCapacity, final int maxCapacity) {
+        return new UnpooledHeapByteBuf(UnpooledByteBufAllocator.DEFAULT, initialCapacity, maxCapacity);
+    }
+    
+    @Test
+    public void assertSSLNegative() {
+        ByteBuf byteBuf = createByteBuf(8, 8);
+        byteBuf.writeInt(8);
+        byteBuf.writeInt(80877103);
+        PacketPayload payload = new PostgreSQLPacketPayload(byteBuf);
+        AuthenticationResult actual = new PostgreSQLAuthenticationEngine().auth(mock(ChannelHandlerContext.class), payload);
+        assertThat(actual.isFinished(), is(false));
+    }
+    
+    @Test
+    public void assertDatabaseNotExist() {
+        PostgreSQLPacketPayload payload = new PostgreSQLPacketPayload(createByteBuf(32, 512));
+        payload.writeInt4(64);
+        payload.writeInt4(196608);
+        payload.writeStringNul("user");
+        payload.writeStringNul(username);
+        payload.writeStringNul("database");
+        payload.writeStringNul("sharding_db");
+        AuthenticationResult actual = new PostgreSQLAuthenticationEngine().auth(mock(ChannelHandlerContext.class), payload);
+        assertThat(actual.isFinished(), is(false));
+    }
+    
+    @Test
+    public void assertUserNotSet() {
+        PostgreSQLPacketPayload payload = new PostgreSQLPacketPayload(createByteBuf(8, 512));
+        payload.writeInt4(64);
+        payload.writeInt4(196608);
+        AuthenticationResult actual = new PostgreSQLAuthenticationEngine().auth(mock(ChannelHandlerContext.class), payload);
+        assertThat(actual.isFinished(), is(false));
+    }
+    
+    @Test
+    public void assertLoginSuccessful() {
+        assertLogin(password);
+    }
+    
+    @Test
+    public void assertLoginFailed() {
+        assertLogin("wrong" + password);
+    }
+    
+    private void assertLogin(final String inputPassword) {
+        PostgreSQLPacketPayload payload = new PostgreSQLPacketPayload(createByteBuf(16, 128));
+        payload.writeInt4(64);
+        payload.writeInt4(196608);
+        payload.writeStringNul("user");
+        payload.writeStringNul(username);
+        ChannelHandlerContext channelHandlerContext = mock(ChannelHandlerContext.class);
+        PostgreSQLAuthenticationEngine engine = new PostgreSQLAuthenticationEngine();
+        AuthenticationResult actual = engine.auth(channelHandlerContext, payload);
+        assertThat(actual.isFinished(), is(false));
+        assertThat(actual.getUsername(), is(username));
+        ArgumentCaptor<PostgreSQLAuthenticationMD5PasswordPacket> argumentCaptor = ArgumentCaptor.forClass(PostgreSQLAuthenticationMD5PasswordPacket.class);
+        verify(channelHandlerContext).writeAndFlush(argumentCaptor.capture());
+        PostgreSQLAuthenticationMD5PasswordPacket md5PasswordPacket = argumentCaptor.getValue();
+        byte[] md5Salt = getMd5Salt(md5PasswordPacket);
+        
+        payload = new PostgreSQLPacketPayload(createByteBuf(16, 128));
+        String md5Digest = md5Encode(username, inputPassword, md5Salt);
+        payload.writeInt1('p');
+        payload.writeInt4(4 + md5Digest.length() + 1);
+        payload.writeStringNul(md5Digest);
+        
+        ProxySchemaContexts proxySchemaContexts = ProxySchemaContexts.getInstance();
+        StandardSchemaContexts standardSchemaContexts = new StandardSchemaContexts();
+        standardSchemaContexts.getAuthentication().getUsers().put(username, new ProxyUser(password, null));
+        proxySchemaContexts.init(standardSchemaContexts);
+        actual = engine.auth(channelHandlerContext, payload);
+        assertThat(actual.isFinished(), is(password.equals(inputPassword)));
+    }
+    
+    @SneakyThrows(ReflectiveOperationException.class)
+    private byte[] getMd5Salt(final PostgreSQLAuthenticationMD5PasswordPacket md5PasswordPacket) {
+        Field field = PostgreSQLAuthenticationMD5PasswordPacket.class.getDeclaredField("md5Salt");
+        field.setAccessible(true);
+        return (byte[]) field.get(md5PasswordPacket);
+    }
+    
+    @SneakyThrows(ReflectiveOperationException.class)
+    private String md5Encode(final String username, final String password, final byte[] md5Salt) {
+        Method method = PostgreSQLAuthenticationHandler.class.getDeclaredMethod("md5Encode", String.class, String.class, byte[].class);
+        method.setAccessible(true);
+        return (String) method.invoke(PostgreSQLAuthenticationHandler.class, username, password, md5Salt);
+    }
+}