ProGuard源碼閱讀

ProGuard源碼下載地址
https://sourceforge.net/projects/proguard/

整個PG.jar的編譯腳本在buildscripts/functions.sh
這里不關(guān)心他們的編譯處理
核心處理類在core包下啡莉。

PG.core的包結(jié)構(gòu)
proguard 用戶調(diào)用接口
proguard.ant ant邏輯相關(guān)
proguard.classfile class處理
proguard.evaluation 執(zhí)行相關(guān)
proguard.gui gui界面
proguard.io IO流,處理類似jar和zip,classpath文件流
proguard.obfuscate 混淆相關(guān)
proguard.optimize 優(yōu)化
proguard.preverify 預(yù)編譯相關(guān)
proguard.retrace 追蹤
proguard.shrink 壓縮相關(guān)
proguard.util 工具類

proguard.java的入口方法

public static void main(String[] args)
    {
        if (args.length == 0)
        {
            System.out.println(VERSION);
            System.out.println("Usage: java proguard.ProGuard [options ...]");
            System.exit(1);
        }
        
        // Create the default options.
        Configuration configuration = new Configuration();

        try
        {
            // Parse the options specified in the command line arguments.
            ConfigurationParser parser = new ConfigurationParser(args,
                                                                 System.getProperties());
            try
            {
//檢查configuration有沒有異常的字符恨搓,只有全對才能繼續(xù)
                parser.parse(configuration);
            }
            finally
            {
                parser.close();
            }

            // Execute ProGuard with these options.
            new ProGuard(configuration).execute();//真正的實(shí)現(xiàn)方法
        }
        catch (Exception ex)
        {
            if (configuration.verbose)
            {
                // Print a verbose stack trace.
                ex.printStackTrace();
            }
            else
            {
                // Print just the stack trace message.
                System.err.println("Error: "+ex.getMessage());
            }

            System.exit(1);
        }

        System.exit(0);
    }
}

main方法主要在做configuration的輸入檢查工作
當(dāng)檢查結(jié)果無異常,新構(gòu)造一個Proguard類并調(diào)用excute方法執(zhí)行

excute方法這里著重看obfuscate方法

private void obfuscate() throws IOException
    {
        if (configuration.verbose)
        {
            System.out.println("Obfuscating...");

            // We'll apply a mapping, if requested.
            if (configuration.applyMapping != null)
            {
                System.out.println("Applying mapping [" + PrintWriterUtil.fileName(configuration.applyMapping) + "]");
            }

            // We'll print out the mapping, if requested.
            if (configuration.printMapping != null)
            {
                System.out.println("Printing mapping to [" + PrintWriterUtil.fileName(configuration.printMapping) + "]...");
            }
        }

        // Perform the actual obfuscation.
        new Obfuscator(configuration).execute(programClassPool,
                                              libraryClassPool);
    }

Obfuscator類是真正做混淆處理的類,比如這里的成員混淆者M(jìn)emberObfuscator

NameFactory nameFactory = new SimpleNameFactory();
        if (configuration.obfuscationDictionary != null)
        {
            nameFactory =
                new DictionaryNameFactory(configuration.obfuscationDictionary,
                                          nameFactory);
        }

        WarningPrinter warningPrinter = new WarningPrinter(System.err, configuration.warn);

        // Maintain a map of names to avoid [descriptor - new name - old name].
        Map descriptorMap = new HashMap();

        // Do the class member names have to be globally unique?
        if (configuration.useUniqueClassMemberNames)
        {
            // Collect all member names in all classes.
            programClassPool.classesAccept(
                new AllMemberVisitor(
                new MemberNameCollector(configuration.overloadAggressively,
                                        descriptorMap)));

            // Assign new names to all members in all classes.
            programClassPool.classesAccept(
                new AllMemberVisitor(
                new MemberObfuscator(configuration.overloadAggressively,
                                     nameFactory,
                                     descriptorMap)));

其初始化完畢后囤萤,內(nèi)部循環(huán)調(diào)用nameFactory.nextName方法進(jìn)行混淆

String newName = newMemberName(member);

        // Assign a new one, if necessary.
        if (newName == null)
        {
            // Find an acceptable new name.
            nameFactory.reset();

            do
            {
                newName = nameFactory.nextName();
            }
            while (nameMap.containsKey(newName));

            // Remember not to use the new name again in this name space.
            nameMap.put(newName, name);

            // Assign the new name.
            setNewMemberName(member, newName);
        }

混淆規(guī)則就在諸如SimpleNameFactory類的工廠類里。

 public String nextName() {
        return name(index++);
    }

private String name(int index) {
        // Which cache do we need?
        List cachedNames = generateMixedCaseNames ?
                cachedMixedCaseNames :
                cachedLowerCaseNames;

        // Do we have the name in the cache?
        if (index < cachedNames.size()) {
            return (String) cachedNames.get(index);
        }

        // Create a new name and cache it.
        String name = newName(index);
        cachedNames.add(index, name);

        return name;
    }


    /**
     * Creates and returns the name at the given index.
     */
    private String newName(int index) {
        // If we're allowed to generate mixed-case names, we can use twice as
        // many characters.
        int totalCharacterCount = generateMixedCaseNames ?
                2 * CHARACTER_COUNT :
                CHARACTER_COUNT;

        int baseIndex = index / totalCharacterCount;
        System.out.println(baseIndex);
        int offset = index % totalCharacterCount;
        System.out.println(offset);

        char newChar = charAt(offset);

        String newName = baseIndex == 0 ?
                new String(new char[]{newChar}) :
                (name(baseIndex - 1) + newChar);
        return newName;

        //修改后的方法
//        String newStr = stringAt(offset);
//        String newStrName = baseIndex == 0 ? new String(newStr) : (name(baseIndex - 1) + newStr);
//        return newStrName;
    }


    /**
     * Returns the character with the given index, between 0 and the number of
     * acceptable characters.
     */
    private char charAt(int index) {
        return (char) ((index < CHARACTER_COUNT ?
//                'o' : 'O'));//修改
                'a' - 0 : 'A' - CHARACTER_COUNT) + index);
    }

    /**
     * 隨機(jī)產(chǎn)生五個字符串內(nèi)容
     *
     * @param index
     * @return
     */
    private String stringAt(int index) {
//        return new String(new char[]{
//                '談', '笑', '風(fēng)', '聲', '蛤'
//        });
        return new String(new char[]{
                (char) (CHARACTER_START + index),
                (char) (CHARACTER_START + 1 + index),
                (char) (CHARACTER_START + 2 + index),
                (char) (CHARACTER_START + 3 + index),
                (char) (CHARACTER_START + 4 + index)
        });
    }

混淆就是用簡單字符替換原有字符
這里值得注意的是逆巍,string因?yàn)槭莻€不可變類惧辈,初始化后就放在字符串池里,完全可以復(fù)用铆遭,PG也是這樣做的硝桩。
在name方法里,generateMixedCaseNames是其構(gòu)造方法傳來的枚荣,
用處是判斷:拿大小寫混合字符緩存池碗脊,還是純小寫字符緩存池。
說白了就是混淆用大小寫橄妆,還是純小寫衙伶。

