Author: Isomer <isomer@coders.net>
[ircu2.10.12-pk.git] / ircd / os_linux.c
1 /*
2  * IRC - Internet Relay Chat, ircd/os_linux.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 #define _XOPEN_SOURCE   /* make limits.h #define IOV_MAX */
23
24 #include "ircd_osdep.h"
25 #include "msgq.h"
26
27 #include <assert.h>
28 #include <errno.h>
29 #include <fcntl.h>
30 #include <limits.h>
31 #include <stdio.h>
32 #include <netinet/in.h>
33 #include <string.h>
34 #include <sys/ioctl.h>
35 #include <sys/resource.h>
36 #include <sys/socket.h>
37 #include <sys/types.h>
38 #include <sys/times.h>
39 #include <sys/uio.h>
40 #include <sys/param.h>
41 #if 0
42 #include <unistd.h>
43 #endif
44
45 /*
46  * This is part of the STATS replies. There is no offical numeric for this
47  * since this isnt an official command, in much the same way as HASH isnt.
48  * It is also possible that some systems wont support this call or have
49  * different field names for "struct rusage".
50  * -avalon
51  */
52 int os_get_rusage(struct Client *cptr, int uptime, EnumFn enumerator)
53 {
54   char buf[256];
55   struct rusage rus;
56   struct tms tmsbuf;
57   time_t secs;
58   time_t mins;
59   int umin;
60   int smin;
61   int usec;
62   int ssec;
63   int ticpermin = HZ * 60;
64   unsigned int tick_count = uptime * HZ;
65
66   if (0 == tick_count)
67     ++tick_count;
68
69   assert(0 != enumerator);
70   if (getrusage(RUSAGE_SELF, &rus) == -1)
71     return 0;
72
73   secs = rus.ru_utime.tv_sec + rus.ru_stime.tv_sec;
74   if (secs == 0)
75     secs = 1;
76
77   sprintf(buf, "CPU Secs %ld:%ld User %ld:%ld System %ld:%ld",
78           secs / 60, secs % 60,
79           rus.ru_utime.tv_sec / 60, rus.ru_utime.tv_sec % 60,
80           rus.ru_stime.tv_sec / 60, rus.ru_stime.tv_sec % 60);
81   (*enumerator)(cptr, buf);
82
83   sprintf(buf, "RSS %ld ShMem %ld Data %ld Stack %ld",
84           rus.ru_maxrss,
85           rus.ru_ixrss / tick_count, rus.ru_idrss / tick_count,
86           rus.ru_isrss / tick_count);
87   (*enumerator)(cptr, buf);
88
89   sprintf(buf, "Swaps %ld Reclaims %ld Faults %ld",
90           rus.ru_nswap, rus.ru_minflt, rus.ru_majflt);
91   (*enumerator)(cptr, buf);
92
93   sprintf(buf, "Block in %ld out %ld", rus.ru_inblock, rus.ru_oublock);
94   (*enumerator)(cptr, buf);
95   
96   sprintf(buf, "Msg Rcv %ld Send %ld", rus.ru_msgrcv, rus.ru_msgsnd);
97   (*enumerator)(cptr, buf);
98
99   sprintf(buf, "Signals %ld Context Vol. %ld Invol %ld",
100           rus.ru_nsignals, rus.ru_nvcsw, rus.ru_nivcsw);
101   (*enumerator)(cptr, buf);
102
103   if (times(&tmsbuf) == -1)
104     return 0;
105
106   umin = tmsbuf.tms_utime / ticpermin;
107   usec = (tmsbuf.tms_utime % ticpermin) / (float)HZ;
108   smin = tmsbuf.tms_stime / ticpermin;
109   ssec = (tmsbuf.tms_stime % ticpermin) / (float)HZ;
110   secs = usec + ssec;
111   mins = (secs / 60) + umin + smin;
112   secs %= HZ;
113
114   sprintf(buf, "CPU Secs %ld:%ld User %d:%d System %d:%d", 
115           mins, secs, umin, usec, smin, ssec);
116   (*enumerator)(cptr, buf);
117   return 1;
118 }
119
120 int os_get_sockerr(int fd)
121 {
122   int    err = 0;
123   unsigned int len = sizeof(err);
124   getsockopt(fd, SOL_SOCKET, SO_ERROR, &err, &len);
125   return err;
126 }
127
128 /*
129  * set_non_blocking
130  *
131  * Set the client connection into non-blocking mode. If your
132  * system doesn't support this, you can make this a dummy
133  * function (and get all the old problems that plagued the
134  * blocking version of IRC--not a problem if you are a
135  * lightly loaded node...)
136  */
137 int os_set_nonblocking(int fd)
138 {
139   int res = 1;
140   return (0 == ioctl(fd, FIONBIO, &res));
141 }
142
143
144 /*
145  *  set_sock_opts
146  */
147 int os_set_reuseaddr(int fd)
148 {
149   unsigned int opt = 1;
150   return (0 == setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt)));
151 }
152
153 int os_set_sockbufs(int fd, unsigned int size)
154 {
155   unsigned int opt = size;
156   return (0 == setsockopt(fd, SOL_SOCKET, SO_RCVBUF, &opt, sizeof(opt)) &&
157           0 == setsockopt(fd, SOL_SOCKET, SO_SNDBUF, &opt, sizeof(opt)));
158 }
159
160 int os_set_tos(int fd,int tos)
161 {
162   unsigned int opt = tos;
163   return (0 == setsockopt(fd, SOL_IP, IP_TOS, &opt, sizeof(opt)));
164 }
165
166 int os_disable_options(int fd)
167 {
168   return (0 == setsockopt(fd, IPPROTO_IP, IP_OPTIONS, NULL, 0));
169 }
170
171 int os_set_fdlimit(unsigned int max_descriptors)
172 {
173   struct rlimit limit;
174
175   if (!getrlimit(RLIMIT_NOFILE, &limit)) {
176     if (limit.rlim_max < max_descriptors)
177       return limit.rlim_max;
178     limit.rlim_cur = limit.rlim_max;    /* make soft limit the max */
179     return setrlimit(RLIMIT_NOFILE, &limit);
180   }
181   return 0;
182 }
183
184 /*
185  * os_recv_nonb - non blocking read of a connection
186  * returns:
187  *  1  if data was read or socket is blocked (recoverable error)
188  *    count_out > 0 if data was read
189  *   
190  *  0  if socket closed from other end
191  *  -1 if an unrecoverable error occurred
192  */
193 IOResult os_recv_nonb(int fd, char* buf, unsigned int length, 
194                  unsigned int* count_out)
195 {
196   int res;
197   assert(0 != buf);
198   assert(0 != count_out);
199   *count_out = 0;
200   errno = 0;
201
202   if (0 < (res = recv(fd, buf, length, 0))) {
203     *count_out = (unsigned) res;
204     return IO_SUCCESS;
205   }
206   else if (res < 0) {
207     if (EWOULDBLOCK == errno || EAGAIN == errno)
208       return IO_BLOCKED;
209     else
210       return IO_FAILURE;
211   } 
212   /*
213    * 0   == client closed the connection
214    * < 1 == error
215    */
216   return IO_FAILURE;
217 }
218
219 IOResult os_recvfrom_nonb(int fd, char* buf, unsigned int length, 
220                           unsigned int* length_out, struct sockaddr_in* sin_out)
221 {
222   int    res;
223   unsigned int len = sizeof(struct sockaddr_in);
224   assert(0 != buf);
225   assert(0 != length_out);
226   assert(0 != sin_out);
227   errno = 0;
228
229   res = recvfrom(fd, buf, length, 0, (struct sockaddr*) sin_out, &len);
230   if (-1 == res) {
231     if (EWOULDBLOCK == errno || ENOMEM == errno)
232       return IO_BLOCKED;
233     return IO_FAILURE;
234   }
235   *length_out = res;
236   return IO_SUCCESS;
237 }
238
239 /*
240  * os_send_nonb - non blocking read of a connection
241  * returns:
242  *  1  if data was written
243  *    count_out contains amount written
244  *   
245  *  0  if write call blocked, recoverable error
246  *  -1 if an unrecoverable error occurred
247  */
248 IOResult os_send_nonb(int fd, const char* buf, unsigned int length, 
249                  unsigned int* count_out)
250 {
251   int res;
252   assert(0 != buf);
253   assert(0 != count_out);
254   *count_out = 0;
255   errno = 0;
256
257   if (-1 < (res = send(fd, buf, length, 0))) {
258     *count_out = (unsigned) res;
259     return IO_SUCCESS;
260   }
261   else if (EAGAIN == errno || ENOMEM == errno || ENOBUFS == errno)
262     return IO_BLOCKED;
263
264   return IO_FAILURE;
265 }
266
267 /*
268  * os_sendv_nonb - non blocking writev to a connection
269  * returns:
270  *  1  if data was written
271  *    count_out contains amount written
272  *   
273  *  0  if write call blocked, recoverable error
274  *  -1 if an unrecoverable error occurred
275  */
276 IOResult os_sendv_nonb(int fd, struct MsgQ* buf, unsigned int* count_in,
277                        unsigned int* count_out)
278 {
279   int res;
280   int count;
281   struct iovec iov[IOV_MAX];
282
283   assert(0 != buf);
284   assert(0 != count_in);
285   assert(0 != count_out);
286
287   *count_in = 0;
288   *count_out = 0;
289   errno = 0;
290
291   count = msgq_mapiov(buf, iov, IOV_MAX, count_in);
292
293   if (-1 < (res = writev(fd, iov, count))) {
294     *count_out = (unsigned) res;
295     return IO_SUCCESS;
296   }
297   else if (EAGAIN == errno || ENOMEM == errno || ENOBUFS == errno)
298     return IO_BLOCKED;
299
300   return IO_FAILURE;
301 }
302
303
304 int os_connect_nonb(int fd, const struct sockaddr_in* sin)
305 {
306   if (connect(fd, (const struct sockaddr*) sin, sizeof(struct sockaddr_in))) {
307     if (errno != EINPROGRESS)
308       return 0;
309   }
310   return 1;
311 }
312       
313 int os_get_sockname(int fd, struct sockaddr_in* sin_out)
314 {
315   unsigned int len = sizeof(struct sockaddr_in);
316   assert(0 != sin_out);
317   return (0 == getsockname(fd, (struct sockaddr*) sin_out, &len));
318 }
319
320 int os_get_peername(int fd, struct sockaddr_in* sin_out)
321 {
322   unsigned int len = sizeof(struct sockaddr_in);
323   assert(0 != sin_out);
324   return (0 == getpeername(fd, (struct sockaddr*) sin_out, &len));
325 }
326
327 int os_set_listen(int fd, int backlog)
328 {
329   /*
330    * for linux 2.2 backlog is the number of connections ready to be accepted
331    * not the max syn requests, there is a kernel tweak there to set the max
332    * syn request queue length
333    */
334   return (0 == listen(fd, backlog));
335 }
336