TweetFollow Us on Twitter

FakeFinder
Volume Number:12
Issue Number:4
Column Tag:Assembler Workshop

FakeFinder

A tiny file-launching hack for those emergencies...

By Lee David Rimar

Note: Source code files accompanying article are located on MacTech CD-ROM or source code disks.

What with it being April and the call of April Fool’s Day echoing in the breezes, it seems an appropriate time to put before the public this little horror that arrived at our desks a while back. Please bear in mind that when we say, “Kids, don’t try this at home,” this is one case where we mean it. It really does work, but the publisher, editors and staff of MacTech Magazine categorically refuse to stand behind or endorse it in any way, and will not be held responsible for what happens to you or anyone else as a result of your assembling this code or downloading the alternate Finder app. In fact, we can’t even be held responsible for what may happen to you if you read the article! Why not just turn the page now? Hey, I said turn the page! Okay, you asked for it

What It Is and
Why You Might Want It

With current releases of the Mac OS, it’s sometimes hard to build a useful emergency boot diskette. If your hard-drive won’t boot, you can usually use the Disk Tools floppy to bring up your system. But if you want other diagnostic and/or system recovery programs on your “emergency” diskette, there usually isn’t enough space. Enter FakeFinder.

FakeFinder is a tiny program (under 800 bytes) that simply launches other programs. On emergency boot diskettes, FakeFinder replaces the real Finder, and frees a lot of space.

How To Use It

To create an emergency boot disk with FakeFinder:

• Format a diskette and label it Emergency.

• Copy the following file(s) from your Disk Tools diskette to the root directory of Emergency:

1) the System file

2) optional: the Apple CD-ROM Extension

• If your Mac requires any system enablers, copy these also to the root directory of Emergency.

• Copy the “Finder” application from the FakeFinder package to the root directory of Emergency.

You now have a bootable diskette with considerable free space on it. Go ahead and add any other programs you want in the root directory of this disk, anything that will fit. My personal preference is to keep most of what’s on the Disk Tools floppy, and add my tape backup/restore software.

When you reboot with this diskette, FakeFinder loads and creates a File menu with only two items on it: Open and Quit.

To launch any program(s), select Open. This will let you select any applications, aliases to applications, and even a “real” Finder on any mounted drive - including CDs, if you copied the Apple CD-ROM Extension to the diskette.

To shut down your Mac, select Quit, and also quit any other applications you may have launched. Your Mac will then shut down normally.

Limitations
(or, This Ain’t No Swiss Army Knife)

To be so small, FakeFinder leaves a lot of stuff out. The most important limitations:

• No desk accesories/Apple Menu items.

• Without a real Finder present, you can’t use File Sharing.

• Programs needing to find a “Blessed Folder,” containing a real Finder and System, may not work.

The point of FakeFinder was to make it as small as possible, so I don’t plan to solve any of these problems.

By The Way: How Did It Get So Small?

Normally, to create an application this small, you would start in assembly language. But I don’t grok 68K assembler well enough to write anything from the ground up. So I wrote, compiled, linked, and tested FakeFinder using FORTRAN, a language I do know. Then I disassembled the compiler’s output, modified it to reduce the code size, and re-assembled it.

Disclaimers
(or, Anything Free Comes With No Guarantee)

Though FakeFinder works properly on every system I have tested so far, it may not work on tomorrow’s systems. This is because it uses the _Launch trap to sublaunch applications, and Apple says this functionality may go away in future OS releases. If and when that time comes, it will be necessary to rewrite any applications using the sublaunch facility.

References

Macintosh Tech Notes #126, #180, #205 (old numbering system).

MACHINE MC68000

; system routines used in this module

