Merge remote-tracking branch 'score/develop' into tizen-vigs-develop
[sdk/emulator/qemu.git] / tizen / src / osutil-win32.c
1 /* 
2  * Emulator
3  *
4  * Copyright (C) 2012, 2013 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact: 
7  * SeokYeon Hwang <syeon.hwang@samsung.com>
8  * MunKyu Im <munkyu.im@samsung.com>
9  * GiWoong Kim <giwoong.kim@samsung.com>
10  * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
11  * HyunJun Son
12  *
13  * This program is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU General Public License
15  * as published by the Free Software Foundation; either version 2
16  * of the License, or (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
26  *
27  * Contributors:
28  * - S-Core Co., Ltd
29  *
30  */
31
32 /**
33   @file     osutil-win32.c
34   @brief    Collection of utilities for win32
35  */
36
37 #include "maru_common.h"
38 #include "osutil.h"
39 #include "emulator.h"
40 #include "debug_ch.h"
41 #include "maru_err_table.h"
42 #include "sdb.h"
43
44 #ifndef CONFIG_WIN32
45 #error
46 #endif
47
48 #include <windows.h>
49
50 MULTI_DEBUG_CHANNEL (emulator, osutil);
51
52 extern char tizen_target_img_path[];
53 extern int tizen_base_port;
54
55 static const char *pactempfile = ".autoproxy";
56
57 void check_vm_lock_os(void)
58 {
59     uint32_t port;
60     char *base_port = NULL;
61     char *pBuf;
62     HANDLE hMapFile;
63
64     for (port = 26100; port < 26200; port += 10) {
65         base_port = g_strdup_printf("%d", port);
66         hMapFile = OpenFileMapping(FILE_MAP_READ, TRUE, base_port);
67         if (hMapFile == NULL) {
68             INFO("port %s is not used.\n", base_port);
69             continue;
70         } else {
71              pBuf = (char *)MapViewOfFile(hMapFile, FILE_MAP_READ, 0, 0, 50);
72             if (pBuf == NULL) {
73                 ERR("Could not map view of file (%d).\n", GetLastError());
74                 CloseHandle(hMapFile);
75             }
76
77             if (strcmp(pBuf, tizen_target_img_path) == 0) {
78                 maru_register_exit_msg(MARU_EXIT_UNKNOWN,
79                     "Can not execute this VM.\n"
80                     "The same name is running now.");
81                 UnmapViewOfFile(pBuf);
82                 CloseHandle(hMapFile);
83                 free(base_port);
84                 exit(0);
85             } else {
86                 UnmapViewOfFile(pBuf);
87             }
88         }
89
90         CloseHandle(hMapFile);
91         free(base_port);
92     }
93 }
94
95 void make_vm_lock_os(void)
96 {
97     HANDLE hMapFile;
98     char *pBuf;
99     char *port_in_use;
100     char *shared_memory;
101
102     shared_memory = g_strdup_printf("%s", tizen_target_img_path);
103     port_in_use =  g_strdup_printf("%d", tizen_base_port);
104     hMapFile = CreateFileMapping(
105                  INVALID_HANDLE_VALUE, /* use paging file */
106                  NULL,                 /* default security */
107                  PAGE_READWRITE,       /* read/write access */
108                  0,                /* maximum object size (high-order DWORD) */
109                  50,               /* maximum object size (low-order DWORD) */
110                  port_in_use);         /* name of mapping object */
111     if (hMapFile == NULL) {
112         ERR("Could not create file mapping object (%d).\n", GetLastError());
113         return;
114     }
115     pBuf = MapViewOfFile(hMapFile, FILE_MAP_ALL_ACCESS, 0, 0, 50);
116
117     if (pBuf == NULL) {
118         ERR("Could not map view of file (%d).\n", GetLastError());
119         CloseHandle(hMapFile);
120         return;
121     }
122
123     CopyMemory((PVOID)pBuf, shared_memory, strlen(shared_memory));
124     free(port_in_use);
125     free(shared_memory);
126 }
127
128 void set_bin_path_os(gchar * exec_argv)
129 {
130     gchar link_path[PATH_MAX] = { 0, };
131     gchar *file_name = NULL;
132
133     if (!GetModuleFileName(NULL, link_path, PATH_MAX)) {
134         return;
135     }
136
137     file_name = g_strrstr(link_path, "\\");
138     g_strlcpy(bin_path, link_path, strlen(link_path) - strlen(file_name) + 1);
139
140     g_strlcat(bin_path, "\\", PATH_MAX);
141 }
142
143 void print_system_info_os(void)
144 {
145     INFO("* Windows\n");
146
147     /* Retrieves information about the current os */
148     OSVERSIONINFO osvi;
149     ZeroMemory(&osvi, sizeof(OSVERSIONINFO));
150     osvi.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
151
152     if (GetVersionEx(&osvi)) {
153         INFO("* MajorVersion : %d, MinorVersion : %d, BuildNumber : %d, "
154             "PlatformId : %d, CSDVersion : %s\n", osvi.dwMajorVersion,
155             osvi.dwMinorVersion, osvi.dwBuildNumber,
156             osvi.dwPlatformId, osvi.szCSDVersion);
157     }
158
159     /* Retrieves information about the current system */
160     SYSTEM_INFO sysi;
161     ZeroMemory(&sysi, sizeof(SYSTEM_INFO));
162
163     GetSystemInfo(&sysi);
164     INFO("* Processor type : %d, Number of processors : %d\n",
165             sysi.dwProcessorType, sysi.dwNumberOfProcessors);
166
167     MEMORYSTATUSEX memInfo;
168     memInfo.dwLength = sizeof(MEMORYSTATUSEX);
169     GlobalMemoryStatusEx(&memInfo);
170     INFO("* Total Ram : %llu kB, Free: %lld kB\n",
171             memInfo.ullTotalPhys / 1024, memInfo.ullAvailPhys / 1024);
172 }
173
174 static int get_auto_proxy(BYTE *url, char *http_proxy, char *https_proxy, char *ftp_proxy, char *socks_proxy)
175 {
176     char type[MAXLEN];
177     char proxy[MAXLEN];
178     char line[MAXLEN];
179     FILE *fp_pacfile;
180     char *p = NULL;
181
182     INFO("pac address: %s\n", (char*)url);
183     download_url((char*)url);
184
185     fp_pacfile = fopen(pactempfile, "r");
186     if(fp_pacfile != NULL) {
187         while(fgets(line, MAXLEN, fp_pacfile) != NULL) {
188             if( (strstr(line, "return") != NULL) && (strstr(line, "if") == NULL)) {
189                 INFO("line found %s", line);
190                 sscanf(line, "%*[^\"]\"%s %s", type, proxy);
191             }
192         }
193
194         if(g_str_has_prefix(type, DIRECT)) {
195             INFO("auto proxy is set to direct mode\n");
196             fclose(fp_pacfile);
197         }
198         else if(g_str_has_prefix(type, PROXY)) {
199             INFO("auto proxy is set to proxy mode\n");
200             INFO("type: %s, proxy: %s\n", type, proxy);
201             p = strtok(proxy, "\";");
202             if(p != NULL) {
203                 INFO("auto proxy to set: %s\n",p);
204                 strcpy(http_proxy, p);
205                 strcpy(https_proxy, p);
206                 strcpy(ftp_proxy, p);
207                 strcpy(socks_proxy, p);
208             }
209             fclose(fp_pacfile);
210         }
211         else
212         {
213             ERR("pac file is not wrong! It could be the wrong pac address or pac file format\n");
214             fclose(fp_pacfile);
215         }
216     } 
217     else {
218         ERR("fail to get pacfile fp\n");
219         return -1;
220     }
221
222     remove(pactempfile);
223
224     return 0;
225 }
226
227 void get_host_proxy_os(char *http_proxy, char *https_proxy, char *ftp_proxy, char *socks_proxy)
228 {
229     HKEY hKey;
230     int nRet;
231     LONG lRet;
232     BYTE *proxyenable, *proxyserver;
233     char *p;
234     char *real_proxy;
235     BYTE *url;
236
237     DWORD dwLength = 0;
238     nRet = RegOpenKeyEx(HKEY_CURRENT_USER,
239             "Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
240             0, KEY_QUERY_VALUE, &hKey);
241     if (nRet != ERROR_SUCCESS) {
242         ERR("Failed to open registry from %s\n",
243                 "Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings");
244         return 0;
245     }
246     //check auto proxy key exists
247     lRet = RegQueryValueEx(hKey, "AutoConfigURL", 0, NULL, NULL, &dwLength);
248     if (lRet != ERROR_SUCCESS && dwLength == 0) {
249         ERR("Failed to query value from %s\n",
250                 "Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\AutoConfigURL");
251     }
252     else {
253         //if exists
254         url = (char*)malloc(dwLength);
255         if (url == NULL) {
256             ERR( "Failed to allocate a buffer\n");
257         }
258         else {
259             memset(url, 0x00, dwLength);
260             lRet = RegQueryValueEx(hKey, "AutoConfigURL", 0, NULL, url, &dwLength);
261             if (lRet == ERROR_SUCCESS && dwLength != 0) {
262                 get_auto_proxy(url, http_proxy, https_proxy, ftp_proxy, socks_proxy);
263                 RegCloseKey(hKey);      
264                 return 0;
265             }
266         }
267     }
268     //check manual proxy key exists
269     lRet = RegQueryValueEx(hKey, "ProxyEnable", 0, NULL, NULL, &dwLength);
270     if (lRet != ERROR_SUCCESS && dwLength == 0) {
271         ERR(stderr, "Failed to query value from %s\n",
272                 "Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ProxyEnable");
273         RegCloseKey(hKey);
274         return 0;
275     }
276     proxyenable = (BYTE*)malloc(dwLength);
277     if (proxyenable == NULL) {
278         ERR( "Failed to allocate a buffer\n");
279         RegCloseKey(hKey);
280         return 0;
281     }
282
283     lRet = RegQueryValueEx(hKey, "ProxyEnable", 0, NULL, proxyenable, &dwLength);
284     if (lRet != ERROR_SUCCESS) {
285         free(proxyenable);
286         ERR("Failed to query value from %s\n",
287                 "Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ProxyEnable");
288         RegCloseKey(hKey);
289         return 0;
290     }
291     if (*(char*)proxyenable == 0) {
292         free(proxyenable);
293         RegCloseKey(hKey);      
294         return 0;
295     }
296
297     dwLength = 0;
298     lRet = RegQueryValueEx(hKey, "ProxyServer", 0, NULL, NULL, &dwLength);
299     if (lRet != ERROR_SUCCESS && dwLength == 0) {
300         ERR("Failed to query value from from %s\n",
301                 "Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings");
302         RegCloseKey(hKey);      
303         return 0;
304     }
305
306     proxyserver = (BYTE*)malloc(dwLength);
307     if (proxyserver == NULL) {
308         ERR( "Failed to allocate a buffer\n");
309         RegCloseKey(hKey);      
310         return 0;
311     }
312
313     memset(proxyserver, 0x00, dwLength);
314     lRet = RegQueryValueEx(hKey, "ProxyServer", 0, NULL, proxyserver, &dwLength);
315     if (lRet != ERROR_SUCCESS) {
316         free(proxyserver);
317         ERR( "Failed to query value from from %s\n",
318                 "Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings");
319         RegCloseKey(hKey);
320         return 0;
321     }
322     
323     if((char*)proxyserver != NULL) {
324         INFO("proxy value: %s\n", (char*)proxyserver);
325         real_proxy = malloc(MAXLEN);
326         
327         for(p = strtok((char*)proxyserver, ";"); p; p = strtok(NULL, ";")){
328             if(strstr(p, HTTP_PROTOCOL)) {
329                 remove_string(p, real_proxy, HTTP_PROTOCOL);
330                 strcpy(http_proxy, real_proxy);
331             }
332             else if(strstr(p, HTTPS_PROTOCOL)) {
333                 remove_string(p, real_proxy, HTTPS_PROTOCOL);
334                 strcpy(https_proxy, real_proxy);
335             }
336             else if(strstr(p, FTP_PROTOCOL)) {
337                 remove_string(p, real_proxy, FTP_PROTOCOL);
338                 strcpy(ftp_proxy, real_proxy);
339             }
340             else if(strstr(p, SOCKS_PROTOCOL)) {
341                 remove_string(p, real_proxy, SOCKS_PROTOCOL);
342                 strcpy(socks_proxy, real_proxy);
343             }
344             else {
345                 INFO("all protocol uses the same proxy server: %s\n", p);
346                 strcpy(http_proxy, p);
347                 strcpy(https_proxy, p);
348                 strcpy(ftp_proxy, p);
349                 strcpy(socks_proxy, p);
350             }
351         }
352         free(real_proxy);
353     }
354     else {
355         INFO("proxy is null\n");
356         return 0;
357     }
358     RegCloseKey(hKey);
359 }