about summary refs log tree commit diff stats
path: root/html/subx/053new_segment.subx.html
blob: 9e0e47d6746ea56171702664ec387e8b30a16f37 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Mu - subx/053new_segment.subx</title>
<meta name="Generator" content="Vim/8.0">
<meta name="plugin-version" content="vim7.4_v2">
<meta name="syntax" content="none">
<meta name="settings" content="number_lines,use_css,no_foldcolumn,expand_tabs,line_ids,prevent_copy=">
<meta name="colorscheme" content="minimal-light">
<style type="text/css">
<!--
pre { font-family: monospace; color: #000000; background-color: #c6c6c6; }
body { font-size:12pt; font-family: monospace; color: #000000; background-color: #c6c6c6; }
a { color:inherit; }
* { font-size:12pt; font-size: 1em; }
.subxComment { color: #005faf; }
.subxS2Comment { color: #8a8a8a; }
.subxMinorFunction { color: #875f5f; }
.LineNr { }
.subxS1Comment { color: #0000af; }
.subxFunction { color: #af5f00; text-decoration: underline; }
.Constant { color: #008787; }
.Normal { color: #000000; background-color: #c6c6c6; padding-bottom: 1px; }
-->
</style>

<script type='text/javascript'>
<!--

/* function to open any folds containing a jumped-to line before jumping to it */
function JumpToLine()
{
  var lineNum;
  lineNum = window.location.hash;
  lineNum = lineNum.substr(1); /* strip off '#' */

  if (lineNum.indexOf('L') == -1) {
    lineNum = 'L'+lineNum;
  }
  lineElem = document.getElementById(lineNum);
  /* Always jump to new location even if the line was hidden inside a fold, or
   * we corrected the raw number to a line ID.
   */
  if (lineElem) {
    lineElem.scrollIntoView(true);
  }
  return true;
}
if ('onhashchange' in window) {
  window.onhashchange = JumpToLine;
}

-->
</script>
</head>
<body onload='JumpToLine();'>
<a href='https://github.com/akkartik/mu/blob/master/subx/053new_segment.subx'>https://github.com/akkartik/mu/blob/master/subx/053new_segment.subx</a>
<pre id='vimCodeElement'>
<span id="L1" class="LineNr"> 1 </span><span class="subxComment"># Create a new segment (for data) using mmap().</span>
<span id="L2" class="LineNr"> 2 </span>
<span id="L3" class="LineNr"> 3 </span>== code
<span id="L4" class="LineNr"> 4 </span><span class="subxComment">#   instruction                     effective address                                                   register    displacement    immediate</span>
<span id="L5" class="LineNr"> 5 </span><span class="subxS1Comment"># . op          subop               mod             rm32          base        index         scale       r32</span>
<span id="L6" class="LineNr"> 6 </span><span class="subxS1Comment"># . 1-3 bytes   3 bits              2 bits          3 bits        3 bits      3 bits        2 bits      2 bits      0/1/2/4 bytes   0/1/2/4 bytes</span>
<span id="L7" class="LineNr"> 7 </span>
<span id="L8" class="LineNr"> 8 </span><span class="subxComment"># main:  (manual test if this is the last file loaded)</span>
<span id="L9" class="LineNr"> 9 </span>    <span class="subxComment"># EAX = new-segment(0x1000)</span>
<span id="L10" class="LineNr">10 </span>    <span class="subxS2Comment"># . . push args</span>
<span id="L11" class="LineNr">11 </span>    68/push  0x1000/imm32
<span id="L12" class="LineNr">12 </span>    <span class="subxS2Comment"># . . call</span>
<span id="L13" class="LineNr">13 </span>    e8/call  <a href='053new_segment.subx.html#L25'>new-segment</a>/disp32
<span id="L14" class="LineNr">14 </span>    <span class="subxS2Comment"># . . discard args</span>
<span id="L15" class="LineNr">15 </span>    81          0/subop/add         3/mod/direct    4/rm32/ESP   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>         <span class="Normal"> . </span>         <span class="Normal"> . </span>              4/imm32           <span class="subxComment"># add to ESP</span>
<span id="L16" class="LineNr">16 </span>
<span id="L17" class="LineNr">17 </span>    <span class="subxComment"># write to *EAX to check that we have access to the newly-allocated segment</span>
<span id="L18" class="LineNr">18 </span>    c7          0/subop/copy        0/mod/direct    0/rm32/EAX   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>         <span class="Normal"> . </span>         <span class="Normal"> . </span>              0x34/imm32        <span class="subxComment"># copy to *EAX</span>
<span id="L19" class="LineNr">19 </span>
<span id="L20" class="LineNr">20 </span>    <span class="subxComment"># syscall(exit, EAX)</span>
<span id="L21" class="LineNr">21 </span>    89/copy                         3/mod/direct    3/rm32/EBX   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>          0/r32/EAX  <span class="Normal"> . </span>             <span class="Normal"> . </span>                <span class="subxComment"># copy EAX to EBX</span>
<span id="L22" class="LineNr">22 </span>    b8/copy-to-EAX  1/imm32/exit
<span id="L23" class="LineNr">23 </span>    cd/syscall  0x80/imm8
<span id="L24" class="LineNr">24 </span>
<span id="L25" class="LineNr">25 </span><span class="subxFunction"><a href='053new_segment.subx.html#L25'>new-segment</a></span>:  <span class="subxComment"># len : int -&gt; address</span>
<span id="L26" class="LineNr">26 </span>    <span class="subxS1Comment"># . prolog</span>
<span id="L27" class="LineNr">27 </span>    55/push-EBP
<span id="L28" class="LineNr">28 </span>    89/copy                         3/mod/direct    5/rm32/EBP   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>          4/r32/ESP  <span class="Normal"> . </span>             <span class="Normal"> . </span>                <span class="subxComment"># copy ESP to EBP</span>
<span id="L29" class="LineNr">29 </span>    53/push-EBX
<span id="L30" class="LineNr">30 </span>    <span class="subxComment"># copy len to _mmap-new-segment-&gt;len</span>
<span id="L31" class="LineNr">31 </span>    <span class="subxComment"># TODO: compute _mmap-new-segment+4 before runtime</span>
<span id="L32" class="LineNr">32 </span>    8b/copy                         1/mod/*+disp8   5/rm32/EBP   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>          0/r32/EAX   8/disp8        <span class="Normal"> . </span>                <span class="subxComment"># copy *(EBP+8) to EAX</span>
<span id="L33" class="LineNr">33 </span>    bb/copy-to-EBX  <a href='053new_segment.subx.html#L49'>_mmap-new-segment</a>/imm32
<span id="L34" class="LineNr">34 </span>    89/copy                         1/mod/*+disp8   3/rm32/EBX   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>          0/r32/EAX   4/disp8        <span class="Normal"> . </span>                <span class="subxComment"># copy EAX to *(EBX+4)</span>
<span id="L35" class="LineNr">35 </span>    <span class="subxComment"># mmap(_mmap-new-segment)</span>
<span id="L36" class="LineNr">36 </span>    bb/copy-to-EBX  <a href='053new_segment.subx.html#L49'>_mmap-new-segment</a>/imm32
<span id="L37" class="LineNr">37 </span>    b8/copy-to-EAX  0x5a/imm32/mmap
<span id="L38" class="LineNr">38 </span>    cd/syscall  0x80/imm8
<span id="L39" class="LineNr">39 </span><span class="Constant">$new-segment:end</span>:
<span id="L40" class="LineNr">40 </span>    <span class="subxS1Comment"># . epilog</span>
<span id="L41" class="LineNr">41 </span>    5b/pop-to-EBX
<span id="L42" class="LineNr">42 </span>    89/copy                         3/mod/direct    4/rm32/ESP   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>          5/r32/EBP  <span class="Normal"> . </span>             <span class="Normal"> . </span>                <span class="subxComment"># copy EBP to ESP</span>
<span id="L43" class="LineNr">43 </span>    5d/pop-to-EBP
<span id="L44" class="LineNr">44 </span>    c3/return
<span id="L45" class="LineNr">45 </span>
<span id="L46" class="LineNr">46 </span>== data
<span id="L47" class="LineNr">47 </span>
<span id="L48" class="LineNr">48 </span><span class="subxComment"># various constants used here were found in the Linux sources (search for file mman-common.h)</span>
<span id="L49" class="LineNr">49 </span><span class="subxMinorFunction"><a href='053new_segment.subx.html#L49'>_mmap-new-segment</a></span>:  <span class="subxComment"># type mmap_arg_struct</span>
<span id="L50" class="LineNr">50 </span>    <span class="subxComment"># addr</span>
<span id="L51" class="LineNr">51 </span>    00 00 00 00  <span class="subxComment"># null</span>
<span id="L52" class="LineNr">52 </span>    <span class="subxComment"># len</span>
<span id="L53" class="LineNr">53 </span>    00 00 00 00  <span class="subxComment"># 0x1000</span>
<span id="L54" class="LineNr">54 </span>    <span class="subxComment"># protection flags</span>
<span id="L55" class="LineNr">55 </span>    03 00 00 00  <span class="subxComment"># PROT_READ | PROT_WRITE</span>
<span id="L56" class="LineNr">56 </span>    <span class="subxComment"># sharing flags</span>
<span id="L57" class="LineNr">57 </span>    22 00 00 00  <span class="subxComment"># MAP_PRIVATE | MAP_ANONYMOUS</span>
<span id="L58" class="LineNr">58 </span>    <span class="subxComment"># fd</span>
<span id="L59" class="LineNr">59 </span>    ff ff ff ff  <span class="subxComment"># -1 since MAP_ANONYMOUS is specified</span>
<span id="L60" class="LineNr">60 </span>    <span class="subxComment"># offset</span>
<span id="L61" class="LineNr">61 </span>    00 00 00 00  <span class="subxComment"># 0 since MAP_ANONYMOUS is specified</span>
<span id="L62" class="LineNr">62 </span>
<span id="L63" class="LineNr">63 </span><span class="subxS2Comment"># . . vim&#0058;nowrap:textwidth=0</span>
</pre>
</body>
</html>
<!-- vim: set foldmethod=manual : -->
="cm"> * */ #include <stdlib.h> #include <string.h> #include <glib.h> #include <glib/gstdio.h> #include "config/tlscerts.h" #include "log.h" #include "common.h" #include "tools/autocomplete.h" static gchar *tlscerts_loc; static GKeyFile *tlscerts; static gchar* _get_tlscerts_file(void); static void _save_tlscerts(void); static Autocomplete certs_ac; static char *current_fp; void tlscerts_init(void) { log_info("Loading TLS certificates"); tlscerts_loc = _get_tlscerts_file(); if (g_file_test(tlscerts_loc, G_FILE_TEST_EXISTS)) { g_chmod(tlscerts_loc, S_IRUSR | S_IWUSR); } tlscerts = g_key_file_new(); g_key_file_load_from_file(tlscerts, tlscerts_loc, G_KEY_FILE_KEEP_COMMENTS, NULL); certs_ac = autocomplete_new(); gsize len = 0; gchar **groups = g_key_file_get_groups(tlscerts, &len); int i = 0; for (i = 0; i < g_strv_length(groups); i++) { autocomplete_add(certs_ac, groups[i]); } g_strfreev(groups); current_fp = NULL; } void tlscerts_set_current(const char *const fp) { if (current_fp) { free(current_fp); } current_fp = strdup(fp); } char* tlscerts_get_current(void) { return current_fp; } void tlscerts_clear_current(void) { if (current_fp) { free(current_fp); current_fp = NULL; } } gboolean tlscerts_exists(const char *const fingerprint) { return g_key_file_has_group(tlscerts, fingerprint); } GList* tlscerts_list(void) { GList *res = NULL; gsize len = 0; gchar **groups = g_key_file_get_groups(tlscerts, &len); int i = 0; for (i = 0; i < g_strv_length(groups); i++) { char *fingerprint = strdup(groups[i]); int version = g_key_file_get_integer(tlscerts, fingerprint, "version", NULL); char *serialnumber = g_key_file_get_string(tlscerts, fingerprint, "serialnumber", NULL); char *subjectname = g_key_file_get_string(tlscerts, fingerprint, "subjectname", NULL); char *issuername = g_key_file_get_string(tlscerts, fingerprint, "issuername", NULL); char *notbefore = g_key_file_get_string(tlscerts, fingerprint, "start", NULL); char *notafter = g_key_file_get_string(tlscerts, fingerprint, "end", NULL); char *keyalg = g_key_file_get_string(tlscerts, fingerprint, "keyalg", NULL); char *signaturealg = g_key_file_get_string(tlscerts, fingerprint, "signaturealg", NULL); TLSCertificate *cert = tlscerts_new(fingerprint, version, serialnumber, subjectname, issuername, notbefore, notafter, keyalg, signaturealg); free(fingerprint); free(serialnumber); free(subjectname); free(issuername); free(notbefore); free(notafter); free(keyalg); free(signaturealg); res = g_list_append(res, cert); } if (groups) { g_strfreev(groups); } return res; } TLSCertificate* tlscerts_new(const char *const fingerprint, int version, const char *const serialnumber, const char *const subjectname, const char *const issuername, const char *const notbefore, const char *const notafter, const char *const key_alg, const char *const signature_alg) { TLSCertificate *cert = malloc(sizeof(TLSCertificate)); if (fingerprint) { cert->fingerprint = strdup(fingerprint); } else { cert->fingerprint = NULL; } cert->version = version; if (serialnumber) { cert->serialnumber = strdup(serialnumber); } else { cert->serialnumber = NULL; } if (subjectname) { cert->subjectname = strdup(subjectname); } else { cert->subjectname = NULL; } if (issuername) { cert->issuername = strdup(issuername); } else { cert->issuername = NULL; } if (notbefore) { cert->notbefore = strdup(notbefore); } else { cert->notbefore = NULL; } if (notafter) { cert->notafter = strdup(notafter); } else { cert->notafter = NULL; } if (key_alg) { cert->key_alg = strdup(key_alg); } else { cert->key_alg = NULL; } if (signature_alg) { cert->signature_alg = strdup(signature_alg); } else { cert->signature_alg = NULL; } cert->subject_country = NULL; cert->subject_state = NULL; cert->subject_distinguishedname = NULL; cert->subject_serialnumber = NULL; cert->subject_commonname = NULL; cert->subject_organisation = NULL; cert->subject_organisation_unit = NULL; cert->subject_email = NULL; gchar** fields = g_strsplit(subjectname, "/", 0); int i = 0; for (i = 0; i < g_strv_length(fields); i++) { gchar** keyval = g_strsplit(fields[i], "=", 2); if (g_strv_length(keyval) == 2) { if ((g_strcmp0(keyval[0], "C") == 0) || (g_strcmp0(keyval[0], "countryName") == 0)) { cert->subject_country = strdup(keyval[1]); } if ((g_strcmp0(keyval[0], "ST") == 0) || (g_strcmp0(keyval[0], "stateOrProvinceName") == 0)) { cert->subject_state = strdup(keyval[1]); } if (g_strcmp0(keyval[0], "dnQualifier") == 0) { cert->subject_distinguishedname = strdup(keyval[1]); } if (g_strcmp0(keyval[0], "serialnumber") == 0) { cert->subject_serialnumber = strdup(keyval[1]); } if ((g_strcmp0(keyval[0], "CN") == 0) || (g_strcmp0(keyval[0], "commonName") == 0)) { cert->subject_commonname = strdup(keyval[1]); } if ((g_strcmp0(keyval[0], "O") == 0) || (g_strcmp0(keyval[0], "organizationName") == 0)) { cert->subject_organisation = strdup(keyval[1]); } if ((g_strcmp0(keyval[0], "OU") == 0) || (g_strcmp0(keyval[0], "organizationalUnitName") == 0)) { cert->subject_organisation_unit = strdup(keyval[1]); } if (g_strcmp0(keyval[0], "emailAddress") == 0) { cert->subject_email = strdup(keyval[1]); } } g_strfreev(keyval); } g_strfreev(fields); cert->issuer_country = NULL; cert->issuer_state = NULL; cert->issuer_distinguishedname = NULL; cert->issuer_serialnumber = NULL; cert->issuer_commonname = NULL; cert->issuer_organisation = NULL; cert->issuer_organisation_unit = NULL; cert->issuer_email = NULL; fields = g_strsplit(issuername, "/", 0); for (i = 0; i < g_strv_length(fields); i++) { gchar** keyval = g_strsplit(fields[i], "=", 2); if (g_strv_length(keyval) == 2) { if ((g_strcmp0(keyval[0], "C") == 0) || (g_strcmp0(keyval[0], "countryName") == 0)) { cert->issuer_country = strdup(keyval[1]); } if ((g_strcmp0(keyval[0], "ST") == 0) || (g_strcmp0(keyval[0], "stateOrProvinceName") == 0)) { cert->issuer_state = strdup(keyval[1]); } if (g_strcmp0(keyval[0], "dnQualifier") == 0) { cert->issuer_distinguishedname = strdup(keyval[1]); } if (g_strcmp0(keyval[0], "serialnumber") == 0) { cert->issuer_serialnumber = strdup(keyval[1]); } if ((g_strcmp0(keyval[0], "CN") == 0) || (g_strcmp0(keyval[0], "commonName") == 0)) { cert->issuer_commonname = strdup(keyval[1]); } if ((g_strcmp0(keyval[0], "O") == 0) || (g_strcmp0(keyval[0], "organizationName") == 0)) { cert->issuer_organisation = strdup(keyval[1]); } if ((g_strcmp0(keyval[0], "OU") == 0) || (g_strcmp0(keyval[0], "organizationalUnitName") == 0)) { cert->issuer_organisation_unit = strdup(keyval[1]); } if (g_strcmp0(keyval[0], "emailAddress") == 0) { cert->issuer_email = strdup(keyval[1]); } } g_strfreev(keyval); } g_strfreev(fields); return cert; } void tlscerts_add(TLSCertificate *cert) { if (!cert) { return; } if (!cert->fingerprint) { return; } autocomplete_add(certs_ac, cert->fingerprint); g_key_file_set_integer(tlscerts, cert->fingerprint, "version", cert->version); if (cert->serialnumber) { g_key_file_set_string(tlscerts, cert->fingerprint, "serialnumber", cert->serialnumber); } if (cert->subjectname) { g_key_file_set_string(tlscerts, cert->fingerprint, "subjectname", cert->subjectname); } if (cert->issuername) { g_key_file_set_string(tlscerts, cert->fingerprint, "issuername", cert->issuername); } if (cert->notbefore) { g_key_file_set_string(tlscerts, cert->fingerprint, "start", cert->notbefore); } if (cert->notafter) { g_key_file_set_string(tlscerts, cert->fingerprint, "end", cert->notafter); } if (cert->key_alg) { g_key_file_set_string(tlscerts, cert->fingerprint, "keyalg", cert->key_alg); } if (cert->signature_alg) { g_key_file_set_string(tlscerts, cert->fingerprint, "signaturealg", cert->signature_alg); } _save_tlscerts(); } gboolean tlscerts_revoke(const char *const fingerprint) { gboolean result = g_key_file_remove_group(tlscerts, fingerprint, NULL); if (result) { autocomplete_remove(certs_ac, fingerprint); } _save_tlscerts(); return result; } TLSCertificate* tlscerts_get_trusted(const char * const fingerprint) { if (!g_key_file_has_group(tlscerts, fingerprint)) { return NULL; } int version = g_key_file_get_integer(tlscerts, fingerprint, "version", NULL); char *serialnumber = g_key_file_get_string(tlscerts, fingerprint, "serialnumber", NULL); char *subjectname = g_key_file_get_string(tlscerts, fingerprint, "subjectname", NULL); char *issuername = g_key_file_get_string(tlscerts, fingerprint, "issuername", NULL); char *notbefore = g_key_file_get_string(tlscerts, fingerprint, "start", NULL); char *notafter = g_key_file_get_string(tlscerts, fingerprint, "end", NULL); char *keyalg = g_key_file_get_string(tlscerts, fingerprint, "keyalg", NULL); char *signaturealg = g_key_file_get_string(tlscerts, fingerprint, "signaturealg", NULL); TLSCertificate *cert = tlscerts_new(fingerprint, version, serialnumber, subjectname, issuername, notbefore, notafter, keyalg, signaturealg); free(serialnumber); free(subjectname); free(issuername); free(notbefore); free(notafter); free(keyalg); free(signaturealg); return cert; } char* tlscerts_complete(const char *const prefix) { return autocomplete_complete(certs_ac, prefix, TRUE); } void tlscerts_reset_ac(void) { autocomplete_reset(certs_ac); } void tlscerts_free(TLSCertificate *cert) { if (cert) { free(cert->serialnumber); free(cert->subjectname); free(cert->subject_country); free(cert->subject_state); free(cert->subject_distinguishedname); free(cert->subject_serialnumber); free(cert->subject_commonname); free(cert->subject_organisation); free(cert->subject_organisation_unit); free(cert->subject_email); free(cert->issuername); free(cert->issuer_country); free(cert->issuer_state); free(cert->issuer_distinguishedname); free(cert->issuer_serialnumber); free(cert->issuer_commonname); free(cert->issuer_organisation); free(cert->issuer_organisation_unit); free(cert->issuer_email); free(cert->notbefore); free(cert->notafter); free(cert->fingerprint); free(cert->key_alg); free(cert->signature_alg); } } void tlscerts_close(void) { g_key_file_free(tlscerts); tlscerts = NULL; free(current_fp); current_fp = NULL; autocomplete_free(certs_ac); } static gchar* _get_tlscerts_file(void) { gchar *xdg_data = xdg_get_data_home(); GString *tlscerts_file = g_string_new(xdg_data); g_string_append(tlscerts_file, "/profanity/tlscerts"); gchar *result = strdup(tlscerts_file->str); g_free(xdg_data); g_string_free(tlscerts_file, TRUE); return result; } static void _save_tlscerts(void) { gsize g_data_size; gchar *g_tlscerts_data = g_key_file_to_data(tlscerts, &g_data_size, NULL); g_file_set_contents(tlscerts_loc, g_tlscerts_data, g_data_size, NULL); g_chmod(tlscerts_loc, S_IRUSR | S_IWUSR); g_free(g_tlscerts_data); }