_AppendMenu     OPWORD  $A933
_DrawMenuBar    OPWORD  $A937
_ExitToShell    OPWORD  $A9F4
_FindWindow     OPWORD  $A92C
_HFSDispatch    OPWORD  $A260
_HiliteMenu     OPWORD  $A938
_InitCursor     OPWORD  $A850
_InitDialogs    OPWORD  $A97B
_InitFonts      OPWORD  $A8FE
_InitGraf       OPWORD  $A86E
_InitMenus      OPWORD  $A930
_InitWindows    OPWORD  $A912
_InsertMenu     OPWORD  $A935
_Launch         OPWORD  $A9F2
_MenuSelect     OPWORD  $A93D
_NewMenu        OPWORD  $A931
_StdFile        OPWORD  $A9EA
_SetVol         OPWORD  $A015
_WaitNextEvent  OPWORD  $A860

START:  MAIN

; make a stack, initialize managers, and set up menus

        link            a6,#-664

        lea             (266,a7),a2 ; qd.grafport
        move.l          a2,(a7)
        _InitGraf
        _InitFonts
        _InitWindows
        _InitMenus
        _InitDialogs
        _InitCursor

        lea             AppleMenu,a2
        move.l          a2,(a7)
        move.w          #$80,(4,a7)
        _NewMenu
        move.l          (a7),a3
        move.w          #0,(a7)
        move.l          a3,(2,a7)
        _InsertMenu
        lea             FileMenu,a2
        move.l          a2,(a7)
        move.w          #$81,(4,a7)
        _NewMenu
        move.l          (a7),a3
        move.w          #0,(a7)
        move.l          a3,(2,a7)
        _InsertMenu
        lea             MenuItems,a2
        move.l          a2,(a7)
        move.l          a3,(4,a7)
        _AppendMenu
        _DrawMenuBar

        sub.l           #36,a7

Loop:

; If (.NOT. WaitNextEvent(
;       VAL2(-1),event,VAL(15),VAL(0))) Loop

        move.l          #0,(a7)
        move.l          #15,(4,a7)
        lea             (288,a7),a2
        move.l          a2,(8,a7)
        move.w          #-1,(12,a7)
        _WaitNextEvent
        move.b          (a7),d3
        sub.l           #$000e,a7
        tst.b           d3
        beq.s           Loop

; If (event.what != mouseDown) Loop

        move.w          (288,a7),d3
        cmp.w           #1,d3
        bne.s           Loop

; If (FindWindow(
;       VAL(event.where),dummy) != inMenuBar) Loop

        lea             (272,a7),a2
        move.l          a2,(a7)
        move.l          (298,a7),(4,a7)
        _FindWindow
        move.w          (a7),d3
        sub.l           #8,a7
        cmp.w           #1,d3
        bne.s           Loop

; pick = MenuSelect(VAL(event.where))
; Call HiliteMenu(VAL2(0))

        move.l          (298,a7),(a7)
        _MenuSelect
        move.l          (a7),d3
        move.w          #0,(a7)
        _HiliteMenu
        sub.l           #6,a7

; If (pick == z'00810001') GetFile
; If (pick != z'00810002') Loop
; Call ExitToShell

        cmp.l           #$810001,d3
        beq.s           GetFile
        cmp.l           #$810002,d3
        bne.s           Loop

        _ExitToShell

GetFile:

; Call SFGetFile(
;       VAL(coords),0,VAL(0),VAL2(3),types,VAL(0),reply)

        lea             (304,a7),a2
        move.l          a2,(a7)
        move.l          #0,(4,a7)
        lea             types,a2
        move.l          a2,(8,a7)
        move.w          #3,(12,a7)
        move.l          #0,(14,a7)
        move.l          #0,(18,a7)
        move.l          #$00400040,(22,a7)
        move.w          #$2,-(a7)
        _StdFile
        sub.l           #$001a,a7

; If (.NOT. reply.good) Loop

        move.b          (304,a7),d3
        tst.b           d3
        beq.s           final

; myPB.p_ioName = LOC(reply.fName)
; myPB.ioVRefNum = reply.vRefNum
; myPB.ioFDirIndex = 0
; myPB.ioDirID = 0
; If (PBGetCatInfoSync(myPB) != 0) Loop

        lea             (314,a7),a2
        move.l          a2,(478,a7)
        move.w          (310,a7),(482,a7)
        move.l          #0,(488,a7)
        move.l          #0,(508,a7)
        lea             (460,a7),a2
        move.l          a2,(a7)
        movea.l         (a7)+,a0
        move.w          #9,d0
        _HFSDispatch
        sub.l           #4,a7
        tst.w           d0
        bne.s           final

