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