aboutsummaryrefslogtreecommitdiffstats
path: root/protocol/util.c
blob: cba6f38f10f68860ba15ee055a5045c9a87fd8f9 (plain)
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
/*
 * OProfile User Interface
 *
 * Copyright (C) 2007 Nokia Corporation. All rights reserved.
 *
 * Author: Robert Bradford <rob@openedhand.com>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * version 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA
 *
 */


#include <unistd.h>
#include <sys/sendfile.h>
#include <arpa/inet.h>

#include "util.h"

int
util_read_in_full (int fd, char *buf, size_t count)
{
  size_t pos = 0;

  while (count-pos > 0)
    {
      int res = read (fd, &buf[pos], count-pos);
  
      if (res < 0)
        {
          return res;
        }

      if (res == 0)
        return 0;

      pos += res;
    }

  return pos;
}

int
util_write_in_full (int fd, char *buf, size_t count)
{
  size_t pos = 0;

  while (count - pos > 0)
    {
      int res = write (fd, &buf[pos], count-pos);
  
      if (res < 0)
        {
          return res;
        }

      if (res == 0)
        return 0;

      pos += res;
    }

  return pos;
}

int 
util_sendfile_in_full (int src_fd, int dest_fd, size_t count)
{
  off_t offset = 0;

  while (count - offset > 0)
    {
      int res = sendfile (src_fd, dest_fd, &offset, count-offset);

      if (res < 0)
        {
          return res;
        }

      if (res == 0)
        return 0;
    }

  return count;
}

void
util_resp_header_to_host (OpuiResponse *resp)
{
  resp->length = ntohl (resp->length);
}

void
util_resp_body_to_host (OpuiResponse *resp)
{
  switch (resp->opcode)
    {
      case RESPONSE_OP_STATUS:
        {
          OpuiResponseStatus *status = (OpuiResponseStatus *)resp->payload;
          status->proto_version = ntohl (status->proto_version);
          status->profiling = ntohl (status->profiling);
          status->configured = ntohl (status->configured);
        }
        break;
      case RESPONSE_OP_FILESTAT:
        {
          OpuiResponseFileStat *stat = (OpuiResponseFileStat *)resp->payload;
          stat->mtime_h = ntohl (stat->mtime_h);
          stat->mtime_l = ntohl (stat->mtime_l);
          stat->size_h = ntohl (stat->size_h);
          stat->size_l = ntohl (stat->size_l);
          stat->mode_h = ntohl (stat->mode_h);
          stat->mode_l = ntohl (stat->mode_l);
        }
        break;
      default:
        break;
    }
}

void
util_cmd_header_to_net (OpuiCommand *cmd)
{
  cmd->length = htonl (cmd->length);
}

void
util_cmd_header_to_host (OpuiCommand *cmd)
{
  cmd->length = ntohl (cmd->length);
}

int
util_cmd_header_read_in_full (int fd, OpuiCommand *cmd)
{
  int res = util_read_in_full (fd, (char *)cmd, sizeof(OpuiCommand));

  if (res > 0)
    cmd->length = ntohl (cmd->length);

  return res;
}

int
util_resp_header_write_in_full (int fd, OpuiResponse *resp)
{
  int ret;
  uint32_t value;
  size_t total;
  static uint32_t res_count = 0;

  /* write opcode & reserved[3] */
  total = ret = util_write_in_full (fd, &resp->opcode, 4);

  if (ret > 0)
    {
      /* write length */
      value = htonl (resp->length);
      ret = util_write_in_full (fd, (char *)&value, sizeof(uint32_t));
      total += ret;
    }

  return (ret > 0) ? total : ret;
}

static int
util_resp_body_write_in_full (int fd, OpuiResponse *resp)
{
  int ret = 0;
  uint32_t value[6];
  size_t total = 0;

  switch (resp->opcode)
    {
      case RESPONSE_OP_STATUS:
        {
          OpuiResponseStatus *status = (OpuiResponseStatus *)resp->payload;
          value[0] = htonl (status->proto_version);
          value[1] = htonl (status->profiling);
          value[2] = htonl (status->configured);
          total = ret = util_write_in_full (fd, (char *)value, 3*sizeof(uint32_t));
        }
        break;
      case RESPONSE_OP_FILESTAT:
        {
          OpuiResponseFileStat *stat = (OpuiResponseFileStat *)resp->payload;
          value[0] = htonl (stat->mtime_h);
          value[1] = htonl (stat->mtime_l);
          value[2] = htonl (stat->size_h);
          value[3] = htonl (stat->size_l);
          value[4] = htonl (stat->mode_h);
          value[5] = htonl (stat->mode_l);
          total = ret = util_write_in_full (fd, (char *)value, 6*sizeof(uint32_t));
        }
        break;
      default:
        ret = 1;
        total = 0;
        break;
    }

  if (ret > 0 && resp->length - total > 0)
    {
      ret = util_write_in_full (fd, &resp->payload[total], resp->length - total);
      total += ret;
    }

  return (ret > 0) ? total : ret;
}

int
util_resp_write_in_full (int fd, OpuiResponse *resp)
{
  int ret;
  size_t total;

  total = ret = util_resp_header_write_in_full (fd, resp);

  if (ret > 0 && resp->length > 0)
    {
      ret = util_resp_body_write_in_full (fd, resp);
      total += ret;
    }

  return (ret > 0) ? total : ret;
}