; params.ioCompletion = 0
; params.ioResult = 0
; params.p_ioName = 0
; params.ioVRefNum = reply.vRefNum
; If(PBSetVolSync(params).LT.0) Loop

        move.l          #0,(392,a7)
        move.w          #0,(396,a7)
        move.l          #0,(398,a7)
        move.w          (310,a7),(402,a7)
        lea             (380,a7),a2
        move.l          a2,(a7)
        movea.l         (a7)+,a0
        _SetVol
        sub.l           #4,a7

; ap.pfName = LOC(reply.fName)
; ap.param = 0
; ap.LC = z'4C43'
; ap.extBlockLen = 6
; ap.fFlags = myPB.ioFlFndrInfo.fdFlags
; ap.launchFlags = z'C0000000'

        lea             (314,a7),a2
        move.l          a2,(568,a7)
        move.w          #0,(572,a7)
        move.w          #$4C43,(574,a7)
        move.l          #6,(576,a7)
        move.w          (500,a7),(580,a7)
        move.l          #$c0000000,(582,a7)

; ignore = launch(ap)

        lea             (568,a7),a2
        move.l          a2,(a7)
        movea.l         (a7)+,a0
        _Launch
        sub.l           #4,a7

final:  bra             Loop

; some constants embedded in code section

types: ; file types for getfile, what you can launch with FakeFinder

        dc.l            $4150504c ; APPL
        dc.l            $464e4452 ; FNDR
        dc.l            $61647270 ; adrp (application aliases)

AppleMenu: ; Apple Menu character, for appearances only!

        dc.b    1
        dc.b    20

FileMenu: ; Pascal String “File”

        dc.b    4
        dc.b    70
        dc.b    105
        dc.b    108
        dc.b    101
        dc.b    0 ; pad so next lands on even address

MenuItems: ; Pascal string “Open;Quit”

        dc.b    9
        dc.b    79
        dc.b    112
        dc.b    101
        dc.b    110
        dc.b    59
        dc.b    81
        dc.b    117
        dc.b    105
        dc.b    116

        ENDMAIN
        END

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

Six fantastic ways to spend National Vid...
As if anyone needed an excuse to play games today, I am about to give you one: it is National Video Games Day. A day for us to play games, like we no doubt do every day. Let’s not look a gift horse in the mouth. Instead, feast your eyes on this... | Read more »
Old School RuneScape players turn out in...
The sheer leap in technological advancements in our lifetime has been mind-blowing. We went from Commodore 64s to VR glasses in what feels like a heartbeat, but more importantly, the internet. It can be a dark mess, but it also brought hundreds of... | Read more »
Today's Best Mobile Game Discounts...
Every day, we pick out a curated list of the best mobile discounts on the App Store and post them here. This list won't be comprehensive, but it every game on it is recommended. Feel free to check out the coverage we did on them in the links below... | Read more »
Nintendo and The Pokémon Company's...
Unless you have been living under a rock, you know that Nintendo has been locked in an epic battle with Pocketpair, creator of the obvious Pokémon rip-off Palworld. Nintendo often resorts to legal retaliation at the drop of a hat, but it seems this... | Read more »
Apple exclusive mobile games don’t make...
If you are a gamer on phones, no doubt you have been as distressed as I am on one huge sticking point: exclusivity. For years, Xbox and PlayStation have done battle, and before this was the Sega Genesis and the Nintendo NES. On console, it makes... | Read more »
Regionally exclusive events make no sens...
Last week, over on our sister site AppSpy, I babbled excitedly about the Pokémon GO Safari Days event. You can get nine Eevees with an explorer hat per day. Or, can you? Specifically, you, reader. Do you have the time or funds to possibly fly for... | Read more »
As Jon Bellamy defends his choice to can...
Back in March, Jagex announced the appointment of a new CEO, Jon Bellamy. Mr Bellamy then decided to almost immediately paint a huge target on his back by cancelling the Runescapes Pride event. This led to widespread condemnation about his perceived... | Read more »
Marvel Contest of Champions adds two mor...
When I saw the latest two Marvel Contest of Champions characters, I scoffed. Mr Knight and Silver Samurai, thought I, they are running out of good choices. Then I realised no, I was being far too cynical. This is one of the things that games do best... | Read more »
Grass is green, and water is wet: Pokémo...
It must be a day that ends in Y, because Pokémon Trading Card Game Pocket has kicked off its Zoroark Drop Event. Here you can get a promo version of another card, and look forward to the next Wonder Pick Event and the next Mass Outbreak that will be... | Read more »
Enter the Gungeon review
It took me a minute to get around to reviewing this game for a couple of very good reasons. The first is that Enter the Gungeon's style of roguelike bullet-hell action is teetering on the edge of being straight-up malicious, which made getting... | Read more »

