/*-1* SPDX-License-Identifier: BSD-2-Clause2*3* Copyright (c) 2008 Isilon Inc http://www.isilon.com/4* Authors: Doug Rabson <[email protected]>5* Developed with Red Inc: Alfred Perlstein <[email protected]>6*7* Redistribution and use in source and binary forms, with or without8* modification, are permitted provided that the following conditions9* are met:10* 1. Redistributions of source code must retain the above copyright11* notice, this list of conditions and the following disclaimer.12* 2. Redistributions in binary form must reproduce the above copyright13* notice, this list of conditions and the following disclaimer in the14* documentation and/or other materials provided with the distribution.15*16* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND17* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE18* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE19* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE20* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL21* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS22* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)23* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT24* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY25* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF26* SUCH DAMAGE.27*/2829#ifndef _RPC_REPLAY_H30#define _RPC_REPLAY_H3132enum replay_state {33RS_NEW, /* new request - caller should execute */34RS_DONE, /* request was executed and reply sent */35RS_INPROGRESS, /* request is being executed now */36RS_ERROR /* allocation or other failure */37};3839struct replay_cache;4041/*42* Create a new replay cache.43*/44struct replay_cache *replay_newcache(size_t);4546/*47* Set the replay cache size.48*/49void replay_setsize(struct replay_cache *, size_t);5051/*52* Free a replay cache. Caller must ensure that no cache entries are53* in-progress.54*/55void replay_freecache(struct replay_cache *rc);5657/*58* Check a replay cache for a message from a given address.59*60* If this is a new request, RS_NEW is returned. Caller should call61* replay_setreply with the results of the request.62*63* If this is a request which is currently executing64* (i.e. replay_setreply hasn't been called for it yet), RS_INPROGRESS65* is returned. The caller should silently drop the request.66*67* If a reply to this message already exists, *repmsg and *mp are set68* to point at the reply and, RS_DONE is returned. The caller should69* re-send this reply.70*71* If the attempt to update the replay cache or copy a replay failed72* for some reason (typically memory shortage), RS_ERROR is returned.73*/74enum replay_state replay_find(struct replay_cache *rc,75struct rpc_msg *msg, struct sockaddr *addr,76struct rpc_msg *repmsg, struct mbuf **mp);7778/*79* Call this after executing a request to record the reply.80*/81void replay_setreply(struct replay_cache *rc,82struct rpc_msg *repmsg, struct sockaddr *addr, struct mbuf *m);8384#endif /* !_RPC_REPLAY_H */858687