diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e35f485 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +.idea +CMakeLists.txt + +build +output \ No newline at end of file diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..1c1b4d2 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,7 @@ +Copyright (C) 2016 Asellus + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..62564ae --- /dev/null +++ b/Makefile @@ -0,0 +1,224 @@ +.SUFFIXES: + +#--------------------------------------------------------------------------------- +# Environment Setup +#--------------------------------------------------------------------------------- +ifeq ($(strip $(DEVKITPRO)),) +$(error "Please set DEVKITPRO in your environment. export DEVKITPRO=devkitPRO") +endif + +ifeq ($(strip $(DEVKITARM)),) +$(error "Please set DEVKITARM in your environment. export DEVKITARM=devkitARM") +endif + +include $(DEVKITARM)/3ds_rules + +#--------------------------------------------------------------------------------- +# Directory Setup +#--------------------------------------------------------------------------------- +BUILD := build +OUTPUT := output +RESOURCES := resources +DATA := data +ROMFS := romfs +SOURCES := source +INCLUDES := $(SOURCES) include + +#--------------------------------------------------------------------------------- +# Resource Setup +#--------------------------------------------------------------------------------- +APP_INFO := $(RESOURCES)/AppInfo +BANNER_AUDIO := $(RESOURCES)/audio +BANNER_IMAGE := $(RESOURCES)/banner +ICON := $(RESOURCES)/icon.png + +#--------------------------------------------------------------------------------- +# Build Setup +#--------------------------------------------------------------------------------- +ARCH := -march=armv6k -mtune=mpcore -mfloat-abi=hard + +COMMON_FLAGS := -g -Wall -Wno-strict-aliasing -O3 -mword-relocations -fomit-frame-pointer -ffast-math $(ARCH) $(INCLUDE) -DARM11 -D_3DS $(BUILD_FLAGS) +CFLAGS := $(COMMON_FLAGS) $(DEFINES) -std=gnu99 +CXXFLAGS := $(COMMON_FLAGS) $(DEFINES) -std=gnu++11 +ifeq ($(ENABLE_EXCEPTIONS),) + CXXFLAGS += -fno-rtti -fno-exceptions +endif + +ASFLAGS := -g $(ARCH) +LDFLAGS = -specs=3dsx.specs -g $(ARCH) -Wl,-Map,$(notdir $*.map) + +LIBS := -lctru -lm +LIBDIRS := $(PORTLIBS) $(CTRULIB) ./lib +DEFINES := + +#--------------------------------------------------------------------------------- +ifneq ($(BUILD),$(notdir $(CURDIR))) +#--------------------------------------------------------------------------------- + +#--------------------------------------------------------------------------------- +# Build Variable Setup +#--------------------------------------------------------------------------------- +recurse = $(shell find $2 -type $1 -name '$3' 2> /dev/null) + +CFILES := $(foreach dir,$(SOURCES),$(notdir $(call recurse,f,$(dir),*.c))) +CPPFILES := $(foreach dir,$(SOURCES),$(notdir $(call recurse,f,$(dir),*.cpp))) +SFILES := $(foreach dir,$(SOURCES),$(notdir $(call recurse,f,$(dir),*.s))) +PICAFILES := $(foreach dir,$(SOURCES),$(notdir $(call recurse,f,$(dir),*.pica))) +BINFILES := $(foreach dir,$(DATA),$(notdir $(call recurse,f,$(dir),*.*))) + +export OFILES := $(addsuffix .o,$(BINFILES)) $(PICAFILES:.pica=.shbin.o) $(CPPFILES:.cpp=.o) $(CFILES:.c=.o) $(SFILES:.s=.o) +export INCLUDE := $(foreach dir,$(INCLUDES),-I$(CURDIR)/$(dir)) $(foreach dir,$(LIBDIRS),-I$(dir)/include) -I$(CURDIR)/$(BUILD) +export LIBPATHS := $(foreach dir,$(LIBDIRS),-L$(dir)/lib) + +ifeq ($(strip $(CPPFILES)),) + export LD := $(CC) +else + export LD := $(CXX) +endif + +export DEPSDIR := $(CURDIR)/$(BUILD) +export VPATH := $(foreach dir,$(SOURCES),$(CURDIR)/$(dir) $(call recurse,d,$(CURDIR)/$(dir),*)) $(foreach dir,$(DATA),$(CURDIR)/$(dir) $(call recurse,d,$(CURDIR)/$(dir),*)) + +export TOPDIR := $(CURDIR) + +ifeq ($(ALWAYS_SHUTDOWN), 1) + export DEFINES := -DALWAYS_SHUTDOWN +endif + +.PHONY: $(BUILD) clean all + +#--------------------------------------------------------------------------------- +# Initial Targets +#--------------------------------------------------------------------------------- +all: $(BUILD) + +$(BUILD): + @[ -d $@ ] || mkdir -p $@ + @make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile + +clean: + @echo clean ... + @rm -fr $(BUILD) $(OUTPUT) + +#--------------------------------------------------------------------------------- +else +#--------------------------------------------------------------------------------- + +#--------------------------------------------------------------------------------- +# Build Information Setup +#--------------------------------------------------------------------------------- +DEPENDS := $(OFILES:.o=.d) + +include $(TOPDIR)/$(APP_INFO) +APP_TITLE := $(shell echo "$(APP_TITLE)" | cut -c1-128) +APP_DESCRIPTION := $(shell echo "$(APP_DESCRIPTION)" | cut -c1-256) +APP_AUTHOR := $(shell echo "$(APP_AUTHOR)" | cut -c1-128) +APP_PRODUCT_CODE := $(shell echo $(APP_PRODUCT_CODE) | cut -c1-16) +APP_UNIQUE_ID := $(shell echo $(APP_UNIQUE_ID) | cut -c1-7) +ifneq ("$(wildcard $(TOPDIR)/$(BANNER_IMAGE).cgfx)","") + BANNER_IMAGE_FILE := $(TOPDIR)/$(BANNER_IMAGE).cgfx + BANNER_IMAGE_ARG := -ci $(BANNER_IMAGE_FILE) +else + BANNER_IMAGE_FILE := $(TOPDIR)/$(BANNER_IMAGE).png + BANNER_IMAGE_ARG := -i $(BANNER_IMAGE_FILE) +endif + +ifneq ("$(wildcard $(TOPDIR)/$(BANNER_AUDIO).cwav)","") + BANNER_AUDIO_FILE := $(TOPDIR)/$(BANNER_AUDIO).cwav + BANNER_AUDIO_ARG := -ca $(BANNER_AUDIO_FILE) +else + BANNER_AUDIO_FILE := $(TOPDIR)/$(BANNER_AUDIO).wav + BANNER_AUDIO_ARG := -a $(BANNER_AUDIO_FILE) +endif + +EMPTY := +SPACE := $(EMPTY) $(EMPTY) +OUTPUT_NAME := $(subst $(SPACE),,$(APP_TITLE)) +OUTPUT_DIR := $(TOPDIR)/$(OUTPUT) +OUTPUT_FILE := $(OUTPUT_DIR)/$(OUTPUT_NAME) +VERSION := $(shell git describe --abbrev=0 --tags) + +APP_ICON := $(TOPDIR)/$(ICON) +APP_ROMFS := $(TOPDIR)/$(ROMFS) + +RSF := $(TOPDIR)/tools/template.rsf +COMMON_MAKEROM_PARAMS := -rsf $(RSF) -target t -exefslogo -elf $(OUTPUT_FILE).elf -icon icon.icn -banner banner.bnr -DAPP_TITLE="$(APP_TITLE)" -DAPP_PRODUCT_CODE="$(APP_PRODUCT_CODE)" -DAPP_UNIQUE_ID="$(APP_UNIQUE_ID)" -DAPP_ROMFS="$(APP_ROMFS)" -DAPP_SYSTEM_MODE="64MB" -DAPP_SYSTEM_MODE_EXT="Legacy" + +ifeq ($(OS),Windows_NT) + MAKEROM = makerom.exe + BANNERTOOL = bannertool.exe +else + UNAME_S := $(shell uname -s) + ifeq ($(UNAME_S),Linux) + MAKEROM = makerom-linux + BANNERTOOL = bannertool-linux + endif + ifeq ($(UNAME_S),Darwin) + MAKEROM = makerom-mac + BANNERTOOL = bannertool-mac + endif +endif + +_3DSXFLAGS += --smdh=$(OUTPUT_FILE).smdh +ifneq ("$(wildcard $(TOPDIR)/$(ROMFS))","") + _3DSXFLAGS += --romfs=$(TOPDIR)/$(ROMFS) +endif + +#--------------------------------------------------------------------------------- +# Main Targets +#--------------------------------------------------------------------------------- +.PHONY: all +all: $(OUTPUT_FILE)-$(VERSION).zip + +$(OUTPUT_DIR): + @[ -d $@ ] || mkdir -p $@ + +banner.bnr: $(BANNER_IMAGE_FILE) $(BANNER_AUDIO_FILE) + @$(BANNERTOOL) makebanner $(BANNER_IMAGE_ARG) $(BANNER_AUDIO_ARG) -o banner.bnr > /dev/null + +icon.icn: $(TOPDIR)/$(ICON) + @$(BANNERTOOL) makesmdh -s "$(APP_TITLE)" -l "$(APP_TITLE)" -p "$(APP_AUTHOR)" -i $(TOPDIR)/$(ICON) -o icon.icn > /dev/null + +$(OUTPUT_FILE).elf: $(OFILES) + +$(OUTPUT_FILE).3dsx: $(OUTPUT_FILE).elf + +$(OUTPUT_FILE).3ds: $(OUTPUT_FILE).elf banner.bnr icon.icn + @$(MAKEROM) -f cci -o $(OUTPUT_FILE).3ds -DAPP_ENCRYPTED=true $(COMMON_MAKEROM_PARAMS) + @echo "built ... $(notdir $@)" + +$(OUTPUT_FILE).cia: $(OUTPUT_FILE).elf banner.bnr icon.icn + @$(MAKEROM) -f cia -o $(OUTPUT_FILE).cia -DAPP_ENCRYPTED=false $(COMMON_MAKEROM_PARAMS) + @echo "built ... $(notdir $@)" + +$(OUTPUT_FILE)-$(VERSION).zip: $(OUTPUT_DIR) $(OUTPUT_FILE).elf $(OUTPUT_FILE).smdh $(OUTPUT_FILE).3dsx $(OUTPUT_FILE).3ds $(OUTPUT_FILE).cia + @cd $(OUTPUT_DIR); \ + mkdir -p 3ds/$(OUTPUT_NAME); \ + cp $(OUTPUT_FILE).3dsx 3ds/$(OUTPUT_NAME); \ + cp $(OUTPUT_FILE).smdh 3ds/$(OUTPUT_NAME); \ + zip -r $(OUTPUT_FILE)-$(VERSION).zip $(OUTPUT_NAME).elf $(OUTPUT_NAME).3ds $(OUTPUT_NAME).cia 3ds > /dev/null; \ + rm -r 3ds + @echo "built ... $(notdir $@)" + +#--------------------------------------------------------------------------------- +# Binary Data Rules +#--------------------------------------------------------------------------------- +%.bin.o: %.bin + @echo $(notdir $<) + @$(bin2o) + +%.shbin.o: %.pica + @echo $(notdir $<) + $(eval CURBIN := $(patsubst %.pica,%.shbin,$(notdir $<))) + $(eval CURH := $(patsubst %.pica,%.psh.h,$(notdir $<))) + @picasso -h $(CURH) -o $(CURBIN) $< + @bin2s $(CURBIN) | $(AS) -o $@ + @echo "extern const u8" `(echo $(CURBIN) | sed -e 's/^\([0-9]\)/_\1/' | tr . _)`"_end[];" > `(echo $(CURBIN) | tr . _)`.h + @echo "extern const u8" `(echo $(CURBIN) | sed -e 's/^\([0-9]\)/_\1/' | tr . _)`"[];" >> `(echo $(CURBIN) | tr . _)`.h + @echo "extern const u32" `(echo $(CURBIN) | sed -e 's/^\([0-9]\)/_\1/' | tr . _)`_size";" >> `(echo $(CURBIN) | tr . _)`.h + +-include $(DEPENDS) + +#--------------------------------------------------------------------------------- +endif +#--------------------------------------------------------------------------------- \ No newline at end of file diff --git a/README.md b/README.md index 2789625..e266946 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,12 @@ -# 3DS_Quick_Reboot +3DS Quick Reboot +================================ + 3DS Quick Reboot. + + +Credits +======= + +- Development tools by [DevKitPro](http://sourceforge.net/projects/devkitpro/). +- Build tools by [Steveice10](https://github.com/Steveice10/buildtools). + diff --git a/resources/AppInfo b/resources/AppInfo new file mode 100644 index 0000000..1fe02bc --- /dev/null +++ b/resources/AppInfo @@ -0,0 +1,5 @@ +APP_TITLE = 3DS Quick Reboot +APP_DESCRIPTION = 3DS Quick Reboot +APP_AUTHOR = Asellus +APP_PRODUCT_CODE = AQReboot +APP_UNIQUE_ID = 0xFA002 \ No newline at end of file diff --git a/resources/audio.wav b/resources/audio.wav new file mode 100644 index 0000000..8bdb0e1 Binary files /dev/null and b/resources/audio.wav differ diff --git a/resources/banner.png b/resources/banner.png new file mode 100644 index 0000000..1bf0088 Binary files /dev/null and b/resources/banner.png differ diff --git a/resources/icon.png b/resources/icon.png new file mode 100644 index 0000000..871d6b5 Binary files /dev/null and b/resources/icon.png differ diff --git a/source/main.cpp b/source/main.cpp new file mode 100644 index 0000000..c23e4cd --- /dev/null +++ b/source/main.cpp @@ -0,0 +1,33 @@ +#include <3ds.h> + +// https://www.3dbrew.org/wiki/PTMSYSM:LaunchFIRMRebootSystem +void PTM_RebootAsync(void) { + + ptmSysmInit(); + + Handle serviceHandle = 0; + Result result = srvGetServiceHandle(&serviceHandle, "ptm:sysm"); + if (result != 0) { + return; + } + + u32 *commandBuffer = getThreadCommandBuffer(); + commandBuffer[0] = 0x04090080; + commandBuffer[1] = 0x00000000; + commandBuffer[2] = 0x00000000; + + svcSendSyncRequest(serviceHandle); + svcCloseHandle(serviceHandle); + + ptmSysmExit(); +} + +int main(int argc, char **argv) { + + // without one iteration of the APT main loop. + aptMainLoop(); + + PTM_RebootAsync(); + + return 0; +} diff --git a/tools/template.rsf b/tools/template.rsf new file mode 100644 index 0000000..86274dc --- /dev/null +++ b/tools/template.rsf @@ -0,0 +1,282 @@ +BasicInfo: + Title : $(APP_TITLE) + ProductCode : $(APP_PRODUCT_CODE) + Logo : Nintendo # Nintendo / Licensed / Distributed / iQue / iQueForSystem + +RomFs: + RootPath: $(APP_ROMFS) + +TitleInfo: + Category : Application + UniqueId : $(APP_UNIQUE_ID) + +Option: + UseOnSD : true # true if App is to be installed to SD + FreeProductCode : true # Removes limitations on ProductCode + MediaFootPadding : false # If true CCI files are created with padding + EnableCrypt : $(APP_ENCRYPTED) # Enables encryption for NCCH and CIA + EnableCompress : true # Compresses where applicable (currently only exefs:/.code) + +AccessControlInfo: + CoreVersion : 2 + + # Exheader Format Version + DescVersion : 2 + + # Minimum Required Kernel Version (below is for 4.5.0) + ReleaseKernelMajor : "02" + ReleaseKernelMinor : "33" + + # ExtData + UseExtSaveData : false # enables ExtData + #ExtSaveDataId : 0x300 # only set this when the ID is different to the UniqueId + + # FS:USER Archive Access Permissions + # Uncomment as required + FileSystemAccess: + - CategorySystemApplication + - CategoryHardwareCheck + - CategoryFileSystemTool + - Debug + - TwlCardBackup + - TwlNandData + - Boss + - DirectSdmc + - Core + - CtrNandRo + - CtrNandRw + - CtrNandRoWrite + - CategorySystemSettings + - CardBoard + - ExportImportIvs + - DirectSdmcWrite + - SwitchCleanup + - SaveDataMove + - Shop + - Shell + - CategoryHomeMenu + IoAccessControl: + - FsMountNand + - FsMountNandRoWrite + - FsMountTwln + - FsMountWnand + - FsMountCardSpi + - UseSdif3 + - CreateSeed + - UseCardSpi + + # Process Settings + MemoryType : Application # Application/System/Base + SystemMode : $(APP_SYSTEM_MODE) # 64MB(Default)/96MB/80MB/72MB/32MB + IdealProcessor : 0 + AffinityMask : 1 + Priority : 16 + MaxCpu : 0x9E # Default + HandleTableSize : 0x200 + DisableDebug : false + EnableForceDebug : false + CanWriteSharedPage : true + CanUsePrivilegedPriority : false + CanUseNonAlphabetAndNumber : true + PermitMainFunctionArgument : true + CanShareDeviceMemory : true + RunnableOnSleep : false + SpecialMemoryArrange : true + + # New3DS Exclusive Process Settings + SystemModeExt : $(APP_SYSTEM_MODE_EXT) # Legacy(Default)/124MB/178MB Legacy:Use Old3DS SystemMode + CpuSpeed : 804MHz # 256MHz(Default)/804MHz + EnableL2Cache : true # false(default)/true + CanAccessCore2 : true + + # Virtual Address Mappings + IORegisterMapping: + - 1ff00000-1ff7ffff # DSP memory + MemoryMapping: + - 1f000000-1f5fffff:r # VRAM + + # Accessible SVCs, : + SystemCallAccess: + ControlMemory: 1 + QueryMemory: 2 + ExitProcess: 3 + GetProcessAffinityMask: 4 + SetProcessAffinityMask: 5 + GetProcessIdealProcessor: 6 + SetProcessIdealProcessor: 7 + CreateThread: 8 + ExitThread: 9 + SleepThread: 10 + GetThreadPriority: 11 + SetThreadPriority: 12 + GetThreadAffinityMask: 13 + SetThreadAffinityMask: 14 + GetThreadIdealProcessor: 15 + SetThreadIdealProcessor: 16 + GetCurrentProcessorNumber: 17 + Run: 18 + CreateMutex: 19 + ReleaseMutex: 20 + CreateSemaphore: 21 + ReleaseSemaphore: 22 + CreateEvent: 23 + SignalEvent: 24 + ClearEvent: 25 + CreateTimer: 26 + SetTimer: 27 + CancelTimer: 28 + ClearTimer: 29 + CreateMemoryBlock: 30 + MapMemoryBlock: 31 + UnmapMemoryBlock: 32 + CreateAddressArbiter: 33 + ArbitrateAddress: 34 + CloseHandle: 35 + WaitSynchronization1: 36 + WaitSynchronizationN: 37 + SignalAndWait: 38 + DuplicateHandle: 39 + GetSystemTick: 40 + GetHandleInfo: 41 + GetSystemInfo: 42 + GetProcessInfo: 43 + GetThreadInfo: 44 + ConnectToPort: 45 + SendSyncRequest1: 46 + SendSyncRequest2: 47 + SendSyncRequest3: 48 + SendSyncRequest4: 49 + SendSyncRequest: 50 + OpenProcess: 51 + OpenThread: 52 + GetProcessId: 53 + GetProcessIdOfThread: 54 + GetThreadId: 55 + GetResourceLimit: 56 + GetResourceLimitLimitValues: 57 + GetResourceLimitCurrentValues: 58 + GetThreadContext: 59 + Break: 60 + OutputDebugString: 61 + ControlPerformanceCounter: 62 + CreatePort: 71 + CreateSessionToPort: 72 + CreateSession: 73 + AcceptSession: 74 + ReplyAndReceive1: 75 + ReplyAndReceive2: 76 + ReplyAndReceive3: 77 + ReplyAndReceive4: 78 + ReplyAndReceive: 79 + BindInterrupt: 80 + UnbindInterrupt: 81 + InvalidateProcessDataCache: 82 + StoreProcessDataCache: 83 + FlushProcessDataCache: 84 + StartInterProcessDma: 85 + StopDma: 86 + GetDmaState: 87 + RestartDma: 88 + DebugActiveProcess: 96 + BreakDebugProcess: 97 + TerminateDebugProcess: 98 + GetProcessDebugEvent: 99 + ContinueDebugEvent: 100 + GetProcessList: 101 + GetThreadList: 102 + GetDebugThreadContext: 103 + SetDebugThreadContext: 104 + QueryDebugProcessMemory: 105 + ReadProcessMemory: 106 + WriteProcessMemory: 107 + SetHardwareBreakPoint: 108 + GetDebugThreadParam: 109 + ControlProcessMemory: 112 + MapProcessMemory: 113 + UnmapProcessMemory: 114 + CreateCodeSet: 115 + CreateProcess: 117 + TerminateProcess: 118 + SetProcessResourceLimits: 119 + CreateResourceLimit: 120 + SetResourceLimitValues: 121 + AddCodeSegment: 122 + Backdoor: 123 + KernelSetState: 124 + QueryProcessMemory: 125 + + # Service List + # Maximum 34 services (32 if firmware is prior to 9.6.0) + ServiceAccessControl: + - APT:U + - ac:u + - am:net + - boss:U + - cam:u + - cecd:u + - cfg:nor + - cfg:u + - csnd:SND + - dsp::DSP + - frd:u + - fs:USER + - gsp::Gpu + - hid:USER + - http:C + - ir:rst + - ir:u + - ir:USER + - mic:u + - ndm:u + - news:u + - nwm::UDS + - ptm:u + - ptm:sysm + - pxi:dev + - soc:U + - ssl:C + - y2r:u + + +SystemControlInfo: + SaveDataSize: 0KB # Change if the app uses savedata + RemasterVersion: 2 + StackSize: 0x40000 + + # Modules that run services listed above should be included below + # Maximum 48 dependencies + # : + Dependency: + ac: 0x0004013000002402 + #act: 0x0004013000003802 + am: 0x0004013000001502 + boss: 0x0004013000003402 + camera: 0x0004013000001602 + cecd: 0x0004013000002602 + cfg: 0x0004013000001702 + codec: 0x0004013000001802 + csnd: 0x0004013000002702 + dlp: 0x0004013000002802 + dsp: 0x0004013000001a02 + friends: 0x0004013000003202 + gpio: 0x0004013000001b02 + gsp: 0x0004013000001c02 + hid: 0x0004013000001d02 + http: 0x0004013000002902 + i2c: 0x0004013000001e02 + ir: 0x0004013000003302 + mcu: 0x0004013000001f02 + mic: 0x0004013000002002 + ndm: 0x0004013000002b02 + news: 0x0004013000003502 + #nfc: 0x0004013000004002 + nim: 0x0004013000002c02 + nwm: 0x0004013000002d02 + pdn: 0x0004013000002102 + ps: 0x0004013000003102 + ptm: 0x0004013000002202 + #qtm: 0x0004013020004202 + ro: 0x0004013000003702 + socket: 0x0004013000002e02 + spi: 0x0004013000002302 + ssl: 0x0004013000002f02