|
| 1 | +/*------------------------------------------------------------------------- |
| 2 | + * |
| 3 | + * proclang.c-- |
| 4 | + * PostgreSQL PROCEDURAL LANGUAGE support code. |
| 5 | + * |
| 6 | + *------------------------------------------------------------------------- |
| 7 | + */ |
| 8 | +#include <ctype.h> |
| 9 | +#include <string.h> |
| 10 | +#include "postgres.h" |
| 11 | + |
| 12 | +#include "access/heapam.h" |
| 13 | +#include "catalog/catname.h" |
| 14 | +#include "catalog/pg_user.h" |
| 15 | +#include "catalog/pg_proc.h" |
| 16 | +#include "catalog/pg_language.h" |
| 17 | +#include "utils/syscache.h" |
| 18 | +#include "commands/proclang.h" |
| 19 | +#include "fmgr.h" |
| 20 | + |
| 21 | + |
| 22 | +static void |
| 23 | +case_translate_language_name(const char *input, char *output) |
| 24 | +{ |
| 25 | +/*------------------------------------------------------------------------- |
| 26 | + Translate the input language name to lower case, except if it's C, |
| 27 | + translate to upper case. |
| 28 | +--------------------------------------------------------------------------*/ |
| 29 | + int i; |
| 30 | + |
| 31 | + for (i = 0; i < NAMEDATALEN && input[i] != '\0'; ++i) |
| 32 | + output[i] = tolower(input[i]); |
| 33 | + |
| 34 | + output[i] = '\0'; |
| 35 | + |
| 36 | + if (strcmp(output, "c") == 0) |
| 37 | + output[0] = 'C'; |
| 38 | +} |
| 39 | + |
| 40 | + |
| 41 | +/* --------------------------------------------------------------------- |
| 42 | + * CREATE PROCEDURAL LANGUAGE |
| 43 | + * --------------------------------------------------------------------- |
| 44 | + */ |
| 45 | +void |
| 46 | +CreateProceduralLanguage(CreatePLangStmt * stmt) |
| 47 | +{ |
| 48 | + char languageName[NAMEDATALEN]; |
| 49 | + HeapTuple langTup; |
| 50 | + HeapTuple procTup; |
| 51 | + |
| 52 | + Oid typev[8]; |
| 53 | + char nulls[Natts_pg_language]; |
| 54 | + Datum values[Natts_pg_language]; |
| 55 | + Relation rdesc; |
| 56 | + HeapTuple tup; |
| 57 | + TupleDesc tupDesc; |
| 58 | + |
| 59 | + int i; |
| 60 | + |
| 61 | + /* ---------------- |
| 62 | + * Check permission |
| 63 | + * ---------------- |
| 64 | + */ |
| 65 | + if (!superuser()) |
| 66 | + { |
| 67 | + elog(WARN, "Only users with Postgres superuser privilege are " |
| 68 | + "permitted to create procedural languages"); |
| 69 | + } |
| 70 | + |
| 71 | + /* ---------------- |
| 72 | + * Translate the language name and check that |
| 73 | + * this language doesn't already exist |
| 74 | + * ---------------- |
| 75 | + */ |
| 76 | + case_translate_language_name(stmt->plname, languageName); |
| 77 | + |
| 78 | + langTup = SearchSysCacheTuple(LANNAME, |
| 79 | + PointerGetDatum(languageName), |
| 80 | + 0, 0, 0); |
| 81 | + if (HeapTupleIsValid(langTup)) |
| 82 | + { |
| 83 | + elog(WARN, "Language %s already exists", languageName); |
| 84 | + } |
| 85 | + |
| 86 | + /* ---------------- |
| 87 | + * Lookup the PL handler function and check that it is |
| 88 | + * of return type Opaque |
| 89 | + * ---------------- |
| 90 | + */ |
| 91 | + memset(typev, 0, sizeof(typev)); |
| 92 | + procTup = SearchSysCacheTuple(PRONAME, |
| 93 | + PointerGetDatum(stmt->plhandler), |
| 94 | + UInt16GetDatum(0), |
| 95 | + PointerGetDatum(typev), |
| 96 | + 0); |
| 97 | + if (!HeapTupleIsValid(procTup)) |
| 98 | + { |
| 99 | + elog(WARN, "PL handler function %s() doesn't exist", |
| 100 | + stmt->plhandler); |
| 101 | + } |
| 102 | + if (((Form_pg_proc) GETSTRUCT(procTup))->prorettype != InvalidOid) |
| 103 | + { |
| 104 | + elog(WARN, "PL handler function %s() isn't of return type Opaque", |
| 105 | + stmt->plhandler); |
| 106 | + } |
| 107 | + |
| 108 | + /* ---------------- |
| 109 | + * Insert the new language into pg_language |
| 110 | + * ---------------- |
| 111 | + */ |
| 112 | + for (i = 0; i < Natts_pg_language; i++) |
| 113 | + { |
| 114 | + nulls[i] = ' '; |
| 115 | + values[i] = (Datum) NULL; |
| 116 | + } |
| 117 | + |
| 118 | + i = 0; |
| 119 | + values[i++] = PointerGetDatum(languageName); |
| 120 | + values[i++] = Int8GetDatum((bool) 1); |
| 121 | + values[i++] = Int8GetDatum(stmt->pltrusted); |
| 122 | + values[i++] = ObjectIdGetDatum(procTup->t_oid); |
| 123 | + values[i++] = (Datum) fmgr(TextInRegProcedure, stmt->plcompiler); |
| 124 | + |
| 125 | + rdesc = heap_openr(LanguageRelationName); |
| 126 | + |
| 127 | + tupDesc = rdesc->rd_att; |
| 128 | + tup = heap_formtuple(tupDesc, values, nulls); |
| 129 | + |
| 130 | + heap_insert(rdesc, tup); |
| 131 | + |
| 132 | + heap_close(rdesc); |
| 133 | + return; |
| 134 | +} |
| 135 | + |
| 136 | + |
| 137 | +/* --------------------------------------------------------------------- |
| 138 | + * DROP PROCEDURAL LANGUAGE |
| 139 | + * --------------------------------------------------------------------- |
| 140 | + */ |
| 141 | +void |
| 142 | +DropProceduralLanguage(DropPLangStmt * stmt) |
| 143 | +{ |
| 144 | + char languageName[NAMEDATALEN]; |
| 145 | + HeapTuple langTup; |
| 146 | + |
| 147 | + Relation rdesc; |
| 148 | + HeapScanDesc scanDesc; |
| 149 | + ScanKeyData scanKeyData; |
| 150 | + HeapTuple tup; |
| 151 | + |
| 152 | + /* ---------------- |
| 153 | + * Check permission |
| 154 | + * ---------------- |
| 155 | + */ |
| 156 | + if (!superuser()) |
| 157 | + { |
| 158 | + elog(WARN, "Only users with Postgres superuser privilege are " |
| 159 | + "permitted to drop procedural languages"); |
| 160 | + } |
| 161 | + |
| 162 | + /* ---------------- |
| 163 | + * Translate the language name, check that |
| 164 | + * this language exist and is a PL |
| 165 | + * ---------------- |
| 166 | + */ |
| 167 | + case_translate_language_name(stmt->plname, languageName); |
| 168 | + |
| 169 | + langTup = SearchSysCacheTuple(LANNAME, |
| 170 | + PointerGetDatum(languageName), |
| 171 | + 0, 0, 0); |
| 172 | + if (!HeapTupleIsValid(langTup)) |
| 173 | + { |
| 174 | + elog(WARN, "Language %s doesn't exist", languageName); |
| 175 | + } |
| 176 | + |
| 177 | + if (!((Form_pg_language) GETSTRUCT(langTup))->lanispl) |
| 178 | + { |
| 179 | + elog(WARN, "Language %s isn't a created procedural language", |
| 180 | + languageName); |
| 181 | + } |
| 182 | + |
| 183 | + /* ---------------- |
| 184 | + * Now scan pg_language and delete the PL tuple |
| 185 | + * ---------------- |
| 186 | + */ |
| 187 | + rdesc = heap_openr(LanguageRelationName); |
| 188 | + |
| 189 | + ScanKeyEntryInitialize(&scanKeyData, 0, Anum_pg_language_lanname, |
| 190 | + F_NAMEEQ, PointerGetDatum(languageName)); |
| 191 | + |
| 192 | + scanDesc = heap_beginscan(rdesc, 0, NowTimeQual, 1, &scanKeyData); |
| 193 | + |
| 194 | + tup = heap_getnext(scanDesc, 0, (Buffer *) NULL); |
| 195 | + |
| 196 | + if (!HeapTupleIsValid(tup)) |
| 197 | + { |
| 198 | + elog(WARN, "Language with name '%s' not found", languageName); |
| 199 | + } |
| 200 | + |
| 201 | + heap_delete(rdesc, &(tup->t_ctid)); |
| 202 | + |
| 203 | + heap_endscan(scanDesc); |
| 204 | + heap_close(rdesc); |
| 205 | +} |
0 commit comments