| 1 | /* ***** BEGIN LICENSE BLOCK *****
|
|---|
| 2 | * Version: CDDL 1.0/LGPL 2.1
|
|---|
| 3 | *
|
|---|
| 4 | * The contents of this file are subject to the COMMON DEVELOPMENT AND
|
|---|
| 5 | * DISTRIBUTION LICENSE (CDDL) Version 1.0 (the "License"); you may not use
|
|---|
| 6 | * this file except in compliance with the License. You may obtain a copy of
|
|---|
| 7 | * the License at http://www.sun.com/cddl/
|
|---|
| 8 | *
|
|---|
| 9 | * Software distributed under the License is distributed on an "AS IS" basis,
|
|---|
| 10 | * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|---|
| 11 | * for the specific language governing rights and limitations under the
|
|---|
| 12 | * License.
|
|---|
| 13 | *
|
|---|
| 14 | * The Original Code is "NOM" Netlabs Object Model
|
|---|
| 15 | *
|
|---|
| 16 | * The Initial Developer of the Original Code is
|
|---|
| 17 | * netlabs.org: Chris Wohlgemuth <cinc-ml@netlabs.org>.
|
|---|
| 18 | * Portions created by the Initial Developer are Copyright (C) 2005-2006
|
|---|
| 19 | * the Initial Developer. All Rights Reserved.
|
|---|
| 20 | *
|
|---|
| 21 | * Contributor(s):
|
|---|
| 22 | *
|
|---|
| 23 | * Alternatively, the contents of this file may be used under the terms of
|
|---|
| 24 | * the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
|
|---|
| 25 | * case the provisions of the LGPL are applicable instead of those above. If
|
|---|
| 26 | * you wish to allow use of your version of this file only under the terms of
|
|---|
| 27 | * the LGPL, and not to allow others to use your version of this file under
|
|---|
| 28 | * the terms of the CDDL, indicate your decision by deleting the provisions
|
|---|
| 29 | * above and replace them with the notice and other provisions required by the
|
|---|
| 30 | * LGPL. If you do not delete the provisions above, a recipient may use your
|
|---|
| 31 | * version of this file under the terms of any one of the CDDL or the LGPL.
|
|---|
| 32 | *
|
|---|
| 33 | * ***** END LICENSE BLOCK ***** */
|
|---|
| 34 |
|
|---|
| 35 | /*
|
|---|
| 36 | This file contains functions for working with the garbage collector.
|
|---|
| 37 | */
|
|---|
| 38 |
|
|---|
| 39 | #define INCL_DOS
|
|---|
| 40 | #define INCL_DOSERRORS
|
|---|
| 41 | #define INCL_DOSMEMMGR
|
|---|
| 42 | #include <os2.h>
|
|---|
| 43 |
|
|---|
| 44 | #include <stdio.h>
|
|---|
| 45 | #include <string.h>
|
|---|
| 46 | #include <stdlib.h>
|
|---|
| 47 |
|
|---|
| 48 | /* For nomToken etc. */
|
|---|
| 49 | #include <nom.h>
|
|---|
| 50 | #include "nomtk.h"
|
|---|
| 51 | #include "nomgc.h"
|
|---|
| 52 |
|
|---|
| 53 | /* Garbage collector */
|
|---|
| 54 | #include <gc.h>
|
|---|
| 55 |
|
|---|
| 56 | gboolean bUseGC=FALSE; /* MArk if we use the garbage collector */
|
|---|
| 57 |
|
|---|
| 58 | static gpointer gcMalloc(gulong ulBytes)
|
|---|
| 59 | {
|
|---|
| 60 | //printf("Hi there...\n");
|
|---|
| 61 | // return malloc(ulBytes);
|
|---|
| 62 | return (gpointer) GC_malloc(ulBytes);
|
|---|
| 63 | }
|
|---|
| 64 |
|
|---|
| 65 | static gpointer gcRealloc(gpointer mem, gulong ulBytes)
|
|---|
| 66 | {
|
|---|
| 67 | // printf("...and here\n");
|
|---|
| 68 | // return realloc(mem, ulBytes);
|
|---|
| 69 | return (gpointer) GC_realloc(mem, ulBytes);
|
|---|
| 70 | }
|
|---|
| 71 |
|
|---|
| 72 | static void gcFree(gpointer mem)
|
|---|
| 73 | {
|
|---|
| 74 | // printf("free(): %x\n", mem);
|
|---|
| 75 | return;
|
|---|
| 76 | GC_free(mem);
|
|---|
| 77 | }
|
|---|
| 78 |
|
|---|
| 79 |
|
|---|
| 80 | /*
|
|---|
| 81 | This is called from the EMX wrapper to set the garbage collector
|
|---|
| 82 | memory functions as the GLIB default allocation function.
|
|---|
| 83 | */
|
|---|
| 84 | void _System nomInitGarbageCollection(void* pMemInExe)
|
|---|
| 85 | {
|
|---|
| 86 | GMemVTable vtbl={0};
|
|---|
| 87 |
|
|---|
| 88 | /* Init the garbage collector */
|
|---|
| 89 | GC_init();
|
|---|
| 90 |
|
|---|
| 91 | vtbl.malloc=(gpointer)gcMalloc;
|
|---|
| 92 | vtbl.realloc=(gpointer)gcRealloc;
|
|---|
| 93 | vtbl.free=(gpointer)gcFree;
|
|---|
| 94 |
|
|---|
| 95 | g_mem_set_vtable(&vtbl);
|
|---|
| 96 | fprintf(stderr, " GC memory functions set for GLIB. (%s: %d)\n", __FILE__, __LINE__);
|
|---|
| 97 |
|
|---|
| 98 | bUseGC=TRUE;
|
|---|
| 99 | }
|
|---|
| 100 |
|
|---|
| 101 | NOMEXTERN void NOMLINK nomRegisterDataAreaForGC(char* pStart, char* pEnd)
|
|---|
| 102 | {
|
|---|
| 103 | GC_add_roots(pStart, pEnd);
|
|---|
| 104 | }
|
|---|
| 105 |
|
|---|
| 106 |
|
|---|
| 107 | /*
|
|---|
| 108 | Find a library record in the buffer filled by DosQuerySysState().
|
|---|
| 109 | */
|
|---|
| 110 | static qsLrec_t* qsFindModuleRec(const HREGDLL hRegisterDLL, USHORT hMod){
|
|---|
| 111 | qsLrec_t * pModRec;
|
|---|
| 112 | int a=0;
|
|---|
| 113 |
|
|---|
| 114 | pModRec=hRegisterDLL->pLibRec;
|
|---|
| 115 | while(NULL!=pModRec)
|
|---|
| 116 | {
|
|---|
| 117 | a++;
|
|---|
| 118 | // printf("%d Checking: %x -> %04X (%s)\n", a, pModRec, pModRec->hmte, pModRec->pName);
|
|---|
| 119 |
|
|---|
| 120 | if (NULLHANDLE==pModRec->pObjInfo && pModRec->ctObj > 0)
|
|---|
| 121 | {
|
|---|
| 122 | pModRec->pObjInfo = (qsLObjrec_t*)((char*)pModRec
|
|---|
| 123 | + ((sizeof(qsLrec_t)
|
|---|
| 124 | + pModRec->ctImpMod * sizeof(short)
|
|---|
| 125 | + strlen((char*)pModRec->pName) + 1 /* filename */
|
|---|
| 126 | + 3) & ~3));
|
|---|
| 127 | pModRec->pNextRec = (void*)((char*)pModRec->pObjInfo
|
|---|
| 128 | + sizeof(qsLObjrec_t) * pModRec->ctObj);
|
|---|
| 129 | }
|
|---|
| 130 | if(pModRec->hmte==hMod)
|
|---|
| 131 | break;
|
|---|
| 132 |
|
|---|
| 133 | pModRec=(qsLrec_t *)pModRec->pNextRec;
|
|---|
| 134 | }
|
|---|
| 135 | return pModRec;
|
|---|
| 136 | }
|
|---|
| 137 |
|
|---|
| 138 |
|
|---|
| 139 | #define BUFSIZE 1024*1024
|
|---|
| 140 | NOMEXTERN HREGDLL NOMLINK nomBeginRegisterDLLWithGC(void)
|
|---|
| 141 | {
|
|---|
| 142 | ULONG rc;
|
|---|
| 143 | HREGDLL hReg=NULLHANDLE;
|
|---|
| 144 | PTIB ptib;
|
|---|
| 145 | PPIB ppib;
|
|---|
| 146 | char * buf;
|
|---|
| 147 |
|
|---|
| 148 | rc = DosGetInfoBlocks(&ptib, &ppib);
|
|---|
| 149 | if (rc!=NO_ERROR)
|
|---|
| 150 | return NULLHANDLE;
|
|---|
| 151 |
|
|---|
| 152 | buf = malloc(BUFSIZE);
|
|---|
| 153 | if(!buf)
|
|---|
| 154 | return NULLHANDLE;
|
|---|
| 155 |
|
|---|
| 156 | memset(buf,0,BUFSIZE);
|
|---|
| 157 |
|
|---|
| 158 | rc = DosQuerySysState(QS_PROCESS | QS_SEMAPHORE | QS_MTE | QS_FILESYS | QS_SHMEMORY ,
|
|---|
| 159 | QS_MTE, /*0x96*/ ppib->pib_ulpid , 1UL, (PCHAR)buf, BUFSIZE);
|
|---|
| 160 | if (rc==NO_ERROR) {
|
|---|
| 161 | hReg=(qsPtrRec_t*) buf;
|
|---|
| 162 | }
|
|---|
| 163 | else
|
|---|
| 164 | free(buf);
|
|---|
| 165 |
|
|---|
| 166 | return hReg;
|
|---|
| 167 | }
|
|---|
| 168 |
|
|---|
| 169 | NOMEXTERN void NOMLINK nomEndRegisterDLLWithGC(const HREGDLL hRegisterDLL )
|
|---|
| 170 | {
|
|---|
| 171 | free((char*)hRegisterDLL);
|
|---|
| 172 | }
|
|---|
| 173 |
|
|---|
| 174 |
|
|---|
| 175 | /*
|
|---|
| 176 | FIXME:
|
|---|
| 177 |
|
|---|
| 178 | This function will not find every given DLL because it doesn't follow every import of
|
|---|
| 179 | each DLL.
|
|---|
| 180 | It's only meant for registering the GTK+, GLIB and friends DLLs. This works because GTK2.DLL
|
|---|
| 181 | is directly loaded by the exe and all the friends DLLs are imported by it.
|
|---|
| 182 |
|
|---|
| 183 | Feel free to make this function really useful...
|
|---|
| 184 |
|
|---|
| 185 | Oh, and some refactoring would be nice, too.
|
|---|
| 186 |
|
|---|
| 187 | */
|
|---|
| 188 | #define OBJREAD 0x0001L
|
|---|
| 189 | #define OBJWRITE 0x0002L
|
|---|
| 190 | #define OBJINVALID 0x0080L
|
|---|
| 191 | NOMEXTERN BOOL NOMLINK nomRegisterDLLByName(const HREGDLL hRegisterDLL, const char* chrDLLName)
|
|---|
| 192 | {
|
|---|
| 193 | qsPrec_t * p;
|
|---|
| 194 | int a=0;
|
|---|
| 195 |
|
|---|
| 196 | printf("Trying to register DLL %s\n", chrDLLName);
|
|---|
| 197 |
|
|---|
| 198 | p=hRegisterDLL->pProcRec;
|
|---|
| 199 | while(p && p->RecType == 1)
|
|---|
| 200 | {
|
|---|
| 201 | a++;
|
|---|
| 202 | if (p->cLib) {
|
|---|
| 203 | int i;
|
|---|
| 204 |
|
|---|
| 205 | for (i=0; i<p->cLib; i++){
|
|---|
| 206 | qsLrec_t * pModRec;
|
|---|
| 207 |
|
|---|
| 208 | //printf("%d %04X (p: %04x %04X, %04X) ",i, p->pLibRec[i], p, &p->pLibRec[i], &p->pLibRec);
|
|---|
| 209 |
|
|---|
| 210 | pModRec=qsFindModuleRec(hRegisterDLL, p->pLibRec[i]);
|
|---|
| 211 | if(pModRec){
|
|---|
| 212 | // printf("DLL name: %s\n", pModRec->pName);
|
|---|
| 213 | if(NULLHANDLE!=strstr( pModRec->pName, chrDLLName))
|
|---|
| 214 | {
|
|---|
| 215 | qsLObjrec_t *pObjInfo;
|
|---|
| 216 | printf(" --> Found DLL %s\n", pModRec->pName);
|
|---|
| 217 | pObjInfo=pModRec->pObjInfo;
|
|---|
| 218 | if(NULLHANDLE!=pObjInfo)
|
|---|
| 219 | {
|
|---|
| 220 | int iObj;
|
|---|
| 221 | for(iObj=0; iObj<pModRec->ctObj ;iObj++)
|
|---|
| 222 | {
|
|---|
| 223 | if (!(pObjInfo[iObj].oflags & OBJWRITE)) continue;
|
|---|
| 224 | if (!(pObjInfo[iObj].oflags & OBJREAD)) continue;
|
|---|
| 225 | if ((pObjInfo[iObj].oflags & OBJINVALID)) continue;
|
|---|
| 226 | printf(" #%d: %04lX, size: %04lX %04lX\n",
|
|---|
| 227 | iObj, pObjInfo[iObj].oaddr, pObjInfo[iObj].osize, pObjInfo[iObj].oflags);
|
|---|
| 228 | nomRegisterDataAreaForGC((char*)pObjInfo[iObj].oaddr,
|
|---|
| 229 | (char*)(pObjInfo[iObj].oaddr+pObjInfo[iObj].osize));
|
|---|
| 230 |
|
|---|
| 231 | }
|
|---|
| 232 | }
|
|---|
| 233 | return TRUE;
|
|---|
| 234 | }
|
|---|
| 235 | /* Check the imports of this DLL if any */
|
|---|
| 236 | if(pModRec->ctImpMod >0)
|
|---|
| 237 | {
|
|---|
| 238 | int iImps;
|
|---|
| 239 | PUSHORT pImpHmte;
|
|---|
| 240 |
|
|---|
| 241 | pImpHmte=(PUSHORT)((void*)pModRec + sizeof(qsLrec_t));
|
|---|
| 242 |
|
|---|
| 243 | for(iImps=0; iImps < pModRec->ctImpMod; iImps++)
|
|---|
| 244 | {
|
|---|
| 245 | qsLrec_t * pModImp;
|
|---|
| 246 | // printf(" Trying import #%d (%04X)\n", iImps, pImpHmte[iImps]);
|
|---|
| 247 | pModImp=qsFindModuleRec(hRegisterDLL, pImpHmte[iImps]);
|
|---|
| 248 | if(pModImp){
|
|---|
| 249 | //printf(" DLL name: %s\n", pModImp->pName);
|
|---|
| 250 | if(NULLHANDLE!=strstr( pModImp->pName, chrDLLName))
|
|---|
| 251 | {
|
|---|
| 252 | qsLObjrec_t *pObjInfo;
|
|---|
| 253 | printf(" --> Found DLL %s\n", pModImp->pName);
|
|---|
| 254 | pObjInfo=pModImp->pObjInfo;
|
|---|
| 255 | if(NULLHANDLE!=pObjInfo)
|
|---|
| 256 | {
|
|---|
| 257 | int iObj;
|
|---|
| 258 | for(iObj=0; iObj<pModImp->ctObj ;iObj++)
|
|---|
| 259 | {
|
|---|
| 260 | if (!(pObjInfo[iObj].oflags & OBJWRITE)) continue;
|
|---|
| 261 | if (!(pObjInfo[iObj].oflags & OBJREAD)) continue;
|
|---|
| 262 | if ((pObjInfo[iObj].oflags & OBJINVALID)) continue;
|
|---|
| 263 |
|
|---|
| 264 | printf(" #%d: %04lX, size: %04lX %04lX\n",
|
|---|
| 265 | iObj, pObjInfo[iObj].oaddr, pObjInfo[iObj].osize, pObjInfo[iObj].oflags);
|
|---|
| 266 | nomRegisterDataAreaForGC((char*)pObjInfo[iObj].oaddr,
|
|---|
| 267 | (char*)(pObjInfo[iObj].oaddr+pObjInfo[iObj].osize));
|
|---|
| 268 | }
|
|---|
| 269 | }
|
|---|
| 270 | return TRUE;
|
|---|
| 271 | }
|
|---|
| 272 | }/* for() */
|
|---|
| 273 | }/* for()*/
|
|---|
| 274 | }/* if() */
|
|---|
| 275 | }
|
|---|
| 276 | }/* For() */
|
|---|
| 277 | }
|
|---|
| 278 | break;
|
|---|
| 279 | }
|
|---|
| 280 | return FALSE;
|
|---|
| 281 | }
|
|---|