PostgreSQL Source Code  git master
string.h File Reference
#include <signal.h>
Include dependency graph for string.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  PromptInterruptContext
 

Typedefs

typedef struct PromptInterruptContext PromptInterruptContext
 

Functions

bool pg_str_endswith (const char *str, const char *end)
 
int strtoint (const char *pg_restrict str, char **pg_restrict endptr, int base)
 
char * pg_clean_ascii (const char *str, int alloc_flags)
 
int pg_strip_crlf (char *str)
 
bool pg_is_ascii (const char *str)
 
char * pg_get_line (FILE *stream, PromptInterruptContext *prompt_ctx)
 
bool pg_get_line_buf (FILE *stream, struct StringInfoData *buf)
 
bool pg_get_line_append (FILE *stream, struct StringInfoData *buf, PromptInterruptContext *prompt_ctx)
 
char * simple_prompt (const char *prompt, bool echo)
 
char * simple_prompt_extended (const char *prompt, bool echo, PromptInterruptContext *prompt_ctx)
 

Typedef Documentation

◆ PromptInterruptContext

Function Documentation

◆ pg_clean_ascii()

char* pg_clean_ascii ( const char *  str,
int  alloc_flags 
)

Definition at line 86 of file string.c.

87 {
88  size_t dstlen;
89  char *dst;
90  const char *p;
91  size_t i = 0;
92 
93  /* Worst case, each byte can become four bytes, plus a null terminator. */
94  dstlen = strlen(str) * 4 + 1;
95 
96 #ifdef FRONTEND
97  dst = malloc(dstlen);
98 #else
99  dst = palloc_extended(dstlen, alloc_flags);
100 #endif
101 
102  if (!dst)
103  return NULL;
104 
105  for (p = str; *p != '\0'; p++)
106  {
107 
108  /* Only allow clean ASCII chars in the string */
109  if (*p < 32 || *p > 126)
110  {
111  Assert(i < (dstlen - 3));
112  snprintf(&dst[i], dstlen - i, "\\x%02x", (unsigned char) *p);
113  i += 4;
114  }
115  else
116  {
117  Assert(i < dstlen);
118  dst[i] = *p;
119  i++;
120  }
121  }
122 
123  Assert(i < dstlen);
124  dst[i] = '\0';
125  return dst;
126 }
#define malloc(a)
Definition: header.h:50
int i
Definition: isn.c:73
Assert(fmt[strlen(fmt) - 1] !='\n')
void * palloc_extended(Size size, int flags)
Definition: mcxt.c:1355
#define snprintf
Definition: port.h:238

References Assert(), i, malloc, palloc_extended(), snprintf, and generate_unaccent_rules::str.

Referenced by check_application_name(), check_cluster_name(), prepare_cert_name(), and ProcessStartupPacket().

◆ pg_get_line()

char* pg_get_line ( FILE *  stream,
PromptInterruptContext prompt_ctx 
)

Definition at line 59 of file pg_get_line.c.

60 {
62 
64 
65  if (!pg_get_line_append(stream, &buf, prompt_ctx))
66  {
67  /* ensure that free() doesn't mess up errno */
68  int save_errno = errno;
69 
70  pfree(buf.data);
71  errno = save_errno;
72  return NULL;
73  }
74 
75  return buf.data;
76 }
void pfree(void *pointer)
Definition: mcxt.c:1508
bool pg_get_line_append(FILE *stream, StringInfo buf, PromptInterruptContext *prompt_ctx)
Definition: pg_get_line.c:124
static char * buf
Definition: pg_test_fsync.c:73
void initStringInfo(StringInfo str)
Definition: stringinfo.c:59

References buf, initStringInfo(), pfree(), and pg_get_line_append().

Referenced by get_su_pwd(), pipe_read_line(), and simple_prompt_extended().

◆ pg_get_line_append()

bool pg_get_line_append ( FILE *  stream,
struct StringInfoData buf,
PromptInterruptContext prompt_ctx 
)

◆ pg_get_line_buf()

bool pg_get_line_buf ( FILE *  stream,
struct StringInfoData buf 
)

