winemenubuilder: Improve traces.
[wine] / programs / winemenubuilder / winemenubuilder.c
1 /*
2  * Helper program to build unix menu entries
3  *
4  * Copyright 1997 Marcus Meissner
5  * Copyright 1998 Juergen Schmied
6  * Copyright 2003 Mike McCormack for CodeWeavers
7  * Copyright 2004 Dmitry Timoshkov
8  * Copyright 2005 Bill Medland
9  *
10  * This library is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Lesser General Public
12  * License as published by the Free Software Foundation; either
13  * version 2.1 of the License, or (at your option) any later version.
14  *
15  * This library is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  * Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public
21  * License along with this library; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23  *
24  *
25  *  This program is used to replicate the Windows desktop and start menu
26  * into the native desktop's copies.  Desktop entries are merged directly
27  * into the native desktop.  The Windows Start Menu corresponds to a Wine
28  * entry within the native "start" menu and replicates the whole tree
29  * structure of the Windows Start Menu.  Currently it does not differentiate
30  * between the user's desktop/start menu and the "All Users" copies.
31  *
32  *  This program will read a Windows shortcut file using the IShellLink
33  * interface, then invoke wineshelllink with the appropriate arguments
34  * to create a KDE/Gnome menu entry for the shortcut.
35  *
36  *  winemenubuilder [ -r ] <shortcut.lnk>
37  *
38  *  If the -r parameter is passed, and the shortcut cannot be created,
39  * this program will add a RunOnce entry to invoke itself at the next
40  * reboot.  This covers the case when a ShortCut is created before the
41  * executable containing its icon.
42  *
43  * TODO
44  *  Handle data lnk files. There is no icon in the file; the icon is in 
45  * the handler for the file type (or pointed to by the lnk file).  Also it 
46  * might be better to use a native handler (e.g. a native acroread for pdf
47  * files).  
48  *  Differentiate between the user's entries and the "All Users" entries.
49  * If it is possible to add the desktop files to the native system's
50  * shared location for an "All Users" entry then do so.  As a suggestion the
51  * shared menu Wine base could be writable to the wine group, or a wineadm 
52  * group.
53  * 
54  */
55
56 #include "config.h"
57 #include "wine/port.h"
58
59 #include <ctype.h>
60 #include <stdio.h>
61 #include <string.h>
62 #ifdef HAVE_UNISTD_H
63 #include <unistd.h>
64 #endif
65 #include <errno.h>
66 #include <stdarg.h>
67
68 #define COBJMACROS
69
70 #include <windows.h>
71 #include <shlobj.h>
72 #include <objidl.h>
73 #include <shlguid.h>
74 #include <appmgmt.h>
75
76 #include "wine/unicode.h"
77 #include "wine/debug.h"
78 #include "wine.xpm"
79
80 WINE_DEFAULT_DEBUG_CHANNEL(menubuilder);
81
82 #define in_desktop_dir(csidl) ((csidl)==CSIDL_DESKTOPDIRECTORY || \
83                                (csidl)==CSIDL_COMMON_DESKTOPDIRECTORY)
84 #define in_startmenu(csidl)   ((csidl)==CSIDL_STARTMENU || \
85                                (csidl)==CSIDL_COMMON_STARTMENU)
86         
87 /* link file formats */
88
89 #include "pshpack1.h"
90
91 typedef struct
92 {
93     BYTE bWidth;
94     BYTE bHeight;
95     BYTE bColorCount;
96     BYTE bReserved;
97     WORD wPlanes;
98     WORD wBitCount;
99     DWORD dwBytesInRes;
100     WORD nID;
101 } GRPICONDIRENTRY;
102
103 typedef struct
104 {
105     WORD idReserved;
106     WORD idType;
107     WORD idCount;
108     GRPICONDIRENTRY idEntries[1];
109 } GRPICONDIR;
110
111 typedef struct
112 {
113     BYTE bWidth;
114     BYTE bHeight;
115     BYTE bColorCount;
116     BYTE bReserved;
117     WORD wPlanes;
118     WORD wBitCount;
119     DWORD dwBytesInRes;
120     DWORD dwImageOffset;
121 } ICONDIRENTRY;
122
123 typedef struct
124 {
125     WORD idReserved;
126     WORD idType;
127     WORD idCount;
128 } ICONDIR;
129
130
131 #include "poppack.h"
132
133 typedef struct
134 {
135         HRSRC *pResInfo;
136         int   nIndex;
137 } ENUMRESSTRUCT;
138
139
140 /* Icon extraction routines
141  *
142  * FIXME: should use PrivateExtractIcons and friends
143  * FIXME: should not use stdio
144  */
145
146 static BOOL SaveIconResAsXPM(const BITMAPINFO *pIcon, const char *szXPMFileName, LPCWSTR commentW)
147 {
148     FILE *fXPMFile;
149     int nHeight;
150     int nXORWidthBytes;
151     int nANDWidthBytes;
152     BOOL b8BitColors;
153     int nColors;
154     const BYTE *pXOR;
155     const BYTE *pAND;
156     BOOL aColorUsed[256] = {0};
157     int nColorsUsed = 0;
158     int i,j;
159     char *comment;
160
161     if (!((pIcon->bmiHeader.biBitCount == 4) || (pIcon->bmiHeader.biBitCount == 8)))
162         return FALSE;
163
164     if (!(fXPMFile = fopen(szXPMFileName, "w")))
165     {
166         WINE_TRACE("unable to open '%s' for writing: %s\n", szXPMFileName, strerror(errno));
167         return FALSE;
168     }
169
170     i = WideCharToMultiByte(CP_UNIXCP, 0, commentW, -1, NULL, 0, NULL, NULL);
171     comment = malloc(i);
172     WideCharToMultiByte(CP_UNIXCP, 0, commentW, -1, comment, i, NULL, NULL);
173
174     nHeight = pIcon->bmiHeader.biHeight / 2;
175     nXORWidthBytes = 4 * ((pIcon->bmiHeader.biWidth * pIcon->bmiHeader.biBitCount / 32)
176                           + ((pIcon->bmiHeader.biWidth * pIcon->bmiHeader.biBitCount % 32) > 0));
177     nANDWidthBytes = 4 * ((pIcon->bmiHeader.biWidth / 32)
178                           + ((pIcon->bmiHeader.biWidth % 32) > 0));
179     b8BitColors = pIcon->bmiHeader.biBitCount == 8;
180     nColors = pIcon->bmiHeader.biClrUsed ? pIcon->bmiHeader.biClrUsed
181         : 1 << pIcon->bmiHeader.biBitCount;
182     pXOR = (const BYTE*) pIcon + sizeof (BITMAPINFOHEADER) + (nColors * sizeof (RGBQUAD));
183     pAND = pXOR + nHeight * nXORWidthBytes;
184
185 #define MASK(x,y) (pAND[(x) / 8 + (nHeight - (y) - 1) * nANDWidthBytes] & (1 << (7 - (x) % 8)))
186 #define COLOR(x,y) (b8BitColors ? pXOR[(x) + (nHeight - (y) - 1) * nXORWidthBytes] : (x) % 2 ? pXOR[(x) / 2 + (nHeight - (y) - 1) * nXORWidthBytes] & 0xF : (pXOR[(x) / 2 + (nHeight - (y) - 1) * nXORWidthBytes] & 0xF0) >> 4)
187
188     for (i = 0; i < nHeight; i++) {
189         for (j = 0; j < pIcon->bmiHeader.biWidth; j++) {
190             if (!aColorUsed[COLOR(j,i)] && !MASK(j,i))
191             {
192                 aColorUsed[COLOR(j,i)] = TRUE;
193                 nColorsUsed++;
194             }
195         }
196     }
197
198     if (fprintf(fXPMFile, "/* XPM */\n/* %s */\nstatic char *icon[] = {\n", comment) <= 0)
199         goto error;
200     if (fprintf(fXPMFile, "\"%d %d %d %d\",\n",
201                 (int) pIcon->bmiHeader.biWidth, nHeight, nColorsUsed + 1, 2) <=0)
202         goto error;
203
204     for (i = 0; i < nColors; i++) {
205         if (aColorUsed[i])
206             if (fprintf(fXPMFile, "\"%.2X c #%.2X%.2X%.2X\",\n", i, pIcon->bmiColors[i].rgbRed,
207                         pIcon->bmiColors[i].rgbGreen, pIcon->bmiColors[i].rgbBlue) <= 0)
208                 goto error;
209     }
210     if (fprintf(fXPMFile, "\"   c None\"") <= 0)
211         goto error;
212
213     for (i = 0; i < nHeight; i++)
214     {
215         if (fprintf(fXPMFile, ",\n\"") <= 0)
216             goto error;
217         for (j = 0; j < pIcon->bmiHeader.biWidth; j++)
218         {
219             if MASK(j,i)
220                 {
221                     if (fprintf(fXPMFile, "  ") <= 0)
222                         goto error;
223                 }
224             else
225                 if (fprintf(fXPMFile, "%.2X", COLOR(j,i)) <= 0)
226                     goto error;
227         }
228         if (fprintf(fXPMFile, "\"") <= 0)
229             goto error;
230     }
231     if (fprintf(fXPMFile, "};\n") <= 0)
232         goto error;
233
234 #undef MASK
235 #undef COLOR
236
237     free(comment);
238     fclose(fXPMFile);
239     return TRUE;
240
241  error:
242     free(comment);
243     fclose(fXPMFile);
244     unlink( szXPMFileName );
245     return FALSE;
246 }
247
248 static BOOL CALLBACK EnumResNameProc(HMODULE hModule, LPCWSTR lpszType, LPWSTR lpszName, LONG_PTR lParam)
249 {
250     ENUMRESSTRUCT *sEnumRes = (ENUMRESSTRUCT *) lParam;
251
252     if (!sEnumRes->nIndex--)
253     {
254         *sEnumRes->pResInfo = FindResourceW(hModule, lpszName, (LPCWSTR)RT_GROUP_ICON);
255         return FALSE;
256     }
257     else
258         return TRUE;
259 }
260
261 static BOOL extract_icon32(LPCWSTR szFileName, int nIndex, const char *szXPMFileName)
262 {
263     HMODULE hModule;
264     HRSRC hResInfo;
265     LPCWSTR lpName = NULL;
266     HGLOBAL hResData;
267     GRPICONDIR *pIconDir;
268     BITMAPINFO *pIcon;
269     ENUMRESSTRUCT sEnumRes;
270     int nMax = 0;
271     int nMaxBits = 0;
272     int i;
273     BOOL ret = FALSE;
274
275     hModule = LoadLibraryExW(szFileName, 0, LOAD_LIBRARY_AS_DATAFILE);
276     if (!hModule)
277     {
278         WINE_ERR("LoadLibraryExW (%s) failed, error %ld\n",
279                  wine_dbgstr_w(szFileName), GetLastError());
280         return FALSE;
281     }
282
283     if (nIndex < 0)
284     {
285         hResInfo = FindResourceW(hModule, MAKEINTRESOURCEW(-nIndex), (LPCWSTR)RT_GROUP_ICON);
286         WINE_TRACE("FindResourceW (%s) called, return %p, error %ld\n",
287                    wine_dbgstr_w(szFileName), hResInfo, GetLastError());
288     }
289     else
290     {
291         hResInfo=NULL;
292         sEnumRes.pResInfo = &hResInfo;
293         sEnumRes.nIndex = nIndex;
294         if (!EnumResourceNamesW(hModule, (LPCWSTR)RT_GROUP_ICON,
295                                 EnumResNameProc, (LONG_PTR)&sEnumRes))
296         {
297             WINE_TRACE("EnumResourceNamesW failed, error %ld\n", GetLastError());
298         }
299     }
300
301     if (hResInfo)
302     {
303         if ((hResData = LoadResource(hModule, hResInfo)))
304         {
305             if ((pIconDir = LockResource(hResData)))
306             {
307                 for (i = 0; i < pIconDir->idCount; i++)
308                 {
309                     if ((pIconDir->idEntries[i].wBitCount >= nMaxBits) && (pIconDir->idEntries[i].wBitCount <= 8))
310                     {
311                         nMaxBits = pIconDir->idEntries[i].wBitCount;
312
313                         if ((pIconDir->idEntries[i].bHeight * pIconDir->idEntries[i].bWidth) >= nMax)
314                         {
315                             lpName = MAKEINTRESOURCEW(pIconDir->idEntries[i].nID);
316                             nMax = pIconDir->idEntries[i].bHeight * pIconDir->idEntries[i].bWidth;
317                         }
318                     }               
319                 }
320             }
321
322             FreeResource(hResData);
323         }
324     }
325     else
326     {
327         WINE_ERR("found no icon\n");
328         FreeLibrary(hModule);
329         return FALSE;
330     }
331  
332     if ((hResInfo = FindResourceW(hModule, lpName, (LPCWSTR)RT_ICON)))
333     {
334         if ((hResData = LoadResource(hModule, hResInfo)))
335         {
336             if ((pIcon = LockResource(hResData)))
337             {
338                 if(SaveIconResAsXPM(pIcon, szXPMFileName, szFileName))
339                     ret = TRUE;
340             }
341
342             FreeResource(hResData);
343         }
344     }
345
346     FreeLibrary(hModule);
347     return ret;
348 }
349
350 static BOOL ExtractFromEXEDLL(LPCWSTR szFileName, int nIndex, const char *szXPMFileName)
351 {
352     if (!extract_icon32(szFileName, nIndex, szXPMFileName) /*&&
353         !extract_icon16(szFileName, szXPMFileName)*/)
354         return FALSE;
355     return TRUE;
356 }
357
358 static int ExtractFromICO(LPCWSTR szFileName, const char *szXPMFileName)
359 {
360     FILE *fICOFile;
361     ICONDIR iconDir;
362     ICONDIRENTRY *pIconDirEntry;
363     int nMax = 0;
364     int nIndex = 0;
365     void *pIcon;
366     int i;
367     char *filename;
368
369     filename = wine_get_unix_file_name(szFileName);
370     if (!(fICOFile = fopen(filename, "r")))
371     {
372         WINE_TRACE("unable to open '%s' for reading: %s\n", filename, strerror(errno));
373         goto error1;
374     }
375
376     if (fread(&iconDir, sizeof (ICONDIR), 1, fICOFile) != 1)
377         goto error2;
378     if ((iconDir.idReserved != 0) || (iconDir.idType != 1))
379         goto error2;
380
381     if ((pIconDirEntry = malloc(iconDir.idCount * sizeof (ICONDIRENTRY))) == NULL)
382         goto error2;
383     if (fread(pIconDirEntry, sizeof (ICONDIRENTRY), iconDir.idCount, fICOFile) != iconDir.idCount)
384         goto error3;
385
386     for (i = 0; i < iconDir.idCount; i++)
387         if ((pIconDirEntry[i].bHeight * pIconDirEntry[i].bWidth) > nMax)
388         {
389             nIndex = i;
390             nMax = pIconDirEntry[i].bHeight * pIconDirEntry[i].bWidth;
391         }
392     if ((pIcon = malloc(pIconDirEntry[nIndex].dwBytesInRes)) == NULL)
393         goto error3;
394     if (fseek(fICOFile, pIconDirEntry[nIndex].dwImageOffset, SEEK_SET))
395         goto error4;
396     if (fread(pIcon, pIconDirEntry[nIndex].dwBytesInRes, 1, fICOFile) != 1)
397         goto error4;
398
399     if(!SaveIconResAsXPM(pIcon, szXPMFileName, szFileName))
400         goto error4;
401
402     free(pIcon);
403     free(pIconDirEntry);
404     fclose(fICOFile);
405     HeapFree(GetProcessHeap(), 0, filename);
406     return 1;
407
408  error4:
409     free(pIcon);
410  error3:
411     free(pIconDirEntry);
412  error2:
413     fclose(fICOFile);
414  error1:
415     HeapFree(GetProcessHeap(), 0, filename);
416     return 0;
417 }
418
419 static BOOL create_default_icon( const char *filename, const char* comment )
420 {
421     FILE *fXPM;
422     unsigned int i;
423
424     if (!(fXPM = fopen(filename, "w"))) return FALSE;
425     if (fprintf(fXPM, "/* XPM */\n/* %s */\nstatic char * icon[] = {", comment) <= 0)
426         goto error;
427     for (i = 0; i < sizeof(wine_xpm)/sizeof(wine_xpm[0]); i++) {
428         if (fprintf( fXPM, "\n\"%s\",", wine_xpm[i]) <= 0)
429             goto error;
430     }
431     if (fprintf( fXPM, "};\n" ) <=0)
432         goto error;
433     fclose( fXPM );
434     return TRUE;
435  error:
436     fclose( fXPM );
437     unlink( filename );
438     return FALSE;
439
440 }
441
442 static unsigned short crc16(const char* string)
443 {
444     unsigned short crc = 0;
445     int i, j, xor_poly;
446
447     for (i = 0; string[i] != 0; i++)
448     {
449         char c = string[i];
450         for (j = 0; j < 8; c >>= 1, j++)
451         {
452             xor_poly = (c ^ crc) & 1;
453             crc >>= 1;
454             if (xor_poly)
455                 crc ^= 0xa001;
456         }
457     }
458     return crc;
459 }
460
461 /* extract an icon from an exe or icon file; helper for IPersistFile_fnSave */
462 static char *extract_icon( LPCWSTR path, int index)
463 {
464     int nodefault = 1;
465     unsigned short crc;
466     char *iconsdir, *ico_path, *ico_name, *xpm_path;
467     char* s;
468     HKEY hkey;
469     int n;
470
471     /* Where should we save the icon? */
472     WINE_TRACE("path=[%s] index=%d\n", wine_dbgstr_w(path), index);
473     iconsdir=NULL;  /* Default is no icon */
474     /* @@ Wine registry key: HKCU\Software\Wine\WineMenuBuilder */
475     if (!RegOpenKeyA( HKEY_CURRENT_USER, "Software\\Wine\\WineMenuBuilder", &hkey ))
476     {
477         static const WCHAR IconsDirW[] = {'I','c','o','n','s','D','i','r',0};
478         LPWSTR iconsdirW;
479         DWORD size = 0;
480
481         if (!RegQueryValueExW(hkey, IconsDirW, 0, NULL, NULL, &size))
482         {
483             iconsdirW = HeapAlloc(GetProcessHeap(), 0, size);
484             RegQueryValueExW(hkey, IconsDirW, 0, NULL, (LPBYTE)iconsdirW, &size);
485
486             if (!(iconsdir = wine_get_unix_file_name(iconsdirW)))
487             {
488                 int n = WideCharToMultiByte(CP_UNIXCP, 0, iconsdirW, -1, NULL, 0, NULL, NULL);
489                 iconsdir = HeapAlloc(GetProcessHeap(), 0, n);
490                 WideCharToMultiByte(CP_UNIXCP, 0, iconsdirW, -1, iconsdir, n, NULL, NULL);
491             }
492             HeapFree(GetProcessHeap(), 0, iconsdirW);
493         }
494         RegCloseKey( hkey );
495     }
496
497     if (!iconsdir)
498     {
499         WCHAR path[MAX_PATH];
500         if (GetTempPathW(MAX_PATH, path))
501             iconsdir = wine_get_unix_file_name(path);
502         if (!iconsdir)
503         {
504             WINE_TRACE("no IconsDir\n");
505             return NULL;  /* No icon created */
506         }
507     }
508     
509     if (!*iconsdir)
510     {
511         WINE_TRACE("icon generation disabled\n");
512         HeapFree(GetProcessHeap(), 0, iconsdir);
513         return NULL;  /* No icon created */
514     }
515
516     /* If icon path begins with a '*' then this is a deferred call */
517     if (path[0] == '*')
518     {
519         path++;
520         nodefault = 0;
521     }
522
523     /* Determine the icon base name */
524     n = WideCharToMultiByte(CP_UNIXCP, 0, path, -1, NULL, 0, NULL, NULL);
525     ico_path = HeapAlloc(GetProcessHeap(), 0, n);
526     WideCharToMultiByte(CP_UNIXCP, 0, path, -1, ico_path, n, NULL, NULL);
527     s=ico_name=ico_path;
528     while (*s!='\0') {
529         if (*s=='/' || *s=='\\') {
530             *s='\\';
531             ico_name=s;
532         } else {
533             *s=tolower(*s);
534         }
535         s++;
536     }
537     if (*ico_name=='\\') *ico_name++='\0';
538     s=strrchr(ico_name,'.');
539     if (s) *s='\0';
540
541     /* Compute the source-path hash */
542     crc=crc16(ico_path);
543
544     /* Try to treat the source file as an exe */
545     xpm_path=HeapAlloc(GetProcessHeap(), 0, strlen(iconsdir)+1+4+1+strlen(ico_name)+1+12+1+3);
546     sprintf(xpm_path,"%s/%04x_%s.%d.xpm",iconsdir,crc,ico_name,index);
547     if (ExtractFromEXEDLL( path, index, xpm_path ))
548         goto end;
549
550     /* Must be something else, ignore the index in that case */
551     sprintf(xpm_path,"%s/%04x_%s.xpm",iconsdir,crc,ico_name);
552     if (ExtractFromICO( path, xpm_path))
553         goto end;
554     if (!nodefault)
555         if (create_default_icon( xpm_path, ico_path ))
556             goto end;
557
558     HeapFree( GetProcessHeap(), 0, xpm_path );
559     xpm_path=NULL;
560
561  end:
562     HeapFree(GetProcessHeap(), 0, iconsdir);
563     HeapFree(GetProcessHeap(), 0, ico_path);
564     return xpm_path;
565 }
566
567 static BOOL DeferToRunOnce(LPWSTR link)
568 {
569     HKEY hkey;
570     LONG r, len;
571     static const WCHAR szRunOnce[] = {
572         'S','o','f','t','w','a','r','e','\\',
573         'M','i','c','r','o','s','o','f','t','\\',
574         'W','i','n','d','o','w','s','\\',
575         'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
576         'R','u','n','O','n','c','e',0
577     };
578     static const WCHAR szFormat[] = { '%','s',' ','"','%','s','"',0 };
579     LPWSTR buffer;
580     WCHAR szExecutable[MAX_PATH];
581
582     WINE_TRACE( "Deferring icon creation to reboot.\n");
583
584     len = GetModuleFileNameW( 0, szExecutable, MAX_PATH );
585     if (!len || len >= MAX_PATH) return FALSE;
586
587     len = ( lstrlenW( link ) + lstrlenW( szExecutable ) + 4)*sizeof(WCHAR);
588     buffer = HeapAlloc( GetProcessHeap(), 0, len );
589     if( !buffer )
590         return FALSE;
591
592     wsprintfW( buffer, szFormat, szExecutable, link );
593
594     r = RegCreateKeyExW(HKEY_LOCAL_MACHINE, szRunOnce, 0,
595               NULL, REG_OPTION_NON_VOLATILE, KEY_WRITE, NULL, &hkey, NULL);
596     if ( r == ERROR_SUCCESS )
597     {
598         r = RegSetValueExW(hkey, link, 0, REG_SZ,
599                    (LPBYTE) buffer, (lstrlenW(buffer) + 1)*sizeof(WCHAR));
600         RegCloseKey(hkey);
601     }
602     HeapFree(GetProcessHeap(), 0, buffer);
603
604     return ! r;
605 }
606
607 /* This escapes \ in filenames */
608 static LPSTR escape(LPCWSTR arg)
609 {
610     LPSTR narg, x;
611     LPCWSTR esc;
612     int len = 0, n;
613
614     esc = arg;
615     while((esc = strchrW(esc, '\\')))
616     {
617         esc++;
618         len++;
619     }
620
621     len += WideCharToMultiByte(CP_UNIXCP, 0, arg, -1, NULL, 0, NULL, NULL);
622     narg = HeapAlloc(GetProcessHeap(), 0, len);
623
624     x = narg;
625     while (*arg)
626     {
627         n = WideCharToMultiByte(CP_UNIXCP, 0, arg, 1, x, len, NULL, NULL);
628         x += n;
629         len -= n;
630         if (*arg == '\\')
631             *x++='\\'; /* escape \ */
632         arg++;
633     }
634     *x = 0;
635     return narg;
636 }
637
638 static int fork_and_wait( const char *linker, const char *link_name, const char *path,
639                           int desktop, const char *args, const char *icon_name,
640                           const char *workdir, const char *description )
641 {
642     int pos = 0;
643     const char *argv[20];
644     int retcode;
645
646     WINE_TRACE( "linker app='%s' link='%s' mode=%s "
647         "path='%s' args='%s' icon='%s' workdir='%s' descr='%s'\n",
648         linker, link_name, desktop ? "desktop" : "menu",
649         path, args, icon_name, workdir, description  );
650
651     argv[pos++] = linker ;
652     argv[pos++] = "--link";
653     argv[pos++] = link_name;
654     argv[pos++] = "--path";
655     argv[pos++] = path;
656     argv[pos++] = desktop ? "--desktop" : "--menu";
657     if (args && strlen(args))
658     {
659         argv[pos++] = "--args";
660         argv[pos++] = args;
661     }
662     if (icon_name)
663     {
664         argv[pos++] = "--icon";
665         argv[pos++] = icon_name;
666     }
667     if (workdir && strlen(workdir))
668     {
669         argv[pos++] = "--workdir";
670         argv[pos++] = workdir;
671     }
672     if (description && strlen(description))
673     {
674         argv[pos++] = "--descr";
675         argv[pos++] = description;
676     }
677     argv[pos] = NULL;
678
679     retcode=spawnvp( _P_WAIT, linker, argv );
680     if (retcode!=0)
681         WINE_ERR("%s returned %d\n",linker,retcode);
682     return retcode;
683 }
684
685 /* Return a heap-allocated copy of the unix format difference between the two
686  * Windows-format paths.
687  * locn is the owning location
688  * link is within locn
689  */
690 static char *relative_path( LPCWSTR link, LPCWSTR locn )
691 {
692     char *unix_locn, *unix_link;
693     char *relative = NULL;
694
695     unix_locn = wine_get_unix_file_name(locn);
696     unix_link = wine_get_unix_file_name(link);
697     if (unix_locn && unix_link)
698     {
699         size_t len_unix_locn, len_unix_link;
700         len_unix_locn = strlen (unix_locn);
701         len_unix_link = strlen (unix_link);
702         if (len_unix_locn < len_unix_link && memcmp (unix_locn, unix_link, len_unix_locn) == 0 && unix_link[len_unix_locn] == '/')
703         {
704             size_t len_rel;
705             char *p = strrchr (unix_link + len_unix_locn, '/');
706             p = strrchr (p, '.');
707             if (p)
708             {
709                 *p = '\0';
710                 len_unix_link = p - unix_link;
711             }
712             len_rel = len_unix_link - len_unix_locn;
713             relative = HeapAlloc(GetProcessHeap(), 0, len_rel);
714             if (relative)
715             {
716                 memcpy (relative, unix_link + len_unix_locn + 1, len_rel);
717             }
718         }
719     }
720     if (!relative)
721         WINE_WARN("Could not separate the relative link path of %s in %s\n", wine_dbgstr_w(link), wine_dbgstr_w(locn));
722     HeapFree(GetProcessHeap(), 0, unix_locn);
723     HeapFree(GetProcessHeap(), 0, unix_link);
724     return relative;
725 }
726
727 /***********************************************************************
728  *
729  *           GetLinkLocation
730  *
731  * returns TRUE if successful
732  * *loc will contain CS_DESKTOPDIRECTORY, CS_STARTMENU, CS_STARTUP etc.
733  * *relative will contain the address of a heap-allocated copy of the portion
734  * of the filename that is within the specified location, in unix form
735  */
736 static BOOL GetLinkLocation( LPCWSTR linkfile, DWORD *loc, char **relative )
737 {
738     WCHAR filename[MAX_PATH], buffer[MAX_PATH];
739     DWORD len, i, r, filelen;
740     const DWORD locations[] = {
741         CSIDL_STARTUP, CSIDL_DESKTOPDIRECTORY, CSIDL_STARTMENU,
742         CSIDL_COMMON_STARTUP, CSIDL_COMMON_DESKTOPDIRECTORY,
743         CSIDL_COMMON_STARTMENU };
744
745     WINE_TRACE("%s\n", wine_dbgstr_w(linkfile));
746     filelen=GetFullPathNameW( linkfile, MAX_PATH, filename, NULL );
747     if (filelen==0 || filelen>MAX_PATH)
748         return FALSE;
749
750     WINE_TRACE("%s\n", wine_dbgstr_w(filename));
751
752     for( i=0; i<sizeof(locations)/sizeof(locations[0]); i++ )
753     {
754         if (!SHGetSpecialFolderPathW( 0, buffer, locations[i], FALSE ))
755             continue;
756
757         len = lstrlenW(buffer);
758         if (len >= MAX_PATH)
759             continue; /* We've just trashed memory! Hopefully we are OK */
760
761         if (len > filelen || filename[len]!='\\')
762             continue;
763         /* do a lstrcmpinW */
764         filename[len] = 0;
765         r = lstrcmpiW( filename, buffer );
766         filename[len] = '\\';
767         if ( r )
768             continue;
769
770         /* return the remainder of the string and link type */
771         *loc = locations[i];
772         *relative = relative_path (filename, buffer);
773         return (*relative != NULL);
774     }
775
776     return FALSE;
777 }
778
779 /* gets the target path directly or through MSI */
780 static HRESULT get_cmdline( IShellLinkW *sl, LPWSTR szPath, DWORD pathSize,
781                             LPWSTR szArgs, DWORD argsSize)
782 {
783     IShellLinkDataList *dl = NULL;
784     EXP_DARWIN_LINK *dar = NULL;
785     HRESULT hr;
786
787     szPath[0] = 0;
788     szArgs[0] = 0;
789
790     hr = IShellLinkW_GetPath( sl, szPath, pathSize, NULL, SLGP_RAWPATH );
791     if (hr == S_OK && szPath[0])
792     {
793         IShellLinkW_GetArguments( sl, szArgs, argsSize );
794         return hr;
795     }
796
797     hr = IShellLinkW_QueryInterface( sl, &IID_IShellLinkDataList, (LPVOID*) &dl );
798     if (FAILED(hr))
799         return hr;
800
801     hr = IShellLinkDataList_CopyDataBlock( dl, EXP_DARWIN_ID_SIG, (LPVOID*) &dar );
802     if (SUCCEEDED(hr))
803     {
804         WCHAR* szCmdline;
805         DWORD cmdSize;
806
807         cmdSize=0;
808         hr = CommandLineFromMsiDescriptor( dar->szwDarwinID, NULL, &cmdSize );
809         if (hr == ERROR_SUCCESS)
810         {
811             cmdSize++;
812             szCmdline = HeapAlloc( GetProcessHeap(), 0, cmdSize*sizeof(WCHAR) );
813             hr = CommandLineFromMsiDescriptor( dar->szwDarwinID, szCmdline, &cmdSize );
814             WINE_TRACE("      command    : %s\n", wine_dbgstr_w(szCmdline));
815             if (hr == ERROR_SUCCESS)
816             {
817                 WCHAR *s, *d;
818                 int bcount, in_quotes;
819
820                 /* Extract the application path */
821                 bcount=0;
822                 in_quotes=0;
823                 s=szCmdline;
824                 d=szPath;
825                 while (*s)
826                 {
827                     if ((*s==0x0009 || *s==0x0020) && !in_quotes)
828                     {
829                         /* skip the remaining spaces */
830                         do {
831                             s++;
832                         } while (*s==0x0009 || *s==0x0020);
833                         break;
834                     }
835                     else if (*s==0x005c)
836                     {
837                         /* '\\' */
838                         *d++=*s++;
839                         bcount++;
840                     }
841                     else if (*s==0x0022)
842                     {
843                         /* '"' */
844                         if ((bcount & 1)==0)
845                         {
846                             /* Preceded by an even number of '\', this is
847                              * half that number of '\', plus a quote which
848                              * we erase.
849                              */
850                             d-=bcount/2;
851                             in_quotes=!in_quotes;
852                             s++;
853                         }
854                         else
855                         {
856                             /* Preceded by an odd number of '\', this is
857                              * half that number of '\' followed by a '"'
858                              */
859                             d=d-bcount/2-1;
860                             *d++='"';
861                             s++;
862                         }
863                         bcount=0;
864                     }
865                     else
866                     {
867                         /* a regular character */
868                         *d++=*s++;
869                         bcount=0;
870                     }
871                     if ((d-szPath) == pathSize)
872                     {
873                         /* Keep processing the path till we get to the
874                          * arguments, but 'stand still'
875                          */
876                         d--;
877                     }
878                 }
879                 /* Close the application path */
880                 *d=0;
881
882                 lstrcpynW(szArgs, s, argsSize);
883             }
884             HeapFree( GetProcessHeap(), 0, szCmdline );
885         }
886         LocalFree( dar );
887     }
888
889     IShellLinkDataList_Release( dl );
890     return hr;
891 }
892
893 static BOOL InvokeShellLinker( IShellLinkW *sl, LPCWSTR link, BOOL bAgain )
894 {
895     char *link_name = NULL, *icon_name = NULL, *work_dir = NULL;
896     char *escaped_path = NULL, *escaped_args = NULL, *escaped_description = NULL;
897     WCHAR szDescription[INFOTIPSIZE], szPath[MAX_PATH], szWorkDir[MAX_PATH];
898     WCHAR szArgs[INFOTIPSIZE], szIconPath[MAX_PATH];
899     int iIconId = 0, r = -1;
900     DWORD csidl = -1;
901
902     if ( !link )
903     {
904         WINE_ERR("Link name is null\n");
905         return FALSE;
906     }
907
908     if( !GetLinkLocation( link, &csidl, &link_name ) )
909     {
910         WINE_WARN("Unknown link location '%s'. Ignoring.\n",wine_dbgstr_w(link));
911         return TRUE;
912     }
913     if (!in_desktop_dir(csidl) && !in_startmenu(csidl))
914     {
915         WINE_WARN("Not under desktop or start menu. Ignoring.\n");
916         return TRUE;
917     }
918     WINE_TRACE("Link       : %s\n", wine_dbgstr_a(link_name));
919
920     szWorkDir[0] = 0;
921     IShellLinkW_GetWorkingDirectory( sl, szWorkDir, MAX_PATH );
922     WINE_TRACE("workdir    : %s\n", wine_dbgstr_w(szWorkDir));
923
924     szDescription[0] = 0;
925     IShellLinkW_GetDescription( sl, szDescription, INFOTIPSIZE );
926     WINE_TRACE("description: %s\n", wine_dbgstr_w(szDescription));
927
928     get_cmdline( sl, szPath, MAX_PATH, szArgs, INFOTIPSIZE);
929     WINE_TRACE("path       : %s\n", wine_dbgstr_w(szPath));
930     WINE_TRACE("args       : %s\n", wine_dbgstr_w(szArgs));
931
932     szIconPath[0] = 0;
933     IShellLinkW_GetIconLocation( sl, szIconPath, MAX_PATH, &iIconId );
934     WINE_TRACE("icon file  : %s\n", wine_dbgstr_w(szIconPath) );
935
936     if( !szPath[0] )
937     {
938         LPITEMIDLIST pidl = NULL;
939         IShellLinkW_GetIDList( sl, &pidl );
940         if( pidl && SHGetPathFromIDListW( pidl, szPath ) )
941             WINE_TRACE("pidl path  : %s\n", wine_dbgstr_w(szPath));
942     }
943
944     /* extract the icon */
945     if( szIconPath[0] )
946         icon_name = extract_icon( szIconPath , iIconId );
947     else
948         icon_name = extract_icon( szPath, iIconId );
949
950     /* fail - try once again at reboot time */
951     if( !icon_name )
952     {
953         if (bAgain)
954         {
955             WINE_WARN("Unable to extract icon, deferring.\n");
956             goto cleanup;
957         }
958         WINE_ERR("failed to extract icon.\n");
959     }
960
961     /* check the path */
962     if( szPath[0] )
963     {
964         static const WCHAR exeW[] = {'.','e','x','e',0};
965         WCHAR *p;
966
967         /* check for .exe extension */
968         if (!(p = strrchrW( szPath, '.' ))) return FALSE;
969         if (strchrW( p, '\\' ) || strchrW( p, '/' )) return FALSE;
970         if (lstrcmpiW( p, exeW )) return FALSE;
971
972         /* convert app working dir */
973         if (szWorkDir[0])
974             work_dir = wine_get_unix_file_name( szWorkDir );
975     }
976     else
977     {
978         static const WCHAR startW[] = {
979             '\\','c','o','m','m','a','n','d',
980             '\\','s','t','a','r','t','.','e','x','e',0};
981
982         /* if there's no path... try run the link itself */
983         lstrcpynW(szArgs, link, MAX_PATH);
984         GetWindowsDirectoryW(szPath, MAX_PATH);
985         lstrcatW(szPath, startW);
986     }
987
988     /* escape the path and parameters */
989     escaped_path = escape(szPath);
990     escaped_args = escape(szArgs);
991     escaped_description = escape(szDescription);
992
993     r = fork_and_wait("wineshelllink", link_name, escaped_path,
994                       in_desktop_dir(csidl), escaped_args, icon_name,
995                       work_dir ? work_dir : "", escaped_description);
996
997 cleanup:
998     HeapFree( GetProcessHeap(), 0, icon_name );
999     HeapFree( GetProcessHeap(), 0, work_dir );
1000     HeapFree( GetProcessHeap(), 0, link_name );
1001     HeapFree( GetProcessHeap(), 0, escaped_args );
1002     HeapFree( GetProcessHeap(), 0, escaped_path );
1003     HeapFree( GetProcessHeap(), 0, escaped_description );
1004
1005     if (r)
1006     {
1007         WINE_ERR("failed to fork and exec wineshelllink\n" );
1008         return FALSE;
1009     }
1010
1011     return TRUE;
1012 }
1013
1014
1015 static BOOL Process_Link( LPCWSTR linkname, BOOL bAgain )
1016 {
1017     IShellLinkW *sl;
1018     IPersistFile *pf;
1019     HRESULT r;
1020     WCHAR fullname[MAX_PATH];
1021     DWORD len;
1022
1023     WINE_TRACE("%s, again %d\n", wine_dbgstr_w(linkname), bAgain);
1024
1025     if( !linkname[0] )
1026     {
1027         WINE_ERR("link name missing\n");
1028         return 1;
1029     }
1030
1031     len=GetFullPathNameW( linkname, MAX_PATH, fullname, NULL );
1032     if (len==0 || len>MAX_PATH)
1033     {
1034         WINE_ERR("couldn't get full path of link file\n");
1035         return 1;
1036     }
1037
1038     r = CoInitialize( NULL );
1039     if( FAILED( r ) )
1040     {
1041         WINE_ERR("CoInitialize failed\n");
1042         return 1;
1043     }
1044
1045     r = CoCreateInstance( &CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER,
1046                           &IID_IShellLinkW, (LPVOID *) &sl );
1047     if( FAILED( r ) )
1048     {
1049         WINE_ERR("No IID_IShellLink\n");
1050         return 1;
1051     }
1052
1053     r = IShellLinkW_QueryInterface( sl, &IID_IPersistFile, (LPVOID*) &pf );
1054     if( FAILED( r ) )
1055     {
1056         WINE_ERR("No IID_IPersistFile\n");
1057         return 1;
1058     }
1059
1060     r = IPersistFile_Load( pf, fullname, STGM_READ );
1061     if( SUCCEEDED( r ) )
1062     {
1063         /* If something fails (eg. Couldn't extract icon)
1064          * defer this menu entry to reboot via runonce
1065          */
1066         if( ! InvokeShellLinker( sl, fullname, bAgain ) && bAgain )
1067             DeferToRunOnce( fullname );
1068         else
1069             WINE_TRACE("Success.\n");
1070     }
1071
1072     IPersistFile_Release( pf );
1073     IShellLinkW_Release( sl );
1074
1075     CoUninitialize();
1076
1077     return !r;
1078 }
1079
1080
1081 static CHAR *next_token( LPSTR *p )
1082 {
1083     LPSTR token = NULL, t = *p;
1084
1085     if( !t )
1086         return NULL;
1087
1088     while( t && !token )
1089     {
1090         switch( *t )
1091         {
1092         case ' ':
1093             t++;
1094             continue;
1095         case '"':
1096             /* unquote the token */
1097             token = ++t;
1098             t = strchr( token, '"' );
1099             if( t )
1100                  *t++ = 0;
1101             break;
1102         case 0:
1103             t = NULL;
1104             break;
1105         default:
1106             token = t;
1107             t = strchr( token, ' ' );
1108             if( t )
1109                  *t++ = 0;
1110             break;
1111         }
1112     }
1113     *p = t;
1114     return token;
1115 }
1116
1117 /***********************************************************************
1118  *
1119  *           WinMain
1120  */
1121 int PASCAL WinMain (HINSTANCE hInstance, HINSTANCE prev, LPSTR cmdline, int show)
1122 {
1123     LPSTR token = NULL, p;
1124     BOOL bAgain = FALSE;
1125     HANDLE hsem = CreateSemaphoreA( NULL, 1, 1, "winemenubuilder_semaphore");
1126     int ret = 0;
1127
1128     /* running multiple instances of wineshelllink
1129        at the same time may be dangerous */
1130     if( WAIT_OBJECT_0 != WaitForSingleObject( hsem, INFINITE ) )
1131     {
1132         CloseHandle(hsem);
1133         return FALSE;
1134     }
1135
1136     for( p = cmdline; p && *p; )
1137     {
1138         token = next_token( &p );
1139         if( !token )
1140             break;
1141         if( !lstrcmpA( token, "-r" ) )
1142             bAgain = TRUE;
1143         else if( token[0] == '-' )
1144         {
1145             WINE_ERR( "unknown option %s\n",token);
1146         }
1147         else
1148         {
1149             WCHAR link[MAX_PATH];
1150
1151             MultiByteToWideChar( CP_ACP, 0, token, -1, link, sizeof(link)/sizeof(WCHAR) );
1152             if( !Process_Link( link, bAgain ) )
1153             {
1154                 WINE_ERR( "failed to build menu item for %s\n",token);
1155                 ret = 1;
1156             }
1157         }
1158     }
1159
1160     ReleaseSemaphore( hsem, 1, NULL );
1161     CloseHandle( hsem );
1162
1163     return ret;
1164 }