Github user zsxwing commented on a diff in the pull request:

    https://github.com/apache/spark/pull/16521#discussion_r97175304
  
    --- Diff: 
common/network-common/src/main/java/org/apache/spark/network/crypto/AuthClientBootstrap.java
 ---
    @@ -0,0 +1,128 @@
    +/*
    + * 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.spark.network.crypto;
    +
    +import java.io.IOException;
    +import java.nio.ByteBuffer;
    +import java.security.GeneralSecurityException;
    +import java.security.Key;
    +import javax.crypto.KeyGenerator;
    +import javax.crypto.Mac;
    +import static java.nio.charset.StandardCharsets.UTF_8;
    +
    +import com.google.common.base.Preconditions;
    +import com.google.common.base.Throwables;
    +import io.netty.buffer.ByteBuf;
    +import io.netty.buffer.Unpooled;
    +import io.netty.channel.Channel;
    +import org.slf4j.Logger;
    +import org.slf4j.LoggerFactory;
    +
    +import org.apache.spark.network.client.TransportClient;
    +import org.apache.spark.network.client.TransportClientBootstrap;
    +import org.apache.spark.network.sasl.SaslClientBootstrap;
    +import org.apache.spark.network.sasl.SecretKeyHolder;
    +import org.apache.spark.network.util.JavaUtils;
    +import org.apache.spark.network.util.TransportConf;
    +
    +/**
    + * Bootstraps a {@link TransportClient} by performing authentication using 
Spark's auth protocol.
    + *
    + * This bootstrap falls back to using the SASL bootstrap if the server 
throws an error during
    + * authentication, and the configuration allows it. This is used for 
backwards compatibility
    + * with external shuffle services that do not support the new protocol.
    + *
    + * It also automatically falls back to SASL if the new encryption backend 
is disabled, so that
    + * callers only need to install this bootstrap when authentication is 
enabled.
    + */
    +public class AuthClientBootstrap implements TransportClientBootstrap {
    +
    +  private static final Logger LOG = 
LoggerFactory.getLogger(AuthClientBootstrap.class);
    +
    +  private final TransportConf conf;
    +  private final String appId;
    +  private final String authUser;
    +  private final SecretKeyHolder secretKeyHolder;
    +
    +  public AuthClientBootstrap(
    +      TransportConf conf,
    +      String appId,
    +      SecretKeyHolder secretKeyHolder) {
    +    this.conf = conf;
    +    // TODO: right now this behaves like the SASL backend, because when 
executors start up
    +    // they don't necessarily know the app ID. So they send a hardcoded 
"user" that is defined
    +    // in the SecurityManager, which will also always return the same 
secret (regardless of the
    +    // user name). All that's needed here is for this "user" to match on 
both sides, since that's
    +    // required by the protocol. At some point, though, it would be better 
for the actual app ID
    +    // to be provided here.
    +    this.appId = appId;
    +    this.authUser = secretKeyHolder.getSaslUser(appId);
    +    this.secretKeyHolder = secretKeyHolder;
    +  }
    +
    +  @Override
    +  public void doBootstrap(TransportClient client, Channel channel) {
    +    if (!conf.aesEncryptionEnabled()) {
    +      LOG.debug("AES encryption disabled, using old auth protocol.");
    +      doSaslAuth(client, channel);
    +      return;
    +    }
    +
    +    try {
    +      doSparkAuth(client, channel);
    +    } catch (GeneralSecurityException | IOException e) {
    +      throw Throwables.propagate(e);
    +    } catch (RuntimeException e) {
    +      // There isn't a good exception that can be caught here to know 
whether it's really
    +      // OK to switch back to SASL (because the server doesn't speak the 
new protocol). So
    +      // try it anyway, and in the worst case things will fail again.
    +      if (conf.saslFallback()) {
    +        LOG.debug("New auth protocol failed, trying SASL.", e);
    --- End diff --
    
    nit: sometimes, it's just because the server config is wrong and a warning 
is better to help the user find out it.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to