]> arthur.barton.de Git - netatalk.git/blob - libatalk/util/server_ipc.c
First working IPC reconnect
[netatalk.git] / libatalk / util / server_ipc.c
1 /*
2  * All rights reserved. See COPYRIGHT.
3  *
4  * IPC over socketpair between parent and children.
5  */
6
7 #ifdef HAVE_CONFIG_H
8 #include "config.h"
9 #endif 
10
11 #include <sys/types.h>
12 #ifdef HAVE_UNISTD_H
13 #include <unistd.h>
14 #endif 
15 #include <stdio.h>
16 #include <stdlib.h>
17 #include <string.h>
18 #include <sys/socket.h>
19 #include <sys/un.h>
20 #include <errno.h>
21 #include <signal.h>
22 #include <time.h>
23
24 #include <atalk/server_child.h>
25 #include <atalk/server_ipc.h>
26 #include <atalk/logger.h>
27 #include <atalk/util.h>
28 #include <atalk/errchk.h>
29 #include <atalk/paths.h>
30 #include <atalk/globals.h>
31 #include <atalk/dsi.h>
32
33 #define IPC_HEADERLEN 14
34 #define IPC_MAXMSGSIZE 90
35
36 typedef struct ipc_header {
37         uint16_t command;
38     pid_t        child_pid;
39     uid_t    uid;
40     uint32_t len;
41         char     *msg;
42     int      afp_socket;
43     uint16_t DSI_requestID;
44 } ipc_header_t;
45
46 static char *ipc_cmd_str[] = { "IPC_DISCOLDSESSION",
47                                "IPC_GETSESSION"};
48
49 /*
50  * Pass afp_socket to old disconnected session if one has a matching token (token = pid)
51  * @returns -1 on error, 0 if no matching session was found, 1 if session was found and socket passed
52  */
53 static int ipc_kill_token(struct ipc_header *ipc, server_child *children)
54 {
55     pid_t pid;
56
57     if (ipc->len != sizeof(pid_t)) {
58         return -1;
59     }
60     /* assume signals SA_RESTART set */
61     memcpy (&pid, ipc->msg, sizeof(pid_t));
62
63     return server_child_transfer_session(children,
64                                          CHILD_DSIFORK,
65                                          pid,
66                                          ipc->uid,
67                                          ipc->afp_socket,
68                                          ipc->DSI_requestID);
69 }
70
71 /* ----------------- */
72 static int ipc_get_session(struct ipc_header *ipc, server_child *children)
73 {
74     u_int32_t boottime;
75     u_int32_t idlen;
76     char     *clientid, *p;
77
78     
79     if (ipc->len < (sizeof(idlen) + sizeof(boottime)) )
80         return -1;
81
82     p = ipc->msg;
83     memcpy (&idlen, p, sizeof(idlen));
84     idlen = ntohl (idlen);
85     p += sizeof(idlen); 
86
87     memcpy (&boottime, p, sizeof(boottime));
88     p += sizeof(boottime);
89     
90     if (ipc->len < idlen + sizeof(idlen) + sizeof(boottime))
91         return -1;
92
93     if (NULL == (clientid = (char*) malloc(idlen)) )
94         return -1;
95     memcpy (clientid, p, idlen);
96   
97     LOG(log_debug, logtype_afpd, "ipc_get_session(pid: %u, uid: %u, time: 0x%08x)",
98         ipc->child_pid, ipc->uid, boottime); 
99
100     server_child_kill_one_by_id(children,
101                                 CHILD_DSIFORK,
102                                 ipc->child_pid,
103                                 ipc->uid,
104                                 idlen,
105                                 clientid,
106                                 boottime);
107
108     return 0;
109 }
110
111 /***********************************************************************************
112  * Public functions
113  ***********************************************************************************/
114
115 /*!
116  * Listen on UNIX domain socket "name" for IPC from old sesssion
117  *
118  * @args name    (r) file name to use for UNIX domain socket
119  * @returns      socket fd, -1 on error
120  */
121 int ipc_server_uds(const char *name)
122 {
123     EC_INIT;
124     struct sockaddr_un address;
125     socklen_t address_length;
126     int fd = -1;
127
128     EC_NEG1_LOG( fd = socket(PF_UNIX, SOCK_STREAM, 0) );
129     EC_ZERO_LOG( setnonblock(fd, 1) );
130     unlink(name);
131     address.sun_family = AF_UNIX;
132     address_length = sizeof(address.sun_family) + sprintf(address.sun_path, name);
133     EC_ZERO_LOG( bind(fd, (struct sockaddr *)&address, address_length) );
134     EC_ZERO_LOG( listen(fd, 1024) );
135
136 EC_CLEANUP:
137     if (ret != 0) {
138         return -1;
139     }
140     LOG(log_note, logtype_afpd, "ipc_server_uds: fd: %d", fd);
141     return fd;
142 }
143
144 /*!
145  * Connect to UNIX domain socket "name" for IPC with new afpd master
146  *
147  * 1. Connect
148  * 2. send pid, which establishes a child structure for us in the master
149  *
150  * @args name    (r) file name to use for UNIX domain socket
151  * @returns      socket fd, -1 on error
152  */
153 int ipc_client_uds(const char *name)
154 {
155     EC_INIT;
156     struct sockaddr_un address;
157     socklen_t address_length;
158     int fd = -1;
159     pid_t pid = getpid();
160
161     EC_NEG1_LOG( fd = socket(PF_UNIX, SOCK_STREAM, 0) );
162     EC_ZERO_LOG( setnonblock(fd, 1) );
163     address.sun_family = AF_UNIX;
164     address_length = sizeof(address.sun_family) + sprintf(address.sun_path, name);
165
166     EC_ZERO_LOG( connect(fd, (struct sockaddr *)&address, address_length) ); /* 1 */
167     LOG(log_note, logtype_afpd, "ipc_client_uds: connected to master");
168
169     if (writet(fd, &pid, sizeof(pid_t), 0, 1) != sizeof(pid_t)) {
170         LOG(log_error, logtype_afpd, "ipc_client_uds: writet: %s", strerror(errno));
171         EC_FAIL;
172     }
173     LOG(log_note, logtype_afpd, "ipc_client_uds: sent pid");
174
175 EC_CLEANUP:
176     if (ret != 0) {
177         return -1;
178     }
179     LOG(log_note, logtype_afpd, "ipc_client_uds: fd: %d", fd);
180     return fd;
181 }
182
183 int reconnect_ipc(AFPObj *obj)
184 {
185     int retrycount = 0;
186
187     LOG(log_note, logtype_afpd, "reconnect_ipc: start");
188
189     close(obj->ipc_fd);
190     obj->ipc_fd = -1;
191
192     srandom(getpid());
193     sleep((random() % 10) + 5);  /* give it enough time to start */
194
195     while (retrycount++ < 10) {
196         if ((obj->ipc_fd = ipc_client_uds(_PATH_AFP_IPC)) == -1) {
197             LOG(log_error, logtype_afpd, "reconnect_ipc: cant reconnect to master");
198             sleep(1);
199             continue;
200         }
201         LOG(log_note, logtype_afpd, "reconnect_ipc: succesfull IPC reconnect");
202         return 0;
203     }
204     return -1;
205 }
206
207 /* ----------------- 
208  * Ipc format
209  * command
210  * pid
211  * uid
212  * 
213  */
214
215 /*!
216  * Read a IPC message from a child
217  *
218  * @args children  (rw) pointer to our structure with all childs
219  * @args fd        (r)  IPC socket with child
220  *
221  * @returns number of bytes transfered, -1 on error, 0 on EOF
222  */
223 int ipc_server_read(server_child *children, int fd)
224 {
225     int       ret = 0;
226     struct ipc_header ipc;
227     char      buf[IPC_MAXMSGSIZE], *p;
228
229     if ((ret = read(fd, buf, IPC_HEADERLEN)) != IPC_HEADERLEN) {
230         LOG(log_error, logtype_afpd, "Reading IPC header failed (%i of %u bytes read): %s",
231             ret, IPC_HEADERLEN, strerror(errno));
232         return ret;
233     }
234
235     p = buf;
236
237     memcpy(&ipc.command, p, sizeof(ipc.command));
238     p += sizeof(ipc.command);
239
240     memcpy(&ipc.child_pid, p, sizeof(ipc.child_pid));
241     p += sizeof(ipc.child_pid);
242
243     memcpy(&ipc.uid, p, sizeof(ipc.uid));
244     p += sizeof(ipc.uid);
245
246     memcpy(&ipc.len, p, sizeof(ipc.len));
247
248     /* This should never happen */
249     if (ipc.len > (IPC_MAXMSGSIZE - IPC_HEADERLEN)) {
250         LOG (log_info, logtype_afpd, "IPC message exceeds allowed size (%u)", ipc.len);
251         return -1;
252     }
253
254     memset (buf, 0, IPC_MAXMSGSIZE);
255     if ( ipc.len != 0) {
256             if ((ret = read(fd, buf, ipc.len)) != (int) ipc.len) {
257             LOG(log_info, logtype_afpd, "Reading IPC message failed (%u of %u  bytes read): %s",
258                 ret, ipc.len, strerror(errno));
259             return ret;
260         }        
261     }
262     ipc.msg = buf;
263
264     LOG(log_debug, logtype_afpd, "ipc_server_read(%s): pid: %u",
265         ipc_cmd_str[ipc.command], ipc.child_pid); 
266
267     int afp_socket;
268
269     switch (ipc.command) {
270
271         case IPC_DISCOLDSESSION:
272         if (readt(fd, &ipc.DSI_requestID, 2, 0, 2) != 2) {
273             LOG (log_error, logtype_afpd, "ipc_read(%s:child[%u]): couldnt read DSI id: %s",
274                  ipc_cmd_str[ipc.command], ipc.child_pid, strerror(errno));
275         }
276         if ((ipc.afp_socket = recv_fd(fd, 1)) == -1) {
277             LOG (log_error, logtype_afpd, "ipc_read(%s:child[%u]): recv_fd: %s",
278                  ipc_cmd_str[ipc.command], ipc.child_pid, strerror(errno));
279             return -1;
280         }
281                 if (ipc_kill_token(&ipc, children) == 1) {
282             /* Transfered session (ie afp_socket) to old disconnected child, now kill the new one */
283             LOG(log_note, logtype_afpd, "Reconnect: killing new session child[%u] after transfer",
284                 ipc.child_pid);
285             kill(ipc.child_pid, SIGTERM);
286         }        
287         close(ipc.afp_socket);
288         break;
289
290         case IPC_GETSESSION:
291                 if (ipc_get_session(&ipc, children) != 0)
292             return -1;
293         break;
294
295         default:
296                 LOG (log_info, logtype_afpd, "ipc_read: unknown command: %d", ipc.command);
297                 return -1;
298     }
299
300     return ret;
301 }
302
303 /* ----------------- */
304 int ipc_child_write(int fd, uint16_t command, int len, void *msg)
305 {
306    char block[IPC_MAXMSGSIZE], *p;
307    pid_t pid;
308    uid_t uid;
309    ssize_t ret;
310
311    p = block;
312
313    memset ( p, 0 , IPC_MAXMSGSIZE);
314    if (len + IPC_HEADERLEN > IPC_MAXMSGSIZE)
315        return -1;
316
317    memcpy(p, &command, sizeof(command));
318    p   += sizeof(command);
319
320    pid = getpid();
321    memcpy(p, &pid, sizeof(pid_t));
322    p += sizeof(pid_t);
323    
324    /* FIXME 
325     * using uid is wrong. It will not disconnect if the new connection
326     * is with a different user. 
327     * But we really don't want a remote kill command.
328    */
329    uid = geteuid();
330    memcpy(p, &uid, sizeof(uid_t));
331    p += sizeof(uid_t);
332
333    memcpy(p, &len, 4);
334    p += 4;
335
336    memcpy(p, msg, len);
337
338    LOG(log_debug, logtype_afpd, "ipc_child_write(%s)", ipc_cmd_str[command]);
339
340    if ((ret = writet(fd, block, len+IPC_HEADERLEN, 0, 1)) != -len+IPC_HEADERLEN) {
341        return -1;
342    }
343
344    return 0;
345 }
346