9a052d2f5ea6092b22fabb75afa0d33c68dc643a
[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 size)
213 {
214   unsigned int opt = size;
215   return (0 == setsockopt(fd, SOL_SOCKET, SO_RCVBUF, 
216                           (const char*) &opt, sizeof(opt)) &&
217           0 == setsockopt(fd, SOL_SOCKET, SO_SNDBUF, 
218                           (const char*) &opt, sizeof(opt)));
219 }
220
221 int os_set_tos(int fd,int tos)
222 {
223   unsigned int opt = tos;
224   return (0 == setsockopt(fd, IPPROTO_IP, IP_TOS, &opt, sizeof(opt)));
225 }
226
227 int os_disable_options(int fd)
228 {
229 #if defined(IP_OPTIONS) && defined(IPPROTO_IP)
230   return (0 == setsockopt(fd, IPPROTO_IP, IP_OPTIONS, NULL, 0));
231 #else
232   return 1;
233 #endif
234 }
235
236 /*
237  * Try and find the correct name to use with getrlimit() for setting the max.
238  * number of files allowed to be open by this process.
239  */
240 #ifdef RLIMIT_FDMAX
241 #define RLIMIT_FD_MAX   RLIMIT_FDMAX
242 #else
243 #ifdef RLIMIT_NOFILE
244 #define RLIMIT_FD_MAX RLIMIT_NOFILE
245 #else
246 #ifdef RLIMIT_OPEN_MAX
247 #define RLIMIT_FD_MAX RLIMIT_OPEN_MAX
248 #else
249 #undef RLIMIT_FD_MAX
250 #endif
251 #endif
252 #endif
253
254 int os_set_fdlimit(unsigned int max_descriptors)
255 {
256 #if defined(HAVE_SETRLIMIT) && defined(RLIMIT_FD_MAX)
257   struct rlimit limit;
258
259   if (!getrlimit(RLIMIT_FD_MAX, &limit)) {
260     if (limit.rlim_max < MAXCONNECTIONS)
261       return limit.rlim_max;
262     limit.rlim_cur = limit.rlim_max;    /* make soft limit the max */
263     return setrlimit(RLIMIT_FD_MAX, &limit);
264   }
265 #endif /* defined(HAVE_SETRLIMIT) && defined(RLIMIT_FD_MAX) */
266   return 0;
267 }
268
269 IOResult os_recv_nonb(int fd, char* buf, unsigned int length, 
270                  unsigned int* count_out)
271 {
272   int res;
273   assert(0 != buf);
274   assert(0 != count_out);
275   *count_out = 0;
276   errno = 0;
277
278   if (0 < (res = recv(fd, buf, length, 0))) {
279     *count_out = (unsigned) res;
280     return IO_SUCCESS;
281   }
282   else if (res < 0) {
283     if (EWOULDBLOCK == errno || EAGAIN == errno)
284       return IO_BLOCKED;
285     else
286       return IO_FAILURE;
287   } 
288   /*
289    * 0   == client closed the connection
290    * < 1 == error
291    */
292   return IO_FAILURE;
293 }
294
295 IOResult os_recvfrom_nonb(int fd, char* buf, unsigned int length, 
296                           unsigned int* length_out, struct sockaddr_in* sin_out)
297 {
298   int    res;
299   unsigned int len = sizeof(struct sockaddr_in);
300   assert(0 != buf);
301   assert(0 != length_out);
302   assert(0 != sin_out);
303   errno = 0;
304   *length_out = 0;
305
306   res = recvfrom(fd, buf, length, 0, (struct sockaddr*) sin_out, &len);
307   if (-1 == res) {
308     if (EWOULDBLOCK == errno || ENOMEM == errno)
309       return IO_BLOCKED;
310     return IO_FAILURE;
311   }
312   *length_out = res;
313   return IO_SUCCESS;
314 }
315
316 IOResult os_send_nonb(int fd, const char* buf, unsigned int length, 
317                  unsigned int* count_out)
318 {
319   int res;
320   assert(0 != buf);
321   assert(0 != count_out);
322   *count_out = 0;
323   errno = 0;
324
325   if (-1 < (res = send(fd, buf, length, 0))) {
326     *count_out = (unsigned) res;
327     return IO_SUCCESS;
328   }
329   else if (EWOULDBLOCK == errno || EAGAIN == errno || 
330            ENOMEM == errno || ENOBUFS == errno)
331     return IO_BLOCKED;
332   return IO_FAILURE;
333 }
334
335 IOResult os_sendv_nonb(int fd, struct MsgQ* buf, unsigned int* count_in,
336                        unsigned int* count_out)
337 {
338   int res;
339   int count;
340   struct iovec iov[IOV_MAX];
341
342   assert(0 != buf);
343   assert(0 != count_in);
344   assert(0 != count_out);
345
346   *count_in = 0;
347   *count_out = 0;
348   errno = 0;
349
350   count = msgq_mapiov(buf, iov, IOV_MAX, count_in);
351
352   if (-1 < (res = writev(fd, iov, count))) {
353     *count_out = (unsigned) res;
354     return IO_SUCCESS;
355   }
356   else if (EWOULDBLOCK == errno || EAGAIN == errno ||
357            ENOMEM == errno || ENOBUFS == errno)
358     return IO_BLOCKED;
359
360   return IO_FAILURE;
361 }
362
363 IOResult os_connect_nonb(int fd, const struct sockaddr_in* sin)
364 {
365   if (connect(fd, (struct sockaddr*) sin, sizeof(struct sockaddr_in)))
366     return (errno == EINPROGRESS) ? IO_BLOCKED : IO_FAILURE;
367   return IO_SUCCESS;
368 }
369       
370 int os_get_sockname(int fd, struct sockaddr_in* sin_out)
371 {
372   unsigned int len = sizeof(struct sockaddr_in);
373   assert(0 != sin_out);
374   return (0 == getsockname(fd, (struct sockaddr*) sin_out, &len));
375 }
376
377 int os_get_peername(int fd, struct sockaddr_in* sin_out)
378 {
379   unsigned int len = sizeof(struct sockaddr_in);
380   assert(0 != sin_out);
381   return (0 == getpeername(fd, (struct sockaddr*) sin_out, &len));
382 }
383
384 int os_set_listen(int fd, int backlog)
385 {
386   return (0 == listen(fd, backlog));
387 }
388
389