Willy Tarreau | 92fb983 | 2007-10-16 17:34:28 +0200 | [diff] [blame] | 1 | /* |
| 2 | * UNIX SOCK_STREAM protocol layer (uxst) |
| 3 | * |
Willy Tarreau | eb47268 | 2010-05-28 18:46:57 +0200 | [diff] [blame] | 4 | * Copyright 2000-2010 Willy Tarreau <w@1wt.eu> |
Willy Tarreau | 92fb983 | 2007-10-16 17:34:28 +0200 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | */ |
| 12 | |
| 13 | #include <ctype.h> |
| 14 | #include <errno.h> |
| 15 | #include <fcntl.h> |
| 16 | #include <stdio.h> |
| 17 | #include <stdlib.h> |
| 18 | #include <string.h> |
| 19 | #include <syslog.h> |
| 20 | #include <time.h> |
| 21 | |
Willy Tarreau | 92fb983 | 2007-10-16 17:34:28 +0200 | [diff] [blame] | 22 | #include <sys/socket.h> |
| 23 | #include <sys/stat.h> |
| 24 | #include <sys/types.h> |
| 25 | #include <sys/un.h> |
| 26 | |
| 27 | #include <common/compat.h> |
| 28 | #include <common/config.h> |
| 29 | #include <common/debug.h> |
Willy Tarreau | d740bab | 2007-10-28 11:14:07 +0100 | [diff] [blame] | 30 | #include <common/errors.h> |
Willy Tarreau | 92fb983 | 2007-10-16 17:34:28 +0200 | [diff] [blame] | 31 | #include <common/mini-clist.h> |
| 32 | #include <common/standard.h> |
| 33 | #include <common/time.h> |
| 34 | #include <common/version.h> |
| 35 | |
Willy Tarreau | 92fb983 | 2007-10-16 17:34:28 +0200 | [diff] [blame] | 36 | #include <types/global.h> |
Willy Tarreau | 92fb983 | 2007-10-16 17:34:28 +0200 | [diff] [blame] | 37 | |
Willy Tarreau | 92fb983 | 2007-10-16 17:34:28 +0200 | [diff] [blame] | 38 | #include <proto/fd.h> |
| 39 | #include <proto/log.h> |
| 40 | #include <proto/protocols.h> |
| 41 | #include <proto/proto_uxst.h> |
Willy Tarreau | c63190d | 2012-05-11 14:23:52 +0200 | [diff] [blame] | 42 | #include <proto/sock_raw.h> |
Willy Tarreau | 92fb983 | 2007-10-16 17:34:28 +0200 | [diff] [blame] | 43 | #include <proto/task.h> |
| 44 | |
Emeric Brun | cf20bf1 | 2010-10-22 16:06:11 +0200 | [diff] [blame] | 45 | static int uxst_bind_listener(struct listener *listener, char *errmsg, int errlen); |
| 46 | static int uxst_bind_listeners(struct protocol *proto, char *errmsg, int errlen); |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 47 | static int uxst_unbind_listeners(struct protocol *proto); |
| 48 | |
| 49 | /* Note: must not be declared <const> as its list will be overwritten */ |
| 50 | static struct protocol proto_unix = { |
| 51 | .name = "unix_stream", |
| 52 | .sock_domain = PF_UNIX, |
| 53 | .sock_type = SOCK_STREAM, |
| 54 | .sock_prot = 0, |
| 55 | .sock_family = AF_UNIX, |
| 56 | .sock_addrlen = sizeof(struct sockaddr_un), |
| 57 | .l3_addrlen = sizeof(((struct sockaddr_un*)0)->sun_path),/* path len */ |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 58 | .accept = &listener_accept, |
Emeric Brun | cf20bf1 | 2010-10-22 16:06:11 +0200 | [diff] [blame] | 59 | .bind = uxst_bind_listener, |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 60 | .bind_all = uxst_bind_listeners, |
| 61 | .unbind_all = uxst_unbind_listeners, |
| 62 | .enable_all = enable_all_listeners, |
| 63 | .disable_all = disable_all_listeners, |
Willy Tarreau | 59b9479 | 2012-05-11 16:16:40 +0200 | [diff] [blame] | 64 | .get_src = uxst_get_src, |
| 65 | .get_dst = uxst_get_dst, |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 66 | .listeners = LIST_HEAD_INIT(proto_unix.listeners), |
| 67 | .nb_listeners = 0, |
| 68 | }; |
| 69 | |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 70 | /******************************** |
| 71 | * 1) low-level socket functions |
| 72 | ********************************/ |
| 73 | |
Willy Tarreau | 59b9479 | 2012-05-11 16:16:40 +0200 | [diff] [blame] | 74 | /* |
| 75 | * Retrieves the source address for the socket <fd>, with <dir> indicating |
| 76 | * if we're a listener (=0) or an initiator (!=0). It returns 0 in case of |
| 77 | * success, -1 in case of error. The socket's source address is stored in |
| 78 | * <sa> for <salen> bytes. |
| 79 | */ |
| 80 | int uxst_get_src(int fd, struct sockaddr *sa, socklen_t salen, int dir) |
| 81 | { |
| 82 | if (dir) |
| 83 | return getsockname(fd, sa, &salen); |
| 84 | else |
| 85 | return getpeername(fd, sa, &salen); |
| 86 | } |
| 87 | |
| 88 | |
| 89 | /* |
| 90 | * Retrieves the original destination address for the socket <fd>, with <dir> |
| 91 | * indicating if we're a listener (=0) or an initiator (!=0). It returns 0 in |
| 92 | * case of success, -1 in case of error. The socket's source address is stored |
| 93 | * in <sa> for <salen> bytes. |
| 94 | */ |
| 95 | int uxst_get_dst(int fd, struct sockaddr *sa, socklen_t salen, int dir) |
| 96 | { |
| 97 | if (dir) |
| 98 | return getpeername(fd, sa, &salen); |
| 99 | else |
| 100 | return getsockname(fd, sa, &salen); |
| 101 | } |
| 102 | |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 103 | |
Cyril Bonté | 1f5848a | 2010-11-14 17:03:19 +0100 | [diff] [blame] | 104 | /* Tries to destroy the UNIX stream socket <path>. The socket must not be used |
| 105 | * anymore. It practises best effort, and no error is returned. |
| 106 | */ |
| 107 | static void destroy_uxst_socket(const char *path) |
| 108 | { |
| 109 | struct sockaddr_un addr; |
| 110 | int sock, ret; |
| 111 | |
| 112 | /* We might have been chrooted, so we may not be able to access the |
| 113 | * socket. In order to avoid bothering the other end, we connect with a |
| 114 | * wrong protocol, namely SOCK_DGRAM. The return code from connect() |
| 115 | * is enough to know if the socket is still live or not. If it's live |
| 116 | * in mode SOCK_STREAM, we get EPROTOTYPE or anything else but not |
| 117 | * ECONNREFUSED. In this case, we do not touch it because it's used |
| 118 | * by some other process. |
| 119 | */ |
| 120 | sock = socket(PF_UNIX, SOCK_DGRAM, 0); |
| 121 | if (sock < 0) |
| 122 | return; |
| 123 | |
| 124 | addr.sun_family = AF_UNIX; |
| 125 | strncpy(addr.sun_path, path, sizeof(addr.sun_path)); |
| 126 | addr.sun_path[sizeof(addr.sun_path) - 1] = 0; |
| 127 | ret = connect(sock, (struct sockaddr *)&addr, sizeof(addr)); |
| 128 | if (ret < 0 && errno == ECONNREFUSED) { |
| 129 | /* Connect failed: the socket still exists but is not used |
| 130 | * anymore. Let's remove this socket now. |
| 131 | */ |
| 132 | unlink(path); |
| 133 | } |
| 134 | close(sock); |
| 135 | } |
| 136 | |
| 137 | |
| 138 | /******************************** |
| 139 | * 2) listener-oriented functions |
| 140 | ********************************/ |
| 141 | |
| 142 | |
| 143 | /* This function creates a UNIX socket associated to the listener. It changes |
| 144 | * the state from ASSIGNED to LISTEN. The socket is NOT enabled for polling. |
| 145 | * The return value is composed from ERR_NONE, ERR_RETRYABLE and ERR_FATAL. |
Willy Tarreau | 92fb983 | 2007-10-16 17:34:28 +0200 | [diff] [blame] | 146 | */ |
Cyril Bonté | 1f5848a | 2010-11-14 17:03:19 +0100 | [diff] [blame] | 147 | static int uxst_bind_listener(struct listener *listener, char *errmsg, int errlen) |
Willy Tarreau | 92fb983 | 2007-10-16 17:34:28 +0200 | [diff] [blame] | 148 | { |
Cyril Bonté | 1f5848a | 2010-11-14 17:03:19 +0100 | [diff] [blame] | 149 | int fd; |
Willy Tarreau | 92fb983 | 2007-10-16 17:34:28 +0200 | [diff] [blame] | 150 | char tempname[MAXPATHLEN]; |
| 151 | char backname[MAXPATHLEN]; |
| 152 | struct sockaddr_un addr; |
Willy Tarreau | b40dc94 | 2010-11-07 12:10:51 +0100 | [diff] [blame] | 153 | const char *msg = NULL; |
Cyril Bonté | 1f5848a | 2010-11-14 17:03:19 +0100 | [diff] [blame] | 154 | const char *path; |
| 155 | |
| 156 | int ret; |
Willy Tarreau | 92fb983 | 2007-10-16 17:34:28 +0200 | [diff] [blame] | 157 | |
Cyril Bonté | 1f5848a | 2010-11-14 17:03:19 +0100 | [diff] [blame] | 158 | /* ensure we never return garbage */ |
| 159 | if (errmsg && errlen) |
| 160 | *errmsg = 0; |
| 161 | |
| 162 | if (listener->state != LI_ASSIGNED) |
| 163 | return ERR_NONE; /* already bound */ |
| 164 | |
| 165 | path = ((struct sockaddr_un *)&listener->addr)->sun_path; |
Willy Tarreau | 92fb983 | 2007-10-16 17:34:28 +0200 | [diff] [blame] | 166 | |
| 167 | /* 1. create socket names */ |
| 168 | if (!path[0]) { |
Willy Tarreau | b40dc94 | 2010-11-07 12:10:51 +0100 | [diff] [blame] | 169 | msg = "Invalid empty name for a UNIX socket"; |
Willy Tarreau | 92fb983 | 2007-10-16 17:34:28 +0200 | [diff] [blame] | 170 | goto err_return; |
| 171 | } |
| 172 | |
| 173 | ret = snprintf(tempname, MAXPATHLEN, "%s.%d.tmp", path, pid); |
| 174 | if (ret < 0 || ret >= MAXPATHLEN) { |
Willy Tarreau | b40dc94 | 2010-11-07 12:10:51 +0100 | [diff] [blame] | 175 | msg = "name too long for UNIX socket"; |
Willy Tarreau | 92fb983 | 2007-10-16 17:34:28 +0200 | [diff] [blame] | 176 | goto err_return; |
| 177 | } |
| 178 | |
| 179 | ret = snprintf(backname, MAXPATHLEN, "%s.%d.bak", path, pid); |
| 180 | if (ret < 0 || ret >= MAXPATHLEN) { |
Willy Tarreau | b40dc94 | 2010-11-07 12:10:51 +0100 | [diff] [blame] | 181 | msg = "name too long for UNIX socket"; |
Willy Tarreau | 92fb983 | 2007-10-16 17:34:28 +0200 | [diff] [blame] | 182 | goto err_return; |
| 183 | } |
| 184 | |
| 185 | /* 2. clean existing orphaned entries */ |
| 186 | if (unlink(tempname) < 0 && errno != ENOENT) { |
Willy Tarreau | b40dc94 | 2010-11-07 12:10:51 +0100 | [diff] [blame] | 187 | msg = "error when trying to unlink previous UNIX socket"; |
Willy Tarreau | 92fb983 | 2007-10-16 17:34:28 +0200 | [diff] [blame] | 188 | goto err_return; |
| 189 | } |
| 190 | |
| 191 | if (unlink(backname) < 0 && errno != ENOENT) { |
Willy Tarreau | b40dc94 | 2010-11-07 12:10:51 +0100 | [diff] [blame] | 192 | msg = "error when trying to unlink previous UNIX socket"; |
Willy Tarreau | 92fb983 | 2007-10-16 17:34:28 +0200 | [diff] [blame] | 193 | goto err_return; |
| 194 | } |
| 195 | |
| 196 | /* 3. backup existing socket */ |
| 197 | if (link(path, backname) < 0 && errno != ENOENT) { |
Willy Tarreau | b40dc94 | 2010-11-07 12:10:51 +0100 | [diff] [blame] | 198 | msg = "error when trying to preserve previous UNIX socket"; |
Willy Tarreau | 92fb983 | 2007-10-16 17:34:28 +0200 | [diff] [blame] | 199 | goto err_return; |
| 200 | } |
| 201 | |
| 202 | /* 4. prepare new socket */ |
| 203 | addr.sun_family = AF_UNIX; |
| 204 | strncpy(addr.sun_path, tempname, sizeof(addr.sun_path)); |
| 205 | addr.sun_path[sizeof(addr.sun_path) - 1] = 0; |
| 206 | |
Cyril Bonté | 1f5848a | 2010-11-14 17:03:19 +0100 | [diff] [blame] | 207 | fd = socket(PF_UNIX, SOCK_STREAM, 0); |
| 208 | if (fd < 0) { |
Willy Tarreau | b40dc94 | 2010-11-07 12:10:51 +0100 | [diff] [blame] | 209 | msg = "cannot create UNIX socket"; |
Willy Tarreau | 92fb983 | 2007-10-16 17:34:28 +0200 | [diff] [blame] | 210 | goto err_unlink_back; |
| 211 | } |
| 212 | |
Cyril Bonté | 1f5848a | 2010-11-14 17:03:19 +0100 | [diff] [blame] | 213 | if (fd >= global.maxsock) { |
Willy Tarreau | b40dc94 | 2010-11-07 12:10:51 +0100 | [diff] [blame] | 214 | msg = "socket(): not enough free sockets, raise -n argument"; |
Willy Tarreau | 92fb983 | 2007-10-16 17:34:28 +0200 | [diff] [blame] | 215 | goto err_unlink_temp; |
| 216 | } |
Cyril Bonté | 1f5848a | 2010-11-14 17:03:19 +0100 | [diff] [blame] | 217 | |
| 218 | if (fcntl(fd, F_SETFL, O_NONBLOCK) == -1) { |
Willy Tarreau | b40dc94 | 2010-11-07 12:10:51 +0100 | [diff] [blame] | 219 | msg = "cannot make UNIX socket non-blocking"; |
Willy Tarreau | 92fb983 | 2007-10-16 17:34:28 +0200 | [diff] [blame] | 220 | goto err_unlink_temp; |
| 221 | } |
Cyril Bonté | 1f5848a | 2010-11-14 17:03:19 +0100 | [diff] [blame] | 222 | |
| 223 | if (bind(fd, (struct sockaddr *)&addr, sizeof(addr)) < 0) { |
Willy Tarreau | 92fb983 | 2007-10-16 17:34:28 +0200 | [diff] [blame] | 224 | /* note that bind() creates the socket <tempname> on the file system */ |
Willy Tarreau | b40dc94 | 2010-11-07 12:10:51 +0100 | [diff] [blame] | 225 | msg = "cannot bind UNIX socket"; |
Willy Tarreau | 92fb983 | 2007-10-16 17:34:28 +0200 | [diff] [blame] | 226 | goto err_unlink_temp; |
| 227 | } |
| 228 | |
Cyril Bonté | 1f5848a | 2010-11-14 17:03:19 +0100 | [diff] [blame] | 229 | /* <uid> and <gid> different of -1 will be used to change the socket owner. |
| 230 | * If <mode> is not 0, it will be used to restrict access to the socket. |
| 231 | * While it is known not to be portable on every OS, it's still useful |
| 232 | * where it works. |
| 233 | */ |
| 234 | if (((listener->perm.ux.uid != -1 || listener->perm.ux.gid != -1) && |
| 235 | (chown(tempname, listener->perm.ux.uid, listener->perm.ux.gid) == -1)) || |
| 236 | (listener->perm.ux.mode != 0 && chmod(tempname, listener->perm.ux.mode) == -1)) { |
Willy Tarreau | b40dc94 | 2010-11-07 12:10:51 +0100 | [diff] [blame] | 237 | msg = "cannot change UNIX socket ownership"; |
Willy Tarreau | e6ad2b1 | 2007-10-18 12:45:54 +0200 | [diff] [blame] | 238 | goto err_unlink_temp; |
| 239 | } |
| 240 | |
Cyril Bonté | 1f5848a | 2010-11-14 17:03:19 +0100 | [diff] [blame] | 241 | if (listen(fd, listener->backlog ? listener->backlog : listener->maxconn) < 0) { |
Willy Tarreau | b40dc94 | 2010-11-07 12:10:51 +0100 | [diff] [blame] | 242 | msg = "cannot listen to UNIX socket"; |
Willy Tarreau | 92fb983 | 2007-10-16 17:34:28 +0200 | [diff] [blame] | 243 | goto err_unlink_temp; |
| 244 | } |
| 245 | |
| 246 | /* 5. install. |
| 247 | * Point of no return: we are ready, we'll switch the sockets. We don't |
| 248 | * fear loosing the socket <path> because we have a copy of it in |
| 249 | * backname. |
| 250 | */ |
| 251 | if (rename(tempname, path) < 0) { |
Willy Tarreau | b40dc94 | 2010-11-07 12:10:51 +0100 | [diff] [blame] | 252 | msg = "cannot switch final and temporary UNIX sockets"; |
Willy Tarreau | 92fb983 | 2007-10-16 17:34:28 +0200 | [diff] [blame] | 253 | goto err_rename; |
| 254 | } |
| 255 | |
| 256 | /* 6. cleanup */ |
| 257 | unlink(backname); /* no need to keep this one either */ |
| 258 | |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 259 | /* the socket is now listening */ |
| 260 | listener->fd = fd; |
| 261 | listener->state = LI_LISTEN; |
| 262 | |
| 263 | /* the function for the accept() event */ |
| 264 | fd_insert(fd); |
Willy Tarreau | aece46a | 2012-07-06 12:25:58 +0200 | [diff] [blame] | 265 | fdtab[fd].iocb = listener->proto->accept; |
Willy Tarreau | eabf313 | 2008-08-29 23:36:51 +0200 | [diff] [blame] | 266 | fdtab[fd].owner = listener; /* reference the listener instead of a task */ |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 267 | return ERR_NONE; |
Cyril Bonté | 1f5848a | 2010-11-14 17:03:19 +0100 | [diff] [blame] | 268 | err_rename: |
| 269 | ret = rename(backname, path); |
| 270 | if (ret < 0 && errno == ENOENT) |
| 271 | unlink(path); |
| 272 | err_unlink_temp: |
| 273 | unlink(tempname); |
| 274 | close(fd); |
| 275 | err_unlink_back: |
| 276 | unlink(backname); |
| 277 | err_return: |
| 278 | if (msg && errlen) |
| 279 | snprintf(errmsg, errlen, "%s [%s]", msg, path); |
| 280 | return ERR_FATAL | ERR_ALERT; |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 281 | } |
| 282 | |
| 283 | /* This function closes the UNIX sockets for the specified listener. |
| 284 | * The listener enters the LI_ASSIGNED state. It always returns ERR_NONE. |
| 285 | */ |
| 286 | static int uxst_unbind_listener(struct listener *listener) |
| 287 | { |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 288 | if (listener->state > LI_ASSIGNED) { |
| 289 | unbind_listener(listener); |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 290 | destroy_uxst_socket(((struct sockaddr_un *)&listener->addr)->sun_path); |
| 291 | } |
| 292 | return ERR_NONE; |
| 293 | } |
| 294 | |
| 295 | /* Add a listener to the list of unix stream listeners. The listener's state |
| 296 | * is automatically updated from LI_INIT to LI_ASSIGNED. The number of |
| 297 | * listeners is updated. This is the function to use to add a new listener. |
| 298 | */ |
| 299 | void uxst_add_listener(struct listener *listener) |
| 300 | { |
| 301 | if (listener->state != LI_INIT) |
| 302 | return; |
| 303 | listener->state = LI_ASSIGNED; |
| 304 | listener->proto = &proto_unix; |
| 305 | LIST_ADDQ(&proto_unix.listeners, &listener->proto_list); |
| 306 | proto_unix.nb_listeners++; |
| 307 | } |
| 308 | |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 309 | /******************************** |
| 310 | * 3) protocol-oriented functions |
| 311 | ********************************/ |
| 312 | |
| 313 | |
Willy Tarreau | 92fb983 | 2007-10-16 17:34:28 +0200 | [diff] [blame] | 314 | /* This function creates all UNIX sockets bound to the protocol entry <proto>. |
| 315 | * It is intended to be used as the protocol's bind_all() function. |
| 316 | * The sockets will be registered but not added to any fd_set, in order not to |
| 317 | * loose them across the fork(). A call to uxst_enable_listeners() is needed |
| 318 | * to complete initialization. |
| 319 | * |
| 320 | * The return value is composed from ERR_NONE, ERR_RETRYABLE and ERR_FATAL. |
| 321 | */ |
Emeric Brun | cf20bf1 | 2010-10-22 16:06:11 +0200 | [diff] [blame] | 322 | static int uxst_bind_listeners(struct protocol *proto, char *errmsg, int errlen) |
Willy Tarreau | 92fb983 | 2007-10-16 17:34:28 +0200 | [diff] [blame] | 323 | { |
| 324 | struct listener *listener; |
| 325 | int err = ERR_NONE; |
Willy Tarreau | 92fb983 | 2007-10-16 17:34:28 +0200 | [diff] [blame] | 326 | |
| 327 | list_for_each_entry(listener, &proto->listeners, proto_list) { |
Emeric Brun | cf20bf1 | 2010-10-22 16:06:11 +0200 | [diff] [blame] | 328 | err |= uxst_bind_listener(listener, errmsg, errlen); |
| 329 | if (err & ERR_ABORT) |
| 330 | break; |
Willy Tarreau | 92fb983 | 2007-10-16 17:34:28 +0200 | [diff] [blame] | 331 | } |
Willy Tarreau | 92fb983 | 2007-10-16 17:34:28 +0200 | [diff] [blame] | 332 | return err; |
| 333 | } |
| 334 | |
Willy Tarreau | 92fb983 | 2007-10-16 17:34:28 +0200 | [diff] [blame] | 335 | |
| 336 | /* This function stops all listening UNIX sockets bound to the protocol |
| 337 | * <proto>. It does not detaches them from the protocol. |
| 338 | * It always returns ERR_NONE. |
| 339 | */ |
| 340 | static int uxst_unbind_listeners(struct protocol *proto) |
| 341 | { |
| 342 | struct listener *listener; |
| 343 | |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 344 | list_for_each_entry(listener, &proto->listeners, proto_list) |
| 345 | uxst_unbind_listener(listener); |
Willy Tarreau | 92fb983 | 2007-10-16 17:34:28 +0200 | [diff] [blame] | 346 | return ERR_NONE; |
| 347 | } |
| 348 | |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 349 | |
| 350 | /******************************** |
| 351 | * 4) high-level functions |
| 352 | ********************************/ |
| 353 | |
Willy Tarreau | 92fb983 | 2007-10-16 17:34:28 +0200 | [diff] [blame] | 354 | __attribute__((constructor)) |
| 355 | static void __uxst_protocol_init(void) |
| 356 | { |
| 357 | protocol_register(&proto_unix); |
Willy Tarreau | 92fb983 | 2007-10-16 17:34:28 +0200 | [diff] [blame] | 358 | } |
| 359 | |
| 360 | |
| 361 | /* |
| 362 | * Local variables: |
| 363 | * c-indent-level: 8 |
| 364 | * c-basic-offset: 8 |
| 365 | * End: |
| 366 | */ |