◆ pg_is_ascii()

bool pg_is_ascii ( const char *  str)

Definition at line 133 of file string.c.

134 {
135  while (*str)
136  {
137  if (IS_HIGHBIT_SET(*str))
138  return false;
139  str++;
140  }
141  return true;
142 }
#define IS_HIGHBIT_SET(ch)
Definition: c.h:1142

References IS_HIGHBIT_SET, and generate_unaccent_rules::str.

Referenced by parse_key_value_arrays(), pg_import_system_collations(), and pg_saslprep().

◆ pg_str_endswith()

bool pg_str_endswith ( const char *  str,
const char *  end 
)

Definition at line 32 of file string.c.

33 {
34  size_t slen = strlen(str);
35  size_t elen = strlen(end);
36 
37  /* can't be a postfix if longer */
38  if (elen > slen)
39  return false;
40 
41  /* compare the end of the strings */
42  str += slen - elen;
43  return strcmp(str, end) == 0;
44 }

References generate_unaccent_rules::str.

Referenced by decide_file_action(), and StartupReplicationSlots().

◆ pg_strip_crlf()

int pg_strip_crlf ( char *  str)

Definition at line 155 of file string.c.

156 {
157  int len = strlen(str);
158 
159  while (len > 0 && (str[len - 1] == '\n' ||
160  str[len - 1] == '\r'))
161  str[--len] = '\0';
162 
163  return len;
164 }
const void size_t len

References len, and generate_unaccent_rules::str.

Referenced by adjust_data_dir(), check_exec(), CheckDataVersion(), get_control_data(), get_prompt(), get_sock_dir(), get_su_pwd(), getRestoreCommand(), passwordFromFile(), run_ssl_passphrase_command(), simple_prompt_extended(), and tokenize_auth_file().

◆ simple_prompt()

char* simple_prompt ( const char *  prompt,
bool  echo 
)

Definition at line 38 of file sprompt.c.

39 {
40  return simple_prompt_extended(prompt, echo, NULL);
41 }
char * simple_prompt_extended(const char *prompt, bool echo, PromptInterruptContext *prompt_ctx)
Definition: sprompt.c:53

References simple_prompt_extended().

Referenced by ConnectDatabase(), connectDatabase(), doConnect(), get_su_pwd(), GetConnection(), main(), sql_conn(), vacuumlo(), and yesno_prompt().

◆ simple_prompt_extended()

char* simple_prompt_extended ( const char *  prompt,
bool  echo,
PromptInterruptContext prompt_ctx 
)

Definition at line 53 of file sprompt.c.