通過index判斷,之前有沒有new過該string害碾,有的話就直接從緩存池拿矢劲,否則就new,并且放入緩存池慌随。

參考
http://leanote.com/s/599d6779ab6441379c001ec7

http://www.520monkey.com/archives/992

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末芬沉,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子阁猜,更是在濱河造成了極大的恐慌丸逸,老刑警劉巖,帶你破解...
    沈念sama閱讀 207,113評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件剃袍,死亡現(xiàn)場離奇詭異黄刚,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)民效,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,644評論 2 381
  • 文/潘曉璐 我一進(jìn)店門憔维,熙熙樓的掌柜王于貴愁眉苦臉地迎上來侍芝,“玉大人,你說我怎么就攤上這事埋同≈莸” “怎么了?”我有些...
    開封第一講書人閱讀 153,340評論 0 344
  • 文/不壞的土叔 我叫張陵凶赁,是天一觀的道長咧栗。 經(jīng)常有香客問我,道長虱肄,這世上最難降的妖魔是什么致板? 我笑而不...
    開封第一講書人閱讀 55,449評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮咏窿,結(jié)果婚禮上斟或,老公的妹妹穿的比我還像新娘。我一直安慰自己集嵌,他們只是感情好萝挤,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,445評論 5 374
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著根欧,像睡著了一般怜珍。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上凤粗,一...
    開封第一講書人閱讀 49,166評論 1 284
  • 那天酥泛,我揣著相機(jī)與錄音,去河邊找鬼嫌拣。 笑死柔袁,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的异逐。 我是一名探鬼主播捶索,決...
    沈念sama閱讀 38,442評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼应役!你這毒婦竟也來了情组?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,105評論 0 261
  • 序言:老撾萬榮一對情侶失蹤箩祥,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后肆氓,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體袍祖,經(jīng)...
    沈念sama閱讀 43,601評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,066評論 2 325
  • 正文 我和宋清朗相戀三年谢揪,在試婚紗的時候發(fā)現(xiàn)自己被綠了蕉陋。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片捐凭。...
    茶點(diǎn)故事閱讀 38,161評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖凳鬓,靈堂內(nèi)的尸體忽然破棺而出茁肠,到底是詐尸還是另有隱情,我是刑警寧澤缩举,帶...
    沈念sama閱讀 33,792評論 4 323
  • 正文 年R本政府宣布垦梆,位于F島的核電站,受9級特大地震影響仅孩,放射性物質(zhì)發(fā)生泄漏托猩。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,351評論 3 307
  • 文/蒙蒙 一辽慕、第九天 我趴在偏房一處隱蔽的房頂上張望京腥。 院中可真熱鬧,春花似錦溅蛉、人聲如沸公浪。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,352評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽因悲。三九已至,卻和暖如春勺爱,著一層夾襖步出監(jiān)牢的瞬間晃琳,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,584評論 1 261
  • 我被黑心中介騙來泰國打工琐鲁, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留卫旱,地道東北人。 一個月前我還...
    沈念sama閱讀 45,618評論 2 355
  • 正文 我出身青樓围段,卻偏偏與公主長得像顾翼,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子奈泪,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,916評論 2 344