source: roaraudio/roard/network.c @ 3713:38a2d99a3bed

Last change on this file since 3713:38a2d99a3bed was 3713:38a2d99a3bed, checked in by phi, 14 years ago

moved socket cred things out of the network.c into the clients.c/client_set_fh()

File size: 4.2 KB
RevLine 
[0]1//network.c:
2
[668]3/*
[3358]4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008-2010
[668]5 *
6 *  This file is part of roard a part of RoarAudio,
7 *  a cross-platform sound system for both, home and professional use.
8 *  See README for details.
9 *
10 *  This file is free software; you can redistribute it and/or modify
11 *  it under the terms of the GNU General Public License version 3
12 *  as published by the Free Software Foundation.
13 *
14 *  RoarAudio is distributed in the hope that it will be useful,
15 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 *  GNU General Public License for more details.
18 *
19 *  You should have received a copy of the GNU General Public License
20 *  along with this software; see the file COPYING.  If not, write to
[3517]21 *  the Free Software Foundation, 51 Franklin Street, Fifth Floor,
22 *  Boston, MA 02110-1301, USA.
[668]23 *
24 */
25
[0]26#include "roard.h"
27
[1494]28#ifdef ROAR_SUPPORT_LISTEN
29
[1055]30#ifdef ROAR_BROKEN_PEERCRED
31#undef SO_PEERCRED
32#endif
33
[1484]34#ifdef ROAR_HAVE_SELECT
35#define _CAN_OPERATE
36#endif
37
[0]38int net_check_listen  (void) {
[1484]39#ifdef _CAN_OPERATE
[0]40 int r;
41 fd_set sl;
42 struct timeval tv;
[2530]43 int i;
44 int max_fh = -1;
[0]45
46 FD_ZERO(&sl);
[2530]47
48 for (i = 0; i < ROAR_MAX_LISTEN_SOCKETS; i++) {
[3129]49  if ( g_listen[i].socket != -1 ) {
50   if ( g_listen[i].socket > max_fh )
51    max_fh = g_listen[i].socket;
[2530]52
[3129]53   FD_SET(g_listen[i].socket, &sl);
[2530]54  }
55 }
56
57 if ( max_fh == -1 )
58  return 0;
[0]59
60 tv.tv_sec  = 0;
61 tv.tv_usec = 1;
62
[2530]63 if ((r = select(max_fh + 1, &sl, NULL, NULL, &tv)) > 0) {
[0]64  ROAR_DBG("net_check_listen(void): We have a connection!");
[2530]65  for (i = 0; i < ROAR_MAX_LISTEN_SOCKETS; i++) {
[3129]66   if ( g_listen[i].socket != -1 ) {
67    if ( FD_ISSET(g_listen[i].socket, &sl) ) {
[3253]68     if ( net_get_new_client(&(g_listen[i])) == -1 )
[2530]69      return -1;
70    }
71   }
72  }
[0]73 }
74
75 return r;
[1484]76#else
77 return -1;
78#endif
[0]79}
80
[1484]81#ifdef _CAN_OPERATE
[3253]82int net_get_new_client (struct roard_listen * lsock) {
[0]83 int fh;
84 int client;
[1183]85 struct roar_client * c;
[2815]86 struct roar_vio_calls    vio;
87 struct sockaddr_storage  addr;
88 socklen_t                addrlen = sizeof(addr);
[0]89
[3253]90 fh = accept(lsock->socket, (struct sockaddr*)&addr, &addrlen);
[0]91
92 ROAR_DBG("net_get_new_client(void): fh = %i", fh);
93
[3684]94#ifndef ROAR_WITHOUT_DCOMP_EMUL_RSOUND
95 if ( lsock->proto == ROAR_PROTO_RSOUND ) {
96  client = emul_rsound_on_connect(fh, lsock);
97  switch (client) {
98   case -1: return -1; break;
99   case -2: return  0; break;
100   default: // TODO: write error handling
101     clients_get(client, &c);
102     fh = c->fh;
103    break;
104  }
105 } else {
106#endif
107
[0]108 client = clients_new();
109
110 if ( clients_set_fh(client, fh) == -1 ) {
111  ROAR_ERR("net_get_new_client(void): Can not set client's fh");
112
113  clients_delete(client);
114  close(fh);
115
116  ROAR_DBG("net_get_new_client(void) = -1");
117  return -1;
118 }
[3684]119#ifndef ROAR_WITHOUT_DCOMP_EMUL_RSOUND
120 }
121#endif
[0]122
[2820]123 if ( clients_get(client, &c) != -1 ) {
124  if ( roar_nnode_free(&(c->nnode)) == -1 )
125   return -1;
[2815]126
[2820]127  if ( roar_nnode_new_from_sockaddr(&(c->nnode), (struct sockaddr*)&addr, addrlen) == -1 )
128   return -1;
129 }
[2815]130
[3253]131 ROAR_DBG("net_get_new_client(*): proto=0x%.4x", lsock->proto);
[2530]132
[3253]133 if ( clients_set_proto(client, lsock->proto) == -1 ) {
134  ROAR_WARN("net_get_new_client(*): Setting proto(0x%.4x) of client %i failed.", lsock->proto, client);
[2529]135  return -1;
[2789]136 }
[2529]137
[3253]138 switch (lsock->proto) {
[2789]139  case ROAR_PROTO_ROARAUDIO:
140    // nothing needed to be done here
141   break;
[2545]142#ifndef ROAR_WITHOUT_DCOMP_EMUL_ESD
[2791]143#ifdef ROAR_HAVE_H_ESD
[2530]144  case ROAR_PROTO_ESOUND:
[2789]145    ROAR_DBG("net_get_new_client(*): execing ESD CONNECT command");
146
147    if ( roar_vio_open_fh_socket(&vio, fh) == -1 )
[2530]148     return -1;
[2529]149
[2789]150    ROAR_DBG("net_get_new_client(*): creating VIO OK");
151
[2530]152    if ( emul_esd_exec_command(client, ESD_PROTO_CONNECT, &vio) == -1 )
153     return -1;
[2789]154
155    ROAR_DBG("net_get_new_client(*): CONNECT execed sucessfully");
[2530]156   break;
[2545]157#endif
[3359]158#endif
[3603]159#ifndef ROAR_WITHOUT_DCOMP_EMUL_SIMPLE
[3253]160  case ROAR_PROTO_SIMPLE:
[3255]161    if ( emul_simple_on_connect(client, lsock) == -1 )
162     return -1;
[3253]163   break;
[3596]164#endif
[3684]165#ifndef ROAR_WITHOUT_DCOMP_EMUL_RSOUND
166  case ROAR_PROTO_RSOUND: // nothing to do here.
167   break;
168#endif
[2789]169  default:
170    // OS independiend code to close the socket:
171    if ( roar_vio_open_fh_socket(&vio, fh) == -1 )
172     return -1;
173    roar_vio_close(&vio);
174    return -1;
175   break;
[2530]176 }
[2529]177
[0]178// close(fh);
179
180 return 0;
181}
[1484]182#endif
[0]183
[1494]184#endif
185
[0]186//ll
Note: See TracBrowser for help on using the repository browser.