Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 | /* kHTTPd -- the next generation Pass connections to userspace-daemons */ /**************************************************************** * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * ****************************************************************/ /* Purpose: Userspace() hands all requests in the queue to the userspace-daemon, if such beast exists. Return value: The number of requests that changed status */ #include <linux/kernel.h> #include <linux/errno.h> #include <linux/malloc.h> #include <linux/net.h> #include <linux/sched.h> #include <linux/skbuff.h> #include <linux/smp_lock.h> #include <linux/un.h> #include <linux/unistd.h> #include <linux/wait.h> #include <net/ip.h> #include <net/sock.h> #include <net/tcp.h> #include <asm/atomic.h> #include <asm/semaphore.h> #include <asm/processor.h> #include <asm/uaccess.h> #include <linux/file.h> #include "structure.h" #include "prototypes.h" #include "sysctl.h" /* prototypes of local, static functions */ static int AddSocketToAcceptQueue(struct socket *sock,const int Port); int Userspace(const int CPUNR) { struct http_request *CurrentRequest,**Prev,*Next; EnterFunction("Userspace"); CurrentRequest = threadinfo[CPUNR].UserspaceQueue; Prev = &(threadinfo[CPUNR].UserspaceQueue); while (CurrentRequest!=NULL) { /* Clean-up the waitqueue of the socket.. Bad things happen if this is forgotten. */ if (CurrentRequest->sock!=NULL) { if ((CurrentRequest->sock!=NULL)&&(CurrentRequest->sock->sk!=NULL)) { remove_wait_queue(CurrentRequest->sock->sk->sleep,&(CurrentRequest->sleep)); } } if (AddSocketToAcceptQueue(CurrentRequest->sock,sysctl_khttpd_clientport)>=0) { (*Prev) = CurrentRequest->Next; Next = CurrentRequest->Next; sock_release(CurrentRequest->sock); CurrentRequest->sock = NULL; /* We no longer own it */ CleanUpRequest(CurrentRequest); CurrentRequest = Next; continue; } else /* No userspace-daemon present, or other problems with it */ { (*Prev) = CurrentRequest->Next; Next = CurrentRequest->Next; Send403(CurrentRequest->sock); /* Sorry, no go... */ CleanUpRequest(CurrentRequest); CurrentRequest = Next; continue; } Prev = &(CurrentRequest->Next); CurrentRequest = CurrentRequest->Next; } LeaveFunction("Userspace"); return 0; } void StopUserspace(const int CPUNR) { struct http_request *CurrentRequest,*Next; EnterFunction("StopUserspace"); CurrentRequest = threadinfo[CPUNR].UserspaceQueue; while (CurrentRequest!=NULL) { Next= CurrentRequest->Next; CleanUpRequest(CurrentRequest); CurrentRequest=Next; } threadinfo[CPUNR].UserspaceQueue = NULL; LeaveFunction("StopUserspace"); } /* "FindUserspace" returns the struct sock of the userspace-daemon, so that we can "drop" our request in the accept-queue */ static struct sock *FindUserspace(const unsigned short Port) { struct sock *sk; EnterFunction("FindUserspace"); local_bh_disable(); sk = tcp_v4_lookup_listener(INADDR_ANY,Port,0); local_bh_enable(); return sk; } static void dummy_destructor(struct open_request *req) { } static struct or_calltable Dummy = { 0, NULL, NULL, &dummy_destructor, NULL }; static int AddSocketToAcceptQueue(struct socket *sock,const int Port) { struct open_request *req; struct sock *sk; struct tcp_opt *tp; EnterFunction("AddSocketToAcceptQueue"); sk = FindUserspace((unsigned short)Port); if (sk==NULL) /* No userspace-daemon found */ { return -1; } lock_sock(sk); if (sk->state != TCP_LISTEN || sk->ack_backlog > sk->max_ack_backlog) /* To many pending requests */ { release_sock(sk); sock_put(sk); return -1; } req = tcp_openreq_alloc(); if (req==NULL) { release_sock(sk); sock_put(sk); return -1; } req->sk = sock->sk; sock->sk = NULL; sock->state = SS_UNCONNECTED; req->class = &Dummy; write_lock_irq(&req->sk->callback_lock); req->sk->socket = NULL; req->sk->sleep = NULL; write_unlock_irq(&req->sk->callback_lock); tp =&(sk->tp_pinfo.af_tcp); sk->ack_backlog++; tcp_synq_queue(tp,req); sk->data_ready(sk, 0); release_sock(sk); sock_put(sk); LeaveFunction("AddSocketToAcceptQueue"); return +1; } void InitUserspace(const int CPUNR) { } |