]> git.ipfire.org Git - thirdparty/squid.git/blame - src/ipc/SharedListen.cc
Renamed squid.h to squid-old.h and config.h to squid.h
[thirdparty/squid.git] / src / ipc / SharedListen.cc
CommitLineData
0d0bce6a
AR
1/*
2 * $Id$
3 *
4 * DEBUG: section 54 Interprocess Communication
5 *
6 */
7
f7f3304a 8#include "squid.h"
0d0bce6a 9#include <map>
e0d28505 10#include "comm.h"
a67d2b2e 11#include "base/TextException.h"
e0d28505 12#include "comm/Connection.h"
0d0bce6a
AR
13#include "ipc/Port.h"
14#include "ipc/Messages.h"
15#include "ipc/Kids.h"
16#include "ipc/TypedMsgHdr.h"
17#include "ipc/StartListening.h"
18#include "ipc/SharedListen.h"
19
0d0bce6a
AR
20/// holds information necessary to handle JoinListen response
21class PendingOpenRequest
22{
23public:
24 Ipc::OpenListenerParams params; ///< actual comm_open_sharedListen() parameters
25 AsyncCall::Pointer callback; // who to notify
26};
27
28/// maps ID assigned at request time to the response callback
29typedef std::map<int, PendingOpenRequest> SharedListenRequestMap;
30static SharedListenRequestMap TheSharedListenRequestMap;
31
32static int
33AddToMap(const PendingOpenRequest &por)
34{
35 // find unused ID using linear seach; there should not be many entries
36 for (int id = 0; true; ++id) {
37 if (TheSharedListenRequestMap.find(id) == TheSharedListenRequestMap.end()) {
38 TheSharedListenRequestMap[id] = por;
39 return id;
40 }
41 }
42 assert(false); // not reached
43 return -1;
44}
45
46Ipc::OpenListenerParams::OpenListenerParams()
47{
48 xmemset(this, 0, sizeof(*this));
49}
50
51bool
52Ipc::OpenListenerParams::operator <(const OpenListenerParams &p) const
53{
54 if (sock_type != p.sock_type)
55 return sock_type < p.sock_type;
56
57 if (proto != p.proto)
58 return proto < p.proto;
59
60 // ignore flags and fdNote differences because they do not affect binding
61
62 return addr.compareWhole(p.addr) < 0;
63}
64
65
66
67Ipc::SharedListenRequest::SharedListenRequest(): requestorId(-1), mapId(-1)
68{
69 // caller will then set public data members
70}
71
72Ipc::SharedListenRequest::SharedListenRequest(const TypedMsgHdr &hdrMsg)
73{
8822ebee
AR
74 hdrMsg.checkType(mtSharedListenRequest);
75 hdrMsg.getPod(*this);
0d0bce6a
AR
76}
77
78void Ipc::SharedListenRequest::pack(TypedMsgHdr &hdrMsg) const
79{
8822ebee
AR
80 hdrMsg.setType(mtSharedListenRequest);
81 hdrMsg.putPod(*this);
0d0bce6a
AR
82}
83
84
b72fb55d
CT
85Ipc::SharedListenResponse::SharedListenResponse(int aFd, int anErrNo, int aMapId):
86 fd(aFd), errNo(anErrNo), mapId(aMapId)
0d0bce6a
AR
87{
88}
89
90Ipc::SharedListenResponse::SharedListenResponse(const TypedMsgHdr &hdrMsg):
e34d49a9 91 fd(-1), errNo(0), mapId(-1)
0d0bce6a 92{
8822ebee
AR
93 hdrMsg.checkType(mtSharedListenResponse);
94 hdrMsg.getPod(*this);
b72fb55d 95 fd = hdrMsg.getFd();
e0d28505 96 // other conn details are passed in OpenListenerParams and filled out by SharedListenJoin()
0d0bce6a
AR
97}
98
99void Ipc::SharedListenResponse::pack(TypedMsgHdr &hdrMsg) const
100{
8822ebee
AR
101 hdrMsg.setType(mtSharedListenResponse);
102 hdrMsg.putPod(*this);
b72fb55d 103 hdrMsg.putFd(fd);
0d0bce6a
AR
104}
105
106
107void Ipc::JoinSharedListen(const OpenListenerParams &params,
5667a628 108 AsyncCall::Pointer &callback)
0d0bce6a
AR
109{
110 PendingOpenRequest por;
111 por.params = params;
112 por.callback = callback;
113
114 SharedListenRequest request;
115 request.requestorId = KidIdentifier;
116 request.params = por.params;
117 request.mapId = AddToMap(por);
118
119 debugs(54, 3, HERE << "getting listening FD for " << request.params.addr <<
5667a628 120 " mapId=" << request.mapId);
0d0bce6a
AR
121
122 TypedMsgHdr message;
123 request.pack(message);
124 SendMessage(coordinatorAddr, message);
125}
126
127void Ipc::SharedListenJoined(const SharedListenResponse &response)
128{
e0d28505 129 // Dont debugs c fully since only FD is filled right now.
b72fb55d 130 debugs(54, 3, HERE << "got listening FD " << response.fd << " errNo=" <<
5667a628 131 response.errNo << " mapId=" << response.mapId);
0d0bce6a
AR
132
133 Must(TheSharedListenRequestMap.find(response.mapId) != TheSharedListenRequestMap.end());
134 PendingOpenRequest por = TheSharedListenRequestMap[response.mapId];
135 Must(por.callback != NULL);
136 TheSharedListenRequestMap.erase(response.mapId);
137
b72fb55d
CT
138 StartListeningCb *cbd = dynamic_cast<StartListeningCb*>(por.callback->getDialer());
139 assert(cbd && cbd->conn != NULL);
140 Must(cbd && cbd->conn != NULL);
141 cbd->conn->fd = response.fd;
142
143 if (Comm::IsConnOpen(cbd->conn)) {
0d0bce6a 144 OpenListenerParams &p = por.params;
b72fb55d
CT
145 cbd->conn->local = p.addr;
146 cbd->conn->flags = p.flags;
e0d28505 147 // XXX: leave the comm AI stuff to comm_import_opened()?
0d0bce6a
AR
148 struct addrinfo *AI = NULL;
149 p.addr.GetAddrInfo(AI);
150 AI->ai_socktype = p.sock_type;
151 AI->ai_protocol = p.proto;
b72fb55d 152 comm_import_opened(cbd->conn, FdNote(p.fdNote), AI);
0d0bce6a
AR
153 p.addr.FreeAddrInfo(AI);
154 }
155
0d0bce6a 156 cbd->errNo = response.errNo;
e0d28505 157 cbd->handlerSubscription = por.params.handlerSubscription;
0d0bce6a
AR
158 ScheduleCallHere(por.callback);
159}