2 * Helper program to build unix menu entries
4 * Copyright 1997 Marcus Meissner
5 * Copyright 1998 Juergen Schmied
6 * Copyright 2003 Mike McCormack for CodeWeavers
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 * This program will read a Windows shortcut file using the IShellLink
24 * interface, then invoke wineshelllink with the appropriate arguments
25 * to create a KDE/Gnome menu entry for the shortcut.
27 * winemenubuilder [ -r ] <shortcut.lnk>
29 * If the -r parameter is passed, and the shortcut cannot be created,
30 * this program will add RunOnce entry to invoke itself at the next
31 * reboot. This covers the case when a ShortCut is created before the
32 * executable containing its icon.
37 #include "wine/port.h"
57 #include "wine/debug.h"
60 WINE_DEFAULT_DEBUG_CHANNEL(menubuilder);
62 #define in_desktop_dir(csidl) ((csidl)==CSIDL_DESKTOPDIRECTORY || \
63 (csidl)==CSIDL_COMMON_DESKTOPDIRECTORY)
64 #define in_startmenu(csidl) ((csidl)==CSIDL_STARTMENU || \
65 (csidl)==CSIDL_COMMON_STARTMENU)
67 /* link file formats */
88 GRPICONDIRENTRY idEntries[1];
120 /* Icon extraction routines
122 * FIXME: should use PrivateExtractIcons and friends
123 * FIXME: should not use stdio
126 static BOOL SaveIconResAsXPM(const BITMAPINFO *pIcon, const char *szXPMFileName, const char *comment)
136 BOOL aColorUsed[256] = {0};
140 if (!((pIcon->bmiHeader.biBitCount == 4) || (pIcon->bmiHeader.biBitCount == 8)))
143 if (!(fXPMFile = fopen(szXPMFileName, "w")))
146 nHeight = pIcon->bmiHeader.biHeight / 2;
147 nXORWidthBytes = 4 * ((pIcon->bmiHeader.biWidth * pIcon->bmiHeader.biBitCount / 32)
148 + ((pIcon->bmiHeader.biWidth * pIcon->bmiHeader.biBitCount % 32) > 0));
149 nANDWidthBytes = 4 * ((pIcon->bmiHeader.biWidth / 32)
150 + ((pIcon->bmiHeader.biWidth % 32) > 0));
151 b8BitColors = pIcon->bmiHeader.biBitCount == 8;
152 nColors = pIcon->bmiHeader.biClrUsed ? pIcon->bmiHeader.biClrUsed
153 : 1 << pIcon->bmiHeader.biBitCount;
154 pXOR = (const BYTE*) pIcon + sizeof (BITMAPINFOHEADER) + (nColors * sizeof (RGBQUAD));
155 pAND = pXOR + nHeight * nXORWidthBytes;
157 #define MASK(x,y) (pAND[(x) / 8 + (nHeight - (y) - 1) * nANDWidthBytes] & (1 << (7 - (x) % 8)))
158 #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)
160 for (i = 0; i < nHeight; i++) {
161 for (j = 0; j < pIcon->bmiHeader.biWidth; j++) {
162 if (!aColorUsed[COLOR(j,i)] && !MASK(j,i))
164 aColorUsed[COLOR(j,i)] = TRUE;
170 if (fprintf(fXPMFile, "/* XPM */\n/* %s */\nstatic char *icon[] = {\n", comment) <= 0)
172 if (fprintf(fXPMFile, "\"%d %d %d %d\",\n",
173 (int) pIcon->bmiHeader.biWidth, nHeight, nColorsUsed + 1, 2) <=0)
176 for (i = 0; i < nColors; i++) {
178 if (fprintf(fXPMFile, "\"%.2X c #%.2X%.2X%.2X\",\n", i, pIcon->bmiColors[i].rgbRed,
179 pIcon->bmiColors[i].rgbGreen, pIcon->bmiColors[i].rgbBlue) <= 0)
182 if (fprintf(fXPMFile, "\" c None\"") <= 0)
185 for (i = 0; i < nHeight; i++)
187 if (fprintf(fXPMFile, ",\n\"") <= 0)
189 for (j = 0; j < pIcon->bmiHeader.biWidth; j++)
193 if (fprintf(fXPMFile, " ") <= 0)
197 if (fprintf(fXPMFile, "%.2X", COLOR(j,i)) <= 0)
200 if (fprintf(fXPMFile, "\"") <= 0)
203 if (fprintf(fXPMFile, "};\n") <= 0)
214 unlink( szXPMFileName );
218 static BOOL CALLBACK EnumResNameProc(HMODULE hModule, LPCSTR lpszType, LPSTR lpszName, LONG lParam)
220 ENUMRESSTRUCT *sEnumRes = (ENUMRESSTRUCT *) lParam;
222 if (!sEnumRes->nIndex--)
224 *sEnumRes->pResInfo = FindResourceA(hModule, lpszName, (LPSTR)RT_GROUP_ICON);
231 static BOOL ExtractFromEXEDLL(const char *szFileName, int nIndex, const char *szXPMFileName)
237 GRPICONDIR *pIconDir;
239 ENUMRESSTRUCT sEnumRes;
244 if (!(hModule = LoadLibraryExA(szFileName, 0, LOAD_LIBRARY_AS_DATAFILE)))
246 WINE_ERR("LoadLibraryExA (%s) failed, error %ld\n", szFileName, GetLastError());
252 hResInfo = FindResourceA(hModule, MAKEINTRESOURCEA(-nIndex), (LPSTR)RT_GROUP_ICON);
253 WINE_ERR("FindResourceA (%s) called, return %p, error %ld\n", szFileName, hResInfo, GetLastError());
258 sEnumRes.pResInfo = &hResInfo;
259 sEnumRes.nIndex = nIndex;
260 EnumResourceNamesA(hModule, (LPSTR)RT_GROUP_ICON, &EnumResNameProc, (LONG) &sEnumRes);
265 WINE_ERR("ExtractFromEXEDLL failed, error %ld\n", GetLastError());
269 if (!(hResData = LoadResource(hModule, hResInfo)))
271 WINE_ERR("LoadResource failed, error %ld\n", GetLastError());
274 if (!(pIconDir = LockResource(hResData)))
276 WINE_ERR("LockResource failed, error %ld\n", GetLastError());
280 for (i = 0; i < pIconDir->idCount; i++)
281 if ((pIconDir->idEntries[i].wBitCount >= nMaxBits) && (pIconDir->idEntries[i].wBitCount <= 8))
283 if (pIconDir->idEntries[i].wBitCount > nMaxBits)
285 nMaxBits = pIconDir->idEntries[i].wBitCount;
288 if ((pIconDir->idEntries[i].bHeight * pIconDir->idEntries[i].bWidth) > nMax)
290 lpName = MAKEINTRESOURCEA(pIconDir->idEntries[i].nID);
291 nMax = pIconDir->idEntries[i].bHeight * pIconDir->idEntries[i].bWidth;
295 FreeResource(hResData);
297 if (!(hResInfo = FindResourceA(hModule, lpName, (LPSTR)RT_ICON)))
299 WINE_ERR("Second FindResourceA failed, error %ld\n", GetLastError());
302 if (!(hResData = LoadResource(hModule, hResInfo)))
304 WINE_ERR("Second LoadResource failed, error %ld\n", GetLastError());
307 if (!(pIcon = LockResource(hResData)))
309 WINE_ERR("Second LockResource failed, error %ld\n", GetLastError());
313 if(!SaveIconResAsXPM(pIcon, szXPMFileName, szFileName))
315 WINE_ERR("Failed saving icon as XPM, error %ld\n", GetLastError());
319 FreeResource(hResData);
320 FreeLibrary(hModule);
325 FreeResource(hResData);
327 FreeLibrary(hModule);
332 /* get the Unix file name for a given path, allocating the string */
333 inline static char *get_unix_file_name( const char *dos )
335 WCHAR dosW[MAX_PATH];
337 MultiByteToWideChar(CP_ACP, 0, dos, -1, dosW, MAX_PATH);
338 return wine_get_unix_file_name( dosW );
341 static int ExtractFromICO(const char *szFileName, const char *szXPMFileName)
345 ICONDIRENTRY *pIconDirEntry;
352 filename = get_unix_file_name(szFileName);
353 if (!(fICOFile = fopen(filename, "r")))
356 if (fread(&iconDir, sizeof (ICONDIR), 1, fICOFile) != 1)
358 if ((iconDir.idReserved != 0) || (iconDir.idType != 1))
361 if ((pIconDirEntry = malloc(iconDir.idCount * sizeof (ICONDIRENTRY))) == NULL)
363 if (fread(pIconDirEntry, sizeof (ICONDIRENTRY), iconDir.idCount, fICOFile) != iconDir.idCount)
366 for (i = 0; i < iconDir.idCount; i++)
367 if ((pIconDirEntry[i].bHeight * pIconDirEntry[i].bWidth) > nMax)
370 nMax = pIconDirEntry[i].bHeight * pIconDirEntry[i].bWidth;
372 if ((pIcon = malloc(pIconDirEntry[nIndex].dwBytesInRes)) == NULL)
374 if (fseek(fICOFile, pIconDirEntry[nIndex].dwImageOffset, SEEK_SET))
376 if (fread(pIcon, pIconDirEntry[nIndex].dwBytesInRes, 1, fICOFile) != 1)
379 if(!SaveIconResAsXPM(pIcon, szXPMFileName, szFileName))
395 HeapFree(GetProcessHeap(), 0, filename);
399 static BOOL create_default_icon( const char *filename, const char* comment )
404 if (!(fXPM = fopen(filename, "w"))) return FALSE;
405 if (fprintf(fXPM, "/* XPM */\n/* %s */\nstatic char * icon[] = {", comment) <= 0)
407 for (i = 0; i < sizeof(wine_xpm)/sizeof(wine_xpm[0]); i++) {
408 if (fprintf( fXPM, "\n\"%s\",", wine_xpm[i]) <= 0)
411 if (fprintf( fXPM, "};\n" ) <=0)
422 static unsigned short crc16(const char* string)
424 unsigned short crc = 0;
427 for (i = 0; string[i] != 0; i++)
430 for (j = 0; j < 8; c >>= 1, j++)
432 xor_poly = (c ^ crc) & 1;
441 /* extract an icon from an exe or icon file; helper for IPersistFile_fnSave */
442 static char *extract_icon( const char *path, int index)
446 char *iconsdir, *ico_path, *ico_name, *xpm_path;
450 /* Where should we save the icon? */
451 WINE_TRACE("path=[%s] index=%d\n",path,index);
452 iconsdir=NULL; /* Default is no icon */
453 if (!RegOpenKeyA( HKEY_LOCAL_MACHINE, "Software\\Wine\\Wine\\Config\\Wine", &hkey ))
456 if (RegQueryValueExA(hkey, "IconsDir", 0, NULL, NULL, &size)==0) {
457 iconsdir = HeapAlloc(GetProcessHeap(), 0, size);
458 RegQueryValueExA(hkey, "IconsDir", 0, NULL, iconsdir, &size);
460 s=get_unix_file_name(iconsdir);
462 HeapFree(GetProcessHeap(), 0, iconsdir);
468 if (GetTempPath(sizeof(path),path)) {
469 s=get_unix_file_name(path);
477 if (iconsdir==NULL || *iconsdir=='\0')
479 HeapFree(GetProcessHeap(), 0, iconsdir);
480 return NULL; /* No icon created */
483 /* If icon path begins with a '*' then this is a deferred call */
490 /* Determine the icon base name */
491 ico_path=HeapAlloc(GetProcessHeap(), 0, lstrlenA(path)+1);
492 strcpy(ico_path, path);
495 if (*s=='/' || *s=='\\') {
503 if (*ico_name=='\\') *ico_name++='\0';
504 s=strrchr(ico_name,'.');
507 /* Compute the source-path hash */
510 /* Try to treat the source file as an exe */
511 xpm_path=HeapAlloc(GetProcessHeap(), 0, strlen(iconsdir)+1+4+1+strlen(ico_name)+1+12+1+3);
512 sprintf(xpm_path,"%s/%04x_%s.%d.xpm",iconsdir,crc,ico_name,index);
513 if (ExtractFromEXEDLL( path, index, xpm_path ))
516 /* Must be something else, ignore the index in that case */
517 sprintf(xpm_path,"%s/%04x_%s.xpm",iconsdir,crc,ico_name);
518 if (ExtractFromICO( path, xpm_path))
521 if (create_default_icon( xpm_path, path ))
524 HeapFree( GetProcessHeap(), 0, xpm_path );
528 HeapFree(GetProcessHeap(), 0, iconsdir);
529 HeapFree(GetProcessHeap(), 0, ico_path);
533 static BOOL DeferToRunOnce(LPWSTR link)
537 static const WCHAR szRunOnce[] = {
538 'S','o','f','t','w','a','r','e','\\',
539 'M','i','c','r','o','s','o','f','t','\\',
540 'W','i','n','d','o','w','s','\\',
541 'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
542 'R','u','n','O','n','c','e',0
544 static const WCHAR szFormat[] = { '%','s',' ','"','%','s','"',0 };
546 WCHAR szExecutable[MAX_PATH];
548 WINE_TRACE( "Deferring icon creation to reboot.\n");
550 len = GetModuleFileNameW( 0, szExecutable, MAX_PATH );
551 if (!len || len >= MAX_PATH) return FALSE;
553 len = ( lstrlenW( link ) + lstrlenW( szExecutable ) + 4)*sizeof(WCHAR);
554 buffer = HeapAlloc( GetProcessHeap(), 0, len );
558 wsprintfW( buffer, szFormat, szExecutable, link );
560 r = RegCreateKeyExW(HKEY_LOCAL_MACHINE, szRunOnce, 0,
561 NULL, REG_OPTION_NON_VOLATILE, KEY_WRITE, NULL, &hkey, NULL);
562 if ( r == ERROR_SUCCESS )
564 r = RegSetValueExW(hkey, link, 0, REG_SZ,
565 (LPBYTE) buffer, (lstrlenW(buffer) + 1)*sizeof(WCHAR));
568 HeapFree(GetProcessHeap(), 0, buffer);
573 /* This escapes \ in filenames */
578 narg = HeapAlloc(GetProcessHeap(),0,2*strlen(arg)+2);
583 *x++='\\'; /* escape \ */
590 static int fork_and_wait( char *linker, char *link_name, char *path,
591 int desktop, char *args, char *icon_name,
592 char *workdir, char *description )
595 const char *argv[20];
598 WINE_TRACE( "linker app='%s' link='%s' mode=%s "
599 "path='%s' args='%s' icon='%s' workdir='%s' descr='%s'\n",
600 linker, link_name, desktop ? "desktop" : "menu",
601 path, args, icon_name, workdir, description );
603 argv[pos++] = linker ;
604 argv[pos++] = "--link";
605 argv[pos++] = link_name;
606 argv[pos++] = "--path";
608 argv[pos++] = desktop ? "--desktop" : "--menu";
609 if (args && strlen(args))
611 argv[pos++] = "--args";
616 argv[pos++] = "--icon";
617 argv[pos++] = icon_name;
619 if (workdir && strlen(workdir))
621 argv[pos++] = "--workdir";
622 argv[pos++] = workdir;
624 if (description && strlen(description))
626 argv[pos++] = "--descr";
627 argv[pos++] = description;
631 retcode=spawnvp( _P_WAIT, linker, argv );
633 WINE_ERR("%s returned %d\n",linker,retcode);
637 static char *cleanup_link( LPCWSTR link )
642 /* make link name a Unix name -
643 strip leading slashes & remove extension */
644 while ( (*link == '\\') || (*link == '/' ) )
646 len = WideCharToMultiByte( CP_ACP, 0, link, -1, NULL, 0, NULL, NULL);
647 link_name = HeapAlloc( GetProcessHeap(), 0, len*sizeof (WCHAR) );
650 len = WideCharToMultiByte( CP_ACP, 0, link, -1, link_name, len, NULL, NULL);
651 for (p = link_name; *p; p++)
654 p = strrchr( link_name, '.' );
660 /***********************************************************************
664 * returns TRUE if successful
665 * *loc will contain CS_DESKTOPDIRECTORY, CS_STARTMENU, CS_STARTUP
667 static BOOL GetLinkLocation( LPCWSTR linkfile, DWORD *ofs, DWORD *loc )
669 WCHAR filename[MAX_PATH], buffer[MAX_PATH];
670 DWORD len, i, r, filelen;
671 const DWORD locations[] = {
672 CSIDL_STARTUP, CSIDL_DESKTOPDIRECTORY, CSIDL_STARTMENU,
673 CSIDL_COMMON_STARTUP, CSIDL_COMMON_DESKTOPDIRECTORY,
674 CSIDL_COMMON_STARTMENU };
676 WINE_TRACE("%s\n", wine_dbgstr_w(linkfile));
677 filelen=GetFullPathNameW( linkfile, MAX_PATH, filename, NULL );
678 if (filelen==0 || filelen>MAX_PATH)
681 for( i=0; i<sizeof(locations)/sizeof(locations[0]); i++ )
683 if (!SHGetSpecialFolderPathW( 0, buffer, locations[i], FALSE ))
686 len = lstrlenW(buffer);
690 if (len > filelen || filename[len]!='\\')
692 /* do a lstrcmpinW */
694 r = lstrcmpiW( filename, buffer );
695 filename[len] = '\\';
699 /* return the remainder of the string and link type */
708 static BOOL InvokeShellLinker( IShellLinkA *sl, LPCWSTR link )
710 char *link_name, *p, *icon_name = NULL, *work_dir = NULL;
711 char *escaped_path = NULL, *escaped_args = NULL;
712 CHAR szDescription[MAX_PATH], szPath[MAX_PATH], szWorkDir[MAX_PATH];
713 CHAR szArgs[MAX_PATH], szIconPath[MAX_PATH];
715 DWORD ofs=0, csidl= -1;
719 WINE_ERR("Link name is null\n");
723 if( !GetLinkLocation( link, &ofs, &csidl ) )
725 WINE_WARN("Unknown link location '%s'. Ignoring.\n",wine_dbgstr_w(link));
728 if (!in_desktop_dir(csidl) && !in_startmenu(csidl))
730 WINE_WARN("Not under desktop or start menu. Ignoring.\n");
735 IShellLinkA_GetWorkingDirectory( sl, szWorkDir, sizeof(szWorkDir));
736 WINE_TRACE("workdir : %s\n", szWorkDir);
738 szDescription[0] = 0;
739 IShellLinkA_GetDescription( sl, szDescription, sizeof(szDescription));
740 WINE_TRACE("description: %s\n", szDescription);
743 IShellLinkA_GetPath( sl, szPath, sizeof(szPath), NULL, SLGP_RAWPATH );
744 WINE_TRACE("path : %s\n", szPath);
747 IShellLinkA_GetArguments( sl, szArgs, sizeof(szArgs) );
748 WINE_TRACE("args : %s\n", szArgs);
751 IShellLinkA_GetIconLocation( sl, szIconPath,
752 sizeof(szIconPath), &iIconId );
753 WINE_TRACE("icon file : %s\n", szIconPath );
757 LPITEMIDLIST pidl = NULL;
758 IShellLinkA_GetIDList( sl, &pidl );
759 if( pidl && SHGetPathFromIDListA( pidl, szPath ) );
760 WINE_TRACE("pidl path : %s\n", szPath );
763 /* extract the icon */
765 icon_name = extract_icon( szIconPath , iIconId );
767 icon_name = extract_icon( szPath, iIconId );
769 /* fail - try once again at reboot time */
772 WINE_ERR("failed to extract icon.\n");
779 /* check for .exe extension */
780 if (!(p = strrchr( szPath, '.' ))) return FALSE;
781 if (strchr( p, '\\' ) || strchr( p, '/' )) return FALSE;
782 if (strcasecmp( p, ".exe" )) return FALSE;
784 /* convert app working dir */
786 work_dir = get_unix_file_name( szWorkDir );
790 /* if there's no path... try run the link itself */
791 WideCharToMultiByte( CP_ACP, 0, link, -1, szArgs, MAX_PATH, NULL, NULL );
792 GetWindowsDirectoryA(szPath, MAX_PATH);
793 strncat(szPath, "\\command\\start.exe",
794 MAX_PATH - GetWindowsDirectoryA(NULL, 0));
797 link_name = cleanup_link( &link[ofs] );
800 WINE_ERR("Couldn't clean up link name\n");
804 /* escape the path and parameters */
805 escaped_path = escape(szPath);
807 escaped_args = escape(szArgs);
809 r = fork_and_wait("wineshelllink", link_name, escaped_path,
810 in_desktop_dir(csidl), escaped_args, icon_name,
811 work_dir ? work_dir : "", szDescription );
813 HeapFree( GetProcessHeap(), 0, icon_name );
814 HeapFree( GetProcessHeap(), 0, work_dir );
815 HeapFree( GetProcessHeap(), 0, link_name );
816 HeapFree( GetProcessHeap(), 0, escaped_args );
817 HeapFree( GetProcessHeap(), 0, escaped_path );
821 WINE_ERR("failed to fork and exec wineshelllink\n" );
829 static BOOL Process_Link( LPWSTR linkname, BOOL bAgain )
834 WCHAR fullname[MAX_PATH];
839 WINE_ERR("link name missing\n");
843 len=GetFullPathNameW( linkname, MAX_PATH, fullname, NULL );
844 if (len==0 || len>MAX_PATH)
846 WINE_ERR("couldn't get full path of link file\n");
850 r = CoInitialize( NULL );
853 WINE_ERR("CoInitialize failed\n");
857 r = CoCreateInstance( &CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER,
858 &IID_IShellLink, (LPVOID *) &sl );
861 WINE_ERR("No IID_IShellLink\n");
865 r = IShellLinkA_QueryInterface( sl, &IID_IPersistFile, (LPVOID*) &pf );
868 WINE_ERR("No IID_IPersistFile\n");
872 r = IPersistFile_Load( pf, fullname, STGM_READ );
875 /* If we something fails (eg. Couldn't extract icon)
876 * defer this menu entry to reboot via runonce
878 if( ! InvokeShellLinker( sl, fullname ) && bAgain )
879 DeferToRunOnce( fullname );
881 WINE_TRACE("Success.\n");
884 IPersistFile_Release( pf );
885 IShellLinkA_Release( sl );
893 static CHAR *next_token( LPSTR *p )
895 LPSTR token = NULL, t = *p;
908 /* unquote the token */
910 t = strchr( token, '"' );
919 t = strchr( token, ' ' );
929 /***********************************************************************
933 int PASCAL WinMain (HINSTANCE hInstance, HINSTANCE prev, LPSTR cmdline, int show)
935 LPSTR token = NULL, p;
937 HANDLE hsem = CreateSemaphoreA( NULL, 1, 1, "winemenubuilder_semaphore");
940 /* running multiple instances of wineshelllink
941 at the same time may be dangerous */
942 if( WAIT_OBJECT_0 != WaitForSingleObject( hsem, INFINITE ) )
945 for( p = cmdline; p && *p; )
947 token = next_token( &p );
950 if( !lstrcmpA( token, "-r" ) )
952 else if( token[0] == '-' )
954 WINE_ERR( "unknown option %s\n",token);
958 WCHAR link[MAX_PATH];
960 MultiByteToWideChar( CP_ACP, 0, token, -1, link, sizeof(link) );
961 if( !Process_Link( link, bAgain ) )
963 WINE_ERR( "failed to build menu item for %s\n",token);
970 ReleaseSemaphore( hsem, 1, NULL );