f48e552ce1b9be5b2f53207d8c3bc97008b6b533
[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_disable_options(int fd)
161 {
162   return (0 == setsockopt(fd, IPPROTO_IP, IP_OPTIONS, NULL, 0));
163 }
164
165 int os_set_fdlimit(unsigned int max_descriptors)
166 {
167   struct rlimit limit;
168
169   if (!getrlimit(RLIMIT_NOFILE, &limit)) {
170     if (limit.rlim_max < max_descriptors)
171       return limit.rlim_max;
172     limit.rlim_cur = limit.rlim_max;    /* make soft limit the max */
173     return setrlimit(RLIMIT_NOFILE, &limit);
174   }
175   return 0;
176 }
177
178 /*
179  * os_recv_nonb - non blocking read of a connection
180  * returns:
181  *  1  if data was read or socket is blocked (recoverable error)
182  *    count_out > 0 if data was read
183  *   
184  *  0  if socket closed from other end
185  *  -1 if an unrecoverable error occurred
186  */
187 IOResult os_recv_nonb(int fd, char* buf, unsigned int length, 
188                  unsigned int* count_out)
189 {
190   int res;
191   assert(0 != buf);
192   assert(0 != count_out);
193   *count_out = 0;
194   errno = 0;
195
196   if (0 < (res = recv(fd, buf, length, 0))) {
197     *count_out = (unsigned) res;
198     return IO_SUCCESS;
199   }
200   else if (res < 0) {
201     if (EWOULDBLOCK == errno || EAGAIN == errno)
202       return IO_BLOCKED;
203     else
204       return IO_FAILURE;
205   } 
206   /*
207    * 0   == client closed the connection
208    * < 1 == error
209    */
210   return IO_FAILURE;
211 }
212
213 IOResult os_recvfrom_nonb(int fd, char* buf, unsigned int length, 
214                           unsigned int* length_out, struct sockaddr_in* sin_out)
215 {
216   int    res;
217   unsigned int len = sizeof(struct sockaddr_in);
218   assert(0 != buf);
219   assert(0 != length_out);
220   assert(0 != sin_out);
221   errno = 0;
222
223   res = recvfrom(fd, buf, length, 0, (struct sockaddr*) sin_out, &len);
224   if (-1 == res) {
225     if (EWOULDBLOCK == errno || ENOMEM == errno)
226       return IO_BLOCKED;
227     return IO_FAILURE;
228   }
229   *length_out = res;
230   return IO_SUCCESS;
231 }
232
233 /*
234  * os_send_nonb - non blocking read of a connection
235  * returns:
236  *  1  if data was written
237  *    count_out contains amount written
238  *   
239  *  0  if write call blocked, recoverable error
240  *  -1 if an unrecoverable error occurred
241  */
242 IOResult os_send_nonb(int fd, const char* buf, unsigned int length, 
243                  unsigned int* count_out)
244 {
245   int res;
246   assert(0 != buf);
247   assert(0 != count_out);
248   *count_out = 0;
249   errno = 0;
250
251   if (-1 < (res = send(fd, buf, length, 0))) {
252     *count_out = (unsigned) res;
253     return IO_SUCCESS;
254   }
255   else if (EAGAIN == errno || ENOMEM == errno || ENOBUFS == errno)
256     return IO_BLOCKED;
257
258   return IO_FAILURE;
259 }
260
261 /*
262  * os_sendv_nonb - non blocking writev to a connection
263  * returns:
264  *  1  if data was written
265  *    count_out contains amount written
266  *   
267  *  0  if write call blocked, recoverable error
268  *  -1 if an unrecoverable error occurred
269  */
270 IOResult os_sendv_nonb(int fd, struct MsgQ* buf, unsigned int* count_in,
271                        unsigned int* count_out)
272 {
273   int res;
274   int count;
275   struct iovec iov[IOV_MAX];
276
277   assert(0 != buf);
278   assert(0 != count_in);
279   assert(0 != count_out);
280
281   *count_in = 0;
282   *count_out = 0;
283   errno = 0;
284
285   count = msgq_mapiov(buf, iov, IOV_MAX, count_in);
286
287   if (-1 < (res = writev(fd, iov, count))) {
288     *count_out = (unsigned) res;
289     return IO_SUCCESS;
290   }
291   else if (EAGAIN == errno || ENOMEM == errno || ENOBUFS == errno)
292     return IO_BLOCKED;
293
294   return IO_FAILURE;
295 }
296
297
298 int os_connect_nonb(int fd, const struct sockaddr_in* sin)
299 {
300   if (connect(fd, (const struct sockaddr*) sin, sizeof(struct sockaddr_in))) {
301     if (errno != EINPROGRESS)
302       return 0;
303   }
304   return 1;
305 }
306       
307 int os_get_sockname(int fd, struct sockaddr_in* sin_out)
308 {
309   unsigned int len = sizeof(struct sockaddr_in);
310   assert(0 != sin_out);
311   return (0 == getsockname(fd, (struct sockaddr*) sin_out, &len));
312 }
313
314 int os_get_peername(int fd, struct sockaddr_in* sin_out)
315 {
316   unsigned int len = sizeof(struct sockaddr_in);
317   assert(0 != sin_out);
318   return (0 == getpeername(fd, (struct sockaddr*) sin_out, &len));
319 }
320
321 int os_set_listen(int fd, int backlog)
322 {
323   /*
324    * for linux 2.2 backlog is the number of connections ready to be accepted
325    * not the max syn requests, there is a kernel tweak there to set the max
326    * syn request queue length
327    */
328   return (0 == listen(fd, backlog));
329 }
330