cmdlgtst: Fix the Czech translation.
[wine] / programs / rpcss / rpcss_main.c
1 /*
2  * Copyright 2001, Ove Kåven, TransGaming Technologies Inc.
3  * Copyright 2002 Greg Turner
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library 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 GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
18  *
19  * ---- rpcss_main.c:
20  *   Initialize and start serving requests.  Bail if rpcss already is
21  *   running.
22  *
23  * ---- RPCSS.EXE:
24  *   
25  *   Wine needs a server whose role is somewhat like that
26  *   of rpcss.exe in windows.  This is not a clone of
27  *   windows rpcss at all.  It has been given the same name, however,
28  *   to provide for the possibility that at some point in the future, 
29  *   it may become interface compatible with the "real" rpcss.exe on
30  *   Windows.
31  *
32  * ---- KNOWN BUGS / TODO:
33  *
34  *   o Service hooks are unimplemented (if you bother to implement
35  *     these, also implement net.exe, at least for "net start" and
36  *     "net stop" (should be pretty easy I guess, assuming the rest
37  *     of the services API infrastructure works.
38  * 
39  *   o Is supposed to use RPC, not random kludges, to map endpoints.
40  *
41  *   o Probably name services should be implemented here as well.
42  *
43  *   o Wine's named pipes (in general) may not interoperate with those of 
44  *     Windows yet (?)
45  *
46  *   o There is a looming problem regarding listening on privileged
47  *     ports.  We will need to be able to coexist with SAMBA, and be able
48  *     to function without running winelib code as root.  This may
49  *     take some doing, including significant reconceptualization of the
50  *     role of rpcss.exe in wine.
51  *
52  *   o Who knows?  Whatever rpcss does, we ought to at
53  *     least think about doing... but what /does/ it do?
54  */
55
56 #include <stdio.h>
57 #include <limits.h>
58 #include <assert.h>
59
60 #define NONAMELESSUNION
61 #define NONAMELESSSTRUCT
62 #include "rpcss.h"
63 #include "winnt.h"
64 #include "irot.h"
65
66 #include "wine/debug.h"
67
68 WINE_DEFAULT_DEBUG_CHANNEL(ole);
69
70 static HANDLE master_mutex;
71 static HANDLE exit_event;
72
73 extern HANDLE __wine_make_process_system(void);
74
75 HANDLE RPCSS_GetMasterMutex(void)
76 {
77   return master_mutex;
78 }
79
80 static BOOL RPCSS_work(HANDLE exit_event)
81 {
82   return RPCSS_NPDoWork(exit_event);
83 }
84
85 static BOOL RPCSS_Initialize(void)
86 {
87   static unsigned short irot_protseq[] = IROT_PROTSEQ;
88   static unsigned short irot_endpoint[] = IROT_ENDPOINT;
89   RPC_STATUS status;
90
91   WINE_TRACE("\n");
92
93   exit_event = __wine_make_process_system();
94
95   master_mutex = CreateMutexA( NULL, FALSE, RPCSS_MASTER_MUTEX_NAME);
96   if (!master_mutex) {
97     WINE_ERR("Failed to create master mutex\n");
98     return FALSE;
99   }
100
101   if (!RPCSS_BecomePipeServer()) {
102     WINE_WARN("Server already running: exiting.\n");
103
104     CloseHandle(master_mutex);
105     master_mutex = NULL;
106
107     return FALSE;
108   }
109
110   status = RpcServerUseProtseqEpW(irot_protseq, RPC_C_PROTSEQ_MAX_REQS_DEFAULT,
111                                   irot_endpoint, NULL);
112   if (status == RPC_S_OK)
113       status = RpcServerRegisterIf(Irot_v0_2_s_ifspec, NULL, NULL);
114   if (status == RPC_S_OK)
115       status = RpcServerListen(1, RPC_C_LISTEN_MAX_CALLS_DEFAULT, TRUE);
116   else
117       RpcServerUnregisterIf(Irot_v0_2_s_ifspec, NULL, FALSE);
118
119   return status == RPC_S_OK;
120 }
121
122 /* returns false if we discover at the last moment that we
123    aren't ready to terminate */
124 static BOOL RPCSS_Shutdown(void)
125 {
126   if (!RPCSS_UnBecomePipeServer())
127     return FALSE;
128    
129   if (!CloseHandle(master_mutex))
130     WINE_WARN("Failed to release master mutex\n");
131
132   master_mutex = NULL;
133
134   RpcMgmtStopServerListening(NULL);
135   RpcServerUnregisterIf(Irot_v0_2_s_ifspec, NULL, TRUE);
136
137   CloseHandle(exit_event);
138
139   return TRUE;
140 }
141
142 static void RPCSS_MainLoop(void)
143 {
144   WINE_TRACE("\n");
145
146   while ( RPCSS_work(exit_event) )
147       ;
148 }
149
150 int main( int argc, char **argv )
151 {
152   /* 
153    * We are invoked as a standard executable; we act in a
154    * "lazy" manner.  We open up our pipe, and hang around until we all
155    * user processes exit, and then silently terminate.
156    */
157
158   if (RPCSS_Initialize()) {
159     RPCSS_MainLoop();
160     RPCSS_Shutdown();
161   }
162
163   return 0;
164 }