| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561 |
- /*
- * 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.zookeeper.server;
- import static java.nio.charset.StandardCharsets.UTF_8;
- import java.io.IOException;
- import java.nio.ByteBuffer;
- import java.util.List;
- import java.util.function.Supplier;
- import org.apache.jute.Record;
- import org.apache.zookeeper.KeeperException;
- import org.apache.zookeeper.ZooDefs.OpCode;
- import org.apache.zookeeper.common.Time;
- import org.apache.zookeeper.data.Id;
- import org.apache.zookeeper.metrics.Summary;
- import org.apache.zookeeper.metrics.SummarySet;
- import org.apache.zookeeper.server.persistence.Util;
- import org.apache.zookeeper.server.quorum.LearnerHandler;
- import org.apache.zookeeper.server.quorum.flexible.QuorumVerifier;
- import org.apache.zookeeper.server.util.AuthUtil;
- import org.apache.zookeeper.txn.TxnDigest;
- import org.apache.zookeeper.txn.TxnHeader;
- import org.slf4j.Logger;
- import org.slf4j.LoggerFactory;
- /**
- * This is the structure that represents a request moving through a chain of
- * RequestProcessors. There are various pieces of information that is tacked
- * onto the request as it is processed.
- */
- public class Request {
- private static final Logger LOG = LoggerFactory.getLogger(Request.class);
- public static final Request requestOfDeath = new Request(null, 0, 0, 0, null, null);
- // Considers a request stale if the request's connection has closed. Enabled
- // by default.
- private static volatile boolean staleConnectionCheck = Boolean.parseBoolean(System.getProperty("zookeeper.request_stale_connection_check", "true"));
- // Considers a request stale if the request latency is higher than its
- // associated session timeout. Disabled by default.
- private static volatile boolean staleLatencyCheck = Boolean.parseBoolean(System.getProperty("zookeeper.request_stale_latency_check", "false"));
- public Request(ServerCnxn cnxn, long sessionId, int xid, int type, RequestRecord request, List<Id> authInfo) {
- this.cnxn = cnxn;
- this.sessionId = sessionId;
- this.cxid = xid;
- this.type = type;
- this.request = request;
- this.authInfo = authInfo;
- }
- public Request(long sessionId, int xid, int type, TxnHeader hdr, Record txn, long zxid) {
- this.sessionId = sessionId;
- this.cxid = xid;
- this.type = type;
- this.hdr = hdr;
- this.txn = txn;
- this.zxid = zxid;
- this.request = null;
- this.cnxn = null;
- this.authInfo = null;
- }
- public Request(TxnHeader hdr, Record txn, TxnDigest digest) {
- this.sessionId = hdr.getClientId();
- this.cxid = hdr.getCxid();
- this.type = hdr.getType();
- this.hdr = hdr;
- this.txn = txn;
- this.zxid = hdr.getZxid();
- this.request = null;
- this.cnxn = null;
- this.authInfo = null;
- this.txnDigest = digest;
- }
- public final long sessionId;
- public final int cxid;
- public final int type;
- private final RequestRecord request;
- public <T extends Record> T readRequestRecord(Supplier<T> constructor) throws IOException {
- if (request != null) {
- return request.readRecord(constructor);
- }
- throw new IOException(new NullPointerException("request"));
- }
- public <T extends Record> T readRequestRecordNoException(Supplier<T> constructor) {
- try {
- return readRequestRecord(constructor);
- } catch (IOException e) {
- return null;
- }
- }
- public byte[] readRequestBytes() {
- if (request != null) {
- return request.readBytes();
- }
- return null;
- }
- public String requestDigest() {
- if (request != null) {
- final StringBuilder sb = new StringBuilder();
- final byte[] payload = request.readBytes();
- for (byte b : payload) {
- sb.append(String.format("%02x", (0xff & b)));
- }
- return sb.toString();
- }
- return "request buffer is null";
- }
- public final ServerCnxn cnxn;
- private TxnHeader hdr;
- private Record txn;
- public long zxid = -1;
- public final List<Id> authInfo;
- public final long createTime = Time.currentElapsedTime();
- public long prepQueueStartTime = -1;
- public long prepStartTime = -1;
- public long commitProcQueueStartTime = -1;
- public long commitRecvTime = -1;
- public long syncQueueStartTime;
- public long requestThrottleQueueTime;
- private Object owner;
- private KeeperException e;
- public QuorumVerifier qv = null;
- private TxnDigest txnDigest;
- private boolean isThrottledFlag = false;
- public boolean isThrottled() {
- return isThrottledFlag;
- }
- public void setIsThrottled(boolean val) {
- isThrottledFlag = val;
- }
- public boolean isThrottlable() {
- return this.type != OpCode.ping
- && this.type != OpCode.closeSession
- && this.type != OpCode.createSession;
- }
- public byte[] getSerializeData() {
- if (this.hdr == null) {
- return null;
- }
- try {
- return Util.marshallTxnEntry(this.hdr, this.txn, this.txnDigest);
- } catch (IOException e) {
- LOG.error("This really should be impossible.", e);
- return new byte[32];
- }
- }
- /**
- * If this is a create or close request for a local-only session.
- */
- private boolean isLocalSession = false;
- private int largeRequestSize = -1;
- public boolean isLocalSession() {
- return isLocalSession;
- }
- public void setLocalSession(boolean isLocalSession) {
- this.isLocalSession = isLocalSession;
- }
- public void setLargeRequestSize(int size) {
- largeRequestSize = size;
- }
- public int getLargeRequestSize() {
- return largeRequestSize;
- }
- public Object getOwner() {
- return owner;
- }
- public void setOwner(Object owner) {
- this.owner = owner;
- }
- public TxnHeader getHdr() {
- return hdr;
- }
- public void setHdr(TxnHeader hdr) {
- this.hdr = hdr;
- }
- public Record getTxn() {
- return txn;
- }
- public void setTxn(Record txn) {
- this.txn = txn;
- }
- public ServerCnxn getConnection() {
- return cnxn;
- }
- public static boolean getStaleLatencyCheck() {
- return staleLatencyCheck;
- }
- public static void setStaleLatencyCheck(boolean check) {
- staleLatencyCheck = check;
- }
- public static boolean getStaleConnectionCheck() {
- return staleConnectionCheck;
- }
- public static void setStaleConnectionCheck(boolean check) {
- staleConnectionCheck = check;
- }
- public boolean isStale() {
- if (cnxn == null) {
- return false;
- }
- // closeSession requests should be able to outlive the session in order
- // to clean-up state.
- if (type == OpCode.closeSession) {
- return false;
- }
- if (staleConnectionCheck) {
- // If the connection is closed, consider the request stale.
- if (cnxn.isStale() || cnxn.isInvalid()) {
- return true;
- }
- }
- if (staleLatencyCheck) {
- // If the request latency is higher than session timeout, consider
- // the request stale.
- long currentTime = Time.currentElapsedTime();
- return (currentTime - createTime) > cnxn.getSessionTimeout();
- }
- return false;
- }
- /**
- * A prior request was dropped on this request's connection and
- * therefore this request must also be dropped to ensure correct
- * ordering semantics.
- */
- public boolean mustDrop() {
- return ((cnxn != null) && cnxn.isInvalid());
- }
- /**
- * is the packet type a valid packet in zookeeper
- *
- * @param type
- * the type of the packet
- * @return true if a valid packet, false if not
- */
- static boolean isValid(int type) {
- // make sure this is always synchronized with Zoodefs!!
- switch (type) {
- case OpCode.notification:
- case OpCode.check:
- return false;
- case OpCode.closeSession:
- case OpCode.create:
- case OpCode.create2:
- case OpCode.createTTL:
- case OpCode.createContainer:
- case OpCode.createSession:
- case OpCode.delete:
- case OpCode.deleteContainer:
- case OpCode.exists:
- case OpCode.getACL:
- case OpCode.getChildren:
- case OpCode.getAllChildrenNumber:
- case OpCode.getChildren2:
- case OpCode.getData:
- case OpCode.getEphemerals:
- case OpCode.multi:
- case OpCode.multiRead:
- case OpCode.ping:
- case OpCode.reconfig:
- case OpCode.setACL:
- case OpCode.setData:
- case OpCode.setWatches:
- case OpCode.setWatches2:
- case OpCode.sync:
- case OpCode.checkWatches:
- case OpCode.removeWatches:
- case OpCode.addWatch:
- case OpCode.whoAmI:
- return true;
- default:
- return false;
- }
- }
- public boolean isQuorum() {
- switch (this.type) {
- case OpCode.exists:
- case OpCode.getACL:
- case OpCode.getChildren:
- case OpCode.getAllChildrenNumber:
- case OpCode.getChildren2:
- case OpCode.getData:
- case OpCode.getEphemerals:
- case OpCode.multiRead:
- case OpCode.whoAmI:
- return false;
- case OpCode.create:
- case OpCode.create2:
- case OpCode.createTTL:
- case OpCode.createContainer:
- case OpCode.error:
- case OpCode.delete:
- case OpCode.deleteContainer:
- case OpCode.setACL:
- case OpCode.setData:
- case OpCode.check:
- case OpCode.multi:
- case OpCode.reconfig:
- return true;
- case OpCode.closeSession:
- case OpCode.createSession:
- return !this.isLocalSession;
- default:
- return false;
- }
- }
- public static String op2String(int op) {
- switch (op) {
- case OpCode.notification:
- return "notification";
- case OpCode.create:
- return "create";
- case OpCode.delete:
- return "delete";
- case OpCode.exists:
- return "exists";
- case OpCode.getData:
- return "getData";
- case OpCode.setData:
- return "setData";
- case OpCode.getACL:
- return "getACL";
- case OpCode.setACL:
- return "setACL";
- case OpCode.getChildren:
- return "getChildren";
- case OpCode.sync:
- return "sync";
- case OpCode.ping:
- return "ping";
- case OpCode.getChildren2:
- return "getChildren2";
- case OpCode.check:
- return "check";
- case OpCode.multi:
- return "multi";
- case OpCode.create2:
- return "create2";
- case OpCode.reconfig:
- return "reconfig";
- case OpCode.checkWatches:
- return "checkWatches";
- case OpCode.removeWatches:
- return "removeWatches";
- case OpCode.createContainer:
- return "createContainer";
- case OpCode.deleteContainer:
- return "deleteContainer";
- case OpCode.createTTL:
- return "createTTL";
- case OpCode.multiRead:
- return "multiRead";
- case OpCode.auth:
- return "auth";
- case OpCode.setWatches:
- return "setWatches";
- case OpCode.setWatches2:
- return "setWatches2";
- case OpCode.addWatch:
- return "addWatch";
- case OpCode.sasl:
- return "sasl";
- case OpCode.getEphemerals:
- return "getEphemerals";
- case OpCode.getAllChildrenNumber:
- return "getAllChildrenNumber";
- case OpCode.createSession:
- return "createSession";
- case OpCode.closeSession:
- return "closeSession";
- case OpCode.error:
- return "error";
- case OpCode.whoAmI:
- return "whoAmI";
- default:
- return "unknown " + op;
- }
- }
- @Override
- public String toString() {
- StringBuilder sb = new StringBuilder();
- sb.append("sessionid:0x").append(Long.toHexString(sessionId))
- .append(" type:").append(op2String(type))
- .append(" cxid:0x").append(Long.toHexString(cxid))
- .append(" zxid:0x").append(Long.toHexString(hdr == null ? -2 : hdr.getZxid()))
- .append(" txntype:").append(hdr == null ? "unknown" : "" + hdr.getType());
- // best effort to print the path assoc with this request
- String path = "n/a";
- if (type != OpCode.createSession
- && type != OpCode.setWatches
- && type != OpCode.setWatches2
- && type != OpCode.closeSession
- && request != null) {
- try {
- // make sure we don't mess with request itself
- byte[] bytes = request.readBytes();
- if (bytes != null && bytes.length >= 4) {
- ByteBuffer buf = ByteBuffer.wrap(bytes);
- int pathLen = buf.getInt();
- // sanity check
- if (pathLen >= 0 && pathLen < 4096 && buf.remaining() >= pathLen) {
- byte[] b = new byte[pathLen];
- buf.get(b);
- path = new String(b, UTF_8);
- }
- }
- } catch (Exception e) {
- // ignore - can't find the path, will output "n/a" instead
- }
- }
- sb.append(" reqpath:").append(path);
- return sb.toString();
- }
- public void setException(KeeperException e) {
- this.e = e;
- }
- public KeeperException getException() {
- return e;
- }
- public void logLatency(Summary metric) {
- logLatency(metric, Time.currentWallTime());
- }
- public void logLatency(Summary metric, long currentTime) {
- if (hdr != null) {
- /* Request header is created by leader. If there is clock drift
- * latency might be negative. Headers use wall time, not
- * CLOCK_MONOTONIC.
- */
- long latency = currentTime - hdr.getTime();
- if (latency >= 0) {
- metric.add(latency);
- }
- }
- }
- public void logLatency(SummarySet metric, String key, long currentTime) {
- if (hdr != null) {
- /* Request header is created by leader. If there is clock drift
- * latency might be negative. Headers use wall time, not
- * CLOCK_MONOTONIC.
- */
- long latency = currentTime - hdr.getTime();
- if (latency >= 0) {
- metric.add(key, latency);
- }
- }
- }
- public void logLatency(SummarySet metric, String key) {
- logLatency(metric, key, Time.currentWallTime());
- }
- /**
- * Returns a formatted, comma-separated list of the user IDs
- * associated with this {@code Request}, or {@code null} if no
- * user IDs were found.
- *
- * The return value is used for audit logging. While it may be
- * easy on the eyes, it is underspecified: it does not mention the
- * corresponding {@code scheme}, nor are its components escaped.
- * This is not a security feature.
- *
- * @return a comma-separated list of user IDs, or {@code null} if
- * no user IDs were found.
- */
- public String getUsersForAudit() {
- return AuthUtil.getUsers(authInfo);
- }
- public TxnDigest getTxnDigest() {
- return txnDigest;
- }
- public void setTxnDigest(TxnDigest txnDigest) {
- this.txnDigest = txnDigest;
- }
- public boolean isFromLearner() {
- return owner instanceof LearnerHandler;
- }
- }
|