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