2 * Copyright (C) 2005-2006 Andre Noll <maan@systemlinux.org>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
19 /** \file net.c networking-related helper functions */
27 extern void (*crypt_function_recv
)(unsigned long len
, const unsigned char *indata
, unsigned char *outdata
);
28 extern void (*crypt_function_send
)(unsigned long len
, const unsigned char *indata
, unsigned char *outdata
);
31 * initialize a struct sockaddr_in
32 * @param addr A pointer to the struct to be initialized
33 * @param port The port number to use
34 * @param he The address to use
36 * If \a he is null (server mode), \a addr->sin_addr is initialized with \p INADDR_ANY.
37 * Otherwise, the address given by \a he is copied to addr.
39 void init_sockaddr(struct sockaddr_in
*addr
, int port
, const struct hostent
*he
)
42 addr
->sin_family
= AF_INET
;
43 /* short, network byte order */
44 addr
->sin_port
= htons(port
);
46 addr
->sin_addr
= *((struct in_addr
*)he
->h_addr
);
48 addr
->sin_addr
.s_addr
= INADDR_ANY
;
49 /* zero the rest of the struct */
50 memset(&addr
->sin_zero
, '\0', 8);
54 * send out a buffer, resend on short writes
55 * @param fd the file descriptor
56 * @param buf The buffer to be sent
57 * @len The length of \a buf
59 * Due to circumstances beyond your control, the kernel might not send all the
60 * data out in one chunk, and now, my friend, it's up to us to get the data out
61 * there (Beej's Guide to Network Programming).
63 static int sendall(int fd
, const char *buf
, size_t *len
)
65 int total
= 0; /* how many bytes we've sent */
66 int bytesleft
= *len
; /* how many we have left to send */
69 while (total
< *len
) {
70 n
= send(fd
, buf
+ total
, bytesleft
, 0);
76 PARA_DEBUG_LOG("short write (%zd byte(s) left)",
79 *len
= total
; /* return number actually sent here */
80 return n
== -1? -E_SEND
: 1; /* return 1 on success */
84 * encrypt and send buffer
85 * @param fd: the file descriptor
86 * @param buf the buffer to be encrypted and sent
87 * @param len the length of \a buf
89 * Check if encrytion is available. If yes, encrypt the given buffer. Send out
90 * the buffer, encrypted or not, and try to resend the remaing part in case of
93 * @return Positive on success, \p -E_SEND on errors.
95 int send_bin_buffer(int fd
, const char *buf
, size_t len
)
100 PARA_CRIT_LOG("%s", "len == 0\n");
101 if (crypt_function_send
) {
102 unsigned char *outbuf
= para_malloc(len
);
103 crypt_function_send(len
, (unsigned char *)buf
, outbuf
);
104 ret
= sendall(fd
, (char *)outbuf
, &len
);
107 ret
= sendall(fd
, buf
, &len
);
112 * encrypt and send null terminated buffer.
113 * @param fd the file descriptor
114 * @param buf the null-terminated buffer to be send
116 * This is equivalent to send_bin_buffer(fd, buf, strlen(buf)).
118 * @return Positive on success, \p -E_SEND on errors.
120 int send_buffer(int fd
, const char *buf
)
122 return send_bin_buffer(fd
, buf
, strlen(buf
));
127 * send and encrypt a buffer given by a format string
128 * @param fd the file descriptor
129 * @param fmt a format string
131 * @return Positive on success, \p -E_SEND on errors.
133 __printf_2_3
int send_va_buffer(int fd
, const char *fmt
, ...)
138 PARA_VSPRINTF(fmt
, msg
);
139 ret
= send_buffer(fd
, msg
);
145 * receive and decrypt.
147 * @param fd the file descriptor
148 * @param buf the buffer to write the decrypted data to
149 * @param size the size of @param buf
151 * Receive at most \a size bytes from filedescriptor fd. If encrytion is
152 * available, decrypt the received buffer.
154 * @return the number of bytes received on success. On receive errors, -E_RECV
155 * is returned. On crypt errors, the corresponding crypt error number is
159 __must_check
int recv_bin_buffer(int fd
, char *buf
, ssize_t size
)
163 if (crypt_function_recv
) {
164 unsigned char *tmp
= para_malloc(size
);
165 n
= recv(fd
, tmp
, size
, 0);
167 crypt_function_recv(n
, tmp
, (unsigned char *)buf
);
170 n
= recv(fd
, buf
, size
, 0);
177 * receive, decrypt and write terminating NULL byte
179 * @param fd the file descriptor
180 * @param buf the buffer to write the decrypted data to
181 * @param size the size of \a buf
183 * Read and decrypt at most size - 1 bytes from file descriptor \a fd and write
184 * a NULL byte at the end of the received data.
187 int recv_buffer(int fd
, char *buf
, ssize_t size
)
191 if ((n
= recv_bin_buffer(fd
, buf
, size
- 1)) >= 0)
197 * wrapper around gethostbyname
199 * @param host hostname or IPv4 address
200 * \return The hostent structure or a NULL pointer if an error occurs
201 * \sa gethostbyname(2)
203 struct hostent
*get_host_info(char *host
)
205 PARA_INFO_LOG("getting host info of %s\n", host
);
206 /* FIXME: gethostbyname() is obsolete */
207 return gethostbyname(host
);
211 * a wrapper around socket(2)
213 * Create an IPv4 socket for sequenced, reliable, two-way, connection-based
216 * @return The socket fd on success, -E_SOCKET on errors.
223 if ((socket_fd
= socket(AF_INET
, SOCK_STREAM
, 0)) == -1)
229 * a wrapper around connect(2)
231 * @param fd the file descriptor
232 * @param their_addr the address to connect
234 * @return \p -E_CONNECT on errors, 1 on success
237 int para_connect(int fd
, struct sockaddr_in
*their_addr
)
241 if ((ret
= connect(fd
, (struct sockaddr
*)their_addr
,
242 sizeof(struct sockaddr
))) == -1)
248 * paraslash's wrapper around the accept system call
250 * @param fd the listening socket
251 * @param addr structure which is filled in with the address of the peer socket
252 * @param size should contain the size of the structure pointed to by \a addr
256 int para_accept(int fd
, void *addr
, socklen_t size
)
260 new_fd
= accept(fd
, (struct sockaddr
*) addr
, &size
);
261 return new_fd
== -1? -E_ACCEPT
: new_fd
;
264 static int setserversockopts(int socket_fd
)
268 if (setsockopt(socket_fd
, SOL_SOCKET
, SO_REUSEADDR
, &yes
,
270 return -E_SETSOCKOPT
;
274 static int do_bind(int socket_fd
, struct sockaddr_in
*my_addr
)
276 if (bind(socket_fd
, (struct sockaddr
*)my_addr
,
277 sizeof(struct sockaddr
)) == -1)
283 * prepare a structure for \p AF_UNIX socket addresses
285 * \param u pointer to the struct to be prepared
286 * \param name the socket pathname
288 * This just copies \a name to the sun_path component of \a u.
290 * \return Positive on success, \p -E_NAME_TOO_LONG if \a name is longer
291 * than \p UNIX_PATH_MAX.
293 int init_unix_addr(struct sockaddr_un
*u
, const char *name
)
295 if (strlen(name
) >= UNIX_PATH_MAX
)
296 return -E_NAME_TOO_LONG
;
297 memset(u
->sun_path
, 0, UNIX_PATH_MAX
);
298 u
->sun_family
= PF_UNIX
;
299 strcpy(u
->sun_path
, name
);
304 * prepare, create, and bind and socket for local communication
306 * \param name the socket pathname
307 * \param unix_addr pointer to the \p AF_UNIX socket structure
308 * \param mode the desired mode of the socket
310 * This functions creates a local socket for sequenced, reliable,
311 * two-way, connection-based byte streams.
316 int create_pf_socket(const char *name
, struct sockaddr_un
*unix_addr
, int mode
)
320 fd
= socket(PF_UNIX
, SOCK_STREAM
, 0);
324 ret
= init_unix_addr(unix_addr
, name
);
327 if (bind(fd
, (struct sockaddr
*) unix_addr
, UNIX_PATH_MAX
) < 0)
329 if (chmod(name
, mode
) < 0)
335 * send NULL terminated buffer and Unix credentials of the current process
337 * \param sock the socket file descriptor
338 * \param buf the buffer to be sent
340 * \return On success, this call returns the number of characters sent. On
341 * error, \p -E_SENDMSG ist returned.
342 * \sa okir's Black Hats Manual
345 ssize_t
send_cred_buffer(int sock
, char *buf
)
347 char control
[sizeof(struct cmsghdr
) + 10];
349 struct cmsghdr
*cmsg
;
350 static struct iovec iov
;
356 iov
.iov_len
= strlen(buf
);
360 /* compose the message */
361 memset(&msg
, 0, sizeof(msg
));
364 msg
.msg_control
= control
;
365 msg
.msg_controllen
= sizeof(control
);
366 /* attach the ucred struct */
367 cmsg
= CMSG_FIRSTHDR(&msg
);
368 cmsg
->cmsg_level
= SOL_SOCKET
;
369 cmsg
->cmsg_type
= SCM_CREDENTIALS
;
370 cmsg
->cmsg_len
= CMSG_LEN(sizeof(struct ucred
));
371 *(struct ucred
*)CMSG_DATA(cmsg
) = c
;
372 msg
.msg_controllen
= cmsg
->cmsg_len
;
373 ret
= sendmsg(sock
, &msg
, 0);
379 static void dispose_fds(int *fds
, int num
)
383 for (i
= 0; i
< num
; i
++)
388 * receive a buffer and the Unix credentials of the sending process
390 * \param fd the socket file descriptor
391 * \param buf the buffer to store the message
392 * \param size the size of \a buffer
393 * \param cred the credentials are returned here
395 * \return negative on errors, the user id on success.
397 * \sa okir's Black Hats Manual
400 int recv_cred_buffer(int fd
, char *buf
, size_t size
)
404 struct cmsghdr
*cmsg
;
410 setsockopt(fd
, SOL_SOCKET
, SO_PASSCRED
, &yes
, sizeof(int));
411 memset(&msg
, 0, sizeof(msg
));
412 memset(buf
, 0, size
);
417 msg
.msg_control
= control
;
418 msg
.msg_controllen
= sizeof(control
);
419 if (recvmsg(fd
, &msg
, 0) < 0)
421 result
= -E_SCM_CREDENTIALS
;
422 cmsg
= CMSG_FIRSTHDR(&msg
);
424 if (cmsg
->cmsg_level
== SOL_SOCKET
&& cmsg
->cmsg_type
425 == SCM_CREDENTIALS
) {
426 memcpy(&cred
, CMSG_DATA(cmsg
), sizeof(struct ucred
));
429 if (cmsg
->cmsg_level
== SOL_SOCKET
430 && cmsg
->cmsg_type
== SCM_RIGHTS
) {
431 dispose_fds((int *) CMSG_DATA(cmsg
),
432 (cmsg
->cmsg_len
- CMSG_LEN(0))
435 cmsg
= CMSG_NXTHDR(&msg
, cmsg
);
440 /** how many pending connections queue will hold */
444 * create a socket, bind it and listen
445 * \param port the tcp port to listen on
447 * \return The file descriptor of the created socket, negative
455 int init_tcp_socket(int port
)
458 struct sockaddr_in my_addr
;
460 if ((sockfd
= get_socket()) < 0)
462 ret
= setserversockopts(sockfd
);
465 init_sockaddr(&my_addr
, port
, NULL
);
466 ret
= do_bind(sockfd
, &my_addr
);
469 if (listen(sockfd
, BACKLOG
) == -1)
471 PARA_INFO_LOG("listening on port %d, fd %d\n", port
, sockfd
);
476 * receive a buffer and check for a pattern
478 * \param fd the file descriptor to receive from
479 * \param pattern the expected pattern
480 * \param bufsize the size of the internal buffer
482 * \return Positive if \a pattern was received, negative otherwise.
484 * This function creates a buffer of size \a bufsize and tries
485 * to receive at most \a bufsize bytes from file descriptor \a fd.
486 * If at least \p strlen(\a pattern) bytes were received, the beginning of
487 * the received buffer is compared with \a pattern, ignoring case.
491 int recv_pattern(int fd
, const char *pattern
, size_t bufsize
)
493 size_t len
= strlen(pattern
);
494 char *buf
= para_malloc(bufsize
+ 1);
495 int ret
= -E_RECV_PATTERN
, n
= recv_buffer(fd
, buf
, bufsize
);
500 if (strncasecmp(buf
, pattern
, len
))