Forward port SOCKSENDBUF, SOCKRECVBUF features from 2.10.11.
[ircu2.10.12-pk.git] / ircd / os_bsd.c
1 /*
2  * IRC - Internet Relay Chat, ircd/os_generic.c
3  * Copyright (C) 1999 Thomas Helvey
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 1, or (at your option)
8  * any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  *
19  * $Id$
20  *
21  */
22 #include "config.h"
23
24 #define _XOPEN_SOURCE   /* make limits.h #define IOV_MAX */
25
26 #include "ircd_osdep.h"
27 #include "msgq.h"
28
29 #include <assert.h>
30 #include <sys/types.h>
31 #include <sys/time.h>
32 #include <sys/resource.h>
33 #include <errno.h>
34 #include <limits.h>
35 #include <fcntl.h>
36 #include <netinet/in.h>
37 #include <stdio.h>
38 #include <string.h>
39 #include <sys/ioctl.h>
40 #include <sys/socket.h>
41 #include <sys/uio.h>
42 #include <unistd.h>
43
44 #ifndef IOV_MAX
45 #define IOV_MAX 16      /* minimum required */
46 #endif
47
48 #ifdef HPUX
49 #include <sys/syscall.h>
50 #define getrusage(a,b) syscall(SYS_GETRUSAGE, a, b)
51 #endif
52
53 /*
54  * This is part of the STATS replies. There is no offical numeric for this
55  * since this isnt an official command, in much the same way as HASH isnt.
56  * It is also possible that some systems wont support this call or have
57  * different field names for "struct rusage".
58  * -avalon
59  */
60 int os_get_rusage(struct Client *cptr, int uptime, EnumFn enumerator)
61 {
62 #ifdef HAVE_GETRUSAGE
63   char buf[256];
64   struct rusage rus;
65   time_t secs;
66
67 #ifdef  hz
68 #  define hzz hz
69 #else
70 #  ifdef HZ
71 #    define hzz HZ
72 #  else
73   int hzz = 1;
74 #  ifdef HPUX
75   hzz = sysconf(_SC_CLK_TCK);
76 #  endif
77 #endif
78 #endif
79
80   assert(0 != enumerator);
81   if (getrusage(RUSAGE_SELF, &rus) == -1)
82     return 0;
83
84   secs = rus.ru_utime.tv_sec + rus.ru_stime.tv_sec;
85   if (secs == 0)
86     secs = 1;
87
88   sprintf(buf, "CPU Secs %ld:%ld User %ld:%ld System %ld:%ld",
89           secs / 60, secs % 60,
90           rus.ru_utime.tv_sec / 60, rus.ru_utime.tv_sec % 60,
91           rus.ru_stime.tv_sec / 60, rus.ru_stime.tv_sec % 60);
92   (*enumerator)(cptr, buf);
93
94   sprintf(buf, "RSS %ld ShMem %ld Data %ld Stack %ld",
95           rus.ru_maxrss,
96           rus.ru_ixrss / (uptime * hzz), rus.ru_idrss / (uptime * hzz),
97           rus.ru_isrss / (uptime * hzz));
98   (*enumerator)(cptr, buf);
99
100   sprintf(buf, "Swaps %ld Reclaims %ld Faults %ld",
101           rus.ru_nswap, rus.ru_minflt, rus.ru_majflt);
102   (*enumerator)(cptr, buf);
103
104   sprintf(buf, "Block in %ld out %ld", rus.ru_inblock, rus.ru_oublock);
105   (*enumerator)(cptr, buf);
106   
107   sprintf(buf, "Msg Rcv %ld Send %ld", rus.ru_msgrcv, rus.ru_msgsnd);
108   (*enumerator)(cptr, buf);
109
110   sprintf(buf, "Signals %ld Context Vol. %ld Invol %ld",
111           rus.ru_nsignals, rus.ru_nvcsw, rus.ru_nivcsw);
112   (*enumerator)(cptr, buf);
113
114 #else /* HAVE_GETRUSAGE */
115 #if HAVE_TIMES
116   char buf[256];
117   struct tms tmsbuf;
118   time_t secs, mins;
119   int hzz = 1, ticpermin;
120   int umin, smin, usec, ssec;
121
122   assert(0 != enumerator);
123 #ifdef HPUX
124   hzz = sysconf(_SC_CLK_TCK);
125 #endif
126   ticpermin = hzz * 60;
127
128   umin = tmsbuf.tms_utime / ticpermin;
129   usec = (tmsbuf.tms_utime % ticpermin) / (float)hzz;
130   smin = tmsbuf.tms_stime / ticpermin;
131   ssec = (tmsbuf.tms_stime % ticpermin) / (float)hzz;
132   secs = usec + ssec;
133   mins = (secs / 60) + umin + smin;
134   secs %= hzz;
135
136   if (times(&tmsbuf) == -1)
137     return 0;
138   secs = tmsbuf.tms_utime + tmsbuf.tms_stime;
139
140   sprintf(buf, "CPU Secs %d:%d User %d:%d System %d:%d", 
141           mins, secs, umin, usec, smin, ssec);
142   (*enumerator)(cptr, buf);
143 #endif /* HAVE_TIMES */
144 #endif /* HAVE_GETRUSAGE */
145   return 1;
146 }
147
148 int os_get_sockerr(int fd)
149 {
150   int    err = 0;
151 #if defined(SO_ERROR)
152   unsigned int len = sizeof(err);
153   getsockopt(fd, SOL_SOCKET, SO_ERROR, &err, &len);
154 #endif
155   return err;
156 }
157
158 /*
159  * set_non_blocking
160  *
161  * Set the client connection into non-blocking mode. If your
162  * system doesn't support this, you can make this a dummy
163  * function (and get all the old problems that plagued the
164  * blocking version of IRC--not a problem if you are a
165  * lightly loaded node...)
166  */
167 int os_set_nonblocking(int fd)
168 {
169   int res;
170 #ifndef NBLOCK_SYSV
171   int nonb = 0;
172 #endif
173
174   /*
175    * NOTE: consult ALL your relevant manual pages *BEFORE* changing
176    * these ioctl's. There are quite a few variations on them,
177    * as can be seen by the PCS one. They are *NOT* all the same.
178    * Heed this well. - Avalon.
179    */
180 #ifdef  NBLOCK_POSIX
181   nonb |= O_NONBLOCK;
182 #endif
183 #ifdef  NBLOCK_BSD
184   nonb |= O_NDELAY;
185 #endif
186 #ifdef  NBLOCK_SYSV
187   /* This portion of code might also apply to NeXT. -LynX */
188   res = 1;
189
190   if (ioctl(fd, FIONBIO, &res) == -1)
191     return 0;
192 #else
193   if ((res = fcntl(fd, F_GETFL, 0)) == -1)
194     return 0;
195   else if (fcntl(fd, F_SETFL, res | nonb) == -1)
196     return 0;
197 #endif
198   return 1;
199 }
200
201
202 /*
203  *  set_sock_opts
204  */
205 int os_set_reuseaddr(int fd)
206 {
207   unsigned int opt = 1;
208   return (0 == setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, 
209                           (const char*) &opt, sizeof(opt)));
210 }
211
212 int os_set_sockbufs(int fd, unsigned int ssize, unsigned int rsize)
213 {
214   unsigned int sopt = ssize;
215   unsigned int ropt = rsize;
216   return (0 == setsockopt(fd, SOL_SOCKET, SO_RCVBUF, 
217                           (const char*) &ropt, sizeof(ropt)) &&
218           0 == setsockopt(fd, SOL_SOCKET, SO_SNDBUF, 
219                           (const char*) &sopt, sizeof(sopt)));
220 }
221
222 int os_set_tos(int fd,int tos)
223 {
224   unsigned int opt = tos;
225   return (0 == setsockopt(fd, IPPROTO_IP, IP_TOS, &opt, sizeof(opt)));
226 }
227
228 int os_disable_options(int fd)
229 {
230 #if defined(IP_OPTIONS) && defined(IPPROTO_IP)
231   return (0 == setsockopt(fd, IPPROTO_IP, IP_OPTIONS, NULL, 0));
232 #else
233   return 1;
234 #endif
235 }
236
237 /*
238  * Try and find the correct name to use with getrlimit() for setting the max.
239  * number of files allowed to be open by this process.
240  */
241 #ifdef RLIMIT_FDMAX
242 #define RLIMIT_FD_MAX   RLIMIT_FDMAX
243 #else
244 #ifdef RLIMIT_NOFILE
245 #define RLIMIT_FD_MAX RLIMIT_NOFILE
246 #else
247 #ifdef RLIMIT_OPEN_MAX
248 #define RLIMIT_FD_MAX RLIMIT_OPEN_MAX
249 #else
250 #undef RLIMIT_FD_MAX
251 #endif
252 #endif
253 #endif
254
255 int os_set_fdlimit(unsigned int max_descriptors)
256 {
257 #if defined(HAVE_SETRLIMIT) && defined(RLIMIT_FD_MAX)
258   struct rlimit limit;
259
260   if (!getrlimit(RLIMIT_FD_MAX, &limit)) {
261     if (limit.rlim_max < MAXCONNECTIONS)
262       return limit.rlim_max;
263     limit.rlim_cur = limit.rlim_max;    /* make soft limit the max */
264     return setrlimit(RLIMIT_FD_MAX, &limit);
265   }
266 #endif /* defined(HAVE_SETRLIMIT) && defined(RLIMIT_FD_MAX) */
267   return 0;
268 }
269
270 IOResult os_recv_nonb(int fd, char* buf, unsigned int length, 
271                  unsigned int* count_out)
272 {
273   int res;
274   assert(0 != buf);
275   assert(0 != count_out);
276   *count_out = 0;
277   errno = 0;
278
279   if (0 < (res = recv(fd, buf, length, 0))) {
280     *count_out = (unsigned) res;
281     return IO_SUCCESS;
282   }
283   else if (res < 0) {
284     if (EWOULDBLOCK == errno || EAGAIN == errno)
285       return IO_BLOCKED;
286     else
287       return IO_FAILURE;
288   } 
289   /*
290    * 0   == client closed the connection
291    * < 1 == error
292    */
293   return IO_FAILURE;
294 }
295
296 IOResult os_recvfrom_nonb(int fd, char* buf, unsigned int length, 
297                           unsigned int* length_out, struct sockaddr_in* sin_out)
298 {
299   int    res;
300   unsigned int len = sizeof(struct sockaddr_in);
301   assert(0 != buf);
302   assert(0 != length_out);
303   assert(0 != sin_out);
304   errno = 0;
305   *length_out = 0;
306
307   res = recvfrom(fd, buf, length, 0, (struct sockaddr*) sin_out, &len);
308   if (-1 == res) {
309     if (EWOULDBLOCK == errno || ENOMEM == errno)
310       return IO_BLOCKED;
311     return IO_FAILURE;
312   }
313   *length_out = res;
314   return IO_SUCCESS;
315 }
316
317 IOResult os_send_nonb(int fd, const char* buf, unsigned int length, 
318                  unsigned int* count_out)
319 {
320   int res;
321   assert(0 != buf);
322   assert(0 != count_out);
323   *count_out = 0;
324   errno = 0;
325
326   if (-1 < (res = send(fd, buf, length, 0))) {
327     *count_out = (unsigned) res;
328     return IO_SUCCESS;
329   }
330   else if (EWOULDBLOCK == errno || EAGAIN == errno || 
331            ENOMEM == errno || ENOBUFS == errno)
332     return IO_BLOCKED;
333   return IO_FAILURE;
334 }
335
336 IOResult os_sendv_nonb(int fd, struct MsgQ* buf, unsigned int* count_in,
337                        unsigned int* count_out)
338 {
339   int res;
340   int count;
341   struct iovec iov[IOV_MAX];
342
343   assert(0 != buf);
344   assert(0 != count_in);
345   assert(0 != count_out);
346
347   *count_in = 0;
348   *count_out = 0;
349   errno = 0;
350
351   count = msgq_mapiov(buf, iov, IOV_MAX, count_in);
352
353   if (-1 < (res = writev(fd, iov, count))) {
354     *count_out = (unsigned) res;
355     return IO_SUCCESS;
356   }
357   else if (EWOULDBLOCK == errno || EAGAIN == errno ||
358            ENOMEM == errno || ENOBUFS == errno)
359     return IO_BLOCKED;
360
361   return IO_FAILURE;
362 }
363
364 IOResult os_connect_nonb(int fd, const struct sockaddr_in* sin)
365 {
366   if (connect(fd, (struct sockaddr*) sin, sizeof(struct sockaddr_in)))
367     return (errno == EINPROGRESS) ? IO_BLOCKED : IO_FAILURE;
368   return IO_SUCCESS;
369 }
370       
371 int os_get_sockname(int fd, struct sockaddr_in* sin_out)
372 {
373   unsigned int len = sizeof(struct sockaddr_in);
374   assert(0 != sin_out);
375   return (0 == getsockname(fd, (struct sockaddr*) sin_out, &len));
376 }
377
378 int os_get_peername(int fd, struct sockaddr_in* sin_out)
379 {
380   unsigned int len = sizeof(struct sockaddr_in);
381   assert(0 != sin_out);
382   return (0 == getpeername(fd, (struct sockaddr*) sin_out, &len));
383 }
384
385 int os_set_listen(int fd, int backlog)
386 {
387   return (0 == listen(fd, backlog));
388 }
389
390