55 {
56  char *result;
57  FILE *termin,
58  *termout;
59 #if defined(HAVE_TERMIOS_H)
60  struct termios t_orig,
61  t;
62 #elif defined(WIN32)
63  HANDLE t = NULL;
64  DWORD t_orig = 0;
65 #endif
66 
67 #ifdef WIN32
68 
69  /*
70  * A Windows console has an "input code page" and an "output code page";
71  * these usually match each other, but they rarely match the "Windows ANSI
72  * code page" defined at system boot and expected of "char *" arguments to
73  * Windows API functions. The Microsoft CRT write() implementation
74  * automatically converts text between these code pages when writing to a
75  * console. To identify such file descriptors, it calls GetConsoleMode()
76  * on the underlying HANDLE, which in turn requires GENERIC_READ access on
77  * the HANDLE. Opening termout in mode "w+" allows that detection to
78  * succeed. Otherwise, write() would not recognize the descriptor as a
79  * console, and non-ASCII characters would display incorrectly.
80  *
81  * XXX fgets() still receives text in the console's input code page. This
82  * makes non-ASCII credentials unportable.
83  *
84  * Unintuitively, we also open termin in mode "w+", even though we only
85  * read it; that's needed for SetConsoleMode() to succeed.
86  */
87  termin = fopen("CONIN$", "w+");
88  termout = fopen("CONOUT$", "w+");
89 #else
90 
91  /*
92  * Do not try to collapse these into one "w+" mode file. Doesn't work on
93  * some platforms (eg, HPUX 10.20).
94  */
95  termin = fopen("/dev/tty", "r");
96  termout = fopen("/dev/tty", "w");
97 #endif
98  if (!termin || !termout
99 #ifdef WIN32
100 
101  /*
102  * Direct console I/O does not work from the MSYS 1.0.10 console. Writes
103  * reach nowhere user-visible; reads block indefinitely. XXX This affects
104  * most Windows terminal environments, including rxvt, mintty, Cygwin
105  * xterm, Cygwin sshd, and PowerShell ISE. Switch to a more-generic test.
106  */
107  || (getenv("OSTYPE") && strcmp(getenv("OSTYPE"), "msys") == 0)
108 #endif
109  )
110  {
111  if (termin)
112  fclose(termin);
113  if (termout)
114  fclose(termout);
115  termin = stdin;
116  termout = stderr;
117  }
118 
119  if (!echo)
120  {
121 #if defined(HAVE_TERMIOS_H)
122  /* disable echo via tcgetattr/tcsetattr */
123  tcgetattr(fileno(termin), &t);
124  t_orig = t;
125  t.c_lflag &= ~ECHO;
126  tcsetattr(fileno(termin), TCSAFLUSH, &t);
127 #elif defined(WIN32)
128  /* need the file's HANDLE to turn echo off */
129  t = (HANDLE) _get_osfhandle(_fileno(termin));
130 
131  /* save the old configuration first */
132  GetConsoleMode(t, &t_orig);
133 
134  /* set to the new mode */
135  SetConsoleMode(t, ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT);
136 #endif
137  }
138 
139  if (prompt)
140  {
141  fputs(_(prompt), termout);
142  fflush(termout);
143  }
144 
145  result = pg_get_line(termin, prompt_ctx);
146 
147  /* If we failed to read anything, just return an empty string */
148  if (result == NULL)
149  result = pg_strdup("");
150 
151  /* strip trailing newline, including \r in case we're on Windows */
152  (void) pg_strip_crlf(result);
153 
154  if (!echo)
155  {
156  /* restore previous echo behavior, then echo \n */
157 #if defined(HAVE_TERMIOS_H)
158  tcsetattr(fileno(termin), TCSAFLUSH, &t_orig);
159  fputs("\n", termout);
160  fflush(termout);
161 #elif defined(WIN32)
162  SetConsoleMode(t, t_orig);
163  fputs("\n", termout);
164  fflush(termout);
165 #endif
166  }
167  else if (prompt_ctx && prompt_ctx->canceled)
168  {
169  /* also echo \n if prompt was canceled */
170  fputs("\n", termout);
171  fflush(termout);
172  }
173 
174  if (termin != stdin)
175  {
176  fclose(termin);
177  fclose(termout);
178  }
179 
180  return result;
181 }
#define _(x)
Definition: elog.c:90
char * pg_strdup(const char *in)
Definition: fe_memutils.c:85
static void const char fflush(stdout)
char * pg_get_line(FILE *stream, PromptInterruptContext *prompt_ctx)
Definition: pg_get_line.c:59
int pg_strip_crlf(char *str)
Definition: string.c:155

References _, PromptInterruptContext::canceled, fflush(), pg_get_line(), pg_strdup(), and pg_strip_crlf().

Referenced by exec_command_password(), exec_command_prompt(), prompt_for_password(), and simple_prompt().

◆ strtoint()

int strtoint ( const char *pg_restrict  str,
char **pg_restrict  endptr,
int  base 
)

Definition at line 51 of file string.c.

52 {
53  long val;
54 
55  val = strtol(str, endptr, base);
56  if (val != (int) val)
57  errno = ERANGE;
58  return (int) val;
59 }
long val
Definition: informix.c:664

References generate_unaccent_rules::str, and val.

Referenced by buildDefItem(), DecodeDateTime(), DecodeInterval(), DecodeNumber(), DecodeNumberField(), DecodeTime(), DecodeTimeCommon(), DecodeTimeOnly(), DecodeTimezone(), exec_command_watch(), get_path_all(), jsonb_get_element(), nodeTokenType(), option_parse_int(), push_path(), and setPathArray().