Price Scanner via MacPrices.net

Take $150 off every Apple 11-inch M3 iPad Air
Amazon is offering a $150 discount on 11-inch M3 WiFi iPad Airs right now. Shipping is free: – 11″ 128GB M3 WiFi iPad Air: $449, $150 off – 11″ 256GB M3 WiFi iPad Air: $549, $150 off – 11″ 512GB M3... Read more
Apple iPad minis back on sale for $100 off MS...
Amazon is offering $100 discounts (up to 20% off) on Apple’s newest 2024 WiFi iPad minis, each with free shipping. These are the lowest prices available for new minis among the Apple retailers we... Read more
Apple’s 16-inch M4 Max MacBook Pros are on sa...
Amazon has 16-inch M4 Max MacBook Pros (Silver and Black colors) on sale for up to $410 off Apple’s MSRP right now. Shipping is free. Be sure to select Amazon as the seller, rather than a third-party... Read more
Red Pocket Mobile is offering a $150 rebate o...
Red Pocket Mobile has new Apple iPhone 17’s on sale for $150 off MSRP when you switch and open up a new line of service. Red Pocket Mobile is a nationwide MVNO using all the major wireless carrier... Read more
Switch to Verizon, and get any iPhone 16 for...
With yesterday’s introduction of the new iPhone 17 models, Verizon responded by running “on us” promos across much of the iPhone 16 lineup: iPhone 16 and 16 Plus show as $0/mo for 36 months with bill... Read more
Here is a summary of the new features in Appl...
Apple’s September 2025 event introduced major updates across its most popular product lines, focusing on health, performance, and design breakthroughs. The AirPods Pro 3 now feature best-in-class... Read more
Apple’s Smartphone Lineup Could Use A Touch o...
COMMENTARY – Whatever happened to the old adage, “less is more”? Apple’s smartphone lineup. — which is due for its annual refresh either this month or next (possibly at an Apple Event on September 9... Read more
Take $50 off every 11th-generation A16 WiFi i...
Amazon has Apple’s 11th-generation A16 WiFi iPads in stock on sale for $50 off MSRP right now. Shipping is free: – 11″ 11th-generation 128GB WiFi iPads: $299 $50 off MSRP – 11″ 11th-generation 256GB... Read more
Sunday Sale: 14-inch M4 MacBook Pros for up t...
Don’t pay full price! Amazon has Apple’s 14-inch M4 MacBook Pros (Silver and Black colors) on sale for up to $220 off MSRP right now. Shipping is free. Be sure to select Amazon as the seller, rather... Read more
Mac mini with M4 Pro CPU back on sale for $12...
B&H Photo has Apple’s Mac mini with the M4 Pro CPU back on sale for $1259, $140 off MSRP. B&H offers free 1-2 day shipping to most US addresses: – Mac mini M4 Pro CPU (24GB/512GB): $1259, $... Read more

Jobs Board

All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.